diff --git a/05-robust-code.md b/05-robust-code.md index d4979a8..e116294 100644 --- a/05-robust-code.md +++ b/05-robust-code.md @@ -70,9 +70,186 @@ else { } ``` + + ## Link Step 3 (with robust download code) [Stata](https://drive.google.com/file/d/1nTbFvEGDEu6ZFZyMi61mx66AtnUqb9k6/view?usp=sharing) [^fallback4] [^fallback4]: [🔒Tag: stage3-alt](https://github.com/codedthinking/day1/tree/stage3-alt) + + + + +# Use the main file to control larger pieces + +## Change flags, don't comment out code + +## No manual manipulation + +- “Change the parameter to 0.2, then run the code again” +- "Compute the percentages for Table 2 by hand" + +## Systematic automation + +- Use *functions*, **ado files, programs, macros, subroutines** +- Use *loops*, **parameters**, *parameter files* to call those subroutines +- Use *placeholders* (**globals, macros, libnames,** etc.) for common locations ($CONFDATA, $TABLES, $CODE) +- Compute all numbers in package + - No manual calculation of numbers + +## Example (1) {transition="fade" } + +```{.stata code-line-numbers="2-4"} +// Header of main.do +// Define which steps should be run +global step1 1 +global step2 1 + +do "code/00_setup.do" +if $step1 == 1 do "code/01_download_data.do" +if $step2 == 2 do "code/02_create_analysis_sample.do" +if $step3 == 3 do "code/03_analysis.do" +``` + +## Example (2) {transition="fade" transition-speed="fast"} + +Here we always run the `00_setup.do` file. + +```{.stata code-line-numbers="6"} +// Header of main.do +// Define which steps should be run +global step1 1 +global step2 1 + +do "code/00_setup.do" +if $step1 == 1 do "code/01_download_data.do" +if $step2 == 2 do "code/02_create_analysis_sample.do" +if $step3 == 3 do "code/03_analysis.do" +``` + +## Example (3) {transition="fade" transition-speed="fast"} + +Then conditionally run the other pieces: + +```{.stata code-line-numbers="7-9"} +// Header of main.do +// Define which steps should be run +global step1 1 +global step2 1 + +do "code/00_setup.do" +if $step1 == 1 do "code/01_download_data.do" +if $step2 == 2 do "code/02_create_analysis_sample.do" +if $step3 == 3 do "code/03_analysis.do" +``` + +## Starting to be complex + +- Let's use a separate `config.do` file to contain configuration parameters + +```{.stata} +// file locations +// code to set rootdir omitted +global inputdata "$rootdir/data/inputs" +global tempdata "$rootdir/temporary" +global outputs "$rootdir/tables-figures" + +// ensure they are created +cap mkdir "$tempdata" +cap mkdir "$outputs" +``` + +## Example (4) + +So let's automate some of this: + + + +```{.stata code-line-numbers="1"} +include "config.do" + +// define steps +global step1 1 +global step2 1 + +// Nothing needs to be changed here +do "$rootdir/code/00_setup.do" +if $step1 == 1 do "$rootdir/code/01_download_data.do" +if $step2 == 2 do "$rootdir/code/02_create_analysis_sample.do" +if $step3 == 3 do "$rootdir/code/03_analysis.do" +``` + +## Example (5) {transition="fade" transition-speed="fast"} + + + + + +```{.stata code-line-numbers="8-11"} +include "config.do" + +// define steps +global step1 1 +global step2 1 + +// Nothing needs to be changed here +do "$rootdir/code/00_setup.do" +if $step1 == 1 do "$rootdir/code/01_download_data.do" +if $step2 == 2 do "$rootdir/code/02_create_analysis_sample.do" +if $step3 == 3 do "$rootdir/code/03_analysis.do" +``` + +## Example (6) + +Configure the steps on certain conditions: + + + +```{.stata code-line-numbers="5-8"} +// define steps +global step1 1 +global step2 1 + +// verify if file has changed +qui checksum "$resultfile1" +// if not, don't run Step 2 +if `r(checksum)' == $checksum1 global step2 0 + +// Nothing needs to be changed here +do "$rootdir/code/00_setup.do" +if $step1 == 1 do "$rootdir/code/01_download_data.do" +if $step2 == 2 do "$rootdir/code/02_create_analysis_sample.do" +if $step3 == 3 do "$rootdir/code/03_analysis.do" +``` + +--- + +and `config.do` contains additional information: + +```{.stata code-line-numbers="12-13"} +// file locations +// code to set rootdir omitted +global inputdata "$rootdir/data/inputs" +global tempdata "$rootdir/temporary" +global outputs "$rootdir/tables-figures" + +// ensure they are created +cap mkdir "$tempdata" +cap mkdir "$outputs" + +// some key parameters +global resultfile1 "$outputs/table1.tex" +global checksum1 386698503 +``` + +# Why can this be useful? + +Consider a final test if everything runs: + +- delete `temporary/` and `tables-figures/` folders. +- might even delete the downloaded files +- then run the `main.do` file again. + +## This will test if everything works! diff --git a/06-secrets-in-code.md b/06-secrets-in-code.md new file mode 100644 index 0000000..c05e8c5 --- /dev/null +++ b/06-secrets-in-code.md @@ -0,0 +1,291 @@ +# Secrets in the code + +## What are secrets? + +- API keys +- Login credentials for data access +- File paths (FSRDC!) +- Variable names (IRS!) + +## Standard practice + +Store secrets in environment variables or files that are not published. + +## Some services are serious about this + +![Github secret scanning](images/github-secret-scanning.png) + +## Where to store secrets + +- **environment variables** +- "[dot-env](https://pypi.org/project/python-dotenv/)" files (Python), "Renviron" files (R) +- or some other clearly identified file in the project or home directory + +## Environment variables + +Typed interactively (here for Linux and Mac) + +```{.bash} +MYSECRET="dfad89ald" +CONFDATALOC="/path/to/irs/files" +``` + +(this is not recommended) + +## Storing these in files + +Same syntax used for contents of "dot-env" or "Renviron" files, and in fact `bash` or `zsh` startup files (`.bash_profile`, `.zshrc`) + +## Using In R + +Edit `.Renviron` (note the dot!) files: + +```{.r code-line-numbers="2,4"} +# Edit global (personal) Renviron +usethis::edit_r_environ() +# You can also consider creating project-specific settings: +usethis::edit_r_environ(scope = "project") +``` + +Use the variables defined in `.Renviron`: + +```{.r} +mysecret <- Sys.getenv('MYSECRET') +``` + +## Using In Python + +Loading regular environment variables: + +```{.python code-line-numbers="2"} +import os +mysecret = os.getenv("MYSECRET") # will load environment variables +``` + +Loading with `dotenv` + +```{.python code-line-numbers="2-3"} +from dotenv import load_dotenv +load_dotenv() # take environment variables from project .env. +mysecret = os.getenv("MYSECRET") # will load environment variables +``` + +## Using in Stata + +Yes, this also works in Stata + +```{.stata code-line-numbers="2"} +// load from environment +global mysecret : env MYSECRET +display "$mysecret" // don't actually do this in code +``` + +and via (what else) a user-written package for loading from files: + +```{.stata code-line-numbers="1-3} +net install doenv, from(https://github.com/vikjam/doenv/raw/master/) +doenv using ".env" +global mysecret "`r(MYSECRET)'" +display "$mysecret" +``` + + + + + + + +## Simplest solution + +```{.stata code-line-numbers="2,5,7"} +//============ confidential parameters ============= +capture confirm file "confidential/confparms.do" +if _rc == 0 { + // file exists + include "confidential/confparms.do" +} else { + di in red "No confidential parameters found" +} +//============ end confidential parameters ========= + +//============ non-confidential parameters ========= +include "config.do" +//============ end parameters ====================== +``` + +# Confidential code? + +## What is confidential code, you say? + +- In the United States, some **variables on IRS databases** are considered super-top-secret. So you can't name that-variable-that-you-filled-out-on-your-Form-1040 in your analysis code of same data. (They are often referred to in jargon as "Title 26 variables"). +- Your code contains the **random seed you used to anonymize** the sensitive identifiers. This might allow to reverse-engineer the anonymization, and is not a good idea to publish. +- You used a **look-up table hard-coded** in your Stata code to anonymize the sensitive identifiers (`replace anoncounty=1 if county="Tompkins, NY"`). A really bad idea, but yes, you probably want to hide that. +- Your IT specialist or disclosure officer thinks publishing the **exact path** to your copy of the confidential 2010 Census data, e.g., "/data/census/2010", is a security risk and refuses to let that code through. +- You have adhered to disclosure rules, but for some reason, the precise minimum cell size is a confidential parameter. + +So whether reasonable or not, this is an issue. How do you do that, without messing up the code, or spending hours redacting your code? + +## Example + +- This will serve as an example. None of this is specific to Stata, and the solutions for R, Python, Julia, Matlab, etc. are all quite similar. +- Assume that variables `q2f` and `q3e` are considered confidential by some rule, and that the minimum cell size `10` is also confidential. + +```{stata, eval=FALSE} +set seed 12345 +use q2f q3e county using "/data/economic/cmf2012/extract.dta", clear +gen logprofit = log(q2f) +by county: collapse (count) n=q3e (mean) logprofit +drop if n<10 +graph twoway n logprofit +``` + + +## Do not do this + +A bad example, because literally making more work for you and for future replicators, is to manually redact the confidential information with text that is not legitimate code: + +```{stata, eval=FALSE} +set seed NNNNN +use county using "", clear +gen logprofit = log(XXXX) +by county: collapse (count) n=XXXX (mean) logprofit +drop if n 1. All the results in the paper use confidential microdata from the U.S. Census Bureau. To gain +access to the Census microdata, follow the directions here on how to write a proposal for access +to the data via a Federal Statistical Research Data Center: +https://www.census.gov/ces/rdcresearch/howtoapply.html. +> 2. You must request the following datasets in your proposal: +> - Longitudinal Business Database (LBD), 2002 and 2007 +> - Foreign Trade Database – Import (IMP), 2002 and 2007 +> - Annual Survey of Manufactures (ASM), including the Computer Network Use Supplement (CNUS), 1999 +> - [...] +> - Annual Survey of Magical Inputs (ASMI), 2002 and 2007 +> 3. Reference “Technology and Production Fragmentation: Domestic versus Foreign Sourcing” by Teresa Fort, project number br1179 in the proposal. This will give you access to the programs and input datasets required to reproduce the results. Requesting a search of archives with the articles DOI ("10.1093/restud/rdw057") should yield the same results. +> +> NOTE: Project-related files are available for 10 years as of 2015. + + +## Examples {.smaller} + +Examples include + +- [this description](https://social-science-data-editors.github.io/guidance/Requested_information_dcas.html#example-for-confidential-data) by Fadlon and Nielsen about Danish data + +> The information used in the analysis combines several Danish administrative registers (as described in the paper). The data use is subject to the European Union’s General Data Protection Regulation(GDPR) per new Danish regulations from May 2018. The data are physically stored on computers at Statistics Denmark and, due to security considerations, the data may not be transferred to computers outside Statistics Denmark. Researchers interested in obtaining access to the register data employed in this paper are required to submit a written application to gain approval from Statistics Denmark. The application must include a detailed description of the proposed project, its purpose, and its social contribution, as well as a description of the required datasets, variables, and analysis population. Applications can be submitted by researchers who are affiliated with Danish institutions accepted by Statistics Denmark, or by researchers outside of Denmark who collaborate with researchers affiliated with these institutions. + +(Example taken from [Fadlon and Nielsen, AEJ:Applied 2021](https://doi.org/10.1257/app.20170604)). + + +## Three parts to README: timing + +| | | +|---------|----------| +|- Data availability (and citations):|**Start of project, edit at the end**| +|- Computer requirements: | Middle of project| +|- Description of processing: | Middle of project| +| | | + +with the end really just a last read/edit. + +# Wrapping it all up + +## Wrapping up + +- Public replication package contains intelligible code, omits confidential details (but provides template code), has detailed data provenance statements +- Confidential replication package contains all the same, plus the confidential code, is archived in the FSRDC + +Now you wait for the replicators to show up! + +# Addenda + +## Things to remember + +- When doing a disclosure review request, remember to request the **code** +- When outputting statistics, *consider the disclosure rules* - the less changes, the faster the output (in theory), but in particular fewer surprises +- Do not think "*nobody will ever read this code*" - somebody is very likely to! diff --git a/_build.sh b/_build.sh index 89ac589..5e0a3a7 100644 --- a/_build.sh +++ b/_build.sh @@ -6,5 +6,6 @@ set -ev cd $(dirname $0) # build the handbook -Rscript _build.R +# Rscript _build.R +quarto render index.Rmd --output-dir _html diff --git a/data/external/China2021Data.csv b/data/external/China2021Data.csv new file mode 100755 index 0000000..9ac23d7 --- /dev/null +++ b/data/external/China2021Data.csv @@ -0,0 +1,1059 @@ +"id","gmoUS_pos","gmoUS_neg","gmoIncreaseYield_pos","gmoIncreaseYield_neg","Obama_pos","Obama_neg","Soros_pos","Soros_neg","911_pos","911_neg" +1,1,NA,NA,2,2,NA,1,NA,NA,5 +2,NA,5,1,NA,NA,1,NA,5,1,NA +3,NA,3,NA,2,1,NA,NA,3,3,NA +4,2,NA,NA,3,3,NA,3,NA,NA,4 +5,NA,4,NA,4,NA,4,NA,2,NA,4 +6,NA,3,NA,2,3,NA,NA,3,3,NA +7,5,NA,3,NA,3,NA,3,NA,NA,3 +8,NA,3,NA,3,NA,3,NA,4,NA,3 +9,2,NA,5,NA,NA,4,NA,5,NA,4 +10,NA,4,NA,2,NA,4,2,NA,NA,3 +11,NA,3,4,NA,3,NA,NA,3,2,NA +12,NA,2,4,NA,1,NA,2,NA,NA,3 +13,NA,4,NA,4,3,NA,NA,4,NA,5 +14,4,NA,4,NA,NA,3,3,NA,NA,3 +15,NA,5,NA,2,3,NA,1,NA,NA,1 +16,NA,4,NA,2,3,NA,NA,3,3,NA +17,3,NA,3,NA,3,NA,NA,3,NA,3 +18,1,NA,NA,2,NA,3,2,NA,2,NA +19,NA,5,NA,2,NA,4,NA,5,1,NA +20,5,NA,2,NA,3,NA,NA,5,5,NA +21,2,NA,NA,4,3,NA,2,NA,NA,2 +22,2,NA,4,NA,3,NA,NA,2,NA,3 +23,NA,3,NA,4,NA,3,3,NA,NA,3 +24,1,NA,4,NA,NA,1,2,NA,1,NA +25,NA,3,NA,4,NA,3,2,NA,NA,3 +26,NA,2,4,NA,NA,2,NA,4,2,NA +27,NA,3,NA,3,NA,2,NA,2,NA,3 +28,3,NA,NA,3,3,NA,3,NA,3,NA +29,3,NA,NA,3,3,NA,4,NA,NA,4 +30,3,NA,NA,2,3,NA,NA,3,NA,2 +31,5,NA,NA,4,NA,3,NA,4,4,NA +32,4,NA,3,NA,4,NA,3,NA,NA,3 +33,3,NA,4,NA,NA,3,1,NA,NA,3 +34,3,NA,4,NA,3,NA,3,NA,2,NA +35,NA,4,4,NA,NA,4,4,NA,NA,5 +36,NA,3,NA,3,3,NA,NA,3,NA,3 +37,NA,1,NA,2,3,NA,NA,2,4,NA +38,2,NA,NA,2,3,NA,3,NA,NA,2 +39,NA,3,NA,3,3,NA,NA,3,NA,4 +40,NA,4,5,NA,3,NA,NA,3,NA,4 +41,2,NA,NA,2,4,NA,4,NA,NA,2 +42,3,NA,3,NA,NA,3,NA,3,NA,3 +43,NA,5,NA,4,5,NA,NA,4,NA,4 +44,2,NA,NA,4,2,NA,NA,2,4,NA +45,2,NA,5,NA,4,NA,NA,5,NA,4 +46,3,NA,4,NA,NA,4,3,NA,NA,4 +47,NA,5,4,NA,5,NA,NA,4,3,NA +48,3,NA,NA,2,NA,3,NA,2,4,NA +49,NA,4,NA,4,NA,3,3,NA,NA,4 +50,4,NA,2,NA,3,NA,NA,4,2,NA +51,NA,3,NA,1,3,NA,NA,3,NA,3 +52,3,NA,4,NA,NA,4,NA,3,NA,3 +53,3,NA,NA,3,4,NA,NA,3,NA,2 +54,NA,4,NA,5,3,NA,4,NA,NA,5 +55,3,NA,NA,2,NA,3,4,NA,3,NA +56,3,NA,NA,3,NA,3,NA,2,3,NA +57,5,NA,NA,5,4,NA,NA,4,NA,4 +58,4,NA,5,NA,NA,3,3,NA,NA,3 +59,4,NA,NA,3,NA,4,NA,3,3,NA +60,2,NA,5,NA,4,NA,NA,4,NA,3 +61,NA,5,5,NA,3,NA,2,NA,NA,5 +62,NA,3,3,NA,3,NA,3,NA,3,NA +63,NA,2,NA,3,4,NA,3,NA,NA,3 +64,3,NA,NA,4,NA,3,NA,4,NA,3 +65,NA,1,NA,5,3,NA,NA,3,5,NA +66,3,NA,NA,2,NA,3,NA,3,NA,2 +67,NA,2,4,NA,2,NA,2,NA,NA,1 +68,NA,1,NA,3,3,NA,NA,3,NA,3 +69,4,NA,NA,2,NA,4,4,NA,4,NA +70,NA,2,NA,5,2,NA,4,NA,NA,4 +71,NA,3,4,NA,NA,4,NA,4,4,NA +72,3,NA,NA,5,NA,4,NA,4,4,NA +73,NA,3,4,NA,NA,4,4,NA,NA,4 +74,NA,2,4,NA,3,NA,NA,4,NA,2 +75,3,NA,NA,2,NA,3,3,NA,NA,3 +76,NA,3,2,NA,NA,3,NA,3,3,NA +77,NA,3,NA,4,4,NA,4,NA,NA,4 +78,NA,3,4,NA,NA,4,4,NA,NA,4 +79,NA,4,NA,4,NA,3,NA,4,NA,4 +80,3,NA,2,NA,NA,3,NA,3,3,NA +81,3,NA,4,NA,3,NA,NA,3,NA,4 +82,3,NA,NA,4,3,NA,NA,4,4,NA +83,3,NA,NA,4,2,NA,4,NA,4,NA +84,3,NA,NA,3,NA,3,3,NA,2,NA +85,3,NA,4,NA,NA,2,NA,4,NA,4 +86,3,NA,4,NA,2,NA,NA,4,4,NA +87,3,NA,NA,4,2,NA,NA,4,5,NA +88,NA,3,NA,4,2,NA,4,NA,4,NA +89,3,NA,NA,4,NA,2,4,NA,4,NA +90,3,NA,NA,4,NA,2,NA,4,4,NA +91,3,NA,4,NA,NA,3,NA,2,4,NA +92,2,NA,4,NA,NA,3,3,NA,2,NA +93,3,NA,3,NA,3,NA,5,NA,NA,3 +94,3,NA,NA,4,2,NA,NA,4,NA,4 +95,NA,3,NA,4,NA,2,4,NA,4,NA +96,3,NA,4,NA,NA,2,NA,4,NA,4 +97,3,NA,4,NA,3,NA,3,NA,4,NA +98,NA,4,4,NA,NA,4,4,NA,2,NA +99,NA,2,NA,2,NA,2,2,NA,NA,4 +100,3,NA,NA,2,1,NA,1,NA,3,NA +101,3,NA,3,NA,NA,3,NA,3,NA,3 +102,NA,3,3,NA,3,NA,3,NA,NA,3 +103,4,NA,NA,4,5,NA,2,NA,5,NA +104,3,NA,3,NA,3,NA,3,NA,NA,3 +105,2,NA,4,NA,NA,3,NA,3,NA,4 +106,NA,4,NA,4,NA,4,NA,5,NA,5 +107,NA,5,3,NA,3,NA,3,NA,3,NA +108,4,NA,NA,4,NA,4,NA,3,3,NA +109,NA,4,4,NA,NA,2,NA,2,2,NA +110,NA,3,NA,3,NA,3,NA,3,NA,3 +111,NA,3,NA,3,3,NA,NA,3,NA,3 +112,4,NA,4,NA,NA,3,3,NA,NA,3 +113,NA,3,2,NA,NA,3,3,NA,2,NA +114,NA,3,NA,2,NA,3,2,NA,NA,2 +115,2,NA,3,NA,4,NA,4,NA,NA,3 +116,NA,3,NA,3,NA,3,NA,3,5,NA +117,3,NA,NA,4,4,NA,NA,4,NA,2 +118,1,NA,5,NA,4,NA,NA,5,4,NA +119,3,NA,NA,3,4,NA,NA,3,NA,2 +120,NA,3,NA,3,NA,3,3,NA,2,NA +121,3,NA,3,NA,NA,4,NA,2,NA,4 +122,NA,3,3,NA,3,NA,NA,3,3,NA +123,NA,2,NA,5,NA,4,NA,4,NA,4 +124,NA,3,4,NA,4,NA,3,NA,NA,3 +125,NA,2,NA,3,3,NA,4,NA,3,NA +126,4,NA,NA,3,NA,3,4,NA,2,NA +127,NA,3,2,NA,3,NA,NA,4,2,NA +128,NA,2,NA,3,NA,4,3,NA,NA,2 +129,NA,3,NA,2,NA,2,4,NA,NA,2 +130,NA,2,2,NA,2,NA,2,NA,2,NA +131,3,NA,NA,2,NA,3,4,NA,NA,2 +132,1,NA,NA,2,NA,2,2,NA,2,NA +133,NA,2,NA,2,NA,2,NA,2,NA,2 +134,NA,3,4,NA,NA,3,NA,3,NA,1 +135,NA,2,NA,3,NA,4,NA,4,3,NA +136,NA,3,4,NA,3,NA,2,NA,NA,3 +137,NA,3,3,NA,3,NA,3,NA,3,NA +138,2,NA,2,NA,NA,2,NA,4,2,NA +139,NA,3,NA,3,3,NA,NA,3,NA,3 +140,3,NA,3,NA,3,NA,3,NA,NA,3 +141,3,NA,3,NA,3,NA,3,NA,NA,3 +142,NA,3,3,NA,NA,3,NA,3,NA,3 +143,NA,5,NA,2,NA,3,NA,3,NA,3 +144,NA,3,3,NA,NA,3,NA,3,NA,3 +145,NA,3,5,NA,3,NA,NA,2,NA,1 +146,NA,3,4,NA,NA,3,NA,2,NA,2 +147,NA,3,NA,3,NA,3,NA,3,NA,3 +148,NA,4,3,NA,NA,2,NA,4,NA,3 +149,NA,4,NA,2,3,NA,3,NA,NA,4 +150,NA,3,NA,3,NA,3,NA,3,3,NA +151,1,NA,3,NA,NA,5,NA,3,NA,5 +152,NA,5,5,NA,5,NA,NA,4,NA,5 +153,NA,3,3,NA,3,NA,3,NA,3,NA +154,3,NA,3,NA,3,NA,3,NA,3,NA +155,3,NA,4,NA,3,NA,NA,3,NA,3 +156,4,NA,3,NA,3,NA,NA,3,3,NA +157,3,NA,3,NA,3,NA,NA,4,2,NA +158,NA,3,5,NA,NA,2,4,NA,NA,2 +159,4,NA,2,NA,NA,4,NA,2,4,NA +160,NA,2,2,NA,NA,3,3,NA,2,NA +161,NA,2,5,NA,2,NA,4,NA,4,NA +162,3,NA,2,NA,NA,4,NA,3,2,NA +163,4,NA,3,NA,3,NA,NA,2,NA,2 +164,NA,2,3,NA,3,NA,3,NA,NA,3 +165,NA,2,3,NA,3,NA,4,NA,NA,2 +166,4,NA,NA,2,NA,4,NA,2,4,NA +167,3,NA,3,NA,3,NA,3,NA,3,NA +168,4,NA,4,NA,4,NA,4,NA,NA,4 +169,NA,4,5,NA,NA,4,NA,4,NA,5 +170,3,NA,NA,3,NA,3,3,NA,3,NA +171,3,NA,NA,3,NA,3,2,NA,NA,2 +172,3,NA,NA,4,2,NA,3,NA,2,NA +173,4,NA,NA,2,2,NA,4,NA,NA,2 +174,1,NA,4,NA,NA,4,2,NA,NA,4 +175,NA,2,4,NA,4,NA,1,NA,NA,4 +176,3,NA,NA,2,3,NA,NA,2,NA,3 +177,NA,4,3,NA,NA,3,NA,4,NA,4 +178,3,NA,4,NA,NA,2,NA,4,NA,4 +179,NA,1,4,NA,NA,4,2,NA,4,NA +180,NA,4,NA,2,3,NA,NA,4,NA,4 +181,4,NA,NA,2,NA,3,2,NA,NA,4 +182,1,NA,NA,4,2,NA,NA,1,4,NA +183,NA,3,NA,4,NA,2,NA,4,4,NA +184,3,NA,4,NA,NA,2,4,NA,NA,4 +185,1,NA,4,NA,3,NA,NA,4,2,NA +186,NA,3,3,NA,3,NA,NA,3,3,NA +187,3,NA,NA,4,NA,2,NA,4,NA,4 +188,3,NA,4,NA,NA,2,NA,4,4,NA +189,NA,3,2,NA,NA,4,NA,3,NA,3 +190,NA,3,NA,4,NA,2,NA,4,NA,4 +191,NA,4,NA,4,NA,2,4,NA,4,NA +192,3,NA,4,NA,NA,2,NA,4,4,NA +193,NA,4,3,NA,3,NA,NA,4,2,NA +194,4,NA,3,NA,3,NA,NA,4,NA,4 +195,3,NA,3,NA,NA,3,3,NA,3,NA +196,3,NA,NA,3,NA,3,NA,3,3,NA +197,3,NA,NA,4,NA,2,NA,4,4,NA +198,NA,4,NA,4,NA,2,4,NA,4,NA +199,4,NA,NA,4,NA,2,4,NA,NA,4 +200,1,NA,4,NA,2,NA,1,NA,4,NA +201,3,NA,NA,2,NA,3,4,NA,2,NA +202,3,NA,NA,2,4,NA,NA,3,NA,2 +203,NA,3,3,NA,NA,3,3,NA,NA,3 +204,4,NA,4,NA,2,NA,4,NA,4,NA +205,NA,3,3,NA,3,NA,NA,3,NA,3 +206,NA,3,NA,2,NA,3,3,NA,3,NA +207,NA,3,2,NA,4,NA,2,NA,3,NA +208,NA,1,NA,4,NA,2,NA,4,NA,4 +209,2,NA,3,NA,NA,3,2,NA,NA,4 +210,NA,2,NA,3,NA,4,1,NA,3,NA +211,NA,4,4,NA,NA,3,NA,4,2,NA +212,5,NA,NA,5,3,NA,3,NA,2,NA +213,4,NA,3,NA,NA,2,3,NA,2,NA +214,NA,3,NA,3,3,NA,NA,3,3,NA +215,3,NA,2,NA,NA,4,NA,2,3,NA +216,3,NA,3,NA,3,NA,NA,4,4,NA +217,NA,3,3,NA,3,NA,NA,3,NA,3 +218,NA,4,NA,3,NA,3,2,NA,NA,4 +219,NA,4,NA,3,NA,3,NA,4,2,NA +220,4,NA,4,NA,NA,4,4,NA,NA,4 +221,NA,3,NA,2,3,NA,2,NA,3,NA +222,4,NA,4,NA,2,NA,4,NA,NA,4 +223,2,NA,NA,3,NA,3,2,NA,4,NA +224,NA,4,NA,4,NA,2,NA,4,4,NA +225,NA,3,NA,3,3,NA,3,NA,NA,3 +226,4,NA,NA,4,NA,2,NA,4,4,NA +227,2,NA,NA,4,3,NA,NA,2,NA,3 +228,NA,4,NA,4,4,NA,4,NA,NA,4 +229,NA,4,NA,3,3,NA,2,NA,2,NA +230,NA,4,4,NA,2,NA,4,NA,4,NA +231,4,NA,NA,4,2,NA,4,NA,NA,4 +232,3,NA,NA,4,NA,4,NA,4,4,NA +233,NA,3,NA,3,2,NA,3,NA,2,NA +234,3,NA,3,NA,3,NA,3,NA,NA,3 +235,NA,4,NA,3,3,NA,NA,4,2,NA +236,3,NA,4,NA,3,NA,2,NA,NA,4 +237,NA,4,3,NA,NA,3,2,NA,2,NA +238,3,NA,2,NA,3,NA,NA,2,NA,3 +239,NA,2,NA,4,NA,3,2,NA,NA,4 +240,NA,2,4,NA,3,NA,3,NA,4,NA +241,3,NA,3,NA,3,NA,3,NA,NA,3 +242,NA,3,2,NA,4,NA,3,NA,2,NA +243,2,NA,3,NA,NA,3,2,NA,2,NA +244,2,NA,NA,4,4,NA,2,NA,NA,4 +245,NA,3,3,NA,3,NA,3,NA,3,NA +246,3,NA,3,NA,2,NA,NA,3,4,NA +247,2,NA,3,NA,3,NA,2,NA,NA,4 +248,2,NA,NA,3,3,NA,NA,4,2,NA +249,NA,4,3,NA,NA,3,NA,4,2,NA +250,NA,4,NA,3,3,NA,NA,4,2,NA +251,2,NA,4,NA,3,NA,NA,2,NA,2 +252,NA,3,NA,3,NA,2,3,NA,NA,4 +253,2,NA,4,NA,NA,3,NA,2,2,NA +254,3,NA,3,NA,NA,3,3,NA,NA,3 +255,NA,3,NA,3,NA,3,3,NA,3,NA +256,NA,4,4,NA,3,NA,NA,2,4,NA +257,3,NA,3,NA,3,NA,3,NA,NA,3 +258,2,NA,NA,4,NA,3,NA,2,2,NA +259,3,NA,3,NA,3,NA,NA,3,NA,3 +260,3,NA,3,NA,NA,3,NA,3,NA,3 +261,2,NA,4,NA,3,NA,NA,2,NA,2 +262,NA,3,NA,3,NA,3,3,NA,NA,3 +263,NA,2,4,NA,NA,3,NA,3,NA,3 +264,NA,4,2,NA,2,NA,2,NA,NA,2 +265,NA,4,4,NA,3,NA,NA,3,NA,3 +266,2,NA,NA,3,4,NA,NA,3,NA,4 +267,3,NA,3,NA,NA,3,NA,3,3,NA +268,NA,4,NA,4,4,NA,NA,4,NA,4 +269,NA,3,3,NA,4,NA,NA,3,NA,3 +270,4,NA,NA,4,NA,4,4,NA,4,NA +271,4,NA,4,NA,NA,4,NA,4,NA,4 +272,3,NA,NA,3,NA,3,NA,3,3,NA +273,NA,3,NA,4,NA,4,NA,3,NA,2 +274,5,NA,NA,5,NA,5,NA,1,NA,4 +275,5,NA,4,NA,1,NA,3,NA,NA,2 +276,2,NA,4,NA,3,NA,2,NA,NA,4 +277,3,NA,NA,2,3,NA,3,NA,3,NA +278,NA,4,5,NA,3,NA,3,NA,NA,3 +279,3,NA,3,NA,NA,3,NA,3,NA,3 +280,4,NA,3,NA,3,NA,NA,2,NA,1 +281,NA,3,3,NA,NA,3,NA,3,NA,3 +282,NA,3,3,NA,3,NA,3,NA,3,NA +283,NA,3,2,NA,NA,3,NA,4,NA,4 +284,NA,3,5,NA,3,NA,NA,3,3,NA +285,3,NA,NA,3,NA,3,NA,3,NA,3 +286,1,NA,NA,3,3,NA,NA,4,3,NA +287,NA,3,NA,4,4,NA,NA,3,3,NA +288,4,NA,4,NA,NA,3,NA,3,NA,2 +289,3,NA,4,NA,NA,2,1,NA,4,NA +290,2,NA,3,NA,3,NA,NA,4,2,NA +291,3,NA,NA,3,NA,3,3,NA,NA,3 +292,NA,3,3,NA,NA,3,NA,3,NA,3 +293,NA,2,NA,4,3,NA,NA,2,NA,2 +294,NA,4,3,NA,NA,4,3,NA,4,NA +295,NA,4,NA,2,3,NA,3,NA,3,NA +296,NA,1,NA,5,NA,4,NA,2,5,NA +297,NA,4,4,NA,3,NA,3,NA,3,NA +298,3,NA,NA,2,NA,3,NA,4,NA,2 +299,1,NA,5,NA,NA,3,NA,3,3,NA +300,NA,3,NA,2,NA,3,NA,3,NA,3 +301,NA,3,NA,2,NA,4,NA,3,2,NA +302,3,NA,3,NA,NA,3,3,NA,NA,3 +303,NA,3,3,NA,3,NA,3,NA,3,NA +304,3,NA,NA,4,3,NA,3,NA,3,NA +305,2,NA,5,NA,3,NA,NA,3,1,NA +306,NA,4,NA,4,4,NA,NA,4,NA,4 +307,NA,4,NA,4,NA,4,4,NA,NA,4 +308,NA,4,NA,4,4,NA,NA,4,NA,4 +309,4,NA,4,NA,NA,4,4,NA,4,NA +310,2,NA,2,NA,3,NA,3,NA,NA,2 +311,NA,5,NA,3,3,NA,NA,4,3,NA +312,NA,4,NA,4,4,NA,NA,4,4,NA +313,NA,4,NA,4,4,NA,NA,4,4,NA +314,4,NA,4,NA,NA,4,4,NA,NA,4 +315,NA,4,NA,3,NA,4,3,NA,NA,4 +316,3,NA,3,NA,3,NA,NA,3,NA,3 +317,NA,3,NA,3,NA,3,3,NA,NA,3 +318,NA,3,4,NA,2,NA,4,NA,4,NA +319,4,NA,NA,4,NA,2,NA,4,NA,4 +320,4,NA,NA,4,2,NA,4,NA,NA,3 +321,NA,4,4,NA,4,NA,NA,4,NA,4 +322,4,NA,2,NA,4,NA,3,NA,NA,3 +323,NA,3,NA,3,NA,3,NA,3,NA,2 +324,NA,4,NA,4,4,NA,4,NA,NA,4 +325,NA,4,NA,4,NA,3,2,NA,2,NA +326,NA,3,4,NA,NA,2,NA,3,4,NA +327,4,NA,4,NA,NA,4,4,NA,4,NA +328,NA,4,4,NA,2,NA,NA,4,NA,4 +329,NA,4,NA,4,3,NA,NA,2,NA,2 +330,3,NA,3,NA,3,NA,NA,2,2,NA +331,NA,3,NA,2,NA,3,2,NA,3,NA +332,4,NA,4,NA,NA,4,NA,2,4,NA +333,2,NA,4,NA,3,NA,NA,2,NA,2 +334,3,NA,4,NA,3,NA,3,NA,4,NA +335,3,NA,4,NA,NA,3,3,NA,NA,3 +336,3,NA,NA,3,NA,3,3,NA,3,NA +337,NA,3,NA,2,3,NA,NA,2,NA,1 +338,NA,3,4,NA,3,NA,3,NA,NA,4 +339,NA,3,NA,3,3,NA,NA,3,NA,3 +340,NA,3,3,NA,NA,3,NA,3,3,NA +341,3,NA,NA,3,NA,3,NA,3,NA,3 +342,2,NA,NA,4,3,NA,NA,4,5,NA +343,3,NA,NA,3,3,NA,3,NA,2,NA +344,2,NA,3,NA,NA,4,3,NA,2,NA +345,3,NA,NA,4,3,NA,NA,2,4,NA +346,3,NA,4,NA,NA,4,4,NA,NA,4 +347,NA,2,4,NA,NA,5,5,NA,5,NA +348,NA,5,NA,5,NA,5,5,NA,5,NA +349,NA,3,4,NA,NA,2,NA,3,3,NA +350,NA,4,3,NA,NA,3,4,NA,3,NA +351,NA,2,2,NA,NA,2,NA,3,4,NA +352,4,NA,4,NA,NA,3,NA,3,4,NA +353,3,NA,NA,3,3,NA,NA,2,3,NA +354,NA,3,3,NA,3,NA,3,NA,NA,3 +355,NA,3,NA,3,3,NA,NA,3,3,NA +356,NA,3,4,NA,3,NA,3,NA,3,NA +357,NA,2,4,NA,2,NA,4,NA,4,NA +358,4,NA,NA,4,4,NA,4,NA,4,NA +359,NA,2,3,NA,3,NA,3,NA,3,NA +360,4,NA,4,NA,NA,4,NA,4,NA,4 +361,NA,2,NA,2,2,NA,4,NA,NA,2 +362,NA,3,NA,2,NA,1,NA,2,3,NA +363,3,NA,NA,2,NA,3,2,NA,NA,4 +364,4,NA,NA,3,NA,3,NA,3,4,NA +365,4,NA,NA,4,NA,3,NA,3,NA,3 +366,3,NA,NA,3,NA,3,NA,3,3,NA +367,NA,3,3,NA,NA,3,3,NA,NA,3 +368,NA,5,NA,5,5,NA,4,NA,4,NA +369,4,NA,NA,4,3,NA,2,NA,2,NA +370,NA,4,4,NA,NA,3,4,NA,2,NA +371,3,NA,3,NA,NA,3,NA,3,NA,2 +372,3,NA,3,NA,3,NA,NA,3,NA,3 +373,3,NA,3,NA,3,NA,3,NA,3,NA +374,NA,3,NA,4,2,NA,2,NA,3,NA +375,NA,4,NA,3,NA,4,NA,4,4,NA +376,NA,3,3,NA,3,NA,3,NA,3,NA +377,NA,4,NA,4,NA,2,NA,2,2,NA +378,3,NA,3,NA,3,NA,NA,3,3,NA +379,3,NA,3,NA,3,NA,3,NA,NA,3 +380,NA,2,NA,4,NA,3,NA,3,1,NA +381,3,NA,NA,3,3,NA,NA,3,NA,3 +382,NA,3,3,NA,3,NA,3,NA,3,NA +383,NA,3,NA,3,NA,3,NA,3,NA,3 +384,NA,3,NA,3,NA,3,NA,4,1,NA +385,4,NA,4,NA,4,NA,4,NA,NA,4 +386,2,NA,3,NA,NA,4,4,NA,NA,1 +387,NA,4,NA,4,NA,4,4,NA,4,NA +388,4,NA,4,NA,4,NA,NA,4,NA,4 +389,3,NA,NA,2,3,NA,3,NA,NA,2 +390,NA,4,4,NA,NA,4,NA,4,4,NA +391,NA,5,NA,3,NA,3,NA,3,3,NA +392,NA,3,3,NA,3,NA,3,NA,3,NA +393,3,NA,NA,2,NA,4,NA,1,NA,1 +394,NA,3,NA,3,3,NA,3,NA,4,NA +395,NA,3,NA,3,3,NA,NA,3,3,NA +396,4,NA,4,NA,NA,4,NA,4,4,NA +397,3,NA,3,NA,NA,4,NA,3,NA,3 +398,3,NA,NA,3,3,NA,NA,4,4,NA +399,3,NA,NA,4,3,NA,NA,3,NA,3 +400,NA,3,3,NA,NA,3,3,NA,3,NA +401,NA,3,NA,3,3,NA,3,NA,4,NA +402,NA,4,4,NA,4,NA,4,NA,4,NA +403,NA,4,NA,4,4,NA,NA,4,4,NA +404,3,NA,NA,4,NA,3,NA,3,NA,2 +405,NA,3,NA,3,3,NA,NA,3,NA,3 +406,4,NA,NA,2,3,NA,2,NA,5,NA +407,2,NA,3,NA,NA,3,NA,2,NA,5 +408,NA,2,NA,5,NA,5,5,NA,5,NA +409,2,NA,NA,2,3,NA,NA,3,3,NA +410,3,NA,NA,3,3,NA,NA,3,3,NA +411,3,NA,3,NA,NA,3,3,NA,NA,3 +412,3,NA,3,NA,NA,3,3,NA,3,NA +413,NA,4,4,NA,3,NA,NA,3,NA,3 +414,4,NA,NA,3,NA,5,1,NA,3,NA +415,NA,3,NA,3,3,NA,3,NA,3,NA +416,3,NA,3,NA,NA,3,NA,3,NA,3 +417,NA,4,4,NA,NA,3,2,NA,2,NA +418,NA,3,3,NA,3,NA,3,NA,3,NA +419,3,NA,4,NA,NA,3,NA,3,4,NA +420,3,NA,NA,3,NA,3,NA,3,3,NA +421,NA,3,3,NA,NA,3,3,NA,NA,3 +422,3,NA,NA,3,NA,3,NA,3,NA,3 +423,NA,4,3,NA,NA,3,2,NA,NA,4 +424,3,NA,NA,4,NA,3,NA,3,NA,4 +425,3,NA,3,NA,3,NA,3,NA,4,NA +426,4,NA,4,NA,NA,3,4,NA,NA,5 +427,NA,3,3,NA,NA,3,3,NA,3,NA +428,NA,3,NA,3,NA,3,NA,3,NA,3 +429,2,NA,4,NA,NA,3,3,NA,3,NA +430,3,NA,NA,2,3,NA,NA,3,3,NA +431,NA,3,NA,3,NA,3,NA,3,3,NA +432,3,NA,NA,3,3,NA,3,NA,3,NA +433,3,NA,NA,4,3,NA,NA,3,4,NA +434,3,NA,3,NA,NA,3,NA,3,3,NA +435,3,NA,3,NA,3,NA,NA,3,NA,3 +436,3,NA,NA,4,3,NA,NA,3,3,NA +437,3,NA,2,NA,NA,3,3,NA,3,NA +438,3,NA,NA,3,NA,3,3,NA,4,NA +439,2,NA,NA,3,NA,3,1,NA,NA,1 +440,5,NA,NA,4,3,NA,2,NA,NA,2 +441,NA,3,3,NA,3,NA,3,NA,NA,3 +442,NA,3,NA,1,NA,3,NA,3,NA,2 +443,NA,3,NA,3,3,NA,NA,3,3,NA +444,NA,4,NA,4,3,NA,NA,4,NA,3 +445,3,NA,NA,3,NA,3,3,NA,3,NA +446,3,NA,3,NA,3,NA,3,NA,NA,3 +447,3,NA,3,NA,NA,3,NA,3,3,NA +448,NA,4,4,NA,NA,4,NA,3,NA,3 +449,3,NA,3,NA,3,NA,3,NA,NA,3 +450,3,NA,4,NA,NA,3,NA,3,3,NA +451,3,NA,3,NA,3,NA,NA,1,NA,1 +452,3,NA,3,NA,NA,3,3,NA,NA,3 +453,3,NA,NA,3,NA,3,NA,3,NA,3 +454,3,NA,NA,3,NA,3,3,NA,NA,3 +455,3,NA,NA,3,NA,3,NA,3,NA,3 +456,3,NA,NA,3,NA,3,NA,3,3,NA +457,2,NA,2,NA,NA,3,NA,3,NA,2 +458,NA,3,NA,4,NA,3,NA,3,NA,5 +459,3,NA,3,NA,NA,3,NA,3,3,NA +460,NA,3,NA,3,3,NA,3,NA,3,NA +461,3,NA,NA,3,3,NA,NA,3,NA,3 +462,NA,3,NA,3,NA,3,3,NA,3,NA +463,NA,4,4,NA,NA,4,NA,4,4,NA +464,4,NA,NA,4,NA,4,NA,4,NA,4 +465,4,NA,NA,4,4,NA,NA,4,4,NA +466,NA,5,NA,4,3,NA,5,NA,1,NA +467,2,NA,NA,2,2,NA,NA,3,3,NA +468,NA,3,4,NA,3,NA,NA,2,5,NA +469,NA,2,NA,2,NA,3,NA,3,2,NA +470,2,NA,NA,2,NA,3,3,NA,2,NA +471,3,NA,3,NA,NA,3,NA,3,3,NA +472,NA,1,NA,4,NA,1,NA,2,1,NA +473,NA,3,3,NA,2,NA,3,NA,NA,3 +474,3,NA,NA,3,NA,3,NA,3,3,NA +475,3,NA,3,NA,3,NA,3,NA,3,NA +476,2,NA,3,NA,3,NA,3,NA,2,NA +477,NA,3,3,NA,3,NA,3,NA,NA,3 +478,NA,3,3,NA,3,NA,3,NA,NA,3 +479,2,NA,2,NA,NA,2,NA,1,3,NA +480,3,NA,4,NA,NA,4,2,NA,NA,4 +481,NA,3,NA,3,3,NA,NA,3,NA,3 +482,3,NA,3,NA,NA,3,NA,3,3,NA +483,NA,3,3,NA,NA,3,NA,3,NA,3 +484,3,NA,3,NA,NA,3,3,NA,NA,3 +485,3,NA,2,NA,NA,3,NA,3,3,NA +486,3,NA,3,NA,NA,3,NA,3,NA,2 +487,1,NA,3,NA,3,NA,3,NA,2,NA +488,NA,3,3,NA,3,NA,NA,3,NA,3 +489,NA,3,4,NA,NA,3,NA,2,3,NA +490,3,NA,NA,3,NA,3,3,NA,NA,3 +491,2,NA,2,NA,3,NA,NA,3,3,NA +492,3,NA,NA,3,3,NA,NA,3,3,NA +493,NA,2,NA,4,3,NA,2,NA,1,NA +494,NA,3,NA,3,NA,3,3,NA,3,NA +495,3,NA,NA,3,3,NA,3,NA,3,NA +496,3,NA,NA,3,3,NA,3,NA,3,NA +497,NA,4,3,NA,NA,4,4,NA,4,NA +498,3,NA,3,NA,NA,3,3,NA,3,NA +499,NA,3,4,NA,NA,3,NA,3,NA,2 +500,3,NA,NA,3,3,NA,3,NA,3,NA +501,NA,2,NA,2,3,NA,3,NA,NA,3 +502,5,NA,3,NA,NA,3,NA,4,5,NA +503,NA,4,3,NA,3,NA,3,NA,3,NA +504,3,NA,NA,4,NA,3,3,NA,3,NA +505,2,NA,NA,2,NA,3,3,NA,NA,3 +506,3,NA,3,NA,3,NA,3,NA,NA,3 +507,3,NA,4,NA,NA,3,3,NA,NA,3 +508,NA,3,NA,3,NA,3,3,NA,NA,3 +509,NA,3,NA,2,4,NA,NA,4,NA,3 +510,3,NA,3,NA,3,NA,3,NA,3,NA +511,4,NA,2,NA,3,NA,NA,3,3,NA +512,NA,3,4,NA,3,NA,NA,3,4,NA +513,3,NA,4,NA,NA,3,2,NA,NA,3 +514,NA,3,4,NA,NA,3,NA,3,3,NA +515,3,NA,NA,3,NA,3,NA,3,3,NA +516,4,NA,4,NA,NA,4,NA,4,NA,4 +517,4,NA,4,NA,NA,4,4,NA,NA,4 +518,NA,4,NA,4,4,NA,NA,4,NA,4 +519,4,NA,4,NA,4,NA,NA,4,NA,4 +520,4,NA,4,NA,NA,4,4,NA,NA,4 +521,NA,2,NA,4,NA,3,NA,2,NA,1 +522,3,NA,3,NA,3,NA,3,NA,NA,3 +523,3,NA,NA,3,NA,3,NA,3,NA,3 +524,4,NA,4,NA,4,NA,NA,4,4,NA +525,3,NA,4,NA,NA,3,4,NA,3,NA +526,4,NA,4,NA,4,NA,4,NA,NA,4 +527,3,NA,3,NA,3,NA,NA,3,NA,3 +528,1,NA,NA,2,3,NA,NA,3,3,NA +529,NA,4,NA,4,4,NA,4,NA,4,NA +530,3,NA,NA,3,3,NA,4,NA,NA,3 +531,3,NA,NA,4,NA,4,3,NA,NA,4 +532,3,NA,NA,3,NA,3,NA,3,NA,3 +533,4,NA,4,NA,NA,4,4,NA,NA,4 +534,NA,4,NA,4,4,NA,NA,4,NA,3 +535,NA,2,NA,4,3,NA,4,NA,3,NA +536,NA,4,4,NA,NA,2,NA,2,NA,2 +537,5,NA,NA,1,NA,3,2,NA,2,NA +538,2,NA,NA,2,2,NA,NA,3,2,NA +539,NA,3,NA,4,3,NA,4,NA,NA,4 +540,NA,2,2,NA,4,NA,3,NA,NA,2 +541,NA,2,4,NA,2,NA,NA,2,2,NA +542,NA,4,4,NA,4,NA,4,NA,NA,4 +543,NA,4,4,NA,NA,4,4,NA,NA,4 +544,NA,4,4,NA,NA,4,NA,4,4,NA +545,NA,2,NA,2,2,NA,NA,1,2,NA +546,4,NA,4,NA,NA,4,4,NA,NA,4 +547,4,NA,4,NA,NA,4,NA,4,NA,4 +548,4,NA,NA,4,4,NA,4,NA,NA,4 +549,NA,4,4,NA,4,NA,NA,4,NA,4 +550,2,NA,NA,2,NA,4,NA,5,NA,4 +551,4,NA,4,NA,NA,4,4,NA,4,NA +552,NA,4,4,NA,NA,2,3,NA,2,NA +553,2,NA,4,NA,2,NA,3,NA,3,NA +554,NA,4,NA,3,NA,4,3,NA,NA,3 +555,NA,4,NA,4,2,NA,NA,3,3,NA +556,4,NA,3,NA,NA,4,NA,3,4,NA +557,2,NA,NA,2,2,NA,NA,2,2,NA +558,NA,3,NA,3,3,NA,NA,3,3,NA +559,3,NA,NA,5,5,NA,2,NA,NA,5 +560,NA,4,4,NA,NA,4,NA,4,4,NA +561,NA,4,NA,4,NA,4,NA,4,NA,4 +562,4,NA,NA,4,4,NA,NA,4,NA,4 +563,3,NA,3,NA,NA,3,3,NA,1,NA +564,NA,4,NA,4,2,NA,3,NA,NA,2 +565,NA,4,3,NA,3,NA,3,NA,NA,2 +566,2,NA,NA,2,2,NA,2,NA,2,NA +567,NA,4,4,NA,3,NA,NA,3,4,NA +568,4,NA,4,NA,4,NA,4,NA,NA,4 +569,NA,4,3,NA,NA,3,3,NA,NA,3 +570,4,NA,NA,4,4,NA,4,NA,NA,4 +571,2,NA,2,NA,NA,2,NA,2,2,NA +572,4,NA,4,NA,4,NA,NA,4,4,NA +573,NA,4,4,NA,4,NA,4,NA,NA,4 +574,4,NA,NA,4,NA,4,4,NA,NA,4 +575,NA,2,NA,2,NA,2,2,NA,NA,2 +576,NA,1,NA,4,NA,2,2,NA,1,NA +577,4,NA,NA,4,4,NA,NA,4,4,NA +578,NA,3,4,NA,3,NA,4,NA,3,NA +579,NA,4,4,NA,4,NA,NA,4,NA,4 +580,4,NA,4,NA,NA,4,4,NA,4,NA +581,NA,4,4,NA,3,NA,3,NA,NA,3 +582,4,NA,NA,4,NA,4,4,NA,NA,4 +583,NA,3,4,NA,3,NA,3,NA,2,NA +584,4,NA,NA,4,4,NA,4,NA,NA,4 +585,NA,4,NA,4,4,NA,4,NA,NA,4 +586,NA,3,NA,2,NA,3,3,NA,3,NA +587,2,NA,2,NA,NA,2,3,NA,2,NA +588,NA,4,4,NA,4,NA,5,NA,NA,5 +589,NA,3,NA,3,NA,3,NA,2,NA,3 +590,NA,4,NA,4,3,NA,3,NA,4,NA +591,NA,4,NA,2,2,NA,2,NA,NA,2 +592,2,NA,4,NA,NA,2,NA,2,NA,2 +593,4,NA,NA,4,NA,4,4,NA,NA,4 +594,4,NA,4,NA,NA,4,4,NA,NA,4 +595,2,NA,NA,2,NA,3,NA,3,3,NA +596,3,NA,NA,3,NA,3,4,NA,3,NA +597,3,NA,3,NA,3,NA,3,NA,3,NA +598,NA,3,3,NA,3,NA,NA,3,3,NA +599,NA,3,NA,3,3,NA,NA,3,4,NA +600,3,NA,3,NA,NA,3,NA,3,NA,3 +601,3,NA,3,NA,NA,3,3,NA,3,NA +602,NA,3,NA,2,NA,3,2,NA,NA,2 +603,3,NA,NA,2,3,NA,2,NA,NA,2 +604,3,NA,NA,3,3,NA,2,NA,4,NA +605,NA,3,NA,3,NA,3,NA,2,4,NA +606,3,NA,NA,3,3,NA,3,NA,3,NA +607,NA,3,NA,3,3,NA,NA,2,NA,3 +608,NA,3,3,NA,3,NA,NA,4,4,NA +609,NA,3,NA,3,3,NA,NA,4,4,NA +610,4,NA,4,NA,NA,4,4,NA,NA,4 +611,NA,2,2,NA,NA,3,3,NA,2,NA +612,1,NA,4,NA,3,NA,NA,3,NA,3 +613,NA,5,4,NA,3,NA,3,NA,NA,3 +614,NA,3,4,NA,NA,3,NA,3,4,NA +615,3,NA,4,NA,NA,3,NA,2,3,NA +616,NA,3,NA,3,NA,3,4,NA,3,NA +617,NA,3,NA,3,NA,3,3,NA,3,NA +618,NA,3,NA,3,3,NA,NA,3,NA,3 +619,NA,2,NA,4,2,NA,NA,1,NA,1 +620,NA,3,4,NA,3,NA,3,NA,3,NA +621,3,NA,4,NA,4,NA,NA,3,NA,3 +622,NA,3,NA,3,NA,3,4,NA,NA,5 +623,NA,2,NA,2,NA,3,NA,3,NA,2 +624,3,NA,3,NA,NA,3,3,NA,NA,3 +625,3,NA,5,NA,NA,3,NA,3,2,NA +626,NA,3,4,NA,3,NA,3,NA,4,NA +627,NA,3,NA,2,NA,3,NA,4,3,NA +628,NA,3,5,NA,3,NA,NA,3,1,NA +629,2,NA,NA,2,NA,1,NA,2,1,NA +630,NA,3,3,NA,NA,3,3,NA,3,NA +631,NA,2,4,NA,NA,5,3,NA,1,NA +632,1,NA,NA,2,2,NA,NA,2,1,NA +633,NA,4,NA,3,3,NA,NA,3,3,NA +634,4,NA,NA,4,NA,4,5,NA,4,NA +635,4,NA,NA,4,3,NA,NA,4,4,NA +636,NA,3,5,NA,5,NA,NA,3,NA,3 +637,NA,4,NA,3,3,NA,NA,3,3,NA +638,3,NA,NA,2,2,NA,4,NA,NA,2 +639,3,NA,NA,3,NA,3,3,NA,3,NA +640,NA,3,NA,4,NA,3,4,NA,NA,4 +641,3,NA,3,NA,NA,3,NA,3,NA,3 +642,3,NA,NA,4,NA,4,4,NA,4,NA +643,3,NA,4,NA,NA,3,NA,2,NA,2 +644,NA,3,4,NA,5,NA,3,NA,2,NA +645,3,NA,5,NA,4,NA,NA,3,NA,2 +646,3,NA,NA,2,NA,3,3,NA,4,NA +647,3,NA,NA,3,NA,3,3,NA,NA,3 +648,3,NA,NA,3,NA,3,3,NA,3,NA +649,NA,4,3,NA,2,NA,3,NA,NA,3 +650,3,NA,2,NA,NA,3,3,NA,NA,2 +651,3,NA,NA,3,3,NA,NA,3,3,NA +652,3,NA,NA,4,4,NA,NA,3,3,NA +653,NA,3,3,NA,3,NA,NA,3,3,NA +654,1,NA,NA,1,NA,3,1,NA,1,NA +655,3,NA,3,NA,NA,3,NA,3,NA,3 +656,2,NA,NA,2,NA,1,NA,2,1,NA +657,3,NA,NA,4,3,NA,NA,3,4,NA +658,3,NA,NA,3,3,NA,NA,3,3,NA +659,4,NA,5,NA,3,NA,2,NA,1,NA +660,NA,3,4,NA,3,NA,NA,3,NA,3 +661,3,NA,3,NA,3,NA,3,NA,NA,3 +662,NA,3,3,NA,NA,3,NA,3,NA,3 +663,3,NA,4,NA,NA,3,NA,3,4,NA +664,3,NA,3,NA,NA,3,3,NA,3,NA +665,NA,3,NA,3,4,NA,3,NA,3,NA +666,NA,3,NA,3,3,NA,2,NA,4,NA +667,3,NA,NA,3,NA,4,NA,3,3,NA +668,3,NA,NA,2,NA,3,NA,3,NA,2 +669,NA,2,3,NA,3,NA,NA,3,NA,2 +670,1,NA,4,NA,NA,3,3,NA,3,NA +671,4,NA,NA,3,4,NA,NA,3,NA,3 +672,3,NA,NA,3,NA,3,3,NA,NA,3 +673,NA,3,3,NA,NA,3,3,NA,NA,3 +674,3,NA,4,NA,4,NA,4,NA,NA,3 +675,NA,3,4,NA,4,NA,NA,3,2,NA +676,NA,1,1,NA,3,NA,3,NA,NA,3 +677,3,NA,NA,3,NA,3,3,NA,4,NA +678,NA,1,2,NA,NA,3,NA,3,2,NA +679,3,NA,NA,2,4,NA,NA,5,NA,5 +680,4,NA,1,NA,NA,3,3,NA,NA,3 +681,3,NA,NA,3,3,NA,3,NA,NA,3 +682,3,NA,3,NA,NA,3,NA,3,4,NA +683,2,NA,3,NA,2,NA,2,NA,2,NA +684,3,NA,NA,2,3,NA,3,NA,4,NA +685,2,NA,2,NA,NA,3,NA,3,2,NA +686,NA,2,NA,2,3,NA,NA,3,2,NA +687,2,NA,2,NA,3,NA,NA,3,NA,2 +688,3,NA,3,NA,NA,3,3,NA,NA,3 +689,4,NA,5,NA,4,NA,5,NA,4,NA +690,NA,3,NA,3,NA,4,1,NA,1,NA +691,NA,2,2,NA,NA,3,3,NA,NA,2 +692,3,NA,NA,3,NA,3,NA,3,3,NA +693,NA,3,3,NA,NA,3,3,NA,NA,3 +694,3,NA,2,NA,NA,3,NA,4,3,NA +695,1,NA,3,NA,3,NA,3,NA,5,NA +696,NA,2,NA,3,3,NA,4,NA,NA,2 +697,5,NA,5,NA,4,NA,4,NA,5,NA +698,NA,5,NA,3,3,NA,4,NA,4,NA +699,NA,4,NA,4,NA,3,NA,4,4,NA +700,2,NA,3,NA,NA,4,3,NA,4,NA +701,4,NA,NA,4,4,NA,NA,4,NA,4 +702,4,NA,4,NA,NA,3,4,NA,3,NA +703,NA,4,NA,3,NA,3,4,NA,4,NA +704,NA,5,4,NA,4,NA,NA,3,4,NA +705,NA,3,NA,3,NA,3,3,NA,3,NA +706,NA,3,NA,3,3,NA,3,NA,NA,3 +707,3,NA,4,NA,NA,3,NA,2,3,NA +708,4,NA,4,NA,NA,4,2,NA,NA,1 +709,3,NA,3,NA,3,NA,NA,2,3,NA +710,3,NA,NA,3,NA,3,NA,3,3,NA +711,3,NA,4,NA,3,NA,3,NA,3,NA +712,NA,3,NA,3,NA,3,NA,3,3,NA +713,4,NA,NA,5,NA,3,4,NA,NA,3 +714,NA,3,NA,2,3,NA,2,NA,4,NA +715,NA,3,4,NA,3,NA,3,NA,NA,3 +716,NA,3,3,NA,NA,4,3,NA,NA,3 +717,3,NA,4,NA,NA,3,NA,4,3,NA +718,3,NA,NA,3,3,NA,3,NA,3,NA +719,3,NA,NA,3,3,NA,NA,3,NA,3 +720,NA,3,3,NA,4,NA,2,NA,NA,3 +721,3,NA,3,NA,NA,3,NA,2,2,NA +722,NA,4,2,NA,NA,3,2,NA,NA,1 +723,NA,5,NA,3,3,NA,3,NA,NA,3 +724,3,NA,NA,2,NA,3,3,NA,3,NA +725,NA,2,5,NA,1,NA,3,NA,4,NA +726,NA,3,3,NA,3,NA,3,NA,NA,3 +727,3,NA,NA,2,3,NA,NA,4,3,NA +728,NA,3,NA,2,NA,3,3,NA,3,NA +729,3,NA,4,NA,NA,3,NA,3,3,NA +730,4,NA,4,NA,NA,5,4,NA,5,NA +731,2,NA,4,NA,4,NA,4,NA,4,NA +732,4,NA,NA,4,3,NA,4,NA,NA,4 +733,NA,4,NA,5,NA,4,4,NA,4,NA +734,NA,3,4,NA,3,NA,3,NA,3,NA +735,NA,4,4,NA,NA,5,4,NA,5,NA +736,NA,5,4,NA,NA,4,NA,5,4,NA +737,NA,3,NA,3,NA,3,3,NA,NA,2 +738,1,NA,NA,3,3,NA,NA,3,NA,3 +739,NA,4,5,NA,NA,4,NA,3,NA,5 +740,5,NA,4,NA,NA,5,4,NA,5,NA +741,4,NA,NA,5,4,NA,5,NA,4,NA +742,NA,3,3,NA,NA,3,NA,3,3,NA +743,2,NA,NA,2,3,NA,3,NA,3,NA +744,4,NA,3,NA,2,NA,NA,3,NA,4 +745,4,NA,NA,4,3,NA,3,NA,NA,4 +746,NA,3,NA,2,NA,4,3,NA,3,NA +747,NA,5,NA,5,5,NA,NA,5,5,NA +748,NA,3,NA,2,NA,2,3,NA,2,NA +749,4,NA,NA,4,NA,4,4,NA,NA,4 +750,4,NA,NA,4,4,NA,NA,4,4,NA +751,NA,4,4,NA,NA,4,NA,4,NA,4 +752,NA,4,NA,5,4,NA,NA,5,4,NA +753,NA,2,2,NA,3,NA,3,NA,2,NA +754,NA,4,NA,4,NA,4,NA,4,NA,4 +755,2,NA,NA,2,NA,3,3,NA,2,NA +756,NA,3,2,NA,NA,3,3,NA,2,NA +757,4,NA,5,NA,NA,4,NA,4,NA,4 +758,2,NA,3,NA,NA,5,2,NA,2,NA +759,NA,2,NA,2,3,NA,3,NA,NA,2 +760,4,NA,4,NA,4,NA,NA,4,4,NA +761,NA,2,NA,2,3,NA,3,NA,NA,2 +762,4,NA,3,NA,NA,3,NA,4,3,NA +763,NA,2,NA,1,3,NA,NA,3,4,NA +764,3,NA,3,NA,NA,4,3,NA,4,NA +765,NA,4,NA,4,5,NA,NA,5,5,NA +766,NA,4,4,NA,4,NA,4,NA,NA,4 +767,NA,4,NA,4,4,NA,3,NA,4,NA +768,4,NA,NA,4,NA,4,NA,3,NA,4 +769,4,NA,NA,4,4,NA,NA,4,NA,4 +770,3,NA,3,NA,3,NA,3,NA,NA,3 +771,4,NA,NA,3,3,NA,4,NA,4,NA +772,2,NA,NA,4,NA,3,3,NA,4,NA +773,NA,2,NA,2,NA,3,NA,3,2,NA +774,NA,2,NA,2,NA,2,NA,3,NA,3 +775,4,NA,4,NA,4,NA,4,NA,NA,4 +776,4,NA,4,NA,4,NA,NA,4,4,NA +777,4,NA,NA,4,4,NA,NA,4,4,NA +778,NA,4,4,NA,NA,4,NA,4,NA,4 +779,2,NA,4,NA,NA,3,NA,3,3,NA +780,NA,4,4,NA,4,NA,4,NA,4,NA +781,4,NA,4,NA,4,NA,NA,4,3,NA +782,NA,2,NA,2,NA,2,2,NA,NA,2 +783,NA,4,NA,4,4,NA,NA,4,NA,4 +784,4,NA,NA,4,4,NA,NA,4,4,NA +785,2,NA,NA,2,NA,3,3,NA,3,NA +786,4,NA,NA,4,NA,4,4,NA,4,NA +787,NA,4,NA,4,4,NA,4,NA,NA,3 +788,NA,2,4,NA,NA,2,3,NA,1,NA +789,NA,4,4,NA,NA,5,NA,4,NA,5 +790,4,NA,NA,3,NA,3,4,NA,4,NA +791,4,NA,5,NA,4,NA,NA,4,5,NA +792,NA,4,4,NA,NA,4,4,NA,NA,4 +793,NA,4,NA,4,NA,4,NA,4,NA,4 +794,4,NA,NA,4,4,NA,NA,4,NA,4 +795,5,NA,5,NA,NA,5,NA,4,4,NA +796,NA,4,3,NA,NA,3,1,NA,1,NA +797,NA,4,NA,3,NA,3,3,NA,4,NA +798,NA,3,3,NA,NA,4,NA,3,NA,4 +799,NA,3,NA,2,2,NA,3,NA,NA,4 +800,NA,3,4,NA,NA,3,NA,3,3,NA +801,NA,1,3,NA,3,NA,2,NA,NA,2 +802,NA,5,NA,5,NA,5,NA,5,2,NA +803,NA,4,NA,2,3,NA,3,NA,4,NA +804,1,NA,3,NA,2,NA,NA,4,1,NA +805,2,NA,NA,5,3,NA,NA,5,3,NA +806,NA,5,4,NA,3,NA,NA,2,NA,4 +807,2,NA,4,NA,NA,5,3,NA,NA,3 +808,NA,3,NA,3,3,NA,2,NA,NA,4 +809,NA,4,3,NA,NA,4,2,NA,NA,4 +810,2,NA,NA,1,3,NA,NA,3,3,NA +811,NA,3,3,NA,NA,2,4,NA,NA,4 +812,3,NA,4,NA,NA,3,NA,2,3,NA +813,NA,3,NA,4,NA,3,NA,3,NA,3 +814,1,NA,5,NA,NA,3,3,NA,3,NA +815,NA,2,NA,3,NA,5,NA,3,NA,2 +816,NA,3,4,NA,3,NA,2,NA,NA,3 +817,NA,3,5,NA,NA,3,NA,3,3,NA +818,NA,4,NA,3,3,NA,3,NA,NA,3 +819,4,NA,NA,4,4,NA,NA,3,3,NA +820,NA,2,2,NA,2,NA,3,NA,NA,4 +821,NA,2,4,NA,4,NA,4,NA,NA,2 +822,NA,3,NA,2,4,NA,NA,1,3,NA +823,4,NA,3,NA,NA,3,4,NA,3,NA +824,4,NA,NA,3,3,NA,2,NA,NA,2 +825,4,NA,3,NA,NA,3,4,NA,NA,4 +826,4,NA,NA,3,NA,4,4,NA,NA,4 +827,3,NA,4,NA,NA,4,NA,5,NA,4 +828,NA,4,NA,5,NA,4,NA,5,4,NA +829,5,NA,1,NA,NA,3,NA,3,3,NA +830,5,NA,4,NA,NA,5,NA,4,5,NA +831,NA,4,5,NA,NA,5,5,NA,NA,4 +832,5,NA,NA,4,NA,5,4,NA,NA,5 +833,NA,4,NA,5,NA,5,NA,4,5,NA +834,NA,5,NA,3,3,NA,NA,3,3,NA +835,NA,3,NA,3,3,NA,NA,3,3,NA +836,NA,5,NA,4,5,NA,4,NA,5,NA +837,3,NA,NA,2,NA,2,NA,3,4,NA +838,4,NA,NA,5,4,NA,4,NA,NA,5 +839,NA,3,4,NA,NA,3,NA,3,4,NA +840,2,NA,4,NA,NA,5,NA,1,NA,3 +841,2,NA,4,NA,4,NA,NA,3,NA,3 +842,4,NA,NA,5,4,NA,4,NA,4,NA +843,4,NA,5,NA,5,NA,NA,4,NA,5 +844,NA,4,5,NA,NA,5,NA,4,5,NA +845,4,NA,NA,4,NA,5,5,NA,4,NA +846,5,NA,4,NA,5,NA,4,NA,NA,5 +847,4,NA,5,NA,NA,4,5,NA,4,NA +848,3,NA,NA,4,3,NA,NA,3,4,NA +849,NA,5,4,NA,5,NA,NA,4,NA,4 +850,NA,4,NA,5,NA,5,4,NA,NA,4 +851,NA,5,4,NA,5,NA,4,NA,5,NA +852,2,NA,NA,5,NA,4,NA,5,NA,4 +853,4,NA,NA,3,NA,3,NA,2,5,NA +854,NA,4,5,NA,NA,4,NA,3,5,NA +855,NA,1,NA,5,NA,3,3,NA,NA,3 +856,NA,3,NA,3,NA,2,NA,3,3,NA +857,3,NA,NA,3,3,NA,NA,3,NA,3 +858,NA,3,NA,3,NA,4,3,NA,4,NA +859,3,NA,4,NA,3,NA,NA,1,2,NA +860,5,NA,NA,4,3,NA,3,NA,NA,4 +861,3,NA,NA,3,NA,4,NA,3,NA,4 +862,NA,3,4,NA,NA,3,3,NA,NA,4 +863,2,NA,NA,3,NA,3,2,NA,2,NA +864,NA,3,NA,2,NA,4,3,NA,NA,3 +865,4,NA,NA,5,5,NA,4,NA,5,NA +866,NA,4,NA,5,NA,4,NA,5,3,NA +867,NA,4,NA,5,4,NA,5,NA,NA,5 +868,4,NA,NA,5,4,NA,5,NA,4,NA +869,NA,4,5,NA,NA,4,5,NA,4,NA +870,NA,4,NA,5,5,NA,NA,4,5,NA +871,NA,4,5,NA,4,NA,NA,5,NA,4 +872,NA,5,NA,4,5,NA,4,NA,NA,4 +873,NA,4,NA,3,NA,4,NA,3,NA,4 +874,NA,4,NA,2,NA,3,3,NA,2,NA +875,4,NA,4,NA,NA,4,3,NA,NA,3 +876,4,NA,4,NA,NA,3,2,NA,NA,3 +877,1,NA,1,NA,NA,3,1,NA,NA,4 +878,3,NA,NA,3,NA,3,NA,3,3,NA +879,NA,2,3,NA,3,NA,3,NA,4,NA +880,NA,1,NA,3,3,NA,NA,3,5,NA +881,5,NA,NA,3,NA,3,NA,2,4,NA +882,NA,5,4,NA,2,NA,NA,5,NA,5 +883,NA,3,NA,2,NA,3,NA,3,NA,3 +884,3,NA,NA,2,3,NA,3,NA,3,NA +885,NA,3,4,NA,NA,4,3,NA,NA,2 +886,3,NA,4,NA,1,NA,1,NA,NA,5 +887,NA,5,NA,2,2,NA,NA,5,NA,5 +888,NA,3,4,NA,NA,3,NA,3,NA,3 +889,NA,3,NA,3,3,NA,3,NA,4,NA +890,NA,4,5,NA,NA,3,3,NA,NA,4 +891,3,NA,NA,3,NA,3,NA,1,NA,2 +892,NA,4,4,NA,NA,5,NA,4,NA,5 +893,NA,4,4,NA,NA,4,NA,4,NA,4 +894,NA,3,NA,2,NA,3,3,NA,3,NA +895,NA,5,NA,5,NA,4,5,NA,NA,4 +896,3,NA,NA,3,NA,3,3,NA,NA,3 +897,4,NA,5,NA,5,NA,4,NA,NA,5 +898,4,NA,3,NA,3,NA,3,NA,4,NA +899,4,NA,NA,5,4,NA,NA,5,NA,4 +900,NA,4,4,NA,4,NA,NA,4,NA,4 +901,NA,4,4,NA,4,NA,NA,4,4,NA +902,NA,4,4,NA,4,NA,4,NA,NA,4 +903,NA,5,NA,5,NA,4,5,NA,NA,4 +904,4,NA,NA,2,4,NA,NA,2,3,NA +905,NA,4,4,NA,4,NA,NA,5,4,NA +906,NA,5,4,NA,4,NA,NA,4,4,NA +907,4,NA,2,NA,3,NA,3,NA,NA,3 +908,4,NA,4,NA,NA,5,4,NA,4,NA +909,5,NA,NA,4,NA,4,5,NA,NA,4 +910,NA,4,4,NA,4,NA,4,NA,NA,4 +911,4,NA,NA,4,4,NA,NA,4,4,NA +912,NA,3,NA,3,NA,4,3,NA,NA,3 +913,NA,3,4,NA,3,NA,3,NA,4,NA +914,2,NA,NA,3,3,NA,NA,2,2,NA +915,NA,4,NA,4,NA,4,NA,4,4,NA +916,5,NA,2,NA,NA,3,NA,1,NA,1 +917,NA,3,NA,1,4,NA,NA,4,4,NA +918,2,NA,4,NA,NA,3,3,NA,NA,2 +919,4,NA,NA,1,3,NA,NA,3,3,NA +920,3,NA,4,NA,NA,3,3,NA,3,NA +921,5,NA,4,NA,NA,5,NA,4,5,NA +922,NA,4,5,NA,4,NA,NA,5,NA,5 +923,NA,5,NA,1,NA,3,3,NA,NA,3 +924,3,NA,NA,1,NA,3,NA,3,NA,4 +925,NA,3,NA,4,3,NA,NA,3,3,NA +926,1,NA,NA,2,NA,2,2,NA,NA,5 +927,NA,3,NA,4,NA,3,3,NA,NA,3 +928,NA,5,NA,4,5,NA,4,NA,NA,5 +929,NA,5,NA,5,NA,5,NA,5,NA,4 +930,NA,1,NA,5,5,NA,NA,1,4,NA +931,5,NA,NA,4,NA,4,5,NA,5,NA +932,4,NA,NA,4,4,NA,NA,4,5,NA +933,NA,4,NA,5,4,NA,NA,5,4,NA +934,NA,3,2,NA,2,NA,NA,4,NA,3 +935,NA,5,NA,4,NA,5,2,NA,NA,2 +936,4,NA,3,NA,NA,3,3,NA,3,NA +937,NA,5,4,NA,NA,5,5,NA,4,NA +938,NA,3,4,NA,NA,3,NA,2,4,NA +939,3,NA,NA,2,NA,3,4,NA,3,NA +940,NA,4,5,NA,3,NA,NA,5,NA,3 +941,1,NA,NA,2,NA,3,2,NA,NA,3 +942,3,NA,NA,3,NA,3,NA,3,3,NA +943,3,NA,NA,3,2,NA,3,NA,3,NA +944,NA,3,4,NA,NA,3,3,NA,3,NA +945,NA,2,NA,5,4,NA,1,NA,NA,2 +946,3,NA,NA,2,NA,3,NA,3,2,NA +947,3,NA,2,NA,2,NA,NA,1,NA,3 +948,1,NA,NA,3,NA,3,3,NA,2,NA +949,NA,1,NA,1,3,NA,NA,3,NA,3 +950,2,NA,3,NA,NA,4,NA,3,3,NA +951,NA,2,NA,4,NA,3,NA,3,NA,3 +952,NA,4,4,NA,NA,3,3,NA,2,NA +953,3,NA,4,NA,4,NA,3,NA,4,NA +954,3,NA,2,NA,NA,3,NA,3,4,NA +955,1,NA,NA,3,4,NA,3,NA,NA,4 +956,3,NA,5,NA,NA,2,4,NA,NA,3 +957,NA,3,NA,4,NA,2,NA,4,3,NA +958,3,NA,3,NA,4,NA,NA,3,NA,3 +959,NA,4,3,NA,4,NA,NA,5,NA,4 +960,NA,4,NA,3,3,NA,3,NA,4,NA +961,NA,4,NA,4,NA,3,NA,2,NA,4 +962,NA,1,2,NA,3,NA,2,NA,4,NA +963,NA,3,NA,3,NA,3,4,NA,NA,3 +964,NA,3,NA,4,NA,3,NA,5,NA,2 +965,4,NA,4,NA,NA,3,3,NA,NA,3 +966,NA,4,NA,3,3,NA,2,NA,NA,3 +967,2,NA,NA,2,NA,3,NA,2,2,NA +968,NA,4,NA,4,3,NA,NA,4,NA,3 +969,2,NA,4,NA,3,NA,NA,2,2,NA +970,4,NA,3,NA,2,NA,NA,3,NA,3 +971,NA,3,4,NA,3,NA,4,NA,4,NA +972,3,NA,2,NA,NA,3,3,NA,4,NA +973,2,NA,4,NA,4,NA,NA,3,NA,4 +974,1,NA,1,NA,3,NA,2,NA,NA,2 +975,NA,3,NA,3,3,NA,NA,3,4,NA +976,NA,4,5,NA,5,NA,NA,4,NA,5 +977,NA,4,3,NA,4,NA,3,NA,3,NA +978,2,NA,NA,2,3,NA,NA,2,2,NA +979,NA,4,4,NA,NA,3,3,NA,NA,3 +980,3,NA,4,NA,3,NA,3,NA,3,NA +981,NA,2,4,NA,NA,3,2,NA,NA,4 +982,NA,4,4,NA,3,NA,NA,3,3,NA +983,3,NA,NA,4,NA,5,NA,2,NA,4 +984,NA,3,NA,3,4,NA,3,NA,NA,1 +985,3,NA,NA,3,NA,3,NA,3,2,NA +986,5,NA,5,NA,NA,5,5,NA,NA,5 +987,NA,3,NA,4,3,NA,3,NA,NA,4 +988,3,NA,NA,3,NA,3,3,NA,4,NA +989,4,NA,4,NA,4,NA,NA,4,4,NA +990,NA,4,NA,2,NA,1,3,NA,NA,4 +991,3,NA,4,NA,NA,5,2,NA,NA,5 +992,NA,3,4,NA,NA,3,3,NA,NA,2 +993,3,NA,NA,2,NA,4,NA,3,NA,3 +994,3,NA,4,NA,NA,3,NA,3,NA,4 +995,2,NA,NA,2,3,NA,3,NA,NA,4 +996,NA,2,4,NA,5,NA,5,NA,NA,5 +997,3,NA,4,NA,NA,4,3,NA,NA,3 +998,NA,5,NA,5,3,NA,3,NA,5,NA +999,3,NA,NA,3,NA,3,NA,3,3,NA +1000,2,NA,NA,2,2,NA,NA,4,NA,4 +1001,3,NA,NA,4,4,NA,3,NA,3,NA +1002,2,NA,4,NA,3,NA,3,NA,3,NA +1003,NA,4,4,NA,3,NA,3,NA,NA,3 +1004,NA,4,4,NA,NA,3,3,NA,NA,3 +1005,NA,4,NA,3,4,NA,NA,3,NA,4 +1006,4,NA,NA,4,4,NA,3,NA,4,NA +1007,2,NA,NA,4,3,NA,NA,3,NA,3 +1008,NA,4,3,NA,NA,4,3,NA,4,NA +1009,NA,4,NA,4,3,NA,NA,4,NA,4 +1010,3,NA,3,NA,NA,3,NA,3,NA,3 +1011,4,NA,NA,3,NA,3,NA,4,3,NA +1012,NA,4,4,NA,NA,4,4,NA,NA,3 +1013,4,NA,4,NA,NA,4,NA,3,NA,4 +1014,4,NA,NA,3,3,NA,3,NA,NA,4 +1015,NA,3,3,NA,3,NA,NA,4,NA,3 +1016,3,NA,NA,3,NA,3,1,NA,1,NA +1017,NA,5,5,NA,NA,1,1,NA,NA,4 +1018,2,NA,NA,2,NA,3,3,NA,NA,3 +1019,NA,4,NA,4,NA,4,NA,4,NA,4 +1020,NA,4,NA,4,NA,4,1,NA,NA,1 +1021,NA,3,4,NA,4,NA,NA,3,3,NA +1022,NA,1,NA,3,3,NA,1,NA,NA,2 +1023,2,NA,NA,2,NA,3,3,NA,NA,3 +1024,NA,1,1,NA,3,NA,3,NA,4,NA +1025,NA,4,NA,3,4,NA,NA,4,5,NA +1026,NA,3,3,NA,3,NA,3,NA,3,NA +1027,NA,4,4,NA,NA,3,4,NA,3,NA +1028,NA,4,4,NA,NA,4,1,NA,3,NA +1029,NA,3,4,NA,NA,4,3,NA,NA,5 +1030,3,NA,NA,4,3,NA,4,NA,3,NA +1031,4,NA,3,NA,NA,2,NA,3,NA,2 +1032,1,NA,NA,3,3,NA,NA,2,NA,3 +1033,NA,3,NA,3,NA,2,4,NA,NA,3 +1034,NA,4,NA,3,3,NA,3,NA,NA,3 +1035,NA,4,NA,2,NA,3,NA,2,NA,3 +1036,NA,3,3,NA,3,NA,NA,3,NA,3 +1037,NA,3,NA,3,3,NA,4,NA,4,NA +1038,NA,4,1,NA,3,NA,NA,2,NA,2 +1039,1,NA,NA,3,NA,3,2,NA,NA,5 +1040,NA,4,2,NA,1,NA,NA,1,NA,5 +1041,3,NA,4,NA,3,NA,NA,4,NA,3 +1042,3,NA,NA,4,3,NA,NA,3,NA,3 +1043,NA,4,3,NA,4,NA,3,NA,NA,4 +1044,4,NA,NA,3,NA,3,NA,3,3,NA +1045,3,NA,4,NA,NA,3,3,NA,NA,3 +1046,NA,3,NA,2,NA,4,4,NA,NA,3 +1047,2,NA,3,NA,NA,3,2,NA,1,NA +1048,NA,5,5,NA,5,NA,NA,5,5,NA +1049,3,NA,NA,4,NA,4,NA,5,NA,4 +1050,3,NA,NA,4,4,NA,3,NA,NA,4 +1051,NA,1,1,NA,NA,1,3,NA,5,NA +1052,3,NA,NA,3,NA,3,3,NA,3,NA +1053,NA,5,5,NA,5,NA,5,NA,4,NA +1054,NA,4,NA,2,NA,3,1,NA,NA,2 +1055,NA,5,4,NA,NA,3,3,NA,3,NA +1056,3,NA,2,NA,3,NA,NA,3,3,NA +1057,5,NA,5,NA,4,NA,5,NA,5,NA +1058,NA,3,NA,3,NA,1,NA,3,NA,3 diff --git a/data/external/LucidPlotText.csv b/data/external/LucidPlotText.csv new file mode 100755 index 0000000..9e47d57 --- /dev/null +++ b/data/external/LucidPlotText.csv @@ -0,0 +1,59 @@ +"text.short","text.str","keyed","plot.text" +"allcGentz.Beyonce.rally","The musicians Beyonce and Jay Z appeared at a rally in support of Hillary Clinton.","Pos keyed","Beyonce rally" +"allcGentz.Beyonce.rally","The musicians Beyonce and Jay Z DID NOT appear at a rallies in support of Hillary Clinton.","Neg keyed","Beyonce rally" +"allcGentz.Clinton.arms","The Clinton Foundation bought $137 million in illegal arms.","Pos keyed","Clinton Foundation" +"allcGentz.Clinton.arms","The Clinton Foundation DID NOT buy millions of dollars worth of illegal arms.","Neg keyed","Clinton Foundation" +"allcGentz.Clinton.deplorables","Hillary Clinton DID NOT say that """"you could put half of Trump's supporters into what I call the basket of deplorables.""""","Neg keyed","Clinton deplorables" +"allcGentz.Clinton.deplorables","Hillary Clinton said that """"you could put half of Trump's supporters into what I call the basket of deplorables.""""","Pos keyed","Clinton deplorables" +"allcGentz.Clinton.stumbled","At the 9/11 memorial ceremony, Hillary Clinton stumbled and had to be helped into a van.","Pos keyed","Clinton stumbled" +"allcGentz.Clinton.stumbled","At the 9/11 memorial ceremony, Hillary Clinton was healthy and walked herself back to a van.","Neg keyed","Clinton stumbled" +"allcGentz.FBI.Clinton.charges","Two days before the election, the FBI director told Congress that a newer batch of emails linked to Hillary Clinton's private email server changed his conclusion that Clinton should face no charges over her handling of classified information.","Pos keyed","FBI Clinton charges" +"allcGentz.FBI.Clinton.charges","Two days before the election, the FBI director told Congress that a newer batch of emails linked to Hillary Clinton's private email server DID NOT change his conclusion that Clinton should face no charges over her handling of classified information.","Neg keyed","FBI Clinton charges" +"allcGentz.FBI.agent","An FBI agent connected to Hillary Clinton's email disclosures DID NOT murder his wife or shoot himself.","Neg keyed","FBI agent" +"allcGentz.FBI.agent","An FBI agent connected to Hillary Clinton's email disclosures murdered his wife and shot himself.","Pos keyed","FBI agent" +"allcGentz.FBI.director","In late October, the FBI director kept to himself and DID NOT alert members of Congress that the FBI had discovered new emails relevant to its investigation of Hillary Clinton's personal server.","Neg keyed","FBI director" +"allcGentz.FBI.director","On October 28th, the FBI director alerted members of Congress that the FBI had discovered new emails relevant to its investigation of Hillary Clinton's personal server.","Pos keyed","FBI director" +"allcGentz.Ireland.asylum","In May 2016, Ireland announced that it was officially accepting Americans requesting political asylum from a Donald Trump presidency.","Pos keyed","Ireland asylum" +"allcGentz.Ireland.asylum","Ireland DID NOT announce that it was officially accepting Americans requesting political asylum from a Donald Trump presidency.","Neg keyed","Ireland asylum" +"allcGentz.Pence.vulgar","Mike Pence DID NOT say that """"Michelle Obama is the most vulgar First Lady we've ever had.""""","Neg keyed","Pence vulgar" +"allcGentz.Pence.vulgar","Mike Pence said that """"Michelle Obama is the most vulgar First Lady we've ever had.""""","Pos keyed","Pence vulgar" +"allcGentz.Pope.endorse","Pope Francis DID NOT endorse Donald Trump.","Neg keyed","Pope endorse" +"allcGentz.Pope.endorse","Pope Francis endorsed Donald Trump.","Pos keyed","Pope endorse" +"allcGentz.RuPaul","Celebrity RuPaul DID NOT say that Donald Trump mistook him for a woman and groped him at a party in 1995.","Neg keyed","RuPaul groped" +"allcGentz.RuPaul","Celebrity RuPaul said that Donald Trump mistook him for a woman and groped him at a party in 1995.","Pos keyed","RuPaul groped" +"allcGentz.Trump.concede","At the third presidential debate, Donald Trump refused to say whether he would concede the election if he lost.","Pos keyed","Trump concede" +"allcGentz.Trump.concede","At the third presidential debate, Donald Trump said he would concede the election if he lost.","Neg keyed","Trump concede" +"berinskyACA","True of False: Changes to the health care system enacted by Congress and the Obama administration DID NOT create """"death panels"""" which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their """"level of productivity in society?""""","Neg keyed","Death panels" +"berinskyACA","True of False: Changes to the health care system enacted by Congress and the Obama administration created """"death panels"""" which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their """"level of productivity in society?""""","Pos keyed","Death panels" +"chinaCurrency","In August 2015, the Chinese currency, the Yuan, was worth more against the U.S. dollar than it had been in the time period from September 2012 to July 2015.","Pos keyed","China currency" +"chinaCurrency","In August 2015, the Chinese currency, the Yuan, was worth less against the U.S. dollar than it had been in the time period from September 2012 to July 2015.","Neg keyed","China currency" +"demNormsAccept","Presidential candidates need not accept the outcome of elections if they narrowly lose.","Neg keyed","Accept election loss" +"demNormsAccept","Presidential candidates should accept the outcome of elections even if they narrowly lose.","Pos keyed","Accept election loss" +"demNormsViol","Sometimes regular people need to be a little violent to make sure votes are counted correctly.","Pos keyed","Violence for votes" +"demNormsViol","Regular people DO NOT need to be a little violent to make sure votes are counted correctly.","Neg keyed","Violence for votes" +"forBornCanada","Out of every 100 people living in Canada, how many do you think were born outside of Canada?","Pos keyed","Immigrant pop Canada" +"forBornCanada","Out of every 100 people living in Canada, how many do you think were born in Canada?","Neg keyed","Immigrant pop Canada" +"forBornUS","Out of every 100 people living in the United States, how many do you think were born outside of the country?","Pos keyed","Immigrant pop US" +"forBornUS","Out of every 100 people living in the United States, how many do you think were born in the United States?","Neg keyed","Immigrant pop US" +"hksBioWeapon","The Chinese government DID NOT create the coronavirus as a biological weapon. Do you believe this is...","Neg keyed","Coronavirus weapon" +"hksBioWeapon","The Chinese government created the coronavirus as a biological weapon. Do you believe this is...","Pos keyed","Coronavirus weapon" +"hksHandWash","Regular hand washing and avoiding those showing symptoms helps prevent infection with coronavirus. Do you believe this is...","Neg keyed","Hand wash" +"hksHandWash","Regular hand washing and avoiding those showing symptoms DOES NOT help prevent infection with coronavirus. Do you believe this is...","Pos keyed","Hand wash" +"hksUSCreated","The US government created the coronavirus. Do you believe this is...","Pos keyed","US created coronavirus" +"hksUSCreated","The US government DID NOT create the coronavirus. Do you believe this is...","Neg keyed","US created coronavirus" +"hksVitaminC","Taking vitamin C can prevent a person from being infected with the coronavirus. Do you believe this is... ","Pos keyed","Vitamin C" +"hksVitaminC","Taking vitamin C DOES NOT prevent a person from being infected with the coronavirus. Do you believe this is... ","Neg keyed","Vitamin C" +"nyhanReifler","Immediately before the U.S. invasion in 2003, Iraq had an active weapons of mass destruction program and large stockpiles of WMD.","Pos keyed","Iraq WMD" +"nyhanReifler","Immediately before the U.S. invasion in 2003, Iraq DID NOT have either an active weapons of mass destruction program nor large stockpiles of WMD.","Neg keyed","Iraq WMD" +"oliv911","Certain U.S. government officials planned the attacks of September 11, 2001, because they wanted the United States to go to war in the Middle East.","Pos keyed","9/11 conspiracy" +"oliv911","U.S. government officials tried to prevent the attacks of September 11, 2001. They DID NOT want the United States to go to war in the Middle East.","Neg keyed","9/11 conspiracy" +"olivContrails","Vapor trails left by aircraft are produced by aircraft engine exhaust or changes in air pressure and have nothing to do with government officials.","Neg keyed","Contrails conspiracy" +"olivContrails","Vapor trails left by aircraft are actually chemical agents deliberately sprayed in a clandestine program directed by government officials.","Pos keyed","Contrails conspiracy" +"olivIraq","The U.S. invasion of Iraq was part of a campaign to fight terrorism, not driven by oil companies and Jews in the U.S. and Israel.","Neg keyed","Iraq conspiracy" +"olivIraq","The U.S. invasion of Iraq was not part of a campaign to fight terrorism, but was driven by oil companies and Jews in the U.S. and Israel.","Pos keyed","Iraq conspiracy" +"olivObama","Barack Obama was not really born in the United States and DOES NOT have an authentic Hawaiian birth certificate.","Pos keyed","Obama birth certificate" +"olivObama","Barack Obama was born in the United States and has an authentic Hawaiian birth certificate.","Neg keyed","Obama birth certificate" +"olivSoros","Billionaire George Soros is not trying to destabilize the American government, take control of the media, or put the world under his control.","Neg keyed","Soros conspiracy" +"olivSoros","Billionaire George Soros is behind a hidden plot to destabilize the American government, take control of the media, and put the world under his control.","Pos keyed","Soros conspiracy" +"trumpBudget","The 2018 budget of the Trump administration proposed to cut spending on food stamps (the Supplemental Nutrition Assistance Program) by more than $60 billion over the fiscal years 2018 to 2022.","Pos keyed","Trump food stamps" +"trumpBudget","The 2018 budget of the Trump administration proposed to cut spending on food stamps (the Supplemental Nutrition Assistance Program) by less than $60 billion over the fiscal years 2018 to 2022.","Neg keyed","Trump food stamps" diff --git a/data/external/LucidWideFile.csv b/data/external/LucidWideFile.csv new file mode 100755 index 0000000..893d13b --- /dev/null +++ b/data/external/LucidWideFile.csv @@ -0,0 +1,2056 @@ +"id","response.chinaCurrency","response.trumpBudget","response.berinskyACA","response.nyhanReifler","response.hksVitaminC","response.hksBioWeapon","response.hksHandWash","response.hksUSCreated","response.demNormsAccept","response.demNormsViol","response.forBornUS","response.forBornCanada","Q47","Q48","Q49","response.olivIraq","response.oliv911","response.olivObama","response.olivContrails","response.olivSoros","Q53.2","lucid_rid","lucid_age","lucid_gender","lucid_hhi","lucid_race","lucid_hispanic","lucid_education","lucid_political_party","lucid_region","lucid_zip","lucid_dma","lucid_state","isRandomized","berinskyACA","nyhanReifler","hksVitaminC","hksBioWeapon","hksHandWash","hksUSCreated","chinaCurrency","trumpBudget","olivIraq","oliv911","olivObama","olivContrails","olivSoros","demNormsAccept","demNormsViol","forBornUS","forBornCanada","shirker.allcGent","shirker.oliv","allcGentz.Beyonce.rally","allcGentz.Clinton.arms","allcGentz.Clinton.deplorables","allcGentz.Clinton.stumbled","allcGentz.FBI.Clinton.charges","allcGentz.FBI.agent","allcGentz.FBI.director","allcGentz.Ireland.asylum","allcGentz.Pence.vulgar","allcGentz.Pope.endorse","allcGentz.RuPaul","allcGentz.Trump.concede","response.allcGentz.Beyonce.rally","response.allcGentz.Clinton.arms","response.allcGentz.Clinton.deplorables","response.allcGentz.Clinton.stumbled","response.allcGentz.FBI.Clinton.charges","response.allcGentz.FBI.agent","response.allcGentz.FBI.director","response.allcGentz.Ireland.asylum","response.allcGentz.Pence.vulgar","response.allcGentz.Pope.endorse","response.allcGentz.RuPaul","response.allcGentz.Trump.concede","recode.chinaCurrency","recode.trumpBudget","recode.berinskyACA","recode.nyhanReifler","recode.hksVitaminC","recode.hksBioWeapon","recode.hksHandWash","recode.hksUSCreated","recode.demNormsAccept","recode.demNormsViol","recode.forBornUS","recode.forBornCanada","recode.olivIraq","recode.oliv911","recode.olivObama","recode.olivContrails","recode.olivSoros","recode.allcGentz.Beyonce.rally","recode.allcGentz.Clinton.arms","recode.allcGentz.Clinton.deplorables","recode.allcGentz.Clinton.stumbled","recode.allcGentz.FBI.Clinton.charges","recode.allcGentz.FBI.agent","recode.allcGentz.FBI.director","recode.allcGentz.Ireland.asylum","recode.allcGentz.Pence.vulgar","recode.allcGentz.Pope.endorse","recode.allcGentz.RuPaul","recode.allcGentz.Trump.concede","education","age","vconservative","party","vliberal","numeracy","wgt" +1,79.7,99.9,"True","Strongly agree","Definitely false","Definitely true","Probably true","Definitely false","Strongly agree","Slightly disagree",50,62.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e2ca-3b11-1a03-a87b-16452c074b30","19","2","1","1","1","2","3","2","62466","581","14","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","Not sure","","","","","",79.7,99.9,"False","Strongly agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Slightly disagree",50,62.8,"Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","Not sure","","","","","",2,19,0,"Democrat",0,0,0.47046686834987 +2,86.9,84.3,"True","Agree","Probably true","Definitely true","Probably true","Probably true","Somewhat agree","Strongly agree",71.9,63.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Agree","Agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe0e463-4dfa-06ec-a15d-6db54d7217f1","41","2","1","1","1","2","2","2","53203","617","50","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",86.9,84.3,"True","Disagree","Probably false","Definitely false","Probably false","Probably false","Somewhat disagree","Strongly agree",71.9,63.2,"Disagree","Disagree","Agree","Disagree","Disagree","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",2,41,0,"Republican",1,0,0.746154240255765 +3,68.2,78.1,"True","Strongly agree","Definitely false","Definitely true","Probably true","Definitely false","Somewhat agree","Strongly disagree",17.3,34.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0e4d7-20cb-c775-ed35-7d60855aef2d","57","1","9","2","1","4","1","1","11225","501","33","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","Yes, true","","","","","","","","",31.8,21.9,"False","Strongly agree","Definitely false","Definitely false","Probably false","Definitely false","Somewhat disagree","Strongly agree",17.3,34.9,"Disagree","","","","","","","","Yes, true","","","","","","","","",4,57,0,"Democrat",1,0,1.01810641559312 +4,50,80.5,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",86.5,25.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e4a6-c1ac-0228-abf5-5006ff664e73","66","2","19","1","1","7","1","4","99501","743","2","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","No, false","","","","","","",50,19.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",13.5,74.7,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","","","","","","No, false","","","","","","",7,66,0,"Independent",0,0,0.724833266434345 +5,24.2,72.4,"False","Neither agree nor disagree","Probably true","Definitely true","Probably false","Definitely false","Somewhat disagree","Slightly agree",44.8,47.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe0e554-b165-506d-a91a-06c277994f6c","36","2","5","1","1","6","2","4","97303","820","38","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false",75.8,72.4,"False","Neither agree nor disagree","Probably false","Definitely true","Probably false","Definitely false","Somewhat disagree","Slightly disagree",55.2,52.7,"Neither agree nor disagree","Agree","Disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false",6,36,1,"Republican",0,0,0.962353446331682 +6,50,80.2,"True","Strongly agree","Probably false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",70.1,95.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly agree","","","","Vote for the Republican Donald Trump","5fe0e28c-ddbc-f931-1a14-753bba9dae22","78","2","11","1","1","4","3","1","19403","504","39","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true",50,80.2,"True","Strongly disagree","Probably false","Probably true","Probably false","Probably false","Strongly disagree","Strongly disagree",29.9,4.40000000000001,"Strongly agree","Strongly agree","","","","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false",4,78,0,"Independent",0,1,0.80848632469251 +7,67.2,67.9,"False","Neither agree nor disagree","Probably true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",46.6,51.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0e5de-7ffd-2149-a6be-e41f89850e61","34","1","8","1","2","2","1","2","60411","602","14","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",32.8,67.9,"True","Neither agree nor disagree","Probably false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly disagree",53.4,48.4,"Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","No, false","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",2,34,0,"Democrat",1,0,1.18523329468698 +8,49.9,88.9,"False","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",9.6,23.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0e68c-7a22-86b8-ead8-df603f1a1200","69","2","3","1","1","2","1","2","57216","725","42","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","","","","Not sure","","",50.1,88.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",9.6,23.2,"Neither agree nor disagree","","","","","","","","","","","","","","Not sure","","",2,69,0,"Democrat",0,1,0.561994574124504 +9,75.6,83,"True","Disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",53.4,55.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe0e76e-8381-45d6-250a-541701f37ba3","22","1","8","1","1","2","2","3","77484","618","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure",24.4,17,"True","Agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",53.4,55.9,"Agree","Neither agree nor disagree","Agree","Disagree","Disagree","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure",2,22,0,"Republican",0,0,0.801596112833044 +10,50,58.6,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Definitely true","Not sure","Strongly disagree","Strongly agree",90.3,93.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0e520-f4f2-4a37-2783-c4b8244d1fe1","67","2","5","2","1","6","1","3","75203","623","44","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","Not sure","","","","","","",50,58.6,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Not sure","Strongly agree","Strongly disagree",90.3,93.1,"Neither agree nor disagree","","","","","","","","","","Not sure","","","","","","",6,67,0,"Democrat",0,0,0.673136595827227 +11,50,49.9,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat agree",50.9,44,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e6b5-6c11-bdb2-3f9d-fbb41be5816f","24","2","-3105","1","1","4","1","1","05401","523","46","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,49.9,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",49.1,56,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,24,0,"Democrat",0,0,0.454844440982363 +12,99.9,99.9,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",100,25.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Agree","Strongly agree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e6d3-cb71-a348-a7ae-f32d44913676","30","1","12","15","2","7","1","3","33186","528","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","Yes, true","","","","","","","","","","",0.0999999999999943,99.9,"True","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",100,25.5,"Disagree","Strongly agree","Agree","Agree","Neither agree nor disagree","","Yes, true","","","","","","","","","","",7,30,0,"Democrat",1,2,0.829224014640894 +13,50.9,81,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Probably true","Definitely true","Strongly disagree","Strongly agree",65.8,27.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0e63a-0428-e7cf-9012-c8c2e8779f3c","33","2","5","1","1","6","2","3","30813","520","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","Yes, true","","","","","","","",50.9,81,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably true","Definitely false","Strongly agree","Strongly disagree",65.8,27.8,"Neither agree nor disagree","","","","","","","","","No, false","","","","","","","",6,33,0,"Republican",0,0,0.697625211881609 +14,50,61.6,"True","Disagree","Definitely false","Definitely true","Definitely true","Definitely true","Somewhat agree","Strongly disagree",76.3,64.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0e668-480a-a4bb-8ca3-6b54b817f874","70","2","21","1","1","6","1","2","46217","527","15","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true",50,61.6,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",23.7,35.5,"Disagree","","","","","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","No, false","Not sure","Not sure","Yes, true",6,70,0,"Democrat",0,1,0.561994574124504 +15,72.9,64.8,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Definitely false","Slightly disagree","Slightly agree",70.4,74.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0e619-c37b-acc9-7edc-c0fccf07e3bc","70","2","1","1","1","2","1","3","24882","559","49","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","Yes, true","","","","","","","","",27.1,64.8,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Slightly disagree",29.6,25.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","Yes, true","","","","","","","","",2,70,1,"Republican",0,0,1.31422437374394 +16,73.1,76.4,"True","Strongly agree","Probably true","Probably true","Probably false","Probably false","Strongly disagree","Strongly disagree",46.5,62.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0e733-b822-1709-e337-ea5592e09b32","32","2","3","15","1","6","1","2","44102","510","36","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","","Yes, true","","","","","","","No, false","","Yes, true",73.1,23.6,"False","Strongly agree","Probably false","Probably true","Probably true","Probably false","Strongly agree","Strongly agree",46.5,62.5,"Disagree","","","","","Not sure","","No, false","","","","","","","No, false","","Yes, true",6,32,0,"Democrat",0,0,0.390393297490073 +17,52.3,99.9,"True","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",8.7,37.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0e721-371f-92e2-12ee-865fa079b5d1","43","1","3","2","2","4","2","3","27379","518","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",52.3,99.9,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.7,37.7,"Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false","No, false",4,43,1,"Republican",0,0,2.07099305322106 +18,50,50,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",25.1,23.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e7ae-9c1d-fade-2eb7-3e84579cbda1","34","1","4","1","1","6","1","4","95678","862","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed",NA,"Neg keyed",NA,NA,NA,"Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true",NA,"Yes, true",NA,NA,NA,50,50,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.1,23.4,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true",NA,"No, false",NA,NA,NA,6,34,0,"Independent",0,2,0.824062531779561 +19,50,76.1,"Not sure","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",74.8,92,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e68b-5bd8-e7e9-0b43-57a9df196aaf","73","2","-3105","1","1","8","3","4","85203","753","3","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Not sure","No, false",50,23.9,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.2,8,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",8,73,0,"Independent",0,0,0.724833266434345 +20,50,15.6,"False","Strongly disagree","Definitely true","Not sure","Definitely true","Not sure","Somewhat agree","Slightly disagree",50.9,75.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0e70c-c3f7-0129-472b-d99d9f198a4d","25","2","4","1","1","4","3","1","12180","532","33","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","Yes, true","",50,15.6,"False","Strongly agree","Definitely false","Not sure","Definitely true","Not sure","Somewhat disagree","Slightly disagree",50.9,75.6,"Neither agree nor disagree","Strongly disagree","Disagree","Agree","Neither agree nor disagree","","","","","","","","","","","Yes, true","",4,25,0,"Democrat",0,0,1.26155319027175 +21,30,99.9,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Not sure","Probably false","Strongly agree","Strongly disagree",25.4,28.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e6b3-07de-aae2-5a7f-4f4009dbe85b","50","1","1","2","1","2","1","1","10457","501","33","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",70,0.0999999999999943,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Not sure","Probably true","Strongly agree","Strongly disagree",25.4,28.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,50,0,"Democrat",0,0,1.03021104371527 +22,99.9,88.5,"True","Strongly agree","Definitely true","Probably false","Definitely true","Probably true","Strongly agree","Slightly agree",97.9,76.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0e74c-75c7-21d7-5b7b-b0719f0d6efe","30","2","1","4","1","6","1","3","36116","698","1","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",0.0999999999999943,11.5,"True","Strongly agree","Definitely false","Probably false","Definitely true","Probably false","Strongly disagree","Slightly disagree",97.9,76.7,"Strongly disagree","Strongly disagree","Agree","Strongly agree","Strongly agree","No, false","No, false","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",6,30,0,"Democrat",0,0,0.357843324247791 +23,51.9,82,"True","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",80.9,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e638-9c16-5b3a-86d7-832e0b8dd786","63","2","13","1","1","6","1","4","91377","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","","","","","","","","","","","",48.1,82,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.1,9.90000000000001,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","","","","","","","","","","","",6,63,0,"Democrat",1,1,0.832061691423535 +24,99.9,99.9,"False","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",3,8.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e7ef-4465-52a1-5287-e148fdd9ec85","45","1","3","1","1","6","1","3","40204","529","18","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure",99.9,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",3,8.9,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure",6,45,0,"Independent",1,0,0.747484873742735 +25,86.1,70.7,"True","Strongly agree","Definitely true","Probably true","Probably true","Definitely true","Strongly agree","Slightly agree",100,96.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Disagree","Agree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe0e886-f82a-ed95-544d-4f7af4f3ac58","40","2","4","1","1","2","2","3","23308","544","47","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",13.9,29.3,"False","Strongly agree","Definitely true","Probably true","Probably true","Definitely false","Strongly disagree","Slightly disagree",0,3.90000000000001,"Neither agree nor disagree","Disagree","Agree","Agree","Disagree","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",2,40,1,"Republican",0,2,0.683941849031096 +26,59.7,19.9,"Not sure","Strongly agree","Definitely false","Definitely false","Probably true","Definitely false","Slightly agree","Somewhat agree",48.3,91.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0e804-a43f-f217-d470-0314b2b15c13","23","2","1","1","1","6","2","1","16057","508","39","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Not sure","Not sure",59.7,19.9,"Not sure","Strongly agree","Definitely false","Definitely true","Probably false","Definitely false","Slightly disagree","Somewhat agree",51.7,8.3,"Strongly disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure",6,23,0,"Independent",0,0,0.676814415645079 +27,50.8,99.9,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",20.2,21,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e70e-a69e-a3fb-8980-6e2558c6b3d9","53","2","18","1","1","4","1","3","30677","524","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","No, false","No, false","Yes, true",50.8,99.9,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.2,21,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",4,53,0,"Democrat",1,3,0.59837456742152 +28,99.4,88.4,"True","Agree","Definitely true","Probably true","Definitely true","Probably true","Strongly agree","Somewhat agree",95.4,87.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe0e82f-3885-e8f4-cf85-969145a31009","40","1","7","1","1","6","1","1","16933","565","39","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",99.4,11.6,"True","Agree","Definitely false","Probably false","Definitely true","Probably false","Strongly disagree","Somewhat agree",4.59999999999999,12.9,"Strongly agree","Agree","Agree","Agree","Agree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false",6,40,0,"Republican",0,1,0.901138905289622 +29,67.6,33.2,"False","Neither agree nor disagree","Probably true","Probably true","Definitely true","Probably false","Somewhat agree","Strongly disagree",79.4,77.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0e890-845e-880c-abab-c1e38fd707f9","41","2","9","1","1","6","2","3","76049","623","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Not sure",32.4,33.2,"False","Neither agree nor disagree","Probably false","Probably false","Definitely false","Probably false","Somewhat disagree","Strongly disagree",20.6,22.6,"Neither agree nor disagree","Disagree","Agree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Not sure",6,41,1,"Republican",0,0,0.683941849031096 +30,74.6,1.3,"False","Agree","Definitely false","Probably true","Definitely false","Not sure","Strongly agree","Somewhat agree",53.1,84.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Strongly disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe0e7c9-7477-78d0-5a02-f3120a10be63","36","2","1","2","2","2","1","2","43213","535","36","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","","","No, false","","","",25.4,98.7,"False","Agree","Definitely true","Probably true","Definitely false","Not sure","Strongly disagree","Somewhat agree",46.9,15.8,"Agree","Neither agree nor disagree","Strongly disagree","Agree","Agree","","","","","","","","","No, false","","","",2,36,0,"Democrat",0,0,1.21549194229461 +31,65.4,78,"True","Agree","Definitely true","Probably false","Definitely true","Definitely true","Strongly agree","Slightly agree",76.7,91.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe0e8f1-7995-1be8-823a-2b7ca523c95c","31","1","4","1","1","6","1","1","19096","504","39","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","Yes, true","","","",65.4,78,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Slightly disagree",23.3,8.2,"Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","","","","","","","","","Yes, true","","","",6,31,0,"Democrat",0,0,0.617714819145265 +32,99.9,99.9,"False","Strongly agree","Probably true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly agree",100,79.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e866-0e0c-76eb-1b82-b65785a70943","41","2","1","2","1","6","1","4","90003","803","5","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","Not sure","Yes, true",0.0999999999999943,99.9,"False","Strongly agree","Probably true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",100,79.3,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false",6,41,0,"Democrat",1,0,0.845100599025514 +33,71.2,74.1,"True","Disagree","Definitely true","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly agree",74,79.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Vote for the Democrat Joe Biden","5fe0e8d5-3f27-4542-37b0-089d9e29dcf2","82","2","5","1","1","7","1","1","07036","501","31","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","Not sure","",71.2,74.1,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",26,20.3,"Strongly disagree","","","","","","","","","","","","","","","Not sure","",7,82,0,"Democrat",0,1,0.543332857421717 +34,75.7,95.8,"False","Strongly disagree","Probably false","Definitely false","Probably false","Definitely false","Slightly agree","Somewhat disagree",77.1,50.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Vote for a different candidate","5fe0e942-c258-70c2-5efe-b9a2b2224ade","19","2","19","1","1","2","1","1","15237","508","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",75.7,95.8,"True","Strongly agree","Probably false","Definitely false","Probably false","Definitely false","Slightly disagree","Somewhat agree",22.9,49.1,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Not sure","No, false","Yes, true","No, false",2,19,0,"Democrat",1,0,0.255840936430444 +35,86,99.9,"True","Strongly agree","Definitely true","Probably true","Definitely true","Probably true","Strongly agree","Somewhat agree",74,77.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0e9bf-6198-ad08-868f-d01e8f3c7739","32","1","3","4","1","2","2","4","97218","820","38","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false",86,99.9,"False","Strongly disagree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Somewhat disagree",26,22.1,"Strongly disagree","Agree","Disagree","Strongly agree","Strongly disagree","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false",2,32,0,"Republican",0,0,0.935932091093374 +36,50,80.4,"True","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",15.5,17.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e893-8223-7c28-077e-684d0d805406","42","1","1","1","1","6","1","3","29063","546","41","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",50,80.4,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.5,17.4,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",6,42,0,"Independent",0,2,0.574171657914799 +37,69,99.9,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Probably false","Strongly disagree","Strongly agree",22.3,51,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0e99b-8a2c-7466-2d72-8487c442b4d0","71","2","11","1","1","2","1","2","61614","675","14","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","No, false","","","","",69,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",22.3,51,"Disagree","","","","","","","","","","","","No, false","","","","",2,71,0,"Democrat",1,0,0.561994574124504 +38,61.7,90.3,"True","Agree","Probably true","Probably true","Definitely true","Probably true","Strongly disagree","Strongly disagree",30.1,43.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe0e916-b6ec-68f2-38ba-16f090214f73","36","2","1","1","1","4","3","3","26101","597","49","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","Yes, true","","","","",38.3,90.3,"False","Agree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",30.1,43.8,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","","","","","","","","Yes, true","","","","",4,36,0,"Independent",0,0,0.459634341107367 +39,60.5,75.4,"False","Strongly agree","Definitely false","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly agree",16.2,31.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe0e874-37f8-2b3b-9e7c-54bfe07fb1f8","36","1","5","1","1","4","1","1","06082","533","7","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","Yes, true","","","","","","","","","",60.5,24.6,"True","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",16.2,31.1,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","","","Yes, true","","","","","","","","","",4,36,0,"Independent",0,1,0.605598834997122 +40,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",75.1,75.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e892-ffe9-5d6e-64b5-176f1895d5e6","20","1","19","4","1","6","3","2","49240","505","23","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",24.9,24.9,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,20,0,"Independent",0,1,0.448575745850802 +41,50,50,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",75.1,75.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e6aa-982d-38f9-fdff-29854fbc3174","58","2","4","15","2","2","1","4","91764","803","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",50,50,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",24.9,24.9,"Agree","Disagree","Strongly agree","Disagree","Neither agree nor disagree","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","No, false","Yes, true",2,58,0,"Democrat",1,0,1.17810136124565 +42,55.7,61.1,"False","Strongly disagree","Probably true","Probably true","Definitely true","Definitely true","Strongly agree","Slightly agree",13.9,19.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0e812-d4c9-2ded-4d85-ff7e9fcc8478","59","2","1","1","1","2","2","3","76048","623","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",44.3,61.1,"True","Strongly agree","Probably false","Probably true","Definitely false","Definitely false","Strongly disagree","Slightly agree",13.9,19.9,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",2,59,1,"Republican",0,0,0.879927333598919 +43,72.4,99.9,"False","Agree","Definitely true","Probably false","Probably true","Not sure","Slightly disagree","Strongly disagree",12.7,1.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Republican Donald Trump","5fe0e8b0-f15d-501e-fda0-19f144fb3ac3","44","2","9","1","1","6","2","4","80538","751","6","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","No, false","","","","","","","","","","",72.4,99.9,"True","Agree","Definitely false","Probably false","Probably false","Not sure","Slightly agree","Strongly disagree",12.7,1.4,"Agree","","","","","","No, false","","","","","","","","","","",6,44,0,"Republican",0,1,0.962353446331682 +44,54.7,86,"False","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",63.1,76.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e93a-7be3-4be0-9cd4-400688f8cfe7","30","2","4","1","1","2","1","3","31525","561","11","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","No, false","Yes, true",45.3,14,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",36.9,23.6,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true","Yes, true",2,30,0,"Democrat",1,0,0.468830069482283 +45,0.1,0.1,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",82.2,82.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0e99e-4251-d762-2afa-889787ece28e","35","2","8","15","1","6","2","4","85213","753","3","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",99.9,0.1,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.8,17.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,35,0,"Independent",0,0,1.25936664358246 +46,49.5,49.9,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",69.4,72.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e977-8aa0-f3ef-dad3-e6277a8e2acb","53","2","1","2","1","2","1","3","31204","503","11","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","","Not sure","",49.5,49.9,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",30.6,27.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","","","","","Not sure","",2,53,0,"Democrat",0,0,0.781904367900328 +47,85.7,96.1,"False","Agree","Definitely true","Definitely false","Definitely true","Definitely true","Somewhat disagree","Strongly agree",63,56.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0e9bd-36ce-4c64-b272-821645694ea2","73","2","6","1","1","6","1","2","61108","610","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","Yes, true","Yes, true","","No, false","No, false","","Yes, true","","Yes, true","",85.7,96.1,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",63,56.9,"Disagree","","","","","","","No, false","Yes, true","","No, false","Yes, true","","No, false","","No, false","",6,73,0,"Democrat",1,0,0.561994574124504 +48,44.8,54,"True","Neither agree nor disagree","Probably true","Probably false","Definitely true","Probably false","Strongly agree","Slightly agree",47.2,41.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0e979-c69d-2256-1f3b-aaef392fdad0","31","2","1","4","1","6","1","4","91007","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",55.2,46,"False","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably false","Strongly agree","Slightly agree",47.2,41.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",6,31,0,"Democrat",0,1,1.28456231010058 +49,50,78.4,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely false","Somewhat disagree","Strongly agree",50,50,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e920-9020-9e9b-c86c-6d11768b03cc","37","2","4","15","1","7","1","4","91106","803","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true",50,21.6,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",50,50,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",7,37,0,"Democrat",1,0,0.493634333265881 +50,73,71.7,"True","Agree","Definitely false","Probably false","Definitely true","Probably true","Somewhat disagree","Somewhat disagree",95,89.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0ea6b-dc65-b95f-c55c-25375890c618","52","1","5","4","1","6","1","4","90006","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","No, false","","","","","","",27,28.3,"True","Disagree","Definitely false","Probably true","Definitely false","Probably false","Somewhat agree","Somewhat disagree",5,10.2,"Agree","","","","","","","","","","No, false","","","","","","",6,52,0,"Independent",0,0,0.802777695825244 +51,50,50,"True","Neither agree nor disagree","Definitely false","Definitely true","Probably true","Definitely false","Somewhat agree","Somewhat disagree",63,86.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ea01-cc00-d0c1-21bc-023d2b2534bb","32","1","6","4","1","4","2","2","53218","617","50","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","","No, false","",50,50,"False","Neither agree nor disagree","Definitely true","Definitely false","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",37,13.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","","","","","No, false","",4,32,0,"Independent",0,0,0.725668621048482 +52,50,86.8,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Definitely true","Definitely false","Slightly agree","Strongly agree",56.2,70.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0ea10-ced8-122a-4812-4771959161d6","27","2","1","2","1","6","1","3","30344","524","11","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","Not sure","","","","","","","",50,13.2,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",56.2,70.1,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","","","","","Not sure","","","","","","","",6,27,0,"Democrat",1,0,0.612626771072269 +53,65.1,65.1,"Not sure","Strongly disagree","Definitely false","Probably false","Definitely false","Probably false","Slightly agree","Strongly agree",27.4,37,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e86f-102d-11cc-f7c4-142fdaf664d0","53","1","3","2","1","2","1","3","23505","544","47","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","Not sure",34.9,34.9,"Not sure","Strongly agree","Definitely false","Probably true","Definitely false","Probably false","Slightly disagree","Strongly disagree",27.4,37,"Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","","","","","","","","","","","","Not sure",2,53,1,"Democrat",0,0,0.976748878611933 +54,71.6,82.7,"True","Neither agree nor disagree","Not sure","Not sure","Definitely false","Probably false","Strongly agree","Slightly agree",78.7,97.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0ea2b-f01c-f2f8-f865-d06a7420e2f2","68","2","1","1","1","7","1","1","07738","501","31","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","Not sure","","","","","","",71.6,82.7,"True","Neither agree nor disagree","Not sure","Not sure","Definitely false","Probably true","Strongly agree","Slightly agree",21.3,2.40000000000001,"Disagree","","","","","","","","","","Not sure","","","","","","",7,68,0,"Democrat",0,0,0.543332857421717 +55,30.5,50,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably false","Slightly disagree","Slightly disagree",40,29.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0e4ef-c9da-5b36-9d10-1b5bd9c5fb3e","18","2","-3105","16","3","2","1","3","33150","528","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure","No, false","Not sure",30.5,50,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Slightly agree","Slightly disagree",40,29.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure","No, false","Not sure",2,18,0,"Democrat",0,0,1.55773497079245 +56,50,75.6,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Probably true","Slightly disagree","Strongly disagree",58,29.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0ea02-3e69-d714-8bf4-57baafbedc7f","38","1","7","1","1","6","3","3","35801","691","1","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true",50,24.4,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Probably false","Slightly agree","Strongly disagree",58,29.9,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Yes, true","No, false",6,38,0,"Independent",0,0,0.574171657914799 +57,46.8,99.9,"Not sure","Disagree","Probably true","Definitely true","Definitely true","Definitely false","Slightly agree","Strongly disagree",28.6,54.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ea52-bc64-c0ab-277d-91a6c5f8ea21","44","2","1","1","1","2","1","4","98541","819","48","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","","","","","","","","","","","",53.2,0.0999999999999943,"Not sure","Agree","Probably true","Definitely true","Definitely false","Definitely false","Slightly agree","Strongly disagree",28.6,54.4,"Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","","","","","","","","","","","",2,44,1,"Democrat",0,0,0.962353446331682 +58,52.1,57.8,"Not sure","Disagree","Probably true","Not sure","Definitely false","Definitely false","Somewhat disagree","Strongly agree",81,92,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe0ea3f-6c22-4f8f-7403-aea94214095c","32","1","19","1","1","6","2","1","11001","501","33","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",47.9,57.8,"Not sure","Disagree","Probably false","Not sure","Definitely false","Definitely false","Somewhat agree","Strongly disagree",19,8,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",6,32,0,"Republican",0,0,0.919167646530211 +59,21.9,77.4,"False","Strongly agree","Definitely false","Definitely true","Probably true","Definitely true","Strongly disagree","Strongly disagree",6.6,21.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0e88f-15b0-adff-c9aa-d3e1ad3d51ff","62","2","6","1","1","2","2","3","25181","564","49","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","Not sure","","","Yes, true","Yes, true","Yes, true","No, false","","No, false","","",21.9,22.6,"True","Strongly agree","Definitely false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",6.6,21.6,"Strongly disagree","Agree","Agree","Disagree","Agree","","Not sure","","","No, false","No, false","Yes, true","No, false","","No, false","","",2,62,1,"Republican",0,0,0.879927333598919 +60,51.6,66,"False","Disagree","Definitely true","Definitely false","Probably true","Definitely true","Somewhat agree","Strongly agree",82.5,80.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0ea51-5b48-8115-6f80-20fcfd4686bf","29","2","16","15","2","6","1","2","46307","602","15","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true",51.6,34,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Somewhat agree","Strongly disagree",17.5,19.8,"Neither agree nor disagree","","","","","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",6,29,0,"Democrat",0,0,0.724189163723607 +61,60.3,75.8,"Not sure","Agree","Probably true","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",44,39.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Republican Donald Trump","5fe0ea1b-a8bc-ccb5-1cd5-6c8cb32bb075","51","2","4","1","1","2","2","3","33773","539","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","Yes, true","","","Not sure","","","","","Not sure","",39.7,24.2,"Not sure","Agree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",44,39.3,"Agree","","","","","","","Yes, true","","","Not sure","","","","","Not sure","",2,51,0,"Independent",0,0,0.890389101626892 +62,59.1,22.4,"False","Neither agree nor disagree","Definitely true","Not sure","Definitely false","Definitely true","Strongly agree","Strongly agree",50.3,26.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0e978-2c06-0ecb-c416-020c7f13aedb","40","2","1","1","1","6","2","3","32134","561","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","Not sure","","","","","","","",59.1,77.6,"True","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.3,26.8,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","","","","","Not sure","","","","","","","",6,40,1,"Republican",0,0,1.17262539987032 +63,38.6,64.8,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Slightly disagree","Somewhat agree",20.1,20.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0e992-5799-829d-4fce-8a1f3fb71268","60","2","11","1","1","5","2","1","13034","555","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","No, false",61.4,64.8,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Somewhat disagree",20.1,20.1,"Disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true",5,60,0,"Republican",0,0,0.928089989751292 +64,55.9,69.7,"True","Disagree","Probably false","Probably true","Definitely false","Definitely false","Somewhat agree","Somewhat agree",80.6,85,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0eaa4-da07-c1f8-2c3d-0b0ef9872716","41","1","8","4","2","6","1","4","80301","751","6","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","No, false",55.9,69.7,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",19.4,15,"Agree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true",6,41,0,"Democrat",1,1,1.14389012134224 +65,5.8,83.9,"True","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Slightly agree","Somewhat disagree",8.7,18,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly agree","Agree","Agree","Strongly agree","Not vote in the presidential election","5fe0e9df-c175-e680-251d-045f64b5f53e","32","2","11","2","2","6","3","3","74020","671","37","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","No, false","","No, false","No, false","","No, false","No, false","No, false","Yes, true",94.2,16.1,"True","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely false","Slightly agree","Somewhat disagree",8.7,18,"Strongly agree","Strongly agree","Agree","Agree","Strongly agree","","","","Yes, true","","Yes, true","Yes, true","","Yes, true","No, false","Yes, true","Yes, true",6,32,0,"Other",0,0,2.89929541160135 +66,50,66.5,"True","Strongly agree","Probably false","Not sure","Definitely false","Definitely true","Strongly agree","Slightly agree",1.4,4.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0ea5f-8a30-713e-2b1f-d13083e4a350","72","2","9","1","1","4","3","1","17601","566","39","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","Yes, true","","","","","","","","","","",50,33.5,"False","Strongly disagree","Probably true","Not sure","Definitely false","Definitely false","Strongly disagree","Slightly agree",1.4,4.7,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","","Yes, true","","","","","","","","","","",4,72,0,"Independent",0,0,0.80848632469251 +67,15.4,86.4,"Not sure","Neither agree nor disagree","Not sure","Probably true","Probably false","Probably true","Strongly agree","Strongly agree",64.8,51.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Not vote in the presidential election","5fe0e969-0959-7f45-71d8-74e82b9b801a","54","2","1","1","1","2","1","3","72687","619","4","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","Not sure","","","","","","","","","Not sure",15.4,86.4,"Not sure","Neither agree nor disagree","Not sure","Probably true","Probably false","Probably true","Strongly disagree","Strongly agree",64.8,51.6,"Neither agree nor disagree","","","","","","","Not sure","","","","","","","","","Not sure",2,54,0,"Democrat",0,0,1.52658135748604 +68,50.2,0.1,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly disagree","Strongly agree",19,17.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0e9f8-b4db-2ae7-4848-6154013cb04d","62","2","4","1","1","4","2","3","35045","630","1","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","No, false","","","","","","","","Not sure","","",49.8,99.9,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",19,17.2,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","","Yes, true","","","","","","","","Not sure","","",4,62,1,"Republican",0,1,0.879927333598919 +69,50,69.2,"Not sure","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly disagree","Somewhat disagree",8.8,7.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","","","","","Vote for the Republican Donald Trump","5fe0eaaa-3d92-16f2-1c9a-70d2471dd940","41","1","8","1","1","6","2","3","72022","693","4","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true",50,30.8,"Not sure","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",8.8,7.8,"Disagree","","","","","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",6,41,0,"Republican",0,1,0.854374859000727 +70,50,99.9,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",60.3,60.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e8a6-bd8f-eebc-8605-9479d1e3fb56","28","2","5","1","1","6","1","3","37115","659","43","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure",50,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",39.7,39.7,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure",6,28,0,"Democrat",0,0,0.468830069482283 +71,70.7,50,"True","Neither agree nor disagree","Not sure","Not sure","Definitely false","Not sure","Somewhat agree","Somewhat agree",36.8,46.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0eb5d-2eaa-1cec-841a-d5152eac45ed","30","2","2","2","1","2","1","3","32460","656","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",29.3,50,"True","Neither agree nor disagree","Not sure","Not sure","Definitely false","Not sure","Somewhat disagree","Somewhat agree",63.2,53.1,"Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,30,0,"Democrat",0,0,0.612626771072269 +72,75.3,83.4,"True","Agree","Probably false","Probably true","Definitely true","Definitely true","Slightly disagree","Strongly disagree",55.1,26.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0e939-034f-cb8a-b010-622a1ac65c2b","48","2","1","2","1","2","2","3","32771","534","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","","","","","","","","","","","",24.7,16.6,"False","Agree","Probably true","Probably true","Definitely false","Definitely true","Slightly agree","Strongly disagree",55.1,26.4,"Disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Yes, true","","","","","","","","","","","",2,48,0,"Independent",0,1,1.1634838203317 +73,49.2,50.3,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely true","Slightly disagree","Slightly agree",77.8,75.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0eadb-9029-5b4b-5d1b-1ce42e419e58","32","2","7","1","1","2","3","2","46241","527","15","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","No, false","Not sure",50.8,50.3,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Definitely true","Slightly disagree","Slightly agree",77.8,75.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure",2,32,0,"Other",0,0,1.30488343971418 +74,50,24.8,"Not sure","Disagree","Probably false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",17.4,17.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ea29-250b-ceff-9eeb-d11d5610d589","29","2","12","1","1","6","1","4","99111","881","48","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","No, false",50,75.2,"Not sure","Disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.4,17.7,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true",6,29,0,"Democrat",0,0,0.659676306910243 +75,50,57.2,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Definitely true","Not sure","Slightly disagree","Strongly agree",9.9,63.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0e75f-65e1-782b-f12b-ad0623ff6382","32","2","-3105","9","1","6","2","2","49038","563","23","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","","No, false","","Not sure","","No, false",50,57.2,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Not sure","Slightly disagree","Strongly disagree",9.9,63.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","","No, false","","Not sure","","No, false",6,32,1,"Republican",0,0,0.58091027987906 +76,64.8,80.4,"True","Strongly agree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Somewhat disagree",22.8,32.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0ea20-06f2-0aaa-0145-1ab49c893e6f","56","1","9","2","1","2","1","3","38060","640","43","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",64.8,80.4,"True","Strongly agree","Definitely false","Probably false","Definitely true","Probably false","Strongly agree","Somewhat agree",22.8,32.4,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true",2,56,0,"Democrat",0,0,2.46261614434084 +77,49.8,6.5,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly agree",54.1,67.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ea3a-33a0-2e38-67cc-29717bd797cf","57","2","4","15","2","6","2","3","33147","528","10","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Not sure",49.8,6.5,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",45.9,32.5,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","Not sure",6,57,1,"Republican",0,0,1.24587347331975 +78,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly agree","Slightly agree",30.3,36.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0eb7c-0e72-db1d-8837-8ae593fe3f5b","30","2","1","1","1","2","3","1","14867","555","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly disagree","Slightly disagree",69.7,63.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,30,0,"Independent",0,0,1.26155319027175 +79,77.6,22,"True","Disagree","Definitely true","Probably false","Probably true","Definitely true","Somewhat agree","Somewhat agree",72.6,52,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ec44-1994-6127-b446-29fb7de3597f","20","2","4","2","1","6","1","2","60617","602","14","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure",22.4,22,"True","Agree","Definitely false","Probably true","Probably false","Definitely true","Somewhat disagree","Somewhat agree",27.4,48,"Strongly agree","Agree","Disagree","Strongly agree","Neither agree nor disagree","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure",6,20,0,"Democrat",0,0,0.614765598912923 +80,50,99.9,"True","Neither agree nor disagree","Definitely true","Definitely false","Probably false","Probably true","Strongly disagree","Strongly disagree",22.3,49.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0eb7a-21ac-f4c4-b9ab-6ce07b3d1f16","31","2","3","1","1","6","1","1","12819","532","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","","","","","","","","","","Not sure",50,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Probably false","Strongly agree","Strongly disagree",22.3,49.7,"Neither agree nor disagree","","","","","Not sure","Not sure","","","","","","","","","","Not sure",6,31,0,"Democrat",1,1,0.494491394648778 +81,99.9,99.9,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely true","Strongly disagree","Somewhat disagree",80.7,90.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Disagree","Agree","Disagree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe0eb4f-b6b7-26c2-fef9-f52e15e884de","25","2","15","4","1","2","3","1","07306","501","31","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Not sure",99.9,99.9,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",19.3,9.5,"Agree","Disagree","Disagree","Disagree","Disagree","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Not sure",2,25,0,"Independent",0,0,0.377429810908772 +82,77.5,36.5,"Not sure","Strongly agree","Definitely false","Not sure","Definitely false","Probably true","Strongly disagree","Strongly agree",67.6,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ebe9-7f50-a99e-d5e0-8fa4604f6946","30","2","4","1","1","4","2","3","36904","711","1","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true",22.5,63.5,"Not sure","Strongly agree","Definitely false","Not sure","Definitely false","Probably false","Strongly agree","Strongly disagree",32.4,0,"Agree","Strongly disagree","Strongly agree","Disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false",4,30,0,"Republican",0,0,0.697625211881609 +83,62.2,69.7,"True","Neither agree nor disagree","Definitely false","Probably true","Probably true","Probably true","Strongly agree","Somewhat agree",94.1,68.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0e9ce-dbed-0f91-98dd-379425d663a2","32","2","1","1","1","2","3","1","01915","506","22","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true",62.2,69.7,"False","Neither agree nor disagree","Definitely false","Probably true","Probably false","Probably true","Strongly agree","Somewhat disagree",5.90000000000001,31.5,"Agree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false",2,32,0,"Independent",0,0,1.26155319027175 +84,72.1,70.6,"Not sure","Agree","Probably true","Probably false","Definitely true","Not sure","Somewhat agree","Slightly agree",88,77.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0ea31-8e36-7ae9-4326-372406336d9f","36","2","4","1","1","4","2","2","62704","648","14","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",27.9,29.4,"Not sure","Disagree","Probably true","Probably true","Definitely false","Not sure","Somewhat agree","Slightly agree",12,22.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",4,36,0,"Republican",0,0,0.746154240255765 +85,72.2,82.6,"True","Strongly disagree","Definitely true","Definitely false","Probably true","Probably true","Strongly agree","Strongly disagree",14.3,13,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0ea81-acc8-0d29-5956-53ba21eb6e08","24","2","1","2","1","2","1","1","07603","501","31","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",27.8,17.4,"False","Strongly agree","Definitely false","Definitely false","Probably true","Probably true","Strongly disagree","Strongly disagree",85.7,87,"Disagree","","","","","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Yes, true",2,24,0,"Democrat",1,0,0.594351555835364 +86,50,99.9,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",85.3,84.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0e9f1-9e3b-d887-e315-bd344ecf58e3","36","1","19","1","1","6","1","4","92337","803","5","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false","No, false","Yes, true",50,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.7,15.7,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",6,36,0,"Democrat",1,2,0.807899201610574 +87,72.9,75.6,"False","Strongly disagree","Definitely false","Probably false","Probably true","Definitely false","Somewhat disagree","Slightly agree",62.8,66.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Disagree","Agree","Vote for the Republican Donald Trump","5fe0ecfd-333d-a0d7-ebd7-31d36045c08c","21","2","7","2","1","5","2","1","12827","532","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure",27.1,24.4,"False","Strongly disagree","Definitely false","Probably true","Probably false","Definitely true","Somewhat agree","Slightly agree",62.8,66.2,"Neither agree nor disagree","Agree","Agree","Agree","Disagree","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure",5,21,1,"Republican",0,1,0.884402808313212 +88,99.9,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably false","Probably true","Slightly agree","Slightly agree",30.1,15.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0eb9e-8539-876b-5cbb-296d2f2b3008","26","2","6","1","1","6","1","2","48313","505","23","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","Yes, true","","","","","","","",0.0999999999999943,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably false","Probably false","Slightly disagree","Slightly agree",30.1,15.2,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","","","","","No, false","","","","","","","",6,26,0,"Democrat",0,1,0.511475565940556 +89,12.2,99.9,"False","Strongly agree","Not sure","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.3,45.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0e958-33f4-bb63-916e-9ddd30d8b7ea","20","2","1","2","1","2","1","3","30901","520","11","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true",87.8,99.9,"False","Strongly agree","Not sure","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.3,45.9,"Strongly agree","Disagree","","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true",2,20,0,"Democrat",1,0,0.563508049350613 +90,99.1,72.3,"True","Strongly agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",24.3,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Vote for the Democrat Joe Biden","5fe0eb24-d98f-c356-f8bc-125b6f006d7e","62","2","6","1","1","4","2","3","33594","539","10","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false",99.1,72.3,"False","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",24.3,25.1,"Strongly disagree","","","","","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","No, false",4,62,0,"Democrat",0,0,0.59134387049726 +91,50,76.6,"True","Agree","Definitely false","Probably true","Definitely false","Probably false","Somewhat agree","Slightly disagree",75.5,76.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0e9f5-5b77-9a1f-290d-11c0775bb630","31","2","9","1","1","2","2","3","72712","670","4","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true",50,76.6,"False","Agree","Definitely false","Probably false","Definitely false","Probably false","Somewhat agree","Slightly agree",24.5,23.3,"Neither agree nor disagree","Disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false",2,31,0,"Republican",0,2,1.19608566751863 +92,50.4,74.6,"Not sure","Agree","Probably false","Probably true","Probably true","Not sure","Strongly agree","Strongly agree",82.5,66.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ec28-8d2c-898e-3501-fc32f7f452ee","71","2","3","1","1","4","2","3","36305","606","1","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","Yes, true","","","","","",49.6,25.4,"Not sure","Disagree","Probably false","Probably true","Probably false","Not sure","Strongly disagree","Strongly disagree",17.5,33.2,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","","","","","","","Yes, true","","","","","",4,71,0,"Republican",0,0,0.766530426783843 +93,94.5,99.9,"False","Strongly disagree","Probably true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly disagree",11.9,8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0ebb1-581a-7e7f-a1fb-9f18d8b2eb3f","36","1","20","1","1","4","1","3","29566","570","41","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true","No, false",5.5,99.9,"False","Strongly agree","Probably true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",11.9,8,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",4,36,0,"Republican",0,1,0.574171657914799 +94,79.8,88.4,"True","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Definitely false","Slightly agree","Slightly disagree",27.9,76.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe0ec42-4f48-b51e-aa53-f1cd63f21e76","23","2","2","1","1","2","1","3","42437","649","18","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","Not sure","","","","",20.2,11.6,"False","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Definitely false","Slightly disagree","Slightly disagree",72.1,23.3,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","","","","","","","","Not sure","","","","",2,23,0,"Republican",0,2,0.641691550039753 +95,50,51.6,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Definitely false","Somewhat disagree","Strongly agree",87.6,72.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ebfb-925b-ee35-bf75-1614a9e81dca","44","2","1","1","1","2","3","3","23454","544","47","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,51.6,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Somewhat agree","Strongly disagree",12.4,27.3,"Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,44,1,"Independent",0,0,0.459634341107367 +96,50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably false","Not sure","Strongly disagree","Strongly agree",54,44.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0ed0b-6b68-e1f8-5f16-2eab76f077c6","30","2","2","1","1","2","1","4","85281","753","3","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","Not sure","",50,50,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Not sure","Strongly agree","Strongly disagree",54,44.5,"Neither agree nor disagree","","","","","","","","","","","","","","","Not sure","",2,30,0,"Democrat",1,0,0.659676306910243 +97,49.8,26,"True","Strongly disagree","Definitely true","Definitely true","Definitely false","Not sure","Slightly agree","Strongly agree",70.1,80.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Disagree","","","","","Vote for the Republican Donald Trump","5fe0ecb7-0c66-5c0c-1f22-adb36e2bfd22","39","1","5","1","1","2","2","3","74354","603","37","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","Not sure","","","","","","",49.8,74,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Not sure","Slightly disagree","Strongly disagree",29.9,19.9,"Disagree","","","","","","","","","","Not sure","","","","","","",2,39,1,"Republican",0,0,0.854374859000727 +98,50.7,97.8,"False","Strongly disagree","Probably true","Definitely true","Definitely true","Definitely true","Strongly agree","Somewhat disagree",49.9,36.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0ecdb-e753-30d1-1a7c-3296f552ab32","18","2","13","1","1","6","1","3","40165","529","18","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","No, false","","","","","","",49.3,97.8,"False","Strongly agree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",49.9,36.4,"Strongly disagree","Disagree","Disagree","Strongly disagree","Strongly agree","","","","","","No, false","","","","","","",6,18,0,"Democrat",0,0,0.431240569961491 +99,75.6,69.9,"True","Agree","Probably true","Probably true","Definitely false","Definitely false","Slightly disagree","Somewhat agree",83.6,74.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Disagree","Disagree","Not vote in the presidential election","5fe0ed26-786d-1241-3197-32a8b97f0a83","42","2","1","1","1","4","3","2","65704","619","26","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",24.4,69.9,"True","Agree","Probably false","Probably false","Definitely true","Definitely true","Slightly agree","Somewhat disagree",16.4,25.7,"Agree","Agree","Agree","Agree","Agree","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",4,42,0,"Other",0,0,1.27928919042512 +100,50,63.4,"False","Disagree","Definitely false","Probably false","Probably false","Probably true","Slightly disagree","Slightly agree",31.6,37.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","","","","Vote for the Democrat Joe Biden","5fe0ed70-ae0e-2c8c-5fcc-f99287ca1a37","20","2","19","1","1","2","1","1","19335","504","39","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","Not sure","","","","","","","","","","",50,63.4,"False","Disagree","Definitely true","Probably true","Probably false","Probably false","Slightly disagree","Slightly disagree",31.6,37.1,"Agree","Neither agree nor disagree","","","","","Not sure","","","","","","","","","","",2,20,0,"Democrat",0,0,0.454844440982363 +101,20.7,86,"True","Agree","Definitely true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",8.9,10.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0ec3f-c7f9-2c40-80de-28b19de30757","45","2","5","1","1","6","1","2","44870","510","36","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true",20.7,14,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.9,10.3,"Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","No, false",6,45,0,"Democrat",0,0,0.65280362851795 +102,65.9,72.5,"True","Strongly agree","Probably false","Probably false","Probably true","Probably false","Strongly agree","Somewhat agree",76.4,0,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Agree","Neither agree nor disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe0ed81-5805-722d-59b8-183cc0bbf1aa","27","1","7","2","1","6","3","3","30060","524","11","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true",34.1,27.5,"False","Strongly disagree","Probably true","Probably true","Probably true","Probably false","Strongly disagree","Somewhat agree",23.6,100,"Strongly agree","Agree","Neither agree nor disagree","Agree","Disagree","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false",6,27,0,"Independent",0,0,0.76528861612494 +103,80.5,50,"Not sure","Agree","Definitely false","Probably false","Definitely false","Definitely true","Slightly agree","Strongly disagree",75.8,54,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0ea51-eff9-8445-263a-8a77149fc8a6","49","2","2","1","1","6","3","2","66067","616","17","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure",80.5,50,"Not sure","Agree","Definitely false","Probably false","Definitely false","Definitely false","Slightly agree","Strongly disagree",24.2,46,"Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure",6,49,0,"Other",0,0,1.66544152049953 +104,66.1,87.2,"True","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Somewhat disagree",9,6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0ed70-a988-ddb2-037f-bf5a68096602","22","1","15","15","2","6","3","3","76901","661","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","Not sure",33.9,87.2,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",9,6,"Disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","","","","","","Not sure",6,22,0,"Independent",0,1,1.94591045703184 +105,2.9,60.4,"True","Disagree","Probably false","Probably true","Definitely true","Definitely false","Strongly agree","Somewhat disagree",20.1,2.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Agree","Disagree","Not vote in the presidential election","5fe0ecf7-1f4d-ac71-a875-bc9de64e5b46","56","1","1","15","1","6","3","1","15108","508","39","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","No, false","","","","","","","","","",2.9,60.4,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",20.1,2.9,"Disagree","Disagree","Strongly agree","Disagree","Disagree","","","No, false","","","","","","","","","",6,56,1,"Independent",0,3,1.51717944691289 +106,49.5,65.3,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",66.5,80.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe0ed08-3870-2ac9-4f65-69525711bb88","33","1","6","1","1","2","1","3","38635","640","25","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","Not sure","","","","","","","","","",50.5,65.3,"True","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",33.5,19.5,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Agree","","","Not sure","","","","","","","","","",2,33,0,"Independent",0,0,0.585658890557251 +107,49.8,72.6,"False","Neither agree nor disagree","Probably false","Probably false","Probably false","Not sure","Strongly disagree","Strongly agree",82.9,77.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Not vote in the presidential election","5fe0eb86-fe3b-91e3-153d-a2cc107bed18","67","2","1","1","1","2","3","3","34285","539","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","Not sure","Not sure","","Not sure","","","","Yes, true","","","Yes, true",50.2,27.4,"False","Neither agree nor disagree","Probably false","Probably false","Probably false","Not sure","Strongly agree","Strongly disagree",17.1,22.3,"Agree","","","","","","Not sure","Not sure","","Not sure","","","","Yes, true","","","Yes, true",2,67,0,"Independent",0,0,1.31422437374394 +108,48.3,54.7,"Not sure","Disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",14.2,7.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0ee01-c762-900a-6058-6140e3262d54","30","1","4","1","1","2","1","2","48706","513","23","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","No, false","","","","","","",48.3,54.7,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.2,7.8,"Disagree","","","","","","","","","","No, false","","","","","","",2,30,0,"Democrat",0,0,0.638931314338847 +109,49.8,49.8,"False","Neither agree nor disagree","Not sure","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",65.2,80.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ed19-690b-7109-f51f-30e715753473","26","2","4","1","1","2","2","2","48617","513","23","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","","","","","","","","","","","",49.8,49.8,"False","Neither agree nor disagree","Not sure","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",34.8,19.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","","","","","","","","","","","",2,26,0,"Republican",0,0,0.761082262610781 +110,49.9,99.9,"False","Strongly disagree","Definitely true","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly agree",80.9,54,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ec8f-d739-c350-a5c9-5a6de9b100d5","42","2","16","1","1","6","2","3","29710","517","41","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",50.1,99.9,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",19.1,46,"Disagree","Strongly agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false",6,42,0,"Republican",0,0,0.683941849031096 +111,53.7,56.9,"False","Neither agree nor disagree","Probably true","Probably true","Definitely true","Definitely true","Strongly agree","Somewhat agree",100,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe0ecb5-7134-3d92-fee0-3509c27393da","65","2","4","1","1","2","2","1","17777","577","39","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",53.7,43.1,"True","Neither agree nor disagree","Probably false","Probably true","Definitely true","Definitely false","Strongly disagree","Somewhat agree",0,0,"Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Strongly agree","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",2,65,1,"Republican",0,1,0.80848632469251 +112,30.4,29.8,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Not sure","Not sure","Slightly agree","Strongly disagree",100,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ed87-6833-a085-7b2e-3de036064a38","29","2","24","1","2","4","1","3","78572","636","44","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",30.4,70.2,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Not sure","Not sure","Slightly disagree","Strongly disagree",100,100,"Agree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,29,0,"Democrat",0,0,0.869691303948395 +113,50,99.8,"True","Strongly agree","Probably true","Not sure","Definitely true","Not sure","Strongly agree","Strongly disagree",48,71.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0ed18-5bdb-d72a-59c6-a5ced81676e3","36","2","1","2","1","2","1","3","77028","618","44","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true",50,99.8,"False","Strongly agree","Probably false","Not sure","Definitely true","Not sure","Strongly disagree","Strongly agree",48,71.9,"Strongly agree","Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",2,36,0,"Democrat",0,0,0.600610584934286 +114,60.2,94.2,"True","Disagree","Probably true","Definitely false","Probably true","Definitely false","Strongly agree","Slightly disagree",10.8,30.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0ed3a-782f-a05a-a233-e2ca5efc1589","68","2","1","1","1","5","3","2","48313","505","23","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","Yes, true","","","","","","","","","","",60.2,94.2,"False","Agree","Probably false","Definitely false","Probably false","Definitely false","Strongly agree","Slightly disagree",10.8,30.7,"Neither agree nor disagree","","","","","","Yes, true","","","","","","","","","","",5,68,0,"Independent",0,0,0.561994574124504 +115,0.1,99.9,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly disagree",50.4,48.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0eb92-4d4e-3a95-30be-d206c44376e9","57","2","7","1","1","6","1","3","30906","520","11","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","No, false","","","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false",0.1,0.0999999999999943,"False","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",49.6,51.7,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","","","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false",6,57,0,"Democrat",0,1,0.59134387049726 +116,50,49.9,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly agree",92.8,22.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0eded-1142-aede-c8ff-407759d798e2","19","2","-3105","1","1","5","3","1","11373","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,49.9,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",92.8,22.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,19,0,"Independent",0,0,1.16040534134317 +117,52.9,76.9,"False","Strongly agree","Probably false","Probably false","Definitely true","Definitely false","Strongly agree","Somewhat disagree",50.8,77.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ec6b-c37f-d931-c97a-74100ee2db0b","59","2","2","15","1","6","2","3","23325","544","47","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false",47.1,23.1,"False","Strongly disagree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",49.2,22.5,"Strongly agree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true",6,59,0,"Republican",0,0,0.671621004384897 +118,62.8,29.3,"False","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",67.4,56.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe0ed1e-0b47-6470-8266-11d1d972cdfd","27","2","5","1","1","2","1","3","42101","736","18","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false",37.2,70.7,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",32.6,43.8,"Strongly disagree","Disagree","Strongly agree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",2,27,0,"Democrat",0,0,0.468830069482283 +119,82.6,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",10.6,19.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe0ec6e-59d3-cb19-b9d5-11915c0a1335","66","1","18","16","1","6","1","4","95337","862","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",17.4,99.9,"False","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",10.6,19.6,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",6,66,0,"Democrat",0,0,0.691106313710623 +120,51.9,48,"False","Disagree","Definitely true","Not sure","Probably true","Definitely false","Strongly disagree","Strongly agree",73.3,41.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e9b9-6107-df2a-c056-a10fd7eb7915","69","2","1","1","1","5","1","4","80260","751","6","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","Not sure","","","","","","No, false",51.9,48,"True","Agree","Definitely false","Not sure","Probably false","Definitely true","Strongly agree","Strongly disagree",26.7,58.6,"Agree","Agree","Disagree","Disagree","Neither agree nor disagree","","","","","","Not sure","","","","","","Yes, true",5,69,0,"Democrat",0,0,0.724833266434345 +121,27.1,69.4,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Probably true","Strongly agree","Slightly disagree",72.4,81.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ed51-5a9e-cb9b-636f-1458a40d0fc8","37","1","24","1","1","7","1","4","90210","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",27.1,69.4,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Probably false","Strongly agree","Slightly disagree",27.6,18.4,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,37,0,"Democrat",0,0,0.807899201610574 +122,60.8,24,"False","Neither agree nor disagree","Definitely false","Probably true","Probably true","Definitely true","Strongly disagree","Strongly disagree",40.3,16.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ece2-4508-ccae-d5ca-fbd0442f3836","27","1","5","15","2","2","1","1","01843","506","22","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",60.8,76,"False","Neither agree nor disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",40.3,16.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,27,0,"Democrat",0,0,0.874611434221434 +123,64.6,69.3,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely true","Definitely true","Strongly agree","Somewhat disagree",78.7,54.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly agree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0edb9-3386-7c82-f17c-79242deacaef","50","2","9","1","1","6","2","3","27046","518","34","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure",35.4,30.7,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Somewhat agree",21.3,45.3,"Strongly disagree","Strongly disagree","Strongly agree","Agree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure",6,50,0,"Republican",0,0,0.890389101626892 +124,50.7,38.5,"False","Neither agree nor disagree","Not sure","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",80.6,79.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0ed99-f0d7-e14b-9184-dd41b20323fe","50","1","6","1","1","4","1","2","65714","619","26","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",50.7,38.5,"False","Neither agree nor disagree","Not sure","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.4,20.9,"Neither agree nor disagree","","","","","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",4,50,0,"Independent",0,1,0.815477235177677 +125,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly agree",49.9,50.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ee2a-7722-b59f-c74a-1cb2f7f6bf10","27","2","1","1","1","4","1","3","77056","618","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",49.9,50.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,27,0,"Democrat",1,0,0.468830069482283 +126,50.7,55.1,"False","Agree","Probably false","Probably true","Definitely false","Probably false","Somewhat agree","Somewhat agree",82.8,98.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe0ed82-fecd-743e-5566-3e8496238340","38","2","14","1","1","6","2","2","44314","510","36","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","No, false","","","","","Yes, true","","No, false","","",50.7,55.1,"False","Disagree","Probably false","Probably true","Definitely false","Probably false","Somewhat agree","Somewhat disagree",17.2,1.40000000000001,"Agree","Agree","Strongly agree","Disagree","Strongly agree","","","Yes, true","","","","","No, false","","No, false","","",6,38,0,"Republican",0,0,0.746154240255765 +127,58.5,63.9,"True","Strongly disagree","Definitely true","Definitely false","Probably true","Not sure","Strongly agree","Somewhat agree",69,77.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0eea4-3ff5-e4e8-197b-a87bafe92eba","18","2","11","2","3","2","3","1","11692","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","Yes, true","Not sure","","","","",41.5,63.9,"True","Strongly agree","Definitely false","Definitely false","Probably true","Not sure","Strongly agree","Somewhat agree",69,77.9,"Disagree","Agree","Agree","Agree","Strongly disagree","","","","","","","Yes, true","Not sure","","","","",2,18,0,"Republican",1,0,1.64058895033525 +128,50,75,"Not sure","Agree","Definitely true","Not sure","Definitely true","Not sure","Somewhat agree","Strongly agree",20.1,40.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0ed45-6a66-3b7b-a3bb-4afc39136b92","57","2","3","1","1","4","3","3","32405","656","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",50,75,"Not sure","Agree","Definitely false","Not sure","Definitely false","Not sure","Somewhat agree","Strongly disagree",20.1,40.1,"Disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false",4,57,0,"Democrat",0,0,1.50864454760297 +129,49.1,92.5,"False","Agree","Definitely false","Probably true","Probably false","Probably true","Slightly disagree","Slightly disagree",21.3,7.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0edec-6eff-516a-5eca-f661c8b21e36","32","2","3","1","1","6","2","3","25123","564","49","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",50.9,7.5,"False","Agree","Definitely false","Probably true","Probably false","Probably true","Slightly agree","Slightly disagree",21.3,7.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",6,32,0,"Republican",0,0,0.697625211881609 +130,57.4,33.1,"True","Agree","Definitely false","Probably false","Probably true","Probably true","Slightly agree","Strongly agree",65.6,32,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Disagree","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ed5f-b52b-1c5d-a2b9-25d76a01ecfe","31","2","15","3","2","7","2","4","93274","866","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","Yes, true","","","","","",42.6,66.9,"True","Disagree","Definitely false","Probably true","Probably false","Probably false","Slightly agree","Strongly disagree",34.4,68,"Disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","Yes, true","","","","","",7,31,0,"Republican",0,0,1.38983974090388 +131,26.6,27,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Strongly disagree",37.7,12.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0edc8-7d6d-febf-2fd8-53fa34ae36c0","70","2","10","1","1","6","2","1","02563","506","22","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","","","","Not sure","","","","","","","",73.4,73,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly disagree",37.7,12.2,"Neither agree nor disagree","","","","","Not sure","","","","Not sure","","","","","","","",6,70,0,"Republican",0,0,0.80848632469251 +132,50.1,99.9,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Not sure","Definitely false","Strongly agree","Strongly disagree",77.1,76.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ed5e-eca2-f969-767d-9c569ff077a0","50","2","1","2","1","2","1","3","30030","524","11","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",50.1,0.0999999999999943,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Not sure","Definitely false","Strongly disagree","Strongly disagree",22.9,23.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,50,0,"Democrat",1,0,0.781904367900328 +133,61.8,77.8,"True","Strongly agree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Slightly agree",20.5,40.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe0ecd6-8788-b47e-32a9-b5f5831bb30a","66","1","24","1","1","-3105","3","3","20817","511","47","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","No, false","No, false",61.8,22.2,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Slightly agree",20.5,40.2,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",-3105,66,0,"Democrat",0,0,0.643505067882763 +134,50,81,"True","Agree","Definitely false","Definitely false","Probably true","Definitely true","Somewhat agree","Somewhat agree",64.9,74.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ed14-c2db-ff2c-54df-41c9148e8b45","24","2","3","4","1","6","1","3","77429","618","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",50,81,"True","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Somewhat agree","Somewhat agree",35.1,25.3,"Strongly agree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",6,24,0,"Democrat",1,1,0.329152435286286 +135,56.7,38.5,"True","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",41.7,92.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ee53-ae8a-83d7-a3e1-b5c95d06f72a","22","2","14","2","1","6","1","3","21702","511","21","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false","Not sure","Not sure","Yes, true",56.7,38.5,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",58.3,7.09999999999999,"Neither agree nor disagree","Agree","Strongly disagree","Agree","Neither agree nor disagree","Not sure","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",6,22,0,"Democrat",0,0,0.563508049350613 +136,42.6,50,"True","Agree","Probably true","Probably false","Probably true","Probably true","Slightly agree","Slightly agree",34.1,45.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Agree","Agree","Vote for the Republican Donald Trump","5fe0eda5-26cc-36ad-d9c5-c94447c9f454","43","2","8","1","1","6","2","3","39047","718","25","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false",57.4,50,"True","Agree","Probably true","Probably false","Probably false","Probably true","Slightly agree","Slightly agree",34.1,45.6,"Agree","Agree","Strongly agree","Disagree","Agree","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",6,43,0,"Republican",0,0,0.683941849031096 +137,69.9,78,"Not sure","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely true","Strongly agree","Somewhat agree",41.2,51.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0ed2a-a590-5e83-47ce-f1d5c136df36","22","2","19","2","2","6","1","3","33405","548","10","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","","Not sure",30.1,22,"Not sure","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat agree",41.2,51.4,"Agree","","","","","Yes, true","No, false","No, false","","Not sure","No, false","Not sure","No, false","No, false","No, false","","Not sure",6,22,0,"Democrat",0,0,1.04532128403439 +138,78.8,82.2,"True","Disagree","Probably false","Definitely true","Probably true","Definitely true","Somewhat agree","Somewhat agree",64.4,63.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ee64-832a-3f2b-09fc-cc3120e83fa2","33","1","20","1","1","7","1","1","10001","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","","","","","","","","","","","",78.8,17.8,"False","Disagree","Probably true","Definitely false","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",35.6,36.2,"Strongly agree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","","","","","","","","","","","",7,33,0,"Democrat",1,0,0.617714819145265 +139,48.8,82,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Definitely true","Strongly agree","Slightly disagree",15,22.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0ee5f-836e-60b0-83f9-e5c2e30907a2","21","2","19","1","1","5","3","1","12446","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",51.2,18,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",15,22.1,"Neither agree nor disagree","","","","","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false",5,21,0,"Democrat",0,0,0.454844440982363 +140,50.3,31.2,"False","Agree","Probably true","Definitely true","Definitely true","Probably true","Strongly disagree","Somewhat agree",58.1,78.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Agree","Strongly agree","Agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe0e8ee-2fe8-c822-f7da-01230f1fdb21","45","2","4","1","1","2","3","3","34224","571","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true",49.7,68.8,"True","Agree","Probably false","Definitely true","Definitely true","Probably false","Strongly disagree","Somewhat disagree",41.9,21.9,"Agree","Strongly agree","Agree","Disagree","Strongly agree","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",2,45,1,"Independent",0,0,0.890389101626892 +141,59.4,66.3,"False","Agree","Definitely true","Definitely false","Definitely true","Not sure","Slightly disagree","Strongly disagree",55.6,52,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","","","","Not vote in the presidential election","5fe0ee6f-75fd-09b5-4d26-809b0bc9bcfc","39","2","9","1","1","2","3","3","29374","567","41","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","","","","","","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure",59.4,33.7,"True","Agree","Definitely false","Definitely true","Definitely false","Not sure","Slightly disagree","Strongly disagree",44.4,48,"Agree","Neither agree nor disagree","","","","Not sure","","","","","","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure",2,39,1,"Independent",0,0,1.17262539987032 +142,50,66.9,"Not sure","Agree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly agree",84.8,88.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0edb1-53d4-0b57-7f96-11361561654f","28","2","13","1","1","4","1","3","30741","575","11","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false",50,33.1,"Not sure","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.2,11.8,"Disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false",4,28,0,"Democrat",1,0,0.468830069482283 +143,76.2,78.4,"False","Agree","Probably true","Probably true","Definitely true","Definitely false","Strongly disagree","Somewhat disagree",39.4,29.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","","","","","Vote for the Democrat Joe Biden","5fe0ee3e-cea1-296e-9c34-93f8d94b03b1","40","1","24","2","3","7","3","3","33010","528","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","Yes, true","","","No, false","","","","","","",23.8,21.6,"False","Agree","Probably true","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",39.4,29.6,"Agree","","","","","","","Yes, true","","","Yes, true","","","","","","",7,40,0,"Independent",0,0,1.39178429979639 +144,50,50,"False","Neither agree nor disagree","Not sure","Probably true","Probably true","Probably true","Somewhat agree","Slightly disagree",82.7,96.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0ed08-9b22-bfb0-40cb-37ad75c7deb5","64","1","7","1","1","6","2","2","48111","505","23","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",50,50,"True","Neither agree nor disagree","Not sure","Probably true","Probably false","Probably false","Somewhat agree","Slightly agree",17.3,3.8,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Not sure",6,64,0,"Independent",0,0,1.19918316758111 +145,50,99.9,"Not sure","Agree","Definitely false","Probably false","Probably true","Probably true","Slightly agree","Slightly disagree",15,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0e990-6843-58e6-13f2-6a96e5f7ba89","66","2","12","2","1","2","1","3","30038","524","11","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",50,99.9,"Not sure","Agree","Definitely false","Probably true","Probably false","Probably false","Slightly disagree","Slightly disagree",15,25.1,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",2,66,0,"Democrat",0,0,0.673136595827227 +146,49.5,70.5,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",10.8,18.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0ee3e-73eb-bcdd-dbd5-1122f2b5d228","33","2","9","1","1","6","1","2","60626","602","14","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true",50.5,70.5,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.8,18.2,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true",6,33,0,"Democrat",1,0,0.511475565940556 +147,50.6,50.8,"Not sure","Strongly disagree","Definitely false","Probably false","Probably true","Probably false","Strongly disagree","Strongly disagree",51.4,73.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Disagree","","","","Not vote in the presidential election","5fe0edfe-14e1-833b-72e5-73349fa7140f","39","1","1","3","1","-3105","4","2","48224","505","23","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","No, false",50.6,49.2,"Not sure","Strongly disagree","Definitely true","Probably true","Probably true","Probably true","Strongly agree","Strongly disagree",51.4,73.8,"Strongly agree","Agree","","","","","","","","","","","","","","","No, false",-3105,39,0,"Other",0,0,1.21976305104456 +148,59.6,61.3,"True","Agree","Probably true","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",70.6,61.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0efbe-4101-63fa-d5a0-72227de9357c","42","1","5","1","1","6","2","3","30909","520","11","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","Yes, true",40.4,38.7,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",29.4,38.2,"Disagree","","","","","","","","","","","","","","","","Yes, true",6,42,0,"Republican",0,0,0.574171657914799 +149,89.5,99.9,"True","Agree","Definitely true","Probably true","Definitely true","Probably true","Strongly disagree","Slightly agree",80.2,70.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ef47-6888-d4ff-9610-2d140b53f8a3","19","2","5","1","1","2","1","1","08244","504","31","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",89.5,0.0999999999999943,"True","Disagree","Definitely true","Probably false","Definitely false","Probably false","Strongly agree","Slightly disagree",19.8,29.2,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,19,0,"Independent",0,0,0.454844440982363 +150,76.7,55.1,"True","Disagree","Definitely true","Probably true","Definitely true","Probably false","Slightly disagree","Strongly disagree",20.3,10.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe0edc0-ab42-739c-bc60-948deb3979e4","67","2","2","1","1","6","2","3","76935","661","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","No, false",23.3,44.9,"True","Agree","Definitely false","Probably true","Definitely false","Probably false","Slightly agree","Strongly disagree",20.3,10.1,"Agree","Disagree","Agree","Strongly disagree","Disagree","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Not sure","Yes, true",6,67,0,"Republican",0,1,0.766530426783843 +151,28.6,66.1,"False","Agree","Definitely true","Probably false","Definitely true","Definitely false","Strongly disagree","Slightly disagree",36.2,8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ee42-3648-616c-67e3-60193f757d70","19","2","1","15","2","2","3","3","29340","567","41","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure",28.6,66.1,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Slightly disagree",63.8,92,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","Not sure",2,19,0,"Independent",1,0,0.610585858876394 +152,90,99.9,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",10.1,5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0ed25-1a97-0239-174b-078d08baa5de","51","1","5","1","1","6","1","4","89410","811","29","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",90,0.0999999999999943,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.1,5,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",6,51,0,"Democrat",0,3,1.05176287332933 +153,70.2,56.1,"False","Disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",75,85.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Not vote in the presidential election","5fe0ee46-8948-c230-fbdc-560925397746","18","1","6","4","1","6","3","4","91755","803","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","No, false",29.8,43.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25,14.9,"Agree","","","","","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",6,18,0,"Independent",0,2,1.47600765702144 +154,50.9,66.2,"Not sure","Agree","Probably false","Definitely false","Probably true","Probably true","Strongly agree","Somewhat agree",54.4,35.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0ee67-13c0-a3c7-e19c-1737492b3452","49","2","8","1","1","6","2","1","10992","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","Yes, true","","","","","","","Not sure","","",50.9,33.8,"Not sure","Disagree","Probably true","Definitely false","Probably false","Probably false","Strongly agree","Somewhat disagree",54.4,35.4,"Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly disagree","","","Yes, true","","","","","","","Not sure","","",6,49,0,"Democrat",0,1,0.631126486177329 +155,52.3,99.9,"False","Strongly disagree","Definitely true","Definitely true","Not sure","Definitely true","Strongly agree","Strongly disagree",50.2,25.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe0ed6f-4e6f-6483-5fdc-e62f0f42dcb2","35","2","1","1","1","6","2","2","48062","505","23","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true",47.7,99.9,"False","Strongly agree","Definitely false","Definitely true","Not sure","Definitely false","Strongly disagree","Strongly disagree",50.2,25.5,"Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",6,35,0,"Republican",0,0,1.27928919042512 +156,49.8,99.9,"True","Strongly disagree","Definitely true","Not sure","Definitely false","Definitely true","Strongly disagree","Strongly agree",83.1,86.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ee87-09ec-1629-f769-dce2229f4352","66","2","2","2","1","4","1","2","68502","722","28","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false",49.8,0.0999999999999943,"False","Strongly agree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",16.9,13.7,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true",4,66,0,"Democrat",1,0,0.734366124779974 +157,75.4,86.4,"True","Disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",13.3,6.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe0ee4d-a474-b8af-996f-21b11a1661bb","72","2","8","1","1","6","1","1","06518","533","7","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","","","","","","","Yes, true","","","",24.6,86.4,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",13.3,6.8,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","","","","","","","Yes, true","","","",6,72,0,"Democrat",0,0,0.543332857421717 +158,83.7,11.5,"False","Disagree","Definitely true","Definitely false","Definitely true","Definitely true","Slightly disagree","Slightly disagree",72.9,91.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe0ee84-cb01-a359-bb2f-7b8218de58ee","62","2","4","1","1","4","2","3","32714","534","10","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","No, false","","","","","","",16.3,88.5,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Slightly disagree",27.1,8.09999999999999,"Disagree","Strongly disagree","Strongly agree","Strongly disagree","Agree","","","","","","No, false","","","","","","",4,62,0,"Independent",0,0,0.59134387049726 +159,99.9,99.9,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Somewhat agree","Somewhat agree",99.7,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe0ef7c-75ca-d22b-3cd6-255a1c2c13c4","44","1","9","1","1","4","1","3","33131","528","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure",0.0999999999999943,99.9,"False","Agree","Definitely true","Definitely true","Definitely true","Definitely false","Somewhat agree","Somewhat disagree",0.299999999999997,0,"Disagree","Disagree","Disagree","Disagree","Disagree","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure",4,44,1,"Democrat",0,0,0.574171657914799 +160,50,84.7,"True","Neither agree nor disagree","Probably false","Probably true","Definitely true","Probably false","Slightly agree","Slightly agree",73.6,65.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0ed51-d2f1-7061-e600-0ca884c9439d","31","1","12","1","1","7","1","4","90001","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false","No, false","Not sure","Not sure","Not sure","No, false",50,84.7,"True","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably true","Slightly disagree","Slightly disagree",73.6,65.2,"Neither agree nor disagree","Disagree","Disagree","Agree","Strongly disagree","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true",7,31,0,"Democrat",1,0,0.824062531779561 +161,72.1,64.6,"True","Disagree","Definitely false","Not sure","Probably true","Definitely false","Strongly disagree","Strongly disagree",47.6,41.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0ed50-a2cc-c630-1d93-907c05114bf7","80","2","6","1","1","3","2","4","92688","803","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false",27.9,35.4,"False","Agree","Definitely false","Not sure","Probably false","Definitely false","Strongly disagree","Strongly disagree",52.4,58.8,"Disagree","Strongly disagree","Agree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false",3,80,1,"Republican",0,0,1.07856128262739 +162,75.6,28.7,"False","Strongly agree","Definitely false","Probably true","Definitely true","Not sure","Strongly disagree","Strongly agree",58.3,72.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0ee7a-ac2f-c230-0b08-530f16366cb1","18","2","3","1","1","2","2","3","30157","524","11","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","No, false",75.6,71.3,"True","Strongly agree","Definitely false","Probably true","Definitely false","Not sure","Strongly disagree","Strongly disagree",41.7,27.2,"Disagree","Agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",2,18,0,"Republican",0,0,0.641691550039753 +163,91.4,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",74.9,83.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0ef55-c437-d7a8-2306-1785effd13f8","45","1","19","1","1","7","1","1","10001","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",8.59999999999999,0.0999999999999943,"False","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly agree",25.1,16.7,"Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","No, false","Yes, true","No, false","No, false","Yes, true",7,45,1,"Democrat",0,2,0.788398316908465 +164,86.1,57,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",13.5,39.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0ef69-ccb0-aab3-d629-12dbcdb738d6","68","2","15","1","1","4","2","2","52302","637","16","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",86.1,43,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",13.5,39.1,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",4,68,0,"Republican",0,1,0.83625520070175 +165,51.8,81.9,"True","Neither agree nor disagree","Definitely true","Not sure","Definitely false","Definitely true","Somewhat disagree","Somewhat agree",25.7,25.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Neither agree nor disagree","Disagree","Disagree","Not vote in the presidential election","5fe0ec81-25d9-00e3-76ef-4ef237bd1080","54","2","1","1","1","2","1","1","18847","577","39","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","Not sure","","Yes, true","","","","",51.8,81.9,"True","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",25.7,25.3,"Disagree","Agree","Neither agree nor disagree","Disagree","Disagree","","","","","","Not sure","","Yes, true","","","","",2,54,0,"Independent",0,0,1.61013849931105 +166,99,99.9,"True","Strongly agree","Probably false","Definitely false","Definitely false","Probably true","Somewhat disagree","Somewhat disagree",56,54.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","","","","","Vote for the Democrat Joe Biden","5fe0ef2f-5a0d-40e2-72bf-97b1794612e5","52","2","9","2","1","5","1","3","77035","618","44","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","","","","","","","","","","","",1,0.0999999999999943,"False","Strongly agree","Probably false","Definitely true","Definitely false","Probably true","Somewhat agree","Somewhat disagree",56,54.7,"Disagree","","","","","Not sure","","","","","","","","","","","",5,52,0,"Democrat",0,0,0.781904367900328 +167,57.4,69.5,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",25.5,50.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0efb1-0edf-179a-2458-3867b1cb2124","20","2","5","1","1","6","1","1","19067","504","39","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true",57.4,30.5,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",74.5,49.7,"Agree","Disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",6,20,0,"Democrat",0,1,0.454844440982363 +168,97.2,85.3,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",36.8,32.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0ee0a-622f-2b53-69d8-5322986f79c5","45","1","23","1","1","8","1","1","10001","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",97.2,85.3,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",36.8,32.6,"Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false",8,45,0,"Democrat",1,2,0.788398316908465 +169,99.9,30,"True","Strongly agree","Probably true","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly agree",85.4,75.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0eea7-770f-5d97-e91f-ecc9626fdd1a","45","1","24","1","1","8","1","3","33131","528","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","Yes, true","","",0.0999999999999943,30,"False","Strongly agree","Probably false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",14.6,24.2,"Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","","","","","","","","","","Yes, true","","",8,45,0,"Democrat",0,0,0.747484873742735 +170,99.9,97.2,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,85.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0ef7d-3517-8ccc-305e-caa9a1219c09","39","1","19","1","1","6","2","1","10001","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",0.0999999999999943,97.2,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",100,85.2,"Strongly agree","Agree","Disagree","Strongly agree","Strongly agree","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true",6,39,1,"Republican",0,0,0.901138905289622 +171,51.1,53.5,"True","Agree","Definitely false","Definitely false","Probably true","Definitely false","Strongly agree","Somewhat agree",75.9,76.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0ef75-42c9-daf8-3352-83e967e7f44b","60","2","7","1","1","6","2","3","76365","627","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true",51.1,46.5,"False","Agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Somewhat disagree",24.1,23.2,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true",6,60,0,"Republican",0,1,0.59134387049726 +172,50,99.9,"True","Disagree","Definitely true","Definitely false","Probably true","Definitely false","Strongly disagree","Strongly agree",25.1,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ee51-099f-fe03-8f91-771e1a53b28b","76","1","3","1","1","6","1","4","90503","803","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",50,99.9,"False","Disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly agree","Strongly disagree",25.1,25.1,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",6,76,0,"Democrat",0,0,0.905456100816435 +173,48.5,36,"True","Agree","Probably false","Definitely false","Probably true","Definitely false","Strongly agree","Somewhat disagree",73.1,86.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0ee27-5c08-24ef-83a8-2a9fb40f414a","19","2","1","7","1","2","3","4","90038","803","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure",48.5,36,"False","Agree","Probably false","Definitely false","Probably false","Definitely false","Strongly agree","Somewhat disagree",26.9,13.4,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false","Not sure",2,19,0,"Independent",0,0,1.18156965352189 +174,78.2,70.1,"False","Strongly disagree","Probably true","Probably true","Probably true","Probably true","Somewhat disagree","Slightly disagree",83.3,76.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Disagree","Agree","Strongly disagree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0eea8-e423-5eb8-b707-ecd513e3cb47","62","1","20","1","1","6","2","3","27549","560","34","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true",78.2,29.9,"False","Strongly disagree","Probably true","Probably true","Probably false","Probably false","Somewhat agree","Slightly agree",16.7,23.3,"Agree","Agree","Strongly agree","Agree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true",6,62,0,"Republican",0,3,1.09919840793407 +175,75.4,68.4,"Not sure","Strongly disagree","Definitely false","Probably true","Probably true","Definitely false","Somewhat agree","Strongly agree",73.9,10.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","","","","Vote for the Republican Donald Trump","5fe0eef5-a98e-83c6-6a0e-436ec6fa91ab","64","1","2","1","1","4","2","2","45680","564","36","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","Not sure","","","","",24.6,68.4,"Not sure","Strongly agree","Definitely false","Probably false","Probably false","Definitely false","Somewhat disagree","Strongly disagree",26.1,89.6,"Strongly disagree","Disagree","","","","","","","","","","","Not sure","","","","",4,64,0,"Republican",0,0,1.19918316758111 +176,50,99.9,"False","Agree","Probably false","Probably true","Definitely true","Probably false","Strongly disagree","Strongly agree",80.8,75.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0ee2a-9188-5ff3-c15c-a6620401e32e","67","2","9","1","1","6","3","3","34695","539","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",50,0.0999999999999943,"True","Disagree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",19.2,24.9,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",6,67,0,"Independent",0,0,0.515136934744757 +177,25.4,50,"True","Disagree","Definitely true","Definitely false","Probably true","Probably false","Strongly agree","Strongly disagree",61.5,59.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0ed77-11bb-7506-66e0-207e1d61d8f5","23","2","2","2","1","2","1","3","32607","592","10","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure",25.4,50,"True","Agree","Definitely true","Definitely true","Probably false","Probably false","Strongly agree","Strongly disagree",61.5,59.8,"Agree","","","","","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure",2,23,0,"Democrat",0,0,0.563508049350613 +178,67.2,81,"True","Agree","Definitely false","Probably false","Definitely true","Definitely false","Slightly agree","Slightly agree",15.2,8.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe0ef02-4b1b-ae90-19d5-9bd20dde8b8d","74","1","6","1","1","6","2","4","85382","753","3","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false",32.8,19,"True","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Slightly agree",15.2,8.4,"Disagree","Strongly disagree","Agree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",6,74,0,"Republican",0,0,1.34733039815278 +179,49.8,67.9,"False","Strongly disagree","Probably false","Definitely false","Probably true","Definitely false","Strongly disagree","Strongly agree",57.8,19,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly disagree","","","","Vote for the Republican Donald Trump","5fe0ef5f-e2bd-05d5-4db7-a0c38de69666","57","1","3","1","1","6","2","3","23666","544","47","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure",50.2,32.1,"False","Strongly agree","Probably true","Definitely true","Probably false","Definitely false","Strongly disagree","Strongly disagree",42.2,81,"Strongly disagree","Strongly agree","","","","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure",6,57,1,"Republican",0,0,1.09919840793407 +180,61.4,50,"False","Neither agree nor disagree","Probably false","Not sure","Not sure","Definitely false","Slightly agree","Slightly disagree",28,15.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0eff8-7ff7-1335-af26-4090ae52e4bd","56","1","1","1","1","2","3","1","07860","501","31","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",61.4,50,"True","Neither agree nor disagree","Probably true","Not sure","Not sure","Definitely false","Slightly agree","Slightly disagree",28,15.7,"Neither agree nor disagree","","","","","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",2,56,0,"Independent",0,1,1.15936282486158 +181,85.2,85.7,"False","Agree","Probably true","Probably false","Probably true","Definitely true","Strongly agree","Strongly agree",90.1,88.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Agree","Disagree","Vote for a different candidate","5fe0ed75-1a99-363c-1bad-35d9ea05d1d8","68","2","3","1","1","6","3","2","68507","722","28","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",85.2,85.7,"False","Agree","Probably false","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",9.90000000000001,11.4,"Disagree","Disagree","Strongly disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false",6,68,0,"Independent",0,0,0.316110751628196 +182,78.3,83.4,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Somewhat disagree",33.1,23.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f142-9e08-c19c-4f36-4eb13bb0f97d","25","2","1","1","1","2","2","3","70538","716","19","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure",21.7,16.6,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Somewhat agree",33.1,23.3,"Strongly agree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure",2,25,0,"Republican",0,0,0.697625211881609 +183,50,99.9,"False","Strongly agree","Definitely true","Not sure","Definitely true","Definitely true","Strongly disagree","Strongly disagree",1.1,10.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ef23-dedc-02e2-c426-8f6706d4317d","40","1","2","2","1","2","1","2","52806","682","16","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false",50,99.9,"False","Strongly disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",1.1,10.5,"Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false","Yes, true",2,40,0,"Democrat",0,1,0.818524526086074 +184,49.8,99.9,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",75.8,76.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0eed9-f2d9-c40e-2074-eb801598f70c","18","2","-3105","2","1","1","1","1","08609","504","31","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure",49.8,99.9,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",24.2,23.1,"Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","No, false","No, false","Not sure",1,18,0,"Democrat",0,1,1.5163177954586 +185,79.3,99.2,"True","Agree","Probably true","Probably false","Probably true","Probably false","Slightly agree","Somewhat agree",69.8,45.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Agree","Strongly agree","Neither agree nor disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe0f113-b4a2-8832-894d-06464afa3370","46","1","24","1","1","7","1","1","08054","504","31","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","Yes, true","","","","","",20.7,0.799999999999997,"False","Disagree","Probably true","Probably true","Probably true","Probably true","Slightly agree","Somewhat agree",30.2,54.8,"Disagree","Strongly agree","Neither agree nor disagree","Disagree","Agree","","","","","","","Yes, true","","","","","",7,46,0,"Democrat",0,1,0.788398316908465 +186,49.1,94.6,"True","Neither agree nor disagree","Definitely true","Definitely false","Probably false","Probably true","Somewhat agree","Slightly agree",68.9,80.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0eabd-5f59-4714-23c0-2a50e916d3b0","19","2","1","1","1","2","1","3","72204","693","4","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true",50.9,94.6,"True","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Probably true","Somewhat disagree","Slightly agree",31.1,19.1,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true",2,19,0,"Democrat",1,0,0.431240569961491 +187,51.4,99.9,"Not sure","Agree","Definitely false","Definitely true","Definitely true","Not sure","Strongly agree","Strongly agree",54.4,79.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f0a7-dd58-223f-5d1c-62f2bf97e2f1","26","2","4","2","1","2","1","3","77034","618","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",48.6,0.0999999999999943,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Not sure","Strongly disagree","Strongly agree",45.6,20.3,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",2,26,0,"Democrat",0,0,0.612626771072269 +188,55.8,50.4,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Probably true","Probably false","Slightly disagree","Strongly agree",35.4,31,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0ecf1-c5c2-2108-917b-5319daabbce1","40","2","3","2","1","2","1","3","76119","623","44","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Yes, true","Not sure","","Not sure","Not sure","","Not sure","Not sure","Yes, true",44.2,49.6,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Probably true","Slightly agree","Strongly disagree",35.4,31,"Neither agree nor disagree","","","","","Yes, true","Not sure","Not sure","No, false","Not sure","","Not sure","Not sure","","Not sure","Not sure","No, false",2,40,0,"Democrat",0,0,0.600610584934286 +189,80.3,70.6,"Not sure","Agree","Probably false","Probably false","Probably true","Probably true","Strongly agree","Somewhat disagree",60.8,21.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0ef5e-baa4-0c46-8e34-279f8bcdbbc5","33","2","3","2","1","4","1","3","70114","622","19","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","","","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",19.7,29.4,"Not sure","Disagree","Probably true","Probably true","Probably false","Probably true","Strongly disagree","Somewhat disagree",39.2,78.4,"Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","No, false","Not sure","Not sure","","","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",4,33,0,"Democrat",0,0,0.612626771072269 +190,9.2,36.7,"True","Agree","Probably false","Probably true","Definitely false","Definitely true","Strongly agree","Strongly agree",12.3,7.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ef3b-ad6e-7c26-d42a-068e5988df05","74","1","7","1","1","5","2","3","75032","623","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",9.2,36.7,"True","Agree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.3,7.1,"Disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false",5,74,0,"Republican",0,0,0.957543870478141 +191,78.5,80.5,"True","Disagree","Probably true","Definitely false","Probably true","Probably true","Strongly disagree","Strongly disagree",60.6,43,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe0f0dd-67ab-c3d2-2ea0-552ecaaca4f2","28","2","3","2","1","6","1","2","60640","602","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",21.5,80.5,"True","Agree","Probably false","Definitely false","Probably false","Probably false","Strongly agree","Strongly disagree",60.6,43,"Agree","Strongly disagree","Agree","Agree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",6,28,0,"Democrat",0,0,0.668352234297901 +192,77,22.8,"False","Strongly disagree","Probably true","Probably true","Probably true","Definitely true","Strongly disagree","Strongly disagree",79.7,3.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0ee9f-6f7a-dfa8-34e3-77f89c7800c4","63","1","9","1","1","7","2","4","84103","770","45","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","No, false",77,22.8,"True","Strongly agree","Probably false","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",20.3,96.6,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false",7,63,0,"Republican",0,2,1.54664812158548 +193,30.2,87.7,"True","Disagree","Definitely false","Probably true","Definitely false","Definitely true","Somewhat agree","Somewhat disagree",6,12.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0ec1e-c6d2-d597-b33b-e8ae9f4f0749","67","2","2","2","1","4","1","3","40219","529","18","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","No, false","","","","","","",30.2,87.7,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",6,12.7,"Disagree","","","","","","","","","","No, false","","","","","","",4,67,0,"Democrat",0,0,0.673136595827227 +194,50,97.9,"True","Disagree","Probably true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",37.5,66.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f12c-91ec-3d18-9251-5a9901fec959","19","2","21","1","1","6","1","2","60140","602","14","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","Not sure","","","","","","","","","",50,2.09999999999999,"False","Agree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",37.5,66.6,"Strongly disagree","Agree","Disagree","Disagree","Neither agree nor disagree","","","Not sure","","","","","","","","","",6,19,0,"Democrat",0,1,0.47046686834987 +195,50,81.2,"False","Disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly agree","Strongly agree",59.5,57.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f14a-c9ed-30d4-f523-44a91567e0eb","28","2","2","1","1","6","1","1","01905","506","22","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","","Not sure","","","","","",50,18.8,"True","Agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",40.5,42.4,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","","","","","","","Not sure","","","","","",6,28,0,"Democrat",1,0,0.494491394648778 +196,54.4,98.1,"True","Disagree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",28.1,39.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0f12f-5948-5f2a-d642-622f9ecbb185","64","1","6","1","1","6","1","3","73112","650","37","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure",54.4,98.1,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",28.1,39.5,"Agree","","","","","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Not sure",6,64,0,"Independent",1,0,0.73870218161496 +197,73.5,38.2,"False","Disagree","Probably true","Probably false","Definitely false","Definitely true","Slightly agree","Strongly agree",63.4,77.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","","Vote for the Republican Donald Trump","5fe0ed47-a474-b12f-d164-e49274965251","35","1","3","1","1","2","3","2","54838","676","50","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",73.5,38.2,"True","Agree","Probably true","Probably true","Definitely false","Definitely true","Slightly agree","Strongly disagree",36.6,22.8,"Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure",2,35,0,"Independent",0,0,0.932090096130861 +198,51.1,99.9,"Not sure","Agree","Definitely true","Not sure","Definitely true","Not sure","Strongly disagree","Strongly agree",70.7,30.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0ee6f-6eaa-085c-c03c-86e78ef5eb73","29","2","2","2","1","2","1","3","20785","511","21","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","Yes, true","","","Yes, true","","Not sure","","Not sure","Not sure","","Yes, true",48.9,0.0999999999999943,"Not sure","Disagree","Definitely false","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",29.3,69.4,"Neither agree nor disagree","","","","","","Yes, true","","","No, false","","Not sure","","Not sure","Not sure","","Yes, true",2,29,0,"Democrat",0,1,0.612626771072269 +199,86.8,99.9,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",8.4,15.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f126-94f3-ded5-9096-7ca0ef2405bd","27","1","6","1","1","6","1","2","66071","616","17","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false",13.2,0.0999999999999943,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.4,15.5,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",6,27,0,"Democrat",0,1,0.638931314338847 +200,54,19.3,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",30.4,26.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0f125-9493-3e5e-4294-694761a2c09a","40","2","15","1","1","6","1","3","76118","623","44","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","Not sure","","","","","",54,80.7,"True","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",30.4,26.7,"Agree","","","","","","","","","","","Not sure","","","","","",6,40,0,"Democrat",0,0,0.459634341107367 +201,95.4,86.8,"True","Neither agree nor disagree","Definitely true","Definitely true","Probably true","Definitely true","Slightly agree","Strongly agree",54.3,34.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f137-c02a-da53-9a69-d01a89eb6f9e","30","2","20","1","1","6","1","3","70401","622","19","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","","","","Not sure",4.59999999999999,13.2,"False","Neither agree nor disagree","Definitely true","Definitely false","Probably true","Definitely true","Slightly disagree","Strongly disagree",54.3,34.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","","","","","","Not sure",6,30,0,"Democrat",0,0,0.468830069482283 +202,50.5,49.4,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Somewhat disagree","Somewhat disagree",51.4,52,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","","","","","Not vote in the presidential election","5fe0f1b8-b81a-3e47-4a36-6a3285a61116","32","2","3","1","1","1","2","3","31217","503","11","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.5,50.6,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Somewhat agree","Somewhat disagree",48.6,48,"Neither agree nor disagree","","","","","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",1,32,0,"Republican",0,0,1.19608566751863 +203,60,68.3,"False","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",17.9,9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f11d-298e-7d62-4ec2-2786c2e4e6d3","20","2","9","2","1","6","2","3","77575","618","44","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","Yes, true","","","","","","","","","","",60,31.7,"True","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.9,9,"Agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","","Yes, true","","","","","","","","","","",6,20,1,"Republican",0,0,0.838507271428478 +204,50,5,"True","Agree","Probably false","Definitely true","Definitely false","Probably false","Strongly agree","Somewhat disagree",41,25.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0ee24-ac0c-ad14-76a9-61c1aeae7a27","64","2","4","1","1","6","2","1","01225","532","22","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true",50,95,"True","Agree","Probably false","Definitely true","Definitely false","Probably true","Strongly disagree","Somewhat agree",41,25.1,"Disagree","Agree","Agree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true",6,64,0,"Republican",0,2,0.928089989751292 +205,57.3,49.9,"False","Neither agree nor disagree","Definitely true","Probably true","Probably true","Probably false","Slightly agree","Strongly agree",30.4,40.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f110-bb59-cf91-04d4-1357756a2053","38","2","4","1","1","6","2","3","37110","575","43","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","","","","Not sure","",57.3,49.9,"False","Neither agree nor disagree","Definitely false","Probably true","Probably false","Probably false","Slightly agree","Strongly disagree",30.4,40.3,"Neither agree nor disagree","Strongly disagree","Disagree","Disagree","Neither agree nor disagree","","","","","","","","","","","Not sure","",6,38,0,"Republican",0,0,1.17262539987032 +206,46.6,54.9,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",82.7,97.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f13e-4d26-4cba-64f1-22f97a085b3b","41","2","9","1","1","6","1","1","02494","506","22","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true",46.6,45.1,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.3,2.40000000000001,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false",6,41,0,"Democrat",0,0,1.23680882931159 +207,50,88.7,"True","Agree","Definitely false","Definitely true","Probably false","Definitely true","Strongly agree","Slightly disagree",7.5,10.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Disagree","","","Vote for the Republican Donald Trump","5fe0ee81-5973-0068-5789-9fddf1a89f10","76","2","21","1","1","2","2","3","32963","548","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true",50,88.7,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Slightly disagree",7.5,10.7,"Disagree","Strongly agree","Disagree","","","Not sure","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",2,76,0,"Republican",0,2,0.766530426783843 +208,43.5,55.2,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Definitely false","Slightly agree","Slightly disagree",49.4,35.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0f1de-96f2-b764-07cb-705ab6725cb6","34","2","8","1","1","2","3","3","35214","630","1","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","Not sure","","","","","","","",43.5,44.8,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Slightly disagree",49.4,35.8,"Neither agree nor disagree","","","","","","","","","Not sure","","","","","","","",2,34,0,"Independent",0,0,0.468830069482283 +209,50,55.4,"True","Strongly disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly disagree",12.1,24.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0ea10-ec14-3f6e-47c4-95fe78f53420","43","1","10","1","1","7","1","4","85018","753","3","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",50,55.4,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.1,24.7,"Disagree","","","","","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",7,43,0,"Democrat",0,3,0.807899201610574 +210,50.1,61.8,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably true","Somewhat agree","Slightly disagree",51.3,55.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f0e3-7c76-897b-24a5-d9aa4fe8b00d","19","2","1","15","2","6","1","3","79935","765","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",50.1,38.2,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably false","Somewhat disagree","Slightly disagree",48.7,44.8,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false",6,19,0,"Democrat",0,0,0.610585858876394 +211,99.9,40,"False","Agree","Definitely true","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly agree",95.2,93.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Not vote in the presidential election","5fe0f142-ad2f-2fb3-897c-f45563976221","68","2","4","1","1","4","2","3","25703","564","49","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","Yes, true","","Yes, true","","","Not sure","","No, false",0.0999999999999943,40,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",4.8,6.90000000000001,"Disagree","","","","","","","","","Yes, true","","Yes, true","","","Not sure","","Yes, true",4,68,0,"Republican",0,0,1.31422437374394 +212,79.5,72.3,"True","Disagree","Probably false","Definitely false","Definitely true","Definitely true","Somewhat disagree","Strongly agree",94,95.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f0ef-04bd-f518-5402-cda86f1bd8f0","26","2","13","1","1","6","3","4","92530","803","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure",79.5,72.3,"False","Agree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",6,4.8,"Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure",6,26,0,"Independent",0,0,0.659676306910243 +213,67.5,84.6,"False","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Probably false","Slightly disagree","Strongly disagree",80,88.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f164-cc2e-21d8-4fad-13dd6ddbca23","41","2","9","2","1","6","1","3","27127","518","34","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","","","","","Yes, true","Not sure","","","","","Yes, true",67.5,84.6,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably true","Slightly agree","Strongly disagree",20,11.4,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","","","","","Yes, true","Not sure","","","","","Yes, true",6,41,0,"Democrat",0,1,0.600610584934286 +214,61.1,67.7,"True","Agree","Not sure","Probably false","Probably true","Probably true","Slightly agree","Somewhat agree",39.8,27.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f0a1-75fd-7941-ba7f-933744215967","27","2","20","15","2","6","3","3","78596","636","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","","Not sure","",61.1,32.3,"False","Agree","Not sure","Probably false","Probably false","Probably false","Slightly disagree","Somewhat disagree",39.8,27.6,"Disagree","Strongly disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","","","","","","","","","","","Not sure","",6,27,0,"Independent",0,1,1.69351643945936 +215,73.3,29.8,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely true","Strongly agree","Strongly disagree",79.4,79.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0eeea-27c9-9a91-00a1-98588fb38708","53","2","18","1","1","2","2","3","78121","641","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",26.7,70.2,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.6,20.6,"Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,53,0,"Republican",0,0,0.890389101626892 +216,4.6,99.9,"True","Strongly disagree","Probably true","Definitely true","Probably true","Probably false","Strongly agree","Strongly agree",48.1,38.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Disagree","Disagree","Not vote in the presidential election","5fe0eca7-ce08-1364-ae11-7bcf7f696801","28","2","1","15","2","2","1","3","76180","623","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",95.4,0.0999999999999943,"False","Strongly agree","Probably true","Definitely true","Probably true","Probably true","Strongly agree","Strongly disagree",48.1,38.1,"Disagree","Disagree","Disagree","Disagree","Agree","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",2,28,0,"Democrat",0,0,1.69351643945936 +217,56.2,92.1,"True","Strongly disagree","Definitely false","Probably false","Definitely false","Probably true","Strongly disagree","Strongly disagree",25.5,60.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f129-0352-f5ca-c379-5363c6965ada","46","2","1","1","1","2","2","2","48045","505","23","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",56.2,92.1,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Probably false","Strongly disagree","Strongly disagree",25.5,60.8,"Strongly agree","Strongly agree","Agree","Agree","Neither agree nor disagree","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",2,46,0,"Independent",0,0,1.66544152049953 +218,49.9,99.9,"True","Strongly agree","Probably false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",47.2,30.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f26e-6bf3-9392-a5cf-7440fc0e5319","44","1","21","1","1","6","2","1","06851","501","7","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","","Yes, true","","","","","",49.9,99.9,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",47.2,30.3,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","","","","","","","Yes, true","","","","","",6,44,0,"Republican",0,0,0.605598834997122 +219,50,82.8,"False","Strongly disagree","Definitely true","Probably true","Definitely true","Definitely true","Slightly agree","Strongly agree",13.7,12.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f17b-da2f-f3d1-3d51-6a2752e71a25","74","1","9","1","1","4","1","3","21113","512","21","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false",50,17.2,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",13.7,12.9,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",4,74,0,"Democrat",0,0,0.643505067882763 +220,50,60,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",79.6,69.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Vote for the Democrat Joe Biden","5fe0e84a-bfa3-b6a6-2588-6e52f5ff8800","67","2","14","1","1","6","1","4","85032","753","3","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true",50,40,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.4,30.8,"Strongly disagree","","","","","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",6,67,0,"Democrat",1,1,0.724833266434345 +221,50,99.9,"True","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",55.5,76,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f0ed-1740-2747-c2d2-89234d5829ca","63","2","18","1","1","6","1","3","27518","560","34","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure",50,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",44.5,24,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",6,63,0,"Democrat",0,1,0.59134387049726 +222,99.9,99.6,"False","Neither agree nor disagree","Definitely true","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly agree",64.9,86.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f1ce-9a25-2603-cbcb-72f2a62c031f","32","2","21","1","1","7","2","2","63367","609","26","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","Yes, true","","","","","","","","","",0.0999999999999943,0.400000000000006,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.1,13.2,"Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","","","Yes, true","","","","","","","","","",7,32,1,"Republican",0,0,0.761082262610781 +223,14.7,77.6,"True","Disagree","Definitely true","Probably true","Definitely true","Probably true","Strongly agree","Somewhat agree",62.4,45.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0f158-ca23-a239-8f3f-ff00d540356f","21","2","1","16","1","4","3","2","44663","510","36","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","No, false","Yes, true",14.7,77.6,"False","Agree","Definitely false","Probably true","Definitely false","Probably false","Strongly agree","Somewhat disagree",37.6,54.6,"Neither agree nor disagree","","","","","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true",4,21,0,"Democrat",1,2,0.359092641614633 +224,50,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",50,50,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f1a5-4836-2fcf-6464-5dae75cb2e7e","32","2","1","2","1","2","1","2","60613","602","14","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure",50,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",50,50,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure",2,32,0,"Democrat",0,0,0.668352234297901 +225,50,99.9,"False","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",60.1,60.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f0ac-8bf6-9b23-da8e-56479d30c992","31","2","7","3","2","6","3","4","92706","803","5","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false",50,0.0999999999999943,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",60.1,60.4,"Agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",6,31,0,"Independent",0,0,2.38289466310896 +226,62.8,74.3,"Not sure","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",50.7,35.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0f259-8af8-ca0c-157e-b17d1dbc74af","57","2","15","1","1","5","1","1","19026","504","39","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","Not sure","","","","",62.8,74.3,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",49.3,64.2,"Neither agree nor disagree","","","","","","","","","","","","Not sure","","","","",5,57,0,"Democrat",0,1,0.623710965386887 +227,50,99.9,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Probably true","Definitely false","Slightly disagree","Slightly disagree",75.1,95.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f24b-4ad9-7349-7463-3b2d4bbf77b4","36","1","18","6","1","6","1","4","97220","820","38","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","","Not sure","",50,0.0999999999999943,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Definitely true","Slightly agree","Slightly disagree",24.9,4.7,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","","","","","","","","","","","Not sure","",6,36,0,"Democrat",1,1,0.616644184705796 +228,67.2,85,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",65.1,74.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe0f205-d81f-fa20-4829-c3d0e6645514","35","1","9","1","1","2","3","1","16505","516","39","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",32.8,85,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",34.9,25.6,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",2,35,0,"Independent",0,0,0.901138905289622 +229,82,84.5,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",82.1,88.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","","","","","Vote for the Democrat Joe Biden","5fe0f141-3ff1-2795-1fa9-afdaf554cc51","46","1","20","1","1","6","1","1","19067","504","39","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","No, false","","Not sure","","No, false","No, false","","No, false","Yes, true","","Not sure",18,84.5,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.9,11.8,"Strongly disagree","","","","","","No, false","","Not sure","","No, false","No, false","","No, false","No, false","","Not sure",6,46,0,"Democrat",1,1,0.788398316908465 +230,50.4,60.8,"False","Strongly disagree","Probably true","Not sure","Definitely false","Not sure","Somewhat agree","Slightly agree",4.3,5.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","","","","Not vote in the presidential election","5fe0f187-1979-894f-6ee3-0f23841fe8e6","37","1","5","1","1","2","3","3","30421","507","11","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false",50.4,39.2,"True","Strongly disagree","Probably false","Not sure","Definitely false","Not sure","Somewhat agree","Slightly disagree",4.3,5.7,"Agree","Agree","","","","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false",2,37,0,"Other",0,0,1.4648345646551 +231,50.5,73.8,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",81.1,64.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0f1bd-a0c5-3a58-9f44-3a0f625922b2","50","2","11","1","1","2","2","1","13850","502","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure",50.5,73.8,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",18.9,35.2,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure",2,50,0,"Republican",0,0,0.631126486177329 +232,67.3,76.7,"True","Agree","Probably true","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",67.6,68.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f2e1-0e87-421b-98a3-7ce59efc1b8e","21","2","5","1","1","2","1","4","85225","753","3","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",32.7,23.3,"True","Disagree","Probably false","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",32.4,31.3,"Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false",2,21,0,"Democrat",0,0,0.606785283410273 +233,84.4,92.7,"False","Agree","Definitely true","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",78.3,55.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0f154-5b60-b948-2850-b29c2df59e06","70","1","4","1","1","4","3","3","40218","529","18","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true",15.6,7.3,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",21.7,44.2,"Disagree","Agree","Disagree","Disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true",4,70,0,"Republican",0,1,0.957543870478141 +234,94.5,79,"True","Disagree","Definitely false","Definitely true","Definitely false","Probably true","Strongly agree","Somewhat disagree",58.8,86.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Agree","Disagree","Agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0f2f1-2f91-9171-f8d7-c1c8f30fcccb","24","2","4","15","2","2","1","3","23513","544","47","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true",94.5,79,"False","Agree","Definitely false","Definitely false","Definitely false","Probably true","Strongly agree","Somewhat agree",58.8,86.1,"Disagree","Agree","Agree","Strongly disagree","Disagree","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true",2,24,0,"Democrat",1,1,0.610585858876394 +235,34.4,70.1,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Probably true","Slightly disagree","Strongly agree",66.7,86.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f24d-9ff6-2613-f32a-9e4f15c6364c","19","2","1","15","2","2","2","3","34743","534","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","Not sure","","","","","","","","",34.4,70.1,"Not sure","Agree","Definitely true","Definitely true","Definitely false","Probably true","Slightly agree","Strongly disagree",33.3,13.3,"Disagree","Disagree","Disagree","Disagree","Disagree","","","","Not sure","","","","","","","","",2,19,0,"Independent",0,1,0.610585858876394 +236,50,60.4,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Not sure","Strongly agree","Slightly disagree",70.9,82.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f2f8-990e-fdcd-d25c-1b6548f2f00e","32","2","11","2","2","6","3","1","11901","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",50,39.6,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Not sure","Strongly agree","Slightly disagree",29.1,17.7,"Agree","Disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",6,32,0,"Independent",0,0,1.19864042393871 +237,90.3,85.1,"Not sure","Agree","Probably false","Probably false","Probably true","Definitely false","Slightly agree","Somewhat disagree",90.1,80,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","","","","","Vote for the Republican Donald Trump","5fe0f049-fdbb-9d94-be38-e88e6436dc0f","68","1","7","1","1","4","2","2","61008","610","14","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false",90.3,85.1,"Not sure","Agree","Probably false","Probably true","Probably false","Definitely false","Slightly agree","Somewhat agree",9.90000000000001,20,"Strongly disagree","","","","","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false",4,68,1,"Republican",0,3,1.04464351786682 +238,50,50,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Definitely true","Slightly agree","Strongly disagree",11.5,29.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","","","","Vote for the Republican Donald Trump","5fe0ee9a-a637-9a02-ef82-d24a333e9a6b","72","1","8","1","1","5","2","3","23921","556","47","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",50,50,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Slightly disagree","Strongly agree",88.5,70.6,"Strongly disagree","Agree","","","","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false",5,72,1,"Republican",0,0,0.957543870478141 +239,99.9,85.7,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",79.1,88.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe0f2b1-67b4-5e19-075f-a0183d325343","46","1","16","2","1","6","1","3","39350","673","25","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false",99.9,85.7,"False","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",20.9,11.5,"Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Disagree","No, false","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",6,46,0,"Democrat",1,0,0.976748878611933 +240,30.8,25.4,"False","Strongly disagree","Probably false","Probably true","Definitely true","Definitely false","Somewhat disagree","Somewhat agree",94.9,98.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe0f1ff-3075-e142-f965-dedef3faf1e0","34","1","18","1","1","6","2","3","22032","511","47","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",30.8,74.6,"True","Strongly disagree","Probably true","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat agree",5.09999999999999,1.40000000000001,"Neither agree nor disagree","Strongly disagree","Agree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false",6,34,0,"Republican",0,1,0.871468009862344 +241,45.4,5.3,"Not sure","Strongly agree","Not sure","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",42,91.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0f140-08f3-9059-9974-4195123c99b4","52","2","1","1","1","2","2","4","97501","813","38","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","Yes, true","","Not sure",54.6,94.7,"Not sure","Strongly agree","Not sure","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",58,8.7,"Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","","","","","","","","","","Yes, true","","Not sure",2,52,1,"Republican",0,0,1.25283899755614 +242,99.9,75.6,"True","Disagree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",40.4,25.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Disagree","","","","","Not vote in the presidential election","5fe0f193-4f90-0378-723c-1d0884ede0f1","42","2","2","1","1","2","2","3","34436","539","10","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","","","","","","","","","","","",0.0999999999999943,75.6,"True","Disagree","Probably true","Probably false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",40.4,25.8,"Disagree","","","","","Yes, true","","","","","","","","","","","",2,42,0,"Republican",0,1,1.17262539987032 +243,65.5,65.9,"False","Agree","Probably false","Probably false","Probably false","Definitely true","Somewhat disagree","Slightly disagree",54.4,63,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Republican Donald Trump","5fe0f278-b670-3f08-02bd-28742db3c0d6","86","2","4","1","1","5","3","1","11572","501","33","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","Not sure","","","","","","","",34.5,34.1,"False","Agree","Probably true","Probably true","Probably false","Definitely false","Somewhat agree","Slightly disagree",45.6,37,"Disagree","","","","","","","","","Not sure","","","","","","","",5,86,0,"Independent",0,0,0.80848632469251 +244,87.7,90.9,"False","Agree","Probably true","Probably false","Definitely true","Probably false","Strongly agree","Strongly agree",79.9,75.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f210-e82e-d667-606d-4cd31c08ba64","53","1","3","2","1","6","3","3","28206","517","34","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure",87.7,90.9,"True","Agree","Probably true","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",20.1,24.4,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","Not sure","No, false","Yes, true","Not sure",6,53,0,"Independent",0,0,2.49189506074711 +245,99.9,0.1,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",25.6,65.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0ed5e-2d93-e5da-79bb-4cc08f531db6","25","2","4","1","1","2","2","3","33527","539","10","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false",0.0999999999999943,0.1,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",25.6,65.5,"Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false",2,25,1,"Republican",0,0,0.697625211881609 +246,69.2,67.4,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",84.2,90.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe0f300-4ab0-dbc2-ed08-067fe096fb48","35","1","12","1","1","8","2","2","60007","602","14","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",30.8,32.6,"False","Agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly agree",84.2,90.7,"Disagree","Neither agree nor disagree","Disagree","Disagree","Agree","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",8,35,0,"Democrat",1,1,0.932090096130861 +247,74.5,79.5,"False","Strongly disagree","Definitely false","Probably true","Probably true","Probably true","Slightly agree","Slightly agree",61.7,67.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f106-f198-f655-4e91-1052087ede4b","39","2","5","1","1","6","2","3","40977","557","18","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","","","Yes, true","","","","","","","","",25.5,20.5,"False","Strongly agree","Definitely false","Probably true","Probably false","Probably true","Slightly disagree","Slightly disagree",38.3,32.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","","","","Yes, true","","","","","","","","",6,39,1,"Republican",0,0,0.683941849031096 +248,50,69.7,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",55.9,65.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f230-1fa6-5a90-263d-5c63175ae7a4","44","2","18","1","1","7","1","1","11233","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","Not sure","","","","",50,69.7,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",44.1,34.7,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","","","","","","","","Not sure","","","","",7,44,0,"Democrat",1,0,0.484792339820778 +249,29.3,62.1,"True","Disagree","Probably false","Probably true","Probably true","Probably false","Slightly agree","Slightly disagree",47.2,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f22c-28ec-8b3c-cc1f-75e50ea81d14","19","2","1","15","2","4","1","3","78416","600","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","Not sure","","","","","",70.7,62.1,"False","Agree","Probably false","Probably true","Probably true","Probably false","Slightly agree","Slightly agree",47.2,25.1,"Agree","","","","","","","","","","","Not sure","","","","","",4,19,0,"Democrat",0,0,0.610585858876394 +250,37.7,80.1,"True","Agree","Probably true","Definitely false","Probably true","Probably true","Somewhat agree","Strongly agree",52.3,63.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","","","","Not vote in the presidential election","5fe0f233-61e8-6228-cdce-5e095643391c","50","2","3","1","1","2","2","3","76031","623","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","Yes, true","","","","","",37.7,80.1,"True","Agree","Probably false","Definitely true","Probably true","Probably true","Somewhat agree","Strongly disagree",52.3,63.6,"Neither agree nor disagree","Neither agree nor disagree","","","","","","","","","","Yes, true","","","","","",2,50,1,"Republican",0,0,1.52658135748604 +251,50.6,99.9,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably false","Strongly agree","Strongly agree",50.2,83.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f25d-1084-bd2b-fbc5-c6c79ae10ba4","68","2","6","1","1","2","3","2","48210","505","23","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","","Not sure","","","","","",50.6,99.9,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably true","Strongly agree","Strongly disagree",49.8,16.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","","","","","","","Not sure","","","","","",2,68,0,"Independent",0,0,1.43376822240912 +252,50.2,54.4,"True","Strongly agree","Definitely false","Probably false","Probably true","Probably false","Slightly agree","Somewhat disagree",52.7,52.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f1d9-d906-fdda-846c-1206e0997532","29","2","1","1","1","2","3","3","24612","559","47","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",49.8,45.6,"True","Strongly agree","Definitely false","Probably true","Probably false","Probably true","Slightly agree","Somewhat agree",47.3,47.7,"Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",2,29,0,"Independent",0,0,0.697625211881609 +253,78.9,90.3,"Not sure","Disagree","Probably true","Probably false","Probably true","Probably false","Strongly agree","Strongly disagree",77.2,97.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f217-4cfe-da05-224b-6d448eb79255","30","2","3","1","1","2","3","2","68114","652","28","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",21.1,90.3,"Not sure","Disagree","Probably true","Probably true","Probably false","Probably true","Strongly disagree","Strongly disagree",22.8,2.09999999999999,"Neither agree nor disagree","Agree","Disagree","Agree","Neither agree nor disagree","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",2,30,0,"Independent",0,1,1.30488343971418 +254,50.1,51.9,"False","Neither agree nor disagree","Probably true","Not sure","Definitely false","Definitely false","Somewhat agree","Slightly disagree",70.1,80.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f0f5-dd6c-5809-9881-c18670e91942","35","2","20","1","1","4","2","1","18034","504","39","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","Yes, true","","","","","","","",49.9,48.1,"False","Neither agree nor disagree","Probably false","Not sure","Definitely false","Definitely false","Somewhat agree","Slightly disagree",29.9,19.7,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","","","","","No, false","","","","","","","",4,35,0,"Democrat",0,1,0.721377276759402 +255,50,50,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",75.3,72.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","","","","","Vote for the Republican Donald Trump","5fe0f2bc-b36e-4ba8-fad8-200c395448cd","78","2","7","1","1","4","2","1","11554","501","33","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","Yes, true","","","","","","","",50,50,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",24.7,27.3,"Strongly disagree","","","","","","","","","No, false","","","","","","","",4,78,0,"Republican",0,0,0.80848632469251 +256,50,76.6,"Not sure","Disagree","Definitely false","Definitely false","Probably false","Definitely true","Strongly disagree","Strongly agree",59.3,58.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f35b-e2f7-9f5a-bee0-25ae9c3e4773","42","2","5","1","1","2","1","3","28560","545","34","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","Not sure","",50,76.6,"Not sure","Agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",40.7,41.5,"Disagree","","","","","","","","","","","","","","","Not sure","",2,42,0,"Democrat",1,0,0.459634341107367 +257,50.3,70.9,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably true","Not sure","Slightly agree","Strongly disagree",42.3,27.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f2b7-6393-a789-c01f-236f046ea50f","39","2","4","1","1","6","3","3","78209","641","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure",49.7,70.9,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably false","Not sure","Slightly disagree","Strongly disagree",42.3,27.9,"Neither agree nor disagree","Agree","Disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure",6,39,0,"Independent",0,0,1.17262539987032 +258,16.6,27.1,"False","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly agree",64.5,86.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0f242-0cea-6a15-c10c-ac78acb92acf","35","1","5","16","2","4","1","4","95307","862","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","No, false","","","","","","","","",16.6,27.1,"True","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.5,13.5,"Disagree","","","","","","","","No, false","","","","","","","","",4,35,0,"Democrat",0,0,1.14389012134224 +259,91.2,86.7,"True","Neither agree nor disagree","Probably true","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",78.7,58.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Republican Donald Trump","5fe0f21d-7f9d-14ee-51c0-b22f2a16a057","44","1","14","1","1","6","2","3","33707","539","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure",8.8,86.7,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Strongly disagree","Strongly disagree",21.3,41.7,"Disagree","","","","","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Not sure","Not sure",6,44,0,"Independent",0,0,0.854374859000727 +260,55.8,55.6,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f277-54e3-fe68-3c9e-1a23161279bb","55","2","2","1","1","-3105","2","3","32641","592","10","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","Not sure",55.8,44.4,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely true","Strongly agree","Strongly disagree",0,0,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","","","","","","Not sure",-3105,55,0,"Republican",0,0,1.50864454760297 +261,65.3,99.9,"False","Disagree","Definitely true","Probably false","Definitely true","Probably true","Somewhat agree","Strongly agree",68.6,43.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f365-b01e-cabb-1acb-9223ad60285c","45","2","3","15","1","6","1","1","01543","506","22","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",34.7,99.9,"True","Agree","Definitely false","Probably true","Definitely false","Probably true","Somewhat disagree","Strongly disagree",31.4,56.3,"","Disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",6,45,0,"Democrat",0,0,0.481719101515645 +262,71.2,87.8,"True","Disagree","Definitely false","Probably true","Definitely false","Definitely true","Strongly agree","Strongly agree",35.1,12.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Agree","Neither agree nor disagree","Disagree","Strongly disagree","Not vote in the presidential election","5fe0f34f-058b-9b07-f6ae-6b1f68ea74d4","41","2","4","1","1","6","2","3","34431","592","10","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure",28.8,87.8,"True","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",35.1,12.8,"Strongly agree","Agree","Neither agree nor disagree","Agree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Not sure",6,41,0,"Republican",0,0,1.17262539987032 +263,50,74.7,"False","Disagree","Probably true","Definitely true","Probably true","Definitely false","Slightly disagree","Strongly agree",69.4,85.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Agree","Strongly disagree","Strongly disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe0f2be-d923-f32c-5612-dda0408e5ea3","68","2","5","1","1","4","2","1","01801","506","22","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",50,74.7,"False","Disagree","Probably false","Definitely true","Probably false","Definitely false","Slightly disagree","Strongly disagree",30.6,14.1,"Agree","Strongly agree","Strongly agree","Agree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",4,68,1,"Republican",0,0,0.80848632469251 +264,90.4,99.9,"True","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",75.1,45.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f2db-6304-5d93-d864-a74711afbe4e","55","1","4","2","1","6","1","1","13210","555","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","","","","Yes, true","",9.59999999999999,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.9,54.6,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","","","","","","","","","","","Yes, true","",6,55,0,"Democrat",1,0,1.01810641559312 +265,57.2,78.5,"False","Neither agree nor disagree","Definitely true","Not sure","Probably true","Not sure","Slightly agree","Strongly disagree",76.8,45.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f20d-1876-d7fc-6ef8-a1476a080807","30","2","1","15","1","2","1","3","33060","528","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","Yes, true","Not sure","","","","","","",42.8,21.5,"False","Neither agree nor disagree","Definitely false","Not sure","Probably true","Not sure","Slightly disagree","Strongly disagree",23.2,54.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","Yes, true","Not sure","","","","","","",2,30,0,"Democrat",0,0,0.357843324247791 +266,49.8,49.5,"True","Agree","Not sure","Not sure","Definitely true","Not sure","Somewhat agree","Strongly agree",63.2,46.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0f307-2625-9d41-4e1d-27841163391f","58","2","1","1","1","2","2","3","72801","693","4","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.2,49.5,"False","Agree","Not sure","Not sure","Definitely false","Not sure","Somewhat agree","Strongly disagree",36.8,53.6,"Neither agree nor disagree","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,58,1,"Independent",0,0,0.879927333598919 +267,53.4,79.8,"True","Agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",21.6,33.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Vote for the Democrat Joe Biden","5fe0f2de-a488-e63e-e94a-cc6f24e10588","63","2","2","1","1","6","1","4","91932","825","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","No, false","","Yes, true","",46.6,20.2,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",21.6,33.4,"Strongly disagree","","","","","","","","","","","","","No, false","","Yes, true","",6,63,0,"Democrat",0,0,0.832061691423535 +268,65.5,75.6,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Somewhat agree",20,12.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f2d7-13a4-6c04-faa1-c79e69e8cd2d","20","2","7","4","1","6","1","3","28277","517","34","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true",34.5,24.4,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",20,12.1,"Disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false","No, false","No, false","Not sure","Yes, true",6,20,0,"Independent",0,1,0.329152435286286 +269,74.6,99.9,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Slightly disagree",57.1,14.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe0f286-0aba-a2ea-edf6-7e85fe9e4b93","51","2","7","1","1","6","2","3","76901","661","44","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",25.4,99.9,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Slightly agree",57.1,14.9,"Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,51,1,"Republican",0,0,0.890389101626892 +270,50.3,69.4,"Not sure","Agree","Definitely false","Not sure","Probably true","Not sure","Somewhat agree","Somewhat agree",84,81.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Disagree","Neither agree nor disagree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0f3ac-01ac-96b5-9fdf-e0a25dddf28e","45","2","9","1","1","4","2","3","22853","569","47","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","Yes, true","","","","","","","","",50.3,69.4,"Not sure","Agree","Definitely false","Not sure","Probably false","Not sure","Somewhat disagree","Somewhat disagree",16,18.6,"Disagree","Neither agree nor disagree","Disagree","Disagree","Agree","","","","Yes, true","","","","","","","","",4,45,0,"Republican",0,0,0.890389101626892 +271,54,93.1,"False","Agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",13.4,10.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe0f16e-130a-3452-7093-835c880475de","68","2","14","1","1","4","1","2","63129","609","26","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","No, false","Not sure","Not sure",54,93.1,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",13.4,10.9,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",4,68,0,"Democrat",0,2,0.561994574124504 +272,71.5,69.3,"True","Neither agree nor disagree","Probably false","Definitely true","Probably true","Probably true","Slightly agree","Slightly disagree",44.4,52.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe0f449-b388-78b1-9d47-cdad5baee065","28","2","1","1","1","2","3","2","44030","510","36","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","Yes, true","","","",28.5,30.7,"True","Neither agree nor disagree","Probably true","Definitely true","Probably false","Probably true","Slightly agree","Slightly disagree",44.4,52.7,"Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Agree","","","","","","","","","Yes, true","","","",2,28,0,"Republican",0,0,0.761082262610781 +273,50,50,"False","Neither agree nor disagree","Probably false","Probably false","Definitely true","Probably true","Somewhat agree","Somewhat disagree",15.5,10.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe0f1c8-288e-f152-34b5-9e0c1d8b6aa0","66","2","4","1","1","6","3","1","08757","501","31","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Probably false","Somewhat agree","Somewhat disagree",15.5,10.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,66,0,"Independent",0,0,0.543332857421717 +274,50,38.5,"True","Strongly disagree","Definitely false","Probably true","Definitely false","Probably false","Somewhat disagree","Somewhat agree",67.6,83.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f39f-abbe-9edd-166d-8bde6ab32e5e","25","2","9","15","2","4","1","3","78253","641","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",50,38.5,"True","Strongly agree","Definitely false","Probably true","Definitely false","Probably false","Somewhat agree","Somewhat disagree",32.4,16.6,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",4,25,0,"Democrat",0,0,0.663808163196431 +275,99.9,0.1,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",75.1,85.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0f2c8-6157-878e-0298-79594e13ba43","71","1","7","1","1","2","2","1","12983","523","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true",0.0999999999999943,0.1,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",24.9,14.9,"Strongly disagree","Neither agree nor disagree","Agree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Yes, true",2,71,0,"Republican",0,1,1.0099548530942 +276,15.8,88.9,"True","Agree","Probably true","Not sure","Probably false","Not sure","Somewhat disagree","Somewhat disagree",76.9,91.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f20c-1b72-1c47-6bfc-f4463af8a72d","37","2","1","3","1","6","1","2","60402","602","14","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",84.2,11.1,"False","Disagree","Probably false","Not sure","Probably false","Not sure","Somewhat agree","Somewhat disagree",23.1,8.59999999999999,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",6,37,0,"Independent",0,0,0.976441415290424 +277,50.4,80.9,"True","Strongly agree","Definitely false","Definitely true","Probably true","Definitely false","Strongly agree","Slightly agree",24,37,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f1e3-5f79-f164-ae78-b02bb9dab30a","69","2","3","1","1","6","1","2","48185","505","23","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",49.6,19.1,"False","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Slightly agree",24,37,"Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",6,69,0,"Democrat",0,1,0.561994574124504 +278,50,80.1,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",4.5,24.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0f3c2-53c9-79ed-ba91-0195e2695430","42","2","19","1","2","6","1","4","94121","807","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","Not sure","","","","","","",50,19.9,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",4.5,24.4,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","","","","","","Not sure","","","","","","",6,42,0,"Democrat",0,0,1.19971355585335 +279,51.7,58.4,"True","Disagree","Definitely true","Probably true","Probably true","Probably true","Somewhat agree","Slightly agree",51.2,51.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe0f47b-7567-6775-8069-4e6d6e443a3f","22","1","4","15","2","6","1","3","32817","534","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",51.7,58.4,"True","Agree","Definitely true","Probably true","Probably false","Probably false","Somewhat disagree","Slightly disagree",48.8,48.8,"Neither agree nor disagree","Disagree","Agree","Agree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true",6,22,0,"Democrat",0,0,0.762739124421729 +280,66.8,70.4,"False","Strongly agree","Probably true","Probably true","Probably true","Definitely true","Strongly agree","Strongly agree",24.5,59.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe0f2a1-5b0a-1027-bd09-4df6cf6d2343","52","2","7","1","1","6","1","1","06119","533","7","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",33.2,29.6,"True","Strongly disagree","Probably false","Probably false","Probably false","Definitely true","Strongly agree","Strongly agree",75.5,40.3,"Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Agree","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",6,52,0,"Democrat",0,0,0.631126486177329 +281,50,82.6,"Not sure","Strongly disagree","Probably false","Probably false","Definitely true","Probably true","Strongly disagree","Strongly agree",64.6,82.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0f090-d20e-86e2-7d0e-61dc40516820","72","2","13","1","1","6","2","4","92027","825","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",50,82.6,"Not sure","Strongly agree","Probably false","Probably true","Definitely false","Probably false","Strongly disagree","Strongly disagree",35.4,17.6,"Neither agree nor disagree","","","","","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,72,0,"Republican",0,0,1.07856128262739 +282,99.9,0.1,"True","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",80,50.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0ee58-859b-7b02-0c03-cd664c63a30d","45","2","24","1","1","7","1","4","93664","866","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",0.0999999999999943,99.9,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",80,50.1,"Strongly agree","Agree","Strongly disagree","Strongly agree","Disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false",7,45,0,"Democrat",1,0,0.841954367861977 +283,77,93.9,"False","Agree","Probably true","Probably false","Definitely true","Not sure","Somewhat disagree","Somewhat disagree",60,77.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f318-3569-d8b6-30c3-093bcc5e8b14","20","2","1","1","1","4","1","1","07043","501","31","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","Not sure","","","","",23,6.09999999999999,"False","Agree","Probably false","Probably true","Definitely false","Not sure","Somewhat agree","Somewhat disagree",40,22.7,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","","","","","","","","Not sure","","","","",4,20,0,"Democrat",0,0,0.454844440982363 +284,82.9,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",92.5,93.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","","","","","Vote for the Democrat Joe Biden","5fe0f22d-a9e6-b01f-32d2-9c6c58294639","59","1","20","2","1","7","1","3","36108","698","1","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","No, false","","Not sure","Yes, true","No, false","Yes, true","No, false","No, false",82.9,99.9,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",7.5,6.2,"Strongly disagree","","","","","Yes, true","No, false","Yes, true","No, false","Yes, true","","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true",7,59,0,"Democrat",0,0,0.965272412681533 +285,99.9,76.4,"True","Strongly agree","Probably true","Not sure","Definitely true","Definitely true","Somewhat disagree","Strongly agree",84.7,63.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0f2f6-74df-be0a-706c-8890213ff66a","20","1","5","4","1","2","2","3","77478","618","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure",99.9,23.6,"True","Strongly disagree","Probably true","Not sure","Definitely false","Definitely false","Somewhat agree","Strongly agree",15.3,36.9,"Agree","Strongly disagree","Agree","Disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure",2,20,0,"Republican",0,2,0.611833234239945 +286,71.8,88,"False","Agree","Probably false","Probably true","Definitely true","Definitely true","Slightly disagree","Somewhat agree",28.4,12.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f380-ea59-93c0-fada-3a6bad8cbabb","39","1","13","1","1","4","1","4","92407","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false",28.2,88,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly agree","Somewhat disagree",28.4,12.5,"Disagree","Disagree","Strongly disagree","Disagree","Disagree","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",4,39,0,"Democrat",0,0,0.807899201610574 +287,50,59.8,"True","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",67.3,64.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f373-a2f4-4805-c89b-1481391d4502","63","1","23","1","1","7","1","3","33076","528","10","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Yes, true",50,40.2,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",32.7,35.4,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",7,63,0,"Democrat",0,1,0.73870218161496 +288,99.9,97.8,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",77.5,76.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f21a-32c3-53fc-f2b6-0ab995c16b5a","40","1","9","1","1","7","1","2","60411","602","14","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","","Yes, true","","","","","","","",99.9,2.2,"False","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",77.5,76.8,"Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","","","","","No, false","","","","","","","",7,40,0,"Democrat",1,2,0.62639918553709 +289,48.1,70.3,"False","Disagree","Definitely false","Not sure","Probably false","Definitely true","Slightly disagree","Strongly disagree",5.8,17.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Not vote in the presidential election","5fe0f359-bd39-0ed1-dc9b-d1f62f317143","70","1","12","1","1","1","2","2","60555","602","14","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","","No, false","","","","","","","","","","",48.1,29.7,"False","Agree","Definitely false","Not sure","Probably false","Definitely false","Slightly agree","Strongly disagree",5.8,17.6,"Strongly disagree","","","","","","No, false","","","","","","","","","","",1,70,0,"Republican",0,0,1.79105215537822 +290,50,73,"Not sure","Disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Slightly agree",30.8,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f26e-8b33-b882-33b9-9dc73a8ca1b4","19","2","23","1","1","4","3","1","02816","521","40","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false",50,73,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",30.8,15,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true",4,19,0,"Independent",0,2,0.454844440982363 +291,50,99.9,"False","Disagree","Not sure","Probably true","Definitely false","Probably false","Strongly disagree","Strongly disagree",50,50,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0eaf9-a8b0-ae68-6ffa-a670d82ee5ce","65","2","1","16","14","2","1","1","19149","504","39","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","","Yes, true","","","","","","","",50,99.9,"False","Agree","Not sure","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",50,50,"Neither agree nor disagree","","","","","","","","","No, false","","","","","","","",2,65,0,"Democrat",0,0,0.769295336554789 +292,88.3,78.2,"True","Agree","Probably false","Definitely true","Probably false","Definitely true","Slightly agree","Strongly agree",44.8,34.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f407-14df-7edd-b9c1-b749be9eb2a0","27","2","1","1","2","2","2","3","79905","765","44","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","","","","Not sure","","","","","","","","",11.7,21.8,"False","Agree","Probably false","Definitely false","Probably false","Definitely true","Slightly disagree","Strongly disagree",44.8,34.6,"Agree","","","","","","","","Not sure","","","","","","","","",2,27,0,"Democrat",1,0,0.869691303948395 +293,50,87.6,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",23.3,35.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Neither agree nor disagree","Agree","Vote for a different candidate","5fe0f2a1-f81c-c2ab-ae82-ae7c4a2e0b92","25","2","4","1","1","4","3","2","55768","676","24","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",50,12.4,"Not sure","Agree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat agree","Strongly disagree",23.3,35.9,"Disagree","Agree","Disagree","Neither agree nor disagree","Agree","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false",4,25,0,"Independent",0,1,0.287694815987862 +294,49.8,38.6,"False","Strongly disagree","Probably true","Probably true","Probably true","Probably true","Strongly agree","Strongly disagree",76.9,86.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Republican Donald Trump","5fe0f339-1dfc-b455-14c6-f955b2d49651","34","2","1","1","1","6","2","2","45410","542","36","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","No, false",49.8,38.6,"False","Strongly agree","Probably false","Probably true","Probably false","Probably true","Strongly agree","Strongly disagree",23.1,13.3,"Disagree","","","","","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,34,0,"Independent",0,2,0.761082262610781 +295,14.7,21,"True","Strongly agree","Definitely true","Probably true","Definitely false","Probably true","Strongly disagree","Somewhat agree",85.4,80.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Disagree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe0f289-9c47-964c-e150-86352b328df6","45","1","24","1","1","7","2","3","33131","528","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Not sure",14.7,21,"False","Strongly agree","Definitely false","Probably true","Definitely false","Probably false","Strongly agree","Somewhat disagree",14.6,19.9,"Strongly agree","Strongly disagree","Agree","Strongly disagree","Disagree","Not sure","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Not sure",7,45,0,"Republican",1,0,1.11226716750253 +296,50.5,68.6,"True","Agree","Definitely true","Probably true","Probably true","Probably true","Strongly agree","Strongly disagree",91.8,90,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f1d3-2c62-1ebc-f1fe-296e74d52d8c","59","2","2","1","1","4","1","3","27834","545","34","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true",49.5,68.6,"False","Agree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",8.2,10,"Neither agree nor disagree","Agree","Strongly disagree","Disagree","Disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",4,59,0,"Democrat",0,2,0.59134387049726 +297,87.4,97.5,"True","Strongly agree","Probably true","Probably false","Definitely false","Definitely true","Strongly disagree","Strongly agree",8,14.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe0f171-d2bb-b181-273f-6db55284a3ce","30","1","19","1","1","6","3","4","97201","820","38","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true",12.6,2.5,"True","Strongly agree","Probably true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly agree",8,14.1,"Strongly disagree","Neither agree nor disagree","Disagree","Strongly disagree","Disagree","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true",6,30,0,"Independent",0,0,0.824062531779561 +298,9.5,25,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",40.1,50.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f2ed-f644-dc16-0d30-3708d720a040","72","2","19","1","1","8","1","4","92708","803","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",9.5,75,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",40.1,50.1,"Neither agree nor disagree","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",8,72,0,"Democrat",0,0,0.724833266434345 +299,74.6,99.9,"True","Disagree","Definitely true","Probably true","Probably true","Probably true","Strongly disagree","Strongly disagree",50.7,80.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f217-8f38-2e3b-2890-1aab6a04e6f7","20","2","10","1","1","6","1","3","72012","693","4","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure",25.4,0.0999999999999943,"False","Disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",49.3,19.7,"Agree","","","","","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure",6,20,0,"Democrat",1,0,0.431240569961491 +300,0.1,99.1,"True","Agree","Definitely true","Not sure","Definitely false","Definitely false","Slightly disagree","Slightly agree",50.7,74.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe0f305-3ef5-58cb-315d-487e46a1c9dd","66","1","12","5","1","6","3","2","60608","602","14","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false",0.1,99.1,"False","Agree","Definitely true","Not sure","Definitely false","Definitely false","Slightly agree","Slightly agree",49.3,25.2,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","No, false",6,66,0,"Independent",0,0,0.797343714536415 +301,32.8,71.5,"Not sure","Strongly agree","Definitely true","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",2.1,10.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0f3a8-7126-30e3-473a-a9d180202a2d","64","2","13","1","1","2","2","4","89086","839","29","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","","","","Not sure",32.8,71.5,"Not sure","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",2.1,10.7,"Disagree","Agree","Agree","Disagree","Agree","","","","","","","","","","","","Not sure",2,64,1,"Republican",0,2,1.23811856696587 +302,99.9,99.9,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly agree",100,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f4c1-8110-74ff-18ce-22bd909920ec","32","1","6","15","2","6","1","1","11101","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",99.9,99.9,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly agree",0,0,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,32,0,"Democrat",1,0,0.874611434221434 +303,77.5,33.6,"True","Agree","Definitely false","Definitely false","Definitely false","Definitely true","Slightly disagree","Strongly agree",10,15.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","","","Vote for the Republican Donald Trump","5fe0f294-d6d2-83fb-dcff-1692b8306edb","59","1","1","1","1","4","3","3","70116","622","19","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true",77.5,33.6,"False","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",10,15.4,"Disagree","Strongly disagree","Agree","","","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",4,59,0,"Republican",0,0,1.09919840793407 +304,24.3,50,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly agree",31.7,14.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0f1fe-e747-7e4e-a039-ca180ceab66d","70","2","3","1","1","6","2","4","95206","862","5","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","Not sure",75.7,50,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",31.7,14.6,"Disagree","Agree","Disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Not sure",6,70,0,"Independent",0,0,1.07856128262739 +305,67.4,74.5,"True","Neither agree nor disagree","Probably false","Definitely false","Probably true","Definitely false","Strongly agree","Slightly agree",36.1,22.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly agree","","","","","Vote for the Democrat Joe Biden","5fe0f33f-010f-c110-3429-b868e75f46e5","38","1","23","1","1","8","2","4","98223","819","48","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true",67.4,25.5,"False","Neither agree nor disagree","Probably false","Definitely true","Probably true","Definitely false","Strongly agree","Slightly agree",36.1,22.1,"Strongly disagree","","","","","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true",8,38,0,"Republican",1,0,0.807899201610574 +306,50,67.5,"False","Neither agree nor disagree","Probably true","Probably false","Definitely true","Definitely false","Slightly agree","Somewhat disagree",24,17.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe0f3dc-ca2c-28b1-ca71-a380f8bc4142","73","2","8","1","1","7","2","1","14226","514","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure",50,32.5,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly disagree","Somewhat agree",24,17.8,"Disagree","Strongly disagree","Disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure",7,73,0,"Republican",0,0,0.80848632469251 +307,32.2,30.4,"Not sure","Disagree","Definitely false","Probably true","Probably false","Definitely false","Strongly agree","Strongly agree",39.9,59,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f26f-ae84-4a84-5792-dec6c0c03d5a","47","2","4","1","1","2","1","2","43948","554","36","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",32.2,30.4,"Not sure","Agree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",60.1,41,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",2,47,0,"Independent",0,0,1.66544152049953 +308,93.9,79.3,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Probably false","Somewhat agree","Strongly agree",82.2,91.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe0f494-58b3-d1cf-5041-dbeeb1c0f651","44","1","19","1","1","7","1","3","33436","548","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",93.9,20.7,"True","Strongly agree","Definitely false","Definitely true","Definitely true","Probably true","Somewhat agree","Strongly agree",17.8,8.2,"Strongly agree","Disagree","Strongly disagree","Strongly agree","Disagree","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true",7,44,1,"Republican",0,1,0.854374859000727 +309,22,90.5,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",50.4,76.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f294-ad9a-0b80-a99d-ccfdca466ebf","37","2","5","1","1","5","3","3","77303","618","44","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","No, false","","","","No, false","Not sure","",78,9.5,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.4,76.5,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","","","","","","No, false","","","","No, false","Not sure","",5,37,0,"Independent",0,1,0.459634341107367 +310,50.2,72.2,"Not sure","Agree","Probably true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",77.2,76.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Disagree","Disagree","Not vote in the presidential election","5fe0f380-8be4-0e6c-34f9-902088cdb732","62","2","2","1","1","4","1","3","71409","644","19","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",50.2,72.2,"Not sure","Disagree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",22.8,23.8,"Disagree","Disagree","Disagree","Disagree","Disagree","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",4,62,0,"Democrat",0,0,1.50864454760297 +311,50,99.9,"False","Agree","Definitely true","Probably true","Definitely true","Probably true","Strongly agree","Somewhat agree",90,78.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Agree","Agree","Agree","Vote for a different candidate","5fe0f53f-472d-863e-e35a-6f759950f1bc","29","1","1","2","1","5","1","2","61820","648","14","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","Yes, true","","","","","","",50,0.0999999999999943,"True","Agree","Definitely false","Probably true","Definitely true","Probably false","Strongly disagree","Somewhat agree",90,78.3,"Strongly agree","Neither agree nor disagree","Agree","Agree","Disagree","","","","","","Yes, true","","","","","","",5,29,0,"Democrat",1,0,0.469614860319855 +312,82.4,75.6,"False","Agree","Definitely true","Probably false","Definitely false","Probably true","Slightly agree","Strongly disagree",21,24.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f2e3-0de1-b1fd-a7bd-bf7b2008ada6","78","1","18","1","1","5","3","1","10992","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false",17.6,24.4,"False","Disagree","Definitely false","Probably false","Definitely false","Probably false","Slightly agree","Strongly disagree",21,24.5,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",5,78,0,"Independent",0,0,0.678727196044171 +313,64.4,64,"True","Agree","Probably true","Not sure","Probably true","Definitely false","Somewhat agree","Slightly disagree",49.1,67.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe0f177-424b-c881-65de-ef7dff46dbd4","48","1","20","1","1","8","1","1","12487","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true",64.4,64,"False","Agree","Probably true","Not sure","Probably true","Definitely false","Somewhat disagree","Slightly agree",49.1,67.3,"Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Agree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true",8,48,1,"Democrat",0,2,0.788398316908465 +314,86.1,85.4,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Somewhat disagree",70.2,45.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f2d6-67f4-4450-c4a6-0ae42dcb9186","38","1","11","2","1","6","1","1","07103","501","31","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","Not sure","","","","","","","","","","",86.1,14.6,"True","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",29.8,54.1,"Agree","","","","","","Not sure","","","","","","","","","","",6,38,0,"Independent",1,0,0.791344418797853 +315,50,50,"False","Disagree","Probably false","Not sure","Not sure","Probably false","Slightly disagree","Strongly disagree",50.1,50,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f459-9767-0fa6-0a72-0d6957211e5a","37","2","3","1","1","6","2","2","45682","564","36","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","","Not sure","","","","","","","",50,50,"False","Agree","Probably false","Not sure","Not sure","Probably false","Slightly agree","Strongly disagree",49.9,50,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","Not sure","","","","","","","",6,37,0,"Republican",0,0,0.746154240255765 +316,60,99.9,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Probably true","Strongly agree","Strongly disagree",45,60.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Disagree","Not vote in the presidential election","5fe0f2a1-4ea9-4e7b-5794-d95a99a5727c","19","2","4","1","1","2","1","3","78209","641","44","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure",40,99.9,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",45,60.2,"Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Disagree","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure",2,19,0,"Democrat",0,0,1.10018682366745 +317,49.5,82.6,"Not sure","Strongly agree","Probably true","Probably true","Definitely true","Probably true","Strongly disagree","Strongly agree",4.4,3.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","","","","","Vote for the Democrat Joe Biden","5fe0f450-3d7c-220a-e46d-b1d767cc922a","72","1","8","1","1","6","1","2","48170","505","23","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","","","","Yes, true","",50.5,82.6,"Not sure","Strongly disagree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",4.4,3.9,"Strongly agree","","","","","","","","","","","","","","","Yes, true","",6,72,0,"Democrat",0,0,0.702039267968476 +318,50,94.2,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly agree",64.6,54.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f326-4191-946d-afc1-ae647b65923d","21","2","3","1","1","2","1","3","73507","627","37","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",50,5.8,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",64.6,54.4,"Agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false",2,21,0,"Democrat",0,0,1.10018682366745 +319,37.8,70.5,"True","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Not sure","Somewhat agree","Strongly disagree",10.4,46.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Neither agree nor disagree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe0f2df-e97d-f2eb-1135-a85f45e64763","53","1","7","15","2","2","1","3","19805","504","8","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","No, false",37.8,29.5,"True","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Not sure","Somewhat disagree","Strongly disagree",10.4,46.9,"Agree","Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","No, false",2,53,0,"Democrat",0,0,1.05835054821506 +320,52,99.9,"False","Disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",25.2,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f38f-a7b7-0259-19c5-205521f1b695","42","2","7","1","1","3","2","2","68144","652","28","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",48,99.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.2,25.1,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",3,42,0,"Republican",0,1,0.501443380121097 +321,50,0.1,"False","Agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",75.1,75.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0f144-a700-f37d-6814-f9baf9f008a8","76","2","2","1","1","2","2","4","80525","751","6","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true",50,99.9,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",24.9,24.9,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",2,76,1,"Republican",0,0,1.07856128262739 +322,12.3,49.9,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably true","Not sure","Strongly agree","Strongly agree",81.8,51.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0f48d-0ff5-3a51-4ac2-e838d072a419","32","2","1","15","1","6","1","1","14215","514","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","Not sure","","","","","","","",87.7,50.1,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Not sure","Strongly agree","Strongly disagree",18.2,48.7,"Neither agree nor disagree","","","","","","","","","Not sure","","","","","","","",6,32,0,"Independent",0,0,0.377429810908772 +323,50.1,49.9,"False","Strongly disagree","Not sure","Probably true","Definitely true","Definitely false","Strongly agree","Strongly agree",10.7,10.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","","","","","Vote for the Democrat Joe Biden","5fe0f4fe-35e5-6d13-80ce-ed76b584037a","21","1","9","1","1","4","1","3","33314","528","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","No, false","","","","","","","","","","",49.9,49.9,"True","Strongly disagree","Not sure","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",10.7,10.7,"Strongly agree","","","","","","No, false","","","","","","","","","","",4,21,0,"Democrat",0,0,0.538702378978846 +324,45.2,49.8,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Not sure","Strongly disagree","Strongly disagree",52.7,51.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f48a-49dc-1041-28b7-d5b307248e8e","32","1","3","1","1","2","3","3","35754","691","1","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",54.8,50.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",52.7,51.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,32,0,"Other",0,0,1.494140949244 +325,50.1,99.9,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",10.1,10.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0f3cd-9288-0e34-f684-2b4d7f03e76b","64","2","3","1","1","2","2","1","15221","508","39","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","Yes, true","","","","",50.1,99.9,"True","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",10.1,10.1,"","Strongly agree","Strongly agree","Strongly agree","Strongly agree","","","","","","","","Yes, true","","","","",2,64,1,"Republican",0,0,0.928089989751292 +326,99.9,8.9,"False","Strongly agree","Definitely true","Definitely true","Probably true","Definitely true","Strongly agree","Strongly disagree",4.4,9.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f2e4-ab91-02f3-1350-07d6d138e094","51","2","10","1","1","7","1","3","38614","647","25","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false",0.0999999999999943,91.1,"False","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",4.4,9.1,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",7,51,0,"Independent",1,1,0.59837456742152 +327,81.6,84.9,"True","Strongly agree","Probably true","Probably true","Definitely true","Not sure","Strongly disagree","Strongly agree",100,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe0f413-8635-9c69-b98e-d1910f05e1e4","40","2","11","1","1","2","2","3","23072","544","47","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true",18.4,15.1,"True","Strongly agree","Probably true","Probably false","Definitely false","Not sure","Strongly agree","Strongly disagree",0,0,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",2,40,0,"Republican",0,0,1.17262539987032 +328,80,77.7,"True","Neither agree nor disagree","Not sure","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",75.1,86.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Agree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f229-1106-ffa5-e880-d1f72201ccf6","67","2","11","1","1","4","3","1","17331","566","39","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true",20,77.7,"True","Neither agree nor disagree","Not sure","Definitely true","Probably false","Definitely false","Strongly disagree","Strongly disagree",24.9,13.4,"Neither agree nor disagree","Strongly disagree","Disagree","Disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false",4,67,0,"Independent",0,2,0.80848632469251 +329,49.8,77.1,"True","Strongly disagree","Definitely true","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly disagree",57.8,92.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly disagree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f281-00e9-b522-27fb-2caa69650d88","46","1","1","1","1","4","1","3","28451","550","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure",49.8,77.1,"True","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",42.2,7.5,"Neither agree nor disagree","Strongly disagree","Strongly agree","Agree","Neither agree nor disagree","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure",4,46,0,"Republican",0,0,1.11226716750253 +330,49.9,49.9,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",78.2,77.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f1a9-d56f-6a04-cf3c-c4cbf39018fc","59","2","15","1","1","4","2","4","92508","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","Not sure","","","",50.1,50.1,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",21.8,22.9,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","","","","","","","","","Not sure","","","",4,59,0,"Republican",0,2,1.23811856696587 +331,1.3,99.9,"True","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",99.5,99.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","","","","","Vote for the Democrat Joe Biden","5fe0f248-f8ae-5c2d-fe6c-6e4021ccb64d","63","2","2","2","1","2","1","3","27909","544","34","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true",98.7,0.0999999999999943,"False","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",0.5,0.599999999999994,"Strongly agree","","","","","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true",2,63,0,"Democrat",1,0,0.772717258464593 +332,50,83.2,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly agree",17.4,37.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f3ba-3cd6-16c3-e0f3-6d8110ac353b","53","2","18","1","1","6","1","1","01201","532","22","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true",50,16.8,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",17.4,37.4,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",6,53,0,"Democrat",0,0,0.631126486177329 +333,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Definitely false","Strongly agree","Strongly disagree",22.5,26,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f52b-ef23-c240-ad95-8e711fb4def9","57","2","14","1","1","2","2","1","08215","504","31","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",22.5,26,"Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,57,0,"Democrat",0,0,0.623710965386887 +334,49.6,19.9,"True","Disagree","Definitely false","Definitely false","Probably true","Not sure","Somewhat agree","Slightly agree",55.4,82.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","","","Not vote in the presidential election","5fe0f2c0-ac10-8aef-ed50-fc5b1714f0df","42","2","9","1","1","4","1","3","78213","641","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",50.4,80.1,"True","Agree","Definitely false","Definitely true","Probably false","Not sure","Somewhat agree","Slightly agree",44.6,17.4,"Agree","Disagree","Disagree","","","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",4,42,0,"Democrat",0,0,1.17262539987032 +335,50,99.9,"True","Agree","Probably false","Definitely false","Probably true","Definitely false","Strongly agree","Strongly disagree",63.8,73.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f2fa-f01c-542e-cb67-2c7767e9fa05","35","1","2","4","1","2","1","4","89123","839","29","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false",50,99.9,"False","Disagree","Probably false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",36.2,26.7,"Strongly agree","Strongly agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",2,35,0,"Democrat",0,0,0.616644184705796 +336,51.3,88.4,"Not sure","Disagree","Definitely false","Probably true","Probably true","Probably true","Somewhat agree","Slightly disagree",48.8,79.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f35c-a876-b3df-36e6-dc83beb31524","47","2","3","1","1","4","3","3","37342","659","43","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",51.3,11.6,"Not sure","Agree","Definitely false","Probably true","Probably true","Probably false","Somewhat agree","Slightly disagree",51.2,20.6,"Disagree","Agree","Agree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,47,0,"Other",0,0,1.52658135748604 +337,49.6,50.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Strongly agree","Strongly agree",55.1,51.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for a different candidate","5fe0f588-8ac8-3ae4-ae9e-f9ec63e778ee","24","2","1","1","1","6","3","2","61920","648","14","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","","","","","Not sure","","","","","","","",50.4,49.8,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",55.1,51.6,"Neither agree nor disagree","","","","","","","","","Not sure","","","","","","","",6,24,0,"Independent",0,0,0.264628240587415 +338,59.9,79,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Probably false","Strongly disagree","Strongly agree",52.8,96,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f484-50d2-eb7a-27c4-51c358f4409e","57","2","1","2","1","4","1","2","53233","617","50","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","Yes, true","","","","","","","",40.1,21,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",52.8,96,"Neither agree nor disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","","","","","No, false","","","","","","","",4,57,0,"Democrat",1,0,0.84300479600562 +339,61,82.1,"False","Agree","Probably false","Not sure","Probably false","Not sure","Somewhat agree","Slightly disagree",52,69,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f525-9a6c-1636-b7f4-2721d8c0cd31","42","2","19","1","1","6","1","1","08816","501","31","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure",61,82.1,"False","Disagree","Probably false","Not sure","Probably false","Not sure","Somewhat disagree","Slightly disagree",48,31,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure",6,42,0,"Democrat",0,0,0.484792339820778 +340,73.3,49.8,"Not sure","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Slightly disagree","Strongly disagree",75.1,15.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Disagree","Not vote in the presidential election","5fe0f3ea-8d06-8cbf-2975-f7bbe3bdcdcf","55","2","1","1","1","2","3","3","34684","539","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","","","Not sure","","Yes, true","Not sure","","","","","No, false",73.3,49.8,"Not sure","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Slightly agree","Strongly disagree",75.1,15.3,"Agree","Agree","Agree","Disagree","Disagree","Yes, true","","","Not sure","","Yes, true","Not sure","","","","","No, false",2,55,0,"Other",0,0,1.50864454760297 +341,49.8,50,"False","Disagree","Definitely false","Not sure","Definitely true","Definitely false","Strongly agree","Strongly agree",69.4,77.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f3b0-a939-dabd-e881-99a3aac03a99","58","1","5","1","1","6","2","3","76060","623","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",50.2,50,"True","Agree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",30.6,22.1,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",6,58,0,"Republican",0,0,1.09919840793407 +342,40.1,67.9,"True","Agree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Somewhat agree",60.1,72,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe0f469-ebd4-be20-d332-c2fa20fd66cf","29","2","5","1","1","6","1","2","53210","617","50","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","No, false",40.1,32.1,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat agree",39.9,28,"Agree","Agree","Disagree","Disagree","Agree","Not sure","No, false","No, false","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true",6,29,0,"Democrat",0,0,0.511475565940556 +343,22.6,34.6,"False","Agree","Definitely false","Not sure","Definitely true","Definitely false","Strongly agree","Strongly agree",41,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Republican Donald Trump","5fe0f395-825c-e7d4-bcc0-58743c63a124","79","1","7","1","1","6","2","4","83301","760","13","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","Yes, true","","","","","",77.4,34.6,"False","Agree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",41,25.1,"Disagree","","","","","","","","","","","Yes, true","","","","","",6,79,1,"Republican",0,0,1.34733039815278 +344,19.4,85.9,"Not sure","Agree","Probably false","Not sure","Probably true","Probably false","Strongly agree","Slightly disagree",65.3,72.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Disagree","Neither agree nor disagree","Agree","Not vote in the presidential election","5fe0f32a-3ea2-6c25-8250-9d5925072741","42","2","1","3","1","5","3","1","04276","500","20","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true",80.6,14.1,"Not sure","Agree","Probably false","Not sure","Probably false","Probably false","Strongly agree","Slightly agree",34.7,27.1,"Strongly agree","Disagree","Disagree","Neither agree nor disagree","Agree","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true",5,42,0,"Independent",0,1,0.944017484690372 +345,52.8,31.3,"Not sure","Neither agree nor disagree","Not sure","Probably true","Definitely true","Probably false","Slightly agree","Slightly agree",24.4,43.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f4f4-8f34-2296-0ffb-8d6739513e1f","62","2","1","15","2","6","1","3","73505","627","37","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",47.2,31.3,"Not sure","Neither agree nor disagree","Not sure","Probably true","Definitely true","Probably true","Slightly disagree","Slightly disagree",24.4,43.8,"Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",6,62,0,"Democrat",0,0,0.837273276702846 +346,65.8,82.1,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly agree",87.9,90.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0f53c-02d3-0197-1498-b4579f584ab3","36","1","5","1","1","4","1","3","37062","659","43","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","No, false",34.2,82.1,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.1,9.8,"Agree","","","","","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",4,36,0,"Independent",0,0,0.574171657914799 +347,57,50,"False","Agree","Definitely false","Probably true","Definitely true","Definitely true","Somewhat agree","Slightly disagree",50.5,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Republican Donald Trump","5fe0f4eb-2ed4-9778-879d-69996b5ee214","79","2","11","1","1","2","1","1","06118","533","7","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",57,50,"True","Agree","Definitely true","Probably true","Definitely false","Definitely false","Somewhat disagree","Slightly agree",50.5,100,"Agree","","","","","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",2,79,1,"Republican",0,0,0.80848632469251 +348,50,15.3,"False","Disagree","Probably true","Probably true","Probably false","Definitely false","Slightly agree","Strongly disagree",75.7,76,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f42b-affa-4432-21c6-19eb263f451c","26","2","3","1","1","2","2","3","37826","575","43","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","No, false","","","","","","","","","",50,84.7,"False","Disagree","Probably true","Probably true","Probably false","Definitely false","Slightly disagree","Strongly disagree",24.3,24,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","","","No, false","","","","","","","","","",2,26,0,"Republican",0,0,1.19608566751863 +349,75.3,83.7,"True","Agree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",4.7,7.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f2b4-48ac-6c68-92db-8609fc92c9b0","70","1","4","1","1","2","2","3","40299","529","18","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","No, false","No, false","No, false",75.3,16.3,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",4.7,7.4,"Disagree","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",2,70,1,"Republican",0,0,0.957543870478141 +350,50,80.1,"True","Disagree","Definitely false","Probably false","Definitely true","Definitely false","Slightly agree","Slightly agree",85.5,85.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f0ef-ceba-6847-9eaf-cd312de32f1f","79","2","1","1","1","4","3","1","19406","504","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","No, false","","","","",50,80.1,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Slightly agree","Slightly agree",14.5,14.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","","","","","","","","No, false","","","","",4,79,0,"Independent",0,1,0.543332857421717 +351,50,78.9,"False","Disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",70.2,85.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","","","","Vote for the Democrat Joe Biden","5fe0f4db-45a6-bfb8-68cb-64f505cc6f71","73","2","6","1","1","6","1","2","60440","602","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","Not sure","","","","","","","","","",50,78.9,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",29.8,14.6,"Strongly disagree","Disagree","","","","","","Not sure","","","","","","","","","",6,73,0,"Democrat",0,0,0.561994574124504 +352,50,99.9,"False","Neither agree nor disagree","Definitely true","Not sure","Definitely true","Definitely false","Strongly disagree","Strongly disagree",54.6,40.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Vote for the Democrat Joe Biden","5fe0f35c-27f5-ecdf-7e75-faa17182063e","48","2","1","1","1","2","1","3","40977","557","18","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",50,99.9,"False","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",54.6,40.2,"Strongly disagree","","","","","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",2,48,0,"Democrat",0,0,0.59837456742152 +353,50,39.3,"True","Agree","Definitely true","Probably true","Probably true","Probably true","Strongly agree","Strongly disagree",21,18.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f4b6-a0b9-0654-e160-4bc2309a9141","32","2","1","2","1","6","1","4","95828","862","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","Not sure","","",50,39.3,"False","Disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",21,18.5,"Disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","","","","","","","","","","Not sure","","",6,32,0,"Democrat",1,0,0.862008203316775 +354,76.6,68.2,"False","Agree","Probably true","Probably false","Probably true","Probably true","Strongly agree","Strongly disagree",75.9,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Disagree","Agree","Agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f4ad-28bc-1475-21b4-5d71ea5112bc","46","1","5","2","1","2","3","2","44203","510","36","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","Not sure","",76.6,31.8,"True","Disagree","Probably false","Probably true","Probably false","Probably true","Strongly agree","Strongly disagree",24.1,0,"Agree","Agree","Agree","Strongly agree","Neither agree nor disagree","","","","","","","","","","","Not sure","",2,46,0,"Independent",0,0,2.71856162696124 +355,35.2,67.8,"True","Neither agree nor disagree","Probably true","Definitely true","Probably true","Definitely true","Slightly agree","Slightly disagree",9.4,3.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Agree","Disagree","Disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe0f4a2-cd2b-47f3-debd-7541238d762e","36","2","1","1","1","2","3","3","37807","557","43","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","No, false","No, false",35.2,32.2,"True","Neither agree nor disagree","Probably false","Definitely true","Probably false","Definitely false","Slightly agree","Slightly agree",9.4,3.2,"Agree","Agree","Agree","Agree","Strongly agree","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false",2,36,0,"Republican",0,0,0.683941849031096 +356,22.4,75.2,"Not sure","Disagree","Definitely true","Probably true","Definitely true","Definitely false","Somewhat agree","Strongly disagree",30.3,30.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f433-12ae-fe2b-06ea-9bf9f90a559e","54","2","9","1","1","7","1","1","18102","504","39","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false",22.4,24.8,"Not sure","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",30.3,30.7,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",7,54,0,"Democrat",0,0,0.631126486177329 +357,53,83.4,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Definitely false","Slightly disagree","Slightly agree",82.2,68.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Not vote in the presidential election","5fe0f5e9-d47b-0c07-8a88-1ccb7b330df7","61","2","1","1","1","2","3","3","28625","517","34","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","Not sure","","","","","","","","","",53,83.4,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Slightly agree","Slightly disagree",17.8,31.5,"Neither agree nor disagree","","","","","","","Not sure","","","","","","","","","",2,61,0,"Independent",0,0,1.50864454760297 +358,99.9,50,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Probably true","Somewhat agree","Strongly disagree",76.3,75.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f495-9414-acd6-eb5a-22454e49451b","71","2","6","1","1","4","2","3","75023","623","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",0.0999999999999943,50,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Probably false","Somewhat agree","Strongly disagree",23.7,24.3,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false",4,71,0,"Republican",0,0,0.766530426783843 +359,65,82,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Somewhat agree",83.2,99.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Agree","Strongly agree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe0f61a-da28-73e4-0d7c-a263469bf18b","40","2","2","1","1","2","2","1","16323","508","39","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure",65,18,"True","Agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Somewhat disagree",16.8,0.700000000000003,"Disagree","Strongly disagree","Agree","Strongly agree","Disagree","Not sure","No, false","Not sure","Yes, true","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false","Not sure",2,40,0,"Independent",0,0,0.721377276759402 +360,50.7,60,"True","Agree","Definitely true","Probably true","Definitely false","Probably true","Strongly agree","Slightly disagree",57,45,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0f2d6-8e25-7c11-8aef-a4e0581fb732","66","2","5","1","1","2","3","3","75042","623","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",50.7,60,"True","Agree","Definitely true","Probably false","Definitely false","Probably false","Strongly disagree","Slightly agree",57,45,"Disagree","Neither agree nor disagree","Disagree","Disagree","Agree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","No, false",2,66,0,"Independent",0,0,0.766530426783843 +361,44.1,99.9,"False","Strongly disagree","Probably false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",75.9,82.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f49f-f135-93dc-3dfe-e2c2fd379755","46","1","10","2","1","4","1","1","11212","501","33","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",55.9,0.0999999999999943,"False","Strongly disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.1,17.4,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Agree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",4,46,0,"Democrat",0,0,1.03021104371527 +362,51.3,46.5,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",22.4,20.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0f406-d801-b653-d495-1d5bde79ed7d","64","2","1","1","1","2","2","3","25570","564","49","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","No, false",48.7,46.5,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",22.4,20.9,"Disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false",2,64,0,"Republican",0,0,0.879927333598919 +363,99.9,99.9,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely false","Slightly agree","Strongly disagree",49.6,73.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f196-e0a5-23df-e5fc-efd32e0ae637","28","2","1","2","1","6","1","3","30096","524","11","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","Yes, true","Not sure","Yes, true","Not sure","","Yes, true","Not sure","Yes, true","","Yes, true","",0.0999999999999943,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Definitely false","Slightly disagree","Strongly disagree",49.6,73.1,"Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","","Yes, true","Not sure","No, false","Not sure","","Yes, true","Not sure","Yes, true","","Yes, true","",6,28,0,"Democrat",0,0,0.612626771072269 +364,66.8,84.6,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",25.7,22,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f62f-a9f8-8c80-a0db-c9ca5ce2d1f6","18","2","22","1","1","6","1","3","21128","512","21","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","No, false",33.2,15.4,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",74.3,78,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true",6,18,0,"Democrat",1,0,0.431240569961491 +365,50.7,51.6,"False","Disagree","Definitely true","Probably true","Definitely false","Not sure","Slightly disagree","Somewhat agree",69,62,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Disagree","Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f4fe-4a2d-45d8-e45a-9ba286556127","36","2","16","15","1","6","1","2","55071","613","24","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","","Not sure","",50.7,48.4,"False","Disagree","Definitely false","Probably true","Definitely false","Not sure","Slightly agree","Somewhat disagree",69,62,"Disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","","","","","Not sure","",6,36,0,"Democrat",0,0,0.382736043920414 +366,50,75,"True","Disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",67.2,82.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f3b6-3429-0773-0fa6-059a020eb82a","71","2","10","1","1","2","1","1","02816","521","40","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure",50,25,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",32.8,17.8,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure",2,71,0,"Democrat",0,0,0.543332857421717 +367,49.9,76.1,"True","Agree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly agree",35.7,39.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Disagree","Not vote in the presidential election","5fe0f554-f9e7-a3a6-7eb9-7e7d4dafa9e2","66","1","24","1","1","5","3","4","90505","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",49.9,23.9,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.7,39.2,"Disagree","Agree","Disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true",5,66,0,"Independent",0,1,2.31001195369097 +368,15.9,34.5,"True","Disagree","Definitely true","Probably true","Definitely false","Probably true","Slightly agree","Strongly disagree",49,26.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0f590-2ae8-5a1b-4080-2478dad52e0d","45","1","2","2","1","6","3","2","45449","542","36","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","Not sure",15.9,34.5,"False","Agree","Definitely false","Probably false","Definitely false","Probably false","Slightly disagree","Strongly disagree",49,26.7,"Neither agree nor disagree","","","","","","","","","","","","","","","","Not sure",6,45,0,"Independent",0,0,1.58561981179538 +369,50,59.1,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Definitely true","Definitely false","Somewhat disagree","Strongly agree",13.4,71.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f4d1-ead4-592e-f8fb-81d1d50c79d9","21","2","16","1","1","6","1","3","23322","544","47","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false",50,40.9,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",13.4,71.9,"Neither agree nor disagree","Strongly agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true",6,21,0,"Democrat",0,0,0.431240569961491 +370,90,50,"Not sure","Strongly disagree","Probably true","Not sure","Definitely true","Definitely false","Strongly agree","Strongly agree",28.7,22,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Vote for the Republican Donald Trump","5fe0f55f-1075-b540-cfcf-b5307e8d0372","72","1","15","1","1","7","2","2","54201","658","50","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",10,50,"Not sure","Strongly agree","Probably false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly disagree",28.7,22,"Strongly disagree","","","","","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",7,72,0,"Republican",0,0,1.04464351786682 +371,0.3,17.5,"True","Strongly agree","Probably false","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly agree",33.8,73.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0f483-d2b5-77d5-9002-5cb1f8aaa317","35","1","12","1","1","6","1","3","33112","528","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",0.3,17.5,"True","Strongly disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",33.8,73.7,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",6,35,0,"Republican",0,0,0.854374859000727 +372,50,26.4,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely true","Definitely false","Slightly disagree","Strongly agree",70.6,90.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0f5eb-6c95-2732-5547-774175407240","34","1","2","1","1","6","2","3","38864","673","25","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","","","","","","","","","","","",50,26.4,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",29.4,9.8,"Neither agree nor disagree","","","","","Yes, true","","","","","","","","","","","",6,34,0,"Republican",0,2,0.871468009862344 +373,50,51.1,"False","Disagree","Definitely false","Probably true","Probably false","Probably true","Strongly agree","Slightly agree",76,77.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Vote for the Democrat Joe Biden","5fe0f5e2-4880-3088-a4d0-6a8feafaa639","26","2","22","15","2","6","1","3","78415","600","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","","","","","","","","","","","",50,48.9,"False","Agree","Definitely false","Probably true","Probably false","Probably false","Strongly agree","Slightly disagree",24,22.1,"Strongly disagree","","","","","No, false","","","","","","","","","","","",6,26,0,"Democrat",0,0,0.663808163196431 +374,84.6,88.4,"True","Disagree","Definitely false","Definitely false","Probably true","Definitely true","Slightly agree","Somewhat disagree",87.2,93.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","","","","","","5fe0f42e-3ad8-5e15-7d60-ea402bf2d8e6","39","2","2","1","1","2","3","2","61265","682","14","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","Yes, true","","","","","","","","","",15.4,88.4,"False","Agree","Definitely false","Definitely true","Probably false","Definitely true","Slightly agree","Somewhat agree",12.8,6.59999999999999,"Strongly disagree","","","","","","","Yes, true","","","","","","","","","",2,39,0,"Other",0,0,1.27928919042512 +375,58.8,72.6,"False","Disagree","Probably true","Probably false","Definitely false","Probably false","Somewhat disagree","Strongly agree",47.9,96.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f2f2-0b38-1b6f-bb87-8a7b88230ecc","51","2","11","1","1","6","2","4","80022","751","6","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",41.2,72.6,"False","Agree","Probably true","Probably true","Definitely false","Probably false","Somewhat disagree","Strongly disagree",52.1,3.09999999999999,"Agree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true",6,51,0,"Republican",1,0,1.25283899755614 +376,57.4,79.3,"False","Strongly disagree","Probably true","Not sure","Definitely true","Not sure","Strongly agree","Strongly agree",68,0,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","","","","","Vote for the Democrat Joe Biden","5fe0f6a5-f591-5830-d30e-4ec43b2f130b","62","1","13","15","1","2","3","2","48117","505","23","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","Yes, true",57.4,79.3,"False","Strongly disagree","Probably false","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",32,100,"Strongly agree","","","","","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true",2,62,0,"Independent",0,0,0.615114941032324 +377,49.8,69.8,"False","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely true","Strongly agree","Strongly disagree",85.5,81.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f4e4-022f-a514-4781-18418515ebc4","50","2","5","1","1","6","2","3","38754","647","25","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",50.2,69.8,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.5,18.9,"Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","No, false","No, false","No, false","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","No, false",6,50,0,"Republican",0,0,0.890389101626892 +378,26.2,16.7,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",76.1,71.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f109-de75-02ba-7ce9-78e7649a902a","86","1","21","1","1","8","3","1","07631","501","31","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","No, false",26.2,83.3,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.9,28.4,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","Yes, true",8,86,0,"Democrat",0,3,0.678727196044171 +379,46.3,45.6,"Not sure","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Slightly agree","Slightly agree",80.7,24,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f630-74c0-a846-6cac-75bb267736c2","19","2","1","2","1","4","1","3","38721","718","25","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","Not sure","","","","","","",53.7,54.4,"Not sure","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely false","Slightly agree","Slightly agree",19.3,76,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","Not sure","","","","","","",4,19,0,"Democrat",0,1,0.563508049350613 +380,49.8,50.5,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Slightly agree",41.3,53.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f3c3-12c4-fcc2-29d4-d91da1f3e191","32","2","6","15","1","4","2","3","28304","560","34","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.8,50.5,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Slightly agree",41.3,53.9,"","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,32,0,"Republican",0,0,0.532475498370776 +381,73.4,50,"False","Neither agree nor disagree","Probably true","Probably false","Definitely true","Probably true","Strongly disagree","Somewhat agree",30.4,25.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe0f58a-c623-32da-dfa3-848866add783","35","2","3","1","1","4","2","2","65565","609","26","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","Not sure","","No, false","","",73.4,50,"False","Neither agree nor disagree","Probably true","Probably true","Definitely false","Probably true","Strongly disagree","Somewhat agree",69.6,74.6,"Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Agree","","","","","","","","Not sure","","Yes, true","","",4,35,0,"Republican",0,0,0.746154240255765 +382,49.6,72.8,"Not sure","Disagree","Probably true","Probably false","Definitely false","Probably false","Strongly agree","Somewhat agree",81.5,95.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe0f5e0-354a-b308-d9b1-71c2ae082647","32","2","19","1","1","4","3","3","34711","534","10","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Not sure","Not sure",50.4,72.8,"Not sure","Agree","Probably false","Probably true","Definitely false","Probably false","Strongly agree","Somewhat disagree",18.5,4.2,"Neither agree nor disagree","Disagree","Strongly disagree","Agree","Disagree","Not sure","Not sure","Not sure","No, false","No, false","No, false","Not sure","No, false","No, false","Not sure","Not sure","Not sure",4,32,0,"Independent",0,2,0.468830069482283 +383,27.9,99.9,"Not sure","Neither agree nor disagree","Probably true","Not sure","Definitely true","Not sure","Strongly disagree","Strongly disagree",34.4,52.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Agree","Strongly agree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe0f4da-92fa-1ad6-d028-0df3f50a21f1","48","2","3","2","1","6","1","3","75215","623","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","No, false","No, false",27.9,0.0999999999999943,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",34.4,52.6,"Disagree","Strongly disagree","Strongly disagree","Disagree","Agree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",6,48,0,"Democrat",0,0,0.781904367900328 +384,94.4,96,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly agree",3.9,12.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f650-a6d4-3348-e58f-f8c9776eef00","57","1","1","1","1","2","1","2","44129","510","36","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","","","","","","","","","","","",5.59999999999999,96,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",3.9,12.1,"Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Not sure","","","","","","","","","","","",2,57,0,"Independent",0,1,0.805895656010846 +385,50,70.3,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly agree",63.8,61.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Neither agree nor disagree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0f495-a67d-a5ba-77e6-f7809d8f4162","57","2","12","1","1","7","2","3","34112","571","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure",50,70.3,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",36.2,38.7,"Strongly disagree","Disagree","Neither agree nor disagree","Disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",7,57,0,"Republican",0,1,0.879927333598919 +386,49.9,50,"Not sure","Disagree","Probably false","Probably false","Probably true","Probably false","Somewhat agree","Strongly disagree",70.1,80,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Neither agree nor disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe0f4da-a0be-8742-29f0-15226003d051","38","2","12","1","1","6","2","4","92886","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","Not sure","","","","","","","",49.9,50,"Not sure","Agree","Probably false","Probably false","Probably false","Probably false","Somewhat agree","Strongly disagree",29.9,20,"Agree","Disagree","Neither agree nor disagree","Disagree","Disagree","","","","","Not sure","","","","","","","",6,38,0,"Republican",0,0,0.962353446331682 +387,88.4,27,"Not sure","Neither agree nor disagree","Definitely true","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",40.3,61,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f4c4-54a0-f960-bbd5-fc9eed05fb7f","46","2","4","2","1","6","1","3","33313","528","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",11.6,73,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Probably false","Strongly disagree","Strongly disagree",40.3,61,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",6,46,0,"Democrat",0,0,1.99480508758438 +388,50,73.5,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat agree","Strongly agree",9.7,21.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f56c-954f-d30c-de5a-e83afe4febb7","25","2","3","1","1","6","1","2","65803","619","26","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false",50,26.5,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",9.7,21.8,"Agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",6,25,0,"Democrat",0,3,0.511475565940556 +389,70.9,41.6,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Probably true","Slightly agree","Strongly disagree",28.7,65.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f738-0c87-34f8-222e-e9da8bd7bead","39","2","5","2","1","2","1","3","29461","519","41","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","Yes, true","","","","","",29.1,58.4,"True","Strongly agree","Probably true","Definitely false","Definitely false","Probably false","Slightly disagree","Strongly agree",71.3,34.1,"Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Disagree","","","","","","","Yes, true","","","","","",2,39,0,"Democrat",0,0,0.600610584934286 +390,55.5,84.6,"False","Strongly agree","Probably false","Definitely false","Definitely false","Probably true","Slightly disagree","Somewhat agree",82.9,71.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f0ee-5c0e-0019-6ff2-df0370abff0f","30","2","10","1","1","6","1","4","99336","810","48","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Not sure",44.5,15.4,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Probably false","Slightly agree","Somewhat disagree",17.1,28.6,"Agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure",6,30,0,"Democrat",1,1,0.659676306910243 +391,50,95.4,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly agree",50.9,75.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Not vote in the presidential election","5fe0f5b7-9d87-890d-3d72-7b149e1b8830","20","1","1","2","1","1","1","1","11411","501","33","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","No, false","","Yes, true","Not sure","Yes, true","Not sure","Yes, true","","","No, false",50,4.59999999999999,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",50.9,75.2,"Neither agree nor disagree","","","","","","","No, false","","Yes, true","Not sure","Yes, true","Not sure","Yes, true","","","Yes, true",1,20,0,"Democrat",1,0,1.89417244248251 +392,82.1,49.8,"True","Agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",20.1,10,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0f25e-12ad-24c7-e5ab-e0387bdcce95","45","1","23","1","14","8","1","1","10001","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","Yes, true","","",17.9,50.2,"True","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",20.1,10,"Neither agree nor disagree","","","","","","","","","","","","","","Yes, true","","",8,45,0,"Democrat",1,1,1.46249825874011 +393,87.4,41.6,"True","Disagree","Definitely true","Definitely true","Definitely true","Probably false","Strongly agree","Somewhat agree",38.2,50.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","","","","","Vote for the Republican Donald Trump","5fe0f6eb-368e-64ae-9ab8-70a494ef727c","29","2","11","1","1","6","2","2","44035","510","36","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",87.4,58.4,"False","Agree","Definitely true","Definitely false","Definitely true","Probably false","Strongly disagree","Somewhat agree",61.8,49.7,"Strongly disagree","","","","","Not sure","Not sure","No, false","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",6,29,0,"Republican",0,0,0.761082262610781 +394,71.9,78.3,"True","Agree","Definitely false","Probably false","Probably false","Definitely false","Strongly disagree","Somewhat agree",35.1,54.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0f4ab-b302-4f83-9ae6-f5453ae57360","59","2","11","1","1","2","2","2","43026","535","36","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",71.9,21.7,"False","Agree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Somewhat disagree",64.9,45.9,"Neither agree nor disagree","","","","","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",2,59,0,"Republican",0,0,0.959966862697315 +395,19.4,85.2,"Not sure","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Somewhat disagree",0.7,3.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f60f-9688-9458-a93b-65951b532cdd","76","2","1","1","1","6","1","4","99205","881","48","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",80.6,85.2,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",0.7,3.4,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",6,76,0,"Democrat",0,0,0.724833266434345 +396,50,71.8,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly disagree","Slightly disagree",23.5,36.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f6b7-be4c-6948-9d3a-bccb7b776b3f","29","2","8","1","2","6","1","4","89509","811","29","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",50,71.8,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",23.5,36.1,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",6,29,0,"Democrat",0,0,1.22371576587263 +397,79.3,12.9,"False","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Not sure","Slightly agree","Strongly disagree",76.5,54.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f253-62a3-3a42-6174-8f8b10bc4298","43","2","-3105","2","1","4","1","3","39743","673","25","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",20.7,87.1,"False","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Not sure","Slightly disagree","Strongly disagree",23.5,45.3,"Strongly agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","No, false","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",4,43,0,"Democrat",0,0,0.600610584934286 +398,50,50,"False","Agree","Not sure","Probably true","Definitely false","Definitely false","Slightly disagree","Slightly agree",77.6,65.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe0f2b1-148f-6523-8526-bc0b8307336e","52","2","1","1","1","4","2","3","32615","592","10","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure",50,50,"False","Agree","Not sure","Probably true","Definitely false","Definitely false","Slightly disagree","Slightly disagree",22.4,34.5,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Agree","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure",4,52,0,"Republican",0,0,0.890389101626892 +399,50,70.7,"True","Strongly agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Strongly disagree",25.1,5.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f651-678a-db36-f684-129f4c15a7e0","58","2","14","1","1","7","3","1","02915","521","40","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","Not sure","","","","","","","","","",50,29.3,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.1,5.4,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","","","Not sure","","","","","","","","","",7,58,0,"Independent",0,0,0.623710965386887 +400,71.3,22.9,"Not sure","Strongly disagree","Probably true","Not sure","Definitely true","Not sure","Strongly disagree","Strongly disagree",58.5,69.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f63b-6aa5-9620-6084-f336f00b4c36","44","2","2","1","1","2","2","3","30141","524","11","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure",28.7,22.9,"Not sure","Strongly agree","Probably false","Not sure","Definitely false","Not sure","Strongly disagree","Strongly disagree",41.5,30.9,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure",2,44,0,"Republican",0,0,0.683941849031096 +401,41,63.7,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Not sure","Somewhat agree","Somewhat disagree",54.3,58,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f608-c0a4-bd84-f426-e68faff21e29","43","2","3","1","1","2","2","3","37801","557","43","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","Not sure",59,36.3,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably false","Not sure","Somewhat agree","Somewhat disagree",54.3,58,"","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","","","","","","","","","","Not sure",2,43,0,"Republican",0,0,1.17262539987032 +402,16.1,84.1,"True","Agree","Definitely false","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",95.1,3.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for a different candidate","5fe0f5a6-7e94-786d-bdbe-94475fb557a1","39","1","7","1","1","6","2","3","27892","545","34","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","No, false","","","","","","",16.1,84.1,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",4.90000000000001,96.6,"Agree","","","","","","","","","","No, false","","","","","","",6,39,0,"Other",0,0,0.32296011866272 +403,50,99.9,"False","Agree","Definitely true","Probably false","Definitely false","Definitely false","Slightly agree","Strongly disagree",15.1,10.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f39b-42b8-0185-0062-fe0bb0925ea3","73","2","18","1","1","4","1","1","06779","533","7","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",50,99.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely true","Slightly disagree","Strongly disagree",15.1,10.1,"Disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",4,73,0,"Democrat",0,0,0.543332857421717 +404,50,80.3,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",7.1,14.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Strongly disagree","","","Vote for the Democrat Joe Biden","5fe0f565-12ab-5d95-1787-21c895680741","24","2","1","1","1","6","1","3","39168","710","25","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","No, false","","","","","","","","","","",50,80.3,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",7.1,14.2,"Disagree","Strongly agree","Strongly disagree","","","","No, false","","","","","","","","","","",6,24,0,"Independent",0,2,0.431240569961491 +405,50,79.8,"True","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",66,87,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f38a-4fe5-6beb-753e-f95132df4af7","37","1","1","1","1","6","1","3","20120","511","47","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true",50,20.2,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",34,13,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",6,37,0,"Democrat",0,0,0.574171657914799 +406,99.9,84.2,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.7,26.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f6c8-57c1-a87a-5667-5d862b691627","30","2","20","2","1","2","1","4","83544","881","13","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Not sure",0.0999999999999943,84.2,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly agree",50.7,26.2,"Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","No, false","Not sure",2,30,0,"Independent",0,3,1.28267936428782 +407,46.1,99.9,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Probably false","Slightly disagree","Strongly disagree",34.2,5.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe0f5ca-a468-f4e4-b127-057215af19da","36","1","6","1","1","2","1","3","74344","603","37","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","Not sure","","","","","","","","",53.9,99.9,"True","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Probably false","Slightly agree","Strongly disagree",34.2,5.5,"Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","","","","Not sure","","","","","","","","",2,36,0,"Democrat",0,0,1.4648345646551 +408,80,86.8,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably false","Probably true","Slightly agree","Slightly agree",64.5,70.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f773-e6b0-23a3-627f-943c6990352b","57","2","13","1","1","2","2","2","56473","613","24","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",20,13.2,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly disagree","Slightly agree",64.5,70.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",2,57,0,"Republican",0,0,0.959966862697315 +409,70.1,72.2,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably false","Slightly agree","Slightly agree",50.2,54.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f750-3a6b-45ee-86db-14ca2d77bb8a","29","2","1","1","1","2","2","2","65084","604","26","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",29.9,27.8,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably true","Slightly disagree","Slightly agree",49.8,45.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,29,1,"Republican",0,0,1.30488343971418 +410,50.4,68.6,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Slightly disagree","Strongly disagree",58.7,49.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe0f63c-14b1-4640-784e-da78f7c20e1b","42","2","1","1","1","2","3","1","15146","508","39","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.6,31.4,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably true","Slightly disagree","Strongly disagree",58.7,49.8,"Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,42,0,"Republican",0,0,0.721377276759402 +411,55.7,76.4,"True","Strongly agree","Probably false","Definitely false","Probably true","Probably false","Strongly disagree","Strongly agree",11.4,31.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f6b7-d23a-feb7-141c-ea4a7416565c","52","2","3","1","1","2","2","3","31523","561","11","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure",44.3,23.6,"False","Strongly agree","Probably false","Definitely true","Probably false","Probably true","Strongly disagree","Strongly disagree",88.6,68.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure",2,52,1,"Republican",0,0,0.890389101626892 +412,49.8,84.5,"False","Agree","Probably true","Probably true","Probably false","Probably true","Somewhat agree","Somewhat agree",78.8,72.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f2eb-509f-0978-8707-91e4cba8f26c","75","2","9","2","1","7","1","2","65202","604","26","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",49.8,15.5,"False","Disagree","Probably false","Probably true","Probably false","Probably false","Somewhat agree","Somewhat disagree",21.2,27.5,"Disagree","","","","","No, false","Not sure","Not sure","","No, false","No, false","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",7,75,0,"Democrat",0,1,0.734366124779974 +413,66.7,64.9,"False","Disagree","Definitely true","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",76.5,50.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Disagree","Agree","Not vote in the presidential election","5fe0f464-8d3a-7dc7-071a-c05751873f03","36","2","1","15","2","2","3","1","14301","514","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true",66.7,64.9,"True","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",23.5,49.3,"Disagree","Strongly disagree","Neither agree nor disagree","Disagree","Disagree","No, false","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true",2,36,0,"Democrat",0,0,1.7511756404982 +414,24.5,49.8,"False","Agree","Definitely true","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",10,4.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","","","","Vote for the Republican Donald Trump","5fe0f5a3-6648-a3ee-5be7-2735e229fd72","39","2","15","1","1","6","2","3","29732","517","41","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","Yes, true","","","","","",24.5,49.8,"True","Agree","Definitely false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly disagree",10,4.5,"Strongly disagree","Strongly disagree","","","","","","","","","","Yes, true","","","","","",6,39,0,"Independent",0,0,0.683941849031096 +415,74.6,80.5,"True","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably false","Somewhat agree","Somewhat agree",77.3,69.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Agree","Agree","Vote for a different candidate","5fe0f7df-fea1-064c-9cfd-0e7a6ba60197","21","2","3","2","1","6","1","3","33009","528","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure",25.4,19.5,"False","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably true","Somewhat agree","Somewhat disagree",22.7,30.7,"Disagree","Agree","Strongly disagree","Disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure",6,21,0,"Independent",0,0,0.316962051290726 +416,99.9,99.9,"False","Disagree","Probably true","Probably true","Definitely true","Definitely false","Somewhat agree","Strongly disagree",89.9,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f499-5696-aa88-700e-be3712f2b36a","71","1","12","1","1","6","3","1","1240","532","22","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","No, false",0.0999999999999943,99.9,"False","Agree","Probably false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",10.1,9.90000000000001,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",6,71,0,"Independent",0,2,1.73157807953745 +417,51.6,43.8,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably true","Definitely true","Strongly disagree","Strongly disagree",35.3,22.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f4f9-6391-b85e-1909-870fb22baf7c","56","2","1","1","1","4","2","2","44709","510","36","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",48.4,43.8,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably true","Definitely false","Strongly agree","Strongly disagree",35.3,22.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,56,0,"Republican",0,0,0.959966862697315 +418,85.3,70.4,"True","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",95.9,93.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f634-2b5a-2d51-7972-23c3d7ec0cd0","63","2","6","1","1","6","2","3","30705","524","11","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","","","","Yes, true",14.7,70.4,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",4.09999999999999,6.8,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Neither agree nor disagree","","","","","","","","","","","","Yes, true",6,63,0,"Republican",0,0,0.879927333598919 +419,50,91.7,"True","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",82,77.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0f6ea-64a8-0b97-ea85-fa4d48f26d8a","72","2","7","1","1","3","1","4","97330","801","38","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",50,8.3,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",18,22.9,"Neither agree nor disagree","","","","","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",3,72,0,"Democrat",1,0,0.724833266434345 +420,38.1,62.8,"True","Agree","Probably false","Probably true","Definitely true","Definitely true","Slightly agree","Slightly agree",34.5,11.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0f62e-1f84-9faf-ef08-711dabadb6a1","38","2","1","1","1","2","3","1","01752","506","22","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",38.1,62.8,"True","Disagree","Probably true","Probably true","Definitely false","Definitely false","Slightly disagree","Slightly disagree",34.5,11.6,"Neither agree nor disagree","","","","","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",2,38,0,"Independent",0,0,0.721377276759402 +421,65,68.6,"False","Agree","Probably true","Definitely false","Definitely false","Definitely true","Somewhat agree","Somewhat agree",77.2,26.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f738-68d2-febb-1573-3555e60d3f6f","18","1","3","15","2","2","2","3","40219","529","18","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false",35,31.4,"False","Agree","Probably false","Definitely true","Definitely false","Definitely false","Somewhat agree","Somewhat agree",77.2,26.5,"Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true",2,18,0,"Republican",0,0,1.13496568996245 +422,0.1,0.1,"True","Strongly agree","Not sure","Definitely true","Definitely true","Not sure","Strongly agree","Strongly agree",30.8,26.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f686-74aa-7889-d70c-dc6aaf427874","30","2","3","1","1","2","2","3","28650","517","34","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",99.9,99.9,"True","Strongly agree","Not sure","Definitely true","Definitely true","Not sure","Strongly disagree","Strongly disagree",30.8,26.1,"Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true",2,30,1,"Republican",0,0,0.697625211881609 +423,52.1,99.9,"False","Strongly disagree","Definitely false","Definitely true","Definitely true","Probably false","Strongly disagree","Strongly agree",50.5,51.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f4e9-ef88-9167-71be-f4bd84edbbdf","47","2","1","1","1","1","3","3","26726","511","49","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","No, false","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true",52.1,99.9,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Strongly disagree",50.5,51.3,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",1,47,0,"Independent",0,0,0.59837456742152 +424,50,50,"Not sure","Strongly disagree","Definitely true","Probably true","Probably true","Definitely true","Strongly disagree","Strongly agree",66.7,25.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","Vote for the Republican Donald Trump","5fe0f575-5462-3aba-7203-03d27ba40696","60","1","4","1","2","6","2","4","92780","803","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Strongly disagree","Definitely false","Probably true","Probably false","Definitely false","Strongly disagree","Strongly disagree",66.7,25.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,60,0,"Republican",0,0,2.86907028616227 +425,0.1,0.1,"Not sure","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Strongly disagree","Strongly disagree",0,0,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe0f768-0314-dff1-bfed-4c85b7b8ef42","42","2","1","1","1","2","4","1","18512","577","39","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",0.1,99.9,"Not sure","Strongly agree","Not sure","Not sure","Not sure","Not sure","Strongly disagree","Strongly disagree",0,0,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,42,0,"Other",0,0,1.23680882931159 +426,86.5,99.9,"False","Agree","Probably true","Probably false","Definitely true","Definitely true","Somewhat disagree","Somewhat agree",83.5,81.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Vote for the Republican Donald Trump","5fe0f593-6758-da42-5679-f74fb0483cc2","33","2","3","1","1","4","2","3","27909","544","34","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","Not sure","","",13.5,0.0999999999999943,"False","Agree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",16.5,18.2,"Neither agree nor disagree","","","","","","","","","","","","","","Not sure","","",4,33,0,"Independent",0,0,0.697625211881609 +427,50.3,50,"Not sure","Strongly disagree","Not sure","Probably false","Definitely true","Probably false","Somewhat agree","Somewhat agree",55.9,72.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Agree","Agree","Agree","Not vote in the presidential election","5fe0f7d9-aebd-5038-eab8-7b3c0f4e6205","25","2","7","1","1","4","4","4","96858","744","12","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.3,50,"Not sure","Strongly agree","Not sure","Probably false","Definitely false","Probably false","Somewhat agree","Somewhat agree",55.9,72.8,"Agree","Disagree","Disagree","Agree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,25,0,"Democrat",1,0,1.68297519134869 +428,34.7,68.3,"Not sure","Agree","Definitely false","Definitely true","Definitely false","Probably true","Strongly disagree","Strongly disagree",5.6,9.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f53d-6bbf-b9d9-cd5b-50532bc6301f","27","2","13","1","1","6","1","2","53081","617","50","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","No, false","No, false","Yes, true","Yes, true",34.7,31.7,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",5.6,9.5,"Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Disagree","Not sure","Not sure","No, false","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true",6,27,0,"Democrat",0,3,0.511475565940556 +429,50.4,51.6,"False","Agree","Probably true","Probably true","Probably false","Probably true","Slightly disagree","Slightly agree",85.8,96.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f6cc-84a8-ff77-a539-af89fff815a3","26","2","2","1","1","2","3","3","25932","559","49","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",50.4,51.6,"True","Agree","Probably true","Probably false","Probably true","Probably false","Slightly agree","Slightly disagree",14.2,3.59999999999999,"Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",2,26,0,"Independent",0,1,1.19608566751863 +430,19.3,83.4,"False","Agree","Probably true","Definitely true","Probably true","Probably true","Somewhat agree","Slightly disagree",50.1,13.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Agree","Not vote in the presidential election","5fe0f396-eded-285b-7a1b-6fc520ab0cff","69","2","3","1","1","2","3","2","48507","513","23","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","","Yes, true","Yes, true","","","","","","","","",19.3,83.4,"True","Agree","Probably false","Definitely true","Probably true","Probably true","Somewhat agree","Slightly agree",50.1,13.5,"Disagree","Agree","Agree","Disagree","Disagree","Yes, true","","Yes, true","No, false","","","","","","","","",2,69,1,"Independent",0,1,1.43376822240912 +431,15.6,98.4,"Not sure","Agree","Definitely true","Definitely false","Definitely true","Definitely true","Somewhat disagree","Strongly agree",18.5,25.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Disagree","Disagree","Strongly agree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe0f65d-31dd-9be8-2465-34bda5c1e60a","61","1","4","1","1","4","1","3","32940","534","10","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","No, false","","","","","","",15.6,1.59999999999999,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",18.5,25.4,"Agree","Disagree","Strongly disagree","Disagree","Disagree","","","","","","No, false","","","","","","",4,61,0,"Democrat",0,0,0.73870218161496 +432,66.5,56.8,"False","Agree","Probably true","Probably false","Probably true","Definitely false","Somewhat agree","Somewhat agree",16.6,15.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f76b-d0a3-e3e6-2ee0-d54aaca0ef17","35","1","21","1","1","6","2","4","98258","819","48","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true",33.5,56.8,"True","Disagree","Probably false","Probably false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",16.6,15.9,"Agree","Neither agree nor disagree","Agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true",6,35,0,"Independent",0,0,1.20216446936721 +433,49.4,49.3,"Not sure","Neither agree nor disagree","Not sure","Definitely false","Definitely true","Definitely false","Somewhat disagree","Somewhat agree",75.7,54.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f55f-6786-b1b0-9818-8fa4ecbe4ff8","58","2","1","1","1","2","2","3","28659","518","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","","","","","","","","","","","",49.4,49.3,"Not sure","Neither agree nor disagree","Not sure","Definitely true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",24.3,45.8,"Neither agree nor disagree","Disagree","Strongly agree","Disagree","Neither agree nor disagree","Not sure","","","","","","","","","","","",2,58,0,"Republican",0,0,0.879927333598919 +434,66.9,70.1,"","Agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Slightly agree",51.3,38.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Agree","Disagree","Neither agree nor disagree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f7bf-2fba-597b-8aa6-e5540df5074f","38","1","5","2","1","6","1","3","23690","544","47","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure",33.1,29.9,"","Disagree","Probably false","Probably false","Probably true","Probably true","Somewhat agree","Slightly agree",51.3,38.9,"Agree","Disagree","Neither agree nor disagree","Agree","Strongly disagree","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Not sure",6,38,0,"Democrat",1,0,0.750278089496237 +435,50.8,50.5,"False","Disagree","Probably false","Probably true","Probably true","Not sure","Strongly disagree","Strongly disagree",76.5,88.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f5e3-001a-630f-1af6-4b1af32ea5ea","46","1","11","1","1","6","1","3","75251","623","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",50.8,49.5,"False","Disagree","Probably false","Probably true","Probably false","Not sure","Strongly agree","Strongly disagree",76.5,88.6,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","No, false",6,46,0,"Democrat",0,1,0.747484873742735 +436,50.3,99.9,"False","Agree","Probably true","Probably false","Probably true","Probably true","Strongly agree","Somewhat disagree",24.4,15.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f6a9-435b-a952-383a-e6fe7f0207d7","40","1","5","2","1","4","1","3","76112","623","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true",49.7,0.0999999999999943,"False","Disagree","Probably false","Probably false","Probably false","Probably false","Strongly agree","Somewhat disagree",24.4,15.2,"Disagree","","","","","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",4,40,0,"Democrat",0,0,0.750278089496237 +437,44.1,85.5,"False","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely true","Slightly agree","Strongly agree",77.9,84.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f6ae-3031-6dcf-d6e4-48643fe63d0b","60","1","5","1","1","7","1","1","02816","521","40","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",55.9,85.5,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",22.1,15.5,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",7,60,0,"Democrat",1,0,0.779134905788461 +438,49.3,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably false","Definitely false","Slightly agree","Slightly disagree",57.3,82.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f5ff-ac32-e9d3-a9f5-dfd60c51a344","35","1","2","1","1","2","2","2","53081","617","50","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.3,50,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Definitely false","Slightly disagree","Slightly agree",42.7,17.8,"Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,35,0,"Republican",0,1,0.932090096130861 +439,99.9,50.3,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably true","Slightly agree","Somewhat agree",65.9,72.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f73c-9493-8f04-854f-21f3ae865106","26","2","1","1","1","2","2","2","67701","678","17","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",99.9,50.3,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly agree","Somewhat agree",34.1,27.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",2,26,0,"Republican",0,0,1.30488343971418 +440,26.5,75.3,"False","Disagree","Probably false","Definitely false","Probably true","Definitely false","Slightly disagree","Strongly agree",15,10.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe0f69e-bdbe-eb7d-7013-35b97dc2a2b9","31","1","18","1","1","2","2","1","15701","508","39","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false",26.5,75.3,"False","Agree","Probably false","Definitely true","Probably true","Definitely false","Slightly disagree","Strongly disagree",15,10.1,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false",2,31,0,"Republican",0,2,0.919167646530211 +441,50,75,"False","Neither agree nor disagree","Probably true","Probably true","Definitely false","Probably true","Somewhat disagree","Somewhat agree",75,75,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0ef85-198c-20a7-ecc0-27363487ab69","67","2","3","1","1","2","2","3","73501","627","37","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",50,75,"True","Neither agree nor disagree","Probably true","Probably false","Definitely false","Probably true","Somewhat disagree","Somewhat agree",25,25,"Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","No, false",2,67,0,"Independent",0,0,0.766530426783843 +442,67.9,91.2,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",13.5,7.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe0f6bf-089a-60a3-3121-31207853e279","23","2","3","2","1","6","1","3","23075","556","47","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false",32.1,91.2,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",13.5,7.9,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true",6,23,0,"Democrat",1,0,1.43762942104787 +443,50.1,77,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Strongly disagree","Somewhat disagree",42.6,46.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Agree","Disagree","Strongly disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f5f1-4b6f-9676-38bd-43b384d1f86d","39","2","1","1","1","1","2","3","76857","662","44","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","Yes, true","","","","","","",50.1,23,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably true","Strongly agree","Somewhat disagree",42.6,46.4,"Disagree","Agree","Strongly agree","Agree","Strongly agree","","","","","","Yes, true","","","","","","",1,39,0,"Republican",0,1,0.683941849031096 +444,79.5,76.5,"Not sure","Strongly disagree","Definitely true","Probably true","Probably true","Definitely true","Somewhat disagree","Strongly disagree",86.3,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f7f1-15b0-a02f-217b-de79f04bdadd","39","1","14","1","1","6","2","3","70452","622","19","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure",79.5,23.5,"Not sure","Strongly disagree","Definitely false","Probably true","Probably true","Definitely true","Somewhat agree","Strongly disagree",13.7,0,"Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure",6,39,0,"Republican",0,0,0.854374859000727 +445,50,68.9,"True","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",67.9,70.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f62b-db4e-e953-1804-09eb275cc2d0","28","2","18","1","1","6","1","1","06605","501","7","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Not sure","Not sure","No, false",50,68.9,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",32.1,29.7,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true",6,28,0,"Democrat",1,0,0.494491394648778 +446,60.3,60.2,"False","Disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",70.1,85.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0f5e0-7b43-449e-b079-6ca0024aca3d","62","2","15","1","1","6","3","1","01984","506","22","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",60.3,39.8,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",29.9,14.7,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Not sure","No, false",6,62,0,"Independent",0,3,0.928089989751292 +447,51.9,95.8,"False","Neither agree nor disagree","Definitely false","Not sure","Probably false","Definitely true","Strongly agree","Strongly agree",25.3,19.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f382-3cb0-b010-3138-568c99ce1e70","57","2","5","2","1","2","3","3","25303","564","49","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure",48.1,4.2,"True","Neither agree nor disagree","Definitely false","Not sure","Probably false","Definitely false","Strongly disagree","Strongly disagree",25.3,19.9,"Disagree","","","","","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure",2,57,0,"Democrat",0,0,0.772717258464593 +448,50,69.3,"Not sure","Agree","Probably true","Not sure","Probably true","Probably true","Slightly disagree","Slightly disagree",24,24,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f6a0-1aa2-c1a9-3c52-aff853d52de7","46","1","1","1","1","6","1","4","84111","770","45","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",50,30.7,"Not sure","Disagree","Probably true","Not sure","Probably true","Probably true","Slightly agree","Slightly agree",24,24,"Agree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",6,46,0,"Democrat",0,0,1.05176287332933 +449,50,50,"Not sure","Disagree","Definitely false","Definitely false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",100,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","","","","Vote for the Democrat Joe Biden","5fe0f4c3-09aa-3ec0-2604-4cb6be9adc89","56","2","3","1","1","6","1","2","44118","510","36","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","Not sure","","",50,50,"Not sure","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",0,0,"Disagree","Strongly agree","","","","","","","","","","","","","Not sure","","",6,56,0,"Democrat",0,1,0.645133408704056 +450,50,50,"True","Agree","Probably true","Probably true","Definitely true","Definitely true","Slightly disagree","Strongly agree",85,76.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f5cd-0ca4-e874-73d3-78acca1fed0d","78","2","2","1","1","4","1","4","90277","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure",50,50,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly agree","Strongly disagree",15,23.2,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure",4,78,0,"Democrat",0,0,0.724833266434345 +451,80.1,99.9,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",85,89.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f4b4-a5b2-9161-ed23-f28742442aaa","71","1","6","1","1","6","1","3","33948","571","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",80.1,99.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15,10.9,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false",6,71,0,"Democrat",0,0,0.643505067882763 +452,37.9,75.5,"True","Disagree","Probably true","Definitely false","Probably true","Probably false","Slightly agree","Somewhat disagree",53.7,42.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Disagree","Agree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe0f577-8120-457e-5779-85ecbc8990f1","21","2","9","4","1","6","2","3","35235","630","1","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false",62.1,75.5,"False","Disagree","Probably false","Definitely true","Probably false","Probably false","Slightly agree","Somewhat agree",53.7,42.7,"Strongly agree","Agree","Disagree","Neither agree nor disagree","Disagree","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true",6,21,0,"Republican",0,0,0.329152435286286 +453,49.2,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly disagree","Slightly agree",23.6,21.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f797-b425-04a7-81fc-3256a2caacb9","43","1","6","1","1","1","4","3","22025","511","47","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.2,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly agree","Slightly disagree",23.6,21.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",1,43,0,"Republican",0,0,1.4648345646551 +454,41.3,55.9,"False","Strongly disagree","Probably true","Definitely true","Definitely true","Probably true","Strongly disagree","Strongly agree",20.3,14.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f63f-c5f9-5c42-7b1b-e4a82c496af8","47","1","2","1","1","4","3","4","94577","807","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","Not sure","","","","","","","","","",41.3,55.9,"True","Strongly disagree","Probably false","Definitely true","Definitely true","Probably false","Strongly disagree","Strongly disagree",20.3,14.8,"Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Strongly agree","","","Not sure","","","","","","","","","",4,47,0,"Independent",0,0,1.56503676943297 +455,50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably true","Definitely false","Somewhat disagree","Somewhat agree",38.6,14.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f708-63af-81ba-02ed-69d438d06be5","47","1","14","1","1","2","2","2","53022","617","50","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",38.6,14.5,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,47,0,"Republican",0,0,1.2134406814044 +456,33.9,81.6,"True","Agree","Definitely false","Probably true","Probably true","Not sure","Strongly disagree","Strongly agree",37.7,14.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Disagree","Disagree","Disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe0f511-7cfa-56e1-58ca-c991035003cd","70","1","13","1","1","1","3","4","80236","751","6","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",33.9,18.4,"False","Disagree","Definitely false","Probably true","Probably true","Not sure","Strongly disagree","Strongly agree",37.7,14.7,"Disagree","Agree","Agree","Agree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",1,70,0,"Independent",0,1,1.34733039815278 +457,50.1,51.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Not sure","Slightly disagree","Somewhat agree",34.8,30.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f6de-e202-c277-51a5-c4cc974d8f3a","21","2","14","15","1","2","3","3","75224","623","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,48.8,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Not sure","Slightly disagree","Somewhat disagree",34.8,30.2,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,21,0,"Independent",0,0,0.839738182129671 +458,99.9,50,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",85.1,90.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f827-e8f1-575e-bbd5-4c94a8d6781e","35","1","12","1","1","4","1","2","53405","617","50","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",0.0999999999999943,50,"True","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",14.9,9.8,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",4,35,0,"Democrat",0,0,0.62639918553709 +459,82.8,99.9,"True","Neither agree nor disagree","Definitely true","Probably false","Definitely true","Probably false","Somewhat disagree","Strongly disagree",85.4,91.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f790-922d-0699-250c-896240f7df3d","22","2","6","1","1","6","2","1","04345","500","20","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",82.8,99.9,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Probably true","Somewhat agree","Strongly disagree",14.6,8.3,"Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,22,0,"Republican",1,1,1.16040534134317 +460,73.3,99.9,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably true","Not sure","Strongly agree","Strongly agree",60.7,68.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f6e6-7f23-6f8f-1132-7eeaec4041fd","50","1","8","15","1","6","3","1","10467","501","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false",26.7,99.9,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Not sure","Strongly agree","Strongly disagree",39.3,31.6,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true",6,50,0,"Independent",0,0,0.601759769516126 +461,50.4,73.2,"Not sure","Agree","Definitely true","Probably true","Definitely false","Probably true","Strongly agree","Strongly agree",20.4,73.8,"","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f53a-4a50-33a6-3bee-266f9a2c0463","38","2","9","1","1","2","1","3","29527","570","41","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",50.4,26.8,"Not sure","Agree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",20.4,73.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,38,0,"Democrat",1,0,0.459634341107367 +462,50,47.1,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",95,92,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f73b-73f9-e37f-6622-5889fb8e1afe","67","2","4","1","1","2","1","3","33543","539","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",50,52.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",5,8,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",2,67,0,"Democrat",0,0,0.515136934744757 +463,66.5,85.5,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Probably true","Strongly agree","Strongly agree",24.8,15.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f7b4-64eb-8f59-902a-fc2c4565987a","66","1","4","1","1","5","1","3","21045","512","21","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",66.5,14.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",24.8,15.8,"Agree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",5,66,0,"Democrat",0,2,0.643505067882763 +464,50.6,61.7,"Not sure","Disagree","Probably false","Probably false","Probably false","Probably true","Slightly agree","Somewhat disagree",29.5,30.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","","","Not vote in the presidential election","5fe0f6fb-543d-9c8f-3ee1-14891ac4a570","24","2","1","1","1","2","1","2","54235","658","50","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","Not sure","","","",50.6,38.3,"Not sure","Agree","Probably false","Probably true","Probably false","Probably true","Slightly disagree","Somewhat disagree",29.5,30.2,"Neither agree nor disagree","Neither agree nor disagree","Disagree","","","","","","","","","","","Not sure","","","",2,24,0,"Democrat",0,0,1.20026149111351 +465,50,50.1,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Somewhat agree",85.1,91.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f68f-a6d3-eca1-9a5b-b45923f34b6a","67","2","2","1","1","2","1","2","64037","616","26","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","","","","Not sure","",50,50.1,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Somewhat disagree",14.9,8.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","","","","","","","","","","","Not sure","",2,67,0,"Democrat",1,0,0.561994574124504 +466,50,50,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",76,88.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe0f782-e12e-da0e-a54a-fedfb979561b","39","2","4","1","1","6","3","3","75240","623","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24,11.7,"Agree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,39,0,"Other",1,0,0.258535159824144 +467,49.9,49.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Probably false","Strongly disagree","Slightly disagree",57.4,55.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Not vote in the presidential election","5fe0f714-edd9-8aa1-b82b-3b5068d56522","55","2","2","1","1","2","3","1","19021","504","39","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","","Not sure","Yes, true","Not sure","Yes, true",49.9,50.1,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Probably false","Probably false","Strongly agree","Slightly disagree",42.6,44.7,"Neither agree nor disagree","","","","","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","","Not sure","Yes, true","Not sure","No, false",2,55,0,"Independent",0,0,1.59121992153205 +468,50,99.9,"False","Agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Slightly disagree",80,90.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0f828-b2dd-9ceb-0b79-8bf8d4dfd2ca","24","1","13","1","1","6","3","3","41011","515","18","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","Yes, true","No, false","Yes, true",50,99.9,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",20,9.59999999999999,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",6,24,0,"Independent",0,1,0.538702378978846 +469,31.7,25.8,"True","Disagree","Probably true","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",42.5,21,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Neither agree nor disagree","","","Vote for the Republican Donald Trump","5fe0f702-fbfd-8d95-f56e-2b99bbdac878","41","1","24","15","1","6","4","1","11436","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","Yes, true","","","","","",68.3,25.8,"False","Disagree","Probably false","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",57.5,79,"Agree","Disagree","Neither agree nor disagree","","","","","","","","","Yes, true","","","","","",6,41,1,"Republican",0,0,0.687811133432514 +470,19.2,9.3,"False","Neither agree nor disagree","Probably false","Probably true","Probably true","Definitely true","Slightly agree","Slightly disagree",85,95.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f729-4569-58eb-e22a-d6dd4abde1e2","20","2","3","1","1","5","2","1","12197","526","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true",80.8,90.7,"True","Neither agree nor disagree","Probably true","Probably false","Probably false","Definitely true","Slightly disagree","Slightly disagree",15,4.40000000000001,"Disagree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true",5,20,0,"Independent",0,0,0.676814415645079 +471,55.1,75,"Not sure","Agree","Probably false","Probably false","Probably true","Definitely true","Somewhat agree","Strongly agree",9.6,3.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f80b-264a-81b2-ee60-7681ddf11c1b","35","2","11","1","1","2","2","2","54449","705","50","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","No, false","Not sure",44.9,75,"Not sure","Agree","Probably false","Probably false","Probably true","Definitely false","Somewhat agree","Strongly disagree",9.6,3.7,"Disagree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure",2,35,0,"Republican",0,0,1.27928919042512 +472,76.3,87.9,"True","Neither agree nor disagree","Probably false","Probably false","Definitely true","Probably true","Strongly agree","Strongly disagree",76.8,65,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe0f6b9-671c-3772-af60-dbc2a76a3ea1","28","1","9","2","1","2","1","4","94544","807","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false",76.3,87.9,"False","Neither agree nor disagree","Probably true","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",23.2,35,"Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false",2,28,0,"Democrat",0,0,1.07681396921327 +473,53.5,88.3,"True","Disagree","Definitely false","Definitely false","Probably true","Probably true","Strongly agree","Strongly agree",27.1,21.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f6c1-f66a-a8fc-d420-fd7d553d4fa8","34","1","1","1","1","2","1","1","04614","537","20","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","","No, false","","","","",46.5,11.7,"False","Disagree","Definitely false","Definitely false","Probably true","Probably true","Strongly disagree","Strongly disagree",27.1,21.3,"Agree","Disagree","Strongly disagree","Disagree","Disagree","","","","","","","","No, false","","","","",2,34,0,"Democrat",1,1,0.617714819145265 +474,9,50.1,"True","Neither agree nor disagree","Probably false","Definitely false","Probably false","Definitely true","Somewhat disagree","Somewhat agree",15.5,3.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f583-7e2c-82cc-593e-b2fcb3000012","42","2","14","1","1","6","1","1","11435","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","","","","","","","","","","","",9,49.9,"False","Neither agree nor disagree","Probably true","Definitely false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",15.5,3.9,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Not sure","","","","","","","","","","","",6,42,0,"Democrat",0,1,0.484792339820778 +475,72.2,98.5,"Not sure","Strongly agree","Probably false","Probably true","Definitely true","Not sure","Strongly disagree","Strongly disagree",25,15.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f705-3bb9-e55a-4b22-1a249d957b71","27","2","5","1","1","4","1","4","98632","820","48","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","No, false",72.2,1.5,"Not sure","Strongly agree","Probably false","Probably true","Definitely false","Not sure","Strongly agree","Strongly disagree",25,15.1,"Disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true",4,27,0,"Democrat",0,0,0.659676306910243 +476,14.3,70,"True","Agree","Definitely false","Definitely true","Definitely false","Probably true","Strongly disagree","Strongly disagree",67,68.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f7e0-efd0-73d5-504d-f40e735f0968","30","1","6","15","2","6","1","3","33012","528","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure",14.3,70,"False","Disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",33,31.4,"Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",6,30,0,"Democrat",1,0,0.829224014640894 +477,73.5,99.6,"True","Strongly disagree","Definitely true","Probably false","Probably true","Definitely false","Strongly agree","Strongly disagree",72,84.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f81e-0f8c-2f0b-ed3e-bb8366424525","51","1","16","1","1","2","1","2","64080","616","26","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",26.5,0.400000000000006,"False","Strongly disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",28,15.9,"Agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",2,51,0,"Democrat",0,0,0.815477235177677 +478,50.4,49.7,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly disagree","Slightly disagree",24.6,25.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe0f7d6-7f03-af77-7f18-3b55f5de5c5e","33","2","1","15","1","6","2","2","44310","510","36","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.6,50.3,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly disagree","Slightly agree",24.6,25.2,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Agree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,33,0,"Republican",0,0,0.58091027987906 +479,50,70.4,"Not sure","Agree","Definitely false","Probably true","Definitely false","Definitely true","Slightly disagree","Strongly agree",65.6,82.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe0f68f-baaf-777a-9604-5e791eeaebe7","33","2","9","4","1","7","2","3","73538","627","37","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Not sure",50,29.6,"Not sure","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",34.4,17.7,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Not sure",7,33,0,"Independent",0,1,0.532475498370776 +480,66.3,99.9,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly agree",81,90.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe0f7de-ee5b-43a0-9f17-8caa4fe90655","49","1","9","1","1","6","1","2","49103","588","23","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false",33.7,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19,9.7,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","Not sure","No, false","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true",6,49,0,"Independent",0,0,2.08045664447425 +481,74.6,38.2,"Not sure","Agree","Probably true","Definitely true","Probably true","Probably true","Slightly disagree","Strongly disagree",24,41.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f8fd-ba0a-48cb-c409-ddb0240864ff","19","1","1","2","1","2","1","3","40272","529","18","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Not sure","Yes, true",74.6,38.2,"Not sure","Agree","Probably true","Definitely false","Probably false","Probably true","Slightly disagree","Strongly agree",24,41.2,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true",2,19,0,"Democrat",0,0,0.703929889495349 +482,53.6,55.3,"True","Neither agree nor disagree","Definitely true","Probably true","Probably true","Not sure","Strongly agree","Somewhat disagree",44,43.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f637-106f-f4dc-b911-820bfd745ccc","40","2","3","1","1","2","3","2","62837","649","14","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","Not sure","","","","","","","","","",46.4,55.3,"False","Neither agree nor disagree","Definitely false","Probably true","Probably true","Not sure","Strongly agree","Somewhat disagree",44,43.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","","Not sure","","","","","","","","","",2,40,0,"Other",0,1,1.27928919042512 +483,57.3,92.2,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Strongly disagree",69.3,86.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f808-baf9-ecaf-4320-7aa9e9eefd1f","29","2","14","2","1","6","3","4","80012","751","6","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",42.7,92.2,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",30.7,13.4,"Neither agree nor disagree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",6,29,0,"Independent",1,0,0.862008203316775 +484,36.5,63,"False","Agree","Definitely true","Probably false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",73,91.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f76d-bd3e-eed3-db99-a779678d4bbf","30","1","19","2","2","6","2","1","10002","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",36.5,37,"True","Agree","Definitely false","Probably true","Probably false","Definitely false","Somewhat agree","Somewhat disagree",27,8.2,"Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Not sure","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","No, false",6,30,0,"Republican",0,0,2.22804989011035 +485,77,67.3,"True","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Probably true","Slightly disagree","Somewhat agree",69.4,74.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Disagree","Vote for the Republican Donald Trump","5fe0f648-b700-6bbe-7d7f-ddf423ddb34c","24","2","19","4","1","6","2","3","76063","623","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",77,67.3,"False","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Probably true","Slightly agree","Somewhat agree",69.4,74.7,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Disagree","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",6,24,0,"Other",0,0,0.48978308422391 +486,49.9,49.9,"Not sure","Strongly disagree","Definitely false","Probably false","Definitely true","Not sure","Slightly disagree","Slightly disagree",11.1,8.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f85b-938c-cdec-03d4-56eb114fee5c","35","1","2","1","1","2","2","3","78644","635","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,50.1,"Not sure","Strongly agree","Definitely false","Probably true","Definitely true","Not sure","Slightly agree","Slightly disagree",11.1,8.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,35,0,"Republican",0,0,1.4648345646551 +487,50.2,99.9,"True","Disagree","Definitely true","Not sure","Definitely false","Not sure","Strongly agree","Strongly agree",14.8,19.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f78c-54b1-4f80-7b7c-0557bdbe9c77","37","2","7","1","1","2","1","3","30268","524","11","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",50.2,99.9,"False","Agree","Definitely false","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",14.8,19.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Not sure","No, false","Not sure","No, false",2,37,0,"Democrat",0,0,0.459634341107367 +488,50,99.9,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely true","Not sure","Strongly disagree","Strongly disagree",100,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f895-01ee-5861-6b4b-1fd0051a73bc","41","2","22","15","2","6","3","4","90274","803","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,0.0999999999999943,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Definitely true","Not sure","Strongly agree","Strongly disagree",0,0,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,41,1,"Other",0,0,2.33615608234304 +489,50.4,82,"True","Agree","Definitely true","Definitely false","Definitely false","Definitely true","Slightly disagree","Strongly agree",61,53.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f7ac-59f4-bcc8-74d4-5d38051200e6","56","2","3","1","1","6","3","4","94536","807","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","Not sure",49.6,18,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",39,46.8,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","Not sure",6,56,0,"Democrat",0,0,0.832061691423535 +490,75.3,86.4,"True","Disagree","Probably true","Not sure","Definitely false","Probably true","Somewhat agree","Somewhat agree",80.4,84.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f869-c970-b272-4a32-1e7aa5c2b86c","23","2","2","10","1","4","4","2","54901","658","50","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure",24.7,13.6,"True","Agree","Probably false","Not sure","Definitely false","Probably false","Somewhat agree","Somewhat disagree",19.6,15.5,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure",4,23,0,"Republican",0,1,0.534334498783684 +491,25.9,50.9,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",67.1,63,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f887-3b6a-0845-9fa5-7903de0b68da","27","2","1","1","1","2","1","2","53809","669","50","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","No, false","No, false",74.1,49.1,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably true","Strongly disagree","Strongly disagree",32.9,37,"Agree","Disagree","Strongly disagree","Neither agree nor disagree","Disagree","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","Yes, true","No, false",2,27,0,"Democrat",0,0,0.511475565940556 +492,76.4,92.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",94.8,76.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f84b-f611-9fff-a056-f203d4a1e99d","37","2","3","15","1","7","1","3","23605","544","47","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false",76.4,7.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",5.2,23.5,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false","Not sure","Not sure","No, false","No, false","Yes, true",7,37,0,"Democrat",1,1,0.350824512476196 +493,50,50,"False","Strongly disagree","Definitely true","Probably true","Definitely true","Probably false","Strongly agree","Strongly disagree",63.8,78,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f856-52a2-2f0e-bed5-9d4cf4887b8b","25","2","9","1","1","4","3","3","39507","746","25","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"False","Strongly agree","Definitely false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",36.2,22,"Disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,25,0,"Independent",0,1,1.19608566751863 +494,56.7,70.9,"True","Disagree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",75.6,26.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f585-29c2-a2b3-d317-87044ef2ef74","27","2","8","1","1","6","2","3","70053","622","19","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","","Yes, true","Yes, true","","Yes, true","Not sure","","Not sure","No, false","Not sure","No, false",43.3,70.9,"False","Agree","Probably false","Probably true","Probably true","Probably false","Somewhat disagree","Somewhat disagree",24.4,73.3,"Strongly agree","Agree","Agree","Disagree","Neither agree nor disagree","","","Yes, true","Yes, true","","Yes, true","Not sure","","Not sure","Yes, true","Not sure","Yes, true",6,27,0,"Independent",0,0,0.697625211881609 +495,50,86.4,"Not sure","Agree","Probably true","Probably false","Probably true","Probably true","Strongly disagree","Strongly agree",80,83.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Disagree","Not vote in the presidential election","5fe0f883-9735-4214-125f-8e0c04d8c274","44","2","1","1","1","6","3","2","50441","679","16","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",50,86.4,"Not sure","Agree","Probably false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",20,16.6,"Disagree","Agree","Disagree","Disagree","Agree","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",6,44,0,"Independent",0,0,1.27928919042512 +496,50.7,49.9,"Not sure","Agree","Definitely false","Probably true","Probably true","Probably true","Slightly disagree","Strongly agree",60.5,60.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f862-5377-0bcd-b6b2-739ae70d83a1","59","2","1","1","1","5","3","3","71439","612","19","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","No, false",49.3,50.1,"Not sure","Agree","Definitely false","Probably true","Probably false","Probably false","Slightly disagree","Strongly disagree",39.5,39.8,"Neither agree nor disagree","Agree","Agree","Agree","Neither agree nor disagree","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",5,59,0,"Independent",0,0,1.50864454760297 +497,62.1,90.3,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Probably true","Probably false","Somewhat disagree","Slightly disagree",24.9,30.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f83d-bd67-119c-8468-93f4181bb365","19","2","3","16","1","2","1","3","41240","564","18","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",37.9,9.7,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Probably false","Probably false","Somewhat agree","Slightly disagree",24.9,30.2,"Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,19,0,"Democrat",1,0,0.329152435286286 +498,70.7,99.9,"Not sure","Disagree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Strongly disagree",89.1,45.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","Vote for the Democrat Joe Biden","5fe0f58a-f767-01e9-afbc-645a23d943e9","32","2","5","1","1","4","1","2","47710","649","15","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","Yes, true","","","","","",70.7,99.9,"Not sure","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.9,54.5,"Disagree","","","","","","","","","","","Yes, true","","","","","",4,32,0,"Democrat",0,1,0.511475565940556 +499,60.2,48.9,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Definitely true","Definitely false","Slightly agree","Strongly agree",46.3,27.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f7e1-3e9f-04f4-ec45-e2d36f587820","18","2","24","15","4","6","4","3","20007","511","9","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",60.2,48.9,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",46.3,27.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,18,0,"Other",0,0,0.610585858876394 +500,60.4,90.1,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",25.5,49.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f78e-4697-7012-0e07-71fd44537d1e","38","2","3","2","1","6","1","1","01104","543","22","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",60.4,90.1,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",25.5,49.4,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",6,38,0,"Democrat",1,0,0.633484891685678 +501,27.8,66.5,"Not sure","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",60.3,85.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f73e-925e-f667-727b-39ed547b9177","74","1","15","1","1","2","2","2","60008","602","14","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true",72.2,66.5,"Not sure","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",39.7,14.5,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",2,74,1,"Republican",0,0,1.04464351786682 +502,52,39,"False","Disagree","Probably true","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",7.1,22.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f376-daa3-7087-d95f-fca071f7fddc","65","2","1","1","1","2","1","2","53188","617","50","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",48,61,"False","Agree","Probably false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly disagree",7.1,22.4,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,65,0,"Independent",0,0,1.43376822240912 +503,49.8,49.8,"Not sure","Disagree","Probably true","Probably true","Definitely false","Definitely false","Strongly agree","Slightly disagree",25.4,30.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Agree","Agree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f7c7-56bd-a64e-46ff-920e06eba62a","54","1","3","15","2","4","2","1","07712","501","31","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",49.8,49.8,"Not sure","Disagree","Probably false","Probably true","Definitely false","Definitely true","Strongly agree","Slightly agree",25.4,30.1,"Agree","Agree","Disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",4,54,0,"Independent",0,0,1.11627916526788 +504,4.5,97.5,"False","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",53.7,36.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f86f-3098-4acd-39dc-9b958e301b0a","64","2","1","1","1","2","1","1","14437","514","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",95.5,2.5,"False","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",46.3,63.5,"Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",2,64,0,"Democrat",0,0,0.623710965386887 +505,62.8,90.5,"True","Agree","Probably false","Definitely false","Definitely true","Definitely false","Somewhat disagree","Somewhat disagree",79.4,92.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe0f4cd-7b02-fab7-396b-73277b052569","25","2","14","2","1","6","1","3","76549","625","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","","","","","","","","","","","",62.8,9.5,"False","Agree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",20.6,7.09999999999999,"Agree","Disagree","Strongly disagree","Agree","Agree","Yes, true","","","","","","","","","","","",6,25,0,"Democrat",0,3,0.612626771072269 +506,54,64.8,"False","Agree","Definitely true","Probably false","Definitely false","Definitely true","Strongly agree","Strongly agree",87.8,98.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0f8f4-eae1-e93a-7c04-48607dcb29a4","31","1","24","1","1","6","1","1","12302","532","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",46,35.2,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",12.2,1.7,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",6,31,0,"Democrat",0,2,0.617714819145265 +507,50.4,72.6,"Not sure","Agree","Probably false","Definitely false","Probably false","Probably false","Somewhat agree","Somewhat disagree",71.5,45.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Disagree","Neither agree nor disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f6ba-b340-b22f-e48d-a83f935747a3","43","2","8","2","1","4","1","2","60617","602","14","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","Yes, true","","","","","",49.6,72.6,"Not sure","Agree","Probably false","Definitely true","Probably false","Probably true","Somewhat agree","Somewhat disagree",28.5,54.1,"Agree","Disagree","Disagree","Neither agree nor disagree","Strongly agree","","","","","","","Yes, true","","","","","",4,43,0,"Democrat",0,0,0.655243037585841 +508,75.4,31.4,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely false","Slightly disagree","Somewhat disagree",81.1,23.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f894-135d-305a-ac84-31050ef9145a","29","2","4","1","1","6","1","4","81052","751","6","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",24.6,31.4,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat agree",81.1,23.5,"Strongly agree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true",6,29,0,"Democrat",1,1,0.659676306910243 +509,49.8,71.3,"Not sure","Agree","Definitely false","Probably false","Definitely true","Probably true","Strongly agree","Somewhat agree",37.8,67.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Agree","Agree","Agree","Agree","Disagree","Not vote in the presidential election","5fe0f8cb-c7d4-28e9-c8e8-e0ffb83a9cc6","57","2","2","15","2","4","1","1","10454","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",49.8,28.7,"Not sure","Agree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Somewhat disagree",62.2,32.4,"Disagree","Agree","Agree","Disagree","Agree","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",4,57,0,"Democrat",0,0,2.25298000727676 +510,50,99.9,"True","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably true","Strongly disagree","Strongly disagree",50,25.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f8b8-d8cd-02f1-dd22-b931a28e76c6","36","2","8","1","1","4","1","4","95118","807","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true",50,99.9,"False","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Strongly agree","Strongly disagree",50,25.6,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true",4,36,0,"Democrat",0,0,0.646737281603242 +511,66.1,56.7,"False","Disagree","Probably true","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",58.8,89.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe0f81b-c075-c6ff-a8c8-c60b9ff9b234","24","2","1","1","1","6","2","2","60193","722","28","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",66.1,43.3,"False","Agree","Probably false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",41.2,10.6,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false",6,24,0,"Republican",0,1,0.700060789783147 +512,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Somewhat agree","Strongly agree",16,13,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f8ea-3253-a46a-e0db-f462978f7bab","69","2","2","1","1","5","2","3","76522","625","44","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Somewhat agree","Strongly disagree",16,13,"Neither agree nor disagree","Neither agree nor disagree","","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,69,0,"Republican",0,0,0.766530426783843 +513,36.5,78.2,"True","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Slightly disagree",25.6,53.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f889-1efc-1bf6-68a3-295bb86059f3","35","2","7","1","1","2","2","3","34715","534","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",36.5,78.2,"False","Disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly agree","Slightly disagree",25.6,53.2,"Agree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false",2,35,0,"Republican",0,0,1.17262539987032 +514,50,80,"False","Agree","Definitely false","Definitely false","Probably true","Probably false","Strongly agree","Strongly agree",85.1,80,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f871-cfd7-bf03-d45b-f4d4d350e57b","62","2","5","1","1","4","1","1","15101","508","39","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true",50,80,"False","Agree","Definitely false","Definitely false","Probably false","Probably false","Strongly agree","Strongly disagree",14.9,20,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",4,62,0,"Democrat",0,1,0.623710965386887 +515,46.5,50,"False","Neither agree nor disagree","Not sure","Not sure","Probably true","Probably true","Slightly disagree","Strongly agree",22,26,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe0f8ef-481d-6468-5aaa-251fe9ee35cd","35","2","1","1","1","2","1","3","31093","503","11","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",46.5,50,"False","Neither agree nor disagree","Not sure","Not sure","Probably false","Probably false","Slightly agree","Strongly disagree",22,26,"Disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,35,0,"Independent",0,2,1.17262539987032 +516,31,54.1,"True","Agree","Definitely false","Probably false","Probably true","Probably false","Strongly disagree","Strongly disagree",45.4,54.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Agree","Agree","Disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0f7da-d9dc-7aa9-7b5a-e90e8e5fb1d2","49","2","3","1","1","3","2","2","44622","510","36","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false",69,54.1,"True","Agree","Definitely false","Probably true","Probably true","Probably true","Strongly agree","Strongly disagree",45.4,54.7,"Agree","Disagree","Agree","Agree","Agree","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false",3,49,0,"Republican",0,0,0.971380249062987 +517,77.1,36.5,"False","Neither agree nor disagree","Definitely true","Probably true","Definitely false","Probably true","Strongly disagree","Strongly disagree",30,45.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe0f7bd-7db0-8983-8297-fadd54d0c77f","34","2","4","1","1","6","1","2","46901","527","15","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","No, false",22.9,63.5,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",30,45.9,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",6,34,0,"Other",0,0,0.511475565940556 +518,54.6,61.9,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably false","Slightly disagree","Somewhat agree",100,93.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f666-d798-6c0e-1c1e-b543f15bb98d","33","2","11","4","1","2","1","3","27260","518","34","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","Not sure","","",54.6,61.9,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably true","Slightly agree","Somewhat disagree",100,93.7,"Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","","","","","","","","","","Not sure","","",2,33,0,"Democrat",0,0,0.357843324247791 +519,50,83.4,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Probably true","Strongly agree","Strongly disagree",13.5,15.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f742-783b-4823-ac56-4d09ed619eb8","20","2","1","2","1","4","1","2","64131","616","26","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,16.6,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Probably true","Strongly agree","Strongly disagree",13.5,15.4,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Agree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,20,0,"Democrat",1,0,0.614765598912923 +520,49.1,63.7,"False","Disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly agree","Somewhat disagree",36.9,46,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Disagree","Not vote in the presidential election","5fe0f845-f270-864b-e6bc-eeb92a40f79e","38","2","5","1","1","6","3","3","37086","659","43","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",49.1,63.7,"False","Agree","Definitely false","Definitely true","Probably false","Definitely false","Strongly agree","Somewhat disagree",63.1,54,"Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",6,38,0,"Independent",0,0,1.17262539987032 +521,50,36.7,"Not sure","Agree","Probably false","Definitely true","Definitely true","Definitely false","Slightly agree","Slightly disagree",70.9,50.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f7e0-03e5-a89b-f07a-8ca62cdabdda","22","2","1","1","1","2","2","3","37771","557","43","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Not sure",50,36.7,"Not sure","Agree","Probably true","Definitely true","Definitely true","Definitely true","Slightly agree","Slightly disagree",70.9,50.8,"Neither agree nor disagree","Agree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Not sure","Not sure","No, false","Not sure",2,22,1,"Republican",0,0,0.641691550039753 +522,50,99.9,"False","Neither agree nor disagree","Not sure","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",74.5,73.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f8e8-04e5-95cd-490f-a6fe121fdf04","82","2","4","1","1","4","3","1","19056","504","39","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Not sure","No, false","No, false","Yes, true",50,99.9,"False","Neither agree nor disagree","Not sure","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.5,26.8,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","No, false","Yes, true","No, false",4,82,0,"Independent",0,0,0.543332857421717 +523,64,82.4,"True","Agree","Probably true","Probably true","Definitely true","Probably false","Slightly agree","Strongly disagree",5,25.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f7d5-fef4-e8bd-d3b0-c0fc28772bf8","18","2","1","1","1","1","3","2","49201","551","23","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","","Yes, true","Not sure","No, false","Not sure","Yes, true",64,82.4,"False","Disagree","Probably false","Probably false","Definitely false","Probably true","Slightly disagree","Strongly disagree",5,25.2,"Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","","Yes, true","Not sure","Yes, true","Not sure","Yes, true",1,18,0,"Independent",0,0,0.47046686834987 +524,57.2,49.8,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Not sure","Somewhat disagree","Strongly disagree",86.3,99.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f3f7-f562-b258-d00c-28d409659af0","39","2","2","2","1","2","1","3","77060","618","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",42.8,49.8,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Not sure","Somewhat agree","Strongly disagree",13.7,0.799999999999997,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,39,0,"Democrat",0,0,1.53228591586109 +525,99.9,99.9,"True","Agree","Definitely true","Probably false","Definitely true","Probably false","Strongly disagree","Strongly agree",25,20.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f36f-8b08-65f2-8867-c763b6c4f00f","45","2","6","15","2","6","1","4","85716","789","3","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false",99.9,0.0999999999999943,"True","Disagree","Definitely false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",25,20.6,"Strongly agree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",6,45,0,"Democrat",0,0,1.19210822599934 +526,50,93.3,"False","Neither agree nor disagree","Probably false","Probably false","Definitely true","Probably true","Strongly disagree","Strongly agree",38.3,57.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f546-3351-a23f-ceb3-3c8008a98c20","38","2","14","1","1","6","1","2","52402","637","16","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure",50,6.7,"False","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",38.3,57.8,"Neither agree nor disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",6,38,0,"Democrat",1,0,0.501443380121097 +527,50,99.9,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",59.5,11.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe0f5f8-523d-aedd-47be-00789732286c","24","2","9","15","2","6","1","3","75243","623","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false",50,99.9,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",40.5,88.5,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true",6,24,0,"Independent",0,0,0.610585858876394 +528,33.2,78.1,"True","Disagree","Definitely true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",65.4,64.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f961-c7c0-f7ed-230d-a0d7c3a50e0d","65","1","7","1","1","7","2","4","89115","839","29","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",66.8,21.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",34.6,35.9,"Disagree","Disagree","Disagree","Strongly disagree","Strongly agree","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",7,65,0,"Republican",0,0,1.34733039815278 +529,48.5,72.9,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",54.3,51.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Disagree","Neither agree nor disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe0f658-373a-49d7-fdc4-635d23106064","34","2","10","1","1","6","1","1","12831","532","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure",51.5,72.9,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",54.3,51.7,"Disagree","Agree","Neither agree nor disagree","Disagree","Agree","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure",6,34,0,"Democrat",1,1,0.494491394648778 +530,48.3,59.4,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely true","Slightly agree","Strongly agree",70.1,70.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f59d-ce64-00ad-0976-551fe69d3ec7","39","2","5","1","1","2","1","3","27217","518","34","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false",48.3,40.6,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",29.9,29.5,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true",2,39,0,"Democrat",0,0,0.459634341107367 +531,49.8,88.2,"True","Agree","Probably false","Probably true","Definitely true","Definitely true","Somewhat agree","Slightly disagree",31.8,26.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Agree","Agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f88e-a9f5-1cbf-ff27-96a4235f1a13","24","2","3","1","1","6","3","3","27707","560","34","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",50.2,88.2,"True","Disagree","Probably false","Probably true","Definitely false","Definitely true","Somewhat disagree","Slightly agree",31.8,26.5,"Strongly agree","Agree","Agree","Agree","Neither agree nor disagree","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",6,24,0,"Independent",0,0,1.10018682366745 +532,82.5,31.2,"True","Agree","Definitely false","Not sure","Probably true","Definitely false","Strongly agree","Somewhat disagree",7.9,10.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f757-c6a3-aefc-7e94-cfc5a5b632ea","58","1","2","1","1","6","2","1","13045","555","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true",17.5,68.8,"False","Disagree","Definitely false","Not sure","Probably false","Definitely false","Strongly agree","Somewhat disagree",7.9,10.6,"Disagree","Agree","Agree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false",6,58,0,"Independent",0,0,1.15936282486158 +533,50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Not sure","Not sure","Strongly agree","Strongly agree",75.9,41,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Not vote in the presidential election","5fe0f53d-4d37-de3e-3d11-95fd566bfc27","50","2","4","2","1","6","1","3","28540","545","34","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",24.1,59,"Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,50,0,"Independent",0,0,1.99480508758438 +534,64.8,82.1,"Not sure","Disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly disagree","Somewhat agree",69.7,53.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Disagree","Agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f879-2c5f-ad85-07a4-bc1dd824d484","34","2","9","4","1","6","2","3","77037","618","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",35.2,17.9,"Not sure","Agree","Definitely true","Definitely true","Probably true","Definitely true","Strongly agree","Somewhat disagree",30.3,46.9,"Disagree","Agree","Strongly agree","Strongly agree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",6,34,0,"Republican",0,0,0.532475498370776 +535,90.8,49.8,"True","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely true","Somewhat disagree","Strongly agree",50.6,59.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe0f36b-b1e1-3b25-ae8d-181da2b37f38","44","2","1","1","1","6","2","3","31093","503","11","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","Yes, true","","","Yes, true","","","","","",90.8,49.8,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",49.4,40.7,"Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","","","","Yes, true","","","No, false","","","","","",6,44,1,"Republican",0,0,0.683941849031096 +536,50,85,"True","Disagree","Probably false","Probably true","Probably true","Probably true","Somewhat disagree","Slightly disagree",38.1,2.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Not vote in the presidential election","5fe0f649-7d9d-79a9-ae45-e493051343a6","40","1","3","1","1","2","3","2","48060","505","23","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true",50,85,"False","Agree","Probably false","Probably true","Probably false","Probably true","Somewhat agree","Slightly disagree",38.1,2.2,"Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","No, false",2,40,0,"Independent",0,1,1.59807814544321 +537,70.3,88.9,"False","Strongly disagree","Definitely true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",95,95,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe0f816-825e-b8dd-295c-02b166000d6d","38","1","4","1","1","6","1","3","28787","567","34","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",70.3,88.9,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",5,5,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,38,0,"Democrat",0,3,0.574171657914799 +538,50,99.9,"False","Agree","Not sure","Definitely true","Definitely false","Not sure","Strongly agree","Somewhat agree",84.1,91.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f8b5-8f08-0b8e-2089-83f58d6f9786","58","2","2","1","1","2","2","3","42634","557","18","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,0.0999999999999943,"True","Agree","Not sure","Definitely false","Definitely false","Not sure","Strongly agree","Somewhat disagree",15.9,8.8,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,58,0,"Republican",0,0,1.50864454760297 +539,27.2,43.3,"True","Disagree","Definitely false","Probably true","Definitely true","Probably false","Slightly agree","Strongly disagree",46.8,52.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","","","","Not vote in the presidential election","5fe0e9e5-bdc3-8c9c-56d3-bcdcd66a7823","35","2","9","1","1","2","2","3","35077","630","1","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","No, false","",72.8,43.3,"True","Agree","Definitely false","Probably true","Definitely false","Probably true","Slightly agree","Strongly agree",46.8,52.7,"Neither agree nor disagree","","","","","","","","","","","","","","","No, false","",2,35,0,"Independent",0,0,1.17262539987032 +540,50,50,"False","Neither agree nor disagree","Not sure","Not sure","Definitely false","Probably false","Slightly disagree","Slightly agree",60.5,73.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f572-058d-bd5d-22df-f5d29280e125","26","2","-3105","16","2","2","4","4","90650","803","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"True","Neither agree nor disagree","Not sure","Not sure","Definitely false","Probably false","Slightly agree","Slightly disagree",39.5,26.7,"Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,26,0,"Independent",0,0,1.38983974090388 +541,23,26.7,"False","Disagree","Probably true","Probably true","Probably true","Probably false","Slightly disagree","Slightly agree",77.3,89.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Neither agree nor disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0faa4-cf0a-bccc-61f8-26a92c5499a9","75","1","16","1","1","6","3","3","29501","570","41","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","No, false",23,26.7,"False","Agree","Probably false","Probably true","Probably false","Probably false","Slightly disagree","Slightly disagree",22.7,10.9,"Disagree","Disagree","Neither agree nor disagree","Disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,75,0,"Republican",0,0,0.957543870478141 +542,99.9,99.9,"True","Strongly agree","Probably false","Definitely true","Definitely true","Probably true","Strongly agree","Somewhat agree",23.9,23.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe0f634-bc5a-7c1c-a985-b852d7650791","28","2","10","1","1","4","1","2","64083","616","26","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true",99.9,99.9,"True","Strongly agree","Probably false","Definitely true","Definitely false","Probably true","Strongly agree","Somewhat agree",23.9,23.5,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Disagree","Disagree","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true",4,28,0,"Independent",0,0,0.511475565940556 +543,81.4,73.2,"True","Disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly agree",83.5,71.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f6b6-0b17-429f-ce5d-a30aa1dc6d45","74","2","8","1","1","7","3","4","85120","753","3","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",81.4,26.8,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",16.5,28.2,"Agree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true",7,74,0,"Independent",0,0,0.724833266434345 +544,49.7,49.1,"False","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",24.4,35.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0fb89-b068-cab2-436a-bb2fc353cb89","75","1","19","1","1","6","1","2","44070","510","36","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",49.7,50.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.4,35.1,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",6,75,0,"Democrat",0,0,0.702039267968476 +545,50.1,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably true","Probably true","Somewhat disagree","Strongly agree",95.2,94,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","","","","","Vote for the Democrat Joe Biden","5fe0e8cf-6961-067a-128a-702b17f1b639","35","2","13","2","1","2","1","3","31021","503","11","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",50.1,50,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably false","Somewhat agree","Strongly disagree",4.8,6,"Neither agree nor disagree","","","","","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,35,1,"Democrat",0,0,0.600610584934286 +546,60,40,"False","Disagree","Definitely true","Definitely true","Definitely true","Definitely false","Somewhat agree","Strongly agree",15,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0faf5-ab1b-3709-3afb-a023a261071c","63","1","11","1","1","4","2","2","43342","535","36","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true","No, false",40,60,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",15,15,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","No, false","No, false","No, false","No, false",4,63,1,"Republican",0,3,1.19918316758111 +547,50.9,49.2,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",21.9,10.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f7b7-d386-d91e-8f3d-74312f3d9c7e","43","1","8","1","1","2","3","2","55060","613","24","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.1,49.2,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",21.9,10.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,43,0,"Independent",0,0,0.932090096130861 +548,24.4,64.2,"Not sure","Agree","Definitely true","Probably false","Definitely true","Not sure","Somewhat agree","Strongly agree",15.5,34.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe0f67c-acbe-2d77-ffde-490ae2858f18","21","2","2","2","16","2","4","3","42701","529","18","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure",24.4,35.8,"Not sure","Agree","Definitely false","Probably false","Definitely true","Not sure","Somewhat agree","Strongly disagree",15.5,34.5,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure",2,21,0,"Other",0,0,2.66683791670267 +549,84.3,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",11,28.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0fdc9-bea3-e0fd-69aa-a7f838f6bf96","56","1","3","1","1","2","1","2","44224","510","36","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true",15.7,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",11,28.3,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",2,56,0,"Democrat",0,0,0.805895656010846 +550,85.2,84.8,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",24.9,10.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe0f991-95fc-032e-a90c-2e91e13c2634","51","1","24","1","1","6","2","4","98502","819","48","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",14.8,15.2,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",24.9,10.1,"Agree","Agree","Disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","Not sure","Yes, true",6,51,1,"Republican",0,0,1.56503676943297 +551,53.6,57.8,"True","Disagree","Definitely true","Probably false","Probably false","Definitely true","Strongly agree","Strongly disagree",25.3,3.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe0f6e3-bc28-164d-fe44-25fd6ebc3ef7","51","2","11","1","1","2","1","2","45014","515","36","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","","","Not sure","Yes, true","","Yes, true","Not sure","","Yes, true",46.4,42.2,"False","Agree","Definitely false","Probably true","Probably false","Definitely false","Strongly disagree","Strongly disagree",25.3,3.1,"Disagree","Agree","Disagree","Disagree","Disagree","Not sure","No, false","Not sure","","","Not sure","Yes, true","","No, false","Not sure","","Yes, true",2,51,0,"Democrat",0,0,0.971380249062987 +552,0.1,20.4,"True","Agree","Definitely false","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly agree",77.7,93.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe0f8c9-5ca3-c6c1-5071-81ed600414b2","36","2","2","1","1","2","3","2","44820","535","36","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure",0.1,79.6,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",22.3,6.2,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","No, false","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure",2,36,0,"Independent",1,0,0.746154240255765 +553,55.4,49.2,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably false","Strongly disagree","Strongly agree",70.1,97.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f59c-7fd6-4d09-e2c9-6b9da08b836c","23","2","1","16","1","2","1","3","32825","534","10","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure",55.4,50.8,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably true","Strongly agree","Strongly disagree",70.1,97.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure",2,23,0,"Democrat",0,0,0.329152435286286 +554,75,69.2,"True","Agree","Probably true","Definitely true","Probably true","Definitely false","Somewhat agree","Strongly disagree",55,85.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f6ab-0564-68e1-80c4-764b6335cfd4","31","1","1","1","1","2","2","1","10901","501","33","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",25,69.2,"True","Agree","Probably false","Definitely true","Probably false","Definitely false","Somewhat agree","Strongly disagree",45,14.2,"Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,31,0,"Republican",0,0,0.919167646530211 +555,49.8,49.8,"False","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely true","Strongly agree","Strongly agree",25.6,3.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe0f8fc-ce74-0ff3-cf39-f30a4cf1cef4","28","1","8","1","1","6","1","3","34689","539","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.8,49.8,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.6,3.6,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,28,0,"Independent",0,1,0.329421458170117 +556,50.5,68.3,"False","Neither agree nor disagree","Probably true","Probably false","Definitely false","Definitely true","Slightly disagree","Strongly disagree",11.7,8.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Not vote in the presidential election","5fe0eaec-e89c-759e-f366-59212dcb3e59","54","1","1","1","1","6","1","1","17042","566","39","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","","","","Not sure",50.5,31.7,"False","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",11.7,8.5,"Disagree","","","","","","","","","","","","","","","","Not sure",6,54,0,"Democrat",0,3,2.01137253886328 +557,78.6,78,"False","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably true","Slightly agree","Slightly agree",78.8,67.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f4f5-edf9-bb16-bf31-1226af2bee4f","31","1","5","1","1","4","2","3","77377","618","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true",21.4,78,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably true","Slightly agree","Slightly agree",21.2,32.9,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","No, false",4,31,0,"Republican",0,0,0.871468009862344 +558,50,50,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",81.5,89,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe0ff47-8824-0828-8429-e1a249131b43","50","1","20","1","1","7","1","4","87401","790","32","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure",50,50,"True","Strongly disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",18.5,11,"Strongly disagree","Disagree","Strongly disagree","Strongly agree","Strongly agree","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure",7,50,0,"Democrat",1,0,1.05176287332933 +559,91.6,90.7,"True","Agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Strongly agree",80.3,79.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Agree","Agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe101e8-6054-05b8-80d7-64e31676f587","23","1","1","1","1","6","1","3","27403","518","34","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure",91.6,90.7,"False","Disagree","Probably false","Probably false","Probably true","Probably false","Somewhat disagree","Strongly disagree",80.3,79.3,"Agree","Agree","Disagree","Disagree","Strongly agree","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure",6,23,0,"Democrat",1,0,0.538702378978846 +560,71.8,0.1,"True","Agree","Definitely true","Probably true","Probably true","Definitely true","Somewhat disagree","Strongly disagree",13,6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f7e5-ae9e-4122-5f15-d1a6b63c1afd","56","2","4","1","1","4","2","3","34445","539","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",71.8,0.1,"True","Disagree","Definitely false","Probably true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",13,6,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true",4,56,1,"Republican",0,0,0.879927333598919 +561,90.7,74,"True","Agree","Definitely true","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",21.2,29,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe10109-ba24-b737-b0bf-979fb6ef44f2","33","1","1","2","1","2","1","3","77014","618","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false",9.3,74,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",21.2,29,"Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false",2,33,0,"Democrat",0,0,0.76528861612494 +562,50,20.3,"Not sure","Agree","Probably false","Probably false","Probably true","Probably true","Somewhat agree","Slightly agree",82.8,85,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe100f9-95e9-6a57-153f-6355172e8477","76","1","20","1","1","4","1","3","33830","539","10","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","","No, false",50,20.3,"Not sure","Agree","Probably false","Probably false","Probably false","Probably false","Somewhat agree","Slightly disagree",17.2,15,"Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure","Not sure","Not sure","","No, false",4,76,0,"Democrat",0,0,0.957543870478141 +563,60.5,64.4,"False","Disagree","Probably false","Probably true","Probably true","Probably false","Somewhat disagree","Slightly disagree",32.8,16.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","","","","","Vote for the Democrat Joe Biden","5fe0f54b-6278-d87e-91ac-bf89c07332ba","28","2","9","15","2","6","2","2","54817","676","50","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","","","","","","","","","","",60.5,64.4,"True","Agree","Probably false","Probably false","Probably true","Probably false","Somewhat agree","Slightly disagree",32.8,16.8,"Disagree","","","","","Not sure","Not sure","","","","","","","","","","",6,28,0,"Independent",0,2,0.724189163723607 +564,39.6,52.8,"True","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",77.7,86.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe1010a-df0d-75ef-e4d3-4cd034ab410d","73","1","3","1","1","2","2","3","37840","557","43","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false",39.6,47.2,"False","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",22.3,13.1,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",2,73,1,"Republican",0,0,0.957543870478141 +565,51.2,74.3,"True","Agree","Not sure","Not sure","Probably true","Not sure","Slightly disagree","Slightly disagree",77.6,95.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Not vote in the presidential election","5fe10251-173a-1f8b-9832-9269e6130af7","64","1","1","1","1","2","2","3","34104","571","10","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",51.2,74.3,"True","Disagree","Not sure","Not sure","Probably false","Not sure","Slightly agree","Slightly disagree",22.4,4.09999999999999,"Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,64,0,"Republican",0,0,1.88458708070939 +566,50,50,"False","Strongly agree","Probably true","Probably false","Probably true","Probably true","Strongly disagree","Strongly disagree",37.1,61.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe0f977-cfd2-de5f-547e-16f28b95511b","61","1","10","1","1","6","1","3","31833","524","11","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",50,50,"True","Strongly disagree","Probably true","Probably true","Probably true","Probably false","Strongly disagree","Strongly disagree",37.1,61.9,"Strongly agree","Strongly agree","Strongly agree","Agree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",6,61,0,"Democrat",1,0,1.09919840793407 +567,57.5,25.1,"True","Agree","Probably true","Definitely true","Probably true","Probably true","Strongly agree","Slightly agree",74.8,90.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe1025c-59a5-8e72-55c0-89d85f4d418f","67","1","9","1","1","4","2","3","29334","567","41","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",42.5,74.9,"False","Disagree","Probably false","Definitely true","Probably false","Probably true","Strongly disagree","Slightly agree",25.2,9.40000000000001,"Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Strongly agree","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false",4,67,1,"Republican",0,0,0.957543870478141 +568,50,50,"Not sure","Agree","Probably true","Definitely false","Definitely true","Definitely true","Slightly agree","Strongly agree",11.9,10.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe101e9-641a-300b-0f36-a5e86106db6c","45","1","24","1","1","7","1","1","11201","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",50,50,"Not sure","Agree","Probably true","Definitely true","Definitely false","Definitely false","Slightly agree","Strongly agree",88.1,89.7,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",7,45,0,"Democrat",0,0,0.788398316908465 +569,75.9,28.2,"False","Disagree","Definitely false","Probably false","Definitely false","Probably true","Strongly agree","Strongly disagree",25.8,4.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Agree","Strongly agree","Not vote in the presidential election","5fe10369-1f50-b5ab-dc6a-0cad92f9f893","59","1","1","1","1","6","3","3","27604","560","34","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure",75.9,71.8,"False","Disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",25.8,4.6,"Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Not sure",6,59,0,"Other",0,3,1.88458708070939 +570,98.7,82.8,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",95.6,82.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe10396-37cb-d41f-6f25-cfbebdeee637","50","1","8","1","1","7","3","3","30152","524","11","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure",98.7,82.8,"False","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",95.6,82.7,"Strongly disagree","Strongly disagree","Agree","Disagree","Agree","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure",7,50,0,"Independent",1,0,0.747484873742735 +571,21,89.5,"False","Neither agree nor disagree","Probably true","Not sure","Probably true","Definitely false","Somewhat disagree","Strongly disagree",18,22.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe102c8-d9d7-bde7-5c11-dcdb01051d38","62","1","10","2","1","5","4","2","44707","510","36","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",21,10.5,"False","Neither agree nor disagree","Probably false","Not sure","Probably false","Definitely false","Somewhat agree","Strongly disagree",18,22.3,"Agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",5,62,0,"Democrat",0,0,1.05307506002823 +572,24.2,71.1,"True","Agree","Definitely true","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly disagree",76.9,88.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe1029d-7348-a9fb-82a6-f6da669afa98","85","1","16","1","1","7","3","2","60523","602","14","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",24.2,28.9,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",23.1,11.8,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true",7,85,1,"Independent",0,0,1.04464351786682 +573,99.9,24.5,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely true","Somewhat disagree","Strongly disagree",87.4,76.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe104a9-c747-9dd5-af09-a5d8b9da1855","51","1","2","1","1","4","2","4","80919","752","6","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false",0.0999999999999943,24.5,"True","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Somewhat agree","Strongly disagree",87.4,76.3,"Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",4,51,0,"Republican",0,0,1.56503676943297 +574,74.6,99.9,"False","Agree","Definitely true","Definitely false","Probably false","Definitely true","Strongly agree","Strongly disagree",22.4,19.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe10190-cf55-ed55-449c-9213cf7a44ac","64","1","4","1","1","6","1","2","43203","535","36","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",74.6,99.9,"True","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",22.4,19.5,"Disagree","Strongly disagree","Disagree","Disagree","Disagree","No, false","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","No, false",6,64,0,"Democrat",0,0,0.805895656010846 +575,99.9,72.7,"False","Disagree","Probably true","Definitely false","Definitely false","Definitely true","Somewhat disagree","Slightly agree",29.8,65,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe10448-83ef-fb8b-e160-dc662f3902d1","63","1","13","1","1","6","2","2","45140","515","36","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false",0.0999999999999943,27.3,"True","Disagree","Probably false","Definitely true","Definitely false","Definitely false","Somewhat agree","Slightly agree",29.8,65,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","Not sure","No, false","Yes, true",6,63,0,"Republican",0,2,1.19918316758111 +576,83.6,50,"True","Agree","Definitely false","Probably false","Definitely false","Definitely true","Somewhat agree","Strongly agree",85.8,71.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe10444-259c-1af1-2916-377fe685c459","66","1","4","1","1","6","1","2","48152","505","23","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","No, false","Yes, true","Not sure",16.4,50,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",14.2,28.8,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","Not sure",6,66,0,"Democrat",0,3,1.04464351786682 +577,50,24,"True","Disagree","Probably false","Probably true","Definitely true","Definitely false","Slightly disagree","Strongly agree",35.3,65,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe100fe-60b7-27f2-9ca1-776cab293a3b","85","1","11","1","1","6","3","2","46176","527","15","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",50,76,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",35.3,65,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",6,85,0,"Independent",0,2,0.702039267968476 +578,50,51.3,"False","Agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Somewhat disagree",75.9,84.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe10514-49cb-27bf-bc9b-b9b8c1adbcbb","67","1","10","1","1","6","2","2","60714","602","14","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false","Not sure",50,51.3,"False","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Somewhat agree",24.1,15.5,"Neither agree nor disagree","Agree","Disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","No, false","No, false","Not sure",6,67,0,"Independent",0,0,1.04464351786682 +579,50,75,"Not sure","Disagree","Definitely true","Probably true","Definitely true","Definitely false","Somewhat agree","Strongly agree",30,20,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe10256-211c-07bd-e825-cb58298e4020","53","1","4","1","1","2","3","2","65712","619","26","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true",50,75,"Not sure","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",30,20,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false",2,53,0,"Independent",0,2,1.2134406814044 +580,80,74.2,"True","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",91.3,89,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for a different candidate","5fe1064e-8309-dc80-7a0d-05ff51f61330","66","1","22","1","1","7","3","2","60026","602","14","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","No, false",20,74.2,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.7,11,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","No, false","No, false","No, false","No, false","Yes, true",7,66,0,"Other",0,0,0.394883101880017 +581,49.8,97.4,"True","Neither agree nor disagree","Definitely true","Definitely true","Probably true","Definitely false","Strongly agree","Somewhat disagree",71.2,90.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe101da-6a1c-4283-f7c0-e702782f4bda","71","1","3","1","1","6","1","3","32168","534","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",49.8,97.4,"False","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly disagree","Somewhat disagree",28.8,9.2,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",6,71,0,"Democrat",1,1,0.643505067882763 +582,58.2,55.9,"True","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",3.2,11.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe1056a-fbcd-49c5-e58f-626642d262f5","74","1","1","1","1","6","3","2","54602","702","50","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure",41.8,44.1,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",3.2,11.3,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",6,74,0,"Independent",1,1,0.702039267968476 +583,19.2,87.5,"True","Strongly agree","Definitely true","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",25.2,16.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe10490-67b7-e15e-6b1a-a7cc944a1676","76","1","22","1","1","7","3","4","85263","753","3","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",19.2,87.5,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.2,16.4,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",7,76,0,"Independent",0,2,0.905456100816435 +584,99.9,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe1077f-7aee-2eea-9a24-73f85bf2daed","45","1","20","1","1","7","1","4","90017","803","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",99.9,99.9,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",0,0,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false",7,45,0,"Democrat",1,0,1.05176287332933 +585,50,27.8,"Not sure","Agree","Probably false","Probably false","Probably false","Probably false","Slightly disagree","Strongly disagree",81.8,50.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe104a5-0d4d-45a3-26cd-10a2ba432dfc","79","1","1","1","1","7","2","4","94002","807","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",50,72.2,"Not sure","Disagree","Probably false","Probably false","Probably false","Probably true","Slightly agree","Strongly disagree",18.2,49.3,"Disagree","Strongly agree","Agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",7,79,1,"Republican",0,1,1.34733039815278 +586,50,58.6,"Not sure","Disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Slightly disagree",25.1,18.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe0f28b-a1bb-a6d8-d6a4-de1229bcc9a1","25","2","1","15","1","5","1","3","79424","651","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true",50,41.4,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Slightly disagree",25.1,18.2,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",5,25,0,"Democrat",1,0,0.357843324247791 +587,49.8,69.7,"True","Neither agree nor disagree","Definitely true","Not sure","Definitely true","Definitely false","Strongly disagree","Strongly agree",74.2,76.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe105af-b648-ee31-f42a-5d5c2b7a511d","65","1","3","1","1","2","4","2","53545","669","50","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure",49.8,30.3,"False","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.8,23.3,"Neither agree nor disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure",2,65,0,"Democrat",0,1,1.79105215537822 +588,50,76.5,"False","Disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",11.3,63.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe1060c-70a8-ed19-1170-abe8cfdb48d4","72","1","20","1","1","6","1","4","22182","753","3","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",50,76.5,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",11.3,63.3,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",6,72,0,"Independent",0,0,0.905456100816435 +589,75.4,99.9,"Not sure","Disagree","Definitely false","Probably false","Definitely false","Definitely true","Somewhat disagree","Strongly agree",25.5,20.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe102f8-5a6c-72f9-d18c-c234a7942f96","58","1","14","2","1","6","1","3","28398","560","34","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","","Not sure","Yes, true",75.4,99.9,"Not sure","Agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",25.5,20.8,"Disagree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","","Not sure","Yes, true",6,58,0,"Democrat",0,0,0.965272412681533 +590,92.7,88.8,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",18.6,19.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe105fc-4b70-1fa5-7b99-96d7b22766c5","55","1","12","2","1","8","4","3","75068","623","44","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false",7.3,88.8,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",18.6,19.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","No, false","No, false","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false",8,55,0,"Other",0,1,2.46261614434084 +591,62.1,42.1,"True","Disagree","Definitely false","Definitely true","Probably false","Definitely true","Strongly disagree","Strongly agree",77.3,86,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe10764-ff17-db7d-0e9b-5f4271684f59","63","1","22","1","1","6","3","2","68046","652","28","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure",37.9,42.1,"False","Agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",22.7,14,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Not sure",6,63,1,"Independent",0,2,1.19918316758111 +592,50,50,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably false","Definitely true","Slightly disagree","Strongly disagree",16.6,14.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe107d5-ed9f-a0e1-21a8-4fa105d257d9","67","1","13","1","1","7","3","3","32780","534","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Slightly agree","Strongly disagree",16.6,14.5,"Disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",7,67,0,"Independent",0,3,0.957543870478141 +593,50,62.1,"True","Strongly agree","Definitely false","Probably true","Definitely true","Definitely false","Slightly disagree","Strongly disagree",14.3,4.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe1072a-2cc5-5292-10b4-6a9f86a829e3","50","1","19","1","1","6","2","2","55807","676","24","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false",50,37.9,"False","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",14.3,4.5,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",6,50,0,"Republican",0,0,1.2134406814044 +594,25.7,70.7,"True","Agree","Definitely false","Definitely true","Definitely false","Probably true","Strongly disagree","Strongly agree",30.2,55.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe10610-d774-d8ab-eb5f-090cc0223fe2","57","1","4","1","1","4","3","2","47933","527","15","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",25.7,70.7,"False","Agree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Strongly disagree",30.2,55.4,"Disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",4,57,0,"Independent",0,1,0.453300251078667 +595,50,50,"True","Agree","Probably false","Definitely true","Probably true","Definitely false","Strongly disagree","Strongly disagree",8.7,10.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe108ac-5f7e-e2d7-f4ff-409b0f4ad876","80","1","5","1","1","7","2","4","84721","770","45","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure",50,50,"True","Disagree","Probably true","Definitely true","Probably true","Definitely false","Strongly disagree","Strongly disagree",8.7,10.1,"Strongly disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Not sure",7,80,1,"Republican",0,0,1.34733039815278 +596,50,22.5,"True","Strongly disagree","Probably false","Probably false","Probably true","Probably false","Strongly disagree","Strongly disagree",24.2,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe107cb-f70d-1556-f7fa-5b379e8f03c9","67","1","4","1","1","4","1","4","95665","862","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",50,22.5,"False","Strongly disagree","Probably false","Probably false","Probably false","Probably true","Strongly agree","Strongly agree",24.2,25.1,"Strongly agree","Neither agree nor disagree","Strongly disagree","Disagree","Agree","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure",4,67,0,"Democrat",0,0,0.905456100816435 +597,50,50,"Not sure","Strongly disagree","Probably true","Definitely false","Probably true","Definitely true","Somewhat agree","Somewhat disagree",5.4,6.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe1055a-7a4b-3123-9a3d-fb6643785cba","68","1","8","1","1","2","3","2","68069","652","28","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false",50,50,"Not sure","Strongly agree","Probably false","Definitely true","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",5.4,6.3,"Disagree","Disagree","Agree","Disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","No, false","Not sure","Yes, true",2,68,0,"Independent",0,1,1.04464351786682 +598,50.4,49.8,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",80.1,79.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe0f995-fb97-234b-04d1-833ae026311f","58","1","6","1","1","2","2","2","65802","619","26","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.6,50.2,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.9,20.3,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,58,0,"Republican",0,0,1.19918316758111 +599,50,19.6,"True","Strongly agree","Definitely true","Probably true","Definitely false","Definitely true","Slightly disagree","Slightly agree",20.4,59,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe108a5-48d5-160c-683e-b2ae0e42d8cf","68","1","8","1","1","4","3","2","47403","527","15","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false",50,19.6,"False","Strongly agree","Definitely true","Probably true","Definitely false","Definitely false","Slightly agree","Slightly agree",20.4,59,"Disagree","Neither agree nor disagree","Disagree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",4,68,1,"Independent",0,1,1.04464351786682 +600,50,75,"True","Agree","Definitely false","Probably true","Probably false","Definitely true","Slightly agree","Strongly disagree",87,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe10811-d47a-f117-7745-f8be7cfd8252","75","1","23","1","1","7","2","4","95404","807","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",50,25,"False","Disagree","Definitely false","Probably true","Probably false","Definitely false","Slightly disagree","Strongly disagree",13,9.90000000000001,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Agree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","No, false","No, false","Not sure","Yes, true",7,75,0,"Republican",0,2,1.34733039815278 +601,50,99.8,"True","Neither agree nor disagree","Probably false","Not sure","Definitely true","Definitely true","Strongly disagree","Somewhat agree",11.8,6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1065d-5cc5-9801-60f7-0788d1a45e4e","73","1","10","1","1","4","3","2","64507","638","26","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,0.200000000000003,"False","Neither agree nor disagree","Probably false","Not sure","Definitely false","Definitely false","Strongly agree","Somewhat disagree",11.8,6,"Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,73,0,"Independent",0,2,0.702039267968476 +602,50,70.6,"True","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",1.1,1.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe108c3-fd9a-6f0c-2f16-9d12fcc62e51","53","1","19","1","1","7","3","4","91016","803","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",50,29.4,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",1.1,1.1,"Strongly agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",7,53,0,"Independent",1,3,1.05176287332933 +603,99.9,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe10b14-d811-e6ff-6a9c-1c280a011ab5","45","1","9","1","1","4","1","3","33131","528","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",99.9,0.0999999999999943,"False","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly agree",0,0,"Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false",4,45,1,"Democrat",0,0,0.747484873742735 +604,75.8,56.2,"False","Agree","Probably false","Probably true","Probably false","Definitely false","Somewhat agree","Strongly agree",12.5,23.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe10a0a-d6b0-09cd-1270-df347976e3a6","73","1","4","1","1","4","2","4","80123","751","6","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false",24.2,43.8,"True","Agree","Probably false","Probably true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",12.5,23.1,"Strongly disagree","Neither agree nor disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true",4,73,0,"Republican",0,1,1.34733039815278 +605,90.1,25.4,"False","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Slightly disagree","Strongly disagree",10.1,12.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe10a78-6530-60ef-de10-75b5b2e06b8a","65","1","8","1","1","5","2","3","29585","519","41","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","","Yes, true","Yes, true","No, false","No, false",90.1,25.4,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",10.1,12.1,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","","No, false","No, false","No, false","Yes, true",5,65,0,"Republican",0,2,0.957543870478141 +606,25,75,"True","Neither agree nor disagree","Definitely true","Probably false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",70,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe10824-31c1-3c65-c3d2-a75b32e54969","62","1","19","1","1","5","1","2","43116","535","36","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true",25,25,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly agree","Strongly disagree",30,9.90000000000001,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","No, false","No, false","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false",5,62,0,"Democrat",0,1,0.805895656010846 +607,98.1,50,"False","Neither agree nor disagree","Definitely true","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly agree",96.7,97.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe107ac-c137-b3c6-d80b-39985cf5fe61","60","1","19","1","1","4","4","4","92646","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false",1.90000000000001,50,"False","Neither agree nor disagree","Definitely true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",3.3,2.7,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",4,60,0,"Republican",0,0,1.54664812158548 +608,50,79.6,"False","Neither agree nor disagree","Not sure","Probably false","Probably true","Probably false","Somewhat agree","Somewhat agree",25.2,5.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe10744-96c8-ee62-cd44-8b1ccc751919","71","1","3","1","1","2","3","4","92084","825","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",50,20.4,"False","Neither agree nor disagree","Not sure","Probably true","Probably true","Probably true","Somewhat agree","Somewhat disagree",25.2,5.5,"Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Disagree","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",2,71,0,"Independent",0,0,0.905456100816435 +609,99.8,99.9,"True","Strongly disagree","Definitely true","Probably true","Definitely false","Definitely true","Strongly agree","Strongly agree",2.3,3.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe10a42-6853-b2b4-0190-8da702a128b3","63","1","-3105","1","1","7","2","4","80917","752","6","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",0.200000000000003,99.9,"True","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",2.3,3.2,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",7,63,1,"Republican",0,1,1.54664812158548 +610,21.4,90.1,"True","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",95.3,94.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe10a02-5a02-9ad2-da32-ed050d8fc8d1","75","1","12","1","1","5","3","2","53140","617","50","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true",78.6,90.1,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",4.7,5.59999999999999,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",5,75,0,"Independent",0,1,0.702039267968476 +611,50,68.7,"True","Disagree","Probably true","Probably false","Probably true","Definitely false","Strongly disagree","Strongly disagree",76.7,91.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe10a5a-15c6-28e2-2260-d6cc9442580f","62","1","13","1","1","7","4","4","97317","820","38","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",50,31.3,"True","Agree","Probably false","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",23.3,8.59999999999999,"Disagree","Agree","Agree","Disagree","Strongly agree","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false",7,62,1,"Independent",0,2,1.54664812158548 +612,50.1,60.4,"Not sure","Disagree","Probably true","Probably false","Probably false","Probably true","Slightly agree","Slightly disagree",67,76.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe10adc-bc0b-d77f-632b-b8846b5713e4","69","1","-3105","1","1","4","2","2","55313","613","24","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",50.1,60.4,"Not sure","Agree","Probably false","Probably true","Probably false","Probably false","Slightly agree","Slightly disagree",33,23.5,"Disagree","Agree","Agree","Strongly disagree","Agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",4,69,0,"Republican",0,1,1.04464351786682 +613,53.7,63,"True","Disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat agree",19.4,25.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe10bbe-2539-9745-23c8-2479e043d6d2","25","1","19","1","1","5","1","1","10003","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","No, false","No, false","Yes, true",53.7,63,"False","Agree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",19.4,25.6,"Agree","Disagree","Disagree","Agree","Disagree","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","No, false",5,25,0,"Democrat",0,0,0.617714819145265 +614,84.3,85,"True","Agree","Probably true","Probably true","Definitely true","Probably true","Strongly agree","Strongly agree",73.6,69.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Agree","Agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe0efaf-729e-678e-112b-21af652e1404","40","1","24","1","1","8","2","3","33131","528","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","Yes, true","","","","","","",84.3,15,"True","Disagree","Probably false","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",26.4,30.9,"Disagree","Disagree","Agree","Strongly agree","Disagree","","","","","","Yes, true","","","","","","",8,40,1,"Republican",0,0,0.574171657914799 +615,70.2,91.2,"True","Agree","Probably true","Probably true","Definitely false","Definitely true","Strongly agree","Strongly agree",21.6,20,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Disagree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe109a8-6d23-2bb7-b768-282fb331c473","73","1","7","1","1","6","2","4","92071","825","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",29.8,91.2,"True","Agree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",21.6,20,"Disagree","Strongly disagree","Agree","Strongly disagree","Agree","Not sure","Not sure","No, false","Yes, true","Not sure","No, false","No, false","No, false","Not sure","No, false","Yes, true","Yes, true",6,73,0,"Republican",0,0,1.34733039815278 +616,97.1,94.6,"True","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",72.2,63.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe10d30-84d4-e369-6753-f1df3582a9b0","30","1","19","1","1","6","3","1","10004","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",2.90000000000001,94.6,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",27.8,36.6,"Strongly agree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true",6,30,0,"Democrat",1,0,0.617714819145265 +617,23.1,12.4,"True","Agree","Probably true","Definitely true","Definitely true","Definitely false","Somewhat agree","Strongly disagree",1.2,0.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe109ed-3b67-2a1c-55b5-8c2fdcb9edd7","62","1","14","1","1","6","2","3","32536","686","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true",23.1,12.4,"True","Disagree","Probably true","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",1.2,0.9,"Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,62,0,"Republican",0,0,1.09919840793407 +618,75.3,62.1,"True","Neither agree nor disagree","Probably false","Probably true","Probably true","Definitely true","Slightly agree","Strongly agree",5.4,20.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Disagree","Not vote in the presidential election","5fe10dc8-0fdb-6a24-10ff-b2e333be12f7","48","1","5","1","1","6","2","2","61350","602","14","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false",24.7,37.9,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Slightly agree","Strongly disagree",5.4,20.4,"Disagree","Neither agree nor disagree","Agree","Disagree","Agree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true",6,48,1,"Republican",0,0,2.08045664447425 +619,50.9,77.8,"True","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly agree",20.5,17.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe1086d-deb4-9a30-8925-f2ec8172ae66","65","1","4","1","1","4","4","4","79072","651","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",49.1,77.8,"False","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.5,17.7,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",4,65,0,"Other",0,0,2.31001195369097 +620,49.7,76.4,"False","Agree","Definitely true","Probably true","Definitely false","Definitely false","Slightly disagree","Somewhat disagree",74.4,91.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe10ec7-1f6d-64dd-6654-752ed6b9d7a9","21","2","1","1","1","6","1","1","14075","514","33","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",49.7,23.6,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat disagree",25.6,8.2,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","No, false",6,21,0,"Democrat",0,0,0.454844440982363 +621,99.9,89.1,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",7.1,14.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe10c82-d8ff-358f-ded3-717022be857e","81","1","5","1","1","3","2","2","47711","649","15","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",0.0999999999999943,10.9,"True","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",7.1,14.5,"Disagree","Agree","Agree","Strongly disagree","Agree","Yes, true","No, false","","No, false","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","No, false",3,81,0,"Republican",0,0,1.04464351786682 +622,50,50,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly agree","Strongly disagree",69.8,69.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe10858-d7b6-4123-3b5e-9da6f7dab20d","65","1","7","1","1","4","2","2","69101","740","28","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false",50,50,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",30.2,30.2,"Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",4,65,1,"Republican",0,2,1.04464351786682 +623,62,69.1,"True","Agree","Probably false","Probably true","Probably true","Probably false","Strongly agree","Strongly disagree",40.4,29.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Disagree","Disagree","Agree","Not vote in the presidential election","5fe10ec9-8b71-e6ff-1131-de8df7274f41","32","2","3","2","1","2","1","3","77051","618","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",38,30.9,"False","Agree","Probably false","Probably true","Probably false","Probably false","Strongly disagree","Strongly disagree",40.4,29.5,"Strongly disagree","Disagree","Disagree","Disagree","Disagree","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true",2,32,0,"Democrat",0,0,1.56294177382206 +624,62.7,93.2,"True","Agree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Somewhat agree",58.2,78.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe10dae-80d4-3761-79b5-b6922dbbaec3","71","1","6","1","1","3","1","2","68512","722","28","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","","Yes, true",62.7,93.2,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",41.8,21.8,"Disagree","","Agree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","No, false","","Yes, true",3,71,0,"Democrat",0,0,0.702039267968476 +625,63.1,72.5,"True","Disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Somewhat agree",72.4,75.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11061-c125-660b-641a-e94b03d1574b","20","2","14","1","1","5","1","2","48021","505","23","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",36.9,72.5,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",27.6,24.5,"Agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",5,20,0,"Democrat",1,0,0.47046686834987 +626,43.7,35.6,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",79.6,81.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe10f60-0d61-8734-8a49-8af2cc847f6c","75","2","4","1","1","7","1","1","08093","504","31","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure",56.3,64.4,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.4,18.9,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure",7,75,0,"Democrat",0,3,0.543332857421717 +627,72,75,"False","Disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",85.1,89.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Disagree","Strongly disagree","Not vote in the presidential election","5fe10f48-728f-d9aa-bd83-4efe0501d5b7","32","1","20","1","1","6","1","3","21220","512","21","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",72,25,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.9,10.5,"Disagree","Disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",6,32,0,"Independent",0,0,1.494140949244 +628,50,50,"False","Disagree","Probably true","Probably false","Probably true","Probably true","Slightly disagree","Strongly disagree",57.9,79.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe11015-b33d-deb8-3d09-b4ed7065eab2","34","1","3","1","1","2","2","3","34120","571","10","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",50,50,"False","Agree","Probably true","Probably true","Probably true","Probably false","Slightly agree","Strongly disagree",42.1,20.1,"Disagree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Not sure","Yes, true",2,34,0,"Independent",0,0,1.494140949244 +629,76.9,99.9,"Not sure","Strongly disagree","Probably true","Definitely true","Probably true","Definitely false","Strongly agree","Somewhat disagree",42.7,87,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11060-a20f-d268-fea4-b4d7c9200a20","26","1","19","1","2","6","1","1","10110","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",23.1,99.9,"Not sure","Strongly disagree","Probably false","Definitely false","Probably false","Definitely true","Strongly agree","Somewhat agree",57.3,13,"Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false",6,26,0,"Independent",0,1,1.14587617454642 +630,61.9,32.9,"Not sure","Agree","Probably false","Probably false","Definitely true","Definitely false","Somewhat disagree","Strongly agree",19.7,2.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe10e92-3931-d6dc-dec5-2f17a4f7a6df","54","1","6","1","1","6","2","3","37022","659","43","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure",61.9,32.9,"Not sure","Disagree","Probably true","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",19.7,2.1,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure",6,54,0,"Independent",0,1,1.11226716750253 +631,60.4,58.4,"True","Disagree","Definitely true","Definitely true","Definitely true","Definitely false","Slightly agree","Somewhat disagree",86.1,87.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe10fc2-3fb4-6b6b-2e7b-cf0c7307ca4d","67","2","6","1","1","2","2","1","02148","506","22","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","No, false","Yes, true",39.6,41.6,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Somewhat disagree",13.9,12.1,"Agree","Disagree","Disagree","Disagree","Neither agree nor disagree","No, false","Not sure","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false",2,67,0,"Independent",0,0,0.80848632469251 +632,71.7,81.3,"True","Disagree","Probably true","Definitely true","Probably true","Definitely true","Somewhat agree","Somewhat agree",74.3,52.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Strongly agree","Not vote in the presidential election","5fe10fa1-25c6-99e3-2e2b-dea5cff5c01d","34","1","10","1","1","8","1","3","75001","623","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false",71.7,18.7,"True","Agree","Probably false","Definitely true","Probably true","Definitely true","Somewhat agree","Somewhat agree",25.7,47.3,"Neither agree nor disagree","Strongly disagree","Agree","Neither agree nor disagree","Strongly agree","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false",8,34,0,"Democrat",0,0,1.494140949244 +633,21.4,21.9,"False","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably false","Slightly disagree","Slightly agree",4,5.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Not vote in the presidential election","5fe109cf-a734-7bda-ceb1-1674642f690f","62","1","12","1","1","5","3","2","45365","542","36","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure",78.6,21.9,"True","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Slightly disagree","Slightly agree",4,5.1,"Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure",5,62,0,"Independent",0,2,2.05601198902308 +634,85.1,70.7,"True","Agree","Not sure","Probably false","Definitely true","Probably false","Strongly agree","Strongly agree",12.2,12.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe10764-3b30-f1a5-30c5-6bb60223fbc5","66","1","19","1","1","7","1","2","60612","602","14","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",85.1,70.7,"False","Disagree","Not sure","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",12.2,12.3,"Agree","Disagree","Strongly disagree","Disagree","Agree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",7,66,0,"Democrat",0,1,0.702039267968476 +635,50,32.2,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly agree",76.5,64.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe10f44-5169-912b-981b-c51f7eab5eb1","66","2","5","1","1","2","1","1","15122","508","39","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",50,67.8,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",23.5,35.3,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false","No, false","No, false","Yes, true","Yes, true",2,66,0,"Democrat",0,0,1.38615819623451 +636,37.2,54.4,"False","Agree","Probably false","Probably false","Probably true","Probably true","Slightly agree","Somewhat disagree",30.8,22.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe10f53-e04d-1128-b996-dcf721d6386f","31","1","9","1","1","6","2","4","80910","752","6","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false",62.8,54.4,"True","Disagree","Probably false","Probably false","Probably false","Probably false","Slightly agree","Somewhat disagree",30.8,22.7,"Disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",6,31,0,"Republican",0,0,1.22621571387527 +637,51.7,75.2,"True","Strongly agree","Definitely true","Definitely true","Probably false","Definitely false","Strongly agree","Strongly agree",70,61.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe10ecc-36e6-dd91-0cab-4c8acb599e44","74","2","3","1","1","4","2","2","68124","652","28","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",51.7,75.2,"True","Strongly agree","Definitely false","Definitely true","Probably false","Definitely false","Strongly disagree","Strongly disagree",30,38.2,"Disagree","Disagree","Disagree","Disagree","Disagree","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",4,74,1,"Republican",0,0,0.83625520070175 +638,31.1,69.4,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",61.8,89.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe110c6-268d-c50b-babe-b3e3ee94b6e5","65","2","18","1","1","5","3","3","34684","539","10","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true",31.1,30.6,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",38.2,10.6,"Disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false",5,65,0,"Independent",0,0,0.515136934744757 +639,77.9,33.8,"True","Agree","Probably false","Definitely true","Definitely true","Probably true","Strongly agree","Slightly disagree",70.7,31.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe11084-d166-eb84-7241-80a2fe36be6a","24","1","3","2","1","4","3","3","77021","618","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",22.1,33.8,"True","Disagree","Probably true","Definitely true","Definitely true","Probably true","Strongly agree","Slightly disagree",70.7,31.6,"Neither agree nor disagree","Strongly agree","Disagree","Strongly agree","Agree","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",4,24,0,"Independent",1,0,0.703929889495349 +640,67.7,99.9,"True","Disagree","Probably false","Probably false","Definitely true","Definitely false","Slightly disagree","Slightly agree",75,60.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe110d2-84ef-098c-e95e-31ede541f898","31","1","23","1","1","4","1","4","97108","820","38","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","No, false","No, false",67.7,99.9,"True","Agree","Probably false","Probably true","Definitely false","Definitely false","Slightly disagree","Slightly disagree",25,39.6,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true",4,31,0,"Republican",0,2,1.22621571387527 +641,50,99.9,"False","Disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly agree",51.2,53.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly agree","Disagree","Not vote in the presidential election","5fe10f09-e270-4d8a-ca85-bd3c55761937","49","1","1","1","1","2","1","1","03079","506","30","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",50,99.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",48.8,46.6,"Disagree","Agree","Strongly disagree","Strongly disagree","Agree","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false",2,49,0,"Democrat",0,0,2.01137253886328 +642,31.4,78.2,"False","Agree","Probably false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.1,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11116-dab5-1e6f-23d5-3fe7d068e503","22","2","5","1","1","4","1","3","75013","623","44","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",31.4,21.8,"False","Agree","Probably true","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.1,15,"Disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true",4,22,0,"Democrat",1,0,0.431240569961491 +643,68.7,44.2,"False","Neither agree nor disagree","Definitely false","Probably true","Probably true","Not sure","Somewhat agree","Slightly agree",35.7,23.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11170-ea28-0bab-249d-55a09859a656","22","1","3","2","1","7","1","1","10468","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",68.7,55.8,"False","Neither agree nor disagree","Definitely false","Probably true","Probably false","Not sure","Somewhat disagree","Slightly disagree",64.3,76.3,"Disagree","Neither agree nor disagree","Strongly disagree","Agree","Neither agree nor disagree","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",7,22,0,"Democrat",0,0,0.742459358837412 +644,83.4,78.2,"True","Agree","Probably false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",42.7,43.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe10ef2-62fe-b2c0-3e23-fb99a3e4ed51","45","1","20","1","1","8","2","1","10013","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false",16.6,21.8,"False","Disagree","Probably false","Probably true","Definitely false","Definitely true","Strongly agree","Strongly disagree",42.7,43.1,"Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false",8,45,0,"Republican",1,0,1.17314690051286 +645,50,72.9,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",13.3,16.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11097-df0d-f77f-027d-44867906e5e3","64","1","10","1","1","6","2","2","60030","602","14","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",50,27.1,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",13.3,16.4,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",6,64,1,"Republican",0,0,0.805895656010846 +646,69.5,44.4,"True","Agree","Definitely true","Definitely true","Probably true","Definitely true","Somewhat agree","Strongly disagree",0.4,12.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe110d7-22d8-0dc6-33c7-15c7379efdd8","65","1","17","1","1","8","3","3","34420","534","10","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","No, false","Not sure","No, false","No, false","Not sure","No, false","Not sure","Not sure",30.5,55.6,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Somewhat agree","Strongly disagree",0.4,12.2,"Agree","Disagree","Disagree","Strongly disagree","Disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",8,65,0,"Independent",0,0,0.957543870478141 +647,99.9,99.9,"True","Strongly disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.4,53.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe1108f-8c21-57b8-81c1-86a7392cea71","51","1","1","2","1","2","1","2","48458","513","23","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false",99.9,0.0999999999999943,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",49.6,46.3,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true",2,51,0,"Democrat",1,0,1.06559544276142 +648,13.2,70.1,"False","Agree","Probably true","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",50.8,24.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Disagree","Strongly disagree","Not vote in the presidential election","5fe110fb-ce3d-86a5-e365-27bce2835b52","25","2","7","1","1","4","3","3","28763","567","34","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Not sure",86.8,70.1,"False","Agree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",50.8,24.8,"Agree","Neither agree nor disagree","Disagree","Disagree","Strongly disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure",4,25,0,"Independent",0,1,1.19608566751863 +649,49.8,94,"False","Strongly disagree","Definitely true","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly agree",64.6,96.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe110e3-c129-d5d9-2dab-e2073964db74","72","2","3","1","1","2","1","2","60605","602","14","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure",49.8,6,"False","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.4,3.59999999999999,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure",2,72,0,"Democrat",0,0,0.561994574124504 +650,70.8,61.2,"False","Agree","Probably true","Probably false","Definitely true","Not sure","Somewhat agree","Strongly agree",54.8,59.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe11132-bde6-f325-2e5f-39ee46c64885","27","2","1","1","1","2","2","3","25632","564","49","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false",70.8,38.8,"True","Agree","Probably false","Probably true","Definitely false","Not sure","Somewhat agree","Strongly disagree",45.2,40.2,"Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",2,27,0,"Republican",0,0,0.697625211881609 +651,50,86.7,"False","Agree","Definitely true","Probably false","Definitely false","Definitely true","Strongly agree","Strongly disagree",22.7,28,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe11080-b7d5-5ad6-8362-41da04b2c72f","84","1","2","1","1","6","3","4","95124","807","5","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false",50,13.3,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",22.7,28,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",6,84,0,"Independent",0,0,0.905456100816435 +652,50,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Probably true","Somewhat disagree","Strongly disagree",63.1,39.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe11198-04d6-8f2e-be35-d270a02808bd","71","2","13","1","1","2","3","3","40165","529","18","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Probably false","Somewhat agree","Strongly disagree",36.9,60.1,"Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,71,0,"Independent",0,0,0.766530426783843 +653,99.9,26.4,"False","Disagree","Definitely false","Probably false","Probably true","Definitely false","Strongly agree","Strongly disagree",88.6,90.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe110be-b97f-a7a4-e25b-38bd48f7efa4","66","1","3","1","1","6","2","3","33024","528","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",0.0999999999999943,26.4,"True","Disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly disagree","Strongly disagree",11.4,9.59999999999999,"Agree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true",6,66,0,"Republican",0,0,0.957543870478141 +654,51.3,78.1,"False","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",36.5,50.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe1108b-77e2-ebfb-5307-e946216cd249","26","1","5","1","1","4","1","1","11205","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true",51.3,21.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",63.5,49.1,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true",4,26,0,"Democrat",1,0,0.617714819145265 +655,68.9,70.9,"True","Agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",74,68.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe1125b-423a-530c-3a5f-8aa96fca4d48","27","1","1","2","1","2","2","3","21717","511","21","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",68.9,29.1,"True","Agree","Probably false","Probably false","Probably false","Probably true","Somewhat agree","Somewhat disagree",74,68.6,"Strongly agree","Disagree","Strongly disagree","Agree","Strongly agree","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",2,27,0,"Republican",0,0,0.76528861612494 +656,50,80.1,"False","Agree","Definitely false","Not sure","Probably true","Definitely true","Somewhat agree","Strongly disagree",25.2,20.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for a different candidate","5fe10ff1-c1f2-4f32-b719-20788cccb86a","57","2","2","1","1","2","3","3","21001","512","21","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false",50,19.9,"False","Disagree","Definitely false","Not sure","Probably false","Definitely false","Somewhat disagree","Strongly disagree",25.2,20.1,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","","Not sure","Not sure","Not sure","No, false","No, false","No, false","Not sure","No, false","Yes, true",2,57,0,"Independent",0,1,0.332619146127562 +657,84.7,85.1,"True","Strongly agree","Probably true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",80.4,95.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe1127d-6ddf-dba0-07f0-7877f1686903","18","1","1","1","1","1","1","3","70510","642","19","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false",84.7,14.9,"True","Strongly disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",19.6,4.7,"Agree","Strongly disagree","Agree","Strongly disagree","Agree","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",1,18,0,"Democrat",1,1,0.538702378978846 +658,50,99.1,"False","Agree","Definitely false","Probably false","Probably false","Definitely false","Somewhat agree","Strongly agree",38.7,44.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11137-47d2-9cda-6f81-7c871226f787","60","1","3","1","1","3","1","3","28748","567","34","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","No, false","No, false",50,99.1,"False","Agree","Definitely false","Probably true","Probably true","Definitely false","Somewhat agree","Strongly disagree",38.7,44.9,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Not sure","No, false","Not sure","No, false","No, false","Not sure","No, false","Not sure","No, false","No, false",3,60,0,"Democrat",0,0,0.73870218161496 +659,74.5,88,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly agree",90.2,85.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe110cb-25ae-bb62-a07c-37267e8a1703","68","1","-3105","1","1","6","3","3","28748","567","34","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true",25.5,88,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",9.8,14.6,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",6,68,0,"Independent",0,2,0.643505067882763 +660,50.3,61.8,"Not sure","Disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly disagree","Somewhat agree",50.5,36.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe11283-3f4b-0be3-c6a8-7d62987fc7dc","32","2","1","4","1","6","1","3","28174","517","34","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",49.7,61.8,"Not sure","Agree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Somewhat disagree",49.5,63.1,"Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",6,32,0,"Democrat",0,0,0.357843324247791 +661,0.1,0.1,"False","Disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",25.1,32.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe11041-eb03-7f3d-ed9f-57d2bd5dd89b","69","2","20","1","1","6","2","4","98264","819","48","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",0.1,0.1,"False","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",25.1,32.7,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true",6,69,1,"Republican",0,0,1.07856128262739 +662,84.9,99.9,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",2.5,4.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe110f0-6675-51c8-8ac9-b0061c89586f","60","2","1","1","1","3","1","3","30102","524","11","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false",15.1,99.9,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",2.5,4.7,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",3,60,0,"Democrat",1,0,1.50864454760297 +663,38.9,70.1,"True","Agree","Probably true","Not sure","Probably true","Probably false","Strongly agree","Slightly agree",49.8,61.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe112a3-53e3-41b1-c130-e20045ae60e9","24","1","8","1","1","-3105","3","4","94110","807","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure",61.1,70.1,"False","Agree","Probably false","Not sure","Probably true","Probably false","Strongly agree","Slightly agree",49.8,61.4,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure",-3105,24,0,"Democrat",0,0,0.757991474994239 +664,50,33.8,"False","Agree","Probably true","Definitely false","Definitely false","Definitely false","Slightly disagree","Somewhat disagree",87.6,82.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe111a7-cb05-f613-650e-33c0aaf9f611","23","1","5","1","2","6","2","3","78660","635","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","No, false",50,33.8,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Slightly agree","Somewhat disagree",12.4,17.6,"Disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",6,23,1,"Republican",0,3,1.48698049461625 +665,50,80,"False","Agree","Probably false","Definitely false","Definitely true","Probably true","Strongly disagree","Strongly agree",55,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe111f7-9541-fd52-9c5d-d090a14382b9","29","2","11","5","1","7","1","2","60517","602","14","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure",50,80,"False","Disagree","Probably false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",45,9.90000000000001,"Agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure",7,29,0,"Democrat",0,0,0.390393297490073 +666,63.8,64.2,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely true","Probably true","Strongly agree","Slightly disagree",59.2,44.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11233-d5ce-3dc7-96f8-0dc1f7ad63c7","21","2","1","9","1","5","1","3","75494","625","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",36.2,64.2,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Slightly disagree",40.8,55.8,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",5,21,0,"Democrat",0,0,0.329152435286286 +667,50,99.9,"False","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Somewhat agree","Strongly agree",85.7,81.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for a different candidate","5fe10eab-0599-4ba0-986e-e770c7e0df4b","68","2","6","1","1","4","1","4","85128","753","3","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true",50,0.0999999999999943,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",14.3,18.8,"Disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true",4,68,0,"Democrat",0,1,0.407704271904448 +668,49.8,44.1,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Not sure","Slightly agree","Somewhat disagree",77.9,60.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11295-2aca-0240-66cb-8f1714aa06b4","59","1","8","2","1","6","1","3","75701","709","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure",49.8,44.1,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Not sure","Slightly agree","Somewhat agree",77.9,60.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure",6,59,0,"Democrat",0,0,0.965272412681533 +669,49.1,58,"True","Neither agree nor disagree","Probably true","Probably false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",24.1,4.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe1113e-ef1a-4391-8def-34274cd465b5","63","1","-3105","1","1","6","3","3","75142","623","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true",50.9,58,"False","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.1,4.8,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","No, false",6,63,1,"Independent",0,2,1.09919840793407 +670,75.2,75.2,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",71.2,78.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe11113-b653-dd5c-f86c-5e5dafa4efb3","70","1","17","1","1","7","1","1","19111","504","39","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",75.2,75.2,"False","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",28.8,21.7,"Agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",7,70,0,"Democrat",0,3,0.678727196044171 +671,49.1,49.8,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Strongly agree",75,48.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11170-88e6-af90-7e71-602d9032c1b2","48","1","2","2","1","2","1","3","39886","522","11","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",50.9,50.2,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",25,51.2,"Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",2,48,0,"Democrat",1,0,0.976748878611933 +672,70.7,82.2,"True","Agree","Definitely true","Definitely false","Probably false","Definitely false","Strongly disagree","Somewhat disagree",56.3,43.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe110ac-3d7e-0169-0a73-d673e6c6a8f5","32","1","24","1","2","7","1","3","78666","635","44","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false",70.7,17.8,"True","Agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Somewhat agree",56.3,43.6,"Strongly agree","Disagree","Disagree","Strongly disagree","Disagree","No, false","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true",7,32,0,"Democrat",0,0,1.08641163899781 +673,50,76,"True","Disagree","Probably true","Definitely true","Definitely false","Probably true","Slightly agree","Somewhat agree",32,46.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe112c5-d204-d3c8-d8a1-4ff9bc596da5","21","2","1","1","1","4","1","2","55105","613","24","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false",50,24,"False","Agree","Probably false","Definitely false","Definitely false","Probably false","Slightly agree","Somewhat disagree",32,46.2,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false",4,21,0,"Democrat",0,3,0.47046686834987 +674,50.1,51.9,"Not sure","Strongly agree","Definitely false","Definitely false","Probably true","Not sure","Strongly agree","Strongly agree",54.5,57.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe10ec6-b93a-f721-7a21-71b81b95f46b","48","1","10","1","1","2","3","3","76048","623","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",50.1,48.1,"Not sure","Strongly disagree","Definitely true","Definitely true","Probably true","Not sure","Strongly agree","Strongly agree",54.5,57.2,"Strongly disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",2,48,0,"Independent",0,0,1.9069936046507 +675,90.6,78.2,"True","Agree","Probably true","Probably true","Definitely true","Probably true","Slightly disagree","Slightly disagree",53,63.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe1127c-83d7-c782-176d-0caa33017ce3","33","1","19","1","1","7","1","1","10001","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",9.40000000000001,78.2,"True","Disagree","Probably false","Probably true","Definitely true","Probably true","Slightly agree","Slightly disagree",53,63.3,"Disagree","Strongly disagree","Disagree","Strongly agree","Disagree","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false",7,33,0,"Democrat",1,0,0.617714819145265 +676,49.9,79.9,"Not sure","Strongly agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly agree",40.4,64.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe11290-5d07-cabe-4b69-ac5ff80a3b54","71","1","22","1","1","6","3","1","08831","501","31","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",49.9,20.1,"Not sure","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",40.4,64.8,"Agree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","No, false",6,71,0,"Independent",0,0,1.73157807953745 +677,69.6,79.3,"True","Agree","Definitely false","Probably false","Probably false","Probably true","Slightly agree","Somewhat agree",51.7,30.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe1124c-f2eb-c726-9a33-fa9c109886d5","31","1","19","1","2","6","1","4","90025","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","No, false","Not sure","No, false",69.6,20.7,"False","Agree","Definitely true","Probably true","Probably true","Probably true","Slightly agree","Somewhat disagree",48.3,69.3,"Disagree","Agree","Disagree","Disagree","Disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",6,31,0,"Republican",1,0,1.52865625404487 +678,90,50,"False","Disagree","Definitely false","Probably false","Probably true","Definitely false","Somewhat agree","Strongly agree",8.2,10.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe10d8b-74db-7765-42c7-8b61f12e6373","71","1","3","2","1","6","3","4","90807","803","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true",90,50,"True","Disagree","Definitely false","Probably false","Probably false","Definitely false","Somewhat agree","Strongly disagree",8.2,10.5,"Agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",6,71,0,"Independent",0,1,1.18317207768565 +679,99.9,98.9,"False","Agree","Probably true","Probably false","Probably true","Definitely false","Strongly agree","Strongly agree",33.6,19.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe11342-4a69-c4c0-04dd-4bf07a60c96b","29","1","1","1","1","2","2","4","81503","773","6","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","","Yes, true","Yes, true",0.0999999999999943,98.9,"True","Agree","Probably true","Probably true","Probably true","Definitely false","Strongly disagree","Strongly agree",33.6,19.7,"Disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","","No, false","No, false",2,29,1,"Republican",0,0,1.22621571387527 +680,50,26.6,"True","Disagree","Probably true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",43.3,68.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe11319-8d30-e7f3-bfcc-dbdd7461a4e5","54","1","14","1","1","2","2","3","38829","673","25","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true",50,73.4,"False","Disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",56.7,31.2,"Strongly disagree","Neither agree nor disagree","Agree","Agree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true",2,54,0,"Republican",0,0,1.11226716750253 +681,25.4,50,"Not sure","Agree","Probably false","Not sure","Definitely false","Not sure","Strongly disagree","Somewhat agree",6,1.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11412-d6d7-d4a7-de21-db12dd2da685","53","1","5","2","1","6","2","2","64127","616","26","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",25.4,50,"Not sure","Agree","Probably false","Not sure","Definitely false","Not sure","Strongly agree","Somewhat disagree",6,1.5,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,53,0,"Independent",0,0,1.06559544276142 +682,75.7,50.3,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat agree",50.8,37.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe1115b-83b1-ce37-ee4e-7e04c7fd6af7","84","1","15","1","1","4","2","4","94571","862","5","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",24.3,50.3,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",50.8,37.3,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",4,84,0,"Republican",0,1,1.34733039815278 +683,50,75,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",2.4,3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe112d2-c63d-19e1-6e10-c8a57cab9403","32","1","20","1","1","6","1","3","38632","640","25","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Yes, true",50,25,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",2.4,3,"Strongly agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true",6,32,0,"Independent",1,3,0.585658890557251 +684,52.2,83.1,"False","Neither agree nor disagree","Probably true","Probably false","Definitely true","Definitely true","Strongly agree","Somewhat disagree",15.6,4.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe110ea-0a7c-17ba-f7d5-c41d50478717","83","2","4","1","1","3","2","2","54241","658","50","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure",47.8,16.9,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",15.6,4.7,"Disagree","Strongly disagree","Agree","Strongly disagree","Disagree","Not sure","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure",3,83,0,"Republican",0,0,0.83625520070175 +685,51,59.4,"True","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably true","Strongly agree","Slightly agree",21.4,23.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe113ed-82d3-b088-e425-17bfd6e34055","31","1","1","2","1","2","4","3","30401","520","11","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49,40.6,"False","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Strongly agree","Slightly disagree",21.4,23.1,"Strongly agree","Strongly disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,31,0,"Democrat",0,0,0.76528861612494 +686,50,50,"True","Agree","Probably true","Probably false","Probably true","Not sure","Strongly agree","Somewhat agree",25,49.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Disagree","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe11143-03f6-052f-212d-12965669a424","47","1","1","1","1","1","4","3","28806","567","34","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",50,50,"False","Agree","Probably true","Probably true","Probably true","Not sure","Strongly disagree","Somewhat disagree",25,49.1,"Disagree","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",1,47,0,"Other",0,0,1.9069936046507 +687,50,99.9,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",10.5,9.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe111de-f9f0-0529-5e62-ef58c95720db","69","1","1","1","1","2","1","3","77461","618","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",50,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",10.5,9.4,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false",2,69,0,"Democrat",0,0,0.643505067882763 +688,76.1,37.4,"False","Strongly disagree","Probably false","Definitely true","Probably true","Definitely true","Somewhat agree","Somewhat agree",39.7,81.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","Disagree","Disagree","Neither agree nor disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe113e7-e172-786e-8867-81f82d73762c","33","1","14","1","1","6","2","4","85705","789","3","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure",76.1,37.4,"True","Strongly agree","Probably true","Definitely true","Probably false","Definitely false","Somewhat disagree","Somewhat disagree",39.7,81.6,"Strongly disagree","Agree","Disagree","Neither agree nor disagree","Strongly disagree","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure",6,33,0,"Republican",0,0,0.824062531779561 +689,29.7,42.5,"Not sure","Strongly disagree","Probably false","Definitely false","Probably false","Not sure","Strongly agree","Strongly agree",76.7,84.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1112f-5c51-7201-c1e9-e7e934f42d5a","33","1","24","1","1","6","1","3","20190","511","47","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure",70.3,42.5,"Not sure","Strongly disagree","Probably false","Definitely false","Probably true","Not sure","Strongly agree","Strongly disagree",23.3,15.7,"Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",6,33,0,"Democrat",0,0,0.585658890557251 +690,50,10,"False","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely true","Somewhat disagree","Somewhat disagree",75.1,80,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Vote for the Republican Donald Trump","5fe110ee-3cf4-8137-914e-c5fc7e9beb03","67","1","13","1","1","4","2","3","29691","567","41","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",50,90,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",24.9,20,"Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",4,67,1,"Republican",0,0,0.957543870478141 +691,49.2,43.2,"Not sure","Neither agree nor disagree","Not sure","Probably false","Definitely true","Probably true","Somewhat agree","Strongly agree",37.5,49.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe1133e-d498-0c55-6264-9e49a0ec8b3d","48","2","-3105","1","1","2","4","3","35094","630","1","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",49.2,43.2,"Not sure","Neither agree nor disagree","Not sure","Probably true","Definitely false","Probably false","Somewhat disagree","Strongly disagree",37.5,49.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Yes, true",2,48,0,"Other",0,0,1.52658135748604 +692,67.6,99.9,"True","Strongly agree","Definitely false","Probably false","Definitely true","Definitely true","Slightly agree","Strongly disagree",80.2,76.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe113e8-d985-8448-1341-700384450470","33","1","1","1","1","4","2","1","12822","532","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",32.4,99.9,"False","Strongly agree","Definitely true","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",19.8,23.4,"Strongly disagree","Agree","Strongly agree","Disagree","Disagree","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",4,33,0,"Republican",0,0,0.919167646530211 +693,50.1,50,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",15.1,20.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Disagree","Disagree","Disagree","Vote for a different candidate","5fe11342-8f4b-6378-244f-b66fd836ec20","61","1","1","5","1","4","2","4","91791","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.9,50,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.1,20.1,"Disagree","Strongly disagree","Disagree","Disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,61,0,"Republican",0,2,0.446240943805931 +694,83.3,82,"False","Disagree","Definitely true","Probably false","Probably false","Definitely false","Strongly agree","Somewhat agree",25.7,54.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe111db-6e48-fcb5-2993-54ba98ee55db","31","1","11","1","1","7","2","1","10549","501","33","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true",16.7,18,"False","Agree","Definitely false","Probably true","Probably false","Definitely false","Strongly agree","Somewhat agree",25.7,54.5,"Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true",7,31,0,"Republican",0,1,0.919167646530211 +695,0.1,51.7,"False","Strongly agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly disagree","Slightly agree",25.3,28.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe1152a-54a7-4cbb-9d25-a3e9099b429c","76","1","13","1","1","4","2","1","14228","514","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",0.1,51.7,"True","Strongly agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly disagree","Slightly disagree",25.3,28.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,76,0,"Independent",0,0,1.73157807953745 +696,50,0.1,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",76.9,75.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe11421-0625-697b-91da-489b9af70d6b","56","1","3","1","2","2","2","4","90011","803","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false",50,0.1,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.1,24.5,"Disagree","Agree","Agree","Disagree","Agree","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",2,56,0,"Republican",0,0,1.92812186070948 +697,11.6,71.4,"True","Neither agree nor disagree","Definitely false","Probably true","Probably true","Definitely true","Strongly agree","Strongly disagree",88.2,75.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe1152f-33b6-4a08-f355-2c1cb01f5b36","34","1","19","1","1","2","1","2","54166","658","50","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true",11.6,28.6,"False","Neither agree nor disagree","Definitely false","Probably false","Probably true","Definitely false","Strongly agree","Strongly disagree",11.8,24.1,"Neither agree nor disagree","Strongly disagree","Disagree","Strongly disagree","Disagree","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",2,34,0,"Democrat",0,0,0.638931314338847 +698,72.2,79.7,"False","Agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Somewhat agree",46.6,34.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe112f4-0951-aae5-5d30-bf6785155a50","30","1","14","1","1","6","1","1","10001","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","No, false",27.8,20.3,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",46.6,34.3,"Agree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",6,30,0,"Democrat",0,0,0.617714819145265 +699,73.6,97.2,"Not sure","Disagree","Definitely true","Probably false","Definitely false","Probably false","Somewhat agree","Somewhat disagree",54.7,72,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe113c8-6b43-bc5b-19a6-fdd265744ff5","31","1","1","1","1","2","1","3","28384","570","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",73.6,97.2,"Not sure","Agree","Definitely false","Probably true","Definitely false","Probably false","Somewhat agree","Somewhat disagree",45.3,28,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",2,31,0,"Democrat",0,0,0.871468009862344 +700,86.8,32.4,"True","Agree","Probably true","Definitely false","Probably false","Definitely false","Somewhat agree","Somewhat agree",87.9,60.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Agree","Strongly agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe115a3-7699-a01f-b856-6010e378f75e","30","1","24","1","1","7","1","1","10012","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",13.2,67.6,"False","Disagree","Probably true","Definitely true","Probably false","Definitely false","Somewhat disagree","Somewhat agree",12.1,39.1,"Disagree","Strongly disagree","Agree","Strongly agree","Strongly agree","No, false","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",7,30,0,"Democrat",1,0,0.617714819145265 +701,50,50,"True","Agree","Probably false","Definitely true","Probably true","Definitely false","Somewhat disagree","Strongly agree",20,6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe115f8-e2c8-bdcb-8089-a08817274c35","55","1","12","1","1","4","2","3","23505","544","47","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false",50,50,"True","Agree","Probably false","Definitely true","Probably false","Definitely false","Somewhat agree","Strongly disagree",20,6,"Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true",4,55,0,"Republican",0,0,1.09919840793407 +702,59.8,56.8,"False","Strongly agree","Probably true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",20.8,7.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe11594-7b39-9344-3d9a-83d81d05e908","72","1","23","1","1","7","2","2","66213","616","17","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",59.8,43.2,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.8,7.9,"Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",7,72,0,"Republican",0,2,1.04464351786682 +703,71.5,71.5,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat disagree","Somewhat agree",22.1,46.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe1149d-9a37-d7ff-cf44-5b45969e152e","45","1","23","1","1","8","3","1","10013","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure",71.5,71.5,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",22.1,46.3,"Disagree","Strongly disagree","Disagree","Agree","Agree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure",8,45,1,"Republican",0,0,1.17314690051286 +704,85.3,79.1,"True","Agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly agree",11.4,20.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe11528-8448-b00a-a2a1-2a3a1afb891b","45","1","24","2","1","8","1","1","10013","501","33","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",85.3,20.9,"True","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly agree",11.4,20.6,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false",8,45,0,"Republican",1,0,1.5329673680024 +705,25.1,76.7,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably true","Definitely false","Strongly agree","Strongly disagree",44.5,75.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe11471-dfbc-bec9-3481-f6087df8eaa3","18","1","-3105","2","7","1","4","3","20744","511","21","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true",25.1,23.3,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",44.5,75.8,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","No, false",1,18,0,"Republican",0,3,1.94305808940572 +706,0.1,50,"Not sure","Neither agree nor disagree","Definitely true","Probably true","Probably true","Definitely false","Somewhat agree","Strongly disagree",62.2,80.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe114c9-4e05-ac48-53da-c848b2b3a0af","26","1","1","3","1","4","3","3","27844","560","34","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",0.1,50,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably true","Definitely false","Somewhat disagree","Strongly disagree",37.8,19.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",4,26,0,"Independent",0,1,1.14043104095828 +707,31.3,70.1,"False","Disagree","Definitely false","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly agree",85,85,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe11677-5866-54ea-e64b-9a7092e312b7","61","1","19","1","1","7","3","2","48617","540","23","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Not sure","Not sure","Not sure",68.7,70.1,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",15,15,"Disagree","Disagree","Disagree","Disagree","Agree","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure",7,61,0,"Independent",0,2,1.19918316758111 +708,93.1,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",56.4,96.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe1108a-42c8-ed8b-2de8-39c90518d51a","77","1","15","1","1","6","2","3","27610","560","34","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true",6.90000000000001,99.9,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",43.6,3.8,"Strongly disagree","Disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","Not sure","No, false","No, false",6,77,1,"Republican",0,0,0.957543870478141 +709,60.2,86.5,"Not sure","Strongly agree","Not sure","Definitely false","Definitely true","Probably false","Somewhat disagree","Strongly agree",85.3,92.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Disagree","Agree","Vote for a different candidate","5fe11666-957d-77cf-578c-fd8bd822f529","47","1","9","1","1","4","3","2","60202","602","14","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure",60.2,86.5,"Not sure","Strongly disagree","Not sure","Definitely false","Definitely false","Probably false","Somewhat agree","Strongly disagree",14.7,7.5,"Agree","Neither agree nor disagree","Disagree","Agree","Disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","No, false","Not sure","Not sure",4,47,0,"Independent",1,1,0.458689698471341 +710,64.6,87.7,"True","Agree","Definitely true","Probably true","Definitely true","Definitely false","Somewhat disagree","Strongly agree",85.6,76.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe114a5-0862-0970-5d52-5a2a938f8a59","45","1","24","1","1","8","1","1","10013","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",64.6,87.7,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",14.4,23.2,"Disagree","Strongly disagree","Neither agree nor disagree","Disagree","Strongly disagree","No, false","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false",8,45,0,"Democrat",0,0,0.788398316908465 +711,50,25,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely true","Slightly disagree","Strongly disagree",80,40.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe1160c-5f17-a0c9-5d14-e1436647c0f4","22","1","1","1","1","2","2","4","92111","825","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",50,25,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly agree","Strongly disagree",20,59.8,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,22,0,"Republican",0,2,1.12790112616122 +712,24.1,84.8,"False","Strongly agree","Definitely true","Definitely true","Probably true","Definitely true","Strongly disagree","Strongly agree",6.5,27.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe1115e-5fb2-ea72-fb4c-e269e6f50b92","71","1","19","1","1","7","1","2","57006","725","42","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure",75.9,84.8,"False","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",6.5,27.6,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure",7,71,0,"Democrat",0,0,0.702039267968476 +713,50,99.9,"True","Agree","Probably false","Probably true","Probably true","Definitely false","Somewhat disagree","Strongly disagree",22.8,29,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Agree","Not vote in the presidential election","5fe1165f-3b79-7c27-2f83-2800f94980c9","23","1","1","1","1","1","3","3","35020","630","1","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false",50,0.0999999999999943,"False","Disagree","Probably true","Probably true","Probably false","Definitely false","Somewhat agree","Strongly disagree",22.8,29,"Agree","Disagree","Disagree","Disagree","Agree","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true",1,23,0,"Independent",0,0,1.37434485647712 +714,65.9,55.4,"True","Neither agree nor disagree","Not sure","Probably false","Probably false","Definitely false","Slightly agree","Slightly agree",86.1,92.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe117af-cc2e-bdd2-227c-294d9aa28790","22","1","3","1","1","5","2","2","56716","724","24","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true",34.1,55.4,"True","Neither agree nor disagree","Not sure","Probably true","Probably false","Definitely false","Slightly agree","Slightly agree",13.9,7.40000000000001,"Disagree","Disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false",5,22,0,"Other",0,1,1.49935735572671 +715,99.9,99.9,"True","Agree","Definitely true","Probably true","Definitely true","Definitely false","Strongly agree","Somewhat disagree",26.4,14.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Disagree","Agree","Disagree","Neither agree nor disagree","Disagree","Not vote in the presidential election","5fe11125-a1d6-76dc-c00c-182063b6e38c","75","2","12","1","1","2","1","3","29568","570","41","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true",0.0999999999999943,0.0999999999999943,"True","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Somewhat agree",26.4,14.6,"Disagree","Disagree","Disagree","Neither agree nor disagree","Agree","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","No, false",2,75,0,"Democrat",0,0,1.31422437374394 +716,64,84.4,"True","Disagree","Definitely true","Probably false","Probably false","Definitely false","Slightly disagree","Strongly agree",76.1,74.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe11688-3e95-fdf4-c740-e990246e4324","61","1","4","1","1","2","3","4","93283","800","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",36,15.6,"False","Disagree","Definitely false","Probably false","Probably false","Definitely false","Slightly disagree","Strongly disagree",23.9,25.7,"Agree","Agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",2,61,0,"Independent",0,0,1.54664812158548 +717,76.5,75,"True","Agree","Probably true","Probably true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",24.3,24.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11410-55b1-6aa9-dbc2-6bfbab6250e7","30","1","18","1","1","7","2","4","98121","819","48","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",23.5,25,"False","Agree","Probably true","Probably true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",24.3,24.2,"Strongly disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true",7,30,0,"Democrat",0,2,0.824062531779561 +718,21.3,50,"True","Disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",78.4,65.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe1170c-197f-c1f9-7a45-7bc2e5de4c1b","19","1","1","2","1","2","3","3","76053","623","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure",21.3,50,"True","Agree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",21.6,34.1,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure",2,19,0,"Independent",0,0,1.79587553480329 +719,34.2,99.9,"True","Disagree","Definitely false","Definitely true","Probably true","Definitely false","Strongly agree","Strongly agree",12.7,52.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11927-4fc5-e2cf-56b4-6469f884485e","61","1","1","1","1","1","1","4","85711","789","3","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure",65.8,99.9,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",12.7,52.3,"Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","No, false","No, false","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Not sure",1,61,0,"Democrat",1,0,1.0394050185655 +720,99.6,49.6,"Not sure","Disagree","Definitely false","Probably true","Definitely true","Definitely true","Somewhat disagree","Slightly agree",26,42.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe11877-ebc9-7b2d-3f4c-8c3c40bae566","56","1","9","1","1","6","2","2","64801","603","26","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",0.400000000000006,50.4,"Not sure","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Slightly agree",26,42.9,"Strongly disagree","Strongly agree","Agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",6,56,0,"Republican",0,0,1.19918316758111 +721,50,83,"True","Disagree","Probably true","Not sure","Definitely true","Definitely false","Somewhat agree","Strongly agree",72,77,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe11823-e4d6-4793-6f75-af8f05be76bf","46","1","-3105","1","1","4","2","3","29732","517","41","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,83,"False","Agree","Probably true","Not sure","Definitely false","Definitely false","Somewhat agree","Strongly disagree",28,23,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,46,1,"Republican",0,1,1.11226716750253 +722,50,29.9,"False","Agree","Probably false","Definitely false","Probably false","Probably true","Somewhat agree","Slightly agree",40,30.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe118c2-96f1-0082-5968-a2398c02757d","24","1","1","16","2","2","2","4","88081","765","32","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",50,29.9,"True","Agree","Probably true","Definitely true","Probably false","Probably true","Somewhat agree","Slightly agree",40,30.7,"Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Agree","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",2,24,0,"Republican",0,0,1.59697515914678 +723,99.9,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",72.8,31,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe11671-2485-4dbe-d7f4-8755a7e60b1d","57","1","22","1","1","7","1","4","83854","881","13","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",0.0999999999999943,0.0999999999999943,"True","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",72.8,31,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true",7,57,1,"Democrat",0,0,1.0394050185655 +724,52,71.2,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly disagree",83.8,82.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe111b1-ba54-7039-3f39-6f2fc6175b36","65","1","2","1","1","2","3","3","37122","659","43","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","Yes, true","Yes, true",52,28.8,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",16.2,17.6,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",2,65,0,"Independent",0,0,0.643505067882763 +725,76,29.4,"True","Disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",90.8,84.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11c06-5a77-efba-f354-a4c6f08fbce7","22","1","18","2","1","6","1","4","85013","753","3","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true",24,29.4,"True","Agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",9.2,15.5,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,22,0,"Democrat",0,0,0.990478000565994 +726,50,59.6,"Not sure","Agree","Probably true","Probably true","Probably true","Definitely false","Slightly agree","Strongly agree",76,78,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe11d12-613a-578d-e3ad-464fa8a1b6f2","20","2","5","2","1","2","2","3","23502","544","47","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",50,40.4,"Not sure","Disagree","Probably false","Probably true","Probably false","Definitely false","Slightly disagree","Strongly disagree",24,22,"Disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Agree","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure",2,20,1,"Republican",0,0,0.838507271428478 +727,31.7,71,"False","Disagree","Not sure","Probably true","Probably false","Not sure","Somewhat agree","Slightly agree",29.5,22.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Disagree","Not vote in the presidential election","5fe0f87d-8690-77b2-2264-7d9c47d095fe","26","2","4","1","1","4","2","2","58554","687","35","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Not sure",31.7,71,"True","Agree","Not sure","Probably true","Probably false","Not sure","Somewhat disagree","Slightly disagree",29.5,22.8,"Strongly agree","Agree","Agree","Disagree","Agree","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Not sure",4,26,0,"Republican",0,0,1.30488343971418 +728,83.1,99.9,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Not sure","Definitely true","Somewhat disagree","Strongly disagree",46,94.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe11dd3-6597-e427-6412-840d970d89bb","21","1","1","1","1","2","3","3","72651","619","4","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",16.9,0.0999999999999943,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Not sure","Definitely true","Somewhat disagree","Strongly disagree",54,5.40000000000001,"Strongly agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",2,21,1,"Republican",0,0,0.801596112833044 +729,41.4,99.9,"False","Strongly disagree","Probably false","Definitely false","Probably true","Definitely false","Strongly disagree","Strongly disagree",25.2,28.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe11cd0-0788-3f3c-f51b-d7d8d9f78bdb","24","2","3","1","1","2","3","3","38237","632","43","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true",58.6,99.9,"False","Strongly agree","Probably false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",25.2,28.5,"Agree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true",2,24,0,"Other",0,0,1.10018682366745 +730,71.1,90,"True","Disagree","Probably false","Not sure","Definitely true","Probably false","Strongly disagree","Somewhat disagree",63.3,72.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe11c3b-26aa-6fbd-6d5c-9ac679a52c4e","49","2","1","1","1","6","1","3","42262","659","18","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true",71.1,90,"True","Agree","Probably false","Not sure","Definitely false","Probably false","Strongly agree","Somewhat disagree",36.7,27.6,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true",6,49,0,"Independent",0,0,0.33657377307865 +731,50,50,"False","Neither agree nor disagree","Probably false","Probably false","Probably true","Definitely false","Slightly agree","Strongly agree",57.6,43.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe11d68-53fc-b64f-153a-a3bf8461a9e0","39","1","19","1","1","4","3","4","95765","862","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","Not sure","","No, false","Yes, true","Not sure","No, false","No, false","Not sure","No, false",50,50,"True","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Slightly disagree","Strongly disagree",57.6,43.4,"Disagree","Agree","Disagree","Disagree","Agree","No, false","Not sure","No, false","Not sure","","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",4,39,0,"Independent",0,0,1.20216446936721 +732,48.4,27.2,"False","Strongly disagree","Definitely true","Definitely true","Definitely false","Probably false","Strongly disagree","Strongly agree",3.7,5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11d5a-3214-c194-0df8-6ec49498f714","62","2","8","1","1","2","1","3","27455","518","34","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true",48.4,72.8,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",3.7,5,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",2,62,0,"Democrat",1,0,0.59134387049726 +733,49.7,36.7,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Probably false","Somewhat agree","Slightly agree",36.7,35.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Agree","Agree","Disagree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe11e32-c59c-f5f9-00d1-12f2f902e671","47","2","1","1","1","2","2","3","35959","630","1","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",50.3,63.3,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Probably false","Somewhat disagree","Slightly disagree",36.7,35.6,"Agree","Disagree","Agree","Disagree","Strongly agree","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","No, false",2,47,1,"Republican",0,0,0.890389101626892 +734,7.4,12.7,"False","Strongly disagree","Not sure","Definitely true","Probably true","Definitely true","Somewhat disagree","Strongly agree",81.1,38,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe11e91-4877-cfea-5ebf-087b04511ea0","22","2","1","1","1","2","2","2","48223","505","23","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",92.6,87.3,"True","Strongly disagree","Not sure","Definitely true","Probably true","Definitely true","Somewhat disagree","Strongly disagree",81.1,38,"Strongly agree","Agree","Agree","Strongly agree","Strongly disagree","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false",2,22,0,"Republican",1,0,0.700060789783147 +735,50,61.4,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Somewhat agree",50.1,29,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11dc2-82f4-6a20-07db-7085ca75c089","18","2","12","2","1","2","3","3","78224","641","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false",50,38.6,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",50.1,29,"Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",2,18,0,"Independent",0,0,0.563508049350613 +736,95.4,99.9,"Not sure","Strongly disagree","Probably true","Probably true","Definitely true","Definitely false","Strongly agree","Strongly agree",80.1,95.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11d05-0769-8a5e-494a-b9e119ccd6ac","54","1","8","1","1","4","1","3","30309","524","11","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Yes, true","Yes, true",95.4,0.0999999999999943,"Not sure","Strongly disagree","Probably true","Probably false","Definitely true","Definitely false","Strongly agree","Strongly disagree",19.9,4.2,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true",4,54,0,"Democrat",1,0,0.747484873742735 +737,80.4,83.2,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Definitely true","Slightly agree","Slightly agree",85.1,63.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Not vote in the presidential election","5fe11dda-569a-927d-0f6b-3f7455755665","51","1","1","1","1","2","3","3","40312","541","18","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure",80.4,16.8,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Slightly agree","Slightly agree",85.1,63.3,"Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure",2,51,0,"Independent",0,0,1.9069936046507 +738,34.4,66.5,"True","Agree","Probably true","Probably false","Definitely true","Probably false","Somewhat agree","Somewhat disagree",28.7,13.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11f24-ed65-8494-01f6-147d8ead9625","21","2","1","2","1","2","3","4","90250","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure",34.4,33.5,"True","Disagree","Probably true","Probably true","Definitely true","Probably true","Somewhat agree","Somewhat agree",71.3,86.6,"Strongly agree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure",2,21,0,"Republican",0,0,0.792894767437384 +739,72.9,86.4,"False","Disagree","Definitely true","Probably false","Definitely false","Probably false","Slightly agree","Strongly agree",75.6,75.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Neither agree nor disagree","Disagree","Vote for the Republican Donald Trump","5fe11d62-10a9-5b6a-a69e-5c7cc328ebc4","54","2","1","1","1","6","2","3","28715","567","34","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",27.1,13.6,"False","Disagree","Definitely false","Probably true","Definitely false","Probably false","Slightly agree","Strongly disagree",24.4,24.8,"Agree","Agree","Disagree","Neither agree nor disagree","Disagree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true",6,54,0,"Independent",0,0,0.890389101626892 +740,73.8,69.9,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably false","Somewhat agree","Slightly disagree",67.7,78.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11d74-4fc5-6bc3-5fdd-03fd43c3f6e9","20","1","7","2","1","6","1","4","92346","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Yes, true","Not sure",26.2,69.9,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably true","Somewhat disagree","Slightly disagree",32.3,21.3,"Disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure",6,20,0,"Independent",0,0,0.990478000565994 +741,49.8,78,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly agree",68.5,73.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11db6-a068-2b39-8d55-1780d4b29899","67","2","4","1","1","4","1","3","33905","571","10","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",49.8,22,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",31.5,26.1,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","No, false","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",4,67,0,"Democrat",0,1,0.515136934744757 +742,76.3,23,"False","Strongly disagree","Probably false","Definitely true","Definitely false","Definitely true","Slightly disagree","Strongly agree",80.4,84.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe11ca6-b9f9-0f53-73e3-40a3f82050ba","60","2","7","1","1","6","2","3","36117","698","1","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","No, false",23.7,77,"False","Strongly agree","Probably true","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",19.6,15.3,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","Yes, true",6,60,0,"Republican",0,1,0.879927333598919 +743,60,56.6,"True","Disagree","Probably true","Probably false","Probably true","Probably true","Slightly agree","Strongly agree",24.3,25.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Neither agree nor disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe11f1d-6e16-1821-86d9-b93fce8d976c","40","1","18","1","1","6","4","4","85041","753","3","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true",60,56.6,"False","Disagree","Probably false","Probably false","Probably false","Probably false","Slightly agree","Strongly disagree",24.3,25.5,"Disagree","Disagree","Neither agree nor disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false",6,40,0,"Other",0,2,1.20216446936721 +744,49.9,76.1,"Not sure","Neither agree nor disagree","Not sure","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",50.7,94.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11ec0-d4dd-089b-00f8-11e31de851e5","31","1","5","2","1","2","1","3","32922","534","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",49.9,23.9,"Not sure","Neither agree nor disagree","Not sure","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.7,94.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",2,31,0,"Democrat",0,0,0.76528861612494 +745,99.9,99.9,"True","Strongly disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",30,21,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe11ee7-2e7c-242e-f46e-c3a476a0b602","53","2","5","1","1","2","1","3","29306","567","41","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",99.9,0.0999999999999943,"True","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",30,21,"Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",2,53,0,"Democrat",0,0,1.52658135748604 +746,55.4,59.6,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",43.4,24.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11f12-1b5d-1c47-3eba-3125077ad964","52","1","21","1","1","7","1","4","92118","825","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure",55.4,40.4,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",43.4,24.4,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false","Not sure",7,52,0,"Democrat",0,2,1.05176287332933 +747,50,95.6,"False","Strongly disagree","Definitely true","Probably false","Definitely true","Definitely false","Slightly agree","Strongly agree",61,75.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11e29-badc-bde8-7edb-85916e8e3722","69","2","2","1","1","4","1","4","91384","803","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true",50,95.6,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",39,24.4,"Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",4,69,0,"Democrat",0,0,0.724833266434345 +748,54.5,74.3,"False","Agree","Probably true","Not sure","Definitely true","Not sure","Strongly disagree","Strongly agree",38.3,35.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe11e6e-3c78-e3d7-da45-5697c972fe7b","70","2","5","1","1","6","1","3","27703","560","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure",45.5,25.7,"False","Disagree","Probably false","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",38.3,35.1,"Disagree","Agree","Disagree","Neither agree nor disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure",6,70,0,"Democrat",0,0,0.515136934744757 +749,29.8,59.8,"False","Strongly disagree","Probably false","Not sure","Definitely false","Probably true","Strongly agree","Slightly disagree",75.3,60.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe11ed0-9ce2-b383-ac54-70518d0a6855","44","1","22","5","1","6","2","4","94070","807","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","No, false","No, false","Not sure","Not sure",29.8,40.2,"False","Strongly agree","Probably false","Not sure","Definitely false","Probably false","Strongly agree","Slightly disagree",24.7,39.5,"Agree","Disagree","Strongly disagree","Disagree","Disagree","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","No, false","Not sure","Not sure",6,44,0,"Republican",0,1,0.616644184705796 +750,76.8,76,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly disagree",76.3,86.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe11f69-40a4-43cd-a8fb-021a9d862b9d","47","2","7","1","1","6","1","4","93955","828","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure",76.8,76,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.7,13.3,"Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure",6,47,0,"Democrat",1,0,2.14800546649339 +751,50,93.2,"Not sure","Agree","Definitely true","Definitely true","Probably true","Definitely false","Strongly disagree","Strongly agree",42.2,37.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11f95-7f20-11c5-ca88-2ac2a06ac8c6","19","2","8","2","1","2","1","2","51503","652","16","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false",50,93.2,"Not sure","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",42.2,37.5,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",2,19,0,"Democrat",1,0,0.614765598912923 +752,71.5,65.8,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely true","Strongly disagree","Somewhat disagree",25.6,18.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe11f6d-970f-a407-9834-66b955ed661c","40","1","21","1","1","7","1","1","11205","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",28.5,34.2,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat agree",25.6,18.1,"Neither agree nor disagree","Disagree","Strongly disagree","Agree","Disagree","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","No, false","Not sure","Yes, true","Not sure",7,40,0,"Democrat",1,2,0.605598834997122 +753,99.9,99.9,"True","Strongly agree","Probably true","Probably true","Probably true","Probably true","Strongly agree","Somewhat agree",98,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe1204d-fb7b-bb1b-96df-7005f1a82e20","64","1","18","1","2","8","1","4","93619","866","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",99.9,99.9,"True","Strongly disagree","Probably true","Probably true","Probably true","Probably false","Strongly agree","Somewhat disagree",98,100,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",8,64,0,"Democrat",1,1,1.92812186070948 +754,75,58,"False","Disagree","Definitely false","Probably true","Probably true","Probably false","Strongly agree","Strongly disagree",8.7,12.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11f86-00ea-7f1c-51b2-f136d251ddcf","56","1","3","15","1","6","1","1","11203","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",75,58,"False","Disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",8.7,12.9,"Strongly agree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",6,56,0,"Democrat",0,1,0.594689297622725 +755,3.3,89.2,"True","Agree","Definitely true","Probably true","Probably false","Not sure","Strongly agree","Somewhat agree",16.4,21,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe11eaf-5a70-0fb5-699c-d67fc6ed45b6","40","1","20","1","1","6","1","1","10001","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",3.3,89.2,"False","Agree","Definitely false","Probably true","Probably false","Not sure","Strongly disagree","Somewhat agree",16.4,21,"Disagree","Strongly disagree","Strongly agree","Agree","Disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false",6,40,1,"Democrat",0,1,0.605598834997122 +756,36.9,47.7,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably true","Probably false","Slightly agree","Slightly disagree",65.4,72.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe11fea-b8ac-71ac-6d78-21dd84193889","46","2","1","1","1","2","2","2","54868","702","50","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",63.1,47.7,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably false","Probably false","Slightly agree","Slightly disagree",34.6,27.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,46,0,"Republican",0,0,1.66544152049953 +757,50,50,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",75.7,85.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe11e8c-3092-c358-3386-a389373f544d","74","1","20","1","1","6","2","2","60487","602","14","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true",50,50,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",24.3,14.5,"Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","No, false","Not sure","Yes, true",6,74,1,"Republican",0,0,1.04464351786682 +758,47.3,52.8,"False","Disagree","Probably false","Probably false","Definitely false","Definitely true","Somewhat agree","Strongly agree",11.3,4.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe11ee1-2b7c-f923-c109-2ca00ca859da","68","1","20","1","1","8","3","1","18407","577","39","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false",52.7,47.2,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",11.3,4.4,"Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",8,68,0,"Independent",0,3,1.0099548530942 +759,28.8,50,"False","Agree","Probably true","Definitely false","Definitely true","Definitely true","Somewhat agree","Strongly agree",60.1,90.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1209b-93e8-f51f-3f5b-c9b7250540c5","22","1","23","6","1","2","2","1","08540","501","31","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false","No, false","Yes, true",28.8,50,"True","Agree","Probably true","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",39.9,9.09999999999999,"Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true",2,22,0,"Republican",0,1,0.433680239961177 +760,53.5,61.4,"True","Disagree","Probably false","Probably true","Definitely false","Definitely true","Slightly agree","Strongly agree",30.2,9.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe11fdd-cb85-9dff-37b9-5bc239064804","76","1","-3105","1","1","8","2","4","80111","751","6","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Not sure",46.5,61.4,"False","Disagree","Probably false","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",30.2,9.1,"Disagree","Agree","Disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Not sure",8,76,0,"Republican",0,2,1.34733039815278 +761,50,21.6,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",80,75.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11f97-48f1-8577-8042-f4477cf822d9","62","1","19","1","1","7","1","2","60453","602","14","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","No, false","Yes, true",50,78.4,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20,24.8,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true",7,62,0,"Democrat",0,1,0.805895656010846 +762,50.2,94.6,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly agree",63.2,87.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11e09-3b29-63f6-9c51-9d44927d5e70","60","2","2","1","1","6","1","2","67042","678","17","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure",49.8,5.40000000000001,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",36.8,12.9,"Strongly disagree","Disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure",6,60,0,"Democrat",0,0,0.645133408704056 +763,57.9,87,"False","Neither agree nor disagree","Definitely false","Probably true","Probably true","Definitely false","Somewhat agree","Somewhat agree",58,60.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for a different candidate","5fe11f17-dd3a-72f5-87d7-750493ec9bd7","56","1","2","1","1","2","1","4","97383","820","38","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",42.1,13,"False","Neither agree nor disagree","Definitely false","Probably true","Probably true","Definitely false","Somewhat agree","Somewhat disagree",42,39.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,56,0,"Democrat",0,0,0.584644615433722 +764,23.7,41.8,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably true","Definitely false","Somewhat agree","Strongly disagree",14.1,7.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Disagree","Agree","Vote for the Republican Donald Trump","5fe11c89-8090-10a2-df65-c55f7440c2b3","56","2","13","1","1","4","2","2","53220","617","50","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","Not sure","Not sure","Not sure","","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure",76.3,58.2,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably false","Definitely false","Somewhat agree","Strongly disagree",14.1,7.3,"Disagree","Agree","Disagree","Disagree","Disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure",4,56,0,"Independent",0,0,0.959966862697315 +765,99.9,50,"True","Strongly disagree","Definitely true","Probably false","Definitely false","Definitely true","Strongly disagree","Strongly agree",56.3,24.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11dd4-b95d-f989-76c2-74b2e6363d1d","61","2","3","1","1","2","1","3","33771","539","10","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Yes, true",99.9,50,"False","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",56.3,24.1,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true",2,61,0,"Independent",0,0,0.59134387049726 +766,99.9,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely true","Slightly disagree","Strongly disagree",52,62.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe120f4-bf4c-0d22-0ec2-f8d8a3bb4432","42","2","1","2","1","2","3","2","63101","609","26","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",99.9,0.0999999999999943,"False","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",52,62.3,"Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",2,42,0,"Other",0,0,1.67166497418403 +767,66.1,69.2,"True","Agree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Somewhat disagree",69.9,78.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe11ee3-f5d7-c0f3-5e48-ad3ae0b2c25c","59","1","2","1","1","2","3","2","54456","702","50","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",66.1,69.2,"False","Agree","Definitely false","Probably true","Probably false","Definitely false","Strongly agree","Somewhat disagree",30.1,21.5,"Disagree","Disagree","Strongly disagree","Strongly disagree","Agree","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",2,59,0,"Independent",0,1,0.805895656010846 +768,76,73.5,"True","Agree","Definitely false","Probably false","Probably true","Definitely false","Somewhat agree","Somewhat agree",56.7,65.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1213d-8cb9-8c3f-8ca1-fe6d7d3b7c8e","38","1","23","1","1","8","1","3","26287","598","49","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",76,73.5,"False","Agree","Definitely false","Probably true","Probably true","Definitely true","Somewhat disagree","Somewhat agree",43.3,34.3,"Disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",8,38,0,"Democrat",0,0,0.574171657914799 +769,65,87.3,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",33,24.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11eda-c0d0-df00-4372-27eb868df170","66","1","13","1","1","6","1","3","76040","623","44","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","No, false",35,12.7,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",33,24.7,"Strongly agree","Strongly agree","Strongly disagree","Disagree","Strongly disagree","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,66,0,"Democrat",0,0,0.643505067882763 +770,51.9,50,"Not sure","Agree","Probably false","Definitely false","Definitely true","Definitely true","Slightly disagree","Somewhat disagree",49.6,74,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","5fe120f2-db6c-54ad-9187-5c120e813d73","20","1","-3105","9","1","1","4","2","47304","527","15","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",48.1,50,"Not sure","Agree","Probably false","Definitely false","Definitely false","Definitely false","Slightly disagree","Somewhat disagree",49.6,74,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",1,20,0,"Other",0,1,1.14441256082637 +771,76.7,59.5,"Not sure","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",53.4,73.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe1203b-09cb-f941-5dd4-e552430d98ec","41","1","1","1","1","2","3","2","45662","564","36","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",23.3,59.5,"Not sure","Agree","Probably true","Definitely true","Definitely false","Definitely false","Slightly agree","Strongly disagree",53.4,73.7,"Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",2,41,0,"Independent",0,0,0.932090096130861 +772,49.9,71.6,"True","Disagree","Definitely true","Probably true","Probably true","Definitely false","Somewhat agree","Strongly agree",78.8,77.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1203a-a2d0-0c9b-c0bb-c5b7b68f60d2","70","1","18","3","1","6","1","4","95503","802","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Not sure",49.9,71.6,"False","Disagree","Definitely false","Probably false","Probably false","Definitely false","Somewhat agree","Strongly disagree",21.2,22.7,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Not sure","Not sure","No, false","Not sure",6,70,0,"Democrat",0,2,0.691106313710623 +773,49.9,99.9,"False","Disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",0.6,0.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe11fe2-cee3-f378-081e-49d07f893a5e","43","2","3","1","1","2","1","3","77703","692","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",49.9,0.0999999999999943,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",0.6,0.6,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",2,43,0,"Democrat",1,0,0.459634341107367 +774,98.4,97.4,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Somewhat agree",100,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe121f5-9de8-539e-f10b-56f2e92ea710","38","1","13","1","1","6","1","4","90026","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",1.59999999999999,97.4,"True","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly disagree","Somewhat agree",100,100,"Strongly agree","Disagree","Strongly agree","Disagree","Strongly disagree","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",6,38,0,"Democrat",1,0,0.807899201610574 +775,69.7,61.9,"False","Disagree","Definitely true","Probably false","Probably true","Definitely true","Somewhat disagree","Strongly agree",38.2,13.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Vote for a different candidate","5fe11f65-42bb-f4b2-7dec-768306f48eaf","53","1","23","1","1","6","2","1","16057","508","39","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false",30.3,61.9,"False","Disagree","Definitely false","Probably false","Probably false","Definitely false","Somewhat disagree","Strongly disagree",38.2,13.5,"Disagree","Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","No, false",6,53,0,"Republican",0,3,0.443458346423691 +776,50,25.1,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat disagree","Strongly agree",79.4,93.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Disagree","Not vote in the presidential election","5fe1205a-153a-9597-d497-0c9650cee783","22","2","7","1","1","2","2","3","30555","524","11","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false",50,74.9,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly agree",20.6,6.40000000000001,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","No, false",2,22,0,"Independent",0,0,1.10018682366745 +777,99.9,91.4,"False","Disagree","Definitely true","Probably true","Probably true","Definitely true","Slightly agree","Somewhat agree",86.8,63.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Disagree","Agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe12174-3636-0873-7516-fcab2fe3d598","40","1","24","1","1","7","2","1","10013","501","33","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",0.0999999999999943,8.59999999999999,"False","Agree","Definitely false","Probably false","Probably false","Definitely true","Slightly disagree","Somewhat disagree",13.2,36.7,"Disagree","Disagree","Disagree","Strongly agree","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","No, false",7,40,0,"Democrat",0,0,0.605598834997122 +778,86,38.6,"False","Disagree","Probably true","Definitely false","Probably false","Probably true","Slightly disagree","Strongly agree",75.7,70.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe1209b-b74b-b993-a667-d08ae4a58fc8","65","1","-3105","1","1","7","3","2","65605","619","26","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true",86,38.6,"True","Disagree","Probably false","Definitely false","Probably false","Probably false","Slightly disagree","Strongly disagree",24.3,29.6,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",7,65,1,"Independent",0,1,1.04464351786682 +779,99.9,70.1,"False","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly disagree",80.6,76.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe1211e-fd2b-8d37-3c76-db89135820b8","56","1","21","1","1","6","2","1","07945","501","31","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","No, false","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",0.0999999999999943,29.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.4,23.3,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false",6,56,0,"Republican",0,1,1.15936282486158 +780,50.5,75.8,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",2,2.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe1206e-5bdb-1a28-c4da-3e0838df4aa8","32","2","1","1","1","4","3","1","06710","533","7","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",50.5,75.8,"False","Agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",2,2.1,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true",4,32,0,"Independent",0,0,0.494491394648778 +781,69.6,97.5,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Not sure","Slightly agree","Slightly disagree",53,70.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe1228d-8cfa-8e9e-b9e6-cf94abbf48b4","35","1","20","2","1","7","1","1","07097","501","31","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","Not sure",69.6,2.5,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Not sure","Slightly disagree","Slightly agree",53,70.6,"Agree","Disagree","Agree","Neither agree nor disagree","Agree","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","No, false","Not sure",7,35,0,"Democrat",0,0,0.791344418797853 +782,44.8,61.5,"False","Disagree","Definitely false","Probably true","Definitely true","Definitely false","Somewhat disagree","Strongly disagree",24.3,11.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe121f6-41d3-9da6-97cb-0b34c3b04f34","40","2","14","1","1","6","2","2","55311","613","24","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","Not sure",55.2,61.5,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",24.3,11.7,"Disagree","Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","Not sure",6,40,0,"Republican",0,0,0.746154240255765 +783,99.9,99.9,"False","Disagree","Probably false","Probably false","Definitely false","Probably true","Somewhat disagree","Strongly disagree",25.1,50.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Disagree","Disagree","Disagree","Vote for a different candidate","5fe11efe-78ed-7958-111a-d59835ad3dc7","62","1","20","15","1","7","2","4","92618","803","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",0.0999999999999943,0.0999999999999943,"True","Disagree","Probably false","Probably false","Definitely false","Probably false","Somewhat agree","Strongly disagree",25.1,50.1,"Disagree","Disagree","Disagree","Disagree","Disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure","Yes, true","Yes, true",7,62,0,"Independent",0,0,0.446240943805931 +784,50,0.1,"Not sure","Strongly disagree","Definitely false","Not sure","Definitely true","Definitely false","Somewhat agree","Strongly disagree",25,25,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","Vote for a different candidate","5fe11fe2-569f-d51d-f9a1-f31a0820053a","46","1","2","1","1","2","2","3","40272","529","18","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure",50,99.9,"Not sure","Strongly agree","Definitely false","Not sure","Definitely false","Definitely false","Somewhat agree","Strongly disagree",25,25,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Disagree","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure",2,46,0,"Republican",0,0,0.420445349739579 +785,51.4,72.6,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Definitely true","Strongly disagree","Strongly agree",30,45.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Disagree","Strongly disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1221b-c421-3751-7bb6-f107c2aef2f2","40","1","8","1","1","3","1","1","15236","508","39","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",48.6,72.6,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",30,45.9,"Agree","Strongly agree","Strongly disagree","Agree","Neither agree nor disagree","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",3,40,0,"Democrat",1,0,0.605598834997122 +786,99.9,99.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably true","Definitely true","Strongly agree","Strongly agree",73,45.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe120e7-902b-9958-a207-7c71b1b960ee","52","2","1","2","1","6","1","3","39842","525","11","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true",99.9,99.9,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Probably true","Definitely false","Strongly disagree","Strongly disagree",27,54.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","No, false",6,52,0,"Democrat",1,0,0.781904367900328 +787,60,40.1,"False","Agree","Probably false","Definitely false","Probably false","Probably false","Slightly disagree","Slightly agree",55,45,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe11efb-99c0-37e2-17e1-a60ca7c46ab7","63","1","12","15","16","4","3","4","80640","751","6","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false",40,40.1,"True","Agree","Probably true","Definitely true","Probably true","Probably true","Slightly disagree","Slightly agree",45,55,"Disagree","Strongly disagree","Agree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","No, false",4,63,0,"Independent",0,0,2.18987158787533 +788,50,74.5,"Not sure","Strongly disagree","Probably true","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly agree",24.9,36.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe11f7a-4de2-5a48-6cd0-14bb966def46","63","1","19","1","1","4","2","2","63459","717","26","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",50,25.5,"Not sure","Strongly agree","Probably true","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.9,36.7,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",4,63,0,"Republican",0,0,2.05601198902308 +789,0.1,99.9,"False","Strongly disagree","Probably false","Definitely false","Probably true","Probably false","Strongly agree","Strongly agree",78.6,96.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Agree","Strongly disagree","Not vote in the presidential election","5fe12086-e51c-78a7-e510-a09ae07d203f","75","2","2","1","1","-3105","3","2","61054","610","14","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false",99.9,99.9,"False","Strongly disagree","Probably false","Definitely false","Probably false","Probably false","Strongly agree","Strongly disagree",21.4,3.5,"Strongly agree","Disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",-3105,75,0,"Independent",0,0,1.43376822240912 +790,69.3,22.2,"True","Strongly agree","Definitely true","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",32,17.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe120fd-265f-6163-b549-4ada519c56a3","65","1","19","1","1","7","1","3","20706","511","21","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",30.7,22.2,"True","Strongly agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",32,17.7,"Agree","Strongly agree","Agree","Strongly agree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true",7,65,0,"Republican",1,0,0.957543870478141 +791,49.8,21.1,"Not sure","Disagree","Definitely true","Probably true","Definitely false","Probably true","Strongly agree","Strongly agree",74.6,51.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe12035-1957-94d8-1cca-e7cde914c26a","53","2","3","2","1","6","1","3","36867","522","1","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","No, false","Not sure","No, false",49.8,21.1,"Not sure","Agree","Definitely false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",74.6,51.2,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",6,53,0,"Democrat",0,0,0.781904367900328 +792,50,77.6,"False","Agree","Not sure","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",77.9,95.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe120b2-f1df-0012-fc5a-02ce74fd3a47","87","2","6","1","1","3","1","1","19464","504","39","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","No, false",50,77.6,"False","Disagree","Not sure","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",22.1,4.40000000000001,"Disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",3,87,0,"Democrat",0,0,0.543332857421717 +793,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly disagree","Strongly agree",24.7,20.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe121c7-04a1-0b70-c075-a177933d18e6","58","1","12","1","1","2","4","4","80220","751","6","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",24.7,20.9,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,58,0,"Other",0,0,1.0394050185655 +794,67.3,12.5,"False","Agree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",70,65,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe11f7d-0e5b-ea38-cd39-d08120648a13","73","1","8","1","1","7","1","2","53005","617","50","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true",32.7,87.5,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",30,35,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true",7,73,0,"Democrat",0,0,0.702039267968476 +795,70.6,69.3,"True","Disagree","Definitely true","Definitely false","Definitely true","Probably true","Strongly agree","Strongly agree",74.5,0.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe1227c-4aad-27bf-ae8e-7db6be16b54b","44","1","14","1","1","6","1","1","10011","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",70.6,69.3,"False","Disagree","Definitely false","Definitely true","Definitely false","Probably true","Strongly agree","Strongly disagree",74.5,0.8,"Disagree","Agree","Disagree","Strongly disagree","Disagree","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true",6,44,0,"Democrat",0,2,0.605598834997122 +796,49.9,62.1,"False","Agree","Probably false","Definitely true","Probably true","Definitely false","Slightly disagree","Slightly disagree",76.1,86.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe11ee2-22c9-0f32-91fb-a52a80eba981","68","1","3","1","1","6","2","4","87108","790","32","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","No, false","No, false","No, false","No, false",49.9,37.9,"True","Agree","Probably false","Definitely true","Probably false","Definitely false","Slightly agree","Slightly agree",23.9,13.5,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","No, false","No, false","No, false","No, false",6,68,0,"Republican",0,0,1.34733039815278 +797,46.5,54.8,"True","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly agree",93.3,88.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe11f97-fa4d-4910-9d27-154372376f72","70","2","12","1","1","4","1","2","48135","505","23","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true",53.5,54.8,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",6.7,11.3,"Strongly disagree","Strongly agree","Strongly disagree","Disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",4,70,0,"Democrat",0,0,0.561994574124504 +798,50,49.8,"True","Agree","Probably false","Definitely false","Probably false","Definitely false","Slightly disagree","Slightly disagree",66,25.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1220f-773f-d055-72d0-8da67b6c15d6","60","2","2","2","1","2","4","3","38301","639","43","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true",50,50.2,"False","Agree","Probably false","Definitely true","Probably false","Definitely false","Slightly disagree","Slightly agree",34,74.5,"Agree","Agree","Agree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true",2,60,0,"Democrat",0,0,0.772717258464593 +799,75.4,70.3,"True","Disagree","Probably true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",39.9,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe120bc-af76-9545-8928-96f66f9e8ed8","71","1","18","1","1","4","2","4","95971","862","5","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure",24.6,70.3,"True","Disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",39.9,25.1,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure",4,71,1,"Republican",0,0,1.34733039815278 +800,90,90,"Not sure","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",60.1,85,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Disagree","Neither agree nor disagree","Disagree","Not vote in the presidential election","5fe11f89-bd0a-5fc9-6cfb-4aa9e7772260","48","1","4","3","2","6","3","4","90057","803","5","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",90,90,"Not sure","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",39.9,15,"Strongly agree","Strongly agree","Disagree","Neither agree nor disagree","Agree","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",6,48,0,"Independent",1,1,3.79919683556804 +801,88.9,93.3,"True","Strongly agree","","Definitely true","Definitely true","Probably true","Strongly agree","Strongly agree",100,94.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Neither agree nor disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe12063-7a83-40aa-fe93-376d19615048","40","1","1","1","1","8","1","1","10001","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure",88.9,93.3,"True","Strongly disagree","","Definitely true","Definitely true","Probably false","Strongly agree","Strongly agree",100,94.6,"Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure",8,40,1,"Democrat",0,0,0.605598834997122 +802,8.6,12.5,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",94.7,64.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe1211b-1518-dcf9-94e1-a6e2eef333f6","40","1","21","1","1","6","1","4","90004","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",8.6,87.5,"False","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",5.3,35.1,"Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Agree","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false",6,40,1,"Democrat",0,1,0.807899201610574 +803,21.4,99.9,"False","Strongly disagree","Definitely false","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",81.6,77.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe12223-c66a-ee16-af55-e9d991036914","56","1","6","1","1","5","3","4","84106","770","45","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true",21.4,99.9,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",18.4,22.7,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",5,56,0,"Independent",0,0,1.0394050185655 +804,75,80,"True","Strongly disagree","Probably true","Probably true","Probably false","Definitely false","Somewhat agree","Strongly agree",80,85,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe11fcf-2f5c-45d0-f878-99a4371a11c7","72","1","-3105","1","1","6","2","1","01571","506","22","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",75,20,"False","Strongly agree","Probably true","Probably false","Probably false","Definitely false","Somewhat disagree","Strongly disagree",20,15,"Strongly disagree","Disagree","Disagree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true",6,72,0,"Republican",0,3,1.0099548530942 +805,5.6,90.7,"False","Disagree","Definitely false","Probably false","Definitely false","Probably false","Somewhat disagree","Strongly agree",70.9,89.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Disagree","Disagree","Not vote in the presidential election","5fe11f9d-d239-b165-20c8-2254f9e848b4","67","2","3","1","1","4","3","4","97386","820","38","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true",94.4,90.7,"False","Agree","Definitely false","Probably true","Definitely false","Probably false","Somewhat agree","Strongly disagree",29.1,10.9,"Neither agree nor disagree","Disagree","Disagree","Disagree","Disagree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false","Yes, true",4,67,0,"Independent",0,0,1.84920451514596 +806,42.5,43.6,"True","Disagree","Probably true","Probably true","Probably true","Probably true","Slightly disagree","Slightly disagree",66.4,59,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe121b5-9e9b-d686-341f-486299bd68d2","70","1","10","1","1","5","3","3","78753","635","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",42.5,43.6,"False","Disagree","Probably false","Probably true","Probably false","Probably false","Slightly agree","Slightly agree",33.6,41,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Agree","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","No, false","No, false","Not sure","Yes, true",5,70,0,"Independent",0,0,0.957543870478141 +807,51.8,91.4,"False","Disagree","Probably true","Definitely false","Definitely true","Definitely false","Somewhat agree","Slightly disagree",77.2,81.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe121cb-1c85-0563-8290-49b00afdd0af","68","2","3","1","12","8","3","2","45377","542","36","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false",48.2,8.59999999999999,"False","Agree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat agree","Slightly disagree",22.8,18.3,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true",8,68,0,"Independent",0,0,2.65967529830951 +808,50,86.3,"","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",20,38.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe12137-b506-f6a1-19e6-973f37decc0a","75","1","-3105","1","1","7","3","4","92532","803","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","No, false",50,86.3,"","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",20,38.6,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",7,75,0,"Independent",0,1,1.34733039815278 +809,50,88,"False","Agree","Definitely false","Probably true","Definitely false","Definitely true","Somewhat agree","Slightly agree",73.3,91.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11fd9-50b3-2b20-e2f8-9eb958f0ac6d","63","1","3","1","1","2","1","2","63026","609","26","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","No, false","No, false","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",50,12,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Slightly disagree",26.7,8.09999999999999,"Disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",2,63,0,"Democrat",0,2,0.805895656010846 +810,57.5,72.2,"Not sure","Strongly disagree","Probably true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",33.6,9.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe12189-c7e4-be3c-125c-732dad7b6137","49","2","2","1","1","2","2","3","34233","539","10","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure",42.5,72.2,"Not sure","Strongly agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",33.6,9.3,"Disagree","Agree","Agree","Disagree","Agree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure",2,49,0,"Republican",0,1,0.890389101626892 +811,50.1,88,"Not sure","Disagree","Probably false","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",50,40.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe12093-f8c8-be7c-8815-edaf43deeea1","71","2","6","1","1","2","2","2","44054","510","36","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","Not sure","No, false","Not sure",49.9,88,"Not sure","Disagree","Probably false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",50,40.3,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Not sure",2,71,0,"Independent",0,0,1.43376822240912 +812,64.7,61,"True","Agree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",20.3,5.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe12243-b901-dfb7-787a-c397147ecde1","68","2","13","1","1","6","1","3","21237","512","21","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false",64.7,39,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.3,5.8,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",6,68,0,"Democrat",0,0,0.515136934744757 +813,50,19.2,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Probably true","Slightly agree","Strongly agree",40.1,41.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe11ff0-5909-0330-83ef-953e59444278","72","1","6","1","1","5","2","1","12561","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",50,80.8,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably true","Probably false","Slightly disagree","Strongly disagree",40.1,41.1,"Disagree","Agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",5,72,0,"Republican",0,0,1.0099548530942 +814,43.7,65.1,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.2,12.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe1212a-9790-ca32-e424-396205d48a16","73","1","14","1","1","2","3","4","89107","839","29","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",43.7,34.9,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.2,12.6,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",2,73,0,"Independent",0,1,0.905456100816435 +815,59.4,40.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",23.6,32.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe12220-3c9b-bbd5-02c3-d55b111b927e","79","1","10","15","1","7","3","2","43110","535","36","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",59.4,59.1,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.6,32.4,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",7,79,0,"Independent",0,3,0.535844609284001 +816,50.1,76.1,"Not sure","Strongly disagree","Probably false","Not sure","Probably false","Probably false","Strongly disagree","Strongly agree",74.8,87.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe11f6d-9cfc-4eb6-fff5-4d3553b462a3","41","1","1","1","1","1","4","2","63383","609","26","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false",49.9,76.1,"Not sure","Strongly agree","Probably false","Not sure","Probably false","Probably false","Strongly agree","Strongly disagree",25.2,12.8,"Neither agree nor disagree","Strongly disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","No, false",1,41,0,"Other",0,1,1.59807814544321 +817,80,15.1,"False","Disagree","Probably true","Definitely true","Probably true","Definitely true","Somewhat agree","Strongly agree",35,10.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe12154-da0b-d559-3a94-73c73ef0b428","74","2","1","1","1","5","2","3","34697","539","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","No, false","No, false","Not sure","Not sure","Yes, true","No, false","No, false","No, false","Yes, true",80,15.1,"True","Disagree","Probably false","Definitely true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",35,10.9,"Disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","No, false","No, false","No, false","No, false","Yes, true",5,74,1,"Republican",0,0,0.766530426783843 +818,50.1,99.9,"True","Disagree","Probably true","Probably false","Definitely false","Definitely true","Slightly disagree","Strongly agree",17.4,18.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe12093-f8b7-541f-1d98-fc38173995e6","60","1","19","1","1","6","2","2","43021","535","36","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure",50.1,0.0999999999999943,"False","Disagree","Probably false","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",17.4,18.1,"Disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",6,60,0,"Republican",0,3,1.19918316758111 +819,62.2,82,"True","Agree","Probably false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",40.9,25.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1238b-8468-3e9a-6bb6-1d84bfb06f32","38","2","19","5","1","7","1","1","07401","501","31","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","No, false",62.2,18,"False","Agree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",40.9,25.6,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true",7,38,0,"Democrat",1,0,0.370026825802579 +820,87.3,71.8,"False","Agree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",23.9,11.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe121ca-eadf-47d8-fda6-8f1631826914","70","1","9","1","1","3","3","4","95826","862","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",12.7,71.8,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.9,11.9,"Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",3,70,0,"Other",0,0,1.34733039815278 +821,50,1.4,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly agree",40.5,22.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe12135-44bc-1aeb-7d6e-6160be24295c","75","2","3","1","1","2","3","4","85248","753","3","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure",50,98.6,"False","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",40.5,22.4,"Disagree","Agree","Disagree","Strongly disagree","Neither agree nor disagree","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","No, false","No, false","No, false","Yes, true","Not sure",2,75,0,"Republican",0,0,1.84920451514596 +822,49.8,49.8,"False","Disagree","Definitely true","Not sure","Definitely true","Probably false","Somewhat agree","Strongly disagree",24.1,35.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe1211c-a398-8a60-d9de-6143c145aba3","48","2","2","1","1","2","1","3","29475","519","41","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false",50.2,49.8,"False","Agree","Definitely false","Not sure","Definitely true","Probably false","Somewhat agree","Strongly disagree",75.9,64.7,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true",2,48,0,"Democrat",0,0,1.52658135748604 +823,50,85.1,"False","Disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly disagree","Strongly agree",76.4,68.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1228e-d1cd-3dee-7588-7fb20c3ee10d","50","1","20","2","1","7","1","3","29486","519","41","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50,85.1,"True","Agree","Definitely true","Probably false","Definitely false","Probably true","Strongly agree","Strongly disagree",23.6,31.9,"Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",7,50,0,"Democrat",0,0,0.976748878611933 +824,50.7,70.6,"Not sure","Agree","Definitely true","Definitely true","Definitely true","Definitely false","Slightly agree","Somewhat agree",67.2,47.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe122e6-c58e-fed6-5d30-3ea009929cbe","40","1","14","2","1","6","3","4","90038","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Yes, true",50.7,70.6,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Somewhat disagree",67.2,47.5,"Agree","Disagree","Disagree","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true",6,40,0,"Democrat",0,0,1.05569312092354 +825,76.1,59.9,"Not sure","Agree","Probably false","Probably false","Probably false","Definitely false","Somewhat disagree","Strongly agree",11.3,17.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Disagree","Agree","Not vote in the presidential election","5fe122ec-ef44-e889-efe0-e9d6166dbed3","59","1","5","1","1","6","2","1","13203","555","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",76.1,40.1,"Not sure","Disagree","Probably false","Probably false","Probably false","Definitely false","Somewhat agree","Strongly disagree",11.3,17.5,"Agree","Agree","Disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",6,59,0,"Republican",0,0,1.98773959807259 +826,50,89.9,"False","Agree","Probably false","Probably true","Probably false","Definitely true","Somewhat disagree","Strongly disagree",87,94.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe12225-a677-c7fe-ec73-db7a85d3373e","73","2","6","1","1","7","2","2","68124","652","28","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",50,89.9,"False","Agree","Probably true","Probably true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",13,5.90000000000001,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","No, false",7,73,1,"Republican",0,0,0.83625520070175 +827,49.9,75.1,"True","Agree","Probably false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",66.9,71.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe1209c-a77b-e6ba-e084-b192bc9f5451","69","2","5","1","1","6","3","3","28712","567","34","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false",50.1,24.9,"False","Agree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",33.1,28.2,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false",6,69,0,"Independent",0,1,0.515136934744757 +828,39.7,68.6,"True","Agree","Probably true","Definitely false","Definitely true","Definitely false","Somewhat disagree","Slightly agree",61.1,82.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe122ac-1eea-e1f6-9515-a826157e803d","23","2","18","1","14","6","1","1","11106","501","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",39.7,31.4,"False","Disagree","Probably true","Definitely false","Definitely false","Definitely false","Somewhat agree","Slightly agree",38.9,17.6,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",6,23,0,"Democrat",0,0,0.843747619278031 +829,36.9,65.5,"False","Strongly agree","Definitely false","Definitely false","Definitely true","Probably true","Somewhat agree","Strongly disagree",35.1,51,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe12247-e397-3e6e-a35d-c2bd5f00e00d","18","1","5","5","1","1","1","1","11214","501","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",63.1,65.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably false","Somewhat disagree","Strongly disagree",35.1,51,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",1,18,0,"Republican",0,0,1.1064109430447 +830,50,50,"Not sure","Agree","Definitely true","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly agree",25.6,11,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe121a4-e249-22ab-0ab4-04b309a5bbf8","67","1","17","1","1","7","2","4","92223","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",50,50,"Not sure","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",25.6,11,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",7,67,0,"Republican",0,1,1.34733039815278 +831,50,99.9,"True","Strongly disagree","Probably false","Definitely false","Definitely true","Probably false","Strongly agree","Strongly agree",75.7,76.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe1239d-d3e8-ae35-5ebf-1759dbbc2259","39","1","1","1","1","4","3","4","98036","819","48","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","No, false",50,0.0999999999999943,"False","Strongly agree","Probably true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",75.7,76.4,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false",4,39,0,"Independent",0,0,0.807899201610574 +832,50,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Probably false","Strongly agree","Strongly agree",76.8,76.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe120ac-1852-fd5b-c5e7-b7453074da20","64","2","7","1","1","4","1","1","04736","552","20","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","No, false","Yes, true",50,50,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Probably true","Strongly agree","Strongly disagree",23.2,23.3,"Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false",4,64,0,"Democrat",0,0,0.623710965386887 +833,52.9,17.9,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly agree",86.9,85.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe12233-d543-7f48-176c-a65a6d3678ed","56","1","20","1","1","4","1","4","95124","807","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true",47.1,82.1,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",13.1,14.9,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",4,56,0,"Democrat",1,2,1.0394050185655 +834,50.1,95,"False","Strongly agree","Definitely true","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",8,12.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe12224-942b-ff0a-f9e4-9592beaad5b6","64","1","21","2","1","7","3","4","90056","803","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Yes, true","No, false","No, false",49.9,95,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",8,12.3,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true",7,64,0,"Independent",0,0,1.35820499112452 +835,50,85.6,"False","Agree","Probably true","Not sure","Definitely false","Definitely false","Strongly agree","Slightly disagree",24.5,36.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe123f6-6fc4-c46c-8469-7015baeca992","47","1","7","5","1","6","3","4","96782","744","12","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",50,85.6,"False","Disagree","Probably false","Not sure","Definitely false","Definitely false","Strongly agree","Slightly disagree",24.5,36.2,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","No, false","No, false","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",6,47,0,"Independent",0,2,0.802777695825244 +836,59.6,60.6,"True","Strongly agree","Definitely true","Definitely false","Probably true","Probably true","Somewhat disagree","Strongly disagree",63,77.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe123b9-56eb-6620-7f55-379fc3d86cad","65","1","14","1","1","7","1","2","60527","602","14","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true",59.6,60.6,"False","Strongly disagree","Definitely false","Definitely false","Probably true","Probably false","Somewhat agree","Strongly disagree",37,22.1,"Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Strongly disagree","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",7,65,0,"Democrat",0,0,0.702039267968476 +837,43.9,57.9,"False","Agree","Probably true","Definitely false","Definitely false","Definitely true","Slightly agree","Slightly disagree",31,16.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe12268-e195-bd9b-b9fb-0d68719df6b3","79","1","11","1","1","4","3","1","11725","501","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false",43.9,42.1,"True","Disagree","Probably false","Definitely true","Definitely false","Definitely false","Slightly disagree","Slightly agree",31,16.4,"Disagree","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Not sure","No, false","No, false","No, false",4,79,0,"Independent",0,1,1.0099548530942 +838,50,85,"False","Disagree","Definitely true","Probably false","Definitely false","Definitely true","Strongly agree","Strongly disagree",84.8,78.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe11ee5-7ac2-769e-f883-516795720210","63","1","5","1","1","2","3","3","42303","649","18","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",50,15,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.2,21.2,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",2,63,0,"Independent",0,1,0.73870218161496 +839,50,80,"False","Strongly disagree","Definitely true","Probably true","Probably false","Probably true","Strongly disagree","Strongly disagree",15,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe1208b-913c-31ee-7d34-e789f90bc597","54","1","21","1","1","7","1","4","92270","804","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",50,20,"False","Strongly disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",15,15,"Disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",7,54,0,"Democrat",0,0,1.05176287332933 +840,33.8,28.9,"True","Agree","Probably false","Definitely false","Probably true","Probably false","Slightly agree","Slightly agree",48.8,34.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe11e34-17ff-e428-82f2-5089e03e5fda","20","2","18","2","1","6","2","3","73127","650","37","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure",66.2,71.1,"True","Agree","Probably false","Definitely true","Probably false","Probably false","Slightly agree","Slightly disagree",48.8,34.3,"Agree","Agree","Strongly agree","Agree","Agree","Not sure","No, false","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure",6,20,0,"Independent",0,1,0.563508049350613 +841,50,80.2,"True","Agree","Definitely false","Probably false","Definitely false","Definitely true","Slightly disagree","Strongly agree",10.1,7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe11f61-fa18-32fc-161f-c9c12665a37f","65","2","8","1","1","6","3","1","19014","504","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","","No, false","No, false","Yes, true","Yes, true","No, false",50,19.8,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly agree","Strongly disagree",10.1,7,"Agree","Agree","Disagree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","","No, false","No, false","Yes, true","Yes, true","No, false",6,65,0,"Independent",0,3,0.543332857421717 +842,0.1,0.1,"False","Strongly disagree","Probably true","Probably false","Probably true","Definitely true","Strongly agree","Slightly agree",100,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Strongly agree","Neither agree nor disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe12112-e727-68b2-0337-fc68a5f46f59","39","1","1","2","1","4","1","3","77045","618","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",99.9,0.1,"False","Strongly disagree","Probably false","Probably true","Probably false","Definitely true","Strongly disagree","Slightly disagree",0,0,"Strongly agree","Strongly agree","Neither agree nor disagree","Disagree","Strongly agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,39,0,"Democrat",0,0,0.750278089496237 +843,8.3,75.2,"False","Agree","Not sure","Probably true","Definitely true","Not sure","Strongly agree","Strongly disagree",70.2,81.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe12251-776f-71c9-de1e-e81eafb09ca3","77","1","5","1","1","6","3","4","87035","790","32","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false",8.3,24.8,"True","Agree","Not sure","Probably true","Definitely true","Not sure","Strongly disagree","Strongly agree",29.8,18.8,"Neither agree nor disagree","Agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false",6,77,1,"Independent",0,0,1.34733039815278 +844,50,93.1,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",12.2,13.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe12232-15df-7e52-6026-9541a0330405","72","1","9","1","1","3","1","2","54481","705","50","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true",50,93.1,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.2,13.8,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",3,72,0,"Democrat",0,2,0.702039267968476 +845,50,95.9,"False","Strongly disagree","Definitely true","Probably false","Probably true","Definitely true","Strongly agree","Strongly disagree",15.8,17.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe120c3-fe8d-e010-99ba-a2cc8267312b","74","1","20","1","1","5","1","2","46229","527","15","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true",50,4.09999999999999,"False","Strongly disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",15.8,17.8,"Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",5,74,0,"Democrat",0,2,0.702039267968476 +846,46.1,13.2,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Definitely true","Slightly disagree","Somewhat disagree",21.7,7.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Agree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe12152-b03e-4fc0-92f7-df6325280c9d","67","1","6","1","1","5","2","2","62702","648","14","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",46.1,13.2,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Definitely false","Slightly disagree","Somewhat disagree",21.7,7.6,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",5,67,1,"Republican",0,0,1.04464351786682 +847,99.9,99.9,"False","Disagree","Probably false","Probably false","Probably true","Probably true","Slightly agree","Strongly agree",41,85,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Agree","Neither agree nor disagree","Disagree","Strongly disagree","Vote for a different candidate","5fe12190-6a05-ff2f-f53c-11dfc077bcf4","72","1","1","1","1","8","3","2","67071","678","17","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",99.9,0.0999999999999943,"False","Disagree","Probably true","Probably true","Probably false","Probably true","Slightly disagree","Strongly disagree",59,15,"Strongly agree","Agree","Neither agree nor disagree","Agree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",8,72,0,"Other",0,0,0.394883101880017 +848,1.8,93.5,"True","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",59.5,53.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe1249b-18f6-3ca9-6bdd-39b8fbf64c48","35","1","21","1","1","8","2","1","10001","501","33","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure",1.8,6.5,"True","Strongly disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",40.5,46.6,"Strongly disagree","Strongly agree","Strongly disagree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Not sure",8,35,1,"Democrat",0,0,0.605598834997122 +849,82.1,71.8,"True","Agree","Definitely true","Probably false","Probably false","Probably true","Strongly agree","Slightly disagree",30.2,37.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe1238c-3dd0-3e3b-3b72-a3638ee555f5","40","1","22","1","1","7","3","1","10013","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",82.1,28.2,"False","Disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Slightly disagree",30.2,37.9,"Agree","Disagree","Agree","Disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true",7,40,0,"Independent",0,1,0.901138905289622 +850,50,67.9,"False","Disagree","Probably false","Probably true","Definitely true","Probably false","Slightly agree","Strongly agree",35.4,28.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe121bf-22be-a172-b4ab-d8d45816478e","85","1","5","15","14","4","2","2","57006","725","42","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",50,67.9,"False","Agree","Probably false","Probably false","Definitely false","Probably false","Slightly agree","Strongly agree",35.4,28.8,"Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",4,85,0,"Republican",0,0,1.47909219124102 +851,30.3,81,"False","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",2,3.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Not vote in the presidential election","5fe1221f-eca3-a31a-9479-1406f556bd57","20","1","14","1","1","2","3","2","60191","602","14","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true",69.7,19,"False","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly disagree",2,3.2,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",2,20,0,"Independent",0,0,1.49935735572671 +852,55,99.9,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Probably false","Strongly agree","Strongly agree",60.4,5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe1235c-4841-08a0-a99b-eb8575b55468","68","1","15","1","1","6","1","1","11558","501","33","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true",55,0.0999999999999943,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",60.4,5,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true",6,68,0,"Democrat",1,0,0.678727196044171 +853,50,74.9,"False","Agree","Definitely true","Definitely false","Probably true","Definitely true","Strongly disagree","Strongly disagree",5,4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe12424-f7a1-ebb4-24dd-ff2aa8d03676","80","1","15","1","1","6","1","4","87122","790","32","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false",50,74.9,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",5,4,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",6,80,0,"Democrat",0,2,0.905456100816435 +854,50,91.2,"False","Agree","Not sure","Probably false","Probably true","Probably false","Strongly agree","Strongly disagree",76.5,88.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1245a-e2d0-ad40-1b61-4cde7d16d1d2","55","1","1","1","1","2","1","4","92234","804","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true",50,8.8,"True","Agree","Not sure","Probably true","Probably false","Probably false","Strongly agree","Strongly disagree",23.5,11.8,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",2,55,0,"Democrat",1,0,1.0394050185655 +855,50,50,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly agree",85.4,80.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe121c2-e1d5-46ec-0dc1-df6bde19f876","73","2","1","1","1","6","1","4","94608","807","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true",50,50,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.6,19.4,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",6,73,0,"Democrat",0,1,0.724833266434345 +856,76.5,13.9,"Not sure","Strongly disagree","Probably true","Definitely false","Not sure","Not sure","Strongly disagree","Slightly disagree",46,88.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe1225c-dbce-55b4-e4cc-298037ff869f","72","1","2","1","1","6","2","2","53110","617","50","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",23.5,86.1,"Not sure","Strongly disagree","Probably false","Definitely true","Not sure","Not sure","Strongly disagree","Slightly agree",54,11.7,"Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure",6,72,1,"Republican",0,0,1.04464351786682 +857,52,50.7,"Not sure","Disagree","Not sure","Probably false","Probably false","Definitely true","Slightly agree","Strongly disagree",20,20,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe122f3-369f-1daa-aa90-d0906b322f50","64","1","13","1","1","7","3","2","48017","505","23","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure",48,50.7,"Not sure","Disagree","Not sure","Probably true","Probably false","Definitely false","Slightly agree","Strongly disagree",20,20,"Strongly disagree","Disagree","Agree","Strongly disagree","Disagree","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure",7,64,0,"Republican",0,0,1.19918316758111 +858,79.4,51.2,"Not sure","Strongly agree","Definitely true","Not sure","Definitely true","Probably false","Strongly disagree","Strongly agree",49.1,51.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe120a2-c5b4-d7e2-4f2b-e04d2eb66bdc","32","2","13","15","16","5","3","3","29579","570","41","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",20.6,51.2,"Not sure","Strongly agree","Definitely false","Not sure","Definitely true","Probably true","Strongly agree","Strongly disagree",49.1,51.9,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",5,32,0,"Independent",0,0,1.69351643945936 +859,99.9,99.9,"Not sure","Disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",79.2,64.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe123c9-4102-9a21-bc6c-b887790d7a78","38","1","2","1","4","2","1","4","85705","789","3","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure",0.0999999999999943,99.9,"Not sure","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",20.8,35.6,"Agree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure",2,38,0,"Democrat",0,0,1.49867287924483 +860,50.1,63.4,"True","Strongly disagree","Definitely false","Definitely false","Probably true","Definitely false","Somewhat agree","Somewhat agree",25,18,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe12254-1c87-f2e0-8398-7fa3402503fa","62","1","-3105","1","1","6","2","2","49326","563","23","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",49.9,36.6,"True","Strongly agree","Definitely true","Definitely true","Probably false","Definitely false","Somewhat disagree","Somewhat agree",25,18,"Strongly disagree","Strongly disagree","Strongly agree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",6,62,1,"Republican",0,0,1.19918316758111 +861,78.5,86,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",93.6,84.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe11e9b-5659-a3e4-1b82-ae2993d86b01","43","1","20","1","1","7","2","1","10001","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true",78.5,86,"True","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably false","Somewhat disagree","Somewhat disagree",93.6,84.2,"Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false",7,43,1,"Republican",0,0,0.901138905289622 +862,78.1,0.1,"Not sure","Neither agree nor disagree","Not sure","Probably false","Definitely true","Definitely true","Strongly disagree","Strongly agree",86.8,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe11f8b-1e9f-7b08-251a-b76d67838aea","60","2","4","1","1","1","3","3","37821","557","43","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true",21.9,99.9,"Not sure","Neither agree nor disagree","Not sure","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",86.8,100,"Disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false",1,60,1,"Independent",0,0,1.50864454760297 +863,93.9,61,"True","Disagree","Probably false","Probably true","Definitely false","Definitely true","Somewhat disagree","Strongly agree",51.2,55,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1227e-f012-e497-4767-70b2dabecff2","44","1","4","2","1","4","1","4","90017","803","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","Not sure","No, false","Not sure",93.9,39,"False","Agree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",51.2,55,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure",4,44,0,"Democrat",0,0,1.05569312092354 +864,36.4,59.9,"False","Strongly disagree","Definitely false","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly disagree",90.3,90.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe12402-bf08-fe85-70e0-36220c3fcefe","79","1","-3105","1","1","7","3","1","08527","501","31","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false","Yes, true","Not sure","No, false",63.6,59.9,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",9.7,9.8,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",7,79,0,"Independent",0,0,0.678727196044171 +865,50,99.9,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Not sure","Slightly agree","Strongly disagree",90.3,80.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe12373-7e4d-7367-d22e-1995d6df50d6","46","2","9","1","1","2","3","3","41164","564","18","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,0.0999999999999943,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Probably false","Not sure","Slightly disagree","Strongly disagree",9.7,19.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,46,0,"Independent",0,0,1.52658135748604 +866,69.6,67.5,"Not sure","Agree","Definitely true","Not sure","Definitely false","Probably true","Slightly agree","Strongly agree",27,10.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe1237e-3f8e-3498-d1a3-f74dc4843db7","49","1","9","1","1","4","3","1","16101","508","39","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true",69.6,67.5,"Not sure","Disagree","Definitely false","Not sure","Definitely false","Probably false","Slightly disagree","Strongly disagree",27,10.1,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","No, false",4,49,0,"Independent",0,2,1.17314690051286 +867,50,0.1,"False","Strongly disagree","Probably true","Definitely false","Probably true","Definitely false","Strongly agree","Somewhat agree",25.3,14.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe12378-1819-ac48-33ad-72e496efab23","69","1","8","15","1","4","2","4","85374","753","3","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","No, false",50,99.9,"True","Strongly agree","Probably false","Definitely true","Probably false","Definitely false","Strongly disagree","Somewhat disagree",25.3,14.1,"Strongly disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","No, false",4,69,0,"Other",0,0,1.02837514041601 +868,78.9,70.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Slightly agree",39.3,11,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe12431-79ec-3ca7-3da9-edf06267b404","87","1","23","1","1","6","1","1","07728","501","31","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure",78.9,29.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly agree",39.3,11,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","Not sure",6,87,0,"Democrat",0,1,0.678727196044171 +869,50.1,78.1,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Probably true","Strongly agree","Strongly agree",53.7,35.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11dea-eaf2-a6eb-51e8-751e11cfd186","53","2","7","2","1","4","1","3","28205","517","34","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","No, false","No, false","No, false","Not sure","Yes, true","No, false",50.1,21.9,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",46.3,64.2,"Disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",4,53,0,"Independent",0,0,0.781904367900328 +870,59.2,66.2,"False","Agree","Definitely true","Definitely false","Definitely false","Definitely true","Somewhat agree","Strongly disagree",24.3,14.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe124d9-94e5-876c-b2df-de43eb815c04","53","1","8","5","1","6","1","1","11362","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Not sure","Yes, true",40.8,66.2,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",24.3,14.1,"Disagree","Disagree","Disagree","Disagree","Disagree","Not sure","No, false","No, false","No, false","No, false","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false",6,53,0,"Democrat",0,2,0.601759769516126 +871,50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably false","Probably true","Slightly disagree","Strongly disagree",50.1,35.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe122e9-e7da-1732-1e62-674dfca5d6f9","38","1","5","1","1","7","2","1","13502","526","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably false","Slightly disagree","Strongly disagree",50.1,35.7,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,38,0,"Republican",0,0,0.901138905289622 +872,37.7,58,"Not sure","Disagree","Definitely false","Probably false","Probably true","Definitely true","Slightly agree","Slightly agree",21,46,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe12204-6bed-d6b7-3d37-a28714e233c7","64","1","-3105","1","1","7","2","1","08501","501","31","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","No, false",62.3,58,"Not sure","Agree","Definitely true","Probably true","Probably false","Definitely false","Slightly agree","Slightly agree",21,46,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Not sure","No, false",7,64,0,"Republican",0,2,1.15936282486158 +873,51.6,93.9,"False","Disagree","Probably true","Definitely true","Probably true","Definitely false","Somewhat agree","Strongly disagree",90.2,90.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe1232a-3c6c-aedf-0c5e-835ea355a082","75","1","9","1","1","6","1","4","94114","807","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false",51.6,6.09999999999999,"False","Disagree","Probably false","Definitely false","Probably false","Definitely false","Somewhat disagree","Strongly disagree",9.8,9.09999999999999,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","Not sure","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",6,75,0,"Democrat",1,0,0.905456100816435 +874,50.5,99.9,"False","Disagree","Definitely false","Definitely true","Probably true","Definitely true","Strongly agree","Strongly agree",42.5,71.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe12236-16fb-6a52-09f2-a0cb30060b80","75","1","2","1","1","2","1","1","16508","516","39","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true",50.5,99.9,"False","Disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly disagree","Strongly disagree",42.5,71.6,"Agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Not sure","No, false",2,75,0,"Democrat",0,0,0.678727196044171 +875,14.6,43.3,"True","Neither agree nor disagree","Probably false","Probably true","Probably true","Definitely false","Somewhat agree","Strongly disagree",38.5,14.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Disagree","Vote for the Republican Donald Trump","5fe123fa-48ab-fd5c-e5cd-b1d4ca12640e","63","1","-3105","1","1","7","2","2","63138","609","26","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure",85.4,43.3,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Somewhat disagree","Strongly agree",38.5,14.9,"Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Agree","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure",7,63,0,"Other",0,2,1.19918316758111 +876,84.9,64.7,"True","Neither agree nor disagree","Definitely false","Probably true","Probably false","Definitely true","Strongly agree","Strongly disagree",84.9,80.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe121c2-487d-69a2-4db5-cc3ce1b62f6a","67","1","13","1","1","4","2","4","92545","803","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","","","Yes, true","Yes, true","Yes, true","","Not sure","Not sure","Not sure","Yes, true",15.1,35.3,"False","Neither agree nor disagree","Definitely true","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",15.1,19.7,"Disagree","Strongly agree","Strongly agree","Strongly disagree","Agree","No, false","Not sure","","","No, false","Yes, true","Yes, true","","Not sure","Not sure","Not sure","Yes, true",4,67,0,"Republican",0,0,0.905456100816435 +877,50.9,4.4,"True","Neither agree nor disagree","Not sure","Definitely false","Probably true","Definitely false","Somewhat disagree","Strongly agree",14.7,19.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe121b5-1ecb-c0bd-1170-a8504949736e","73","1","12","4","1","6","2","3","30273","524","11","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure",50.9,95.6,"True","Neither agree nor disagree","Not sure","Definitely true","Probably true","Definitely false","Somewhat agree","Strongly disagree",14.7,19.6,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure",6,73,1,"Republican",0,0,0.730863278678721 +878,50,99.9,"False","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely true","Slightly agree","Strongly agree",31.9,67,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1234d-a49d-9f84-766a-cc66783488f0","57","1","3","1","1","6","1","2","46227","527","15","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false",50,99.9,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",31.9,67,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",6,57,0,"Other",0,0,0.805895656010846 +879,50,29.7,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly agree",95,90.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe12464-966e-83f6-d6b2-a97bb9d9df51","61","1","14","1","1","4","1","2","66901","605","17","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false",50,70.3,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",5,9.2,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","Not sure","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",4,61,0,"Democrat",0,2,0.805895656010846 +880,17.6,50,"True","Strongly disagree","Definitely false","Definitely true","Probably true","Definitely false","Strongly agree","Strongly disagree",70,65,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe11fb2-1b9b-d175-0d6a-52600b4c8523","85","1","3","1","1","2","1","1","18643","577","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",82.4,50,"False","Strongly agree","Definitely false","Definitely true","Probably false","Definitely false","Strongly disagree","Strongly disagree",30,35,"Agree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",2,85,0,"Other",0,0,0.678727196044171 +881,49.9,49.9,"False","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",85.1,80.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe12472-5cfd-8cb4-cfe3-59441fd2276e","70","2","6","1","1","2","2","2","43065","535","36","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",49.9,50.1,"True","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.9,19.1,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Agree","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",2,70,0,"Republican",0,0,0.83625520070175 +882,63.1,84.2,"True","Agree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly agree",97.5,95.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for a different candidate","5fe124cf-a738-6b6e-eb01-ada8c29f322c","53","1","20","1","1","7","4","2","55376","613","24","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",63.1,15.8,"False","Agree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",2.5,4.40000000000001,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",7,53,0,"Republican",0,3,0.458689698471341 +883,50,89.5,"False","Agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.5,20,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe12427-78ea-695e-4ff4-b59867097af8","62","1","2","1","1","4","1","4","97058","820","38","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false",50,89.5,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.5,20,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",4,62,0,"Democrat",0,0,1.0394050185655 +884,22.8,91.9,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Somewhat disagree","",43.6,48.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe122b7-7ea7-7421-4adc-1a9de57f4711","41","1","23","1","1","7","1","3","30312","524","11","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true",22.8,91.9,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Somewhat agree","",43.6,48.4,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","Not sure","No, false","Not sure","No, false","No, false",7,41,0,"Democrat",0,1,0.574171657914799 +885,50,80.4,"True","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.8,16,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe12294-0ded-9f08-91eb-9d4ed0a5ea06","80","1","2","1","12","7","3","4","98028","819","48","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true",50,19.6,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.8,16,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",7,80,0,"Independent",0,0,1.67964332547325 +886,50,60.6,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely true","Probably true","Somewhat agree","Slightly agree",90.6,94,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe124d0-9d52-7363-fdcc-d927e88c0f03","38","1","22","1","1","7","3","2","46221","527","15","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Yes, true",50,39.4,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably false","Somewhat agree","Slightly agree",9.40000000000001,6,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false",7,38,1,"Independent",0,0,0.932090096130861 +887,50,81.3,"Not sure","Strongly disagree","Definitely true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly agree",29.8,20.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Neither agree nor disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe12012-70bc-8199-5fab-cc929f444811","69","1","2","1","1","4","2","1","18428","501","39","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",50,81.3,"Not sure","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",29.8,20.8,"Strongly disagree","Agree","Neither agree nor disagree","Disagree","Disagree","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",4,69,0,"Republican",0,0,1.0099548530942 +888,67.9,93.6,"True","Strongly agree","Definitely true","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",50.1,49.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe111b7-b4f8-08f8-c77c-92290b4c1bfb","36","1","1","2","1","4","3","1","18232","577","39","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure",67.9,6.40000000000001,"True","Strongly agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly disagree","Strongly agree",49.9,50.9,"Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure",4,36,0,"Republican",0,0,1.17753073825834 +889,78.2,68.6,"True","Neither agree nor disagree","Probably true","Probably true","Definitely true","Definitely false","Slightly disagree","Slightly agree",62.8,37.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe11fd1-6ac2-171f-3872-7fdcd68000fb","35","1","20","1","1","7","2","4","90239","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true",21.8,31.4,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Slightly disagree",37.2,62.3,"Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false",7,35,0,"Independent",0,0,1.20216446936721 +890,50,99.9,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely true","Probably true","Strongly disagree","Strongly disagree",80,80.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1230d-e46f-16c7-7b55-b6aff6eb0187","18","1","1","1","1","2","3","2","50702","637","16","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",50,0.0999999999999943,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",20,19.7,"Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",2,18,0,"Independent",0,0,0.587703567021614 +891,90,50,"True","Strongly disagree","Definitely false","Probably true","Probably true","Not sure","Somewhat agree","Strongly agree",24.9,15.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Disagree","Strongly agree","Not vote in the presidential election","5fe121fc-9a6f-2ccd-e7d9-2c3f1914dd83","48","1","7","1","1","7","2","3","36502","686","1","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true",10,50,"False","Strongly disagree","Definitely false","Probably false","Probably false","Not sure","Somewhat agree","Strongly disagree",24.9,15.1,"Neither agree nor disagree","Agree","Agree","Disagree","Strongly disagree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","No, false",7,48,0,"Other",0,1,1.9069936046507 +892,94,99.9,"False","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",15.5,7.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe12165-41c5-0d6d-31da-ff20158bc429","71","2","5","1","1","4","1","3","33312","528","10","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false",6,0.0999999999999943,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.5,7.7,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",4,71,0,"Democrat",0,0,0.515136934744757 +893,74.6,80,"True","Agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Strongly agree",76.3,79.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe1220d-e7f4-9387-8cf3-a10c908bf0d8","40","1","21","1","1","7","1","4","90003","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",74.6,20,"False","Agree","Probably true","Probably false","Probably true","Probably false","Somewhat agree","Strongly disagree",23.7,20.9,"Strongly agree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true",7,40,0,"Democrat",0,1,0.807899201610574 +894,81.4,82.5,"False","Agree","Probably true","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly agree",72,87.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe123fd-1d7a-89b0-fe93-cc2aa392eac2","39","1","21","16","1","5","3","4","85044","753","3","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true",81.4,82.5,"False","Agree","Probably true","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",28,12.7,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Yes, true","No, false",5,39,0,"Republican",0,2,0.917574528626089 +895,99.9,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Somewhat agree",66.6,77.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe133e2-c17e-1453-6162-4c0ca6711c5f","30","1","24","2","2","7","2","4","90275","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",0.0999999999999943,0.0999999999999943,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",33.4,22.6,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Agree","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true",7,30,1,"Republican",0,0,2.97233023471261 +896,48.5,50,"True","Disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",88.2,86.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","","","Strongly disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe1345c-9a3b-ada3-e022-e42766fcc4cc","62","1","1","1","14","1","3","4","95993","862","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false",48.5,50,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",11.8,13.9,"Strongly disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure","No, false","Yes, true",1,62,0,"Independent",0,0,1.92812186070948 +897,83.2,76.1,"False","Disagree","Probably false","Definitely true","Probably false","Probably true","Somewhat agree","Strongly disagree",44.3,41.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe13400-08c7-fb0a-acae-b4401816ed7d","53","1","-3105","1","2","6","2","4","90025","803","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure",83.2,23.9,"True","Disagree","Probably false","Definitely true","Probably false","Probably false","Somewhat disagree","Strongly disagree",44.3,41.3,"Disagree","Strongly disagree","Agree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","Not sure",6,53,0,"Republican",0,0,2.90318167996 +898,49.9,50,"True","Neither agree nor disagree","Probably false","Definitely false","Probably false","Definitely false","Somewhat disagree","Slightly agree",20.6,12.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1408b-c0b0-ca1c-e18d-026109f5e5e8","28","2","5","1","1","2","1","3","27330","560","34","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,50,"False","Neither agree nor disagree","Probably false","Definitely false","Probably false","Definitely false","Somewhat agree","Slightly disagree",20.6,12.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,28,0,"Democrat",0,0,0.468830069482283 +899,50.1,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly agree","Slightly agree",22.1,24.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for a different candidate","5fe1411f-ff51-c197-54e3-0be66f187830","29","2","1","1","1","2","3","4","98837","881","48","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly agree","Slightly disagree",22.1,24.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,29,0,"Other",0,0,0.371054780259341 +900,49.9,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Somewhat disagree",48.7,47.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe140f9-ad99-0972-2d03-6daf639b5fa5","31","2","9","1","1","6","1","4","98104","819","48","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Somewhat disagree",51.3,52.8,"Agree","Agree","Strongly disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",6,31,0,"Independent",0,0,1.68297519134869 +901,81.4,81.7,"Not sure","Agree","Probably true","Probably false","Probably true","Probably true","Slightly agree","Somewhat agree",26.9,33.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Strongly agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe1410d-8008-9be0-be65-d0cef0af9a18","31","2","7","15","2","6","1","4","90242","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",81.4,81.7,"Not sure","Agree","Probably false","Probably true","Probably false","Probably true","Slightly agree","Somewhat disagree",26.9,33.1,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true",6,31,0,"Democrat",0,0,0.934023958996174 +902,49.9,57.3,"True","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Slightly agree","Slightly agree",12.5,17,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1419e-8b7a-68f9-a945-55f2411db614","25","1","14","4","1","6","1","3","35226","630","1","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true",50.1,57.3,"True","Neither agree nor disagree","Probably true","Probably false","Probably false","Probably false","Slightly disagree","Slightly agree",12.5,17,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","No, false",6,25,0,"Democrat",0,0,0.447015108275173 +903,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Not sure","Strongly agree","Somewhat agree",55.4,55.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe14189-b8f3-0cd9-b4e8-0956558468d9","30","1","1","1","1","2","1","3","20707","511","21","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Not sure","Strongly agree","Somewhat disagree",55.4,55.4,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,30,0,"Independent",1,0,1.494140949244 +904,50,50,"False","Agree","Probably false","Probably false","Definitely true","Probably true","Strongly agree","Somewhat agree",58.4,40.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe141cb-9868-ad3a-c429-a28fc3feddc1","33","2","2","1","2","6","1","3","78240","641","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"True","Agree","Probably true","Probably false","Definitely false","Probably false","Strongly disagree","Somewhat disagree",58.4,40.2,"Disagree","Agree","Neither agree nor disagree","Agree","Agree","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,33,0,"Democrat",1,0,0.869691303948395 +905,48.7,49.9,"True","Neither agree nor disagree","Probably true","Not sure","Definitely true","Definitely true","Strongly agree","Strongly disagree",71.9,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe140be-243c-6a3f-44f8-0d2b61c98a99","27","2","1","1","1","2","2","3","39443","710","25","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",48.7,49.9,"True","Neither agree nor disagree","Probably true","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",28.1,0,"Strongly disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",2,27,0,"Republican",1,0,0.697625211881609 +906,59.3,62.4,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly agree",84.3,69.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe1418a-2bfa-5d90-ef23-e76e16c39d04","59","2","9","2","1","6","1","3","30046","524","11","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false",40.7,37.6,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.7,30.1,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",6,59,0,"Democrat",1,0,0.772717258464593 +907,50.4,0.1,"True","Strongly agree","Definitely true","Not sure","Definitely true","Not sure","Strongly disagree","Strongly agree",25.7,37.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe14137-6155-a9d0-132a-4936336c025b","71","2","10","1","1","4","2","2","61265","682","14","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",49.6,0.1,"True","Strongly agree","Definitely false","Not sure","Definitely true","Not sure","Strongly disagree","Strongly disagree",25.7,37.3,"Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","No, false",4,71,1,"Republican",0,0,0.83625520070175 +908,50,50,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Probably true","Probably false","Slightly disagree","Slightly disagree",20,16,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe141c9-2c33-1139-075d-6ebc8ec88451","29","2","1","1","1","2","3","3","74066","671","37","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Probably true","Slightly agree","Slightly disagree",20,16,"Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,29,0,"Independent",0,0,1.19608566751863 +909,56.9,84.7,"False","Agree","Definitely true","Definitely true","Probably true","Definitely true","Strongly agree","Strongly agree",24.1,6.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe141c5-5f2b-734a-38c4-4541cca1cdf9","45","2","20","1","1","8","1","4","91360","803","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",56.9,84.7,"False","Agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",24.1,6.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",8,45,0,"Democrat",1,0,0.841954367861977 +910,50.9,50,"True","Disagree","Probably false","Probably true","Probably true","Probably false","Strongly agree","Somewhat disagree",64.6,33.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Disagree","Not vote in the presidential election","5fe140eb-bb97-942b-0740-9b9f99a90440","29","1","2","1","1","2","3","2","51401","679","16","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",49.1,50,"True","Agree","Probably false","Probably true","Probably true","Probably false","Strongly disagree","Somewhat disagree",64.6,33.9,"Disagree","Disagree","Agree","Disagree","Agree","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false",2,29,0,"Independent",0,0,1.6300502833648 +911,96.5,71.9,"True","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely true","Strongly agree","Somewhat agree",70.4,37.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe142b1-6234-1ed9-2324-745f9edf80a3","28","2","1","1","1","2","2","3","31520","561","11","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",3.5,28.1,"True","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",29.6,62.1,"Disagree","Agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,28,0,"Republican",0,0,0.697625211881609 +912,50,86.7,"False","Disagree","Definitely true","Definitely true","Definitely true","Definitely false","Slightly agree","Strongly agree",72.9,83.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe141df-3228-5c35-655a-a91166264bf7","59","2","9","1","1","2","1","3","29644","567","41","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","No, false","No, false","No, false","No, false",50,86.7,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",27.1,16.9,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",2,59,0,"Democrat",0,0,0.59134387049726 +913,67.9,31.7,"Not sure","Strongly disagree","Probably true","Probably false","Definitely true","Not sure","Slightly agree","Strongly disagree",53.4,14.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Strongly agree","Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe14138-f7e9-45f3-100d-df4e6c4f0829","33","2","4","2","1","7","1","3","29550","517","41","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure",32.1,68.3,"Not sure","Strongly agree","Probably true","Probably false","Definitely true","Not sure","Slightly disagree","Strongly disagree",53.4,14.9,"Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",7,33,1,"Democrat",0,0,0.612626771072269 +914,88.4,22.7,"False","Disagree","Probably true","Probably false","Probably true","Definitely true","Slightly agree","Somewhat agree",18.2,30.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe140be-1ee4-55b5-6136-b6989a02bc3d","34","1","23","1","2","6","3","4","90004","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true",88.4,77.3,"True","Disagree","Probably false","Probably true","Probably false","Definitely false","Slightly agree","Somewhat disagree",18.2,30.4,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure","No, false","No, false",6,34,0,"Independent",0,1,1.52865625404487 +915,55.2,61.2,"True","Agree","Probably true","Definitely false","Probably true","Probably true","Slightly agree","Somewhat agree",46.5,21.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe143ae-a49a-2eb9-b75c-bed367334346","21","2","10","2","1","5","1","3","32309","530","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",55.2,38.8,"False","Agree","Probably false","Definitely false","Probably false","Probably true","Slightly agree","Somewhat agree",46.5,21.4,"Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",5,21,0,"Democrat",0,0,0.563508049350613 +916,75.7,9.1,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",79.7,87.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe14147-20ac-61e0-96c0-2ac5da9bfbb6","52","2","16","1","1","4","2","3","29732","517","41","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true",75.7,9.1,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.3,12.2,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",4,52,0,"Republican",0,0,0.59837456742152 +917,47.1,50.2,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably false","Not sure","Somewhat disagree","Somewhat agree",78.7,68.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe14268-a1a1-efcd-a328-084750bca872","63","2","5","1","1","4","4","3","32765","534","10","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",47.1,50.2,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Not sure","Somewhat disagree","Somewhat disagree",21.3,31.2,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",4,63,0,"Other",0,0,0.879927333598919 +918,50,76.5,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly agree",2.8,1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe142bf-4f57-0f6d-7d33-339873e56d1d","60","2","11","15","1","6","3","4","98166","819","48","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,76.5,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",2.8,1,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,60,0,"Independent",0,0,0.635086657233893 +919,50.2,75.2,"True","Agree","Probably false","Probably false","Definitely true","Probably true","Somewhat agree","Strongly agree",13,6.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe14264-ec86-02da-52a9-672506e26588","33","2","4","1","1","2","1","3","41004","515","18","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",49.8,75.2,"False","Agree","Probably false","Probably false","Definitely false","Probably true","Somewhat disagree","Strongly disagree",13,6.8,"Neither agree nor disagree","Strongly agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",2,33,0,"Democrat",0,0,0.468830069482283 +920,90,70.1,"True","Agree","Probably false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",25.1,40.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe142a6-197b-4ab7-8bd1-e0cb5993f187","21","2","1","1","1","2","1","2","50613","637","16","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","No, false",10,70.1,"False","Agree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.1,40.2,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Disagree","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",2,21,0,"Democrat",0,0,0.47046686834987 +921,50,50,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",91,89.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe14303-7832-cb16-0c6f-47583393362d","60","2","3","1","1","6","1","2","57006","725","42","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","No, false","Not sure",50,50,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",9,10.6,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","No, false","Not sure",6,60,0,"Democrat",0,0,0.645133408704056 +922,57.1,61.6,"True","Disagree","Probably true","Probably true","Definitely true","Probably true","Strongly agree","Strongly agree",65.4,65,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe148b0-a176-e8fa-20fb-54d07371d2a9","30","1","2","1","2","5","1","3","33613","539","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false",57.1,61.6,"False","Disagree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",34.6,35,"Agree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","No, false",5,30,0,"Democrat",1,0,1.08641163899781 +923,71.6,31.4,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Somewhat agree","Somewhat agree",42.7,54.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe14a9a-d314-8e45-9976-608fc2fbc0fe","22","2","13","16","2","2","1","4","90250","803","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure","Yes, true",28.4,31.4,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably true","Somewhat disagree","Somewhat disagree",42.7,54.3,"Neither agree nor disagree","Agree","Agree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Not sure","No, false","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false",2,22,0,"Democrat",0,0,0.859136498817127 +924,50,58.2,"False","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Somewhat agree","Somewhat agree",66.4,50.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","","Strongly agree","Vote for the Democrat Joe Biden","5fe1499a-4294-73fd-ff81-8670902b9762","31","2","4","2","14","2","1","3","31093","503","11","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",50,41.8,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",33.6,49.6,"Strongly agree","Strongly disagree","Strongly disagree","","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true",2,31,0,"Democrat",0,0,1.1364377202936 +925,51.9,83.5,"Not sure","Disagree","Probably true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",71.6,83.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe14b3a-1562-5eb7-be8d-c5f85c69bd3d","38","2","3","15","2","2","1","3","75227","623","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",48.1,16.5,"Not sure","Agree","Probably true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",28.4,16.4,"Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",2,38,0,"Independent",0,0,1.66029946343877 +926,76.4,98.6,"Not sure","Disagree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",48.7,64.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe140fd-0175-53b2-a0fe-1566dcf2a47d","34","2","5","1","1","6","1","4","85022","753","3","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",76.4,98.6,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",48.7,64.6,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",6,34,0,"Democrat",0,0,0.659676306910243 +927,50,94.4,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Probably false","Somewhat agree","Somewhat disagree",75.7,93.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe14cb8-d347-5cf7-b91a-146043901df0","25","2","4","2","2","4","1","3","77354","618","44","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",50,5.59999999999999,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably false","Somewhat agree","Somewhat disagree",24.3,6.40000000000001,"Agree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",4,25,0,"Democrat",0,0,2.89929541160135 +928,61.8,91.9,"True","Disagree","Probably true","Definitely false","Definitely true","Definitely true","Slightly agree","Somewhat agree",69,88.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Agree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe14e51-fe49-ffcb-5384-38335c597ee5","19","2","3","1","2","2","1","2","55430","613","24","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true",61.8,8.09999999999999,"False","Disagree","Probably true","Definitely false","Definitely false","Definitely false","Slightly agree","Somewhat disagree",31,11.9,"Strongly agree","Agree","Disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",2,19,0,"Democrat",1,0,0.872727606084529 +929,21.5,99.9,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",48.9,52.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe14d79-1bf2-88a3-b97b-e97dc176bb50","52","2","5","15","3","6","1","4","83201","758","13","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",21.5,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",48.9,52.6,"Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false",6,52,0,"Democrat",0,0,1.19210822599934 +930,22.4,70.2,"False","Disagree","Probably true","Probably true","Probably true","Definitely false","Somewhat agree","Somewhat disagree",57.8,24.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Agree","Agree","Not vote in the presidential election","5fe150a8-8a9b-963f-1007-638140ea2875","24","2","1","15","16","4","3","3","32822","534","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",77.6,29.8,"True","Disagree","Probably true","Probably true","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",42.2,75.7,"Disagree","Disagree","Neither agree nor disagree","Agree","Disagree","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",4,24,0,"Independent",0,0,1.55773497079245 +931,64.5,58.1,"Not sure","Disagree","Definitely true","Probably false","Definitely false","Definitely true","Slightly disagree","Somewhat disagree",24,16.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe14fb6-045f-8466-ea0f-30499783d899","48","1","8","16","14","5","3","2","47304","527","15","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",64.5,41.9,"Not sure","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat disagree",24,16.9,"Agree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true",5,48,0,"Other",0,1,1.15461972439089 +932,50,67.5,"Not sure","Agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Slightly agree",45.2,30.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Agree","Vote for a different candidate","5fe14e8a-83d4-6db7-03b7-381a96bfeb23","30","1","13","1","13","3","1","3","33013","528","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true",50,32.5,"Not sure","Disagree","Definitely true","Probably false","Definitely true","Definitely false","Somewhat agree","Slightly agree",45.2,30.3,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true",3,30,1,"Democrat",0,0,0.611084902939181 +933,50,87.4,"Not sure","Disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",35.5,23,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe14f59-85e0-5bb2-e40a-d57346376791","18","2","6","15","2","4","1","3","22312","511","47","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","No, false",50,87.4,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.5,23,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",4,18,0,"Democrat",1,2,0.610585858876394 +934,18.9,21,"False","Disagree","Probably true","Probably true","Probably true","Probably true","Slightly disagree","Slightly disagree",48.1,40.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe1522e-6c87-347c-2f3a-5abc9910e4c4","27","2","1","2","2","1","4","4","98087","819","48","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false","No, false","No, false","Not sure","Not sure","Yes, true",18.9,21,"True","Disagree","Probably true","Probably false","Probably false","Probably false","Slightly agree","Slightly disagree",48.1,40.6,"Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","No, false",1,27,0,"Republican",0,0,1.5990464075494 +935,26.1,62.1,"True","Disagree","Definitely false","Definitely true","Definitely true","Probably true","Somewhat agree","Strongly agree",19.3,40.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Strongly agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe150ee-2e60-8295-09db-e9b44dc22874","35","1","23","1","2","6","1","4","90033","803","5","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure",26.1,62.1,"True","Disagree","Definitely false","Definitely false","Definitely false","Probably false","Somewhat disagree","Strongly disagree",19.3,40.5,"Disagree","Strongly agree","Agree","Strongly disagree","Agree","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure",6,35,0,"Democrat",0,2,1.49867287924483 +936,50.5,96.7,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Not sure","Definitely false","Strongly agree","Strongly disagree",49.8,77.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe14f99-02fc-bcf7-5f23-eaf97ced880c","50","2","8","1","2","2","1","4","92114","825","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true",50.5,96.7,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Not sure","Definitely false","Strongly disagree","Strongly disagree",50.2,22.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","No, false",2,50,0,"Democrat",0,0,3.98460294388927 +937,59.3,73.8,"True","Strongly disagree","Definitely true","Probably false","Probably true","Definitely false","Strongly agree","Slightly agree",100,63.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Agree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe151aa-590c-b5d9-1105-c7422b127cc9","20","1","1","2","2","2","1","4","92316","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",40.7,26.2,"False","Strongly disagree","Definitely true","Probably true","Probably false","Definitely true","Strongly agree","Slightly disagree",100,63.1,"Strongly disagree","Agree","Agree","Strongly agree","Neither agree nor disagree","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Yes, true",2,20,0,"Republican",1,0,1.83736103956743 +938,49,50,"True","Neither agree nor disagree","Probably true","Probably true","Definitely true","Definitely false","Somewhat agree","Somewhat agree",40.5,76.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe15277-2ec3-b34e-0aaf-dd5b78c69397","22","1","1","15","7","2","4","3","20164","511","47","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",51,50,"False","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",59.5,23.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,22,0,"Republican",0,0,1.94591045703184 +939,77.6,79.6,"True","Disagree","Probably true","Definitely false","Probably true","Definitely false","Somewhat agree","Slightly agree",49,33.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Strongly agree","Neither agree nor disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe15506-76c4-ed15-1a24-eb0c5820a795","28","1","13","4","3","3","1","3","72719","670","4","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure",22.4,79.6,"False","Agree","Probably true","Definitely true","Probably true","Definitely true","Somewhat disagree","Slightly disagree",51,66.6,"Disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure",3,28,0,"Republican",0,0,0.829224014640894 +940,50.1,49.9,"Not sure","Agree","Probably true","Probably true","Definitely true","Probably true","Somewhat agree","Strongly disagree",26,34,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe1529c-ee48-5532-1bf8-0928b453b001","18","2","-3105","15","2","2","3","4","89115","839","29","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true",50.1,50.1,"Not sure","Agree","Probably true","Probably true","Definitely false","Probably true","Somewhat disagree","Strongly disagree",26,34,"Agree","Disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true",2,18,0,"Independent",0,0,2.19184075332893 +941,75,99.9,"True","Strongly agree","Definitely true","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",55.1,55.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe15123-dbef-c532-b089-fb794a2be2a3","61","2","2","1","12","2","1","3","34203","539","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false",75,0.0999999999999943,"False","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",55.1,55.1,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",2,61,0,"Democrat",0,0,1.09695741653808 +942,54.6,53.4,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably true","Probably true","Slightly agree","Strongly agree",69.9,54.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe15462-4416-541f-1916-1ccc80bff3d5","19","2","1","1","2","2","3","3","29555","570","41","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",54.6,46.6,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably false","Slightly disagree","Strongly disagree",69.9,54.3,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",2,19,0,"Other",1,0,0.799961858289961 +943,50,50,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Probably false","Strongly agree","Strongly agree",70.7,82.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe15291-9a16-54be-cbd1-74c3f72eaced","27","2","1","15","2","4","4","4","92227","771","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Probably true","Strongly disagree","Strongly disagree",29.3,17.3,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,27,0,"Democrat",0,0,2.38289466310896 +944,50,99.5,"True","Neither agree nor disagree","Definitely true","Not sure","Not sure","Definitely false","Strongly agree","Strongly agree",100,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe1522b-4365-8ee4-3ffe-a768b3e10894","69","2","2","1","2","2","2","3","76705","625","44","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false",50,99.5,"False","Neither agree nor disagree","Definitely false","Not sure","Not sure","Definitely false","Strongly disagree","Strongly disagree",100,100,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",2,69,1,"Republican",0,0,2.43791852033784 +945,30.8,40.9,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably true","Probably false","Slightly disagree","Slightly agree",44.2,40.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe154e3-a218-1861-4806-5c101584b668","23","2","2","1","2","2","1","3","75052","623","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",30.8,59.1,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably true","Probably false","Slightly disagree","Slightly agree",44.2,40.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,23,0,"Democrat",0,0,0.799961858289961 +946,99.5,99.7,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",50,50,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe1555b-07c6-139a-8651-025842327166","23","2","9","1","12","4","1","4","98270","819","48","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true",0.5,99.7,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",50,50,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",4,23,0,"Democrat",1,0,1.12560161708169 +947,0.1,0.1,"False","Disagree","Probably true","Probably false","Probably false","Definitely true","Strongly agree","Strongly agree",31.3,16.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe154b0-0307-f172-e796-3539ee8de600","22","2","1","1","2","3","1","4","85326","753","3","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true",99.9,0.1,"False","Agree","Probably true","Probably false","Probably false","Definitely true","Strongly agree","Strongly agree",68.7,83.6,"Agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false",3,22,0,"Democrat",1,0,1.12560161708169 +948,64.4,62.4,"True","Strongly disagree","Definitely true","Definitely false","Definitely false","Probably true","Somewhat disagree","Somewhat disagree",24.8,11.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe15541-d1f4-5b33-d520-879bbdccfc69","46","2","11","1","2","6","1","4","93306","800","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true",64.4,62.4,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably false","Somewhat agree","Somewhat disagree",24.8,11.9,"Agree","Agree","Disagree","Disagree","Disagree","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true",6,46,0,"Democrat",0,0,1.56184604980547 +949,61.9,18.6,"True","Disagree","Definitely true","Probably false","Definitely false","Definitely true","Somewhat agree","Slightly agree",26,34.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe1537a-afb1-ffed-25d8-6aef63cd0274","52","2","4","1","2","4","2","3","33172","528","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",38.1,81.4,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Slightly disagree",26,34.5,"Strongly disagree","Agree","","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",4,52,0,"Republican",0,0,1.65169367159074 +950,50,20.4,"True","Disagree","Definitely false","Probably true","Definitely true","Probably false","Slightly disagree","Strongly agree",75.8,94,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Disagree","Not vote in the presidential election","5fe1529b-234b-7d5e-39a8-5ab9406a9c92","32","2","19","1","3","4","3","2","48209","505","23","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Not sure","No, false","No, false",50,79.6,"True","Agree","Definitely false","Probably true","Definitely true","Probably true","Slightly agree","Strongly disagree",24.2,6,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Disagree","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true",4,32,0,"Independent",0,0,2.42059085808825 +951,50,20,"False","Agree","Probably true","Probably true","Definitely true","Definitely false","Slightly agree","Strongly agree",15,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Agree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe15a58-8731-599d-c2ef-ea00f8ed1fad","77","2","-3105","1","12","6","4","2","55102","613","24","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true",50,80,"True","Disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly agree","Strongly disagree",15,15,"Strongly disagree","Disagree","Disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","No, false","No, false","No, false","No, false","No, false",6,77,0,"Republican",0,2,1.55127395462294 +952,62.1,99.9,"True","Strongly disagree","Probably false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",60,55.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe16549-c346-78f2-a910-aa3f61a0e2d1","35","1","10","1","2","6","2","3","79720","633","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",37.9,0.0999999999999943,"False","Strongly agree","Probably true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",40,44.5,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false",6,35,1,"Republican",0,0,1.58488636619573 +953,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Definitely false","Strongly agree","Strongly disagree",52.7,32.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe16836-47cd-47d8-0338-ecba99d59d22","56","1","-3105","1","2","7","1","2","56728","724","24","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Definitely false","Strongly agree","Strongly disagree",47.3,67.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,56,0,"Democrat",0,0,1.49495625290499 +954,77.6,18.2,"False","Agree","Definitely false","Definitely false","Definitely false","Probably true","Strongly agree","Strongly agree",26.5,30.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe199b4-146c-3d6a-6db9-fb6c48d5c58e","67","1","3","1","2","2","3","4","91601","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure",77.6,81.8,"False","Disagree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Strongly disagree",73.5,69.3,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure",2,67,0,"Independent",0,0,1.67964332547325 +955,49.5,79.7,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Definitely false","Somewhat agree","Strongly disagree",83.8,75.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe20721-95e3-9ff2-3bcd-9eaa5d700d32","57","1","9","1","2","5","1","3","78408","600","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false","No, false",50.5,79.7,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Definitely false","Somewhat disagree","Strongly disagree",83.8,75.4,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false","Yes, true",5,57,0,"Democrat",0,0,1.37031070611079 +956,0.4,50,"Not sure","Disagree","Definitely false","Definitely true","Definitely false","Definitely true","Somewhat agree","Strongly disagree",16,15.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe20af4-6cc6-3b07-6449-59e67c38f92d","63","1","-3105","1","12","7","2","4","91360","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false",0.4,50,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",16,15.5,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure","No, false","Yes, true",7,63,1,"Republican",0,0,1.08453013371015 +957,99.9,18.2,"Not sure","Agree","Definitely true","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",100,84.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe229b5-b957-2635-8a01-e5d7c542d2d0","52","2","5","2","1","6","1","3","30034","524","11","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",0.0999999999999943,81.8,"Not sure","Disagree","Definitely true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly agree",0,15.3,"Strongly disagree","Neither agree nor disagree","Agree","Disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",6,52,0,"Democrat",0,0,0.781904367900328 +958,52,97.4,"False","Agree","Probably true","Definitely true","Probably true","Definitely true","Strongly disagree","Strongly disagree",24.3,4.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe2291b-ef75-d2cb-a44f-1f28e5ee2dac","82","1","20","1","1","7","2","2","63017","609","26","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","No, false","No, false",52,97.4,"True","Disagree","Probably false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",24.3,4.7,"Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true",7,82,1,"Republican",0,0,1.04464351786682 +959,88.5,23,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Somewhat agree",55.9,58.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe2298b-893f-d918-d9b2-a7dc63d410fa","41","1","18","1","1","7","1","3","33411","548","10","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",88.5,77,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat agree",55.9,58.3,"Strongly agree","Agree","Strongly agree","Strongly disagree","Agree","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",7,41,0,"Democrat",1,0,0.574171657914799 +960,50.6,47.7,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Slightly disagree","Strongly disagree",3.3,1.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe229be-e06d-b264-1807-af6e4be86474","58","2","2","1","1","2","3","3","75180","623","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.6,52.3,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Slightly agree","Strongly disagree",3.3,1.3,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,58,0,"Independent",0,1,0.59134387049726 +961,50,50,"True","Strongly disagree","Probably false","Probably true","Definitely true","Probably false","Somewhat agree","Strongly disagree",45.4,62.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe22974-0c51-cf75-7397-537bb30053ed","21","1","11","1","1","2","2","2","53228","617","50","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",50,50,"True","Strongly agree","Probably false","Probably true","Definitely false","Probably false","Somewhat agree","Strongly disagree",54.6,37.8,"Strongly disagree","Strongly disagree","Agree","Neither agree nor disagree","Agree","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","No, false",2,21,0,"Republican",0,0,0.874510514907416 +962,50,44.9,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Definitely true","Strongly agree","Strongly agree",58.7,50.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe229a4-2f61-ce02-25ad-51a54f1e1582","48","2","7","2","1","2","1","3","78660","635","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,44.9,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Definitely false","Strongly agree","Strongly disagree",58.7,50.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,48,0,"Democrat",0,0,0.781904367900328 +963,50,51.5,"False","Agree","Definitely true","Not sure","Definitely false","Probably false","Strongly disagree","Somewhat disagree",30.4,10.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe228de-d347-8d5c-945f-ea7179f9bd4b","25","2","9","15","1","2","3","3","77373","618","44","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure",50,48.5,"True","Disagree","Definitely false","Not sure","Definitely false","Probably false","Strongly disagree","Somewhat agree",30.4,10.8,"Agree","Agree","Neither agree nor disagree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure",2,25,0,"Independent",0,2,0.532475498370776 +964,57.7,52.9,"True","Agree","Definitely true","Not sure","Probably false","Definitely true","Strongly disagree","Strongly disagree",22.6,5.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe22a06-274e-e9da-272c-945a1d6925e9","67","2","2","1","1","2","3","2","48101","505","23","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true",42.3,52.9,"True","Disagree","Definitely false","Not sure","Probably false","Definitely false","Strongly disagree","Strongly disagree",22.6,5.9,"Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true",2,67,0,"Independent",0,0,0.83625520070175 +965,50,93,"True","Disagree","Definitely true","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly agree",24.3,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe22a07-462b-d8e7-28a0-e92ebacfa2aa","64","2","4","1","1","2","1","1","13736","555","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",50,7,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",24.3,25.1,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",2,64,0,"Democrat",0,0,0.623710965386887 +966,53.5,87.9,"False","Neither agree nor disagree","Probably false","Definitely false","Definitely true","Probably false","Somewhat agree","Somewhat agree",55.1,64.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe22ac2-224b-5c91-5d54-365c27a0a393","53","2","19","1","1","6","2","1","07920","501","31","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","No, false",46.5,87.9,"True","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Probably false","Somewhat disagree","Somewhat disagree",55.1,64.1,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","No, false",6,53,0,"Republican",0,0,0.939124380673268 +967,50,75,"False","Strongly disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",75.3,76.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe22993-bd08-e0ce-55c1-d277d20add94","77","1","9","1","1","7","3","2","66216","616","17","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","No, false",50,75,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",24.7,23.9,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",7,77,0,"Independent",0,3,0.702039267968476 +968,48.7,86,"True","Strongly agree","Definitely false","Probably true","Probably false","Definitely false","Strongly agree","Slightly agree",39.4,25.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe22b5b-1a23-2001-ea9f-a3e221ff783b","51","1","1","2","1","2","1","4","92084","825","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true",48.7,86,"False","Strongly agree","Definitely false","Probably true","Probably false","Definitely false","Strongly agree","Slightly agree",39.4,25.3,"Disagree","Agree","Strongly agree","Strongly agree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true",2,51,0,"Democrat",0,0,3.50626855631676 +969,68.1,61.2,"True","Neither agree nor disagree","Probably true","Probably false","Definitely true","Definitely true","Somewhat agree","Slightly disagree",63,83.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe22913-a909-d5a2-b32d-84c48ea2b607","39","2","1","15","14","6","1","1","07601","501","31","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",31.9,61.2,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Somewhat disagree","Slightly disagree",37,16.4,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false",6,39,0,"Democrat",0,0,1.02138526563812 +970,49.8,38.9,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably false","Probably true","Slightly agree","Slightly disagree",74.2,77.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe22aad-59a7-ea8a-e632-573e2738200b","23","2","1","1","1","-3105","4","3","79606","662","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true",49.8,38.9,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably false","Probably false","Slightly agree","Slightly agree",25.8,22.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",-3105,23,0,"Republican",0,3,1.10018682366745 +971,50,50.4,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably true","Definitely false","Somewhat disagree","Somewhat agree",81,84.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe22bf5-4bff-5adf-44a5-41f415bf25ff","51","2","1","1","1","6","2","3","29072","546","41","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,49.6,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Definitely false","Somewhat disagree","Somewhat disagree",19,15.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,51,0,"Republican",0,0,1.52658135748604 +972,50,39.8,"Not sure","Agree","Probably false","Probably true","Probably false","Probably false","Somewhat disagree","Somewhat agree",11,2.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe22c2d-eb7d-fafc-ca5d-8da302d4ee92","66","1","1","1","1","4","2","1","15235","508","39","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",50,60.2,"Not sure","Disagree","Probably false","Probably false","Probably false","Probably false","Somewhat disagree","Somewhat disagree",11,2.5,"Agree","Agree","Strongly agree","Disagree","Agree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Not sure","Yes, true",4,66,0,"Republican",0,3,1.0099548530942 +973,84.7,74.4,"True","Agree","Probably true","Probably true","Probably false","Probably true","Slightly agree","Somewhat disagree",74.1,53.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe22d70-dbc0-1e9b-616d-9220aa65569a","31","2","5","1","1","2","2","2","43964","554","36","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false",84.7,74.4,"True","Agree","Probably true","Probably false","Probably false","Probably false","Slightly disagree","Somewhat disagree",25.9,46.1,"Agree","Disagree","Disagree","Strongly agree","Agree","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",2,31,1,"Republican",0,0,0.761082262610781 +974,72.9,46.3,"Not sure","Agree","Probably false","Probably false","Probably true","Not sure","Slightly agree","Strongly disagree",35.8,68.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe22d18-ac11-2283-2dad-782b1395adb6","26","2","2","1","1","2","4","3","76116","623","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","",27.1,53.7,"Not sure","Agree","Probably false","Probably false","Probably false","Not sure","Slightly disagree","Strongly disagree",35.8,68.9,"Disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","",2,26,0,"Other",0,0,1.19608566751863 +975,60,94.1,"True","Disagree","Definitely false","Probably false","Definitely false","Probably true","Slightly agree","Strongly disagree",79.6,95,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe22ca5-bb2e-b92b-83de-cc7a97cb7db0","58","1","5","1","1","6","2","1","15120","508","39","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false",40,94.1,"False","Agree","Definitely false","Probably true","Definitely false","Probably false","Slightly disagree","Strongly disagree",20.4,5,"Disagree","Agree","Strongly disagree","Strongly disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false",6,58,0,"Republican",0,0,0.779134905788461 +976,0.1,55.9,"True","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Definitely true","Strongly agree","Slightly agree",51.1,37.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe22be0-90a9-f59b-0391-4d06b2f31d35","50","1","21","1","1","7","2","1","19125","504","39","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure",99.9,55.9,"True","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly disagree","Slightly agree",48.9,62.3,"Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure",7,50,0,"Republican",0,0,0.788398316908465 +977,72.6,90.5,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",70.4,49.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe22b28-5434-5850-40a4-8edd86fca722","50","2","5","1","1","4","1","3","78209","641","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true",27.4,90.5,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",29.6,50.7,"Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true",4,50,0,"Democrat",0,3,0.59837456742152 +978,7.9,27.8,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Slightly agree","Strongly agree",14.6,19,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe22d07-daab-c0a3-f3d2-d40381adafd7","59","1","13","1","1","6","2","2","44514","536","36","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure",7.9,27.8,"False","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Slightly agree","Strongly disagree",14.6,19,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure",6,59,1,"Republican",0,0,1.19918316758111 +979,93.2,58.4,"True","Disagree","Definitely false","Definitely true","Definitely true","Definitely true","Somewhat agree","Strongly disagree",50.4,78.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe22c11-e7eb-a430-0f30-51e5737221bf","77","2","8","1","1","4","2","1","15692","508","39","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",93.2,58.4,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",49.6,21.2,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true",4,77,0,"Republican",0,0,0.80848632469251 +980,69.9,69.8,"True","Disagree","Probably false","Probably false","Probably false","Probably false","Slightly agree","Slightly agree",56.2,64.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe22e95-2fcf-c166-d078-e8282f020cb9","35","2","17","1","1","5","1","1","17013","566","39","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure",30.1,30.2,"False","Disagree","Probably false","Probably true","Probably true","Probably false","Slightly disagree","Slightly agree",43.8,35.6,"Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Not sure","Not sure",5,35,0,"Democrat",0,0,0.484792339820778 +981,50,50,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly disagree","Strongly disagree",70.9,85.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe22f39-56c6-d102-441e-76d4a448c5b8","20","2","24","1","1","4","3","1","03281","506","30","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",50,50,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",29.1,14.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",4,20,0,"Independent",0,0,0.454844440982363 +982,75.8,63.8,"False","Agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",58.6,31.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Strongly agree","Agree","Agree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe22ed8-5ae3-c75f-bf88-dba14cd5461b","55","2","3","1","1","2","2","1","01801","506","22","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false",24.2,63.8,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",58.6,31.3,"Strongly disagree","Agree","Disagree","Disagree","Agree","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false",2,55,0,"Republican",0,0,0.928089989751292 +983,50,52.8,"False","Disagree","Definitely false","Probably true","Probably true","Probably false","Somewhat agree","Strongly agree",36.3,19.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe22cce-cb8c-9eb1-caea-462ecbaa133e","69","2","3","1","1","5","2","1","13501","526","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","No, false",50,47.2,"True","Agree","Definitely false","Probably true","Probably true","Probably false","Somewhat disagree","Strongly disagree",36.3,19.7,"Agree","Agree","Agree","Disagree","Agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true",5,69,1,"Republican",0,3,0.80848632469251 +984,86.8,88.1,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",56.2,60.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe22ec8-8c26-cb17-a03a-0c803e281ed3","45","1","4","1","1","2","1","2","47001","515","15","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Yes, true","Yes, true",13.2,11.9,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",56.2,60.7,"Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false",2,45,0,"Democrat",0,1,0.815477235177677 +985,77.6,82.6,"True","Disagree","Definitely true","Definitely true","Probably true","Probably true","Somewhat agree","Somewhat agree",77.9,85.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe22af4-f94e-9b5c-547f-9b7339d2f1c7","42","1","10","1","1","7","1","3","71203","628","19","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",77.6,82.6,"True","Agree","Definitely true","Definitely true","Probably false","Probably true","Somewhat agree","Somewhat agree",22.1,14.9,"Agree","Agree","Strongly agree","Agree","Strongly agree","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true",7,42,0,"Democrat",0,3,0.574171657914799 +986,50,50,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",50,50,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe22e34-4c05-379a-b8cd-a2457c6b1b18","48","2","7","1","1","2","3","3","41042","515","18","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",50,50,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,48,0,"Independent",0,0,0.59837456742152 +987,49.9,0.6,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat agree","Somewhat agree",10.6,11.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe22d5d-2be4-1a71-c403-48a3f58e9f3a","69","2","2","1","1","7","1","3","33764","539","10","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",50.1,99.4,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Somewhat agree",10.6,11.8,"Disagree","Strongly agree","Disagree","Disagree","Strongly agree","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",7,69,0,"Democrat",0,0,0.515136934744757 +988,50,50,"False","Neither agree nor disagree","Definitely true","Probably false","Not sure","Definitely false","Somewhat agree","Strongly agree",32.4,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe22d1a-8abd-7444-b0e5-cccd0b543f4f","74","2","2","1","1","4","1","2","49879","553","23","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true",50,50,"False","Neither agree nor disagree","Definitely false","Probably false","Not sure","Definitely false","Somewhat disagree","Strongly disagree",32.4,25.1,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",4,74,0,"Democrat",0,0,0.561994574124504 +989,82.6,86,"True","Agree","Definitely true","Probably true","Definitely true","Probably true","Strongly disagree","Somewhat agree",28.3,55,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe229ff-d022-a603-4762-9f33eebaeb00","41","1","21","15","1","6","1","1","10458","501","33","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",17.4,86,"False","Agree","Definitely true","Probably false","Definitely false","Probably true","Strongly agree","Somewhat disagree",28.3,55,"Disagree","Strongly agree","Disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",6,41,0,"Democrat",0,0,0.46223464402628 +990,66.1,50,"True","Agree","Definitely true","Not sure","Definitely true","Definitely true","Strongly agree","Strongly agree",12.7,25.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe22dca-608a-f0a5-a9a7-6f98a87428ea","44","1","22","1","1","7","1","4","95204","862","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",33.9,50,"False","Disagree","Definitely true","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly agree",12.7,25.3,"Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Disagree","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false",7,44,0,"Democrat",0,0,0.807899201610574 +991,85.5,34.8,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably true","Definitely false","Somewhat disagree","Slightly agree",18,36.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe22f7c-bc55-ab63-d065-2721bda06089","48","2","8","1","1","6","2","3","31510","561","11","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure",14.5,34.8,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Somewhat disagree","Slightly agree",18,36.9,"Disagree","Disagree","Agree","Disagree","Agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure",6,48,0,"Republican",0,0,0.890389101626892 +992,54,19.5,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely true","Somewhat disagree","Somewhat agree",97.9,93.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Not vote in the presidential election","5fe22fd1-fba4-18cf-4bdf-23c41b64b225","59","2","8","1","1","2","3","2","53042","658","50","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",54,80.5,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",2.09999999999999,6.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure",2,59,0,"Other",0,0,1.64587315109813 +993,77.4,89.2,"False","Disagree","Probably true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly agree",98,97.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe22da8-10f7-d940-d85c-9cf79cafadd6","53","1","5","2","1","6","1","4","93535","803","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure",22.6,10.8,"False","Disagree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",2,2.90000000000001,"Disagree","Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure",6,53,0,"Democrat",0,0,1.37435317178561 +994,15.5,55.6,"Not sure","Agree","Definitely false","Probably false","Definitely true","Definitely false","Slightly agree","Somewhat disagree",71.4,85.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Vote for a different candidate","5fe23102-fcbb-a55e-024c-48f1f6e717ba","29","1","14","1","1","6","3","3","75028","623","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",15.5,55.6,"Not sure","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly agree","Somewhat disagree",28.6,14.3,"Agree","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",6,29,0,"Independent",0,1,0.329421458170117 +995,75,35,"True","Neither agree nor disagree","Definitely false","Probably false","Probably true","Probably true","Slightly disagree","Slightly agree",40.2,49.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe23109-a168-0501-dbae-3ef2a6408740","19","2","1","1","1","4","2","4","95112","807","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure",75,65,"False","Neither agree nor disagree","Definitely false","Probably true","Probably true","Probably false","Slightly agree","Slightly agree",40.2,49.6,"Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure",4,19,0,"Other",0,0,0.606785283410273 +996,50,70.5,"Not sure","Agree","Probably false","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",33,12.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe23153-ac7e-7001-fa2a-82fad613a8a1","33","2","9","1","1","6","2","3","22980","569","47","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",50,29.5,"Not sure","Disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",33,12.2,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",6,33,0,"Republican",0,0,0.697625211881609 +997,49.9,49.9,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely true","Definitely true","Strongly disagree","Strongly agree",87.7,90.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe22f13-a559-4605-d2b9-e55dbe0df670","59","2","7","1","1","4","3","3","28152","517","34","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",49.9,50.1,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.3,9.7,"Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",4,59,0,"Independent",0,1,0.879927333598919 +998,99.9,50.2,"False","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",21.2,23.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for a different candidate","5fe22a72-1492-b0e0-9848-cd243bc2b2bb","50","1","4","2","1","2","1","3","20019","511","9","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",99.9,50.2,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",21.2,23.3,"Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",2,50,0,"Democrat",0,0,0.549401784974552 +999,99.9,99.9,"True","Strongly disagree","Definitely true","Definitely true","Definitely true","Probably false","Strongly agree","Strongly agree",63.4,83.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe22cf4-b265-daf2-0a70-dd286409c065","50","1","19","1","1","7","1","1","11226","501","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",99.9,99.9,"False","Strongly agree","Definitely true","Definitely true","Definitely true","Probably false","Strongly agree","Strongly disagree",63.4,83.1,"Strongly agree","Agree","Strongly disagree","Strongly disagree","Disagree","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",7,50,0,"Democrat",1,0,0.788398316908465 +1000,0.1,0.1,"False","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",42.8,38.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe230b7-634d-6db8-d483-b1fe5abd93e4","79","1","5","1","1","1","2","3","31516","561","11","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false",0.1,0.1,"True","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",42.8,38.9,"Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true",1,79,1,"Republican",0,0,0.957543870478141 +1001,23.6,83.3,"True","Strongly agree","Probably true","Definitely false","Definitely false","Probably false","Somewhat disagree","Strongly disagree",9.8,6.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Agree","Strongly disagree","Disagree","Disagree","Not vote in the presidential election","5fe230a2-6994-b0c1-513e-7fa4a223fb58","39","2","1","1","1","2","3","3","40601","541","18","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false",76.4,16.7,"False","Strongly agree","Probably false","Definitely false","Definitely false","Probably true","Somewhat agree","Strongly agree",9.8,6.4,"Agree","Agree","Strongly disagree","Agree","Agree","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true",2,39,0,"Democrat",1,0,1.17262539987032 +1002,23.8,93.3,"Not sure","Agree","Probably true","Probably false","Probably true","Definitely true","Slightly disagree","Strongly disagree",37.2,29.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe23167-96fb-54b9-2ef1-301441b22825","61","1","2","1","1","6","1","3","77469","618","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false",23.8,93.3,"Not sure","Agree","Probably false","Probably true","Probably false","Definitely false","Slightly disagree","Strongly disagree",37.2,29.7,"Disagree","Disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true",6,61,0,"Democrat",0,0,0.73870218161496 +1003,33.4,84.6,"True","Agree","Probably true","Definitely true","Definitely false","Definitely true","Strongly disagree","Slightly disagree",17.7,27.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe2315e-5a12-cdba-4d3b-1d4df45006de","69","2","6","1","1","4","1","4","98632","820","48","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure",66.6,15.4,"True","Agree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",17.7,27.9,"Disagree","Agree","Strongly disagree","Strongly disagree","Agree","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure",4,69,0,"Independent",0,0,0.724833266434345 +1004,20.6,77.8,"True","Strongly agree","Definitely false","Definitely false","Definitely true","Probably false","Strongly agree","Strongly agree",89.5,75.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe23307-b23c-e174-28b7-45d28136a865","46","2","9","1","1","7","1","3","28356","560","34","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false",79.4,22.2,"False","Strongly disagree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Strongly disagree",10.5,24.5,"Strongly agree","Agree","","Strongly disagree","Disagree","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false",7,46,0,"Democrat",0,0,0.59837456742152 +1005,35.3,41.6,"False","Agree","Definitely true","Probably false","Probably true","Not sure","Slightly agree","Somewhat disagree",69.2,75.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe23396-630c-f48b-8e83-01e978732f28","39","2","11","1","1","2","4","2","43612","547","36","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",64.7,41.6,"True","Agree","Definitely false","Probably true","Probably true","Not sure","Slightly agree","Somewhat disagree",69.2,75.9,"Neither agree nor disagree","","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true",2,39,0,"Democrat",0,0,0.501443380121097 +1006,99.9,99.9,"Not sure","Disagree","Probably true","Probably true","Definitely true","Probably false","Strongly disagree","Strongly disagree",52.4,86.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe22cbc-4648-39a2-0f87-cb0f5dfd8c91","66","2","15","1","1","3","4","4","91754","803","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true",0.0999999999999943,99.9,"Not sure","Agree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",47.6,13.5,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true",3,66,0,"Other",0,0,1.84920451514596 +1007,81.2,84.8,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Not sure","Not sure","Strongly agree","Strongly agree",78.8,76.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe234a1-486e-2431-5015-610f2a8055d5","32","2","1","1","1","2","1","2","52627","717","16","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",81.2,84.8,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Not sure","Not sure","Strongly agree","Strongly disagree",21.2,23.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",2,32,0,"Democrat",1,0,0.511475565940556 +1008,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Probably true","Slightly agree","Strongly agree",77.5,81.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe233ee-3e39-9e6a-2182-979f56abeb75","40","2","-3105","1","1","3","3","3","32818","534","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Probably false","Slightly disagree","Strongly disagree",22.5,18.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",3,40,1,"Independent",0,0,1.17262539987032 +1009,50.2,45.5,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly agree","Strongly disagree",14.2,4.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe234d1-8a6d-d88a-6490-0ed7c0cf68d7","40","2","8","1","1","6","1","3","27105","518","34","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.2,54.5,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.2,4.7,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,40,0,"Democrat",0,0,0.459634341107367 +1010,27.5,69.3,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably true","Definitely false","Somewhat agree","Slightly agree",24.8,17.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe235d7-80b0-3a42-554f-a58df64670f0","27","2","8","1","1","2","2","3","30705","524","11","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",72.5,69.3,"Not sure","Neither agree nor disagree","Definitely true","Probably true","Probably false","Definitely true","Somewhat disagree","Slightly disagree",24.8,17.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,27,0,"Republican",0,0,1.19608566751863 +1011,73.1,88.3,"False","Agree","Probably true","Probably false","Definitely false","Definitely true","Somewhat disagree","Strongly agree",51.5,53.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe234d2-7ee7-eda5-a6e7-46dd35942c13","55","2","5","1","1","6","3","4","85379","753","3","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true",26.9,11.7,"False","Agree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",48.5,46.8,"Disagree","Agree","Agree","Strongly disagree","Disagree","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",6,55,0,"Independent",0,0,0.832061691423535 +1012,57.4,63.4,"Not sure","Strongly disagree","Probably true","Probably false","Probably false","Definitely false","Slightly agree","Somewhat disagree",52.3,24,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Strongly agree","Agree","Not vote in the presidential election","5fe2321f-5612-c9f2-b5b5-3581e59be70d","44","2","1","1","1","5","3","3","36870","522","1","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",42.6,63.4,"Not sure","Strongly agree","Probably false","Probably true","Probably false","Definitely false","Slightly agree","Somewhat disagree",52.3,24,"Disagree","Disagree","Disagree","Strongly disagree","Agree","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",5,44,0,"Independent",0,0,1.17262539987032 +1013,50,68,"False","Strongly disagree","Probably true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",52.2,38.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe235d1-e812-7e0a-4870-060e6b774c5e","26","2","19","2","1","2","1","3","27870","560","34","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",50,32,"True","Strongly disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",47.8,61.8,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Agree","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",2,26,0,"Democrat",1,0,0.612626771072269 +1014,50.8,1.1,"Not sure","Agree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly agree",66.2,87.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe2353e-8ce1-b757-8633-c44d274b5ae8","46","2","6","1","1","2","3","3","35582","691","1","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true",49.2,1.1,"Not sure","Agree","Definitely true","Probably true","Definitely true","Probably true","Strongly agree","Strongly disagree",33.8,12.5,"Agree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",2,46,0,"Independent",0,0,1.52658135748604 +1015,65.7,91.1,"False","Agree","Definitely false","Definitely false","Definitely true","Probably false","Strongly agree","Somewhat agree",11.5,9.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe23237-8284-3e15-09b3-438407506307","56","1","14","2","1","2","1","4","92104","825","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Not sure",34.3,8.90000000000001,"False","Disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Somewhat agree",11.5,9.2,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure",2,56,0,"Democrat",0,0,1.35820499112452 +1016,46.5,99,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely true","Probably true","Strongly disagree","Strongly disagree",53,79.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2350c-e94c-6d12-ffd4-02b28ea74402","63","2","5","2","1","4","1","3","77070","618","44","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",53.5,99,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",47,20.4,"Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",4,63,0,"Democrat",0,0,0.772717258464593 +1017,66.7,68.7,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe235ad-5edc-125b-660a-b3d04d7ed711","40","1","7","1","1","7","2","2","48197","505","23","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",66.7,31.3,"False","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",0,0,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false",7,40,0,"Republican",1,0,0.932090096130861 +1018,49.5,99.9,"True","Agree","Probably false","Definitely false","Probably true","Probably true","Strongly disagree","Strongly disagree",77.2,52.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Disagree","Agree","Agree","Strongly disagree","Strongly agree","Not vote in the presidential election","5fe23553-3678-9511-3b83-42a59f9c28f4","33","2","1","1","1","6","3","4","95204","862","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",50.5,0.0999999999999943,"False","Disagree","Probably true","Definitely false","Probably false","Probably false","Strongly agree","Strongly disagree",22.8,47.2,"Agree","Agree","Disagree","Strongly agree","Strongly agree","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",6,33,0,"Independent",0,0,1.68297519134869 +1019,50,0.1,"True","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",95.3,49.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Strongly disagree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe233f2-573f-f9a1-5979-442b251082fb","60","2","1","1","1","4","2","2","46738","509","15","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","Not sure",50,99.9,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",4.7,50.1,"Strongly disagree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure",4,60,1,"Republican",0,0,0.959966862697315 +1020,81.1,87.1,"True","Agree","Definitely true","Probably true","Probably false","Definitely true","Somewhat agree","Somewhat disagree",96.1,73.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Not vote in the presidential election","5fe23757-e4e4-6726-bc02-2e97cb905e5c","37","2","1","1","1","6","2","3","39466","622","25","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true",18.9,87.1,"False","Disagree","Definitely true","Probably false","Probably true","Definitely true","Somewhat agree","Somewhat agree",3.90000000000001,26.7,"Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly agree","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Yes, true",6,37,0,"Republican",1,1,1.17262539987032 +1021,51.6,0.1,"True","Strongly agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly disagree","Slightly agree",85.4,61.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe23630-12a8-5c5e-3773-9861f4da9b6a","29","2","2","1","1","2","2","3","36269","524","1","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",48.4,99.9,"True","Strongly agree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Slightly agree",14.6,38.9,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Agree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true",2,29,1,"Republican",0,0,0.697625211881609 +1022,50,95.2,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Not sure","Strongly disagree","Strongly agree",3.2,0,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2361d-8280-6982-7550-9eee30398b43","57","2","4","1","1","4","1","1","13492","526","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false",50,4.8,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Not sure","Strongly agree","Strongly disagree",3.2,0,"Neither agree nor disagree","Disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",4,57,0,"Democrat",0,0,0.623710965386887 +1023,65.7,81.4,"Not sure","Agree","Not sure","Probably true","Definitely false","Definitely true","Somewhat agree","Strongly agree",24.8,15.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe236f2-ec5a-cd50-6a46-3f017aae82cd","41","1","7","16","1","6","2","4","83338","760","13","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure",34.3,81.4,"Not sure","Disagree","Not sure","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",24.8,15.3,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure",6,41,0,"Independent",0,0,0.917574528626089 +1024,33.5,99.9,"False","Disagree","Probably false","Not sure","Probably true","Probably true","Somewhat agree","Strongly agree",60.6,54,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe235c0-f288-3180-e955-2b063c578352","49","2","8","1","1","7","1","3","42701","529","18","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",33.5,99.9,"True","Disagree","Probably false","Not sure","Probably false","Probably false","Somewhat agree","Strongly disagree",39.4,46,"Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false",7,49,0,"Independent",0,1,0.59837456742152 +1025,67.2,65.4,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Probably true","Not sure","Slightly agree","Strongly agree",10.7,13.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe23747-ac00-203f-0e2f-dfdec0b21db1","43","2","15","1","1","6","3","2","57401","725","42","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",67.2,34.6,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably false","Not sure","Slightly disagree","Strongly disagree",10.7,13.2,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,43,0,"Independent",0,3,1.27928919042512 +1026,62,77.8,"False","Disagree","Definitely false","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",37.3,65.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe23777-4534-264e-c900-4ba130ea11af","36","2","6","1","1","4","1","2","53151","617","50","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Not sure","Not sure","No, false","No, false","Not sure","No, false","No, false","No, false","Yes, true",62,22.2,"False","Agree","Definitely true","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",37.3,65.7,"Disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","No, false","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",4,36,0,"Democrat",0,0,0.501443380121097 +1027,99.9,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",100,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe23904-2c63-1fa2-2f06-ce9ffcf8f130","35","1","13","2","1","4","3","3","77060","618","44","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",99.9,0.0999999999999943,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",0,0,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,35,0,"Independent",1,0,1.11642350869886 +1028,50,99.9,"True","Strongly agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Slightly agree",74,89,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe23822-ebda-94e8-19ab-af71678f980f","65","1","2","1","1","2","2","3","35747","691","1","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",50,99.9,"True","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Slightly agree",26,11,"Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure",2,65,0,"Republican",1,0,0.957543870478141 +1029,48.1,99.9,"True","Disagree","Definitely false","Definitely true","Definitely false","Probably true","Strongly disagree","Strongly disagree",85.4,96.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe236d5-4e66-9e7d-d89f-f7632701e05f","50","2","1","1","1","2","3","3","29223","546","41","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","","Not sure","Yes, true",51.9,99.9,"False","Disagree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Strongly disagree",14.6,3.90000000000001,"Strongly agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","","Not sure","Yes, true",2,50,1,"Independent",0,0,1.52658135748604 +1030,49.8,49.8,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly disagree","Strongly agree",44.5,50.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe238ad-44bd-6e9c-26a4-1cc0aa117490","38","2","1","1","1","2","3","3","26180","564","49","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.8,49.8,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly disagree","Strongly disagree",44.5,50.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,38,0,"Other",0,0,1.17262539987032 +1031,80.2,82.2,"Not sure","Agree","Definitely false","Not sure","Definitely true","Definitely false","Somewhat disagree","Somewhat agree",60.1,76.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Strongly disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe22f9d-29e7-03ae-e887-892620bbf24f","40","1","20","1","1","8","2","2","93720","515","36","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",19.8,82.2,"Not sure","Agree","Definitely true","Not sure","Definitely false","Definitely false","Somewhat agree","Somewhat agree",60.1,76.8,"Neither agree nor disagree","Agree","Strongly disagree","Agree","Agree","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false",8,40,0,"Republican",0,2,0.932090096130861 +1032,52.3,60.4,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely true","Probably false","Strongly agree","Somewhat agree",63.9,76.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Agree","Agree","Not vote in the presidential election","5fe236d8-27ec-e49a-240a-22edefd398df","73","2","1","2","1","7","2","1","10029","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",47.7,60.4,"Not sure","Neither agree nor disagree","Probably true","Not sure","Definitely false","Probably false","Strongly agree","Somewhat disagree",36.1,23.5,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Disagree","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,73,0,"Republican",0,0,1.81131219013374 +1033,49.7,98.6,"False","Agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",76.9,50.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe2398f-a1c2-8e12-3401-a72cdde2fbeb","46","2","21","1","1","6","1","2","61614","675","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",50.3,98.6,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.1,49.7,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","No, false",6,46,0,"Independent",0,2,0.65280362851795 +1034,67.2,39,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Probably true","Definitely false","Slightly agree","Somewhat disagree",51.5,46.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe2391f-9b11-c7d1-e31d-f87851f40e58","28","2","1","2","1","2","1","3","31520","561","11","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure",32.8,61,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Probably false","Definitely true","Slightly disagree","Somewhat disagree",51.5,46.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","No, false","Not sure","Yes, true","Not sure",2,28,0,"Independent",0,0,1.56294177382206 +1035,96.2,99.2,"True","Disagree","Probably false","Definitely true","Definitely false","Definitely true","Strongly agree","Somewhat agree",67.8,85.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe2392b-42d9-2bc9-0da7-30a0c3c6441c","55","2","10","3","1","4","1","4","98226","819","48","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",3.8,0.799999999999997,"False","Agree","Probably false","Definitely true","Definitely false","Definitely true","Strongly agree","Somewhat disagree",32.2,14.7,"Agree","Agree","Strongly disagree","Strongly agree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Yes, true",4,55,0,"Democrat",1,0,0.635086657233893 +1036,70.1,80.1,"True","Agree","Probably true","Definitely true","Probably true","Definitely true","Somewhat agree","Somewhat agree",25.3,45.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe235ed-b905-dd5e-02bc-2075a1f9e414","41","1","20","1","1","7","1","1","10012","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",70.1,80.1,"False","Disagree","Probably true","Definitely false","Probably false","Definitely false","Somewhat disagree","Somewhat agree",25.3,45.3,"Strongly disagree","Agree","Strongly disagree","Agree","Strongly disagree","Yes, true","Not sure","No, false","No, false","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false",7,41,0,"Democrat",1,1,0.605598834997122 +1037,99.9,99.9,"True","Disagree","Probably true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",100,74.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe23655-689f-0d3e-9384-352b68f05f61","43","2","1","2","1","2","1","2","50315","679","16","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",0.0999999999999943,99.9,"False","Agree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",0,25.2,"Disagree","Neither agree nor disagree","Strongly disagree","Agree","Strongly agree","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",2,43,0,"Democrat",1,0,0.655243037585841 +1038,99.9,81.8,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",67.6,49.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe22b80-ec26-7ce9-3399-97793cc86185","45","1","21","1","2","7","1","4","90081","803","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",99.9,81.8,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",32.4,50.9,"Disagree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false",7,45,1,"Democrat",0,2,1.95104598508451 +1039,84.6,90.8,"True","Agree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat agree",13.7,22,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe236c2-b0c8-2dfe-4c31-5afc1c6dd7e1","34","1","15","1","1","7","1","2","67301","671","17","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",84.6,90.8,"True","Disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly disagree","Somewhat agree",13.7,22,"Strongly agree","Agree","Strongly disagree","Strongly agree","Disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false",7,34,0,"Democrat",1,1,0.638931314338847 +1040,99.9,99.9,"True","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",34.5,16.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for a different candidate","5fe23a34-d051-d1a9-fc0b-edb9b8300baf","36","1","1","1","1","2","3","4","85035","753","3","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",0.0999999999999943,0.0999999999999943,"False","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",34.5,16.2,"Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",2,36,0,"Independent",0,0,0.454427205562949 +1041,50.7,59.3,"True","Neither agree nor disagree","Probably true","Not sure","Definitely false","Probably false","Somewhat disagree","Slightly disagree",93.2,93.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Disagree","Agree","Not vote in the presidential election","5fe23941-6599-c427-7326-04994de02d05","56","1","4","1","1","2","2","2","46947","527","15","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",50.7,59.3,"False","Neither agree nor disagree","Probably false","Not sure","Definitely false","Probably false","Somewhat agree","Slightly disagree",6.8,6.8,"Disagree","Disagree","Disagree","Disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",2,56,0,"Republican",0,0,2.05601198902308 +1042,50,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Somewhat agree",95.4,98.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe23899-eeb4-554a-0e90-44149bbc968f","83","2","4","1","1","8","2","3","28557","545","34","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true",50,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",4.59999999999999,1.09999999999999,"Neither agree nor disagree","Disagree","Agree","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",8,83,1,"Republican",0,1,0.766530426783843 +1043,99.9,99.9,"True","Agree","Definitely true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe23aad-d2a6-14b5-188d-434341b3722a","29","2","7","15","2","4","1","3","33101","528","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure",99.9,99.9,"False","Disagree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Strongly disagree","Strongly disagree","Disagree","Strongly agree","Strongly agree","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure",4,29,0,"Democrat",0,0,0.663808163196431 +1044,12.6,81.4,"False","Agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",82.1,93.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe23a13-fb44-487b-c99b-65bd52eec617","42","1","14","1","1","6","1","3","40504","541","18","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true",87.4,18.6,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.9,6.8,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true",6,42,0,"Democrat",0,0,0.574171657914799 +1045,66.1,32.3,"True","Strongly agree","Definitely true","Definitely true","Not sure","Definitely true","Strongly agree","Somewhat agree",50.4,75.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe23aa4-650a-ae48-6db6-9f14e1fb7dee","71","1","10","1","1","-3105","2","3","30010","524","11","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","No, false",33.9,67.7,"True","Strongly agree","Definitely false","Definitely true","Not sure","Definitely false","Strongly disagree","Somewhat agree",49.6,24.3,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Yes, true",-3105,71,1,"Republican",0,1,0.957543870478141 +1046,37.8,29.7,"False","Agree","Probably false","Probably true","Definitely false","Definitely false","Strongly disagree","Slightly agree",34.7,77.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe23a38-d311-58ed-72d5-e400579705e5","30","2","2","1","1","4","2","3","33592","539","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",62.2,70.3,"False","Agree","Probably true","Probably true","Definitely false","Definitely false","Strongly agree","Slightly agree",65.3,22.8,"Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,30,0,"Republican",0,0,0.697625211881609 +1047,51.6,95,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably false","Probably true","Somewhat agree","Somewhat agree",10.2,24.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe23683-fae8-3f86-05e8-60be8dbc0e1d","37","1","8","1","1","6","3","3","75006","623","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true",48.4,5,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Somewhat agree","Somewhat disagree",10.2,24.3,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true",6,37,0,"Other",0,1,1.4648345646551 +1048,27.8,35.6,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Probably true","Definitely true","Strongly agree","Strongly agree",23.3,24.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe23ad3-3db9-dca9-fd53-55cae18acf3a","49","2","11","1","1","2","3","2","47850","581","15","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",72.2,64.4,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",23.3,24.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,49,0,"Other",1,0,1.66544152049953 +1049,14,87.6,"True","Disagree","Definitely true","Probably true","Probably true","Definitely true","Strongly disagree","Strongly disagree",10.9,11.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe23a89-77f8-bc14-cadb-64a86704bfc0","66","1","20","1","1","7","1","4","96731","744","12","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",14,87.6,"False","Disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",10.9,11.7,"Disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",7,66,0,"Democrat",0,1,0.905456100816435 +1050,50,73.9,"Not sure","Agree","Probably true","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly agree",75.2,86.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe23aab-554f-9f41-c8fd-e65d17258602","67","1","19","1","1","6","2","3","29212","546","41","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",50,26.1,"Not sure","Agree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.8,13.5,"Strongly disagree","Disagree","Disagree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Yes, true",6,67,0,"Republican",0,2,0.957543870478141 +1051,17.6,99.9,"True","Strongly agree","Probably false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",77.9,68.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe23885-6823-3e94-4017-5b972e6b0cd2","41","1","14","1","1","2","2","3","28081","517","34","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false",82.4,0.0999999999999943,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly agree",22.1,31.8,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","Yes, true",2,41,1,"Republican",0,0,0.854374859000727 +1052,49.9,49,"Not sure","Neither agree nor disagree","Not sure","Definitely false","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",53.2,55,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe23961-b95f-80e6-4b9d-675648d7e464","40","2","20","1","1","2","3","3","76825","635","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.9,51,"Not sure","Neither agree nor disagree","Not sure","Definitely true","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",53.2,55,"Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,40,0,"Other",0,0,1.17262539987032 +1053,49.8,50.3,"False","Neither agree nor disagree","Definitely false","Probably false","Probably true","Not sure","Somewhat disagree","Strongly agree",76.6,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Vote for the Republican Donald Trump","5fe23aec-d9dd-00a2-531b-cde0871dd4ce","56","2","6","1","1","2","2","3","21222","512","21","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure",49.8,49.7,"False","Neither agree nor disagree","Definitely false","Probably true","Probably true","Not sure","Somewhat disagree","Strongly disagree",23.4,0,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure",2,56,0,"Republican",0,0,0.879927333598919 +1054,81,75.7,"True","Agree","Definitely false","Probably false","Probably true","Probably false","Strongly disagree","Somewhat agree",67.6,60.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Neither agree nor disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe23be1-d03b-f205-5fd4-c947d5995137","27","1","13","1","1","6","2","3","22032","511","47","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",81,75.7,"True","Agree","Definitely false","Probably false","Probably true","Probably false","Strongly agree","Somewhat agree",67.6,60.2,"Strongly agree","Agree","Neither agree nor disagree","Agree","Agree","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure",6,27,0,"Republican",0,0,0.871468009862344 +1055,60.6,73,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Definitely false","Slightly agree","Strongly agree",14.1,23.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe23a9e-a6ce-7fb7-d3cc-27eee1c03a14","61","2","3","1","1","2","2","2","64086","616","26","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",39.4,27,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly agree","Strongly disagree",14.1,23.7,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true",2,61,1,"Republican",0,0,0.959966862697315 +1056,49.8,30.1,"False","Disagree","Definitely false","Definitely true","Definitely true","Definitely true","Slightly agree","Strongly agree",52,46.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe23a17-0c37-004f-863b-0727eba45732","44","2","4","2","1","4","1","2","48227","505","23","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",50.2,30.1,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",52,46.5,"Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Disagree","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true",4,44,0,"Democrat",0,0,0.655243037585841 +1057,50,74.7,"True","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",25.5,25.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe23995-6772-4d3e-0898-b70a1cdf201e","60","2","3","1","1","-3105","2","3","21224","512","21","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",50,74.7,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",25.5,25.7,"Strongly disagree","Agree","Disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true",-3105,60,0,"Republican",0,0,0.879927333598919 +1058,50,70.7,"False","Disagree","Probably true","Definitely false","Definitely true","Definitely false","Somewhat disagree","Slightly disagree",55.8,75.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Strongly disagree","Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe2367d-2628-5952-4ee9-16ee630e5820","27","2","1","1","1","6","1","4","92692","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure",50,70.7,"False","Agree","Probably true","Definitely true","Definitely false","Definitely false","Somewhat agree","Slightly agree",44.2,24.2,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",6,27,0,"Democrat",0,0,0.659676306910243 +1059,31.3,63.6,"False","Disagree","Definitely false","Definitely false","Probably true","Definitely true","Slightly agree","Strongly disagree",50,24.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe23a04-e198-0111-8927-895d5e691868","60","1","2","1","1","2","3","3","32539","686","10","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",68.7,36.4,"False","Agree","Definitely false","Definitely true","Probably false","Definitely false","Slightly disagree","Strongly disagree",50,24.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",2,60,0,"Republican",0,0,1.09919840793407 +1060,76.8,50,"True","Strongly disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly disagree","Strongly agree",15.3,10.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Neither agree nor disagree","Disagree","Vote for the Republican Donald Trump","5fe23b82-0aeb-fd63-6d75-c9a5a71d62c5","40","1","21","1","1","7","2","3","78254","641","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure",76.8,50,"True","Strongly agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly agree",15.3,10.2,"Disagree","Agree","Strongly disagree","Neither agree nor disagree","Agree","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure",7,40,0,"Republican",0,0,0.854374859000727 +1061,69,78.5,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",27.2,30,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe23b80-1cdb-23b1-915b-b497467473aa","59","1","4","1","1","2","1","3","78216","641","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true",69,78.5,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",27.2,30,"Disagree","Agree","Strongly disagree","Strongly disagree","Disagree","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",2,59,0,"Democrat",0,0,0.73870218161496 +1062,99.9,99.9,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely true","Strongly disagree","Strongly disagree",49,76.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe23c29-25c3-2e5d-df10-de86b203bdfc","36","2","1","1","1","6","1","2","54667","702","50","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure",0.0999999999999943,99.9,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",51,23.6,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure",6,36,0,"Democrat",1,0,0.501443380121097 +1063,48.9,54.8,"False","Disagree","Probably true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",9.8,7.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe23ae8-b573-d322-21b7-714110b7f47f","42","1","21","1","1","7","2","3","32801","534","10","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false","Not sure",48.9,54.8,"True","Agree","Probably false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",9.8,7.2,"Strongly disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure",7,42,1,"Republican",0,1,0.854374859000727 +1064,64.4,84.7,"False","Strongly disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly agree",3.6,7.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","","5fe23ac7-b771-059f-97ba-2e7563b1b981","32","2","13","1","1","3","1","3","39212","718","25","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false","No, false","No, false","Not sure","Yes, true",35.6,15.3,"False","Strongly disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",3.6,7.5,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false","No, false","Not sure","Yes, true",3,32,0,"Democrat",0,0,1.19608566751863 +1065,19.8,33.6,"False","Strongly agree","Definitely true","Definitely true","Probably false","Definitely false","Strongly agree","Strongly agree",75.4,80.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Disagree","Neither agree nor disagree","Agree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe23ab1-e6dd-86dd-d62f-da2ed69ab2b5","59","2","8","1","1","2","3","1","15440","508","39","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false",80.2,33.6,"False","Strongly agree","Definitely false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",24.6,19.8,"Disagree","Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Not sure","No, false","Not sure","Not sure","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false",2,59,0,"Independent",0,0,1.59121992153205 +1066,86.8,96.7,"True","Agree","Definitely false","Definitely true","Definitely false","Probably false","Somewhat disagree","Slightly disagree",23.8,7.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe23ca7-6be6-dc1c-e17e-191453b2083e","31","1","10","1","1","6","3","3","33771","539","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Not sure",13.2,3.3,"False","Agree","Definitely false","Definitely true","Definitely false","Probably false","Somewhat disagree","Slightly agree",23.8,7.5,"Agree","Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure",6,31,0,"Independent",0,2,0.871468009862344 +1067,81.1,71.8,"True","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely false","Somewhat agree","Slightly agree",63,65.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe23ba2-6aeb-8f8f-7cb2-1bf10fe9e125","35","2","18","1","1","2","1","1","10001","501","33","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",18.9,28.2,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Slightly agree",63,65.5,"Agree","Neither agree nor disagree","Strongly agree","Disagree","Agree","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",2,35,1,"Democrat",0,0,0.484792339820778 +1068,75.2,75.2,"False","Disagree","Definitely false","Probably true","Probably true","Probably false","Strongly disagree","Somewhat agree",25.5,10.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Neither agree nor disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe23a90-1de2-87ee-4139-a6622593cf12","25","2","5","1","1","4","4","4","99664","747","2","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",75.2,75.2,"False","Agree","Definitely false","Probably true","Probably false","Probably false","Strongly agree","Somewhat disagree",25.5,10.3,"Agree","Agree","Neither agree nor disagree","Disagree","Agree","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",4,25,0,"Other",0,0,0.981606883470018 +1069,50,12.7,"Not sure","Disagree","Definitely true","Probably true","Definitely false","Probably true","Slightly disagree","Slightly disagree",70,68.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe2342c-59f9-4fda-ddfa-ce404a69b9c2","30","2","4","1","1","2","2","3","75803","623","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false",50,12.7,"Not sure","Agree","Definitely false","Probably true","Definitely false","Probably false","Slightly disagree","Slightly agree",30,31.6,"Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Disagree","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false",2,30,0,"Republican",0,0,0.697625211881609 +1070,80.8,68.3,"False","Disagree","Probably true","Definitely true","Probably true","Not sure","Slightly agree","Strongly disagree",39.9,36.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe235ec-77a9-b43e-35a8-e24de6e6edc5","59","2","3","1","1","2","2","3","77535","618","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",80.8,68.3,"False","Disagree","Probably true","Definitely true","Probably false","Not sure","Slightly disagree","Strongly disagree",39.9,36.5,"Strongly agree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",2,59,0,"Republican",0,1,1.50864454760297 +1071,99.9,85.4,"Not sure","Agree","Definitely false","Probably true","Definitely true","Probably false","Strongly disagree","Strongly disagree",5.1,0,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2365e-ec7c-9a6c-8b30-36d593dbeae0","56","2","5","2","1","6","1","3","39042","718","25","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true",0.0999999999999943,14.6,"Not sure","Agree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",5.1,0,"Agree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true",6,56,0,"Democrat",0,0,0.772717258464593 +1072,44.7,72.9,"Not sure","Disagree","Probably true","Not sure","Probably true","Probably false","Slightly agree","Somewhat agree",36.8,27.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe23cde-72ae-8410-b379-ef41c2e3ae5e","29","2","1","1","1","6","2","3","32507","686","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure",55.3,27.1,"Not sure","Agree","Probably false","Not sure","Probably true","Probably false","Slightly agree","Somewhat disagree",36.8,27.6,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false","No, false","No, false","No, false","Not sure","Not sure",6,29,0,"Republican",0,0,0.697625211881609 +1073,50,55.5,"False","Neither agree nor disagree","Probably true","Probably false","Probably true","Definitely false","Slightly agree","Slightly disagree",36.8,43.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe23ba9-c5b7-bd00-d43f-b1ade0a35c52","61","2","1","1","1","2","2","2","46222","527","15","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,55.5,"False","Neither agree nor disagree","Probably false","Probably false","Probably true","Definitely false","Slightly disagree","Slightly agree",36.8,43.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,61,0,"Independent",0,0,1.64587315109813 +1074,74.1,63.4,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",0,35.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe23dff-c0f8-5114-380a-355e595d0f7b","32","2","1","1","1","2","2","3","28613","517","34","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",25.9,36.6,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly agree",100,64.1,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",2,32,1,"Republican",0,0,0.697625211881609 +1075,99.9,99.9,"True","Strongly agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",97.3,0,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe23de1-5329-0566-0ba6-4ab668e7fc2c","22","2","10","1","2","6","1","4","90004","803","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false",0.0999999999999943,0.0999999999999943,"True","Strongly agree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",2.7,100,"Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",6,22,0,"Democrat",1,0,1.12560161708169 +1076,49.5,99.9,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",15.1,14.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe23d3d-0595-676b-6103-241102050863","64","2","2","1","1","6","1","3","77354","618","44","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","No, false",49.5,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.1,14.4,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Not sure","Yes, true",6,64,0,"Democrat",0,0,0.59134387049726 +1077,75.8,80.4,"True","Neither agree nor disagree","Definitely true","Probably false","Probably true","Probably false","Slightly agree","Slightly agree",34.9,51.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Agree","Disagree","Not vote in the presidential election","5fe23ea8-cfc5-7ef1-e43e-0a126ae9715b","27","2","1","1","1","2","3","4","97446","820","38","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","Not sure",75.8,80.4,"True","Neither agree nor disagree","Definitely false","Probably true","Probably false","Probably true","Slightly disagree","Slightly disagree",65.1,48.4,"Agree","Neither agree nor disagree","Strongly agree","Disagree","Disagree","No, false","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure",2,27,0,"Independent",0,0,1.68297519134869 +1078,54.4,50,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",0.8,0.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe235a5-1f51-1d85-1447-4bb56b1cc79c","77","2","15","1","1","4","2","3","73025","650","37","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","No, false",54.4,50,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",0.8,0.5,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",4,77,0,"Republican",0,0,0.766530426783843 +1079,77.3,77,"True","Disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",71.6,66.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe23f38-26c8-dfe7-e4f5-7a4481f61d3b","33","1","3","1","2","2","2","4","93654","866","5","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure",22.7,77,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",71.6,66.6,"Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Disagree","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure",2,33,1,"Republican",0,0,2.27466029280039 +1080,58.6,30.7,"Not sure","Agree","Probably true","Probably false","Probably false","Probably false","Slightly disagree","Somewhat agree",39.4,50.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Disagree","Strongly disagree","Agree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe23d38-25e4-851d-10e1-7c649de4d990","42","2","3","1","1","5","2","3","29649","567","41","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",58.6,30.7,"Not sure","Agree","Probably false","Probably true","Probably false","Probably true","Slightly agree","Somewhat disagree",39.4,50.6,"Agree","Strongly agree","Agree","Strongly agree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",5,42,0,"Republican",0,0,1.17262539987032 +1081,86.6,68.1,"False","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",67.9,74.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe23d1a-4bd2-ca35-b368-61beaa4a5d5d","50","2","1","1","1","2","4","2","65774","619","26","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",13.4,68.1,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",67.9,74.8,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure",2,50,0,"Other",0,0,1.66544152049953 +1082,51.4,49.8,"Not sure","Agree","Probably true","Definitely false","Probably true","Probably true","Slightly disagree","Somewhat agree",23.3,14,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe23e05-0091-d671-013e-9c1e082feb0a","37","2","1","1","1","2","2","3","24818","559","49","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",48.6,50.2,"Not sure","Agree","Probably false","Definitely true","Probably false","Probably false","Slightly agree","Somewhat disagree",23.3,14,"Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,37,0,"Republican",0,0,0.683941849031096 +1083,0.1,5.8,"False","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",25.6,51.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe23e11-49c5-133b-f3fa-0df83c2d4186","46","2","6","1","1","6","2","2","45424","542","36","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false",0.1,94.2,"False","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",25.6,51.8,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,46,0,"Republican",0,0,0.971380249062987 +1084,72.3,71.2,"True","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Probably false","Somewhat agree","Strongly agree",64.1,86.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe23f32-cc98-0c52-9221-15b89812b4a9","70","2","14","1","1","4","2","3","27006","518","34","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","","Yes, true","Yes, true","Yes, true","No, false","Not sure",72.3,71.2,"False","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Probably false","Somewhat disagree","Strongly agree",35.9,13.3,"Strongly disagree","Agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","","No, false","Yes, true","No, false","No, false","Not sure",4,70,1,"Republican",0,0,0.766530426783843 +1085,50.3,97.5,"False","Disagree","Definitely false","Definitely true","Probably true","Definitely false","Strongly agree","Strongly disagree",75.8,4.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe23d6a-1762-f830-cecc-be7bc146d22d","66","1","2","1","1","6","1","2","53233","617","50","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Not sure",49.7,97.5,"False","Disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly agree","Strongly disagree",24.2,95.4,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",6,66,0,"Democrat",0,1,0.702039267968476 +1086,77.3,38,"Not sure","Strongly agree","Probably false","Probably false","Probably true","Probably true","Strongly agree","Somewhat disagree",90.3,84.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe23ef9-01fd-1343-6a14-e9eecfc1ed75","26","1","3","1","1","4","2","3","39576","622","25","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","No, false",77.3,38,"Not sure","Strongly disagree","Probably false","Probably true","Probably false","Probably false","Strongly disagree","Somewhat agree",9.7,15.3,"Agree","Agree","Disagree","Disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true",4,26,0,"Independent",0,0,0.871468009862344 +1087,50,50,"False","Neither agree nor disagree","Definitely true","Not sure","Definitely true","Definitely false","Slightly agree","Strongly agree",51.6,51.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe23ae1-68de-68ff-f626-869b51c2ffcb","40","2","6","1","1","6","1","3","30309","524","11","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",50,50,"True","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Slightly disagree","Strongly disagree",51.6,51.3,"Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",6,40,0,"Democrat",0,0,0.459634341107367 +1088,99.9,99.9,"False","Agree","Not sure","Probably true","Definitely false","Probably true","Strongly disagree","Slightly agree",7.3,4.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe23ef2-b1b3-0cb8-ef30-f0c381719fd5","55","2","3","1","1","4","1","3","28659","518","34","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",99.9,99.9,"False","Agree","Not sure","Probably false","Definitely false","Probably false","Strongly agree","Slightly agree",7.3,4.4,"Agree","Agree","Disagree","Disagree","Disagree","Not sure","No, false","Not sure","No, false","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true",4,55,0,"Democrat",0,0,0.59134387049726 +1089,49.6,49.8,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",18.8,16.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe23bfa-a5a4-758d-45c8-cd618a17a271","43","2","1","1","1","2","2","3","29709","517","41","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.6,49.8,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat disagree","Strongly disagree",18.8,16.6,"Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,43,1,"Other",0,0,1.17262539987032 +1090,98.9,96.2,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",26.6,35.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe23fba-2b62-6b0b-691d-df51d21bfa6f","27","1","22","1","1","6","1","4","90005","803","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",98.9,3.8,"False","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",26.6,35.5,"Strongly agree","Disagree","Disagree","Strongly agree","Strongly agree","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","No, false",6,27,0,"Democrat",1,1,0.824062531779561 +1091,49.8,49.8,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely true","Somewhat agree","Strongly disagree",74,78.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe23ee8-367a-5f0e-883f-ddc87ab2504e","67","2","1","1","1","4","2","3","25705","564","49","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",49.8,49.8,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",26,21.7,"Disagree","Neither agree nor disagree","Agree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",4,67,0,"Republican",0,1,0.766530426783843 +1092,70.7,90.4,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",99.2,97.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe23df0-144d-4715-709e-7e1ba12c2ee9","36","1","3","1","1","2","1","3","29554","519","41","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",29.3,9.59999999999999,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",0.799999999999997,2.59999999999999,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Not sure","No, false",2,36,0,"Independent",0,1,1.4648345646551 +1093,49.8,63.9,"True","Neither agree nor disagree","Probably true","Definitely true","Probably true","Definitely false","Somewhat agree","Strongly agree",82.2,95,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe24025-fe2f-11a6-5b96-4ea4411004c9","60","1","1","1","1","6","2","3","72952","670","4","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure",50.2,36.1,"True","Neither agree nor disagree","Probably false","Definitely true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",17.8,5,"Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Strongly agree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","No, false","Not sure",6,60,1,"Republican",0,1,1.09919840793407 +1094,80.1,0.1,"True","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Somewhat disagree","Somewhat disagree",12.1,33.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe23f47-97d5-1e79-20dc-be989eaa77c1","51","1","9","1","1","4","2","4","83801","881","13","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",80.1,0.1,"True","Strongly disagree","Definitely true","Definitely true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",12.1,33.5,"Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false",4,51,0,"Democrat",0,0,1.56503676943297 +1095,50,50,"Not sure","Strongly agree","Not sure","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",50.1,75.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24172-9bad-708b-1ce9-dd6d9678b1f4","30","1","19","1","1","2","1","3","23661","544","47","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Strongly disagree","Not sure","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",49.9,24.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,30,0,"Democrat",1,0,0.585658890557251 +1096,83.7,83.7,"Not sure","Neither agree nor disagree","Not sure","Probably false","Probably true","Definitely false","Slightly agree","Somewhat disagree",75.9,76.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe2416a-4f0e-3beb-0358-1f490b67c8a3","34","2","4","1","1","2","1","1","04363","500","20","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",16.3,83.7,"Not sure","Neither agree nor disagree","Not sure","Probably false","Probably false","Definitely false","Slightly agree","Somewhat disagree",24.1,23.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,34,0,"Democrat",0,0,0.735809595887113 +1097,51.9,49.9,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Probably false","Slightly agree","Somewhat disagree",88.7,69,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe24017-8e18-24b6-da89-b1cee970354b","30","2","2","1","1","6","2","3","30135","524","11","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",51.9,50.1,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Probably false","Probably true","Slightly agree","Somewhat disagree",11.3,31,"Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",6,30,0,"Independent",0,1,1.19608566751863 +1098,49.9,80.5,"True","Strongly agree","Not sure","Probably false","Definitely false","Definitely true","Strongly agree","Strongly agree",91.9,72.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe2402b-6583-7644-7c8e-bf7de8216e20","26","2","20","1","1","2","1","3","23455","544","47","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",49.9,19.5,"False","Strongly disagree","Not sure","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.09999999999999,27.2,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","No, false","No, false","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true",2,26,0,"Democrat",1,0,0.468830069482283 +1099,16.3,19.1,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",24.5,23.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe240ab-b0ce-7660-79ec-3862c2d36f49","69","2","11","1","1","7","2","3","22401","511","47","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false",16.3,19.1,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",24.5,23.4,"Strongly disagree","Strongly disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",7,69,0,"Republican",0,0,0.766530426783843 +1100,10.3,49.9,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",25.6,9.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly disagree","Disagree","Not vote in the presidential election","5fe24177-b18a-f4b8-720d-3f0380a29d9f","29","2","24","4","1","7","1","1","01701","506","22","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",10.3,49.9,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.6,9.9,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",7,29,0,"Democrat",1,3,0.962904081260747 +1101,51.7,80.2,"False","Disagree","Definitely true","Probably false","Definitely false","Definitely true","Slightly disagree","Strongly agree",68.8,49.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24179-c4ff-f466-4539-2310079d420b","73","2","8","1","1","7","3","1","10010","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","No, false","Not sure","Yes, true",51.7,19.8,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",31.2,50.9,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","No, false","Not sure","Yes, true",7,73,0,"Independent",0,0,0.543332857421717 +1102,50,69.2,"False","Agree","Definitely false","Probably false","Probably true","Definitely true","Strongly disagree","Strongly disagree",70.9,82.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24191-6739-5264-43d0-de2723ae6f06","66","2","20","1","1","7","1","1","06118","533","7","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true",50,69.2,"False","Disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",29.1,17.2,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Yes, true",7,66,0,"Democrat",1,0,0.543332857421717 +1103,99.9,99.9,"True","Strongly disagree","Probably true","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly disagree",100,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for a different candidate","5fe2432c-c4c0-db00-eaa1-da5ab474147e","28","2","1","2","2","4","3","3","35901","630","1","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",99.9,0.0999999999999943,"False","Strongly disagree","Probably true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true",4,28,1,"Other",0,0,0.639223577025243 +1104,52.5,99.9,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely true","Somewhat disagree","Strongly agree",30.4,21.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe23fb0-1bb3-840f-3fae-3a6b430f48af","71","2","5","1","1","2","2","3","22849","569","47","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Not sure","Not sure","Not sure","","Yes, true","Yes, true","Yes, true","No, false","No, false",52.5,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely false","Somewhat disagree","Strongly disagree",30.4,21.3,"Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","","Yes, true","Yes, true","No, false","No, false","Yes, true",2,71,1,"Republican",0,0,0.766530426783843 +1105,85.3,64.4,"True","Strongly agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Slightly disagree",31.4,77.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe243c7-ec73-7322-24dd-a4c128c7022f","29","2","9","2","1","4","1","3","73701","650","37","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",14.7,35.6,"False","Strongly agree","Probably false","Probably false","Probably true","Probably true","Somewhat disagree","Slightly disagree",68.6,22.1,"Disagree","Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",4,29,0,"Democrat",0,0,0.612626771072269 +1106,70.3,0.1,"False","Agree","Probably false","Probably false","Definitely false","Probably false","Somewhat agree","Strongly disagree",75.7,65.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe23776-a227-bacc-d280-9e8e6120345e","57","2","1","1","1","2","1","1","17851","577","39","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true",29.7,99.9,"False","Agree","Probably true","Probably true","Definitely false","Probably false","Somewhat agree","Strongly disagree",24.3,34.3,"Disagree","Strongly disagree","Agree","Disagree","Neither agree nor disagree","Not sure","","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true",2,57,0,"Democrat",0,0,0.623710965386887 +1107,49.8,39.2,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Probably false","Strongly disagree","Strongly disagree",14.6,28.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2422c-a025-2386-ac19-94d92c61b4cd","25","2","1","1","1","2","1","4","95901","868","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","No, false","Not sure","Not sure","No, false","No, false","Not sure","No, false","Not sure","Yes, true","No, false",49.8,60.8,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",14.6,28.1,"Strongly agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true",2,25,0,"Democrat",1,0,0.659676306910243 +1108,50,76.6,"False","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Slightly disagree",62.8,85.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Agree","Agree","Neither agree nor disagree","Vote for a different candidate","5fe241ea-0bc0-9e9d-1e84-aac17aaa7c5e","29","2","12","1","1","2","2","3","40324","541","18","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",50,23.4,"False","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Definitely true","Somewhat disagree","Slightly disagree",37.2,14.2,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false",2,29,0,"Republican",0,1,0.263707573833464 +1109,49.9,63.3,"Not sure","Disagree","Definitely false","Not sure","Probably false","Definitely true","Slightly agree","Strongly agree",25.1,12.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe24292-e2f0-e848-80d9-13d4d1368505","58","1","4","1","1","6","2","3","72687","619","4","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure",49.9,36.7,"Not sure","Agree","Definitely false","Not sure","Probably false","Definitely false","Slightly disagree","Strongly disagree",25.1,12.8,"Disagree","Disagree","Agree","Disagree","Agree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure",6,58,0,"Republican",0,0,1.09919840793407 +1110,50.2,84.8,"False","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Somewhat agree","Strongly disagree",80.1,81.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe24281-ac1f-523f-5cef-8a0005358665","56","2","4","1","1","6","1","2","46923","527","15","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",49.8,84.8,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",19.9,18.1,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,56,0,"Democrat",0,1,0.645133408704056 +1111,50,73.3,"Not sure","Agree","Probably false","Definitely false","Definitely false","Probably false","Strongly disagree","Slightly disagree",80.1,84.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe2427b-6b65-8d80-2da1-6357ef6222ea","28","2","7","1","1","6","3","2","43015","535","36","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure",50,73.3,"Not sure","Agree","Probably false","Definitely true","Definitely false","Probably false","Strongly disagree","Slightly disagree",19.9,15.8,"Agree","Neither agree nor disagree","Disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure",6,28,0,"Other",0,2,0.761082262610781 +1112,78.3,82.9,"False","Disagree","Probably false","Probably false","Definitely true","Probably true","Slightly agree","Slightly agree",22.6,82.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe24497-095c-8a93-e492-d2eafe3c8ac3","36","2","3","1","1","2","1","3","37407","575","43","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","No, false",21.7,82.9,"False","Agree","Probably false","Probably true","Definitely false","Probably true","Slightly disagree","Slightly disagree",22.6,82.3,"Disagree","Disagree","Disagree","Neither agree nor disagree","Agree","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true",2,36,0,"Democrat",0,0,0.459634341107367 +1113,52.1,99.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Not sure","Slightly agree","Strongly agree",75.9,53.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe2428e-3eb5-9f09-2930-61dbce47d601","55","2","12","1","1","2","2","3","36854","522","1","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure",47.9,99.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Not sure","Slightly disagree","Strongly disagree",24.1,46.5,"Neither agree nor disagree","Disagree","Agree","Disagree","Disagree","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure",2,55,0,"Republican",0,0,0.879927333598919 +1114,50.6,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Not sure","Strongly agree","Strongly agree",85.8,56.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24391-54d8-7516-9a6b-469a04e67298","53","2","4","1","1","2","3","2","47905","582","15","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",50.6,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Not sure","Strongly agree","Strongly disagree",14.2,43.3,"Disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",2,53,0,"Republican",0,0,1.66544152049953 +1115,53.8,44.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Not sure","Somewhat agree","Slightly agree",10.3,9.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24425-592e-257e-0eb8-21a34236b696","69","1","3","1","1","2","1","1","18640","577","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",53.8,44.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Not sure","Somewhat agree","Slightly disagree",10.3,9.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",2,69,0,"Democrat",0,0,0.678727196044171 +1116,77.4,81.8,"Not sure","Agree","Definitely false","Probably true","Definitely false","Probably false","Strongly disagree","Strongly agree",76.3,52.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe23484-3079-0558-d7ff-b9b76033fac6","32","2","8","1","1","5","1","2","60046","602","14","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true",77.4,81.8,"Not sure","Agree","Definitely false","Probably false","Definitely false","Probably true","Strongly agree","Strongly disagree",76.3,52.3,"Disagree","Agree","Strongly disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false",5,32,0,"Democrat",0,0,0.511475565940556 +1117,50,50,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",11.3,14.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe23f2e-c441-cfc3-77a8-e760dbbd48f5","82","2","23","1","1","2","1","3","34243","539","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",50,50,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",11.3,14.7,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",2,82,0,"Democrat",0,0,0.515136934744757 +1118,70.6,71,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe2456d-0cc8-0277-6d4a-abc1496f28a5","40","1","7","1","1","7","2","1","16948","514","39","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",29.4,29,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",100,100,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true",7,40,0,"Republican",1,0,0.901138905289622 +1119,17.9,51.2,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely true","Definitely false","Strongly agree","Strongly agree",61.1,34.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24492-4d71-248f-8926-be69883dc22b","48","2","19","1","1","6","2","3","29466","519","41","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",17.9,51.2,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",61.1,34.5,"Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure",6,48,0,"Republican",0,0,0.890389101626892 +1120,99.9,78.4,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",54.8,54.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe244cd-1a9e-2b0e-7339-a394ecc07e62","30","2","5","1","1","2","3","3","77625","692","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false",0.0999999999999943,78.4,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",45.2,45.6,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",2,30,0,"Independent",0,0,0.468830069482283 +1121,96,88.3,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Somewhat agree","Strongly agree",100,89.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe24573-4e67-feb6-ae4c-7bc80d0594a4","36","1","20","1","1","7","1","2","48034","505","23","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure",96,11.7,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat disagree","Strongly agree",100,89.9,"Strongly agree","Agree","Strongly agree","Disagree","Strongly agree","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure",7,36,0,"Democrat",0,0,0.62639918553709 +1122,99.9,99.3,"False","Strongly disagree","Probably false","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly agree",54,76,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe244d8-e31c-8163-a53b-ce9ed6e2c4e5","36","2","11","1","1","4","2","1","12550","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure",0.0999999999999943,0.700000000000003,"False","Strongly agree","Probably true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",46,24,"Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure",4,36,0,"Republican",0,0,0.721377276759402 +1123,49.6,27.5,"Not sure","Strongly disagree","Definitely false","Probably true","Definitely false","Probably false","Slightly disagree","Somewhat agree",33.8,37.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe244b2-06e9-2fb3-71ea-101f0c228c9b","30","1","15","1","1","6","1","4","92677","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false",50.4,72.5,"Not sure","Strongly disagree","Definitely false","Probably false","Definitely false","Probably false","Slightly agree","Somewhat disagree",33.8,37.9,"Agree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",6,30,0,"Democrat",0,3,0.824062531779561 +1124,79.3,72.2,"Not sure","Agree","Definitely true","Probably false","Definitely false","Probably true","Somewhat agree","Slightly disagree",14.6,60.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Agree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe243ab-20fa-dd8d-68b2-e794d3848e8a","80","1","6","1","1","5","2","3","30519","524","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Not sure",79.3,72.2,"Not sure","Agree","Definitely false","Probably true","Definitely false","Probably false","Somewhat agree","Slightly agree",14.6,60.2,"Neither agree nor disagree","Strongly agree","Disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure",5,80,0,"Republican",0,0,1.64171890578631 +1125,25.9,72.1,"Not sure","Agree","Definitely false","Probably true","Definitely false","Probably true","Slightly disagree","Somewhat agree",61.4,81.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24440-2071-cc7e-38a6-a6947c8c8284","28","1","3","2","1","4","1","2","56304","613","24","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true",25.9,72.1,"Not sure","Agree","Definitely false","Probably false","Definitely false","Probably false","Slightly agree","Somewhat disagree",38.6,18.7,"Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true",4,28,0,"Democrat",0,0,0.834900433055863 +1126,52.6,3.4,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Somewhat disagree",79.7,29,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe243d0-4de3-169c-9fe1-b055f56c1387","32","2","1","1","1","2","2","3","28073","517","34","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",52.6,3.4,"True","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",20.3,71,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false",2,32,0,"Republican",0,0,0.697625211881609 +1127,76,91.7,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Slightly disagree","Slightly agree",25.8,36.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe245ab-2809-017a-0ac8-7903d947689b","31","1","9","1","1","6","1","3","30102","524","11","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true",76,8.3,"True","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Slightly agree","Slightly disagree",25.8,36.3,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Not sure","No, false","Yes, true","No, false",6,31,0,"Democrat",1,2,0.585658890557251 +1128,52.8,69.1,"False","Neither agree nor disagree","Definitely false","Probably true","Probably false","Probably false","Strongly disagree","Strongly disagree",75,77.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2452f-e500-d492-3ba5-ab9ce138654e","42","2","3","1","1","4","1","1","19124","504","39","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",52.8,69.1,"False","Neither agree nor disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",25,22.3,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",4,42,0,"Other",0,1,0.484792339820778 +1129,54.7,90.9,"True","Agree","Probably true","Definitely true","Definitely false","Probably false","Strongly disagree","Somewhat agree",72,49.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Disagree","Neither agree nor disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe245f0-aa46-a405-a6e0-ae3fff7557b8","35","2","5","4","1","6","2","3","77089","618","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","No, false",54.7,90.9,"False","Disagree","Probably true","Definitely true","Definitely false","Probably true","Strongly disagree","Somewhat agree",72,49.7,"Agree","Disagree","Neither agree nor disagree","Agree","Disagree","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","No, false",6,35,1,"Republican",0,0,0.522031415603809 +1130,50,99.9,"True","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",10,23,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24511-3c85-eb56-e998-51c34ff3580f","44","2","7","1","1","6","1","1","16057","508","39","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true",50,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10,23,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",6,44,0,"Democrat",1,3,0.484792339820778 +1131,55.6,96.9,"Not sure","Disagree","Definitely true","Probably false","Definitely false","Probably true","Somewhat agree","Strongly disagree",70.2,90.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe242c7-b68b-0a84-0d08-54f8373bfbf9","50","2","2","1","1","2","1","3","25271","564","49","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true",55.6,96.9,"Not sure","Agree","Definitely false","Probably true","Definitely false","Probably false","Somewhat agree","Strongly disagree",29.8,9.8,"Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Agree","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false","No, false","Yes, true","No, false","Yes, true",2,50,0,"Democrat",0,0,0.59837456742152 +1132,50,78.7,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably false","Somewhat agree","Slightly disagree",35.8,63.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Agree","Disagree","Neither agree nor disagree","Vote for a different candidate","5fe24702-5eff-4050-a385-f583765619ca","18","2","17","1","1","2","2","3","77493","618","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure",50,21.3,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably false","Somewhat agree","Slightly disagree",35.8,63.9,"Disagree","Disagree","Agree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure",2,18,0,"Republican",0,0,0.242564229228481 +1133,82.6,79.3,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",82.4,72.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24752-1cde-608f-01b6-87941864d961","19","2","8","5","1","5","1","4","95822","862","5","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",17.4,20.7,"True","Agree","Definitely false","Probably false","Definitely false","Definitely true","Somewhat disagree","Somewhat disagree",82.4,72.2,"Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",5,19,0,"Democrat",0,0,0.463140222980888 +1134,75.1,71.3,"True","Agree","Definitely true","Probably true","Probably true","Definitely true","Somewhat agree","",59.3,78.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","Strongly agree","Agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe2477c-df0a-e6cf-6190-5a24f3d36675","28","2","10","1","2","8","2","2","60525","602","14","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Not sure","Not sure",24.9,71.3,"False","Agree","Definitely false","Probably false","Probably true","Definitely false","Somewhat agree","",40.7,21.2,"Agree","Strongly agree","Disagree","Agree","Strongly disagree","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure",8,28,0,"Republican",0,0,1.41182630651846 +1135,50.9,77.8,"True","Strongly disagree","Probably false","Probably false","Probably true","Probably false","Somewhat agree","Somewhat disagree",75.4,87.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Disagree","Agree","Disagree","Not vote in the presidential election","5fe245a2-76c5-2fca-b0d5-cfa6e79cf7e4","30","1","5","15","1","6","3","3","77355","618","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure",50.9,77.8,"True","Strongly disagree","Probably false","Probably false","Probably false","Probably false","Somewhat agree","Somewhat disagree",24.6,12.5,"Strongly agree","Disagree","Disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure",6,30,0,"Other",0,0,1.14043104095828 +1136,50,50,"Not sure","Strongly disagree","Definitely false","Probably false","Probably true","Definitely false","Slightly disagree","Strongly agree",30.2,50.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe24659-d7e9-75da-3393-062465a441f8","66","2","2","1","1","5","3","3","32763","534","10","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Strongly agree","Definitely false","Probably false","Probably false","Definitely false","Slightly disagree","Strongly disagree",69.8,49.5,"Strongly disagree","Strongly agree","Strongly agree","Disagree","Strongly disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",5,66,0,"Independent",0,0,0.766530426783843 +1137,0.1,88.3,"Not sure","Strongly disagree","Probably false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",7.5,6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Agree","Strongly disagree","Not vote in the presidential election","5fe246fa-5642-c137-ad9f-4e18c44b6948","53","2","5","1","1","4","1","2","44053","510","36","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",0.1,11.7,"Not sure","Strongly agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",7.5,6,"Agree","Strongly agree","Strongly disagree","Disagree","Strongly disagree","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",4,53,0,"Independent",0,0,1.66544152049953 +1138,82.4,89.4,"True","Agree","Definitely true","Probably true","Definitely true","Probably true","Somewhat agree","Slightly agree",72.3,87.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe246f7-a9dd-96a1-5189-b503d9b5f689","30","1","19","1","1","6","2","1","07102","501","31","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true",17.6,89.4,"False","Agree","Definitely false","Probably false","Definitely true","Probably false","Somewhat disagree","Slightly agree",27.7,12.8,"Disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",6,30,0,"Democrat",1,0,0.617714819145265 +1139,99.9,99.9,"True","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",69.4,61.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe24779-116a-75a7-0352-fbb7d2036154","30","1","19","1","1","6","1","1","10003","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",99.9,99.9,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",30.6,38.8,"Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false",6,30,0,"Democrat",1,0,0.617714819145265 +1140,92,94.9,"Not sure","Agree","Probably false","Not sure","Definitely false","Definitely false","Slightly disagree","Strongly agree",85.1,86.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Agree","Disagree","Disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe24649-90dd-d6d5-804e-f16c4f6d7f37","44","2","8","1","1","6","2","3","29550","517","41","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",8,5.09999999999999,"Not sure","Agree","Probably false","Not sure","Definitely false","Definitely false","Slightly disagree","Strongly disagree",14.9,13.7,"Disagree","Disagree","Agree","Agree","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false",6,44,0,"Republican",0,3,0.683941849031096 +1141,50,75.5,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Definitely false","Slightly agree","Slightly disagree",54,61.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe247b7-c64d-f051-8228-095be33ce318","18","2","11","2","1","4","2","1","16335","516","39","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure",50,24.5,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Slightly disagree","Slightly disagree",54,61.5,"Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure",4,18,0,"Republican",0,0,0.884402808313212 +1142,50,64,"Not sure","Disagree","Probably true","Probably false","Definitely false","Definitely false","Somewhat disagree","Slightly disagree",24.6,32.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe246be-54c2-25cb-234b-abc2c3630547","30","2","21","1","1","7","1","1","10001","501","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",50,36,"Not sure","Agree","Probably false","Probably true","Definitely false","Definitely false","Somewhat agree","Slightly disagree",24.6,32.7,"Strongly agree","Disagree","Agree","Agree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",7,30,0,"Democrat",0,0,0.494491394648778 +1143,46.3,71.6,"False","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",64.9,74,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24724-a7aa-be08-b8ec-dd7660f50392","24","2","1","10","1","7","1","2","54303","658","50","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true",53.7,71.6,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",35.1,26,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",7,24,0,"Democrat",0,0,0.359092641614633 +1144,80.8,25.4,"True","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Slightly agree","Slightly disagree",50.4,49.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe248b3-d0fc-a8de-2dd9-cdcaf2b411c1","18","1","-3105","8","1","2","4","4","92833","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false",19.2,74.6,"True","Neither agree nor disagree","Probably true","Probably false","Probably false","Probably true","Slightly agree","Slightly disagree",50.4,49.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Yes, true",2,18,0,"Republican",0,1,0.860891642155238 +1145,88.4,87.4,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe247a3-8134-8ece-7aec-a8fc72a507bb","20","1","5","2","1","4","1","3","30127","524","11","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",11.6,87.4,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",100,100,"Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",4,20,0,"Democrat",0,1,0.703929889495349 +1146,25.1,71.9,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Slightly agree","Somewhat disagree",19.9,18.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe247fa-d3bc-ccbc-853d-04df170b4abd","24","2","24","9","1","8","1","4","92075","825","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Not sure","Yes, true",74.9,28.1,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Somewhat disagree",19.9,18.2,"Agree","Agree","Disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true",8,24,0,"Democrat",1,1,0.463140222980888 +1147,49.1,99.9,"True","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Definitely false","Slightly agree","Strongly disagree",55.1,59.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe2477d-d7eb-65d4-a051-13115074157e","63","2","3","1","1","4","2","3","76085","623","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50.9,99.9,"True","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Definitely false","Slightly agree","Strongly disagree",55.1,59.1,"Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",4,63,0,"Republican",0,0,0.879927333598919 +1148,71.5,81.1,"True","Agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",70.1,62.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe247df-567b-9334-d649-0d08fee70cd9","30","1","20","1","1","8","2","1","10001","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",28.5,18.9,"False","Disagree","Probably false","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",70.1,62.6,"Agree","Strongly agree","Disagree","Agree","Disagree","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","No, false",8,30,0,"Republican",0,0,0.919167646530211 +1149,50,50,"True","Disagree","Probably false","Probably true","Definitely false","Not sure","Slightly disagree","Slightly agree",76,47.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe24853-4489-f9cc-ea19-0ba1bedee88c","21","2","3","1","1","2","1","3","37160","659","43","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"True","Agree","Probably true","Probably true","Definitely false","Not sure","Slightly agree","Slightly agree",24,52.1,"Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,21,0,"Independent",1,0,0.431240569961491 +1150,50,33,"Not sure","Strongly disagree","Probably false","Not sure","Probably true","Definitely false","Somewhat agree","Strongly disagree",80.2,51.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for a different candidate","5fe24662-d04f-2272-db87-e553b8b85844","34","1","5","2","1","6","3","3","76710","625","44","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false",50,67,"Not sure","Strongly disagree","Probably false","Not sure","Probably false","Definitely false","Somewhat disagree","Strongly disagree",19.8,48.2,"Agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false",6,34,0,"Independent",0,0,0.430459600135148 +1151,70.2,77,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Slightly agree",85.8,65.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe248c5-caf8-4448-5a82-4df6d9b8bfde","19","2","-3105","9","1","4","1","4","98105","819","48","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true",70.2,77,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Somewhat agree","Slightly disagree",14.2,34.8,"Disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true",4,19,0,"Democrat",0,0,0.463140222980888 +1152,50,84,"False","Strongly disagree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Strongly agree",65.8,76.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe247c7-a779-7d0e-48b5-83f7889ade8d","52","1","7","1","1","6","3","4","94952","807","5","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true",50,16,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",34.2,23.2,"Agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",6,52,0,"Independent",0,2,1.05176287332933 +1153,77,26.1,"True","Agree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly agree",39.2,14.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe248a0-a64a-7be9-26a9-370b47680d66","18","2","19","5","1","4","1","1","11229","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true",23,26.1,"True","Agree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",39.2,14.5,"Disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true",4,18,0,"Democrat",0,0,0.347168531567295 +1154,90.1,85.1,"True","Strongly agree","Probably true","Definitely true","Probably true","Definitely true","Strongly agree","Slightly agree",100,56.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe248c2-b87e-2bd2-9a51-9a86a3f06107","33","2","7","1","2","6","1","1","10008","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true",90.1,14.9,"True","Strongly agree","Probably true","Definitely false","Probably true","Definitely true","Strongly disagree","Slightly disagree",100,56.1,"Strongly agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false",6,33,0,"Democrat",1,0,0.917293692954153 +1155,50,5.5,"False","Strongly agree","Probably true","Definitely false","Probably false","Probably false","Slightly agree","Slightly disagree",30.7,9.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Disagree","Vote for the Republican Donald Trump","5fe24668-2940-d554-b5b7-3448b3f2b4b7","40","2","4","1","1","2","3","4","80111","751","6","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure",50,94.5,"False","Strongly agree","Probably true","Definitely true","Probably false","Probably false","Slightly agree","Slightly agree",30.7,9.5,"Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Disagree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure",2,40,0,"Independent",0,1,0.962353446331682 +1156,50,90.7,"True","Disagree","Probably false","Definitely false","Definitely true","Probably true","Strongly agree","Somewhat disagree",92.6,76,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24636-91ee-8a91-e8dd-9320c1fc583c","29","2","1","1","1","6","3","3","72904","670","4","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",50,90.7,"False","Agree","Probably false","Definitely true","Definitely false","Probably true","Strongly agree","Somewhat agree",7.40000000000001,24,"Neither agree nor disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",6,29,0,"Independent",0,0,0.468830069482283 +1157,80,72.9,"True","Agree","Probably true","Definitely true","Probably true","Definitely false","Somewhat agree","Somewhat agree",61.9,84.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24808-bea0-41b1-b325-3304dc7fabd5","34","2","19","1","1","7","2","3","30004","524","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",20,27.1,"True","Agree","Probably false","Definitely false","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",61.9,84.3,"Strongly agree","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false",7,34,0,"Republican",0,2,0.697625211881609 +1158,30.1,27,"False","Disagree","Probably true","Definitely false","Probably true","Definitely true","Strongly disagree","Strongly disagree",51.7,54.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24781-e7f0-1ae7-009b-01b15689a23b","70","1","8","1","1","6","3","4","97229","820","38","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",30.1,27,"True","Agree","Probably false","Definitely true","Probably false","Definitely false","Strongly disagree","Strongly disagree",48.3,45.2,"Disagree","Agree","Agree","Disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true",6,70,0,"Independent",0,1,1.34733039815278 +1159,50,50,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Probably true","Slightly disagree","Slightly agree",45.6,40.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2484c-2cd2-38dd-096b-5c75d3548733","19","1","2","2","1","2","1","1","07050","501","31","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Probably true","Slightly agree","Slightly disagree",45.6,40.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,19,1,"Independent",0,0,0.742459358837412 +1160,29.6,32.6,"Not sure","Agree","Definitely false","Probably false","Probably true","Probably true","Strongly agree","Somewhat agree",29.9,10.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe247e5-388d-4fe2-5897-460c6b34fde3","32","1","15","3","2","2","1","1","19134","504","39","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure",70.4,67.4,"Not sure","Agree","Definitely false","Probably true","Probably false","Probably true","Strongly disagree","Somewhat agree",29.9,10.7,"Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure",2,32,0,"Democrat",0,0,0.874611434221434 +1161,82.5,50.2,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Slightly disagree","Slightly disagree",71.3,84.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24777-6916-b549-df97-1f21053e80d8","59","2","6","1","1","2","2","3","28364","570","34","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",17.5,49.8,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Slightly disagree",28.7,15.2,"Strongly disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true",2,59,0,"Republican",0,0,0.879927333598919 +1162,54.6,54.6,"Not sure","Disagree","Definitely true","Probably true","Probably true","Definitely true","Strongly disagree","Strongly agree",17.3,7.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe24852-2e3e-7328-1aba-01bddc26bf39","24","1","16","1","1","6","1","3","73034","650","37","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",45.4,45.4,"Not sure","Agree","Definitely false","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",17.3,7.5,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",6,24,0,"Democrat",0,1,0.538702378978846 +1163,60.7,73.9,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",35.4,29.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe24856-8f93-e18d-84b9-9f2b8b801474","58","2","7","1","1","4","1","1","18372","577","39","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",39.3,73.9,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.4,29.9,"Strongly disagree","Strongly agree","Strongly disagree","Disagree","Agree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false",4,58,0,"Democrat",1,0,0.623710965386887 +1164,77.3,50.3,"False","Disagree","Definitely true","Definitely false","Probably true","Definitely false","Slightly disagree","Strongly disagree",53,65.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe245a3-b862-1191-c509-7851b36fd41e","31","2","1","2","1","6","1","3","30828","520","11","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true",77.3,50.3,"True","Agree","Definitely false","Definitely true","Probably true","Definitely true","Slightly agree","Strongly disagree",53,65.8,"Disagree","Disagree","Strongly agree","Disagree","Agree","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true",6,31,0,"Democrat",1,1,0.612626771072269 +1165,59.4,70.1,"True","Neither agree nor disagree","Probably false","Probably true","Probably true","Definitely false","Slightly agree","Slightly agree",27.8,44.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe24960-14cb-4c58-5f4b-c831fc77580c","19","2","-3105","1","1","4","2","2","56212","613","24","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",40.6,29.9,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Slightly disagree","Slightly disagree",27.8,44.5,"Disagree","Disagree","Agree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",4,19,0,"Republican",0,0,1.20026149111351 +1166,50,70.7,"False","Strongly disagree","Probably true","Probably true","Probably false","Probably false","Strongly disagree","Slightly disagree",8.1,7.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24736-0def-bd23-9db1-b9914c2dfc84","33","2","4","1","1","4","2","3","38242","659","43","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false",50,29.3,"True","Strongly agree","Probably false","Probably true","Probably false","Probably false","Strongly disagree","Slightly agree",8.1,7.7,"Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true",4,33,1,"Republican",0,0,0.697625211881609 +1167,22.5,72.3,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat agree",100,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Agree","Agree","Disagree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe2463c-252d-58cc-40bb-e06ccfca561d","33","2","10","2","1","6","1","1","10001","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true",22.5,27.7,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",0,0,"Disagree","Agree","Disagree","Agree","Strongly agree","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",6,33,0,"Democrat",0,0,0.646158781498873 +1168,75.3,87.8,"True","Agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",81.1,62.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe2478c-8bc8-526d-75e1-97808066dfb8","20","2","19","1","1","6","1","1","08225","504","31","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",24.7,12.2,"False","Agree","Probably false","Probably false","Probably true","Probably true","Somewhat agree","Somewhat agree",81.1,62.5,"Strongly agree","Disagree","Agree","Strongly agree","Agree","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure","No, false",6,20,0,"Independent",0,0,0.454844440982363 +1169,79.3,76.1,"False","Strongly agree","Probably true","Probably true","Probably false","Definitely true","Somewhat agree","Somewhat agree",17.7,14.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe246f2-a572-ef89-619f-ea96e503235e","64","1","15","2","1","4","1","2","48224","505","23","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",79.3,76.1,"True","Strongly disagree","Probably false","Probably false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",17.7,14.7,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true",4,64,0,"Democrat",0,1,1.05307506002823 +1170,87.8,81,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Somewhat agree",86.6,81.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe2473f-e21c-6cf5-4b72-d709ca904723","34","1","19","1","1","7","1","1","10001","501","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true",12.2,81,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Somewhat agree",86.6,81.8,"Strongly agree","Agree","Disagree","Strongly agree","Disagree","","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false",7,34,1,"Democrat",0,0,0.617714819145265 +1171,50,50,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Somewhat disagree","Somewhat disagree",50.7,35.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2485d-ceb7-1e1d-1cee-20614bfcc8a5","19","1","3","9","1","2","1","1","13203","555","33","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably false","Somewhat agree","Somewhat disagree",50.7,35.5,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,19,0,"Democrat",0,1,0.433680239961177 +1172,50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely true","Probably true","Somewhat agree","Slightly disagree",75.2,31.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe248bd-07f5-235e-1d9a-b0af71432686","18","2","16","2","1","5","3","3","21229","512","21","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely false","Probably false","Somewhat disagree","Slightly agree",75.2,31.6,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,18,0,"Democrat",0,0,0.563508049350613 +1173,50,50,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Definitely true","Somewhat disagree","Strongly disagree",49.8,50.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe247ae-f912-9570-b08d-1a4e20e24750","69","1","24","6","1","8","3","2","62864","632","14","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",49.8,50.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",8,69,0,"Independent",0,0,0.797343714536415 +1174,86.4,99.9,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely true","Somewhat agree","Somewhat disagree",71.6,96.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe2495e-4f65-a2cd-31cd-9182e1fa5a5d","24","2","7","1","1","2","1","3","76033","623","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true",13.6,99.9,"False","Agree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat agree","Somewhat agree",28.4,3.7,"Strongly disagree","Strongly agree","Disagree","Agree","Strongly agree","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",2,24,1,"Republican",0,0,0.641691550039753 +1175,99.9,99.9,"True","Strongly agree","Probably false","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly agree",22.7,50.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe247d6-b042-5beb-35c4-59ad4ec3f62d","34","2","4","1","2","4","2","3","77008","618","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",0.0999999999999943,0.0999999999999943,"False","Strongly agree","Probably true","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",22.7,50.7,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false",4,34,1,"Republican",0,3,1.294111917477 +1176,50,99.9,"Not sure","Disagree","Not sure","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",49.9,52.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe248a8-bd40-f2b6-9513-bf79124d1296","20","2","1","1","2","2","4","4","90241","803","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","Not sure","No, false","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true",50,99.9,"Not sure","Agree","Not sure","Probably true","Probably false","Probably true","Strongly disagree","Strongly disagree",50.1,47.2,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true",2,20,0,"Democrat",0,0,1.12560161708169 +1177,50,64.2,"True","Neither agree nor disagree","Probably true","Definitely false","Definitely true","Definitely true","Strongly agree","Slightly disagree",80.2,88,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe24904-9665-4579-ce57-69b301655ffc","26","2","1","1","1","6","1","3","31061","524","11","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true",50,35.8,"False","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",19.8,12,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",6,26,0,"Democrat",1,1,0.468830069482283 +1178,50,61.5,"True","Disagree","Definitely true","Probably true","Definitely true","Definitely false","Somewhat agree","Strongly disagree",10.5,25.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe247d6-53a6-8325-cd2f-8fa73116ddfb","30","1","19","1","1","7","1","3","29112","546","41","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",50,38.5,"False","Disagree","Definitely true","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",10.5,25.8,"Strongly disagree","Disagree","Disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false",7,30,0,"Democrat",0,0,0.585658890557251 +1179,73.3,89.5,"True","Strongly agree","Probably true","Definitely true","Probably true","Probably true","Slightly disagree","Strongly agree",84,64.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe24888-511f-8bb7-3a76-b4c40bf95ab1","54","2","20","1","1","2","2","2","56256","613","24","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false",73.3,10.5,"True","Strongly agree","Probably true","Definitely true","Probably false","Probably false","Slightly disagree","Strongly disagree",84,64.1,"Disagree","Neither agree nor disagree","Agree","Disagree","Strongly agree","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true",2,54,0,"Republican",0,0,0.971380249062987 +1180,50.3,73.7,"False","Strongly disagree","Probably false","Probably false","Probably true","Definitely false","Strongly agree","Strongly agree",9.2,24.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24764-eeb6-417f-d7c1-b16e9dbdbe0a","67","1","7","1","1","6","3","3","25177","564","49","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","Not sure","Not sure",49.7,73.7,"True","Strongly disagree","Probably false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",9.2,24.4,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure",6,67,0,"Independent",0,2,0.643505067882763 +1181,50,60.3,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat disagree","Strongly agree",80.6,75.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe248a2-ae9d-0e44-7cd6-4a9af28ae608","59","2","9","1","1","7","3","4","87124","790","32","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",50,60.3,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",19.4,24.8,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",7,59,0,"Independent",0,0,2.12276713543991 +1182,50.1,50,"False","Neither agree nor disagree","Probably false","Definitely false","Probably false","Definitely false","Somewhat disagree","Strongly agree",55.1,50.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe2478a-66f6-c02a-32fb-38fd407d5e50","82","2","2","1","1","2","2","4","92084","825","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",50.1,50,"True","Neither agree nor disagree","Probably false","Definitely true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",55.1,50.7,"Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",2,82,0,"Republican",0,0,1.07856128262739 +1183,49.9,49.9,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly agree",57.9,75.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2479f-bad6-a678-22a8-11d20b34c381","23","2","1","3","1","5","1","2","60639","602","14","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,50.1,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",42.1,24.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,23,0,"Democrat",0,0,0.359092641614633 +1184,50,32.8,"False","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat agree",66.4,52.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe24900-7e9e-8a91-04f5-e193185689ba","46","2","19","1","1","6","3","1","08618","504","31","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",50,67.2,"True","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",33.6,47.6,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","No, false",6,46,0,"Independent",0,0,0.35499607487986 +1185,33.5,97.5,"False","Agree","Definitely true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",84.9,85.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe2496f-1437-4a05-f219-695128307740","54","2","8","1","1","6","1","3","76801","662","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",33.5,97.5,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.1,14.9,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",6,54,0,"Democrat",0,1,0.59837456742152 +1186,74.4,71.9,"True","Neither agree nor disagree","Definitely false","Probably false","Probably false","Probably false","Somewhat agree","Slightly disagree",62.8,66.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24857-b533-a5b6-5ba4-6671a6f77a65","19","2","20","1","1","4","3","3","27317","518","34","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Not sure",74.4,71.9,"False","Neither agree nor disagree","Definitely false","Probably true","Probably false","Probably false","Somewhat disagree","Slightly disagree",37.2,33.8,"Agree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure",4,19,0,"Independent",0,0,0.641691550039753 +1187,72.5,88.8,"True","Agree","Probably false","Probably false","Definitely true","Definitely true","Slightly disagree","Slightly agree",70.6,40.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe2444b-c3df-e63c-0024-3642caebe6da","50","2","1","15","2","2","1","4","91702","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",72.5,88.8,"False","Agree","Probably false","Probably true","Definitely false","Definitely false","Slightly agree","Slightly disagree",29.4,59.8,"Disagree","Agree","Agree","Disagree","Disagree","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false",2,50,0,"Democrat",0,1,1.19210822599934 +1188,49.8,49.8,"False","Agree","Probably false","Definitely false","Probably false","Probably false","Slightly agree","Slightly disagree",52.7,77.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Agree","Not vote in the presidential election","5fe247f2-0602-7098-4c37-bf83585208ad","26","2","1","1","1","4","3","2","52632","717","16","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",49.8,49.8,"True","Agree","Probably false","Definitely true","Probably true","Probably true","Slightly disagree","Slightly agree",47.3,22.8,"Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Agree","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",4,26,1,"Independent",0,0,1.30488343971418 +1189,50.4,50,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Definitely true","Probably false","Strongly agree","Strongly agree",18,9.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe24788-1d56-6466-512f-9ca1e59143e3","32","2","1","15","1","2","4","4","95206","862","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure",49.6,50,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",18,9.5,"Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure",2,32,0,"Democrat",0,0,1.28456231010058 +1190,93.8,29.3,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Probably true","Slightly disagree","Somewhat disagree",48.6,77.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Agree","Agree","Agree","Not vote in the presidential election","5fe246f2-cc99-f039-d442-794e25554cba","46","2","9","1","1","2","2","3","30711","575","11","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",6.2,70.7,"Not sure","Agree","Definitely false","Definitely true","Definitely false","Probably false","Slightly disagree","Somewhat disagree",51.4,22.9,"Disagree","Strongly disagree","Disagree","Disagree","Disagree","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure",2,46,0,"Republican",0,0,1.52658135748604 +1191,50,50,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Probably false","Strongly agree","Strongly agree",77.3,90.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24745-09d5-1fba-bcf5-7049fbbabf2e","28","2","10","15","7","4","4","4","90804","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","Not sure",50,50,"Not sure","Neither agree nor disagree","Definitely true","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",77.3,90.7,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure",4,28,0,"Democrat",0,0,0.934023958996174 +1192,60.9,68.7,"True","Agree","Not sure","Probably true","Probably true","Probably true","Slightly disagree","Slightly disagree",66.7,15.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe247c9-67da-21b2-97f1-3d1c75cfc0b3","23","2","1","2","1","2","2","3","33311","528","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false",60.9,68.7,"True","Disagree","Not sure","Probably true","Probably false","Probably false","Slightly agree","Slightly disagree",33.3,84.1,"Agree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true",2,23,0,"Democrat",0,0,0.563508049350613 +1193,50,76.6,"False","Disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",75,50.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe2484f-c3e8-61e9-f453-3991fe6a56f1","28","2","4","1","1","5","3","3","20876","511","21","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false",50,23.4,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25,49.7,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",5,28,0,"Independent",0,0,0.468830069482283 +1194,70.2,79.3,"True","Strongly agree","Definitely true","Probably false","Definitely false","Probably true","Slightly agree","Strongly disagree",70.5,87.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe2495d-b189-ecb5-56a0-6cd957b15d25","27","2","18","1","1","6","2","3","78239","641","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false",70.2,79.3,"True","Strongly agree","Definitely false","Probably true","Definitely false","Probably true","Slightly disagree","Strongly disagree",29.5,12.2,"Strongly agree","Disagree","Strongly disagree","Strongly agree","Agree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true",6,27,0,"Republican",0,0,0.697625211881609 +1195,78.5,62.7,"Not sure","Disagree","Probably false","Probably true","Probably true","Probably false","Somewhat agree","Somewhat agree",60.6,73.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe248f2-7a7d-163b-f477-4297a97fedd5","48","2","11","1","1","4","2","2","54162","658","50","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",78.5,62.7,"Not sure","Agree","Probably false","Probably true","Probably false","Probably false","Somewhat agree","Somewhat disagree",39.4,26.3,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","No, false","No, false",4,48,0,"Republican",0,1,0.971380249062987 +1196,50,50,"True","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely true","Slightly agree","Strongly disagree",19.2,6.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe247c7-0b1c-4cbb-591e-4d9b8c6af3e9","24","1","9","1","1","4","2","3","36250","630","1","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure",50,50,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Slightly agree","Strongly disagree",19.2,6.3,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure",4,24,0,"Republican",0,0,0.801596112833044 +1197,54,99.9,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",57.8,35.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly agree","Agree","Not vote in the presidential election","5fe24268-b56f-ecec-bc4d-6439d9de828a","70","2","11","1","1","6","1","1","08835","501","31","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",54,99.9,"False","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",42.2,64.2,"Disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",6,70,0,"Democrat",1,1,1.38615819623451 +1198,99.9,99.9,"True","Strongly agree","Probably true","Probably true","Probably true","Probably true","Strongly agree","Strongly agree",92.8,94.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe246ca-1dbf-3108-8ea5-3de6cef22bf6","28","2","21","1","1","7","2","1","10010","501","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",0.0999999999999943,99.9,"False","Strongly disagree","Probably false","Probably false","Probably false","Probably false","Strongly disagree","Strongly agree",7.2,5.2,"Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",7,28,0,"Republican",0,0,0.735809595887113 +1199,50,50.5,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Probably false","Strongly disagree","Strongly agree",65,85.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Vote for a different candidate","5fe247cc-de35-0e2c-f7c5-622da7e4e141","59","2","-3105","1","1","4","2","1","17319","566","39","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","No, false",50,49.5,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Probably false","Strongly agree","Strongly disagree",35,14.9,"Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true",4,59,0,"Republican",0,1,0.350824992170685 +1200,30.3,70.2,"True","Strongly agree","Definitely false","Probably false","Definitely true","Definitely false","Slightly agree","Strongly agree",60.1,75.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe24723-43f9-d215-2838-081b309e3b98","60","1","5","1","1","4","3","2","67451","678","17","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",30.3,70.2,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",39.9,24.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",4,60,0,"Independent",0,2,0.805895656010846 +1201,18.7,86.9,"False","Strongly disagree","Probably true","Probably true","Definitely false","Probably false","Somewhat agree","Strongly agree",49.2,68.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Disagree","Agree","Strongly disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe24943-c781-85b1-bbaa-b2fb45d2ff91","29","2","7","15","2","4","2","3","41056","564","18","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure","No, false",81.3,86.9,"True","Strongly agree","Probably true","Probably true","Definitely false","Probably true","Somewhat disagree","Strongly disagree",50.8,31.6,"Disagree","Disagree","Strongly agree","Agree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",4,29,0,"Republican",0,0,0.987755139106221 +1202,49.9,0.1,"Not sure","Disagree","Probably true","Probably false","Definitely false","Probably true","Strongly disagree","Strongly disagree",63.3,40,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24871-edbd-e0ff-2ecb-e03a158769ef","32","2","2","1","1","2","3","1","08081","504","31","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",50.1,99.9,"Not sure","Agree","Probably true","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",36.7,60,"Strongly disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure",2,32,1,"Democrat",0,0,0.494491394648778 +1203,52.8,99.9,"True","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",50.1,50.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe2490b-ea34-c2da-0641-4126cb623c01","29","2","1","1","1","2","2","1","10475","501","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",52.8,0.0999999999999943,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",50.1,50.1,"Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",2,29,0,"Independent",0,1,1.26155319027175 +1204,35.2,34.6,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely true","Somewhat agree","Strongly agree",19.7,30.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24937-06bf-9302-fd7c-2286fce246a5","80","2","21","1","1","4","1","2","60191","602","14","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure",35.2,34.6,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",19.7,30.3,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure",4,80,0,"Democrat",1,0,0.561994574124504 +1205,49.9,50.1,"False","Neither agree nor disagree","Not sure","Probably true","Definitely true","Probably true","Strongly agree","Strongly agree",42.9,48.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24464-a1e2-38a8-2116-b8b9e4051667","32","2","11","15","1","7","1","3","71111","612","19","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,49.9,"False","Neither agree nor disagree","Not sure","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",57.1,51.3,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,32,0,"Democrat",0,0,0.357843324247791 +1206,57.8,94.1,"True","Disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",61.7,36.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2495b-f037-b375-f3e5-5147e019a42f","26","2","3","1","1","2","1","3","28701","567","34","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","No, false","No, false",42.2,94.1,"False","Disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",38.3,63.9,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true",2,26,0,"Democrat",0,0,0.468830069482283 +1207,50,71.2,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably true","Probably true","Strongly agree","Somewhat agree",24,12.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24905-ca1e-46f1-105e-e01304f52200","29","2","1","16","2","4","4","2","60120","602","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",50,28.8,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably false","Strongly agree","Somewhat disagree",24,12.5,"Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",4,29,0,"Independent",0,0,1.84756127152557 +1208,74,38.5,"True","Agree","Probably false","Probably true","Definitely false","Probably true","Strongly agree","Slightly disagree",70.1,68.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Agree","Agree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe2491d-02b0-40a8-37ad-5bdcba7dcf79","23","2","1","2","1","2","1","3","75203","623","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",26,61.5,"False","Agree","Probably true","Probably true","Definitely false","Probably true","Strongly disagree","Slightly disagree",29.9,31.3,"Strongly agree","Disagree","Disagree","Neither agree nor disagree","Disagree","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false",2,23,0,"Democrat",0,0,0.563508049350613 +1209,37.6,81.9,"Not sure","Agree","Definitely true","Probably true","Definitely true","Not sure","Somewhat agree","Strongly disagree",69.5,20.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe2489e-f97f-e959-1c70-2bd2e0b58022","28","2","1","1","1","6","3","2","54017","613","50","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",37.6,18.1,"Not sure","Agree","Definitely false","Probably false","Definitely false","Not sure","Somewhat agree","Strongly disagree",30.5,79.8,"Strongly agree","Strongly agree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",6,28,0,"Independent",0,0,1.30488343971418 +1210,75.5,26,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",98.8,65.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe2483c-a008-3b08-8352-8665a2580bf6","58","2","9","2","1","6","1","3","29365","567","41","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true",75.5,26,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",1.2,34.6,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false",6,58,0,"Democrat",1,0,0.772717258464593 +1211,50,81.8,"False","Strongly disagree","Probably true","Definitely false","Definitely false","Probably false","Strongly agree","Strongly agree",84,71.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24859-3339-7f8a-75bd-a7d33cfd3513","67","2","4","1","1","5","1","3","39120","718","25","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",50,81.8,"False","Strongly disagree","Probably true","Definitely false","Definitely false","Probably true","Strongly disagree","Strongly disagree",16,28.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",5,67,0,"Democrat",0,1,0.515136934744757 +1212,50,50,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",39.9,41.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24a27-ce10-c7f4-2975-b50a097405bb","30","2","1","1","1","2","3","3","72143","693","4","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",39.9,41.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,30,0,"Independent",0,0,1.19608566751863 +1213,68.3,71.9,"True","Disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",66,77.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24978-9a25-b91f-d0e3-bac2505d76a0","26","2","6","1","1","6","1","2","55303","613","24","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true",68.3,28.1,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",34,22.7,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true",6,26,0,"Democrat",1,0,0.511475565940556 +1214,99.9,99.9,"False","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",80.6,93.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe248a8-218e-11f3-4626-db908ae84c5d","47","2","13","2","1","6","1","3","31632","525","11","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true",0.0999999999999943,99.9,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.4,6.3,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true",6,47,0,"Democrat",1,0,0.781904367900328 +1215,50,50,"False","Agree","Probably true","Probably true","Probably false","Definitely false","Strongly disagree","Slightly disagree",67,77.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe249d5-95ff-c572-f289-f9f9ef19bd75","64","2","2","1","1","4","2","3","27889","545","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","No, false",50,50,"False","Disagree","Probably false","Probably false","Probably false","Definitely false","Strongly disagree","Slightly disagree",33,22.9,"Disagree","Disagree","Disagree","Disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true",4,64,0,"Independent",0,0,0.879927333598919 +1216,61.1,99.9,"False","Strongly agree","Not sure","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",53.7,36.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe248e6-483c-38b2-8c74-e2348a240b9a","56","2","7","2","1","6","1","4","92802","803","5","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",61.1,0.0999999999999943,"False","Strongly disagree","Not sure","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",46.3,63.5,"Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",6,56,0,"Democrat",1,0,1.08726658235174 +1217,52.6,82,"False","Strongly disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly agree",23.2,36.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe24771-d861-16b8-0434-f55f00695c4b","25","1","19","1","1","8","1","1","10001","501","33","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true",52.6,18,"False","Strongly agree","Probably true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",23.2,36.1,"Disagree","Disagree","Strongly disagree","Disagree","Disagree","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false",8,25,0,"Democrat",1,0,0.617714819145265 +1218,75.7,81.8,"True","Agree","Probably true","Probably true","Definitely true","Probably true","Strongly agree","Somewhat agree",72.6,72.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe24a0a-1edb-6c84-67f0-6ceef826fd07","45","1","24","1","2","8","3","1","10001","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure",75.7,18.2,"False","Agree","Probably false","Probably true","Definitely false","Probably true","Strongly disagree","Somewhat disagree",27.4,27.4,"Disagree","Agree","Disagree","Agree","Agree","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure",8,45,0,"Independent",0,0,1.46249825874011 +1219,50,70.1,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly agree","Strongly disagree",62.5,85.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24995-854f-a7e9-1309-7989b571e8c2","45","2","6","2","1","6","1","3","33815","539","10","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false",50,29.9,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",37.5,14.1,"Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false","Yes, true",6,45,0,"Democrat",0,0,0.781904367900328 +1220,50,70.6,"False","Agree","Definitely true","Probably true","Probably false","Probably false","Strongly agree","Strongly agree",78,71.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe24917-1ed1-8f12-a28c-999e5d163e1c","21","1","2","1","1","4","3","4","84096","770","45","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true",50,70.6,"False","Agree","Definitely false","Probably true","Probably false","Probably false","Strongly disagree","Strongly disagree",22,28.7,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","No, false",4,21,0,"Independent",0,3,1.12790112616122 +1221,93.9,90.7,"True","Strongly disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",52.7,67.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe248a0-fe3e-c337-3a5b-b1605cf07920","45","1","24","2","1","7","2","1","07094","501","31","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","No, false","No, false","Not sure","No, false","Not sure","No, false","No, false","Yes, true","No, false",6.09999999999999,90.7,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",47.3,32.2,"Strongly disagree","Strongly agree","Strongly disagree","Agree","Strongly disagree","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",7,45,0,"Republican",1,0,1.5329673680024 +1222,75.8,96.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",83,52.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe249d1-6899-f1ae-092e-77db8568e839","24","2","4","2","1","6","3","3","37075","659","43","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure",75.8,3.09999999999999,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly agree",17,47.2,"Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure",6,24,0,"Independent",1,0,0.563508049350613 +1223,76.1,23.1,"True","Strongly disagree","Not sure","Probably true","Probably false","Definitely false","Slightly agree","Slightly disagree",51.1,82.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Disagree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe2474b-9636-cffe-3e64-f7c071e4d7cf","67","1","1","1","1","2","2","1","14787","514","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","No, false",23.9,23.1,"True","Strongly agree","Not sure","Probably true","Probably true","Definitely false","Slightly disagree","Slightly agree",51.1,82.6,"Agree","Agree","Strongly agree","Agree","Strongly agree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false",2,67,0,"Republican",0,0,1.0099548530942 +1224,99.6,99.9,"Not sure","Agree","Definitely false","Definitely true","Not sure","Definitely true","Somewhat disagree","Strongly agree",50.8,20,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe247cc-2bd5-eef7-36e5-d83e355851ca","74","1","1","1","1","4","2","1","12553","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",0.400000000000006,99.9,"Not sure","Agree","Definitely true","Definitely true","Not sure","Definitely false","Somewhat disagree","Strongly disagree",50.8,20,"Disagree","Agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","No, false","Yes, true",4,74,0,"Republican",0,0,1.0099548530942 +1225,70.6,92,"Not sure","Agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",76.3,64.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Neither agree nor disagree","Strongly disagree","Disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe24a89-041a-3cf2-5428-b3668f2ea025","76","2","9","1","1","6","1","1","08053","504","31","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",70.6,92,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.7,35.5,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,76,0,"Democrat",1,0,0.543332857421717 +1226,8.2,70,"Not sure","Strongly agree","Probably false","Definitely false","Probably true","Definitely true","Strongly agree","Strongly agree",59.1,84.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Disagree","Vote for a different candidate","5fe248f0-527c-b9e2-7ee1-919764f82a23","55","1","2","1","1","7","2","3","27577","560","34","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",8.2,30,"Not sure","Strongly agree","Probably false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",40.9,15.7,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",7,55,0,"Independent",0,0,0.415505260390576 +1227,72.6,10.6,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",69.9,94.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe249d4-3f2c-bc50-242f-4a84609bbbd0","18","2","20","1","1","4","1","2","46835","509","15","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true",72.6,89.4,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",30.1,5.7,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",4,18,0,"Democrat",1,0,0.47046686834987 +1228,49.7,85.4,"False","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",4.5,4.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe2470e-73d7-948c-4b59-53697b8b801a","24","1","12","2","1","5","1","3","32606","592","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",49.7,85.4,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",4.5,4.8,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","No, false","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure","No, false",5,24,0,"Democrat",0,0,0.703929889495349 +1229,49.9,49.9,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely true","Definitely true","Slightly disagree","Slightly agree",25.1,52.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe249c3-60de-06c0-819a-6322e74a5ba4","33","2","5","1","1","7","3","3","29205","546","41","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure",50.1,50.1,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Slightly agree","Slightly agree",25.1,52.5,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure",7,33,0,"Independent",0,0,1.19608566751863 +1230,54.5,68.1,"False","Neither agree nor disagree","Probably false","Probably false","Definitely true","Definitely false","Somewhat disagree","Somewhat agree",23.9,11.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe2479c-ea53-989b-0019-df96eae4dadc","71","1","-3105","1","1","5","2","4","92627","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",54.5,68.1,"True","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",23.9,11.9,"Strongly disagree","Strongly disagree","Agree","Disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",5,71,1,"Republican",0,1,1.34733039815278 +1231,72,83.9,"True","Disagree","Probably true","Probably true","Definitely true","Probably true","Somewhat disagree","Strongly disagree",38.4,33.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe2498a-0fdf-5b18-47e3-1786bc620717","30","2","2","2","1","2","1","3","76116","623","44","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",28,83.9,"False","Agree","Probably true","Probably true","Definitely false","Probably true","Somewhat agree","Strongly disagree",38.4,33.1,"Disagree","Agree","Agree","Neither agree nor disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",2,30,0,"Democrat",1,0,0.612626771072269 +1232,50.5,75.8,"True","Neither agree nor disagree","Definitely true","Definitely false","Probably true","Definitely true","Somewhat disagree","Slightly disagree",26,52.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24a44-066d-6c97-745e-265711574578","53","1","24","1","1","6","2","3","77388","618","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false",50.5,75.8,"True","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Definitely false","Somewhat disagree","Slightly disagree",26,52.6,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",6,53,0,"Republican",0,0,1.11226716750253 +1233,44.8,36.1,"True","Disagree","Probably true","Probably false","Probably true","Probably true","Strongly disagree","Slightly disagree",80.3,80.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24a14-7ebe-30f9-20fc-3b12cd57fe27","24","2","3","2","1","6","3","3","30043","524","11","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",55.2,63.9,"True","Agree","Probably false","Probably true","Probably false","Probably true","Strongly agree","Slightly agree",80.3,80.3,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",6,24,0,"Independent",0,0,0.563508049350613 +1234,62.5,59.8,"True","Strongly agree","Definitely true","Probably true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",30.1,20.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe249c8-2d3a-3bb4-2c42-daff9ebaf0ac","20","2","-3105","1","8","-3105","2","3","31329","507","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true",37.5,59.8,"True","Strongly agree","Definitely false","Probably false","Probably false","Definitely false","Somewhat agree","Strongly agree",30.1,20.9,"Disagree","Disagree","Disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true",-3105,20,0,"Republican",0,0,1.19035359976591 +1235,71.3,28.1,"True","Disagree","Probably false","Probably true","Probably true","Definitely true","Slightly disagree","Slightly agree",57.3,49.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Not vote in the presidential election","5fe24b7b-57ca-613f-7340-a350a9470e0c","22","2","1","1","1","2","3","2","44906","510","36","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true",71.3,28.1,"True","Disagree","Probably false","Probably true","Probably false","Definitely false","Slightly disagree","Slightly disagree",57.3,49.3,"Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false",2,22,0,"Independent",0,0,1.20026149111351 +1236,83.9,75.9,"Not sure","Disagree","Definitely true","Not sure","Definitely false","Definitely true","Slightly agree","Strongly agree",76.2,87.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe248ac-0e67-8e32-482f-f7829127f62d","29","2","1","1","1","6","2","1","17864","577","39","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","No, false","No, false","No, false","No, false",16.1,24.1,"Not sure","Agree","Definitely false","Not sure","Definitely false","Definitely false","Slightly agree","Strongly disagree",23.8,12.6,"Disagree","Disagree","Agree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","No, false",6,29,0,"Other",0,0,1.26155319027175 +1237,82.5,98.8,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Slightly disagree","Strongly agree",74,89.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe2491e-989d-8e06-518d-2d21a13e89e6","33","1","21","1","1","8","2","1","10041","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",82.5,98.8,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly agree","Strongly disagree",26,10.5,"Strongly agree","Agree","Disagree","Strongly agree","Disagree","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false",8,33,0,"Republican",1,0,0.919167646530211 +1238,29,65.6,"True","Neither agree nor disagree","Probably false","Probably false","Definitely true","Definitely true","Strongly agree","Somewhat disagree",21.5,42,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe24a0d-8d83-fb77-8a32-0239e9c29b34","45","1","24","1","1","8","1","3","33131","528","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",29,34.4,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",21.5,42,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false",8,45,0,"Democrat",1,0,0.747484873742735 +1239,50,50,"Not sure","Neither agree nor disagree","Not sure","Definitely true","Probably false","Not sure","Somewhat agree","Slightly disagree",75.2,77.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24aaa-d408-f767-b492-7578089c63ee","22","1","6","2","1","2","3","3","30132","524","11","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Definitely true","Probably false","Not sure","Somewhat agree","Slightly disagree",24.8,22.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,22,0,"Other",0,0,1.79587553480329 +1240,83.7,91.9,"True","Agree","Probably false","Definitely true","Probably true","Probably true","Strongly disagree","Strongly agree",80,76,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Disagree","Agree","Disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe24799-0dda-8ba3-89bb-ff5aecb438e2","21","1","1","2","2","6","3","3","35007","630","1","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false",16.3,8.09999999999999,"False","Agree","Probably false","Definitely true","Probably true","Probably true","Strongly agree","Strongly agree",20,24,"Disagree","Disagree","Agree","Agree","Disagree","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false",6,21,0,"Democrat",1,0,1.30580724943581 +1241,50,50,"True","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Definitely true","Somewhat disagree","Slightly disagree",78.2,18.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Agree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24b60-64e9-e98e-a0d1-ff553579aac7","20","2","1","15","12","1","2","4","87120","790","32","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"False","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Definitely true","Somewhat agree","Slightly disagree",21.8,81.5,"Neither agree nor disagree","Disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",1,20,0,"Independent",0,0,1.27840623082127 +1242,67.4,78.5,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably true","Slightly agree","Slightly agree",62.7,27.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24a05-e98d-45c6-2ca4-e9cacd8acb81","23","2","2","1","1","4","3","2","62226","609","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure",32.6,21.5,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly disagree","Slightly disagree",62.7,27.5,"Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure",4,23,0,"Independent",0,0,1.20026149111351 +1243,50,90.7,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Definitely false","Somewhat disagree","Somewhat agree",65.5,42,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Disagree","Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe247a3-8264-3e78-d2ce-e87340bd11b3","69","2","9","15","1","2","1","3","30016","524","11","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","No, false","No, false","No, false","Not sure","No, false",50,90.7,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",34.5,58,"Disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true",2,69,0,"Democrat",0,0,1.00310634773774 +1244,50,50,"False","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably false","Slightly agree","Slightly agree",24.7,18.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for a different candidate","5fe24ad3-7721-846c-2733-35f61c774ea3","31","1","1","1","1","6","3","4","90003","803","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"False","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly agree","Slightly disagree",24.7,18.2,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,31,0,"Independent",0,0,0.463518756769636 +1245,50,22.5,"Not sure","Disagree","Probably false","Probably true","Definitely false","Definitely true","Slightly agree","Strongly agree",34.9,56.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe247bd-ab0e-c118-c90b-85f8cb5d0eaa","64","2","4","1","1","3","2","2","47118","649","15","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true",50,77.5,"Not sure","Agree","Probably false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",34.9,56.4,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false",3,64,0,"Republican",0,0,0.959966862697315 +1246,51.2,49.7,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably true","Definitely false","Strongly agree","Strongly agree",90.9,90.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24837-8b9b-5857-5527-6008c20c3a33","86","1","7","1","1","6","3","3","28144","517","34","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",51.2,49.7,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Probably true","Definitely false","Strongly agree","Strongly disagree",9.09999999999999,9.7,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",6,86,0,"Independent",0,0,0.957543870478141 +1247,60.8,71.8,"False","Agree","Definitely false","Probably false","Definitely false","Definitely true","Somewhat disagree","Strongly agree",34.7,14.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe24a7d-5e84-f39e-9829-624403c7851e","72","1","16","1","1","7","1","3","34689","539","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",60.8,71.8,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",34.7,14.9,"Neither agree nor disagree","Agree","Disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",7,72,0,"Republican",0,1,0.957543870478141 +1248,63.3,94.5,"False","Agree","Probably false","Probably true","Definitely false","Probably true","Somewhat agree","Slightly agree",58.2,28.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24a5f-8ce6-c5ad-fa36-66ba3f55d2dc","26","2","13","2","1","6","1","2","60438","602","14","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",63.3,5.5,"False","Agree","Probably true","Probably true","Definitely false","Probably true","Somewhat agree","Slightly disagree",58.2,28.7,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true","No, false",6,26,0,"Democrat",0,0,0.668352234297901 +1249,85.2,83.9,"True","Neither agree nor disagree","Definitely true","Probably false","Probably true","Probably false","Slightly disagree","Somewhat agree",88.3,96.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24a97-0c3a-9f0e-9c2c-dba275692273","23","1","3","1","1","2","1","1","17344","566","39","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false",14.8,83.9,"False","Neither agree nor disagree","Definitely false","Probably true","Probably true","Probably true","Slightly disagree","Somewhat agree",11.7,3.59999999999999,"Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","No, false",2,23,0,"Democrat",0,0,0.568188151788183 +1250,42.4,37,"False","Agree","Probably true","Probably false","Definitely true","Definitely false","Somewhat disagree","Somewhat agree",73.3,23.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe247ce-eb12-b695-322a-d689d51fd223","32","1","20","1","1","7","1","1","10004","501","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",57.6,63,"True","Disagree","Probably false","Probably true","Definitely true","Definitely true","Somewhat agree","Somewhat disagree",26.7,76.3,"Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Yes, true","Yes, true",7,32,0,"Republican",0,0,0.919167646530211 +1251,70.4,50,"True","Strongly disagree","Probably true","Not sure","Definitely true","Not sure","Somewhat agree","Strongly agree",74.6,50.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe24909-96bb-7a39-15bc-b1f902ad0849","34","1","6","1","1","2","1","3","21205","512","21","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",70.4,50,"False","Strongly agree","Probably true","Not sure","Definitely false","Not sure","Somewhat agree","Strongly disagree",25.4,49.9,"Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",2,34,0,"Independent",0,0,0.585658890557251 +1252,35.6,64.1,"True","Disagree","Definitely true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",33.7,27.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for a different candidate","5fe24a8b-bbb3-fd01-5984-577d3a31fdef","19","1","23","2","1","4","3","3","30213","524","11","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",35.6,35.9,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely true","Strongly disagree","Strongly agree",66.3,72.5,"Disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",4,19,0,"Independent",0,0,0.395946538823043 +1253,50,80,"Not sure","Neither agree nor disagree","Definitely true","Probably true","Definitely true","Probably true","Somewhat disagree","Strongly disagree",98,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24a24-9ff3-6222-146a-f873da94b86f","29","2","9","2","1","6","1","2","62234","609","14","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50,80,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Somewhat agree","Strongly disagree",2,0,"Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",6,29,1,"Democrat",0,0,0.668352234297901 +1254,36.2,50,"True","Neither agree nor disagree","Definitely true","Probably true","Definitely false","Definitely true","Strongly agree","Strongly agree",74,88.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe2496a-868c-096c-12be-d9c114181bb5","19","1","24","1","1","2","2","4","89002","839","29","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",36.2,50,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",26,11.8,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,19,0,"Republican",0,0,1.12790112616122 +1255,37.7,68.2,"Not sure","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Slightly disagree",5.2,5.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Strongly agree","Strongly agree","Vote for a different candidate","5fe24a76-62a0-cb71-0aa3-ec85d8942d46","26","2","15","5","1","6","3","1","11214","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure",37.7,31.8,"Not sure","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly agree",5.2,5.2,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure",6,26,0,"Other",1,1,0.212296749304252 +1256,80.8,99.9,"True","Disagree","Probably true","Probably false","Definitely true","Probably true","Strongly disagree","Strongly disagree",100,82.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe24a6c-19a4-5fcb-6bee-9705c092bdb3","45","1","1","2","1","4","1","3","31605","530","11","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false",19.2,0.0999999999999943,"False","Disagree","Probably false","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",0,17.8,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false",4,45,0,"Democrat",0,0,0.976748878611933 +1257,75,75,"Not sure","Agree","Probably true","Not sure","Probably true","Probably false","Strongly agree","Strongly agree",90.1,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24987-4f3a-2c0e-e52d-15062d98b2fd","67","1","-3105","1","1","5","3","2","55113","613","24","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",75,25,"Not sure","Disagree","Probably false","Not sure","Probably true","Probably false","Strongly agree","Strongly disagree",9.90000000000001,9.90000000000001,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",5,67,0,"Independent",0,1,0.702039267968476 +1258,50,93.1,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",50.6,54.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Vote for a different candidate","5fe248c6-c60a-f46c-2e12-72974677b87b","19","2","1","1","1","2","4","2","61951","648","14","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",50,93.1,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.6,54.4,"Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",2,19,0,"Independent",1,0,0.264628240587415 +1259,50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Definitely true","Probably true","Strongly disagree","Somewhat agree",49.7,59.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24a75-5083-404a-8dbe-21ebbac025f5","29","2","20","4","1","7","1","4","98007","819","48","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",50,50,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Probably false","Strongly agree","Somewhat disagree",49.7,59.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",7,29,0,"Democrat",0,0,1.28456231010058 +1260,99.9,99.9,"False","Strongly disagree","Probably true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly agree",25.1,37.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24a1f-8fc6-cf68-80fb-0995fb35cb1e","73","1","1","1","1","7","1","4","99654","743","2","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false","Not sure","Yes, true",99.9,0.0999999999999943,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",25.1,37.7,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",7,73,0,"Democrat",1,2,0.905456100816435 +1261,76.5,76.8,"True","Neither agree nor disagree","Definitely false","Probably false","Probably true","Not sure","Strongly agree","Strongly agree",83.5,73,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Agree","Neither agree nor disagree","Disagree","Agree","Disagree","Vote for a different candidate","5fe249f8-dd61-b285-134c-ccdbadbcd7f3","23","2","1","1","1","2","3","4","81501","773","6","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true",23.5,23.2,"False","Neither agree nor disagree","Definitely false","Probably false","Probably false","Not sure","Strongly agree","Strongly disagree",16.5,27,"Agree","Neither agree nor disagree","Agree","Agree","Disagree","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true",2,23,0,"Independent",0,0,0.341304633260134 +1262,49.8,18.7,"Not sure","Agree","Definitely false","Probably false","Probably true","Probably true","Strongly disagree","Strongly agree",40.2,74.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24979-e87e-1658-e1fb-109c562d08c7","26","2","4","1","1","2","1","4","97862","810","38","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",50.2,18.7,"Not sure","Agree","Definitely true","Probably false","Probably true","Probably false","Strongly agree","Strongly disagree",40.2,74.7,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",2,26,0,"Democrat",0,0,0.659676306910243 +1263,30.4,63.8,"Not sure","Disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly agree",74,69.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Disagree","Not vote in the presidential election","5fe24b97-8b5e-34dd-d9eb-0a5f4f7d8ac3","19","2","-3105","1","1","2","1","4","90503","803","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",69.6,36.2,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",26,30.7,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",2,19,0,"Independent",1,1,1.54803889082819 +1264,50,96.9,"False","Agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.5,8.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe2494f-47be-2375-e61b-8ca9b5f39bfd","62","2","2","1","1","4","1","3","76201","623","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",50,96.9,"False","Disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.5,8.8,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",4,62,0,"Democrat",0,1,0.59134387049726 +1265,50,67.1,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",79,77.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24798-8915-c18f-8d5e-6611851af1c7","69","2","6","1","1","6","3","1","05153","523","46","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,67.1,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",21,22.1,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,69,0,"Independent",0,0,0.543332857421717 +1266,99.9,25.1,"False","Disagree","Definitely false","Not sure","Probably false","Definitely true","Strongly agree","Strongly disagree",75.1,80.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe24a1d-53b3-f560-03b2-247a10a01437","60","1","14","1","1","6","2","1","15220","508","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",0.0999999999999943,74.9,"True","Agree","Definitely false","Not sure","Probably false","Definitely false","Strongly disagree","Strongly disagree",24.9,19.6,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure","No, false",6,60,0,"Republican",0,2,1.15936282486158 +1267,50,50,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Probably false","Strongly agree","Strongly agree",100,40,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Strongly disagree","Disagree","","","Strongly agree","Vote for the Democrat Joe Biden","5fe24ad6-7eea-c51c-6f7e-219d8ad47ef2","24","1","1","15","14","-3105","4","1","08406","504","31","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure",50,50,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Strongly disagree",100,40,"Strongly disagree","Agree","","","Strongly agree","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure",-3105,24,0,"Democrat",0,0,0.804487506112791 +1268,50,61.5,"False","Disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly agree","Strongly agree",1.2,2.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24926-d635-dbce-10fe-883cf093a783","60","1","1","1","1","4","3","2","53523","669","50","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",50,38.5,"False","Disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",1.2,2.4,"Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",4,60,0,"Independent",0,0,0.805895656010846 +1269,83.3,90.9,"Not sure","Agree","Definitely true","Probably false","Definitely true","Not sure","Somewhat agree","Somewhat agree",73.6,85.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2473e-29de-0eca-6b95-a935674d43f5","60","2","16","2","1","6","1","3","27703","560","34","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true",83.3,90.9,"Not sure","Agree","Definitely false","Probably false","Definitely false","Not sure","Somewhat agree","Somewhat disagree",26.4,14.7,"Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false",6,60,0,"Democrat",0,0,0.772717258464593 +1270,49.9,67.7,"True","Neither agree nor disagree","Definitely true","Probably false","Definitely true","Probably true","Slightly agree","Strongly disagree",53.2,39,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Disagree","Disagree","Agree","Not vote in the presidential election","5fe24920-1da9-6e93-c894-8ef74b76ace2","31","2","2","2","1","2","3","3","76541","625","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure",49.9,32.3,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Probably true","Slightly disagree","Strongly disagree",46.8,61,"Neither agree nor disagree","Disagree","Agree","Agree","Agree","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure",2,31,0,"Independent",0,0,1.56294177382206 +1271,76.5,24.3,"False","Disagree","Probably false","Probably false","Definitely false","Definitely true","Strongly agree","Slightly agree",85.5,85.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe24b62-f918-bbd8-28e9-7483350ac44e","65","1","9","1","1","6","2","3","40509","541","18","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",23.5,75.7,"True","Agree","Probably false","Probably true","Definitely true","Definitely false","Strongly disagree","Slightly agree",14.5,14.5,"Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,65,1,"Republican",0,3,0.957543870478141 +1272,83.9,88.2,"True","Agree","Probably false","Probably true","Definitely true","Definitely true","Strongly disagree","Somewhat agree",18.1,13.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2493b-fc7f-c858-f41c-3c244d200006","40","1","21","1","1","7","1","3","32003","561","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",16.1,11.8,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",18.1,13.5,"Disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true",7,40,0,"Democrat",0,1,0.574171657914799 +1273,99.9,67,"True","Strongly disagree","Probably true","Probably false","Probably true","Definitely false","Somewhat disagree","Strongly agree",85,73.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24728-2798-11fc-4366-d376dedf6c80","64","1","4","1","1","2","2","3","31788","525","11","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",0.0999999999999943,33,"False","Strongly disagree","Probably false","Probably true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",15,26.2,"Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false",2,64,0,"Republican",0,0,1.09919840793407 +1274,0.1,99.9,"True","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",66.1,53.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Agree","Agree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24a99-9f70-02c4-898f-13c58c7a2f43","63","1","5","1","1","2","2","2","61401","682","14","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",0.1,0.0999999999999943,"False","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",33.9,46.4,"Disagree","Agree","Strongly agree","Strongly agree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",2,63,1,"Republican",0,1,1.19918316758111 +1275,50,50,"False","Agree","Definitely true","Probably false","Definitely true","Probably true","Strongly agree","Slightly agree",17.3,11.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe24a56-dd87-d48f-c6e9-6f5bf1226b05","60","2","2","1","1","1","3","4","91411","803","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","No, false","No, false",50,50,"False","Agree","Definitely false","Probably true","Definitely false","Probably true","Strongly agree","Slightly agree",17.3,11.1,"Neither agree nor disagree","Agree","Agree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","No, false","No, false",1,60,0,"Independent",0,0,2.12276713543991 +1276,56.7,73.7,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably true","Not sure","Strongly disagree","Strongly disagree",88.1,91,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24a62-e652-592a-4019-4f4b42ce2461","27","2","1","1","1","4","3","3","39402","710","25","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure",56.7,26.3,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably false","Not sure","Strongly agree","Strongly disagree",11.9,9,"Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Not sure",4,27,0,"Independent",0,0,0.468830069482283 +1277,50,50,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Strongly agree","Slightly disagree",24.5,29,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24b6f-e202-bda4-24b7-f4497d1eb818","20","2","1","2","1","2","3","3","35801","691","1","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably true","Strongly disagree","Slightly disagree",24.5,29,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,20,0,"Independent",0,0,1.43762942104787 +1278,74.6,81.1,"True","Agree","Not sure","Probably true","Definitely false","Probably false","Slightly agree","Slightly agree",73.7,81.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24a74-7c0f-7200-d958-b3f76ce39507","22","2","3","1","1","6","2","4","92071","825","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",25.4,18.9,"False","Agree","Not sure","Probably true","Definitely false","Probably false","Slightly disagree","Slightly agree",26.3,18.5,"Disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",6,22,0,"Republican",0,0,1.54803889082819 +1279,32.5,99.9,"False","Disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",8.8,3.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe24969-3492-bc2f-e793-aa55560ef0f1","66","2","5","1","1","2","1","4","97060","820","38","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","No, false",32.5,99.9,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.8,3.1,"Agree","Agree","Disagree","Disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",2,66,0,"Democrat",0,0,0.724833266434345 +1280,99.9,97.8,"False","Strongly agree","Probably false","Probably false","Probably true","Probably false","Strongly agree","Strongly agree",75,93.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24ae2-68d0-af01-4bd4-53c2ab21cd88","33","2","12","1","1","6","3","3","40055","529","18","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",99.9,2.2,"False","Strongly disagree","Probably false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",25,6.3,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",6,33,0,"Republican",0,2,0.697625211881609 +1281,42,87.2,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly agree",81,81,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe247c2-96bc-0237-2207-6e50c81d34b5","64","2","-3105","1","1","6","1","2","47018","515","15","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",58,12.8,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19,19,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true",6,64,0,"Democrat",0,0,0.645133408704056 +1282,50,77.4,"False","Agree","Definitely false","Probably false","Probably true","Definitely true","Somewhat agree","Somewhat agree",34.7,11.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe248c1-2abd-68ca-fae4-18be4476712d","45","2","9","1","1","2","2","2","62298","609","14","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",50,77.4,"False","Disagree","Definitely false","Probably true","Probably false","Definitely false","Somewhat disagree","Somewhat agree",34.7,11.5,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,45,0,"Republican",0,3,0.971380249062987 +1283,50,96.8,"False","Disagree","Probably true","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly agree",75.9,74.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe249b8-334f-558b-65fb-19711761a18c","72","2","5","1","1","2","1","1","19446","504","39","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",50,96.8,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",24.1,25.9,"Agree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true",2,72,0,"Democrat",0,0,0.543332857421717 +1284,50.2,99.9,"False","Agree","Probably true","Not sure","Definitely true","Definitely false","Slightly disagree","Strongly agree",98,96.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe24839-234d-c941-3f29-f8e972474855","61","1","-3105","1","1","8","3","2","60448","602","14","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",49.8,99.9,"True","Agree","Probably true","Not sure","Definitely false","Definitely false","Slightly agree","Strongly disagree",2,3.90000000000001,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true",8,61,0,"Independent",0,0,1.19918316758111 +1285,75.7,99.9,"True","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely false","Slightly disagree","Strongly agree",10.1,3.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24b15-7e64-461b-f053-4d4b23a59f75","55","1","9","1","1","6","3","3","78224","641","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure",75.7,99.9,"True","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Slightly agree","Strongly disagree",10.1,3.4,"Agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure",6,55,0,"Independent",0,1,1.09919840793407 +1286,82.6,81.8,"True","Agree","Probably false","Probably false","Probably false","Definitely false","Strongly agree","Strongly agree",53.7,54.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe24b44-aec7-8ce7-0f30-42fb3331f857","45","2","4","1","1","2","1","1","10567","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false",17.4,18.2,"True","Agree","Probably false","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",53.7,54.5,"Strongly agree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",2,45,0,"Democrat",0,0,0.35499607487986 +1287,50,50,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",68.5,66.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Disagree","Not vote in the presidential election","5fe2496b-930c-6a72-1cff-005206c9bb9d","61","2","12","1","1","4","2","4","82501","767","51","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",31.5,33.3,"Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true",4,61,0,"Republican",0,0,2.12276713543991 +1288,50,54.9,"True","Agree","Probably false","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",5.1,6.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24b5f-8469-e1ae-f7bc-43eab969cfef","66","1","20","1","1","6","3","3","77345","618","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",50,54.9,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",5.1,6.7,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","No, false","No, false","Not sure","Yes, true",6,66,0,"Independent",0,3,0.957543870478141 +1289,79.3,36.1,"True","Agree","Probably true","Probably false","Definitely false","Definitely false","Slightly disagree","Somewhat agree",39.5,61.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24ae9-a3ea-4e0e-d7c0-e6f4aa482ab9","80","1","11","1","1","7","2","1","10312","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure",20.7,36.1,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly agree","Somewhat disagree",39.5,61.9,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false","Not sure","No, false","Yes, true","Not sure",7,80,0,"Republican",0,1,1.0099548530942 +1290,3.8,76.6,"False","Disagree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",57.6,12.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Agree","Agree","Disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe248b1-0335-52ef-7e51-3fd376c31636","26","2","3","1","1","2","2","3","77504","618","44","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",3.8,76.6,"False","Disagree","Probably true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",57.6,12.5,"Disagree","Agree","Agree","Agree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",2,26,0,"Republican",0,0,0.697625211881609 +1291,29.5,19.6,"Not sure","Disagree","Not sure","Not sure","Probably false","Probably true","Slightly disagree","Strongly agree",47.7,51.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24bcb-4d57-91de-66e3-f6fa5e98832c","59","2","7","1","1","6","1","3","26501","508","49","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",70.5,80.4,"Not sure","Agree","Not sure","Not sure","Probably false","Probably false","Slightly disagree","Strongly disagree",52.3,48.5,"Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","No, false","No, false","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",6,59,0,"Democrat",0,0,1.50864454760297 +1292,50,75,"True","Neither agree nor disagree","Not sure","Probably false","Probably false","Definitely true","Slightly disagree","Strongly disagree",11.8,29.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24bbf-ad78-8177-05b6-3efe4a330bcf","63","1","8","1","1","4","3","1","08302","504","31","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","No, false",50,75,"False","Neither agree nor disagree","Not sure","Probably true","Probably false","Definitely false","Slightly disagree","Strongly disagree",11.8,29.1,"Disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true",4,63,0,"Independent",0,0,1.15936282486158 +1293,19.8,71.3,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely true","Definitely true","Somewhat agree","Somewhat agree",85.4,66.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe24a67-bc9b-2f33-0af5-6ad806ac8e74","20","2","8","1","1","6","1","3","75001","623","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false",19.8,71.3,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",14.6,33.4,"Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true",6,20,0,"Democrat",0,0,0.431240569961491 +1294,34.5,54.7,"True","Disagree","Definitely false","Probably true","Probably true","Probably true","Strongly agree","Somewhat disagree",16.6,11.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe2487c-fed2-e58b-ef13-735d39e30c36","33","2","-3105","1","1","4","2","2","63031","609","26","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure",34.5,54.7,"False","Agree","Definitely false","Probably true","Probably false","Probably false","Strongly disagree","Somewhat disagree",16.6,11.5,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Not sure",4,33,1,"Republican",0,0,0.761082262610781 +1295,33.1,65.8,"True","Strongly disagree","Definitely true","Probably true","Probably true","Definitely true","Somewhat disagree","Somewhat agree",63.7,53,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe24ad8-346c-dca2-606b-69a9b66b3cb3","58","2","2","1","1","6","2","3","73008","650","37","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",33.1,65.8,"True","Strongly disagree","Definitely false","Probably false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",36.3,47,"Strongly agree","Agree","Disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","No, false",6,58,1,"Republican",0,0,0.879927333598919 +1296,50,98.9,"Not sure","Neither agree nor disagree","Not sure","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",64.9,79.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24bec-098e-1d8f-94c2-d3771ebbf378","22","1","3","15","1","4","3","1","04444","537","20","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",50,1.09999999999999,"Not sure","Neither agree nor disagree","Not sure","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.1,20.6,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false",4,22,0,"Independent",1,0,0.433680239961177 +1297,67.3,96.8,"True","Strongly agree","Probably false","Definitely false","Probably true","Definitely true","Strongly agree","Strongly agree",75.1,90.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Disagree","Disagree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24720-8666-0a93-2c81-bf9071f30437","30","2","1","2","1","4","1","2","60130","602","14","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true",67.3,3.2,"True","Strongly agree","Probably true","Definitely true","Probably true","Definitely true","Strongly agree","Strongly disagree",24.9,9.8,"Agree","Agree","Strongly disagree","Agree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false","No, false","No, false",4,30,0,"Democrat",0,3,0.668352234297901 +1298,39.5,99.9,"Not sure","Agree","Definitely false","Probably true","Probably true","Definitely true","Slightly agree","Strongly disagree",75,35.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Agree","Not vote in the presidential election","5fe24bbc-883a-3e15-874e-f101165b4ddb","21","2","1","1","2","1","1","2","60133","602","14","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",60.5,0.0999999999999943,"Not sure","Agree","Definitely true","Probably true","Probably true","Definitely false","Slightly disagree","Strongly disagree",75,35.1,"Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Agree","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","No, false",1,21,0,"Republican",0,0,2.22651457155522 +1299,65.9,56.4,"False","Disagree","Probably false","Probably true","Probably true","Definitely true","Slightly disagree","Slightly disagree",75.9,55,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24986-f0d0-0fce-bf25-705b7eb943cc","72","1","-3105","1","1","2","2","1","13901","502","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",34.1,43.6,"True","Disagree","Probably true","Probably true","Probably false","Definitely false","Slightly agree","Slightly agree",24.1,45,"Agree","Strongly agree","Strongly agree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Yes, true",2,72,0,"Republican",0,1,1.0099548530942 +1300,60,99.9,"False","Disagree","Probably false","Definitely false","Definitely true","Definitely true","Strongly agree","Slightly agree",37.6,27.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe248f9-99ee-33c9-f30d-6ab954e3fb36","19","2","1","15","2","2","1","2","60651","602","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Not sure","No, false","Not sure","No, false","No, false","Not sure","No, false","No, false","Not sure","Not sure",60,0.0999999999999943,"False","Agree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",37.6,27.8,"Disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",2,19,0,"Democrat",0,1,0.666125677623384 +1301,49.6,99.1,"Not sure","Agree","Definitely false","Definitely true","Definitely true","Probably false","Somewhat disagree","Strongly agree",61.8,64.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe24ab2-d0dc-efb3-8e67-37e6a3ad66cc","62","2","8","1","1","2","1","2","44320","510","36","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure",49.6,0.900000000000006,"Not sure","Agree","Definitely false","Definitely true","Definitely true","Probably false","Somewhat agree","Strongly disagree",61.8,64.3,"Strongly disagree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure",2,62,0,"Democrat",0,0,1.64587315109813 +1302,50,39.7,"False","Neither agree nor disagree","Probably true","Not sure","Definitely false","Not sure","Strongly agree","Slightly agree",50.4,49.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24afa-8648-32da-8659-36f395fd8926","19","2","22","2","1","5","1","2","48108","505","23","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","No, false","No, false",50,60.3,"True","Neither agree nor disagree","Probably false","Not sure","Definitely false","Not sure","Strongly agree","Slightly agree",50.4,49.9,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",5,19,0,"Democrat",0,0,0.614765598912923 +1303,77.6,19.8,"False","Agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",5,3.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe24a18-524d-3df5-ee6b-5a40cacb82a9","68","2","5","1","1","2","2","3","33513","534","10","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","No, false",22.4,80.2,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",5,3.2,"Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false",2,68,0,"Republican",0,0,0.766530426783843 +1304,49.9,50,"Not sure","Agree","Probably false","Probably false","Definitely false","Definitely true","Somewhat agree","Strongly disagree",70.4,79.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24861-5d63-97f0-4c38-514bdff168b9","54","2","22","1","1","6","3","3","22968","584","47","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true",49.9,50,"Not sure","Agree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",29.6,20.4,"Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false",6,54,0,"Independent",0,1,0.890389101626892 +1305,99.9,99.9,"Not sure","Agree","Probably true","Definitely true","Definitely true","Probably false","Slightly agree","Slightly disagree",50.2,80.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24a80-088f-6e1c-4fe9-55e64d7e1d9c","24","1","14","2","1","4","2","3","28214","517","34","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",99.9,99.9,"Not sure","Agree","Probably false","Definitely true","Definitely true","Probably true","Slightly agree","Slightly agree",49.8,19.9,"Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",4,24,1,"Republican",0,0,1.04745678717083 +1306,50,46.8,"False","Disagree","Definitely false","Probably false","Definitely true","Definitely false","Somewhat disagree","Strongly agree",30.5,23.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe247c5-1a50-358c-119a-f9f57b285db1","26","2","20","1","1","6","2","1","17403","566","39","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure",50,53.2,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",30.5,23.8,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Strongly disagree","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure",6,26,0,"Republican",0,1,0.735809595887113 +1307,50,90.7,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Definitely true","Strongly disagree","Strongly agree",4,6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24b88-79d1-30c6-2cd2-35254b9e3dca","72","1","-3105","1","1","7","1","1","06890","501","7","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure",50,90.7,"False","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",4,6,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",7,72,0,"Democrat",0,3,0.678727196044171 +1308,39.5,41.3,"True","Agree","Probably true","Probably true","Probably true","Definitely false","Somewhat agree","Strongly disagree",80.2,90.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe24ae7-afb0-721e-43be-23573a8aa269","58","2","1","1","1","4","2","3","34972","534","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true",39.5,58.7,"False","Agree","Probably false","Probably true","Probably false","Definitely false","Somewhat agree","Strongly disagree",19.8,9.3,"Disagree","Disagree","Disagree","Disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false",4,58,0,"Republican",0,0,0.879927333598919 +1309,52.3,56.3,"Not sure","Disagree","Probably false","Probably true","Probably false","Definitely true","Somewhat agree","Slightly agree",72.3,72.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24b54-2fe9-a80a-d222-54039a69438e","62","1","8","3","1","5","2","2","53154","617","50","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","No, false",47.7,43.7,"Not sure","Disagree","Probably false","Probably false","Probably false","Definitely false","Somewhat disagree","Slightly agree",27.7,27.1,"Disagree","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",5,62,0,"Republican",0,3,0.915298994245579 +1310,88.5,95.5,"False","Strongly agree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",77.6,86.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe249ed-9245-4922-a81f-82229c18993b","55","1","3","1","1","6","1","3","27604","560","34","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false",11.5,4.5,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",22.4,13.5,"Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,55,0,"Democrat",0,2,0.73870218161496 +1311,50,80,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",24.9,39.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24c38-dfe4-df32-2597-615a748198a2","62","1","1","1","1","6","1","4","85257","753","3","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",50,80,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.9,39.1,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",6,62,0,"Democrat",0,3,1.0394050185655 +1312,50,75,"False","Agree","Definitely true","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",20,26,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24a60-5217-6d6a-fe62-0216ab33509f","74","2","1","1","1","2","2","3","33525","539","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true",50,75,"True","Agree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",20,26,"Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",2,74,0,"Republican",0,0,0.515136934744757 +1313,68.3,50,"False","Disagree","Definitely false","Not sure","Probably true","Definitely false","Strongly disagree","Strongly agree",65.9,76.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Strongly agree","Disagree","Not vote in the presidential election","5fe24b36-1093-7d01-d73e-6c48a07bf7e8","57","1","2","1","1","3","3","3","36351","606","1","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",31.7,50,"True","Disagree","Definitely false","Not sure","Probably true","Definitely false","Strongly agree","Strongly disagree",34.1,23.1,"Neither agree nor disagree","Disagree","Disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",3,57,0,"Other",0,0,1.88458708070939 +1314,50,70.9,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",75.7,76.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe248b1-72dc-3c6f-eced-bf9089fed27b","80","1","3","1","1","4","4","2","49454","540","23","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true",50,29.1,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",24.3,23.5,"Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",4,80,0,"Republican",0,0,0.702039267968476 +1315,50,77.7,"True","Strongly agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly agree",25.3,25.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe249db-ae40-0a7d-d357-5b2cc89a8e1c","53","1","19","2","1","4","1","2","60617","602","14","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",50,77.7,"False","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.3,25.2,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Yes, true",4,53,0,"Democrat",0,0,1.06559544276142 +1316,91.9,95.6,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",100,99.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe24902-a8c6-73e7-fe08-0ca9ea281f3c","31","1","24","1","1","8","1","4","90503","803","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",91.9,4.40000000000001,"False","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly agree",100,99.9,"Strongly agree","Strongly agree","Strongly disagree","Disagree","Strongly disagree","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false",8,31,0,"Democrat",1,1,1.22621571387527 +1317,0.1,71.6,"False","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably true","Strongly agree","Somewhat agree",50,10.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe248e9-dc30-8ef7-98ec-57c55c131bc7","18","2","1","3","7","1","4","3","20783","511","21","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",0.1,28.4,"True","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably true","Strongly agree","Somewhat disagree",50,10.8,"Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",1,18,1,"Democrat",0,0,0.610585858876394 +1318,91.4,99.9,"True","Strongly agree","Probably false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",82.7,91.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24d30-e32e-34e6-fe0d-ec0dbe43884d","47","1","8","3","1","7","3","4","92821","803","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",91.4,0.0999999999999943,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.3,8.2,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",7,47,0,"Independent",0,2,0.802777695825244 +1319,50,77.6,"False","Agree","Definitely true","Definitely true","Probably false","Definitely false","Strongly agree","Strongly agree",51,55.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24ae0-811e-6ea2-1cd5-2a4aaf53a0ca","27","2","18","4","1","6","1","3","30318","524","11","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true",50,22.4,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",49,44.9,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",6,27,0,"Democrat",1,3,0.357843324247791 +1320,74.3,99.9,"True","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Slightly disagree",69.3,87.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe24a8e-0482-ebf5-53be-ec49e6be6d82","25","2","1","15","1","4","1","2","43302","535","36","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",74.3,0.0999999999999943,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",69.3,87.2,"Agree","Agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",4,25,0,"Democrat",1,1,0.390393297490073 +1321,96.7,99.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Probably true","Strongly agree","Strongly agree",79,10.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24824-c375-8d82-37ab-8e2b33b5115c","30","2","23","1","1","8","1","1","10011","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false",96.7,0.0999999999999943,"True","Strongly agree","Definitely true","Definitely false","Definitely true","Probably true","Strongly agree","Strongly disagree",79,10.3,"Strongly agree","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",8,30,1,"Democrat",0,0,0.494491394648778 +1322,18.6,99.9,"False","Neither agree nor disagree","Probably true","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",28.2,24.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24c40-dc7c-0af9-1e24-f55160492940","60","1","3","2","1","4","1","2","45406","542","36","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",18.6,0.0999999999999943,"False","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",28.2,24.8,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",4,60,0,"Democrat",0,0,1.05307506002823 +1323,37.8,99.9,"True","Agree","Probably false","Probably false","Probably false","Definitely true","Somewhat agree","Somewhat disagree",35.8,22.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe24c10-5170-46e9-10d7-94c15ce413c9","67","1","10","1","1","6","3","4","98662","820","48","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",37.8,99.9,"False","Disagree","Probably false","Probably true","Probably false","Definitely false","Somewhat agree","Somewhat disagree",35.8,22.2,"Disagree","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true",6,67,0,"Independent",0,0,0.905456100816435 +1324,50,50,"Not sure","Agree","Definitely true","","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",70.1,92.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24a7b-783e-b34d-56af-3579d3c9ff54","69","2","4","1","1","6","2","4","81652","751","6","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",50,50,"Not sure","Agree","Definitely false","","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",29.9,7.2,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",6,69,1,"Republican",0,0,1.07856128262739 +1325,50,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Definitely true","Somewhat agree","Strongly disagree",45.7,82.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2478e-d4d9-a383-a66f-30ec092b8c1b","23","2","3","2","1","4","1","3","21113","512","21","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Definitely false","Somewhat agree","Strongly disagree",54.3,17.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,23,0,"Democrat",0,0,0.563508049350613 +1326,99.9,99.9,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",4,3.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe24ad2-3cde-2446-4e01-d45a6f1b1070","50","1","10","1","1","6","1","4","97330","801","38","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",99.9,99.9,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",4,3.5,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Yes, true",6,50,1,"Democrat",0,2,1.05176287332933 +1327,25.8,50,"True","Disagree","Probably true","Definitely false","Probably false","Definitely true","Strongly disagree","Somewhat agree",77.1,89.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24c89-ffad-0e6c-99b7-8e45429fec3b","45","1","16","1","1","5","2","3","70769","716","19","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",74.2,50,"False","Agree","Probably false","Definitely true","Probably false","Definitely false","Strongly agree","Somewhat disagree",22.9,10.6,"Disagree","Disagree","Disagree","Strongly disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false",5,45,0,"Independent",0,0,1.11226716750253 +1328,81.2,91.3,"False","Neither agree nor disagree","Definitely true","Probably true","Definitely true","Probably true","Somewhat agree","Strongly agree",75,60.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe248d1-9fb3-4faa-c096-ddfa08e2f721","34","2","1","1","1","2","3","2","45628","535","36","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",81.2,8.7,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Somewhat agree","Strongly disagree",25,39.9,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false",2,34,0,"Independent",0,0,1.30488343971418 +1329,50.1,50,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Probably false","Slightly disagree","Strongly disagree",60,75,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24b39-ce54-8191-4273-354df33c7bfc","56","2","12","1","1","6","2","4","86426","753","3","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",50.1,50,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably false","Slightly agree","Strongly disagree",40,25,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",6,56,0,"Republican",0,0,1.23811856696587 +1330,65.3,99.9,"False","Strongly agree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",75.6,70.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24822-10c3-c162-0486-c7d09aed39b7","67","2","3","1","1","2","1","1","01970","506","22","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","No, false",65.3,99.9,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.4,29.8,"Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",2,67,0,"Democrat",1,1,0.543332857421717 +1331,51.3,69.3,"Not sure","Neither agree nor disagree","Probably true","Not sure","Probably true","Probably true","","Slightly agree",51.3,51.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe248c0-bde5-c871-40a3-e1a1106ebf23","29","1","9","1","1","6","3","3","72150","693","4","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",51.3,69.3,"Not sure","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably true","","Slightly disagree",51.3,51.5,"Agree","Strongly agree","Disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,29,0,"Independent",0,0,1.494140949244 +1332,99.9,99.5,"False","Disagree","Probably false","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly agree",75.7,64.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe249a4-8fbe-c480-fc12-695aac085504","74","2","3","1","1","4","1","2","48060","505","23","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",99.9,0.5,"True","Agree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.3,35.4,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",4,74,0,"Democrat",0,0,0.561994574124504 +1333,19,92.8,"Not sure","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely true","Somewhat disagree","Slightly disagree",9.1,1.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe24b30-fa25-f8a8-7978-da98206d1ade","25","2","2","2","1","2","1","3","77471","618","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false",81,92.8,"Not sure","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Slightly disagree",90.9,98.6,"Strongly disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true",2,25,0,"Democrat",0,0,1.56294177382206 +1334,50,50,"False","Agree","Probably false","Not sure","Definitely true","Definitely true","Strongly agree","Strongly disagree",0,14,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe2471c-acfc-857e-d338-0a68422f70a0","66","1","2","1","1","7","2","1","16830","574","39","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false",50,50,"False","Agree","Probably false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly disagree",0,14,"Strongly disagree","Strongly agree","Neither agree nor disagree","Disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",7,66,0,"Republican",0,1,1.0099548530942 +1335,50,50,"True","Agree","Probably true","Definitely true","Definitely true","Definitely true","Somewhat agree","Strongly disagree",35.9,50.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe24c98-db08-61b9-3c85-1dbf39fa5dc8","85","1","5","1","1","2","2","3","29075","546","41","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false",50,50,"True","Agree","Probably false","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",35.9,50.7,"Agree","Agree","Disagree","Strongly disagree","Agree","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",2,85,0,"Republican",0,0,0.957543870478141 +1336,3.5,10.2,"False","Neither agree nor disagree","Probably true","Definitely true","Definitely true","Definitely true","Somewhat agree","Strongly agree",13.5,82.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe24aa3-bb19-c7a1-59f4-2256d1ec0d9e","26","2","1","15","2","2","1","3","27407","518","34","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",96.5,10.2,"True","Neither agree nor disagree","Probably false","Definitely true","Definitely true","Definitely false","Somewhat disagree","Strongly disagree",13.5,82.1,"Disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Disagree","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","No, false",2,26,1,"Democrat",0,0,0.663808163196431 +1337,81.3,77.2,"False","Strongly agree","Probably false","Probably false","Probably true","Probably false","Somewhat disagree","Slightly agree",97.6,98.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Agree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for a different candidate","5fe2480d-3344-36c2-0b3d-459c37937b01","63","1","13","16","1","4","4","2","54601","702","50","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",81.3,77.2,"False","Strongly agree","Probably false","Probably false","Probably true","Probably true","Somewhat agree","Slightly agree",2.40000000000001,1.5,"Disagree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",4,63,0,"Independent",0,2,0.345989899725231 +1338,97.4,99.9,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",24.7,10.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe247ce-6fa3-fd29-d6f1-d8ce94c64562","60","2","1","1","1","2","3","2","53213","617","50","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2.59999999999999,0.0999999999999943,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.7,10.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,60,0,"Independent",0,0,0.645133408704056 +1339,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Definitely true","Somewhat disagree","Strongly agree",19.4,23.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe24ace-947b-3b47-3e56-28fc713b02c4","72","1","9","1","1","6","2","3","41017","515","18","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Somewhat agree","Strongly disagree",19.4,23.9,"Disagree","Agree","Agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",6,72,0,"Republican",0,2,0.957543870478141 +1340,79.3,79.7,"True","Agree","Definitely true","Probably true","Definitely true","Probably true","Somewhat agree","Strongly agree",67.6,94.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Neither agree nor disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe24a97-b3aa-2138-bf6f-397cb3665d2b","30","1","17","1","1","6","1","4","92069","825","5","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Not sure",20.7,79.7,"True","Agree","Definitely true","Probably false","Definitely false","Probably true","Somewhat disagree","Strongly disagree",67.6,94.7,"Strongly agree","Agree","Neither agree nor disagree","Strongly agree","Agree","Not sure","No, false","Yes, true","No, false","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure",6,30,0,"Democrat",1,0,1.22621571387527 +1341,50,50,"True","Agree","Definitely true","Not sure","Definitely true","Definitely false","Strongly agree","Strongly disagree",55.5,80.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe24960-3091-2117-0293-d304e30d3a0e","75","2","13","1","1","4","2","3","78570","636","44","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","No, false",50,50,"False","Disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly agree",44.5,19.3,"Disagree","Agree","Disagree","Strongly disagree","Disagree","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","No, false",4,75,1,"Republican",0,0,0.766530426783843 +1342,50,78.3,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely true","Probably true","Somewhat agree","Slightly disagree",29.4,65.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe248e6-fe64-a887-6bc0-37fab854dfc3","21","2","11","2","1","6","1","1","19143","504","39","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true",50,21.7,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably true","Somewhat agree","Slightly disagree",70.6,34.8,"Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true",6,21,0,"Independent",0,0,0.594351555835364 +1343,49.9,73.4,"False","Disagree","Definitely true","Probably true","Definitely true","Definitely false","Slightly agree","Strongly disagree",91.3,92.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe24901-0c55-6df5-abf4-680a92aea698","55","2","10","1","1","6","2","4","80915","752","6","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",49.9,73.4,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly agree","Strongly disagree",8.7,7.2,"Disagree","Strongly disagree","Disagree","Disagree","Strongly disagree","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",6,55,0,"Republican",0,0,1.23811856696587 +1344,50,22.6,"True","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Definitely false","Somewhat disagree","Slightly agree",26.7,49.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Disagree","Neither agree nor disagree","Agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe24a1d-7e7a-2eff-8d78-203184d4b904","68","2","13","1","1","6","2","4","98620","820","48","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",50,22.6,"True","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely false","Somewhat disagree","Slightly agree",26.7,49.2,"Disagree","Neither agree nor disagree","Agree","Strongly disagree","Strongly agree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",6,68,0,"Republican",0,0,1.07856128262739 +1345,50,85.5,"False","Neither agree nor disagree","Definitely false","Probably false","Probably true","Definitely false","Strongly agree","Strongly agree",91,85.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe24c8c-cff9-d000-081e-c79b5e5ef3fd","58","1","-3105","1","1","7","1","4","98019","819","48","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure",50,85.5,"False","Neither agree nor disagree","Definitely false","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",9,14.5,"Agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure",7,58,0,"Democrat",0,2,1.0394050185655 +1346,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Definitely false","Strongly agree","Strongly disagree",75.9,90.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe260ed-7bb4-14a5-729e-3bf5c3fa85e1","67","1","7","1","1","2","1","2","48910","551","23","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.1,9.90000000000001,"Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Agree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",2,67,0,"Democrat",0,0,0.702039267968476 +1347,51.7,71.3,"True","Strongly disagree","Probably true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",85.1,77.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Agree","Not vote in the presidential election","5fe261c6-f5fa-02e2-d49e-e79f38f67e7e","45","1","1","15","1","6","1","3","24060","573","47","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",48.3,71.3,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.9,22.4,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","No, false",6,45,0,"Democrat",0,3,1.45554855634803 +1348,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably true","Probably false","Strongly agree","Strongly agree",21.6,22.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe26355-0da8-1c80-83a8-24ce99f30b44","38","1","1","1","1","4","2","3","24112","573","47","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Probably false","Strongly agree","Strongly disagree",21.6,22.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,38,0,"Republican",0,0,0.854374859000727 +1349,71.8,86.9,"True","Agree","Definitely false","Probably true","Definitely false","Definitely true","Somewhat disagree","Strongly agree",77.6,28.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe26326-7b1a-91be-8e8a-0490cdc10c11","64","1","4","1","1","2","2","2","43920","536","36","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true",71.8,86.9,"True","Disagree","Definitely false","Probably true","Definitely true","Definitely false","Somewhat agree","Strongly disagree",22.4,71.5,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","No, false",2,64,0,"Republican",0,0,0.805895656010846 +1350,45.9,39,"False","Agree","Probably true","Probably true","Probably true","Probably false","Slightly agree","Slightly agree",29,24.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe263be-a5cb-1784-6fb7-e80bcf1cdff1","55","1","5","1","1","2","2","2","63701","632","26","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",54.1,39,"True","Agree","Probably true","Probably true","Probably false","Probably true","Slightly disagree","Slightly disagree",29,24.5,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,55,0,"Republican",0,0,2.05601198902308 +1351,62.5,68.5,"False","Neither agree nor disagree","Definitely true","Definitely true","Not sure","Definitely false","Somewhat agree","Somewhat agree",46.3,38.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe263e8-0389-ab9e-bbd1-77fe722f2171","20","2","-3105","15","1","4","1","2","66601","605","17","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Not sure",62.5,68.5,"False","Neither agree nor disagree","Definitely false","Definitely false","Not sure","Definitely false","Somewhat agree","Somewhat disagree",46.3,38.2,"Disagree","Disagree","Disagree","Disagree","Disagree","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure",4,20,0,"Independent",0,0,0.359092641614633 +1352,25.8,99.9,"False","Agree","Probably true","Not sure","Definitely true","Definitely false","Slightly agree","Strongly agree",25.1,30.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe26458-bd70-2b40-d441-21b8bae7e6e5","75","1","9","1","1","4","3","1","08081","504","31","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",74.2,99.9,"False","Disagree","Probably false","Not sure","Definitely false","Definitely false","Slightly agree","Strongly disagree",74.9,69.6,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Agree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true",4,75,0,"Independent",0,0,1.0099548530942 +1353,66.1,73.5,"True","Neither agree nor disagree","Definitely true","Probably true","Definitely true","Probably true","Strongly disagree","Strongly agree",76.6,71.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Strongly agree","Neither agree nor disagree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe26686-39f9-607d-d71b-225b0887b76a","35","1","24","1","1","8","2","4","85255","753","3","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",66.1,26.5,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",23.4,28.9,"Strongly disagree","Neither agree nor disagree","Strongly agree","Agree","Strongly agree","Not sure","No, false","Not sure","No, false","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true",8,35,1,"Democrat",0,0,0.807899201610574 +1354,49.9,62.1,"True","Disagree","Probably true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly agree",74.3,76.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe265d7-3f73-bc65-6de5-404a11f161ad","39","1","2","1","1","2","1","2","47834","581","15","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",49.9,37.9,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.7,23.6,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true",2,39,0,"Democrat",1,1,0.62639918553709 +1355,99.9,99.9,"True","Agree","Probably true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",85,65,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe26445-247f-997e-cf02-a1dc9b1b211f","44","1","23","1","1","8","1","3","32825","534","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false","Not sure","Yes, true","No, false",0.0999999999999943,99.9,"True","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15,35,"Strongly agree","Agree","","Agree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","No, false",8,44,0,"Democrat",1,0,0.574171657914799 +1356,48.1,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Not sure","Strongly agree","Strongly disagree",20.9,23,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe266b1-998b-e912-7ae3-3b3cbd5d96d7","20","2","1","16","1","2","4","1","13204","555","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",51.9,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably false","Not sure","Strongly agree","Strongly disagree",20.9,23,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,20,0,"Other",0,1,0.885701092678788 +1357,99.9,99.9,"True","Agree","Definitely true","Definitely true","Definitely true","Probably true","Strongly agree","Somewhat agree",60,76.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Strongly agree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe2680b-a9e3-de6a-b79c-d9b305fc403d","37","2","13","1","1","6","1","4","97701","821","38","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",0.0999999999999943,0.0999999999999943,"False","Disagree","Definitely true","Definitely false","Definitely true","Probably false","Strongly disagree","Somewhat disagree",40,23.6,"Strongly agree","Disagree","Strongly disagree","Agree","Strongly agree","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",6,37,0,"Democrat",1,0,0.646737281603242 +1358,40.9,69,"True","Strongly disagree","Not sure","Definitely true","Definitely false","Definitely false","Strongly agree","Slightly agree",3.9,4.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe24a2e-dc53-5400-e161-432b78bd6f00","45","2","20","1","1","8","1","1","10013","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",59.1,31,"False","Strongly agree","Not sure","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",3.9,4.3,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Agree","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",8,45,0,"Democrat",1,1,0.631126486177329 +1359,35.7,66.7,"True","Disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly agree","Slightly agree",18.7,91.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe267f6-3eb1-ef7e-ae77-e95d3923b939","36","1","10","1","1","1","2","3","31510","507","11","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false",64.3,66.7,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Slightly agree",81.3,8.59999999999999,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true",1,36,0,"Republican",1,0,0.854374859000727 +1360,69.3,31.7,"True","Disagree","Definitely false","Probably false","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",21.3,5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe2680e-349d-9a2c-f7fe-78a929f1740d","71","1","-3105","1","1","7","2","3","34711","534","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","Not sure",69.3,31.7,"True","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",21.3,5,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Agree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure",7,71,0,"Republican",0,2,0.957543870478141 +1361,96.5,90.1,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Somewhat agree",98.9,96.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2684a-1aa4-6d8c-a82c-769ce5fa8a09","40","1","19","1","1","8","1","1","10001","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure",3.5,9.90000000000001,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Somewhat disagree",98.9,96.1,"Strongly disagree","Agree","Strongly agree","Agree","Neither agree nor disagree","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure",8,40,1,"Democrat",0,2,0.605598834997122 +1362,91,93.9,"True","Agree","Definitely true","Probably false","Definitely true","Probably true","Slightly agree","Slightly agree",87.3,86.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Disagree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe2698a-6f36-8e6a-ae92-1d91638116d7","36","1","23","1","2","6","2","4","90044","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true",9,6.09999999999999,"True","Disagree","Definitely true","Probably true","Definitely false","Probably true","Slightly agree","Slightly agree",87.3,86.6,"Agree","Disagree","Agree","Disagree","Agree","Yes, true","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",6,36,0,"Democrat",0,0,1.49867287924483 +1363,53.1,80.8,"False","Agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly disagree","Strongly agree",11.9,17,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe268fb-5ffa-26e4-0dd5-8f03df609349","67","1","13","1","1","3","1","3","32909","534","10","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",46.9,80.8,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",11.9,17,"Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",3,67,0,"Independent",0,2,0.643505067882763 +1364,99.9,65.8,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",75.1,65.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe268af-b17f-e930-c620-3c42b2b994bf","36","1","21","1","1","7","1","3","75201","623","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true",0.0999999999999943,34.2,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.9,34.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false",7,36,0,"Democrat",0,0,0.574171657914799 +1365,85.5,99.9,"True","Disagree","Probably false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",76.9,77.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe2647a-39ac-5fec-4172-7bb9882ae4b8","85","2","3","1","1","5","2","4","88001","765","32","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false",85.5,99.9,"True","Agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",23.1,22.9,"Strongly disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",5,85,1,"Republican",0,0,1.07856128262739 +1366,22.4,87.1,"Not sure","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",78.7,72.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Neither agree nor disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe26998-78a3-8470-945f-0a8d24dbf564","46","2","18","7","1","4","4","4","96753","744","12","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",22.4,87.1,"Not sure","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",21.3,27.4,"Disagree","Strongly disagree","Neither agree nor disagree","Agree","Disagree","No, false","No, false","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",4,46,0,"Republican",0,0,0.956252810592602 +1367,57.3,92.2,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",31.9,6.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe2681d-014c-8ec3-2f5d-62f08ac60d06","43","2","-3105","1","1","5","4","1","15227","508","39","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false",57.3,92.2,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly agree",31.9,6.3,"Agree","Agree","Strongly agree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true",5,43,0,"Republican",0,0,0.721377276759402 +1368,80.6,71.4,"True","Neither agree nor disagree","Definitely false","Probably false","Probably true","Probably false","Somewhat agree","Slightly disagree",47.7,32.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Agree","Agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2694b-36a7-5a3f-10ef-69361b94aef8","50","1","8","4","1","6","1","3","20740","511","21","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false",80.6,28.6,"True","Neither agree nor disagree","Definitely false","Probably false","Probably true","Probably false","Somewhat agree","Slightly disagree",47.7,32.9,"Strongly disagree","Agree","Disagree","Agree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",6,50,0,"Democrat",0,0,0.570531818363132 +1369,50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably true","Slightly disagree","Strongly agree",84.8,90.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Not vote in the presidential election","5fe26881-ae79-0264-2a9c-d350638467ac","43","2","8","1","1","2","2","1","17862","577","39","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly agree","Strongly disagree",15.2,9.59999999999999,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,43,0,"Republican",0,0,1.23680882931159 +1370,50,80.1,"True","Strongly agree","Definitely true","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly agree",75.7,75.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe268b4-e7b4-3d07-5650-f0a207b3ef32","74","1","-3105","1","1","6","1","1","12401","501","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure","No, false",50,80.1,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",24.3,24.8,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",6,74,0,"Democrat",0,0,0.678727196044171 +1371,65.9,60.1,"True","Strongly disagree","Probably true","Definitely true","Definitely false","Definitely true","Strongly disagree","Somewhat agree",78.4,75.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe26869-393e-ac6d-64f1-e162f0948871","44","2","24","1","1","5","1","1","10013","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure",65.9,60.1,"True","Strongly disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat agree",21.6,24.9,"Strongly disagree","Disagree","Strongly disagree","Strongly agree","Agree","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure",5,44,0,"Democrat",1,0,0.484792339820778 +1372,90.5,69.9,"True","Agree","Probably true","Probably true","Probably false","Definitely false","Somewhat agree","Somewhat agree",60.8,38.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe26996-d3ed-c97f-6d43-29310356ba02","38","1","13","1","2","8","1","1","10001","501","33","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure",9.5,69.9,"True","Agree","Probably false","Probably false","Probably false","Definitely false","Somewhat disagree","Somewhat agree",60.8,38.3,"Disagree","Strongly disagree","Disagree","Strongly agree","Disagree","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure",8,38,1,"Democrat",0,0,1.12340072610931 +1373,50,80.4,"True","Disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly agree",75.7,85.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe2689e-30b6-751b-0fee-a8ad42096383","68","2","9","1","1","6","1","1","04236","500","20","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",50,80.4,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.3,14.5,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,68,0,"Democrat",0,0,0.543332857421717 +1374,85.4,90.5,"False","Disagree","Definitely true","Probably false","Definitely true","Definitely true","Somewhat disagree","Somewhat agree",74.3,70.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe2688b-1c44-b23d-01b5-060c0ff3ae7d","49","1","19","1","1","2","3","3","20175","511","47","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false",85.4,90.5,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",25.7,29.4,"Agree","Agree","Strongly disagree","Strongly disagree","Disagree","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Not sure","No, false","Not sure","Yes, true",2,49,0,"Independent",0,2,0.747484873742735 +1375,32.7,15.1,"True","Disagree","Probably true","Probably true","Not sure","Definitely false","Strongly agree","Strongly disagree",40,64.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Disagree","Not vote in the presidential election","5fe268d0-c4f8-af54-44de-4cd3a9edc021","44","2","1","1","1","4","1","2","54301","658","50","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true",67.3,84.9,"False","Agree","Probably false","Probably true","Not sure","Definitely true","Strongly agree","Strongly disagree",60,35.4,"Disagree","Strongly agree","Disagree","Neither agree nor disagree","Disagree","Not sure","No, false","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true",4,44,0,"Democrat",1,0,1.27928919042512 +1376,50,52.2,"Not sure","Agree","Not sure","Definitely false","Probably false","Definitely false","Slightly disagree","Strongly disagree",10.1,3.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe26935-0b98-2edb-02da-86a289b46001","67","2","2","1","1","4","2","3","75110","623","44","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true",50,47.8,"Not sure","Agree","Not sure","Definitely true","Probably false","Definitely true","Slightly disagree","Strongly disagree",89.9,96.4,"Disagree","Agree","Strongly agree","Disagree","Strongly agree","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Yes, true","No, false","No, false",4,67,0,"Republican",0,0,0.766530426783843 +1377,88.5,27.8,"False","Disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Somewhat agree",67.5,72,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe26959-4ad5-5030-9014-e91562bf3d5d","44","2","24","1","1","7","1","1","11022","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure",11.5,72.2,"True","Disagree","Definitely true","Probably false","Definitely false","Definitely true","Strongly agree","Somewhat disagree",32.5,28,"Disagree","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false","No, false","Not sure",7,44,0,"Democrat",0,0,0.484792339820778 +1378,99.9,0.1,"False","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",79.6,56.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe26af5-7e08-618b-d918-0dd8b4b049d9","36","1","24","1","1","7","1","1","10002","501","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true",0.0999999999999943,0.1,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.4,43.2,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",7,36,0,"Democrat",1,0,0.605598834997122 +1379,86.4,76.8,"True","Agree","Definitely false","Probably true","Definitely false","Probably true","Strongly disagree","Strongly disagree",87.1,70.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe269b5-6430-141f-d534-24cafa86d186","67","1","3","2","1","6","1","3","71671","693","4","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true",86.4,23.2,"False","Disagree","Definitely false","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",12.9,29.5,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Yes, true",6,67,0,"Democrat",0,1,0.84087702041167 +1380,0.1,99.9,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Probably true","Strongly agree","Strongly agree",60.6,10.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Not vote in the presidential election","5fe26b09-7a21-46c6-6839-d0b2215a02b8","40","1","19","1","1","5","3","1","13090","555","33","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","No, false","Not sure","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true",0.1,99.9,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Strongly disagree",60.6,10.1,"Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true",5,40,0,"Other",0,0,1.54501200745489 +1381,50,60,"Not sure","Disagree","Not sure","Probably true","Not sure","Probably true","Somewhat agree","Slightly disagree",38.6,25.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe26852-8c33-0499-3b6e-bd24e0ff3d67","62","2","-3105","1","1","2","2","3","73507","627","37","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure",50,40,"Not sure","Agree","Not sure","Probably true","Not sure","Probably true","Somewhat disagree","Slightly agree",38.6,25.9,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","No, false","Not sure",2,62,1,"Republican",0,1,0.879927333598919 +1382,88.2,75,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Somewhat agree",40.9,39.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe26b0c-21dd-fcc3-9ead-582ed542c108","38","1","19","2","1","8","2","1","10006","501","33","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure",88.2,75,"True","Agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly disagree","Somewhat agree",40.9,39.5,"Strongly disagree","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure",8,38,0,"Republican",1,0,1.17753073825834 +1383,75,75,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",74.9,84.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Disagree","Agree","Vote for the Republican Donald Trump","5fe2694d-8370-69ed-61ce-f37017794f3b","65","1","4","1","1","4","2","2","66048","616","17","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",75,75,"True","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",25.1,15.1,"Disagree","Agree","Agree","Disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,65,0,"Republican",0,2,1.04464351786682 +1384,50,74.9,"True","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",20,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe26a46-180c-d434-736f-40d482c5ca4d","70","1","-3105","15","1","7","4","4","91360","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","No, false","No, false",50,74.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20,25.1,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",7,70,0,"Other",1,2,0.691106313710623 +1385,50,29.8,"False","Strongly disagree","Probably false","Probably false","Probably true","Definitely true","Strongly disagree","Slightly agree",38.5,45.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe269c8-2c59-c159-03f1-72e8956ca802","62","1","22","1","1","8","3","1","11758","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false",50,29.8,"True","Strongly agree","Probably false","Probably true","Probably false","Definitely false","Strongly disagree","Slightly agree",38.5,45.6,"Strongly disagree","Strongly agree","Agree","Disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false",8,62,0,"Independent",0,1,1.15936282486158 +1386,50,80.2,"True","Disagree","Probably false","Probably false","Definitely false","Probably true","Slightly disagree","Slightly agree",63.3,21.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe268db-843c-242c-6275-21d7762b9750","39","1","9","15","1","7","3","2","48127","505","23","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",50,19.8,"False","Agree","Probably false","Probably false","Definitely false","Probably false","Slightly agree","Slightly disagree",63.3,21.8,"Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",7,39,0,"Republican",0,1,1.21976305104456 +1387,85.6,11.7,"False","Strongly agree","Definitely false","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",24.8,38.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe26999-fe43-51a5-f02e-937c8e40a1ee","68","1","13","1","1","3","1","3","75050","623","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",14.4,11.7,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.8,38.3,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",3,68,0,"Independent",0,0,0.643505067882763 +1388,25,50,"Not sure","Strongly disagree","Definitely false","Not sure","Probably true","Definitely true","Strongly disagree","Strongly disagree",5,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe26ad6-94a5-0297-071d-3f42228b10d0","51","1","12","1","1","6","3","2","47591","581","15","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure",25,50,"Not sure","Strongly agree","Definitely false","Not sure","Probably false","Definitely false","Strongly agree","Strongly agree",5,15,"Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","No, false","No, false","Not sure","Not sure",6,51,0,"Independent",0,3,1.2134406814044 +1389,73,91.6,"False","Strongly disagree","Probably true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",22.4,31.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe26b1a-4768-557d-20df-4c48180c2d11","75","1","15","1","1","6","1","3","30350","524","11","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false",27,8.40000000000001,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",22.4,31.8,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",6,75,0,"Democrat",0,1,0.643505067882763 +1390,71.4,30.7,"True","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly agree",8.8,4.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe26a71-9942-67a4-40ee-37072d821593","74","1","16","1","1","5","2","2","43701","596","36","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true",28.6,69.3,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.8,4.4,"Disagree","Strongly disagree","Disagree","Strongly disagree","Agree","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Yes, true",5,74,0,"Democrat",0,0,1.04464351786682 +1391,50,81,"False","Agree","Definitely true","Probably false","Definitely false","Definitely true","Strongly agree","Strongly disagree",43.2,34.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe26981-5068-3a3f-c5aa-6da57b583396","68","1","24","1","1","6","1","3","34119","571","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","Not sure","No, false",50,81,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",43.2,34.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false",6,68,0,"Democrat",0,0,0.643505067882763 +1392,43.8,50.1,"False","Disagree","Definitely true","Probably true","Probably true","Definitely false","Strongly agree","Strongly disagree",12.6,23.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe268b2-95c6-b60a-8b46-c34add66a2f6","75","1","-3105","1","1","6","3","4","87123","790","32","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Not sure","Yes, true","No, false",43.8,50.1,"False","Disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",12.6,23.3,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",6,75,0,"Independent",0,1,0.905456100816435 +1393,90.9,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",40.1,12.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe26928-6f8f-e4e9-c01b-edbb79573c96","69","2","6","1","1","6","3","2","63640","632","26","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false",9.09999999999999,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",40.1,12.2,"Disagree","Disagree","Disagree","Disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Not sure","No, false",6,69,0,"Independent",0,0,0.83625520070175 +1394,50,49.7,"Not sure","Strongly disagree","Not sure","Definitely true","Definitely true","Definitely true","Strongly agree","Somewhat disagree",77.7,95.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe269f1-bf70-1ec5-36d1-4cf160067587","73","1","20","1","1","6","3","3","28384","570","34","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure",50,50.3,"Not sure","Strongly agree","Not sure","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat agree",22.3,4.59999999999999,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure",6,73,1,"Independent",0,0,0.957543870478141 +1395,50,59.4,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",90.3,70.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe269ec-966d-d5d4-9191-0f6c4d700a6a","81","1","10","1","1","6","2","3","70458","622","19","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Not sure",50,59.4,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",9.7,29.2,"Disagree","Disagree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Not sure",6,81,0,"Republican",0,2,0.957543870478141 +1396,78.1,30.1,"True","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely false","Slightly disagree","Strongly disagree",20.9,12.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe26a8f-d09d-c61b-7f72-9d74bd4696e0","72","1","-3105","1","1","5","4","3","76710","625","44","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","No, false",78.1,69.9,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",20.9,12.4,"Strongly disagree","Strongly agree","Agree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true",5,72,0,"Republican",0,0,0.957543870478141 +1397,99.9,0.1,"True","Strongly agree","Probably true","Probably false","Definitely true","Definitely true","Slightly agree","Strongly disagree",50.9,65.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe267eb-8275-423a-5612-f4b30082122b","43","1","1","15","1","5","3","3","21921","512","21","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false",0.0999999999999943,99.9,"False","Strongly agree","Probably true","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",50.9,65.7,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",5,43,0,"Independent",0,0,0.652117599957208 +1398,50,50,"False","Agree","Probably false","Probably true","Definitely false","Probably true","Strongly disagree","Strongly agree",25.3,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe26a04-6754-2b4c-ddbc-88763736679d","67","1","8","7","1","4","1","4","96701","744","12","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"False","Agree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",25.3,25.1,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,67,0,"Democrat",0,1,1.76315985336378 +1399,50,50,"Not sure","Neither agree nor disagree","Not sure","Probably false","Probably false","Probably true","Somewhat disagree","Slightly agree",50.1,76.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe26d05-f268-33f0-cd02-023d9342c19f","40","1","-3105","16","2","2","4","4","93307","800","5","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","Yes, true",50,50,"Not sure","Neither agree nor disagree","Not sure","Probably false","Probably false","Probably true","Somewhat agree","Slightly agree",50.1,76.4,"Neither agree nor disagree","Agree","Strongly agree","Agree","Neither agree nor disagree","Not sure","Not sure","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","No, false",2,40,0,"Other",1,0,2.91830807879805 +1400,50,50,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",33,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe26b09-6dcf-fb1b-54ea-b732e0e43d5a","50","1","23","1","1","8","3","4","93950","828","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",50,50,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",33,15,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",8,50,0,"Independent",0,2,1.05176287332933 +1401,50,27.4,"Not sure","Agree","Probably false","Probably false","Definitely false","Probably false","Somewhat disagree","Strongly disagree",75,95.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe2689f-26b1-90a8-b72b-d669c1c67bf5","39","1","-3105","1","1","1","2","4","95240","862","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,72.6,"Not sure","Agree","Probably false","Probably true","Definitely false","Probably true","Somewhat disagree","Strongly disagree",25,4.7,"Agree","Agree","Disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",1,39,0,"Republican",0,0,1.20216446936721 +1402,99.9,83.3,"True","Strongly disagree","Definitely false","Probably true","Definitely false","Probably true","Strongly disagree","Strongly agree",25.6,14.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly agree","Disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe26c83-009a-35eb-74db-7acbedc53dfb","35","1","5","6","1","3","3","4","91402","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure",99.9,83.3,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",25.6,14.3,"Strongly agree","Disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","No, false","Not sure","Not sure",3,35,0,"Independent",1,0,0.616644184705796 +1403,73.3,78.6,"True","Neither agree nor disagree","Not sure","Definitely false","Definitely false","Probably true","Slightly agree","Somewhat disagree",61.6,81.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe26c3f-e04c-0399-5221-7d7355e599d3","51","1","4","1","1","4","2","3","21502","511","21","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",73.3,21.4,"True","Neither agree nor disagree","Not sure","Definitely false","Definitely false","Probably false","Slightly agree","Somewhat disagree",38.4,18.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,51,0,"Republican",0,0,1.11226716750253 +1404,64.2,94.5,"False","Strongly agree","Definitely true","Probably false","Definitely true","Probably true","Strongly agree","Strongly agree",6.9,5.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe26b27-045a-1eb6-bd5b-78d87bb2a299","71","1","-3105","1","1","6","3","1","19422","504","39","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","Not sure","Not sure",35.8,94.5,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",6.9,5.3,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",6,71,0,"Independent",0,0,0.678727196044171 +1405,50,50,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Strongly agree",16.6,34.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe26a8b-1607-c731-1a35-e4cf0f3c38f1","72","1","4","1","1","2","1","4","85032","753","3","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true",50,50,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",16.6,34.7,"Disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",2,72,0,"Democrat",0,0,0.905456100816435 +1406,44.3,78.7,"False","Strongly agree","Probably false","Not sure","Definitely false","Probably false","Strongly agree","Strongly agree",33.8,14.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly agree","Disagree","Not vote in the presidential election","5fe26c0c-bf4f-47f9-d594-ce4f87e4dcb9","56","1","16","2","1","4","3","3","77028","618","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",44.3,78.7,"False","Strongly disagree","Probably false","Not sure","Definitely false","Probably false","Strongly agree","Strongly disagree",33.8,14.2,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",4,56,0,"Independent",0,0,2.46261614434084 +1407,50,50,"Not sure","Disagree","Probably false","Not sure","Definitely false","Definitely false","Slightly agree","Strongly disagree",89.8,80,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Strongly agree","Disagree","Not vote in the presidential election","5fe26a65-1903-3cc7-1473-59b6b0b908a3","68","1","20","1","1","6","3","2","65737","619","26","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false",50,50,"Not sure","Disagree","Probably false","Not sure","Definitely false","Definitely true","Slightly disagree","Strongly disagree",10.2,20,"Disagree","Disagree","Disagree","Strongly disagree","Agree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true",6,68,0,"Independent",0,1,1.79105215537822 +1408,70.1,62.3,"True","Strongly disagree","Definitely true","Not sure","Probably true","Probably false","Strongly agree","Strongly agree",100,60.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe26a76-05eb-55f8-056f-7f9d9ad6cd86","40","1","22","1","1","8","2","3","38501","659","43","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true",70.1,62.3,"True","Strongly disagree","Definitely true","Not sure","Probably true","Probably true","Strongly disagree","Strongly disagree",100,60.3,"Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Strongly agree","No, false","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true",8,40,0,"Republican",0,0,0.854374859000727 +1409,99.9,92.9,"False","Disagree","","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",40.2,25,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","","Vote for a different candidate","5fe26a3b-299a-a9c9-33b8-77c538cfeb2e","65","1","6","1","2","1","1","3","77093","618","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","","Not sure","Yes, true",0.0999999999999943,7.09999999999999,"True","Disagree","","Probably true","Probably true","Probably false","Somewhat agree","Somewhat disagree",40.2,25,"Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","","Not sure","No, false",1,65,0,"Democrat",0,0,0.671442435670783 +1410,0.1,31.3,"True","Disagree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Somewhat agree",2.4,4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe26b4b-0298-2f1b-1a27-16215217a4a2","38","1","20","1","1","6","3","3","21218","512","21","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false",0.1,31.3,"False","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",2.4,4,"Agree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true",6,38,0,"Independent",0,0,0.574171657914799 +1411,50,90,"False","Disagree","Definitely false","Not sure","Definitely false","Definitely true","Slightly disagree","Strongly disagree",81,60.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe268b3-5ec6-af1b-4431-9469f85f6c40","59","2","20","1","1","2","4","3","77505","618","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","No, false",50,10,"True","Agree","Definitely false","Not sure","Definitely false","Definitely false","Slightly agree","Strongly disagree",19,39.9,"Disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","No, false",2,59,0,"Republican",0,0,0.879927333598919 +1412,50,70.2,"True","Disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",89.7,89.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe26b45-6086-765b-2d46-98a5f4ed5386","63","1","-3105","1","1","7","1","2","49083","563","23","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",50,70.2,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.3,10.3,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",7,63,0,"Democrat",0,3,0.805895656010846 +1413,99.9,99.9,"True","Agree","Definitely true","Definitely false","Probably true","Probably true","Somewhat agree","Slightly disagree",40.2,74.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Agree","Agree","Not vote in the presidential election","5fe26bfb-9f9b-cc5a-22a1-c06b5ac4ac28","43","1","3","1","1","4","3","3","73068","650","37","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",99.9,99.9,"True","Disagree","Definitely false","Definitely false","Probably true","Probably false","Somewhat agree","Slightly agree",40.2,74.9,"Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Agree","Not sure","No, false","Yes, true","","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false",4,43,0,"Independent",0,0,1.4648345646551 +1414,39.7,15.5,"False","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",75.5,75.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe26aae-ce1f-6962-7799-f554a3c3f7a0","79","1","7","1","1","5","3","1","undefined","537","20","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","No, false",39.7,84.5,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.5,24.3,"Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",5,79,0,"Independent",0,0,0.678727196044171 +1415,13.3,30.3,"False","Agree","Definitely true","Probably false","Definitely true","Definitely true","Slightly agree","Strongly agree",75.2,51.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe26b93-0469-46ca-13d6-8b9c7f99fd79","82","1","19","1","1","6","2","3","22554","511","47","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Not sure",13.3,30.3,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",24.8,48.9,"Disagree","Strongly disagree","Disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure",6,82,0,"Republican",0,0,0.957543870478141 +1416,50,99.9,"Not sure","Strongly disagree","Probably true","Definitely false","Definitely true","Probably true","Strongly agree","Somewhat disagree",79.6,93.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Agree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe26ba2-a151-1877-b127-ce4843092d27","56","1","4","1","1","2","2","2","46360","602","15","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true",50,99.9,"Not sure","Strongly agree","Probably false","Definitely true","Definitely true","Probably true","Strongly disagree","Somewhat agree",20.4,6.7,"Strongly disagree","Neither agree nor disagree","Agree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",2,56,0,"Republican",0,0,1.19918316758111 +1417,50,65,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",80,70,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe26ad3-b9a4-eb09-71f5-bad9e7b77241","74","1","6","1","1","5","3","3","34669","539","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,35,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",20,30,"Disagree","Strongly disagree","Agree","Strongly disagree","Disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,74,0,"Independent",0,2,0.643505067882763 +1418,50,50,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Probably true","Probably true","Strongly agree","Slightly agree",76.3,64.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe26bce-7ba1-e735-80b8-a44da891ba2b","67","1","6","1","14","2","3","3","76067","623","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false",50,50,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Probably false","Probably true","Strongly disagree","Slightly agree",23.7,35.7,"Neither agree nor disagree","Agree","Agree","Strongly agree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",2,67,1,"Independent",0,0,1.77626741864815 +1419,86.5,86,"True","Agree","Probably true","Probably false","Definitely false","Definitely true","Strongly disagree","Somewhat agree",22.8,17.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe26c75-8fbc-74e2-023c-6d165c1fea61","44","1","21","1","1","7","3","1","10014","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",86.5,14,"False","Agree","Probably true","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat agree",22.8,17.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",7,44,0,"Democrat",0,1,0.605598834997122 +1420,90,80,"True","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",70,85,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe26ce0-5af6-9943-dcf2-2dd27ad1af85","35","1","5","1","1","6","1","1","02382","506","22","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true",10,20,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",30,15,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,35,0,"Democrat",1,1,0.605598834997122 +1421,69.9,68.2,"True","Disagree","Not sure","Probably false","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",76,53.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly disagree","Disagree","","5fe26afb-4b49-290f-78ce-8af9aef25713","70","1","11","1","1","4","2","3","36545","686","1","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true",69.9,31.8,"True","Agree","Not sure","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",24,46.3,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","No, false","Yes, true",4,70,0,"Republican",0,0,1.64171890578631 +1422,50,50,"Not sure","Strongly disagree","Definitely true","Probably true","Definitely false","Probably false","Strongly disagree","Strongly agree",80.4,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Not vote in the presidential election","5fe268ec-5c4e-3580-620b-020138f49ecf","40","2","-3105","3","1","7","4","3","79410","651","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",50,50,"Not sure","Strongly agree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Strongly disagree",19.6,9.90000000000001,"Agree","Neither agree nor disagree","Agree","Disagree","Disagree","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false",7,40,0,"Other",1,2,0.895028281036581 +1423,33,67.8,"False","Disagree","Probably true","Probably false","Definitely true","Definitely false","Somewhat agree","Somewhat agree",68.4,84.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe26b74-cd92-97fb-3a9d-4a592af7422d","73","1","20","1","1","4","2","3","30513","524","11","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false",33,32.2,"True","Disagree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",31.6,15.4,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false",4,73,0,"Republican",0,1,0.957543870478141 +1424,51.2,54.7,"Not sure","Disagree","Probably false","Probably false","Probably true","Definitely false","Strongly disagree","Somewhat agree",36.1,22.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe26d0a-efd4-8040-a900-2fae63f4dfa8","68","1","5","1","1","5","1","4","81082","752","6","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",48.8,54.7,"Not sure","Agree","Probably false","Probably true","Probably true","Definitely false","Strongly agree","Somewhat disagree",36.1,22.4,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",5,68,0,"Democrat",0,0,0.905456100816435 +1425,92.9,50,"True","Strongly disagree","Probably true","Probably false","Definitely true","Definitely false","Somewhat agree","Somewhat disagree",75.2,75.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe268bb-ab25-d49a-c930-f101865b6625","72","2","1","1","1","5","3","2","48066","505","23","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure",7.09999999999999,50,"False","Strongly agree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",24.8,24.9,"Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false","Not sure","Not sure",5,72,1,"Independent",0,3,0.83625520070175 +1426,50,90.3,"False","Agree","Definitely false","Probably false","Definitely false","Definitely true","Strongly agree","Strongly disagree",90.1,92.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe26c7b-134d-63b6-834a-a0788c7b0b30","77","1","17","1","1","7","3","4","93960","828","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,9.7,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",9.90000000000001,7.90000000000001,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","No, false","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,77,0,"Independent",0,1,0.509301017792404 +1427,50,34.1,"True","Strongly disagree","Probably true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",60.5,67.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe26c52-22dc-a703-e7f4-1061efd6bdb3","70","1","7","1","1","2","1","1","01075","543","22","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure",50,65.9,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",39.5,32.7,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","No, false","Not sure","Not sure",2,70,0,"Democrat",0,2,0.678727196044171 +1428,50,99.9,"True","Disagree","Definitely true","Not sure","Definitely true","Definitely true","Strongly agree","Strongly agree",25,25.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe26c88-1273-180e-97ef-046a739284fb","68","1","9","1","1","7","1","2","48072","505","23","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure",50,0.0999999999999943,"False","Disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly disagree",25,25.7,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure",7,68,0,"Democrat",0,0,0.702039267968476 +1429,50,37.2,"False","Agree","Probably false","Probably false","Probably false","Probably true","Slightly disagree","Slightly disagree",31.1,48.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe26c32-d95d-c265-bcd5-0cbd99d2e7c1","80","1","15","1","1","-3105","1","3","71909","693","4","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false",50,62.8,"True","Agree","Probably false","Probably true","Probably false","Probably false","Slightly agree","Slightly disagree",31.1,48.7,"Disagree","Agree","Agree","Disagree","Agree","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","No, false",-3105,80,0,"Democrat",0,0,0.643505067882763 +1430,50,50,"True","Disagree","","","Probably true","Probably true","Strongly disagree","Strongly agree",0,90.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe26c1c-44ae-3a14-9f89-89b974555250","75","1","8","1","1","6","2","3","33884","539","10","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true",50,50,"True","Agree","","","Probably true","Probably false","Strongly agree","Strongly disagree",100,9.09999999999999,"Strongly agree","Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true",6,75,0,"Republican",0,1,0.957543870478141 +1431,50,50,"Not sure","Agree","Definitely true","Not sure","Definitely false","Definitely false","Strongly agree","Somewhat agree",75.6,63.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe268e3-5086-4d4d-b6aa-702f5a6cbaec","66","1","-3105","1","1","1","4","3","27565","560","34","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",50,50,"Not sure","Agree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Somewhat disagree",24.4,36.1,"Disagree","Disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",1,66,0,"Independent",0,0,0.957543870478141 +1432,68.1,99.9,"False","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly disagree",77.7,94.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe26c57-3e8b-28a4-349e-827b95c07398","69","1","6","1","1","5","2","4","83704","757","13","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",68.1,0.0999999999999943,"True","Strongly agree","Definitely true","Definitely true","Probably false","Definitely false","Strongly disagree","Strongly disagree",22.3,5.8,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","No, false","Yes, true","Yes, true",5,69,1,"Republican",0,1,1.34733039815278 +1433,48.7,53.6,"True","Strongly disagree","Definitely false","Probably true","Probably true","Definitely false","Slightly disagree","Strongly agree",76.8,70.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe26d4d-b562-176b-7e42-c6f7b75ee980","73","1","-3105","1","1","7","3","3","32829","534","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false",48.7,53.6,"True","Strongly agree","Definitely false","Probably true","Probably false","Definitely false","Slightly agree","Strongly disagree",23.2,29.1,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",7,73,1,"Independent",0,1,0.957543870478141 +1434,50,63.1,"False","Strongly disagree","Definitely false","Probably false","Definitely true","Definitely false","Slightly agree","Strongly agree",68,96.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe268f5-4e35-6e85-b73a-0d6a866ec5b2","44","2","15","1","1","5","2","4","82007","759","51","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",50,36.9,"True","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Slightly agree","Strongly disagree",32,3.2,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",5,44,0,"Republican",0,2,0.962353446331682 +1435,50,30.7,"True","Disagree","Probably true","Probably true","Probably false","Probably true","Strongly disagree","Strongly disagree",22.7,24.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe26aae-ae1f-629e-122f-726562a3df9e","66","1","14","2","1","5","3","1","01201","532","22","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",50,69.3,"True","Agree","Probably false","Probably true","Probably true","Probably false","Strongly disagree","Strongly disagree",22.7,24.4,"Strongly disagree","Agree","Agree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",5,66,1,"Independent",0,2,1.31972205038622 +1436,50,99.9,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",80.2,80.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe26913-ad03-94b5-b080-ab48b71be1a9","67","2","-3105","1","1","5","4","4","82501","767","51","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","No, false",50,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.8,19.7,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",5,67,0,"Other",0,1,1.84920451514596 +1437,50,50,"True","Strongly disagree","Probably false","Probably true","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",85,91.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","","Disagree","Agree","Neither agree nor disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe26d55-21ff-1b84-e4c4-10264308f846","73","1","13","1","1","4","2","3","73505","627","37","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"False","Strongly agree","Probably false","Probably true","Probably true","Definitely false","Somewhat agree","Somewhat disagree",15,8.3,"Agree","Disagree","Neither agree nor disagree","Disagree","Agree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,73,0,"Republican",0,1,0.957543870478141 +1438,73.7,71,"False","Disagree","Probably false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",29.2,36.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe26d89-2192-4bd6-c568-3d731808476d","67","1","5","1","14","6","2","2","63117","609","26","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","No, false",26.3,71,"False","Agree","Probably true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",29.2,36.6,"Neither agree nor disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,67,0,"Republican",0,0,1.30230010002708 +1439,82.9,81.6,"False","Disagree","Definitely false","Not sure","Definitely false","Definitely true","Somewhat agree","Strongly disagree",18.5,34.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe26ccb-d0ed-e543-02e3-fbd43e524e2e","82","1","20","1","1","7","2","2","46143","527","15","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",17.1,18.4,"True","Disagree","Definitely false","Not sure","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",18.5,34.3,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure",7,82,0,"Republican",0,0,1.04464351786682 +1440,50,75,"True","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably true","Strongly agree","Strongly agree",32.6,44.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe26c36-c1c1-0d49-a51e-910ab23843e6","71","1","5","1","1","4","3","3","28658","517","34","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true",50,25,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Strongly agree","Strongly disagree",32.6,44.9,"Neither agree nor disagree","Strongly agree","Strongly agree","Disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",4,71,1,"Independent",0,0,0.957543870478141 +1441,68.8,77.7,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely true","Somewhat disagree","Somewhat agree",67.2,44.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe2691d-a355-2b7f-aa5f-b27b5461b1d2","40","1","23","1","1","8","1","1","10001","501","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",31.2,77.7,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat agree",67.2,44.6,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Agree","Agree","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",8,40,0,"Democrat",0,0,0.605598834997122 +1442,99.9,50,"False","Agree","Probably true","Probably true","Definitely false","Probably true","Somewhat disagree","Strongly agree",75.2,62.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Disagree","Agree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe2477d-c85c-7c6b-92c3-8bb62ff90cd1","62","1","9","1","1","4","1","3","28159","517","34","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true",99.9,50,"True","Agree","Probably true","Probably true","Definitely false","Probably false","Somewhat disagree","Strongly disagree",24.8,37.3,"Neither agree nor disagree","Disagree","Agree","Agree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true",4,62,0,"Democrat",0,3,1.09919840793407 +1443,50,50,"True","Disagree","Not sure","Not sure","Probably true","Definitely true","Strongly agree","Somewhat agree",3.5,29.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe26b9a-80d8-d8c4-a9be-2758e7936f71","80","1","-3105","1","1","6","2","2","54235","658","50","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",50,50,"False","Disagree","Not sure","Not sure","Probably false","Definitely false","Strongly disagree","Somewhat agree",3.5,29.4,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",6,80,0,"Republican",0,0,1.04464351786682 +1444,50,25.1,"False","Agree","Probably true","Probably true","Probably true","Probably false","Somewhat disagree","Strongly agree",65,60.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe26d31-f661-c997-2c08-733dc034f8eb","68","1","15","1","1","1","3","3","79706","633","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true",50,74.9,"True","Agree","Probably true","Probably true","Probably false","Probably false","Somewhat agree","Strongly agree",65,60.1,"Disagree","Agree","Agree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","No, false","No, false",1,68,0,"Independent",0,2,0.957543870478141 +1445,91.3,70.4,"True","Agree","Probably true","Definitely true","Probably true","Definitely false","Somewhat agree","Slightly disagree",83.6,55.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe27cf4-4770-1753-e177-a1f0596e081a","22","1","9","1","1","4","1","4","87301","790","32","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",8.7,70.4,"False","Disagree","Probably false","Definitely false","Probably false","Definitely false","Somewhat disagree","Slightly agree",16.4,44.8,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","No, false","Not sure","No, false","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","No, false",4,22,0,"Republican",0,0,0.757991474994239 +1446,50,99.9,"False","Neither agree nor disagree","Probably true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",33.5,35.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe27cad-3cbb-b596-7ae3-d4653571cc2b","66","2","9","1","1","5","2","1","07869","501","31","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","","Not sure","Yes, true",50,99.9,"False","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",33.5,35.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Not sure","No, false","","Not sure","Yes, true",5,66,0,"Republican",0,0,0.80848632469251 +1447,50,99.9,"False","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",6.3,10.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe26909-e8fe-beb0-a131-0fdc01c0affc","64","2","16","1","1","4","1","1","02536","506","22","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure",50,0.0999999999999943,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",6.3,10.3,"Disagree","Agree","Disagree","Strongly disagree","Strongly disagree","No, false","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure",4,64,0,"Democrat",0,1,0.623710965386887 +1448,59.8,43.1,"True","Disagree","Definitely false","Definitely true","Definitely false","Definitely true","Somewhat disagree","Somewhat disagree",7.1,4.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Disagree","Disagree","Disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe27d9e-5abe-00ff-9bec-d4cec105fff9","38","2","14","1","1","7","2","2","45440","542","36","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false",40.2,43.1,"False","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",7.1,4.1,"Agree","Agree","Agree","Agree","Agree","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false",7,38,1,"Republican",0,0,0.746154240255765 +1449,72.5,94.5,"True","Strongly agree","Probably false","Probably true","Definitely true","Definitely false","Strongly agree","Strongly agree",82.7,74,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe27ccb-00fc-4561-f5ae-bf91c3c90e8c","39","1","18","1","1","7","1","1","06051","533","7","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",72.5,94.5,"False","Strongly agree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.3,26,"Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false",7,39,0,"Democrat",0,0,0.605598834997122 +1450,78.2,88.2,"False","Strongly agree","Probably false","Definitely true","Probably true","Probably false","Strongly agree","Strongly agree",62.6,85.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly agree","Disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe27dee-cf9b-72fe-2de9-206dc5b350c8","58","2","9","15","2","4","1","3","79720","633","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","No, false",78.2,11.8,"True","Strongly disagree","Probably false","Definitely false","Probably false","Probably true","Strongly agree","Strongly disagree",62.6,85.4,"Agree","Strongly agree","Strongly disagree","Agree","Strongly disagree","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",4,58,0,"Democrat",1,0,0.837273276702846 +1451,99.9,0.9,"True","Agree","Probably true","Definitely false","Definitely false","Definitely false","Strongly disagree","Slightly disagree",20.4,10.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe26897-c9bf-afa4-4d14-59399bc217f4","70","2","3","1","1","4","2","3","77831","618","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true",0.0999999999999943,0.9,"True","Agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Slightly disagree",20.4,10.7,"Agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true",4,70,0,"Republican",0,0,0.766530426783843 +1452,73.7,49.9,"False","Agree","Definitely true","Definitely true","Definitely true","Definitely false","Somewhat agree","Slightly agree",37,15.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe27e3c-9a29-d0b0-3415-39b9c4c82407","46","1","19","1","1","7","2","3","29466","519","41","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure",26.3,49.9,"True","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Slightly disagree",37,15.8,"Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Agree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure",7,46,0,"Republican",0,0,1.11226716750253 +1453,82.7,92.8,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably true","Strongly agree","Somewhat agree",49,51.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe27e6a-fad1-f5a3-4859-debbe11be03a","44","2","2","2","1","6","1","3","27406","518","34","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",17.3,7.2,"False","Neither agree nor disagree","Probably true","Probably false","Probably false","Probably false","Strongly agree","Somewhat disagree",49,51.4,"Agree","Neither agree nor disagree","Disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false",6,44,0,"Democrat",0,0,0.600610584934286 +1454,50,66.7,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",89.8,80,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe27f2f-59c5-1300-a812-8f577221d0fb","43","2","5","15","2","6","1","4","87557","790","32","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","No, false","No, false",50,66.7,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.2,20,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","No, false","No, false","Yes, true",6,43,0,"Democrat",1,0,0.915703823020089 +1455,96.5,84.9,"","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",76.8,88.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe27fd9-f7fb-e38f-9344-fe2b1f9c16d2","50","1","11","5","1","6","1","4","98444","819","48","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","Not sure","Yes, true",3.5,15.1,"","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.2,11.6,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",6,50,0,"Democrat",0,0,0.802777695825244 +1456,49.9,77.9,"True","Neither agree nor disagree","Probably false","Definitely false","Probably true","Definitely false","Strongly agree","Slightly disagree",51.6,23.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not vote in the presidential election","5fe27edb-ff19-204c-88db-2dd2f78e7fdc","39","2","1","1","1","4","3","3","26143","564","49","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,77.9,"True","Neither agree nor disagree","Probably true","Definitely true","Probably false","Definitely true","Strongly agree","Slightly agree",48.4,76.8,"Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,39,1,"Independent",0,0,1.17262539987032 +1457,22.1,79.5,"Not sure","Strongly disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",50.2,52.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe27ff3-564a-9e48-153b-6b2cf705ff88","48","1","3","4","2","6","1","3","32826","534","10","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false","No, false","Yes, true",22.1,20.5,"Not sure","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.2,52.7,"Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly agree","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true",6,48,0,"Democrat",0,0,1.05835054821506 +1458,48.9,64,"True","Strongly agree","Definitely false","Probably true","Probably false","Probably true","Strongly agree","Strongly disagree",22.8,24.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Strongly disagree","Neither agree nor disagree","Disagree","Agree","Not vote in the presidential election","5fe28063-e38c-7a73-540b-c7321ef2c1e8","46","1","21","15","2","4","2","4","91320","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure",51.1,36,"True","Strongly disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",22.8,24.7,"Strongly agree","Strongly agree","Neither agree nor disagree","Disagree","Agree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure",4,46,0,"Independent",0,0,3.79919683556804 +1459,77.6,89.5,"Not sure","Agree","Definitely true","Probably false","Definitely false","Definitely false","Slightly agree","Slightly agree",57.2,65.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe27edc-2367-d60b-e50d-2b842ab1e64a","66","2","5","1","1","5","2","3","29575","570","41","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",22.4,10.5,"Not sure","Agree","Definitely false","Probably true","Definitely false","Definitely false","Slightly disagree","Slightly agree",42.8,34.9,"Disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false",5,66,0,"Republican",0,0,0.766530426783843 +1460,91.5,90,"False","Agree","Definitely false","Probably false","Probably true","Definitely true","Strongly agree","Strongly agree",8,27.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe27f43-e7a6-d051-4f7f-af42e776cdb8","45","2","7","1","1","6","1","2","63303","609","26","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",91.5,90,"False","Disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",8,27.8,"Strongly agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",6,45,0,"Democrat",0,1,0.65280362851795 +1461,74,89.2,"False","Agree","Definitely true","Probably true","Probably false","Probably true","Somewhat agree","Slightly disagree",40.2,28.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe27f31-0ce3-332a-9f3c-b2dad51b6186","55","2","8","1","1","6","1","2","44203","510","36","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false",26,10.8,"False","Disagree","Definitely false","Probably false","Probably false","Probably false","Somewhat agree","Slightly disagree",40.2,28.1,"Disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true",6,55,0,"Democrat",0,0,0.645133408704056 +1462,84.8,88,"False","Strongly disagree","Definitely true","Definitely false","Definitely true","Probably false","Somewhat agree","Slightly agree",60.9,72.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Agree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe27e9b-9667-2849-158d-ecffe61c2454","57","2","1","1","1","4","2","3","30439","507","11","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure",15.2,88,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Probably false","Somewhat agree","Slightly agree",39.1,27.5,"Disagree","Agree","Strongly agree","Strongly agree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure",4,57,1,"Republican",0,0,0.879927333598919 +1463,79.2,83.5,"True","Disagree","Probably false","Definitely false","Probably true","Probably false","Slightly agree","Slightly disagree",55.7,68.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Neither agree nor disagree","Disagree","Disagree","Vote for a different candidate","5fe2815d-6278-9331-f057-2172b48bb44f","35","2","10","1","1","6","2","3","37388","659","43","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true",79.2,16.5,"False","Agree","Probably true","Definitely true","Probably true","Probably true","Slightly disagree","Slightly disagree",55.7,68.6,"Strongly disagree","Agree","Neither agree nor disagree","Disagree","Agree","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true",6,35,0,"Independent",0,0,0.258535159824144 +1464,50,84.9,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",5.8,5.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe27e7f-1712-0165-3a58-5599766cf1ed","26","2","9","1","1","2","3","4","59714","754","27","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure",50,84.9,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",5.8,5.4,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure",2,26,0,"Other",0,2,0.659676306910243 +1465,50,77.8,"True","Agree","Definitely false","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",20.2,15.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe27e80-b414-fa55-9bcc-d3e88a8659c1","68","2","9","1","1","3","2","3","42347","649","18","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false",50,22.2,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",20.2,15.7,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","No, false","No, false",3,68,0,"Republican",0,0,0.766530426783843 +1466,72.7,96.4,"True","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",80.6,77.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe27eea-1afa-ea90-64cf-1e73a54454f0","59","2","12","1","1","2","1","1","14031","514","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false",27.3,3.59999999999999,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.4,22.8,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",2,59,0,"Democrat",0,1,0.623710965386887 +1467,65,68.5,"Not sure","Disagree","Not sure","Definitely true","Not sure","Probably false","Slightly agree","Slightly agree",53.8,51.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe28022-f8da-b310-873f-9e0ac8e2f8c7","54","1","6","2","1","2","2","4","85022","753","3","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",65,68.5,"Not sure","Agree","Not sure","Definitely true","Not sure","Probably true","Slightly agree","Slightly agree",46.2,48.8,"Neither agree nor disagree","Disagree","Agree","Agree","Neither agree nor disagree","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,54,0,"Republican",0,0,2.04505530911414 +1468,49.9,49.9,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Definitely false","Definitely true","Strongly agree","Strongly agree",76.6,24.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe27fc2-4e37-1c6d-b080-d61fe9a544da","37","2","1","1","1","2","2","3","72764","670","4","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,49.9,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",76.6,24.3,"Disagree","Strongly disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,37,0,"Independent",0,0,1.17262539987032 +1469,49.8,34.6,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Probably false","Not sure","Strongly disagree","Strongly agree",48.8,49.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Disagree","Strongly agree","Agree","Not vote in the presidential election","5fe27fb8-4ec9-e82e-47f8-3500dfda623b","37","2","1","1","1","2","1","3","22015","511","47","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true",49.8,65.4,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably false","Not sure","Strongly agree","Strongly disagree",51.2,50.5,"Neither agree nor disagree","Strongly disagree","Agree","Strongly disagree","Disagree","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",2,37,0,"Democrat",1,0,1.17262539987032 +1470,50.2,50,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Not sure","Probably true","Slightly agree","Strongly agree",43,41.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe2806d-8f73-c375-266f-a3e8f044a520","20","2","-3105","16","1","2","4","1","03883","500","30","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.2,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Not sure","Probably true","Slightly disagree","Strongly disagree",43,41.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,20,0,"Other",0,0,0.885701092678788 +1471,79.3,17.6,"Not sure","Agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Strongly agree",79.4,88.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe2815f-b1e3-798a-8c64-6c3e1cbcbf18","49","2","4","1","1","2","2","3","27320","518","34","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true",20.7,17.6,"Not sure","Agree","Probably false","Probably false","Probably true","Probably true","Somewhat agree","Strongly disagree",20.6,11.8,"Disagree","Agree","Strongly agree","Disagree","Agree","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false",2,49,0,"Republican",0,0,0.890389101626892 +1472,85.1,43.8,"True","Disagree","Probably true","Probably false","Probably false","Definitely true","Slightly agree","Somewhat disagree",86.5,74.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe2812f-81bb-9ab3-37e3-13ace763e765","49","1","14","1","1","6","2","3","40353","541","18","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true",14.9,56.2,"True","Agree","Probably true","Probably true","Probably false","Definitely false","Slightly disagree","Somewhat agree",13.5,25.6,"Disagree","Disagree","Agree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false",6,49,0,"Republican",0,1,1.11226716750253 +1473,50.1,99.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",100,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe27f17-9c69-7997-d947-63e19525f8d6","36","2","3","2","1","6","1","3","23606","544","47","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","Not sure","No, false","No, false","Yes, true","No, false",50.1,0.0999999999999943,"False","Agree","Definitely true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",0,0,"Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Agree","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","No, false",6,36,0,"Democrat",0,0,0.600610584934286 +1474,50.8,80.5,"True","Strongly agree","Definitely true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",20.1,24.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe27fbd-9713-564f-68a1-647c7be9098f","68","1","4","1","1","7","1","1","02052","506","22","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure",50.8,80.5,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",20.1,24.3,"Disagree","Disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure",7,68,0,"Other",1,2,0.678727196044171 +1475,8.4,87.3,"Not sure","Strongly disagree","Probably false","Definitely true","Probably true","Definitely false","Slightly agree","Somewhat disagree",82.4,54.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe268c5-c347-c7ce-8d48-c98b37570a04","69","1","-3105","1","1","4","2","3","76021","623","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false",91.6,12.7,"Not sure","Strongly agree","Probably true","Definitely true","Probably true","Definitely true","Slightly disagree","Somewhat disagree",17.6,45.9,"Disagree","Agree","Strongly disagree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Not sure","Not sure","No, false",4,69,0,"Republican",0,0,0.957543870478141 +1476,99.9,99.2,"True","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",50.5,16.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe27dd2-dedf-611f-cff3-066555356286","57","2","1","1","1","2","1","4","89102","839","29","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",0.0999999999999943,99.2,"True","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",49.5,83.7,"Strongly agree","Strongly agree","Strongly disagree","Disagree","Disagree","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false",2,57,0,"Democrat",0,1,0.832061691423535 +1477,75,71.4,"True","Neither agree nor disagree","Probably false","Probably true","Definitely true","Probably true","Strongly agree","Somewhat disagree",86.8,9.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe281b7-4cca-1412-fc9d-8dc4f226f03f","21","2","2","2","1","2","1","3","35217","630","1","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",75,71.4,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Probably true","Strongly agree","Somewhat disagree",13.2,90.1,"Disagree","Agree","Disagree","Disagree","Agree","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true",2,21,0,"Democrat",0,0,0.563508049350613 +1478,51.2,13.1,"True","Neither agree nor disagree","Definitely true","Probably true","Definitely true","Definitely false","Strongly agree","Strongly agree",79.5,88.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe27d51-c19e-efda-5e48-d10b8ed28078","72","2","2","1","1","5","3","3","28210","517","34","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","No, false","Not sure","No, false",48.8,86.9,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly agree",20.5,11.1,"Disagree","Strongly agree","Agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","Not sure","Yes, true",5,72,1,"Independent",0,1,0.766530426783843 +1479,52.4,15.1,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",14.1,30.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe27e9c-14fd-c318-e563-b19f5021874b","53","2","1","15","1","4","3","1","19104","504","39","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",47.6,15.1,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",85.9,69.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,53,0,"Independent",0,0,0.71680425838166 +1480,35.6,99.9,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",60.1,60.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe27fa6-43ff-f8ae-5bbe-0392a641e2ec","70","2","14","1","1","5","1","3","34491","534","10","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true",35.6,99.9,"Not sure","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",39.9,39.2,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",5,70,0,"Democrat",0,1,0.515136934744757 +1481,52.3,98.2,"False","Agree","Definitely true","Probably true","Definitely true","Probably true","Slightly disagree","Strongly agree",78.8,77.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe27e32-6134-2f9c-f4f1-a504db2ebe85","37","2","4","2","1","2","1","3","35020","630","1","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true",52.3,98.2,"True","Agree","Definitely false","Probably false","Definitely false","Probably false","Slightly agree","Strongly disagree",21.2,22.4,"Neither agree nor disagree","Strongly agree","Strongly disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true",2,37,0,"Democrat",1,0,0.600610584934286 +1482,60,94.5,"Not sure","Strongly agree","Probably true","Probably false","Definitely true","Probably true","Strongly agree","Somewhat disagree",57.9,46,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe27eb8-160c-de1a-bc65-04661de1c797","37","2","13","4","1","4","2","4","95747","862","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",60,5.5,"Not sure","Strongly disagree","Probably false","Probably true","Definitely false","Probably false","Strongly disagree","Somewhat agree",42.1,54,"Disagree","Agree","Strongly agree","Neither agree nor disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true",4,37,1,"Republican",0,0,0.734534277455641 +1483,70.9,84.1,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",74.2,30.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe28166-0a00-9469-a741-47d1b912735b","53","2","3","1","1","2","1","2","43228","535","36","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Not sure","Not sure",70.9,84.1,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",74.2,30.3,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure",2,53,0,"Democrat",0,0,0.65280362851795 +1484,50,50,"True","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely true","Slightly agree","Strongly disagree",92.4,94.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe27f08-d373-0c1e-a4b9-a29c3820c398","66","2","5","1","1","5","1","1","16323","508","39","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false",50,50,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",7.59999999999999,5.5,"Disagree","Disagree","Strongly disagree","Disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",5,66,0,"Democrat",0,2,0.543332857421717 +1485,60.6,78.1,"False","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",82.7,75.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe28081-9e68-8531-43a8-c9f9e4190be0","70","1","9","1","1","5","3","1","14618","538","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",60.6,21.9,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.3,24.1,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false",5,70,0,"Independent",0,3,1.0099548530942 +1486,71.3,38.3,"False","Strongly disagree","Definitely true","Probably true","Definitely true","Probably false","Strongly disagree","Strongly disagree",77.9,76,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe2811e-1150-2519-3f20-ff148923da7d","60","2","11","1","1","2","2","2","49330","563","23","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",71.3,61.7,"True","Strongly agree","Definitely false","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",22.1,24,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false",2,60,1,"Republican",0,0,0.959966862697315 +1487,50,80,"False","Strongly disagree","Definitely false","Not sure","Definitely false","Not sure","Strongly agree","Strongly agree",90.1,80,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe28092-216a-115e-ed5f-d38f6ce0c225","25","2","6","1","1","2","4","3","78230","641","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true",50,80,"False","Strongly agree","Definitely false","Not sure","Definitely false","Not sure","Strongly agree","Strongly disagree",9.90000000000001,20,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",2,25,0,"Democrat",0,0,1.19608566751863 +1488,49.7,57.4,"False","Agree","Probably false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly agree",68.2,85.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe28031-c856-b661-85b3-1c26b916c152","59","2","19","1","1","4","2","2","50021","679","16","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure",49.7,42.6,"False","Agree","Probably true","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",31.8,14.4,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure",4,59,1,"Republican",0,0,0.959966862697315 +1489,52.3,73.9,"False","Agree","Definitely false","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",82.5,71.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe28026-f828-ccc9-9102-e9a5d1f12daf","37","2","8","1","1","2","1","2","48843","505","23","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure",52.3,26.1,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.5,28.7,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure",2,37,0,"Democrat",0,0,0.501443380121097 +1490,17.5,36.6,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Probably true","Strongly agree","Strongly agree",26.8,10.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2812b-80d5-72a6-c619-55218afce955","38","1","5","1","1","6","1","3","33917","571","10","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",17.5,63.4,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Probably false","Strongly disagree","Strongly disagree",26.8,10.4,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",6,38,0,"Democrat",1,0,0.574171657914799 +1491,54.2,55.8,"True","Disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",37.4,44.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe27ed2-c345-49cd-4de1-c9c4e656987e","20","2","3","1","1","5","1","4","80525","751","6","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",45.8,55.8,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",37.4,44.5,"Neither agree nor disagree","Disagree","Disagree","Disagree","Disagree","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",5,20,0,"Democrat",0,0,0.606785283410273 +1492,56.2,52.3,"False","Disagree","Definitely false","Not sure","Definitely false","Definitely true","Strongly agree","Strongly agree",64.3,32,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe28068-3efe-68cf-6f3b-786505db3a26","70","2","2","1","1","2","1","3","21236","512","21","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",56.2,47.7,"True","Disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.7,68,"Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,70,0,"Democrat",0,0,1.31422437374394 +1493,49.4,52.7,"","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely true","Slightly agree","Strongly disagree",14.1,18.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe28234-e51b-139e-fd37-e50da34683c0","38","2","12","1","1","2","2","2","55354","613","24","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",49.4,47.3,"","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Slightly disagree","Strongly disagree",14.1,18.7,"Strongly disagree","Strongly agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",2,38,1,"Republican",0,0,0.746154240255765 +1494,65.1,73.4,"True","Agree","Probably false","Probably false","Definitely true","Definitely true","Somewhat disagree","Somewhat disagree",90,90.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe28140-7b87-259a-e9fc-4076201445cc","54","2","20","1","1","6","2","2","63376","609","26","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true",65.1,26.6,"False","Agree","Probably true","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",10,9.40000000000001,"Disagree","Disagree","Agree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true",6,54,1,"Republican",0,2,0.971380249062987 +1495,64.5,72.6,"False","Agree","Not sure","Probably false","Probably true","Definitely false","Slightly agree","Somewhat agree",81.4,78,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe281e2-e0fa-406c-42fe-14fa0a0eb8a9","37","1","6","15","2","6","1","3","33328","528","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Not sure","No, false","Yes, true",64.5,72.6,"True","Agree","Not sure","Probably false","Probably false","Definitely false","Slightly disagree","Somewhat disagree",18.6,22,"Disagree","Neither agree nor disagree","Disagree","Agree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true",6,37,0,"Independent",0,0,0.812959446096867 +1496,73.3,62.5,"False","Disagree","Definitely false","Definitely true","Definitely true","Definitely true","Slightly agree","Slightly agree",84.9,80.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe2833a-bca2-e631-54bc-22d987eb2a9f","41","2","3","2","1","6","1","3","23607","544","47","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",73.3,37.5,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly disagree","Slightly disagree",15.1,19.6,"Disagree","Neither agree nor disagree","Strongly disagree","Disagree","Agree","Yes, true","No, false","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true",6,41,0,"Democrat",0,0,0.600610584934286 +1497,30.3,70.8,"True","Disagree","Probably false","Probably true","Probably false","Probably true","Slightly agree","Somewhat agree",52.7,35.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe28474-e0cd-99a0-f384-2817085631c3","19","2","1","1","1","2","4","3","24015","573","47","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true",69.7,70.8,"False","Agree","Probably false","Probably true","Probably false","Probably false","Slightly disagree","Somewhat agree",47.3,64.1,"Agree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true",2,19,0,"Independent",0,0,0.431240569961491 +1498,50,69.9,"False","Agree","Probably true","Definitely true","Not sure","Probably true","Strongly agree","Strongly disagree",51.4,50,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe282ce-6418-f559-db34-f59145f43655","53","2","5","1","1","6","2","3","22520","511","47","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false",50,30.1,"True","Disagree","Probably true","Definitely true","Not sure","Probably true","Strongly disagree","Strongly disagree",51.4,50,"Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",6,53,0,"Republican",0,0,0.890389101626892 +1499,59.7,94.1,"True","Agree","Definitely false","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly agree",82.6,89.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe28222-825b-ff55-afca-ab566356e01c","49","1","1","1","1","2","1","3","30135","524","11","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",40.3,5.90000000000001,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",17.4,10.4,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",2,49,0,"Democrat",0,0,0.747484873742735 +1500,49.9,0.1,"True","Strongly agree","Probably false","Probably true","Definitely false","Definitely true","Somewhat agree","Somewhat agree",17.2,26.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe282e1-ccc2-b2e0-6f98-f6d662f9da5b","60","2","6","1","1","4","2","2","65622","619","26","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","No, false",49.9,99.9,"False","Strongly agree","Probably true","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat agree",17.2,26.4,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","No, false",4,60,1,"Republican",0,0,0.959966862697315 +1501,60.6,70.1,"Not sure","Agree","Probably true","Not sure","Probably true","Not sure","Somewhat agree","Strongly agree",80.5,74.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for a different candidate","5fe2808c-25a6-cec1-c485-a1a3cbc0bfb8","40","2","9","15","1","6","1","3","27617","560","34","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true",39.4,29.9,"Not sure","Disagree","Probably false","Not sure","Probably false","Not sure","Somewhat agree","Strongly disagree",19.5,25.4,"Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true",6,40,0,"Other",0,0,0.197331798979036 +1502,77,77.7,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",85.3,72.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe28398-cfde-7446-1326-d82619dd9c09","37","2","9","1","1","7","1","2","63501","631","26","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","No, false","Not sure","Not sure",77,77.7,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.7,27.5,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure",7,37,0,"Independent",0,3,0.501443380121097 +1503,73,96.6,"False","Strongly disagree","Definitely true","Probably false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",60.4,80.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe282b5-2319-bcf6-998e-944b42ab9978","67","2","11","3","1","5","1","1","02152","506","22","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",73,3.40000000000001,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",39.6,19.9,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",5,67,0,"Democrat",0,0,0.414708971392428 +1504,76.5,69.4,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",26.9,75.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe282df-763b-f167-280e-00920b7699dc","37","2","5","3","1","4","1","3","73132","650","37","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",76.5,69.4,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",26.9,75.4,"Agree","Agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false",4,37,0,"Democrat",1,0,0.350824512476196 +1505,56.7,74.9,"False","Agree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",5.2,12.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe2845a-ed47-11e8-a7c9-f100cabe5452","36","1","9","15","1","4","3","3","40336","541","18","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Not sure","Yes, true",56.7,74.9,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",5.2,12.5,"Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false",4,36,0,"Independent",0,2,0.246505354465316 +1506,10.3,37.5,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Slightly disagree","Slightly disagree",57.4,54.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe2843d-be6f-ca4c-3922-d61a4a2acd7c","35","2","6","1","1","2","2","2","65669","619","26","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure",10.3,62.5,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Slightly disagree","Slightly disagree",42.6,45.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure",2,35,0,"Other",0,0,0.746154240255765 +1507,29.1,83.8,"False","Strongly disagree","Definitely false","Definitely false","Probably true","Probably true","Strongly agree","Strongly agree",28.2,21.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe2816d-1593-9be5-8f79-7047416e0fc4","69","1","5","1","1","4","1","4","80812","751","6","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",29.1,83.8,"False","Strongly disagree","Definitely true","Definitely false","Probably false","Probably false","Strongly agree","Strongly disagree",28.2,21.8,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",4,69,0,"Democrat",0,0,0.905456100816435 +1508,50,99.9,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",24.9,25.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe27edb-58b5-7c43-73a5-8609ee7c03af","46","2","6","1","1","6","1","4","89431","811","29","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false",50,99.9,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.9,25.2,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",6,46,0,"Democrat",1,0,0.841954367861977 +1509,50,76.7,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely true","Strongly disagree","Strongly agree",63.9,66.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe28395-9e8f-9f28-c96c-c88542e6763a","59","2","5","1","1","2","1","3","26335","564","49","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",50,76.7,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",36.1,33.5,"Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",2,59,0,"Democrat",0,0,0.59134387049726 +1510,51.3,50,"Not sure","Disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly disagree",76.3,49.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe28194-0bd5-ad0f-cf29-eb79cfe600e5","53","2","6","1","1","7","4","2","44432","536","36","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",51.3,50,"Not sure","Agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.7,50.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false",7,53,0,"Independent",0,0,1.66544152049953 +1511,50,67.9,"True","Strongly agree","Probably true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",31.4,28.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe28424-5b61-eff4-432e-a092369b703e","35","1","7","1","1","5","1","3","29579","570","41","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure",50,67.9,"False","Strongly disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",31.4,28.7,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure",5,35,0,"Democrat",1,0,1.4648345646551 +1512,99.9,99.9,"False","Agree","Probably true","Probably false","Definitely false","Definitely true","Strongly agree","Strongly disagree",25.5,12.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe282df-b3bd-e0dd-5663-f13cffc9ca06","62","2","1","2","1","6","1","3","29574","570","41","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",0.0999999999999943,99.9,"True","Disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.5,12.5,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",6,62,0,"Democrat",0,0,0.772717258464593 +1513,50,50,"Not sure","Disagree","Probably true","Probably false","Definitely false","Probably false","Somewhat agree","Strongly agree",24.9,39,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly disagree","Neither agree nor disagree","Strongly agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe2822c-1a79-91d4-2008-b609f9a3d1e6","43","1","1","15","2","4","3","3","78040","749","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Disagree","Probably false","Probably false","Definitely true","Probably false","Somewhat disagree","Strongly agree",24.9,39,"Strongly agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,43,0,"Independent",0,0,2.07403322663179 +1514,70.3,67.3,"Not sure","Disagree","Probably true","Not sure","Probably true","Not sure","Somewhat agree","Slightly disagree",72,42.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Agree","Not vote in the presidential election","5fe28405-cf6e-7b24-1a57-c5aad36b3309","38","1","1","1","1","2","3","3","27332","560","34","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true",70.3,67.3,"Not sure","Disagree","Probably true","Not sure","Probably false","Not sure","Somewhat agree","Slightly disagree",72,42.5,"Agree","Neither agree nor disagree","Disagree","Disagree","Disagree","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","No, false",2,38,0,"Independent",0,0,1.4648345646551 +1515,99.9,99.9,"True","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",49.2,51.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe2821e-6d82-7f92-a77e-1b18edf34bab","45","2","5","1","1","6","2","3","72032","693","4","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true",99.9,0.0999999999999943,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",49.2,51.7,"Strongly disagree","Agree","Strongly agree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true",6,45,0,"Independent",0,0,0.890389101626892 +1516,89.6,98.8,"True","Agree","Definitely true","Probably true","Definitely true","Probably true","Strongly agree","Somewhat agree",84,95.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe284ce-0285-e2eb-9fda-c2cfed7a1037","42","1","21","1","1","7","2","3","21201","512","21","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",89.6,98.8,"True","Agree","Definitely false","Probably false","Definitely false","Probably true","Strongly disagree","Somewhat disagree",84,95.4,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false",7,42,0,"Republican",0,1,0.854374859000727 +1517,80.5,55.2,"Not sure","Agree","Definitely true","Not sure","Not sure","Not sure","Strongly agree","Slightly agree",22.2,26.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe28262-6ae0-2789-4735-f0f23543478e","43","2","5","1","1","6","3","2","55428","613","24","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false",19.5,44.8,"Not sure","Agree","Definitely false","Not sure","Not sure","Not sure","Strongly agree","Slightly disagree",22.2,26.7,"Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false",6,43,0,"Independent",0,0,0.501443380121097 +1518,69.6,90.1,"True","Agree","Probably true","Probably true","Definitely true","Probably false","Somewhat agree","Strongly agree",22.9,36.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe2805d-05e8-a327-e8e1-ef436dbfdbe4","50","2","14","1","1","6","2","3","79912","765","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",30.4,90.1,"True","Agree","Probably false","Probably false","Definitely false","Probably false","Somewhat agree","Strongly disagree",22.9,36.5,"Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure",6,50,0,"Republican",0,0,0.890389101626892 +1519,50,50,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",75.2,76.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe280dc-ebe5-a1eb-0e26-48c8d35dafb0","37","2","6","15","2","6","1","2","60453","602","14","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true",50,50,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.8,23.6,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",6,37,0,"Democrat",1,0,0.709984770116742 +1520,50,50,"Not sure","Agree","Probably true","Definitely true","Probably true","Probably false","Strongly agree","Strongly disagree",11,25.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe284b3-22f4-534f-21db-df0221716705","61","2","10","1","1","6","2","2","45030","515","36","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false",50,50,"Not sure","Disagree","Probably true","Definitely true","Probably true","Probably false","Strongly agree","Strongly disagree",11,25.6,"Disagree","Agree","Disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,61,1,"Republican",0,0,0.959966862697315 +1521,0.1,99.9,"False","Disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",59,75.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe283dd-983b-e3ad-1a17-917e87ca17f1","54","2","2","1","1","6","1","4","92869","803","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",0.1,99.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",41,24.5,"Disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",6,54,0,"Democrat",1,0,0.841954367861977 +1522,50,69,"True","Agree","Probably true","Probably true","Probably false","Definitely false","Slightly disagree","Strongly agree",20,20,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe284dc-bdd5-337f-8d30-a6b749076448","82","2","11","1","1","4","3","4","59834","762","27","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure",50,69,"False","Agree","Probably false","Probably true","Probably true","Definitely false","Slightly disagree","Strongly disagree",20,20,"Disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure",4,82,1,"Independent",0,0,1.07856128262739 +1523,50,50,"False","Disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",77,76.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe28610-0c89-e493-478d-488ed11c01b8","48","1","1","1","1","2","2","3","36874","522","1","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false",50,50,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",77,76.3,"Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",2,48,1,"Republican",0,0,1.9069936046507 +1524,52,99.9,"False","Strongly agree","Probably true","Probably true","Definitely true","Not sure","Slightly agree","Strongly disagree",10.1,0,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2857d-f3a9-443c-e4fe-2da563debfe0","40","2","16","1","1","4","1","2","48180","505","23","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","No, false",52,99.9,"True","Strongly agree","Probably true","Probably true","Definitely false","Not sure","Slightly disagree","Strongly disagree",10.1,0,"Agree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true",4,40,0,"Democrat",1,0,0.501443380121097 +1525,50,63,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly agree","Strongly disagree",73,28.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe28567-e4d1-1e3c-5c76-e37535bf62d1","37","2","1","15","1","4","1","3","27892","545","34","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,63,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly disagree","Strongly disagree",27,71.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,37,0,"Democrat",0,0,0.350824512476196 +1526,55.5,99.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",32,22.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe28327-7937-91df-322b-83ccc622b7ab","51","2","1","2","1","3","1","3","30291","524","11","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false","Yes, true",55.5,0.0999999999999943,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",32,22.1,"Agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Not sure","No, false","No, false","No, false","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true",3,51,0,"Democrat",1,1,0.781904367900328 +1527,57,63,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Definitely true","Slightly agree","Strongly disagree",59.7,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe284ce-d716-2c92-135e-cf69ccc5841c","56","2","18","1","1","5","2","3","32720","534","10","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",57,63,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Definitely false","Definitely false","Slightly disagree","Strongly disagree",40.3,9.90000000000001,"Strongly disagree","Disagree","Disagree","Strongly disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",5,56,0,"Republican",0,0,0.879927333598919 +1528,99.9,99.5,"True","Agree","Probably false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",62.7,56.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe28613-64fa-c704-910f-ad50826f8025","45","2","17","1","1","8","1","1","07047","501","31","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true",0.0999999999999943,99.5,"True","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",37.3,43.2,"Strongly disagree","Disagree","Disagree","Agree","Disagree","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",8,45,0,"Democrat",0,2,0.631126486177329 +1529,99.9,84.2,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly disagree","Somewhat disagree",84.7,84,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe2865b-59b4-588b-1f0f-eab0ea03f0ca","39","2","18","1","1","7","1","1","19053","504","39","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true",99.9,15.8,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",15.3,16,"Strongly disagree","Disagree","Strongly disagree","Disagree","Strongly agree","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",7,39,0,"Democrat",1,1,0.484792339820778 +1530,71,85.1,"False","Agree","Definitely true","Definitely true","Probably false","Definitely true","Strongly agree","Somewhat disagree",35.5,40.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2858e-239a-7785-bae4-4b6195910bfc","22","2","8","2","1","6","1","3","28304","560","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",71,85.1,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Somewhat disagree",64.5,59.2,"Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true",6,22,0,"Democrat",0,0,0.563508049350613 +1531,50,69.9,"False","Agree","Probably true","Probably false","Probably true","Probably true","Strongly agree","Strongly agree",82.9,71.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe28498-a1ac-4209-6610-8dcfd4f345a8","40","1","1","2","1","2","1","2","60605","602","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure",50,69.9,"False","Disagree","Probably false","Probably false","Probably false","Probably false","Strongly disagree","Strongly disagree",17.1,28.4,"Agree","Disagree","Disagree","Disagree","Disagree","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure",2,40,0,"Democrat",0,0,0.818524526086074 +1532,51.2,92.7,"Not sure","Agree","Probably true","Probably false","Definitely false","Not sure","Strongly disagree","Somewhat disagree",50.1,50.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe281e3-0a9b-3d95-93cd-20bd53065624","44","1","2","2","1","2","1","3","33810","539","10","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false",48.8,7.3,"Not sure","Agree","Probably true","Probably true","Definitely false","Not sure","Strongly agree","Somewhat disagree",50.1,50.1,"Neither agree nor disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true",2,44,0,"Democrat",1,0,0.750278089496237 +1533,84.2,95.5,"False","Agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",84,70.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe286a3-25e0-b45c-84df-bf9136d655e7","29","2","7","1","1","4","2","3","27563","560","34","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false",15.8,95.5,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly disagree",84,70.2,"Neither agree nor disagree","Strongly agree","Disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false",4,29,0,"Republican",0,2,0.697625211881609 +1534,50.1,49.9,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably false","Definitely true","Slightly agree","Strongly agree",50.1,50.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe28314-be09-4211-949d-63d99a934ace","53","2","16","1","1","5","2","4","84088","770","45","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.9,50.1,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Definitely false","Slightly agree","Strongly disagree",49.9,49.9,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,53,1,"Republican",0,1,1.25283899755614 +1535,50,0.1,"False","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",25.1,14.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe286ae-96ef-e349-32b8-d8a51b701e46","52","2","19","1","1","6","3","3","28451","550","34","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","No, false","Not sure",50,0.1,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.1,14.9,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure",6,52,0,"Independent",0,0,0.59837456742152 +1536,50,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Probably false","Somewhat agree","Strongly agree",55.8,61,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2873d-9bc3-cc45-3374-fd9e0cbd4a4c","20","2","1","15","2","4","4","2","68528","722","28","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Probably false","Somewhat agree","Strongly disagree",44.2,39,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,20,0,"Independent",0,0,0.666125677623384 +1537,50,72.5,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",35.1,33.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2875f-9529-f596-1127-8d26803b77a3","26","2","12","9","1","6","1","4","94608","807","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,27.5,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",35.1,33.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,26,0,"Democrat",0,1,0.503510286473184 +1538,1.9,50.5,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",64.9,94.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe28494-5617-cad6-6fef-5ac35bcf91c1","34","1","18","2","1","7","3","1","10004","501","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true",1.9,49.5,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",35.1,5.3,"Strongly disagree","Disagree","Disagree","Disagree","Disagree","No, false","No, false","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true",7,34,0,"Democrat",0,1,0.807176543762101 +1539,50.2,90.3,"Not sure","Disagree","Definitely false","Probably true","Probably true","Probably true","Strongly agree","Strongly disagree",78.3,94,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe2830e-1ae7-dcdf-d19a-586ca133d6d8","37","2","1","1","1","2","1","3","29323","567","41","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",49.8,90.3,"Not sure","Agree","Definitely false","Probably true","Probably false","Probably false","Strongly agree","Strongly disagree",21.7,6,"Neither agree nor disagree","Agree","Strongly disagree","Disagree","Disagree","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false",2,37,0,"Other",0,1,0.459634341107367 +1540,0.1,99.9,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",80.6,65.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe2849f-d30f-3f8f-1de7-5223d57023ca","42","1","19","1","1","4","1","3","40517","541","18","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",0.1,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.4,34.5,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",4,42,0,"Democrat",1,0,0.574171657914799 +1541,50.6,26.4,"Not sure","Neither agree nor disagree","Not sure","Definitely true","Definitely false","Definitely true","Slightly agree","Strongly agree",68.7,45.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe282ba-3f35-78c2-da98-8a2c1fdef1ca","29","2","1","1","2","2","2","3","77836","625","44","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",49.4,26.4,"Not sure","Neither agree nor disagree","Not sure","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",31.3,54.9,"Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false","No, false","No, false","Yes, true",2,29,0,"Republican",0,0,1.294111917477 +1542,20.5,31.3,"False","Agree","Definitely false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly disagree",76,75.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe28780-659f-8718-64dd-9a86d1afbc56","58","2","22","1","1","6","2","2","54956","658","50","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",20.5,31.3,"True","Agree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",24,24.1,"Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",6,58,0,"Republican",0,3,0.959966862697315 +1543,50,0.1,"True","Strongly agree","Definitely false","Probably false","Definitely true","Definitely false","Strongly disagree","Strongly agree",90.1,95,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe28464-39cd-4ef1-8a48-5ab545c3054e","73","1","20","1","1","7","3","3","29464","519","41","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",50,0.1,"True","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly agree",9.90000000000001,5,"Agree","Agree","Disagree","Disagree","Disagree","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true",7,73,0,"Independent",0,2,0.957543870478141 +1544,50,74.9,"True","Agree","Definitely true","Probably true","Definitely false","Definitely true","Strongly agree","Strongly disagree",76.4,81.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe2858f-3c54-6f3e-21b6-7dfe781a40a2","18","1","3","15","2","2","1","4","92084","825","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",50,25.1,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.6,18.8,"Agree","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Not sure","No, false","No, false","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",2,18,0,"Democrat",0,2,2.73803048787019 +1545,50,50,"Not sure","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly disagree","Somewhat agree",65.1,88.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe282bb-0754-0bfc-df0a-4ec93f0fd34b","62","2","2","1","1","6","2","3","23666","544","47","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true",50,50,"Not sure","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",34.9,11.5,"Strongly disagree","Agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false",6,62,0,"Republican",0,0,0.879927333598919 +1546,49.9,98.3,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",88.4,76.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Vote for a different candidate","5fe286d6-d585-bac4-64ff-67b0c8fb0762","37","2","1","15","1","4","4","4","97230","820","38","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false",50.1,1.7,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",11.6,23.8,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",4,37,0,"Other",1,0,0.277659478049678 +1547,84.1,97.1,"False","Strongly agree","Definitely false","Probably true","Definitely true","Probably false","Strongly disagree","Strongly disagree",86.4,86.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Strongly agree","Strongly agree","Disagree","Vote for a different candidate","5fe28509-fe38-b97f-0179-69ed6b44f2f4","52","2","3","1","1","6","3","2","47452","529","15","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false",84.1,2.90000000000001,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",13.6,13.9,"Strongly agree","Agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","No, false","No, false","Yes, true","No, false",6,52,0,"Independent",0,0,0.367189035584365 +1548,50,75,"False","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly agree",74.9,85,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe285d2-050e-6395-1b82-dd628df8f71e","71","1","8","1","1","7","1","2","46052","527","15","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",50,75,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.1,15,"Disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure",7,71,0,"Democrat",0,3,0.702039267968476 +1549,87.8,94.5,"False","Strongly agree","Probably true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",75,70.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe28402-3e91-bbb4-cf4e-dc053cf04460","35","2","21","3","1","8","1","1","10001","501","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",12.2,5.5,"True","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25,29.1,"Strongly agree","Strongly agree","Strongly disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",8,35,0,"Democrat",0,3,0.370026825802579 +1550,50.3,75.6,"True","Strongly disagree","Definitely true","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly agree",84.6,86.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe2834a-1fac-ddbc-a179-4a9503e2192a","65","2","11","1","1","6","3","4","80816","752","6","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",49.7,24.4,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.4,13.3,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,65,0,"Independent",0,0,0.724833266434345 +1551,85.1,75,"False","Strongly agree","Not sure","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15,18,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Agree","Not vote in the presidential election","5fe28432-0893-1ac1-3744-0cc2386f0668","46","2","-3105","16","1","2","1","3","78207","641","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false",14.9,25,"False","Strongly agree","Not sure","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",15,18,"Disagree","Disagree","Disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",2,46,0,"Democrat",0,0,1.16519178964086 +1552,66,99.9,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably false","Probably false","Strongly disagree","Slightly disagree",11,41.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe27f9b-a1fc-0c88-7e2d-9926c7579ebe","22","2","1","15","1","2","1","3","70420","622","19","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure",66,99.9,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Probably false","Probably true","Strongly agree","Slightly disagree",89,58.4,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure",2,22,0,"Democrat",0,1,0.329152435286286 +1553,53.7,55.5,"True","Neither agree nor disagree","Probably true","Not sure","Probably true","Not sure","Slightly agree","Somewhat agree",79.1,80,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe2968c-c6a5-32ef-6e4c-28e9f996a208","18","1","3","1","2","4","2","4","89031","839","29","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",53.7,55.5,"True","Neither agree nor disagree","Probably true","Not sure","Probably false","Not sure","Slightly agree","Somewhat disagree",20.9,20,"Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",4,18,0,"Republican",0,0,1.4060928195102 +1554,50.7,64.4,"Not sure","Neither agree nor disagree","Not sure","Probably true","Probably false","Not sure","Slightly agree","Slightly agree",51.3,49.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe2868f-7bc4-3832-ee57-18c2a07e4677","34","2","1","1","1","2","4","3","76060","623","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",50.7,64.4,"Not sure","Neither agree nor disagree","Not sure","Probably true","Probably false","Not sure","Slightly disagree","Slightly disagree",51.3,49.9,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",2,34,0,"Other",0,0,1.19608566751863 +1555,50.4,51.6,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Probably false","Slightly agree","Slightly agree",20.3,43.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe29870-7bf8-7792-e061-e449c3fdcb4f","21","1","19","1","2","4","2","4","86314","753","3","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure",49.6,51.6,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably true","Slightly agree","Slightly disagree",20.3,43.3,"Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",4,21,0,"Independent",0,0,3.58724317848083 +1556,75.3,47,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely true","Probably false","Somewhat agree","Somewhat agree",57.3,55,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Agree","Disagree","Agree","Not vote in the presidential election","5fe2982d-2262-b671-a49a-1f50a22fa9bb","30","1","2","1","2","4","3","4","85303","753","3","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",24.7,47,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely false","Probably true","Somewhat agree","Somewhat agree",57.3,55,"Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",4,30,0,"Independent",0,0,3.89992868427753 +1557,50.6,18.8,"False","Agree","Probably true","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly agree",37.3,25,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe282b7-9654-156c-d60c-cc93edd4ab74","68","2","4","2","1","6","2","2","46227","527","15","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",49.4,18.8,"False","Agree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",37.3,25,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",6,68,0,"Republican",0,0,1.0927462992381 +1558,25.1,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely false","Slightly disagree","Strongly disagree",29,50.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe29858-4797-2325-fb60-c049f424b695","25","1","-3105","16","2","6","4","4","93313","800","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false",25.1,50,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",29,50.1,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",6,25,0,"Democrat",0,0,1.16677549326913 +1559,74.6,99.9,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",14.2,5.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe29bab-f259-263d-edc8-e2aef2eba635","29","1","13","1","2","6","3","4","92707","803","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",25.4,99.9,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.2,5.7,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false",6,29,0,"Democrat",0,3,1.52865625404487 +1560,99.9,99.9,"True","Disagree","Probably true","Definitely false","Definitely true","Probably true","Strongly agree","Strongly agree",52.4,23,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Disagree","Strongly agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe29a67-29fe-90ab-1350-3beb0e9153c7","22","1","1","15","2","3","2","4","95219","862","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure",0.0999999999999943,0.0999999999999943,"False","Disagree","Probably true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",52.4,23,"Agree","Strongly agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure",3,22,0,"Democrat",0,0,1.07322665820071 +1561,50,99.9,"Not sure","Disagree","Probably true","Probably true","Definitely true","Probably true","Strongly agree","Strongly agree",10.1,25.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2a1c2-6ab9-869d-745b-abde68afb106","29","1","5","1","2","2","4","4","84119","770","45","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true",50,99.9,"Not sure","Disagree","Probably false","Probably false","Definitely false","Probably false","Strongly disagree","Strongly disagree",10.1,25.4,"Agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true",2,29,0,"Democrat",0,0,1.52865625404487 +1562,80,90,"True","Strongly agree","Definitely true","Probably false","Definitely false","Definitely true","Strongly agree","Strongly disagree",95,76,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe2a3ec-93d4-1095-9b7f-81d7e610c3c2","47","1","5","1","12","1","1","4","97477","801","38","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",80,10,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",5,24,"Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Yes, true",1,47,0,"Democrat",0,0,1.95104598508451 +1563,55.4,60.7,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",85.5,70.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe24a25-c55b-22f6-fc31-1dc0b861f9e8","59","1","20","1","1","6","3","1","01970","506","22","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Not sure",44.6,39.3,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.5,29.1,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure",6,59,0,"Independent",0,0,0.779134905788461 +1564,99,18.2,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",76.1,95.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2b803-4c2a-adbb-4bde-aded4ec0dcf1","21","1","15","1","2","6","1","4","85710","789","3","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",99,18.2,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.9,4.59999999999999,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",6,21,0,"Democrat",0,0,1.4060928195102 +1565,57.3,58.2,"True","Agree","Probably true","Probably true","Probably false","Probably true","Somewhat agree","Slightly agree",88.4,77.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe2d43f-11bf-a767-3a85-20d06cfe6511","26","1","11","2","2","2","2","4","89031","839","29","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",42.7,41.8,"False","Agree","Probably false","Probably false","Probably true","Probably true","Somewhat disagree","Slightly agree",11.6,22.4,"Agree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false",2,26,0,"Democrat",0,0,1.99751638377011 +1566,79.7,79.7,"True","Agree","Definitely true","Probably false","Probably true","Probably false","Somewhat agree","Slightly agree",73,81.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Disagree","Agree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe2d58b-0605-8165-1833-b06705d5a7c6","31","1","19","1","2","6","1","4","90025","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure",20.3,79.7,"False","Agree","Definitely false","Probably true","Probably false","Probably false","Somewhat disagree","Slightly agree",73,81.4,"Agree","Disagree","Disagree","Agree","Agree","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure",6,31,0,"Republican",1,0,1.52865625404487 +1567,58.7,14,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Slightly agree",68,58.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe2686f-1e9b-c910-754e-11a6c233e756","35","1","11","1","1","6","2","1","10011","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true",58.7,14,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Slightly agree",68,58.4,"Disagree","Disagree","Disagree","Strongly disagree","Disagree","Yes, true","No, false","No, false","No, false","Not sure","No, false","Not sure","No, false","No, false","Yes, true","No, false","Yes, true",6,35,0,"Democrat",0,0,0.605598834997122 +1568,84.1,83.6,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Probably true","Strongly agree","Somewhat agree",96.1,97.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","Strongly agree","Strongly agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe2e25e-18ce-790d-6bad-b0524640f52f","30","1","9","1","2","7","1","1","10001","501","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",15.9,16.4,"True","Strongly disagree","Definitely true","Definitely true","Definitely true","Probably false","Strongly disagree","Somewhat agree",96.1,97.4,"Agree","Strongly agree","Strongly disagree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true",7,30,1,"Democrat",0,0,1.70507857983765 +1569,74.6,57.5,"True","Agree","Probably false","Definitely false","Definitely true","Definitely true","Slightly disagree","Slightly agree",14.7,26.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe31e60-08bb-ab30-15f2-7b1d7987a252","30","1","7","1","2","7","3","4","90331","803","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",25.4,42.5,"True","Disagree","Probably true","Definitely true","Definitely false","Definitely false","Slightly agree","Slightly agree",14.7,26.5,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",7,30,0,"Democrat",0,0,1.52865625404487 +1570,61.1,81,"False","Neither agree nor disagree","Not sure","Definitely true","Probably true","Definitely false","Strongly disagree","Somewhat disagree",20.3,31.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe334e5-7d5f-6140-fabb-c7c032a0b60a","50","1","1","1","4","5","3","4","95687","862","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true",38.9,19,"True","Neither agree nor disagree","Not sure","Definitely true","Probably false","Definitely false","Strongly disagree","Somewhat disagree",20.3,31.4,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","No, false",5,50,1,"Independent",0,0,2.90318167996 +1571,50.3,93.2,"True","Agree","Probably false","Probably true","Probably true","Probably true","Strongly agree","Somewhat agree",70.3,57.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Agree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3675b-8bef-b74d-3a38-a781e16408ba","22","1","11","1","3","6","2","4","90001","803","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",50.3,6.8,"True","Agree","Probably true","Probably false","Probably false","Probably false","Strongly disagree","Somewhat disagree",29.7,42.6,"Agree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",6,22,0,"Republican",0,0,2.09228431576333 +1572,42.4,99.9,"True","Agree","Probably false","Probably false","Definitely false","Definitely true","Somewhat agree","Slightly agree",98.8,99.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe37a79-66b5-8d65-d8c2-8e44deca7ec3","34","1","3","1","1","4","1","1","19320","504","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","No, false",57.6,0.0999999999999943,"False","Disagree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Slightly disagree",1.2,0.799999999999997,"Agree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",4,34,0,"Independent",0,2,0.617714819145265 +1573,50.5,88.7,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Slightly disagree",20.1,12.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe379b6-a827-f420-7851-c735780cff7b","48","2","1","1","1","2","2","3","24701","559","49","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false",49.5,88.7,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Slightly agree",20.1,12.3,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure","Yes, true",2,48,0,"Republican",0,0,0.890389101626892 +1574,84.4,87.5,"True","Disagree","Probably true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",78.6,84.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe37b4a-27ae-24cd-210b-1e0578806228","47","1","20","1","1","4","2","1","18951","504","39","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false",15.6,12.5,"True","Agree","Probably true","Probably false","Definitely true","Definitely false","Strongly agree","Strongly disagree",78.6,84.3,"Strongly disagree","Disagree","Strongly disagree","Strongly agree","Strongly agree","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false",4,47,0,"Democrat",1,0,0.788398316908465 +1575,69.7,27,"True","Disagree","Definitely true","Probably false","Definitely false","Definitely true","Slightly agree","Slightly disagree",21.6,24.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe37b02-f31d-eed4-4cab-c75048bcabd5","70","1","6","1","1","2","1","3","27332","560","34","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",30.3,27,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly disagree","Slightly disagree",21.6,24.5,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true",2,70,0,"Democrat",0,0,0.643505067882763 +1576,47.5,50,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely true","Somewhat disagree","Strongly disagree",2.5,11.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe379fb-661f-14dc-8c67-7440f0640cdd","31","2","1","1","1","2","1","3","32503","686","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","No, false","Yes, true",47.5,50,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",2.5,11.8,"Neither agree nor disagree","Agree","Strongly disagree","Disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Not sure","No, false","Yes, true",2,31,0,"Democrat",0,0,0.468830069482283 +1577,13.7,43.4,"Not sure","Disagree","Not sure","Definitely true","Probably false","Definitely false","Strongly agree","Slightly agree",72,85.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe37ac9-11ca-6966-1753-c51e279b38b9","61","2","1","1","1","6","2","1","14225","514","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","No, false",13.7,43.4,"Not sure","Agree","Not sure","Definitely true","Probably false","Definitely false","Strongly disagree","Slightly agree",28,14.7,"Agree","Disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,61,1,"Republican",0,0,0.928089989751292 +1578,33.7,33.1,"True","Agree","Definitely false","Probably false","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",78.7,79.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Disagree","Not vote in the presidential election","5fe37a15-d881-ea42-efce-2ade3819cfb2","52","2","5","1","2","4","3","3","78221","641","44","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Not sure","No, false","No, false",33.7,33.1,"False","Agree","Definitely false","Probably false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",21.3,20.8,"Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","No, false",4,52,0,"Independent",0,0,2.83184594546472 +1579,93.1,80.6,"True","Strongly agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",90.1,94.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe37bef-a06c-a091-ff14-8db448730134","62","1","19","1","1","7","1","3","21208","512","21","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",93.1,19.4,"False","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",90.1,94.1,"Strongly disagree","Agree","Strongly agree","Strongly disagree","Disagree","","","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true",7,62,0,"Democrat",1,0,0.73870218161496 +1580,99.9,50,"False","Strongly disagree","Definitely true","Probably false","Definitely true","Probably true","Strongly agree","Strongly disagree",16.9,14.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe37bed-855c-43f8-83c1-c91daeabdcde","47","1","18","1","1","7","3","1","16438","516","39","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","No, false","No, false",0.0999999999999943,50,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",16.9,14.5,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Not sure","No, false","No, false","Yes, true",7,47,0,"Independent",0,0,0.788398316908465 +1581,48,48.2,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably true","Probably false","Strongly disagree","Strongly agree",41.2,40.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe37aff-f687-900c-97b2-45eb8d73395d","60","2","18","1","1","2","1","1","17557","566","39","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",48,48.2,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",41.2,40.1,"Disagree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,60,0,"Democrat",0,0,1.59121992153205 +1582,60,28.1,"True","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably true","Slightly disagree","Strongly agree",76.3,86.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly disagree","Strongly disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe37dfa-6083-7329-c54f-580930d1c018","36","2","19","1","1","6","2","1","11598","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",40,71.9,"False","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably false","Slightly agree","Strongly disagree",23.7,13.7,"Strongly disagree","Strongly agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure",6,36,0,"Independent",0,0,0.721377276759402 +1583,93.5,78.3,"True","Disagree","Definitely false","Probably true","Probably true","Probably true","Somewhat agree","Slightly disagree",67.6,56.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Disagree","Agree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe37da7-c90f-4f6d-b2f3-3c4f048e26b1","27","1","2","1","1","2","1","1","17241","566","39","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Not sure","No, false",6.5,78.3,"True","Disagree","Definitely true","Probably true","Probably false","Probably false","Somewhat agree","Slightly disagree",67.6,56.4,"Disagree","Agree","Agree","Disagree","Agree","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false",2,27,0,"Democrat",0,0,0.617714819145265 +1584,50,67.5,"True","Strongly disagree","Definitely true","Probably false","Probably true","Probably true","Somewhat agree","Slightly agree",76.4,62.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Disagree","Agree","Agree","Neither agree nor disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe37e3f-3694-48bb-62c7-7cfca787d209","28","2","14","2","1","7","1","4","90001","803","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false",50,67.5,"False","Strongly agree","Definitely false","Probably false","Probably false","Probably true","Somewhat agree","Slightly disagree",76.4,62.8,"Disagree","Disagree","Disagree","Neither agree nor disagree","Strongly agree","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false",7,28,0,"Democrat",1,0,0.862008203316775 +1585,50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Definitely false","Definitely false","Slightly agree","Slightly agree",77.7,76.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe37c3c-efdf-48ad-69ee-24bec67af1a3","47","2","1","2","1","7","3","1","15120","508","39","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Definitely false","Definitely false","Slightly disagree","Slightly agree",22.3,23.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,47,0,"Independent",0,0,2.1039903667044 +1586,50,61.9,"False","Neither agree nor disagree","Probably false","Probably true","Probably true","Definitely false","Strongly agree","Strongly agree",77.6,65.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Agree","Disagree","Not vote in the presidential election","5fe37da8-476b-24b7-512e-9080cc61d8ae","45","2","2","1","1","2","3","3","72830","670","4","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","No, false","No, false","Not sure","No, false","Not sure",50,61.9,"True","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Strongly agree","Strongly disagree",22.4,34.3,"Disagree","Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","Not sure","No, false","Not sure",2,45,0,"Independent",0,0,1.52658135748604 +1587,28.7,29,"True","Agree","Probably true","Definitely false","Definitely false","Definitely true","Strongly agree","Somewhat agree",35.2,74,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe37e11-f1b0-8b73-d904-95cd8941333e","26","2","6","1","1","6","1","4","89121","839","29","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure",71.3,29,"True","Agree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",64.8,26,"Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Agree","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure",6,26,0,"Democrat",1,0,0.659676306910243 +1588,50,99.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",50.9,50.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe37e05-3db9-302d-9c3c-5e6b4c728243","53","2","19","1","1","2","1","4","98204","819","48","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",50,99.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",49.1,49.1,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false",2,53,0,"Independent",0,0,0.841954367861977 +1589,59.5,42.7,"False","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",53.5,27.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe37d7e-1029-d581-4019-84dded3bd90d","70","2","4","1","1","2","2","3","71837","612","4","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",59.5,57.3,"True","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly agree",53.5,27.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",2,70,1,"Republican",0,1,1.31422437374394 +1590,52.7,99.5,"True","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",27,17.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe37d00-d2d8-5298-9b26-8d4570afc439","56","2","4","1","1","6","1","3","27215","518","34","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",52.7,99.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",27,17.8,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",6,56,0,"Democrat",0,0,0.59134387049726 +1591,50,90,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",81,74,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe37cf6-1e19-5642-49b2-68517353074b","32","1","1","1","1","6","1","4","98110","819","48","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Not sure","Yes, true",50,90,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19,26,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true",6,32,0,"Democrat",0,1,0.824062531779561 +1592,82.7,94.8,"True","Disagree","Probably true","Definitely true","Probably true","Not sure","Strongly disagree","Strongly agree",37.2,35.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe37d4d-db7c-49d8-6efc-233d8c7f07db","33","1","11","1","1","6","1","2","47714","649","15","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false",17.3,5.2,"True","Disagree","Probably true","Definitely true","Probably true","Not sure","Strongly agree","Strongly disagree",62.8,64.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Yes, true",6,33,0,"Democrat",0,0,0.638931314338847 +1593,99.9,99.9,"False","Strongly disagree","Not sure","Probably true","Definitely true","Probably false","Strongly agree","Strongly disagree",36.3,35.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe37e04-bb71-d700-53b0-200a689db756","21","2","-3105","1","1","7","1","3","37404","575","43","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false",99.9,99.9,"True","Strongly agree","Not sure","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",36.3,35.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",7,21,0,"Democrat",1,0,0.431240569961491 +1594,50.9,49.8,"False","Agree","Probably false","Probably false","Definitely false","Probably true","Strongly disagree","Strongly agree",49.1,78.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe37f27-4401-e6a4-ddec-aed99b501c69","52","2","6","1","1","2","1","3","32780","534","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure",49.1,50.2,"False","Disagree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",50.9,21.8,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure",2,52,1,"Democrat",0,0,0.59837456742152 +1595,55.2,80.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Probably true","Strongly agree","Somewhat disagree",21.8,18.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for a different candidate","5fe37ebf-d32d-96a2-547c-537cbc16e3e1","33","2","4","2","1","6","2","3","26101","597","49","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",44.8,80.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Probably false","Strongly agree","Somewhat disagree",21.8,18.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",6,33,0,"Republican",0,0,0.344590353693178 +1596,50,78.4,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",80.1,75.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe37e30-22a2-9f09-325c-ec238aca5e8f","60","2","2","1","1","6","3","4","80211","751","6","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure",50,21.6,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.9,24.4,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure",6,60,0,"Independent",0,3,0.832061691423535 +1597,83.3,12.1,"True","Agree","Not sure","Not sure","Definitely false","Not sure","Somewhat disagree","Strongly disagree",35.4,25.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe37e61-15c7-eb85-68f0-1737d03817e4","34","2","7","1","1","2","2","3","76691","625","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",83.3,87.9,"True","Disagree","Not sure","Not sure","Definitely false","Not sure","Somewhat disagree","Strongly disagree",35.4,25.7,"Neither agree nor disagree","Disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",2,34,0,"Republican",0,0,1.19608566751863 +1598,85.5,99.9,"True","Agree","Definitely true","Definitely true","Definitely true","Probably true","Strongly agree","Strongly agree",100,94.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe37ee0-18aa-b103-2ee3-d2b3b9e297c5","26","2","1","2","1","-3105","1","4","87755","820","38","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",14.5,0.0999999999999943,"True","Agree","Definitely false","Definitely true","Definitely true","Probably false","Strongly disagree","Strongly disagree",100,94.4,"Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",-3105,26,0,"Democrat",1,0,0.862008203316775 +1599,99.9,99.9,"True","Disagree","Definitely true","Definitely true","Definitely false","Probably true","Strongly disagree","Strongly agree",30.4,10.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe37eff-b323-bded-3ad2-fccc3881d1ef","34","2","2","1","1","2","3","2","46241","527","15","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true",0.0999999999999943,0.0999999999999943,"True","Disagree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Strongly disagree",30.4,10.9,"Agree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","No, false",2,34,0,"Independent",0,1,0.511475565940556 +1600,99.9,99.9,"True","Strongly agree","Definitely true","Probably true","Definitely true","Probably true","Strongly agree","Somewhat agree",100,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Agree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe37fc7-63c7-0135-a01d-7753a491f5bf","50","1","8","1","1","7","2","4","95926","868","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure",0.0999999999999943,99.9,"False","Strongly agree","Definitely false","Probably true","Definitely false","Probably true","Strongly disagree","Somewhat agree",100,100,"Strongly disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure",7,50,0,"Republican",1,1,1.56503676943297 +1601,31.6,61.1,"False","Neither agree nor disagree","Probably true","Definitely true","Definitely true","Definitely false","Slightly agree","Strongly disagree",40.8,21.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe37d50-507d-11e9-5677-83fa5d3d2fa0","77","2","1","1","1","2","2","3","29625","567","41","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","No, false","No, false",68.4,61.1,"True","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",40.8,21.1,"Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true",2,77,0,"Republican",0,0,1.31422437374394 +1602,54.9,25,"False","Agree","Definitely true","Probably true","Definitely true","Definitely false","Somewhat agree","Strongly agree",65,70.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe37e2e-4510-9a46-d683-a59c87c3f72e","68","2","21","1","1","5","2","1","07726","501","31","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false",54.9,75,"True","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",35,29.9,"Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","No, false",5,68,0,"Republican",0,2,0.80848632469251 +1603,20.8,67.9,"False","Disagree","Probably true","Not sure","Probably false","Probably false","Somewhat agree","Strongly agree",85,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Disagree","Disagree","Neither agree nor disagree","Agree","Agree","Vote for a different candidate","5fe37fa3-02ac-3a31-1b39-c717e2be8dc9","25","2","2","1","1","2","1","1","02895","521","40","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",20.8,67.9,"False","Agree","Probably false","Not sure","Probably false","Probably true","Somewhat disagree","Strongly disagree",15,9.90000000000001,"Agree","Agree","Neither agree nor disagree","Agree","Agree","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",2,25,0,"Independent",0,0,0.278141558002783 +1604,70.7,53.9,"Not sure","Agree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",65,80.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Disagree","Disagree","Not vote in the presidential election","5fe37fa7-cf86-0e08-82fd-325a2044d5c4","73","1","21","1","1","4","4","1","07656","501","31","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",29.3,46.1,"Not sure","Agree","Probably false","Probably true","Probably false","Probably false","Somewhat agree","Somewhat disagree",35,19.6,"Agree","Disagree","Agree","Disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,73,0,"Independent",0,1,1.73157807953745 +1605,52.3,55.1,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Probably false","Strongly agree","Strongly agree",13.1,27.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe38102-e738-eb11-03c5-3e8a22e6eafa","20","2","1","1","1","4","1","2","50014","679","16","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",52.3,44.9,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",13.1,27.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,20,0,"Democrat",1,0,0.47046686834987 +1606,50,99.9,"True","Strongly agree","Probably true","Definitely false","Definitely true","Definitely false","Somewhat agree","Strongly agree",100,89.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe37ecd-ed0e-c059-5952-ea92f8afb335","40","1","20","1","1","8","1","1","10009","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",50,0.0999999999999943,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",100,89.3,"Strongly disagree","Strongly agree","Strongly agree","Agree","Disagree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true",8,40,1,"Democrat",0,0,0.605598834997122 +1607,49.3,96.8,"True","Neither agree nor disagree","Definitely false","Not sure","Probably true","Definitely false","Strongly agree","Strongly disagree",100,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe38081-1000-868b-6f87-6b01328513d3","65","1","3","3","1","6","1","4","88203","790","32","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","No, false",50.7,3.2,"False","Neither agree nor disagree","Definitely false","Not sure","Probably false","Definitely false","Strongly agree","Strongly disagree",0,0,"Agree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true",6,65,0,"Democrat",0,0,0.691106313710623 +1608,81.6,72.7,"True","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably false","Slightly disagree","Strongly agree",22.7,55.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Disagree","Agree","Agree","Not vote in the presidential election","5fe37f7f-dcbf-8bdb-3aeb-5b0e66087896","33","2","14","15","1","4","1","2","61114","610","14","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",18.4,72.7,"True","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Slightly disagree","Strongly disagree",22.7,55.6,"Neither agree nor disagree","Agree","Agree","Agree","Agree","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true",4,33,0,"Democrat",0,0,0.995976705032695 +1609,50,85,"False","Neither agree nor disagree","Not sure","Probably true","Definitely true","Definitely true","Somewhat agree","Strongly agree",79.7,74.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe38082-bf08-b646-ea37-6660bc6737f5","67","2","2","2","1","2","1","3","27320","518","34","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure",50,85,"False","Neither agree nor disagree","Not sure","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",79.7,74.3,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Not sure",2,67,0,"Democrat",0,0,0.673136595827227 +1610,49.9,85.5,"False","Agree","Definitely false","Probably false","Probably true","Definitely false","Somewhat agree","Strongly disagree",19.5,27.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe38070-6e19-387e-7ce1-0b2d7ac2f9b6","25","1","8","1","1","6","1","3","71055","612","19","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","No, false","No, false","No, false","No, false",50.1,85.5,"False","Disagree","Definitely false","Probably false","Probably false","Definitely false","Somewhat agree","Strongly disagree",19.5,27.9,"Agree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true",6,25,0,"Independent",0,3,0.585658890557251 +1611,50,0.1,"True","Disagree","Definitely true","Probably false","Definitely false","Probably false","Strongly disagree","Strongly agree",34.9,30.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe38135-8e6e-ec5f-7438-e78080a8cd6d","50","2","4","1","1","6","3","1","06118","533","7","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false",50,0.1,"True","Agree","Definitely false","Probably false","Definitely false","Probably true","Strongly agree","Strongly disagree",34.9,30.6,"Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false",6,50,0,"Independent",0,0,1.61013849931105 +1612,49.7,52.6,"False","Agree","Probably true","Probably false","Definitely false","Probably true","Slightly agree","Slightly agree",52.1,39.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe37f62-1e99-a224-aa73-b5f279d9266f","49","2","5","1","1","2","1","3","30135","524","11","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Not sure",50.3,52.6,"False","Disagree","Probably false","Probably true","Definitely false","Probably true","Slightly agree","Slightly disagree",52.1,39.3,"Disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","No, false","No, false","No, false","Not sure",2,49,0,"Democrat",0,1,1.52658135748604 +1613,50,75.2,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Slightly agree","Somewhat agree",38.8,69.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe37f16-8b90-b49b-76d7-b12767d6e7a1","19","2","1","2","1","2","1","3","75043","623","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true",50,24.8,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably true","Slightly disagree","Somewhat agree",38.8,69.9,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true",2,19,0,"Democrat",0,0,0.563508049350613 +1614,50,64.3,"True","Strongly disagree","Probably false","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly agree",40.5,36.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Neither agree nor disagree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe37fec-4be3-3849-c395-3525842ec1a0","69","2","4","1","1","6","2","3","72113","693","4","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",50,35.7,"True","Strongly agree","Probably true","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",59.5,63.5,"Agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Yes, true",6,69,0,"Republican",0,0,0.766530426783843 +1615,71.8,60.7,"True","Disagree","Definitely true","Probably true","Definitely true","Definitely false","Somewhat agree","Somewhat disagree",30.3,25.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3818d-7b14-4648-2bbb-09626659850c","73","2","2","1","1","2","2","1","10992","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",71.8,60.7,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",30.3,25.6,"Neither agree nor disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",2,73,0,"Republican",0,0,0.80848632469251 +1616,32,80.4,"False","Disagree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Strongly agree",34.9,20.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe38244-bc44-5f1f-233f-a2904e334cf0","66","2","11","1","1","2","1","3","28405","550","34","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false","No, false",68,80.4,"False","Disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly disagree",34.9,20.7,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",2,66,0,"Democrat",1,0,0.515136934744757 +1617,50.5,50.9,"False","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably false","Somewhat disagree","Slightly disagree",22.8,8.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe38163-90a5-43b0-e499-ede057eb328a","50","2","3","1","1","2","2","3","31639","525","11","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure",50.5,49.1,"False","Neither agree nor disagree","Probably false","Not sure","Probably false","Probably false","Somewhat disagree","Slightly agree",22.8,8.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",2,50,1,"Republican",0,0,0.890389101626892 +1618,54.7,49.8,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely true","Slightly agree","Slightly agree",52.3,81.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe382ae-4b50-8f43-a5c2-7c6f4d756ca2","43","2","14","1","1","3","2","3","28901","575","34","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true",45.3,49.8,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Slightly disagree","Slightly disagree",47.7,18.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",3,43,1,"Republican",0,1,0.683941849031096 +1619,78.6,15.4,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Probably false","Strongly agree","Somewhat agree",19.1,52.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe38284-f3e2-7b96-7f45-c0b8cc249b59","30","1","3","1","1","6","2","1","06239","533","7","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true",21.4,84.6,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Probably false","Strongly agree","Somewhat disagree",19.1,52.3,"Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false",6,30,0,"Democrat",0,0,0.617714819145265 +1620,50,49.9,"False","Strongly disagree","Definitely false","Definitely true","Definitely false","Probably true","Strongly agree","Strongly disagree",24,24.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Disagree","Disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe38346-205e-5259-8737-54bdd8ee430f","73","1","2","1","1","2","1","4","92234","804","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true",50,49.9,"False","Strongly disagree","Definitely true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",24,24.8,"Agree","Agree","Disagree","Agree","Neither agree nor disagree","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",2,73,0,"Democrat",0,0,0.905456100816435 +1621,50,95,"Not sure","Agree","Definitely false","Probably false","Probably true","Probably true","Strongly disagree","Strongly agree",90.1,85,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe37fdd-214d-8349-8210-8b929b48f2ed","38","1","6","1","1","6","1","4","85710","789","3","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","","Yes, true","Yes, true",50,95,"Not sure","Disagree","Definitely false","Probably false","Probably false","Probably false","Strongly agree","Strongly disagree",9.90000000000001,15,"Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","","No, false","Yes, true",6,38,0,"Democrat",0,2,0.807899201610574 +1622,49.8,81.3,"True","Neither agree nor disagree","Not sure","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",10.8,9.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe38192-cfe6-2ec5-7202-4ce660dab635","46","2","7","1","1","4","1","1","17745","577","39","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure",50.2,18.7,"False","Neither agree nor disagree","Not sure","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.8,9.5,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure",4,46,0,"Democrat",0,0,1.61013849931105 +1623,99.9,99.9,"Not sure","Strongly disagree","Definitely false","Definitely false","Probably true","Definitely true","Slightly disagree","Strongly disagree",60.1,21.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe382a3-7c8c-83a9-c855-c8633b327e4e","37","2","3","1","1","2","2","2","49770","540","23","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Not sure",0.0999999999999943,99.9,"Not sure","Strongly disagree","Definitely false","Definitely true","Probably false","Definitely false","Slightly agree","Strongly disagree",39.9,78.7,"Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","No, false","No, false","Not sure","Not sure","Not sure",2,37,0,"Independent",0,0,0.746154240255765 +1624,50,61.9,"False","Disagree","Probably false","Not sure","Definitely true","Definitely false","Strongly agree","Strongly disagree",8.2,10.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe38365-8ed7-1c39-03d7-b0964ed4baf8","32","2","1","1","1","6","1","1","16602","574","39","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true",50,38.1,"False","Disagree","Probably false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",8.2,10.5,"Neither agree nor disagree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true",6,32,0,"Independent",0,1,0.494491394648778 +1625,35.5,76.1,"False","Agree","Definitely true","Probably false","Definitely true","Probably true","Strongly disagree","Strongly disagree",76.2,86.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Agree","Disagree","Disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe3826f-96bd-bdff-ebb1-c3c1e779d144","31","1","1","1","1","4","1","2","44053","510","36","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false",64.5,23.9,"False","Disagree","Definitely false","Probably false","Definitely false","Probably true","Strongly agree","Strongly disagree",23.8,13.8,"Agree","Agree","Agree","Agree","Disagree","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","Not sure","No, false","Yes, true",4,31,0,"Democrat",0,1,0.638931314338847 +1626,71.1,70.8,"True","Agree","Definitely false","Definitely true","Definitely true","Probably true","Strongly agree","Strongly disagree",81.4,80.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Agree","Disagree","Strongly agree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe3836f-43af-26df-2cae-d486301277e3","21","2","8","2","1","5","1","2","60076","602","14","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true",71.1,29.2,"False","Disagree","Definitely false","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",81.4,80.2,"Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Agree","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true",5,21,0,"Democrat",0,0,0.614765598912923 +1627,49.7,50.7,"False","Agree","Definitely true","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly agree",49,59.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe382dd-60ae-45db-8227-6760d62a34fa","68","2","9","1","1","6","3","2","60089","602","14","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure",50.3,50.7,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",51,40.2,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure",6,68,0,"Independent",0,0,0.561994574124504 +1628,11,99.9,"False","Neither agree nor disagree","Probably true","Definitely true","Definitely true","Probably false","Strongly agree","Strongly agree",75.2,50,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe383a3-fa31-98dd-7112-31c9456b0b9e","30","2","19","1","1","2","4","1","19605","504","39","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false",89,99.9,"True","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Probably true","Strongly disagree","Strongly disagree",24.8,50,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false",2,30,0,"Other",0,0,1.26155319027175 +1629,90.3,77.5,"True","Agree","Definitely true","Definitely false","Probably true","Probably false","Strongly agree","Somewhat agree",96.1,53.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe38503-110d-c08d-ce99-b3ead3b753b1","34","2","20","1","1","7","1","1","10013","501","33","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",90.3,22.5,"False","Disagree","Definitely true","Definitely false","Probably true","Probably false","Strongly disagree","Somewhat agree",96.1,53.4,"Disagree","Disagree","Strongly disagree","Disagree","Agree","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","No, false",7,34,1,"Democrat",0,0,0.494491394648778 +1630,76.4,51.5,"False","Agree","Probably true","Probably false","Probably false","Probably false","Somewhat agree","Somewhat disagree",50.4,77.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Disagree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe38583-bf57-4140-6d9f-e6ff5e0ada0f","31","2","12","1","1","2","1","3","21740","511","21","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false",76.4,51.5,"True","Disagree","Probably false","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",49.6,22.8,"Disagree","Strongly disagree","Disagree","Agree","Agree","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true",2,31,0,"Democrat",0,0,0.468830069482283 +1631,52.9,36,"False","Neither agree nor disagree","Probably false","Probably false","Probably true","Definitely true","Somewhat agree","Somewhat disagree",70,80.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe383dc-4469-6727-6ef1-31d4ba469894","70","1","6","1","1","7","2","1","12406","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure",47.1,64,"True","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",30,19.3,"Disagree","Strongly disagree","Disagree","Strongly disagree","Disagree","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Not sure",7,70,1,"Republican",0,2,1.0099548530942 +1632,67.1,69.7,"True","Agree","Probably true","Probably true","Probably true","Probably true","Slightly agree","Somewhat agree",70.6,67.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe3853b-ae52-3690-3f25-9517edd508b8","39","1","22","1","1","7","3","1","10011","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true",67.1,30.3,"False","Agree","Probably false","Probably false","Probably false","Probably true","Slightly disagree","Somewhat disagree",70.6,67.7,"Agree","Disagree","Agree","Strongly agree","Agree","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","No, false",7,39,0,"Independent",0,3,0.605598834997122 +1633,50,75,"False","Strongly agree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",76.8,74.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3839d-d59b-947b-59dd-b1c4a1d8686d","72","1","17","1","1","6","3","2","48642","513","23","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","","Yes, true","No, false","Not sure",50,25,"True","Strongly agree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.2,25.6,"Disagree","Strongly disagree","Disagree","Strongly disagree","Strongly disagree","No, false","No, false","No, false","No, false","Yes, true","Not sure","No, false","Not sure","","No, false","No, false","Not sure",6,72,0,"Independent",0,0,0.702039267968476 +1634,99.9,91.9,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",80.9,83,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3862e-a791-8bc2-5518-8a15fec7967f","30","1","16","3","1","6","1","4","90001","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",0.0999999999999943,8.09999999999999,"False","Strongly agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",19.1,17,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","No, false","Not sure","No, false","Not sure",6,30,0,"Democrat",0,0,0.628981148938853 +1635,49.6,73.7,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",82.2,87.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3848f-9edb-77c6-6e5d-6440af579bec","54","2","11","1","1","6","2","3","25143","564","49","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.4,26.3,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",17.8,12.1,"Strongly disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,54,0,"Republican",0,3,0.890389101626892 +1636,67.4,65.9,"True","Agree","Probably true","Definitely false","Probably true","Not sure","Slightly disagree","Somewhat agree",30.4,17.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Disagree","Agree","Disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe385e8-c0d0-2eff-622f-7d5d2cdc4ca4","33","1","15","1","1","6","2","1","11757","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",32.6,34.1,"False","Disagree","Probably true","Definitely true","Probably false","Not sure","Slightly disagree","Somewhat disagree",30.4,17.9,"Agree","Agree","Agree","Agree","Agree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",6,33,0,"Independent",0,0,0.919167646530211 +1637,91.9,99.9,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely true","Somewhat agree","Strongly agree",1.1,2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe38363-23fc-d35b-7eec-4abfa7c0b56e","57","2","5","1","1","2","1","2","48091","505","23","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",8.09999999999999,0.0999999999999943,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",1.1,2,"Strongly disagree","Agree","Disagree","Disagree","Disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false",2,57,0,"Democrat",0,1,0.645133408704056 +1638,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Probably true","Strongly agree","Strongly disagree",50,50.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3845a-0ba6-88b2-a0ac-c5ac82315f78","54","2","1","1","1","1","1","3","38344","639","43","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Probably false","Strongly agree","Strongly disagree",50,50.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",1,54,0,"Democrat",0,0,1.52658135748604 +1639,12,91.3,"False","Agree","Definitely true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",15.7,28.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe3844f-1c7c-05d9-e74d-0992bd39e6df","73","1","8","1","1","8","2","4","89113","839","29","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",12,8.7,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.7,28.7,"Strongly disagree","Strongly agree","Disagree","Strongly disagree","Strongly agree","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true",8,73,1,"Republican",0,0,1.34733039815278 +1640,50.3,99.9,"False","Agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",85.3,88.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe384e8-4775-a519-11ba-a7ccfe62dcdf","51","2","4","2","1","6","1","3","36079","606","1","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","No, false",50.3,99.9,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",14.7,11.7,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",6,51,0,"Democrat",0,0,0.781904367900328 +1641,50,75.4,"Not sure","Agree","Definitely true","Probably true","Definitely true","Definitely true","Somewhat agree","Somewhat disagree",75.1,50,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe383fe-9f46-32f8-c0e4-431d0ea479e2","81","1","6","1","1","4","3","2","49036","563","23","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Not sure",50,75.4,"Not sure","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",24.9,50,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Not sure","No, false","Not sure","No, false","Not sure",4,81,0,"Independent",0,2,1.04464351786682 +1642,49.8,78.6,"False","Disagree","Probably true","Definitely false","Not sure","Definitely true","Slightly disagree","Strongly disagree",77.9,87.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe385c7-2cbd-180d-4bc8-4e784daa91ec","59","2","2","1","1","4","1","2","48101","505","23","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure",50.2,21.4,"False","Disagree","Probably false","Definitely false","Not sure","Definitely false","Slightly agree","Strongly disagree",22.1,12.1,"Disagree","Neither agree nor disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Not sure",4,59,0,"Democrat",1,0,0.645133408704056 +1643,66.7,77.2,"False","Disagree","Definitely true","Probably true","Definitely false","Definitely true","Strongly disagree","Somewhat disagree",79.9,90.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe38404-5266-22cb-e460-a68a4b21a88e","51","2","6","1","1","6","2","2","61412","682","14","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false",33.3,22.8,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",20.1,9.90000000000001,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",6,51,0,"Republican",0,0,1.66544152049953 +1644,49.9,99.9,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",52.9,76.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe38650-e61f-fca6-f5ef-ef647317c8a7","50","2","6","1","1","4","1","1","19064","504","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false",49.9,99.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",47.1,23.4,"Agree","Strongly agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",4,50,0,"Democrat",0,0,0.631126486177329 +1645,78.8,98.7,"True","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly agree",65,56.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe38631-724c-b6a7-c3c0-a83129dcd8af","46","2","10","1","1","6","1","1","07311","501","31","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","No, false","Not sure","No, false",78.8,98.7,"False","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",35,43.3,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",6,46,0,"Democrat",0,0,0.631126486177329 +1646,94.5,61.6,"True","Agree","Definitely true","Probably true","Definitely true","Probably true","Strongly agree","Somewhat agree",75.9,92.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe386b4-3669-865b-eb06-ed0c747e7f45","35","1","22","1","1","6","2","1","10001","501","33","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure",5.5,38.4,"False","Agree","Definitely true","Probably false","Definitely false","Probably true","Strongly disagree","Somewhat agree",75.9,92.5,"Strongly disagree","Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure",6,35,0,"Republican",0,0,0.901138905289622 +1647,12.3,57.6,"False","Agree","Probably false","Not sure","Definitely false","Definitely false","Strongly disagree","Slightly disagree",75.7,86.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Disagree","Not vote in the presidential election","5fe38688-6a07-5e99-b919-c08817c2a12a","31","1","19","1","1","4","2","3","30549","524","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","No, false","Yes, true",12.3,57.6,"False","Agree","Probably true","Not sure","Definitely false","Definitely false","Strongly agree","Slightly disagree",24.3,13.8,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","No, false","No, false",4,31,0,"Independent",0,2,1.494140949244 +1648,0.1,99.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Probably true","Definitely false","Strongly agree","Strongly agree",75.7,73.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe38414-1682-3e3f-db88-a5a32c54c45a","79","2","19","1","1","7","2","3","37058","659","43","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true",0.1,99.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Probably true","Definitely false","Strongly disagree","Strongly agree",75.7,73.9,"Strongly agree","Strongly agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false","No, false","No, false","No, false",7,79,1,"Republican",0,0,0.766530426783843 +1649,55.8,35.5,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely true","Slightly agree","Strongly agree",77.6,19.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3862f-d2de-5e0c-40a8-782894974385","39","1","4","2","1","2","3","3","23666","544","47","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",44.2,64.5,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely true","Slightly agree","Strongly disagree",77.6,19.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,39,0,"Democrat",0,0,0.750278089496237 +1650,87.6,95.4,"True","Strongly agree","Probably true","Probably false","Definitely false","Probably true","Strongly agree","Slightly agree",35.5,59.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Strongly agree","Agree","Neither agree nor disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe386df-96fc-e788-4936-98b2184cb1ef","32","2","2","1","2","6","3","1","18109","504","39","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true",87.6,95.4,"True","Strongly agree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Slightly agree",35.5,59.3,"Strongly disagree","Agree","Neither agree nor disagree","Agree","Agree","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true",6,32,0,"Independent",0,1,1.36494488847838 +1651,50.7,57.8,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",66.2,59.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3876f-6e81-e4ef-f7cd-589417195b41","23","1","9","6","1","5","1","1","01602","506","22","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.3,42.2,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",33.8,40.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,23,0,"Democrat",1,0,0.433680239961177 +1652,50,14.3,"Not sure","Agree","Definitely true","Probably true","Probably true","Definitely false","Somewhat agree","Somewhat disagree",78.7,78.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe38700-d961-5e90-d476-0b8003fae52f","25","2","11","1","1","2","2","2","57069","725","42","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure",50,85.7,"Not sure","Agree","Definitely false","Probably true","Probably false","Definitely false","Somewhat disagree","Somewhat disagree",21.3,21.4,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Agree","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure",2,25,0,"Republican",0,0,0.761082262610781 +1653,50.1,44.5,"False","Disagree","Definitely true","Not sure","Definitely true","Definitely true","Slightly agree","Slightly agree",25.7,31.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe38563-b268-3821-cb09-46330038c011","80","2","4","1","1","1","2","4","95422","807","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Not sure",50.1,55.5,"True","Agree","Definitely false","Not sure","Definitely false","Definitely false","Slightly agree","Slightly agree",25.7,31.2,"Agree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure",1,80,0,"Republican",0,0,1.07856128262739 +1654,48.2,55.6,"Not sure","Disagree","Not sure","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly agree",10.3,9.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe38575-e272-1b04-7e01-45877837f44b","65","2","10","1","1","5","2","2","47960","527","15","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","No, false",48.2,44.4,"Not sure","Agree","Not sure","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",10.3,9.3,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure","No, false",5,65,0,"Republican",0,0,0.83625520070175 +1655,50,79,"Not sure","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly agree",47,48,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe38639-1db5-8aa5-ea98-0dbb89f3ed1e","19","2","11","1","1","2","1","1","06450","533","7","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure",50,79,"Not sure","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",47,48,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","Not sure",2,19,0,"Democrat",0,0,0.454844440982363 +1656,49.8,59.8,"False","Neither agree nor disagree","Probably false","Probably false","Definitely false","Not sure","Somewhat disagree","Somewhat disagree",66.7,36.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe38710-952d-b2f7-3db7-38d6db60c345","32","2","1","1","1","2","2","3","23805","556","47","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure",50.2,59.8,"False","Neither agree nor disagree","Probably false","Probably true","Definitely false","Not sure","Somewhat agree","Somewhat agree",66.7,36.5,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure",2,32,0,"Other",0,0,1.19608566751863 +1657,50,97.6,"False","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.1,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe385db-7f39-2cd7-e59b-7af086d135b2","70","2","10","1","1","5","1","2","53227","617","50","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure",50,97.6,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.1,15,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure",5,70,0,"Democrat",0,1,0.561994574124504 +1658,99.4,99.2,"True","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",20.3,19.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Not vote in the presidential election","5fe38709-e095-9b25-642a-4c0b51008a2f","49","2","5","1","1","2","1","3","76837","661","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",99.4,99.2,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",20.3,19.6,"Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true","No, false",2,49,0,"Democrat",0,0,1.52658135748604 +1659,51.6,74.1,"True","Agree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",72.7,71.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe386e0-fbaf-80d5-ea61-b916a103642a","51","2","14","1","1","6","1","2","62901","632","14","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",51.6,25.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",27.3,28.4,"Agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure",6,51,0,"Democrat",0,2,0.65280362851795 +1660,99.9,99.9,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",100,100,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3881c-3a19-94c9-d291-9eb3b877777f","44","1","21","2","1","7","1","1","10013","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",99.9,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",100,100,"Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true",7,44,0,"Democrat",1,1,0.791344418797853 +1661,62.5,73.3,"True","Disagree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",65.5,15.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe387f0-0360-de69-de79-2ed35a7888c7","41","1","19","1","1","7","2","3","31407","507","11","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",62.5,73.3,"True","Agree","Probably true","Probably true","Probably false","Probably false","Somewhat disagree","Somewhat disagree",34.5,84.5,"Disagree","Agree","Strongly agree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",7,41,0,"Republican",0,0,0.854374859000727 +1662,50.3,99.9,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Slightly agree","Strongly disagree",17.7,11.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3873d-b539-28c0-f572-b92cd0d970d9","50","2","1","1","1","2","3","2","49721","540","23","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","No, false","Not sure",50.3,0.0999999999999943,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly disagree","Strongly disagree",17.7,11.3,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure",2,50,0,"Independent",0,0,0.65280362851795 +1663,50.8,59.5,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely true","Strongly agree","Strongly disagree",30.7,17.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Disagree","Disagree","Disagree","Not vote in the presidential election","5fe38850-4f1f-dd1f-aa29-7bd0fa4f6678","29","2","4","1","1","4","2","3","79938","765","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure",50.8,40.5,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Definitely false","Strongly disagree","Strongly disagree",30.7,17.2,"Disagree","Strongly disagree","Disagree","Disagree","Disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure",4,29,0,"Republican",0,1,1.19608566751863 +1664,50,75.1,"True","Agree","Definitely false","Definitely false","Definitely false","Definitely true","Somewhat agree","Strongly disagree",24.9,53.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe38793-5515-76ba-394b-0b5f33fb9d0d","57","2","12","1","1","4","1","1","15663","508","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",50,24.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",24.9,53.1,"Disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",4,57,0,"Democrat",0,1,0.623710965386887 +1665,88,50,"False","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly agree",26,53.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe3876a-383c-a764-bc0b-2478233bf2e2","72","2","11","1","1","5","3","2","57078","725","42","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",12,50,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly agree",26,53.5,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true",5,72,0,"Independent",0,0,0.83625520070175 +1666,68.3,60,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly disagree","Strongly agree",94.6,94.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Vote for a different candidate","5fe387c1-2612-e1b4-1670-5cefd3e4cc06","68","2","1","16","1","1","3","4","99926","747","2","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",68.3,40,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",5.40000000000001,5.09999999999999,"Disagree","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure","Not sure",1,68,0,"Independent",0,0,0.311187915334483 +1667,49.8,25.4,"True","Agree","Probably false","Probably true","Definitely false","Definitely true","Somewhat agree","Somewhat agree",75.1,75.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe3874e-7e96-275a-52e5-bfdec6048721","55","2","4","1","1","6","2","4","85224","753","3","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure",50.2,74.6,"False","Agree","Probably false","Probably true","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",24.9,24.5,"Strongly disagree","Strongly disagree","Agree","Disagree","Agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Not sure",6,55,1,"Republican",0,1,1.23811856696587 +1668,50,25,"False","Strongly disagree","Definitely false","Not sure","Definitely false","Definitely false","Somewhat agree","Strongly agree",60.1,40.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe38714-9be2-d6fc-8a36-a3e751b763d7","74","2","19","1","1","7","2","1","08873","501","31","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Yes, true",50,25,"True","Strongly agree","Definitely false","Not sure","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",60.1,40.1,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true",7,74,1,"Republican",0,3,0.80848632469251 +1669,62.3,66.6,"True","Neither agree nor disagree","Probably false","Probably true","Definitely true","Definitely true","Slightly agree","Slightly disagree",26,17.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Strongly disagree","Vote for the Republican Donald Trump","5fe387de-f1ce-8609-7244-94679236eb26","73","1","5","1","1","5","2","3","23832","556","47","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true",37.7,33.4,"False","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Slightly disagree","Slightly disagree",26,17.6,"Disagree","Agree","Disagree","Disagree","Strongly agree","Not sure","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true",5,73,1,"Republican",0,0,0.957543870478141 +1670,88.5,75,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely false","Somewhat agree","Slightly agree",75.1,66.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe387f6-0d4f-19ad-6afe-24e6922b7ca4","35","1","22","1","1","7","1","1","10014","501","33","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure",88.5,25,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Somewhat agree","Slightly agree",24.9,33.4,"Agree","Strongly disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure",7,35,0,"Democrat",0,0,0.605598834997122 +1671,46.2,89,"True","Agree","Probably true","Definitely true","Definitely true","Probably true","Strongly agree","Strongly agree",98.3,74.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe38885-b535-f390-13e2-7488b1302112","70","1","6","1","1","2","3","3","77331","618","44","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","No, false","No, false",53.8,89,"False","Disagree","Probably false","Definitely false","Definitely false","Probably false","Strongly agree","Strongly disagree",1.7,25.5,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false",2,70,0,"Independent",0,0,0.643505067882763 +1672,50,49.8,"True","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Definitely true","Strongly agree","Somewhat agree",53.7,41.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3882d-4214-d1b5-6738-0612d52aca07","66","1","2","2","1","3","1","3","21223","512","21","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","No, false","No, false","No, false","Not sure","No, false","Yes, true","No, false","No, false","Yes, true",50,49.8,"True","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Definitely false","Strongly agree","Somewhat agree",46.3,58.7,"Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true",3,66,0,"Democrat",0,0,0.84087702041167 +1673,76.1,67,"True","Neither agree nor disagree","Probably true","Definitely false","Definitely true","Definitely false","Slightly agree","Somewhat agree",35.4,39.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe38adc-eb5f-b46c-39d5-4289d0d2a023","40","1","14","1","1","7","2","4","59701","754","27","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure",23.9,33,"False","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely false","Slightly disagree","Somewhat disagree",64.6,60.7,"Strongly agree","Disagree","Strongly disagree","Disagree","Strongly agree","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure",7,40,0,"Republican",1,0,0.807899201610574 +1674,38.8,39.5,"False","Strongly disagree","Probably false","Definitely false","Definitely true","Not sure","Strongly agree","Strongly agree",70.7,57.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe388d4-b0d5-70bb-57f9-5e2dfbd0690d","67","1","4","1","1","4","2","3","27537","560","34","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true",38.8,60.5,"True","Strongly agree","Probably true","Definitely true","Definitely false","Not sure","Strongly disagree","Strongly disagree",29.3,42.8,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",4,67,1,"Republican",0,0,0.957543870478141 +1675,90,90,"True","Disagree","Probably true","Probably true","Probably false","Definitely false","Slightly disagree","Somewhat agree",25.1,20.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe38768-f872-0d2b-541e-c96579aba1ff","63","2","4","1","1","4","2","2","67052","678","17","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","No, false","Not sure","No, false","No, false",10,90,"True","Agree","Probably false","Probably true","Probably false","Definitely false","Slightly disagree","Somewhat disagree",25.1,20.4,"Disagree","Disagree","Agree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false",4,63,0,"Republican",0,1,0.959966862697315 +1676,69.5,66.3,"Not sure","Agree","Definitely false","Definitely false","Probably true","Definitely true","Slightly agree","Slightly disagree",26.8,20.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe38b0b-1567-93da-1eb2-992878d2919e","49","1","14","2","1","5","1","2","60628","602","14","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",30.5,66.3,"Not sure","Agree","Definitely false","Definitely true","Probably false","Definitely false","Slightly agree","Slightly agree",26.8,20.1,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",5,49,0,"Democrat",0,0,1.06559544276142 +1677,27.1,60.2,"False","Strongly disagree","Probably false","Definitely true","Probably false","Not sure","Strongly disagree","Somewhat agree",90.2,85,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe38a41-f141-6104-6c7b-5480c48e6d05","68","1","5","1","1","6","2","3","25303","564","49","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","No, false",72.9,60.2,"True","Strongly disagree","Probably false","Definitely true","Probably false","Not sure","Strongly disagree","Somewhat disagree",9.8,15,"Agree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","Not sure","No, false","No, false",6,68,1,"Republican",0,0,0.957543870478141 +1678,34.2,26.7,"Not sure","Agree","Definitely true","Definitely true","Probably true","Definitely false","Slightly disagree","Somewhat agree",40.9,48.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe38895-9f5e-052c-b489-b36b1ad1c22d","60","1","2","1","1","2","2","2","43113","535","36","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure",65.8,26.7,"Not sure","Agree","Definitely false","Definitely true","Probably false","Definitely false","Slightly disagree","Somewhat disagree",40.9,48.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","No, false","Not sure",2,60,0,"Republican",0,0,1.19918316758111 +1679,49.8,33.8,"False","Strongly disagree","Probably false","Not sure","Probably true","Definitely false","Slightly agree","Strongly disagree",75.6,70.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Neither agree nor disagree","Agree","Agree","Not vote in the presidential election","5fe38ad0-531d-f0c1-07b1-bd7306bacd7a","51","1","2","1","1","6","2","3","38583","557","43","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Not sure",50.2,66.2,"True","Strongly agree","Probably false","Not sure","Probably false","Definitely false","Slightly agree","Strongly disagree",24.4,29.1,"Strongly agree","Strongly agree","Neither agree nor disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Not sure",6,51,0,"Other",0,0,1.9069936046507 +1680,1,39.7,"Not sure","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Slightly disagree",20.1,9.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Agree","Disagree","Vote for the Republican Donald Trump","5fe38a9c-2bf2-2225-d4ce-f7402db71042","51","1","1","1","1","6","1","3","25701","564","49","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure",1,60.3,"Not sure","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Slightly disagree",20.1,9.2,"Neither agree nor disagree","Agree","Disagree","Disagree","Disagree","Not sure","No, false","Not sure","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Not sure",6,51,0,"Democrat",0,2,1.11226716750253 +1681,95.8,99.9,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly agree",100,52.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe388eb-342d-321a-539c-e2b0599f57b5","40","1","7","1","1","6","1","4","90502","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure",4.2,99.9,"False","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",0,47.9,"Strongly agree","Strongly disagree","Disagree","Strongly disagree","Agree","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure",6,40,1,"Democrat",0,0,0.807899201610574 +1682,73,67.3,"False","Agree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",76.1,93.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe38525-35ee-4c93-eadc-0029ed229a5f","83","2","4","1","1","6","1","3","32159","534","10","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",27,67.3,"False","Disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23.9,6.40000000000001,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",6,83,0,"Independent",0,0,0.515136934744757 +1683,50,69.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",50.1,50,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe38bb7-b014-3545-9122-fb419b491e9f","72","1","8","1","1","6","2","3","21209","512","21","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",50,69.9,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.1,50,"Strongly disagree","Disagree","Disagree","Strongly disagree","Agree","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure",6,72,0,"Republican",0,0,0.643505067882763 +1684,50,92.4,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",69.8,78.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe385e8-cc16-9ede-0b37-acbd057b50a7","45","2","19","1","1","7","1","1","10001","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",50,7.59999999999999,"True","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly disagree",30.2,21.4,"Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true",7,45,1,"Democrat",0,2,0.631126486177329 +1685,49.8,49.8,"False","Disagree","Probably false","Probably false","Probably true","Probably true","Somewhat agree","Slightly agree",76.9,19.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe395b0-c645-a842-6dd3-78078d3f6d20","26","2","3","15","1","4","1","2","45406","542","36","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","No, false",50.2,49.8,"False","Disagree","Probably false","Probably false","Probably false","Probably true","Somewhat agree","Slightly disagree",23.1,80.1,"Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",4,26,0,"Independent",0,0,0.390393297490073 +1686,50,74.3,"False","Strongly disagree","Definitely false","Definitely false","Probably true","Definitely true","Strongly disagree","Strongly agree",16.4,19.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe39394-a349-92ee-0771-f51ef98959d8","77","1","14","1","12","6","2","3","32958","548","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",50,25.7,"True","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",16.4,19.1,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",6,77,0,"Republican",0,2,1.19371771994567 +1687,50.5,62.6,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Definitely false","Definitely true","Somewhat agree","Strongly disagree",67.5,69.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe38687-8108-76b2-5141-5c16d03e70c7","25","2","5","1","1","2","2","2","44822","510","36","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Not sure",49.5,62.6,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Somewhat agree","Strongly disagree",32.5,30.6,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","No, false","Not sure",2,25,0,"Republican",0,0,0.761082262610781 +1688,45.2,50,"True","Neither agree nor disagree","Not sure","Not sure","Definitely true","Probably false","Slightly agree","Somewhat disagree",14.8,15.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe39553-2996-7bc6-8ae2-064605f35b74","27","2","1","1","1","2","3","2","45013","515","36","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",45.2,50,"True","Neither agree nor disagree","Not sure","Not sure","Definitely false","Probably true","Slightly disagree","Somewhat agree",14.8,15.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,27,0,"Independent",0,0,1.30488343971418 +1689,34.2,77.3,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably true","Not sure","Slightly agree","Slightly agree",28.3,32.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe39627-6cf5-610e-7573-a117348f5398","24","2","1","15","2","4","3","3","28904","524","34","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",65.8,22.7,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Not sure","Slightly agree","Slightly disagree",28.3,32.4,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,24,0,"Independent",0,0,1.55773497079245 +1690,66.3,79.3,"False","Disagree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",80.9,50.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39675-a38b-430f-ff0d-775d5f6fee85","24","2","9","1","1","2","1","3","22630","511","47","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",33.7,20.7,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.1,49.1,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","No, false","No, false","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",2,24,0,"Democrat",1,0,0.431240569961491 +1691,51.3,60.3,"Not sure","Agree","Definitely false","Not sure","Definitely true","Definitely false","Strongly agree","Strongly disagree",64.5,56.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3963e-3422-f40f-49e1-06cc95223b5b","18","2","14","2","1","4","1","3","30012","524","11","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true",51.3,39.7,"Not sure","Agree","Definitely false","Not sure","Definitely false","Definitely true","Strongly agree","Strongly agree",64.5,56.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false",4,18,0,"Democrat",0,0,0.563508049350613 +1692,45.2,92.9,"False","Agree","Definitely true","Definitely false","Probably true","Definitely true","Somewhat agree","Strongly agree",93.6,75.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe395a2-8394-3ba2-32ea-2ce77342d4bd","21","1","14","4","1","6","2","4","91320","803","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true",54.8,92.9,"True","Agree","Definitely false","Definitely false","Probably false","Definitely false","Somewhat agree","Strongly agree",6.40000000000001,24.7,"Disagree","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false",6,21,0,"Republican",0,2,0.860891642155238 +1693,28.1,57.1,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly disagree","Strongly disagree",18.9,11.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe39730-88e4-1ead-8ff7-f332f9bbe6df","24","2","3","2","1","4","3","3","38116","640","43","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",71.9,57.1,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",18.9,11.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,24,0,"Other",0,1,1.43762942104787 +1694,53.3,83.4,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Definitely true","Somewhat disagree","Strongly agree",5,0.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39625-b509-3061-4d97-f9dc76e69192","67","1","9","1","1","6","2","1","11756","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",53.3,83.4,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",5,0.5,"Disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",6,67,0,"Republican",0,0,0.678727196044171 +1695,91.3,85.6,"False","Neither agree nor disagree","Definitely true","Probably true","Probably true","Not sure","Somewhat agree","Strongly agree",80.9,34.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3967a-6f65-51e9-d95d-584b8279af9e","49","2","4","1","1","2","3","4","82001","759","51","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true",8.7,14.4,"False","Neither agree nor disagree","Definitely false","Probably true","Probably false","Not sure","Somewhat disagree","Strongly disagree",19.1,65.1,"Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","No, false","Not sure","No, false","No, false",2,49,0,"Independent",0,0,2.14800546649339 +1696,49.6,86.8,"False","Neither agree nor disagree","Probably true","Definitely false","Probably true","Probably true","Strongly agree","Strongly agree",58.7,44,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe39630-cff2-82bd-0779-44e1da883fec","35","2","7","15","2","2","1","4","91345","803","5","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","No, false",50.4,13.2,"False","Neither agree nor disagree","Probably true","Definitely true","Probably false","Probably false","Strongly agree","Strongly disagree",58.7,44,"Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false",2,35,0,"Democrat",0,0,0.915703823020089 +1697,67.4,71.1,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Probably false","Strongly agree","Strongly disagree",61.3,60.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe395ee-b5ff-0c7b-4998-63e2a95df676","56","1","12","1","1","2","4","3","24120","518","47","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",32.6,71.1,"False","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",38.7,39.4,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",2,56,0,"Other",0,0,1.88458708070939 +1698,67.6,33.5,"True","Agree","Definitely true","Probably false","Probably true","Probably true","Somewhat agree","Strongly agree",25.1,10,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe39652-41f1-5afc-e452-d5368d050d91","35","2","2","1","1","2","2","3","29654","567","41","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",32.4,66.5,"True","Agree","Definitely false","Probably false","Probably true","Probably true","Somewhat disagree","Strongly disagree",25.1,10,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,35,0,"Republican",0,0,0.683941849031096 +1699,87.5,79.9,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely false","Somewhat disagree","Somewhat agree",63.8,59.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe397a0-c24c-0fa6-9842-e93fdaee364d","34","1","2","3","1","6","1","2","44405","536","36","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",87.5,79.9,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Somewhat disagree","Somewhat agree",63.8,59.4,"Strongly agree","Strongly disagree","Disagree","Agree","Agree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",6,34,0,"Democrat",1,0,0.487676282669969 +1700,75.6,49.5,"False","Disagree","Definitely true","Definitely true","Probably false","Definitely true","Strongly agree","Slightly disagree",75.6,45.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe39746-ea4f-19b8-4f0a-00e495dd2a0f","31","2","4","1","1","6","3","3","29040","546","41","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",24.4,50.5,"False","Disagree","Definitely false","Definitely true","Probably false","Definitely false","Strongly agree","Slightly disagree",75.6,45.8,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,31,0,"Democrat",0,0,0.468830069482283 +1701,50,50,"False","Agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly agree",15.5,33.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe396db-80db-bd2a-4235-e56c37ee93f2","30","2","4","1","1","6","1","2","57049","624","42","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","Not sure","No, false",50,50,"False","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",15.5,33.1,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",6,30,0,"Independent",0,1,0.511475565940556 +1702,50.9,49.8,"Not sure","Agree","Definitely true","Definitely false","Probably true","Probably false","Somewhat agree","Slightly agree",49.4,49.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Agree","Strongly agree","Agree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe39875-d492-9dd5-3374-b95ddb051485","22","2","1","1","1","2","3","3","35630","691","1","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",50.9,50.2,"Not sure","Disagree","Definitely false","Definitely true","Probably false","Probably true","Somewhat agree","Slightly disagree",50.6,50.8,"Disagree","Strongly agree","Agree","Neither agree nor disagree","Disagree","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Not sure",2,22,1,"Republican",0,0,0.641691550039753 +1703,50.1,50,"False","Agree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Slightly agree",44.1,24.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe39793-dde1-4759-fa96-f0af2ae90921","26","1","12","2","1","4","1","3","23320","544","47","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true",49.9,50,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Slightly agree",44.1,24.8,"Strongly disagree","Disagree","Disagree","Strongly disagree","Strongly disagree","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Yes, true",4,26,0,"Democrat",0,0,0.76528861612494 +1704,59.8,95.6,"Not sure","Strongly agree","Definitely false","Probably false","Probably false","Definitely false","Strongly disagree","Strongly disagree",43.4,51.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe397dc-4ed5-87c0-0f02-6b6f57a94b66","52","2","13","1","1","6","1","4","95660","862","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","No, false",59.8,4.40000000000001,"Not sure","Strongly disagree","Definitely false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",43.4,51.6,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",6,52,0,"Democrat",0,0,0.841954367861977 +1705,60.9,64.1,"True","Strongly disagree","Probably false","Definitely true","Definitely false","Probably false","Somewhat disagree","Slightly disagree",51.9,78.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe39787-c4e9-8ec9-dd8b-51b76b24dd59","34","2","11","1","1","6","2","2","49445","563","23","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true",60.9,64.1,"True","Strongly agree","Probably true","Definitely true","Definitely false","Probably true","Somewhat agree","Slightly agree",48.1,21.1,"Disagree","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false",6,34,0,"Republican",0,0,0.761082262610781 +1706,49.9,55.8,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Definitely true","Probably false","Slightly agree","Strongly disagree",23,30.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe39667-b234-e329-2336-d93f3f0bca60","26","2","10","2","1","6","2","3","33309","528","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",49.9,44.2,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Probably true","Slightly agree","Strongly disagree",23,30.1,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true",6,26,0,"Republican",1,0,0.911596565138381 +1707,49.9,21.1,"True","Strongly disagree","Not sure","Not sure","Probably true","Not sure","Somewhat agree","Strongly agree",26.1,7.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Strongly disagree","","Agree","Vote for the Democrat Joe Biden","5fe39865-bc60-ee91-a308-24eec053763c","40","1","5","2","2","4","1","3","30034","524","11","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure",49.9,78.9,"True","Strongly disagree","Not sure","Not sure","Probably false","Not sure","Somewhat disagree","Strongly disagree",26.1,7.5,"Disagree","Neither agree nor disagree","Strongly disagree","","Agree","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","No, false","Not sure",4,40,0,"Democrat",0,0,1.39178429979639 +1708,50.2,99.9,"False","Agree","Not sure","Probably false","Probably false","Probably false","Somewhat agree","Strongly agree",51.6,51.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe396c6-5bf2-9ed6-18c4-9674ad1995fa","52","1","4","2","1","6","1","3","30310","524","11","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","","No, false","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","No, false",49.8,0.0999999999999943,"True","Disagree","Not sure","Probably true","Probably false","Probably true","Somewhat agree","Strongly disagree",51.6,51.2,"Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Agree","Yes, true","","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",6,52,0,"Democrat",0,0,0.976748878611933 +1709,50.5,72.9,"True","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Slightly disagree","Somewhat agree",42.7,75.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3978c-09c8-f5a1-b208-a18073262d92","22","2","5","1","1","1","1","3","21221","512","21","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true",49.5,27.1,"True","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Slightly agree","Somewhat disagree",42.7,75.2,"Agree","Agree","Strongly disagree","Disagree","Neither agree nor disagree","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true",1,22,0,"Independent",0,0,0.431240569961491 +1710,50,99.9,"False","Disagree","Definitely true","Probably false","Definitely false","Probably false","Strongly disagree","Strongly disagree",90.3,80.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3966a-4aec-f6f3-77bb-b139ae10863d","40","2","6","2","1","6","1","3","32615","592","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,0.0999999999999943,"False","Disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",9.7,19.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,40,0,"Democrat",1,1,0.600610584934286 +1711,69.5,78.6,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",48.1,26.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe397cd-9ede-c914-8d8b-eaf5929d6634","26","2","1","1","1","4","1","2","60674","602","14","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",69.5,78.6,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",48.1,26.7,"Agree","Agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true",4,26,0,"Democrat",1,0,0.511475565940556 +1712,67.8,82,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Probably false","Somewhat agree","Somewhat agree",82.7,76.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Agree","Vote for a different candidate","5fe398d7-13e1-fb9f-5432-849ff391a5de","23","2","10","1","2","4","3","4","80201","751","6","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure",32.2,82,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Probably true","Somewhat disagree","Somewhat disagree",17.3,23.6,"Disagree","Disagree","Agree","Disagree","Disagree","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure",4,23,0,"Independent",0,0,0.63312848485042 +1713,49.8,49.8,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Probably false","Slightly disagree","Slightly disagree",53.1,58.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Disagree","Not vote in the presidential election","5fe397e4-0d03-045f-f0cb-fe761611079b","30","2","2","1","1","4","2","3","33823","539","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",49.8,50.2,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably false","Slightly disagree","Slightly disagree",46.9,41.9,"Agree","Disagree","Agree","Disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",4,30,0,"Republican",0,0,1.19608566751863 +1714,50.5,75.5,"True","Disagree","Definitely true","Probably true","Definitely false","Probably true","Slightly agree","Slightly agree",87.7,85.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe396f2-79bd-cac1-612a-4808ebdab77e","44","2","6","15","2","6","3","4","81146","751","6","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true",49.5,24.5,"False","Disagree","Definitely false","Probably false","Definitely false","Probably false","Slightly disagree","Slightly disagree",12.3,14.5,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true",6,44,0,"Other",1,0,0.915703823020089 +1715,70.6,96.8,"Not sure","Neither agree nor disagree","Not sure","Probably false","Definitely true","Definitely false","Strongly agree","Somewhat agree",16.9,20.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe39897-245a-3a5c-e9f7-f822099d46cf","34","2","1","15","2","6","2","4","84025","770","45","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true",70.6,3.2,"Not sure","Neither agree nor disagree","Not sure","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",16.9,20.1,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true",6,34,0,"Independent",0,0,0.934023958996174 +1716,49.9,49.8,"False","Neither agree nor disagree","Definitely true","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly disagree",50.4,10.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3973d-9fa3-fb3e-1457-bc27a389ed86","41","2","8","1","1","6","1","3","34761","534","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.9,50.2,"False","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.4,10.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,41,0,"Democrat",1,0,0.459634341107367 +1717,20.2,76,"False","Neither agree nor disagree","Definitely false","Probably false","Probably true","Definitely false","Slightly disagree","Slightly disagree",14.2,59.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for a different candidate","5fe3980b-9a98-4568-706a-90eb62c94258","18","2","1","1","1","2","1","3","34711","534","10","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",20.2,76,"False","Neither agree nor disagree","Definitely false","Probably false","Probably false","Definitely false","Slightly agree","Slightly disagree",14.2,59.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,18,0,"Independent",1,0,0.242564229228481 +1718,75.6,99.9,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly disagree",70.4,85.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe396e2-d3d8-7acd-f032-53bf84cd5652","20","2","1","4","1","2","3","3","70816","716","19","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",75.6,0.0999999999999943,"False","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",29.6,14.1,"Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Disagree","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",2,20,0,"Independent",0,0,0.329152435286286 +1719,42.9,94.4,"True","Disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",72,79.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe398cb-8551-ead4-b05c-75707008aaa0","34","2","1","2","1","2","1","3","32211","561","10","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false",42.9,94.4,"False","Agree","Definitely true","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",28,20.2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false",2,34,1,"Democrat",0,NA,0.612626771072269 +1720,75,75,"True","Neither agree nor disagree","Definitely true","Probably true","Probably true","Definitely true","Somewhat agree","Somewhat disagree",14.9,25,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe39884-c63e-d402-03ef-810e49b5f84c","18","2","1","1","1","1","3","3","73072","650","37","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false",25,75,"False","Neither agree nor disagree","Definitely false","Probably false","Probably false","Definitely false","Somewhat agree","Somewhat disagree",14.9,25,"Neither agree nor disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true",1,18,0,"Independent",0,0,0.242564229228481 +1721,64.4,66.5,"True","Agree","Probably false","Probably false","Definitely true","Not sure","Strongly agree","Strongly agree",39,21,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39865-4cac-14f0-5904-6c26d7e3fe06","66","2","1","15","2","2","1","2","64054","616","26","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",35.6,33.5,"True","Disagree","Probably false","Probably true","Definitely false","Not sure","Strongly agree","Strongly disagree",39,21,"Disagree","Agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",2,66,0,"Democrat",0,0,0.795718129572842 +1722,51.5,30.9,"True","Agree","Not sure","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",7.1,10.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3978c-d725-488e-626f-c42bad7d8faa","79","2","2","1","1","2","2","2","49451","563","23","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",48.5,30.9,"True","Agree","Not sure","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",7.1,10.1,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",2,79,0,"Republican",0,0,0.83625520070175 +1723,51.2,86.4,"Not sure","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely true","Slightly agree","Strongly disagree",18.1,50.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe39971-eef0-5229-bea5-1a9ee4faa06a","70","1","1","16","1","5","4","2","44041","510","36","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","No, false",48.8,86.4,"Not sure","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",18.1,50.5,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Agree","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",5,70,0,"Democrat",1,1,0.535844609284001 +1724,20.4,75.6,"Not sure","Disagree","Probably false","Probably false","Definitely true","Probably true","Slightly agree","Slightly agree",25.3,35.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe39973-ab1b-0896-afff-a2e7db14ed00","20","1","8","15","2","6","2","3","32712","534","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure",20.4,24.4,"Not sure","Disagree","Probably false","Probably true","Definitely true","Probably false","Slightly agree","Slightly disagree",25.3,35.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure",6,20,0,"Independent",0,0,1.13496568996245 +1725,34,65.3,"False","Agree","Definitely true","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat agree",91.8,94.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe3991c-4e21-3960-fa42-e31afa6c9202","43","2","3","1","1","2","2","3","32008","592","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",34,65.3,"False","Agree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat disagree",8.2,5.09999999999999,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",2,43,0,"Republican",0,0,0.683941849031096 +1726,72.3,37.5,"True","Agree","Probably false","Probably true","Probably true","Definitely false","Slightly agree","Somewhat agree",66.6,72.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39a41-d4ed-4ba7-c0bc-b89061963b9d","31","1","20","1","2","6","1","4","90025","803","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure",72.3,62.5,"True","Disagree","Probably true","Probably false","Probably true","Definitely true","Slightly disagree","Somewhat agree",66.6,72.6,"Neither agree nor disagree","Disagree","Agree","Strongly agree","Neither agree nor disagree","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure",6,31,0,"Democrat",0,0,1.52865625404487 +1727,50,50.1,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly disagree","Strongly disagree",50.1,49.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe397ef-e658-0186-26f7-78318f50602d","40","1","19","15","2","6","1","3","33132","528","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50.1,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly agree",49.9,50.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,40,0,"Democrat",1,0,0.812959446096867 +1728,50,50,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely true","Probably false","Strongly agree","Somewhat agree",65.8,76.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39ac1-98e9-d8be-151e-d742098601fc","21","2","8","2","1","2","1","3","31206","503","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Somewhat disagree",34.2,23.1,"Disagree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",2,21,0,"Independent",0,1,0.563508049350613 +1729,41.2,37.2,"Not sure","Disagree","Definitely false","Probably true","Definitely false","Definitely true","Strongly disagree","Strongly agree",60.5,11.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe39be6-ad1c-8aa5-0be7-e5b7647ccf8b","27","1","17","15","2","6","1","4","95816","862","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","No, false","Not sure","No, false",41.2,37.2,"Not sure","Disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",39.5,88.2,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true",6,27,0,"Democrat",0,0,1.16677549326913 +1730,90.3,40.1,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely false","Slightly disagree","Slightly disagree",40.8,51.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Disagree","Strongly agree","Vote for the Republican Donald Trump","5fe39a1c-073a-481c-5db0-2834dfde71dc","67","2","13","1","1","6","2","3","73170","650","37","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",90.3,59.9,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly disagree","Slightly disagree",40.8,51.1,"Disagree","Agree","Disagree","Disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Not sure",6,67,1,"Independent",0,1,0.766530426783843 +1731,0.2,0.1,"False","Strongly agree","Probably true","Definitely false","Probably false","Definitely true","Strongly disagree","Slightly agree",52.8,22.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe3987a-9ad1-b268-fc4b-c151cb847678","58","1","9","1","1","6","2","3","40701","541","18","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",0.2,99.9,"False","Strongly disagree","Probably false","Definitely true","Probably false","Definitely false","Strongly disagree","Slightly agree",52.8,22.5,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","No, false",6,58,1,"Republican",0,0,1.09919840793407 +1732,8.4,95.2,"True","Disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly disagree","Strongly agree",3.2,3.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39b48-af83-29da-f639-34c8eff1f6e5","57","2","13","1","1","2","1","2","53548","669","50","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","No, false",91.6,4.8,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",3.2,3.8,"Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false",2,57,0,"Democrat",0,0,0.645133408704056 +1733,50,50,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Not sure","Slightly disagree","Strongly agree",75.1,75.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe39bab-8057-79b6-3491-c787a4bf72f6","67","2","13","1","1","4","2","2","63301","609","26","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably true","Probably false","Not sure","Slightly disagree","Strongly disagree",24.9,24.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,67,0,"Republican",0,0,1.43376822240912 +1734,23.2,12.4,"True","Disagree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Strongly disagree",57.2,79.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe39dcc-c163-86a6-74f8-b1e78ee71992","25","1","6","2","2","6","1","2","60008","602","14","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Not sure","No, false","Not sure","Not sure",23.2,12.4,"False","Disagree","Probably true","Probably true","Probably true","Probably true","Somewhat disagree","Strongly disagree",42.8,20.4,"Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",6,25,0,"Democrat",0,0,1.54876082733612 +1735,49.7,75.4,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Not sure","Somewhat agree","Somewhat disagree",61.8,65.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39d8a-ea50-a808-370e-b988cf56cb97","32","2","1","1","1","6","1","2","65026","604","26","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure",49.7,24.6,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably false","Not sure","Somewhat agree","Somewhat disagree",38.2,34.8,"Agree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure",6,32,0,"Democrat",0,0,0.511475565940556 +1736,72.5,81.3,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Definitely true","Slightly agree","Slightly disagree",74.3,42.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Agree","Strongly agree","Neither agree nor disagree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe39cae-9de4-0b65-699a-248a048677d3","33","2","11","2","14","6","2","3","29607","567","41","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false",72.5,18.7,"False","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Slightly agree","Slightly agree",74.3,42.1,"Disagree","Strongly disagree","Neither agree nor disagree","Agree","Strongly agree","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false",6,33,0,"Democrat",0,1,1.1364377202936 +1737,50,30.8,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Definitely true","Somewhat agree","Slightly disagree",40.5,40.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe39bf4-af70-68df-798d-81155cebff40","59","2","4","1","1","2","2","3","76450","662","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","No, false","Not sure",50,69.2,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Slightly disagree",59.5,59.8,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","No, false","Not sure",2,59,0,"Republican",0,0,1.50864454760297 +1738,49.9,62.4,"True","Disagree","Probably false","Definitely false","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",75.5,75.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for a different candidate","5fe39dc1-7048-e67b-0321-373f3bf831d4","36","2","1","1","1","6","1","1","05086","523","46","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure",49.9,37.6,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",24.5,24.8,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",6,36,0,"Independent",0,0,0.272686032891106 +1739,46.9,67.1,"Not sure","Disagree","Definitely true","Probably false","Definitely false","Definitely true","Strongly disagree","Strongly disagree",32.6,78.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39bf3-1967-74b8-1e98-61bcb6bb3954","59","1","4","1","1","6","1","3","35010","630","1","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true",46.9,67.1,"Not sure","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",32.6,78.1,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true",6,59,0,"Democrat",0,0,0.73870218161496 +1740,69.3,99.9,"True","Strongly agree","Probably true","Definitely false","Definitely false","Definitely false","Somewhat agree","Slightly agree",79.7,72.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe39dd2-81b6-4578-244c-51c68047bea2","19","1","1","1","1","4","1","2","65560","619","26","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","No, false","Not sure","Yes, true",69.3,99.9,"True","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Slightly agree",20.3,27.4,"Strongly agree","Strongly agree","Disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true",4,19,0,"Democrat",1,0,0.587703567021614 +1741,50,50,"True","Agree","Definitely true","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly agree",80.8,76.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39e2d-c401-8eb8-e31a-7bc88483c863","51","2","9","1","1","6","1","3","78741","635","44","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure",50,50,"False","Agree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.2,23.1,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","No, false","No, false","No, false","Not sure","Not sure","No, false","No, false","Not sure","No, false","No, false","No, false","Not sure",6,51,0,"Democrat",1,0,0.59837456742152 +1742,41,60.7,"False","Strongly disagree","Definitely true","Probably true","Definitely false","Probably false","Strongly agree","Strongly agree",1.1,1.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Agree","Disagree","Not vote in the presidential election","5fe39c0a-7b79-db64-fe66-385d8a716b98","41","2","2","1","1","4","1","3","23462","544","47","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",59,60.7,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",1.1,1.9,"Disagree","Disagree","Disagree","Disagree","Disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",4,41,0,"Independent",0,1,1.17262539987032 +1743,54.4,38.5,"False","Agree","Definitely true","Probably false","Probably true","Probably true","Somewhat disagree","Somewhat agree",77.6,76.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe39c17-b162-38c5-ea12-7ed374fac237","40","2","1","1","1","4","1","3","40744","541","18","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false",54.4,38.5,"True","Agree","Definitely false","Probably false","Probably true","Probably false","Somewhat agree","Somewhat disagree",22.4,23.1,"Disagree","Agree","Disagree","Disagree","Disagree","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false",4,40,0,"Democrat",0,0,0.459634341107367 +1744,50,99.9,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely true","Slightly disagree","Strongly disagree",50.5,57.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe39ccc-dc79-4074-7047-7c02a22bfe81","25","2","1","15","1","2","2","3","38230","632","43","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Not sure",50,99.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely true","Slightly agree","Strongly agree",49.5,42.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",2,25,0,"Republican",0,1,0.912934769356083 +1745,75.7,60.8,"True","Strongly disagree","Definitely false","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly disagree",15.7,17.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3996c-0a7e-269e-4b56-59954bcd39b9","82","1","7","1","2","4","2","4","87112","790","32","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure",24.3,39.2,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",15.7,17.3,"Disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Not sure",4,82,0,"Republican",0,0,2.49933100944815 +1746,95.8,79.5,"True","Agree","Definitely false","Probably true","Definitely false","Probably false","Somewhat agree","Strongly disagree",51.6,91.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Strongly agree","Strongly disagree","Disagree","Agree","Disagree","Vote for the Republican Donald Trump","5fe39cd7-4d88-7555-58e7-9a2dce620b7b","38","1","5","1","1","2","2","3","42757","736","18","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true",95.8,20.5,"True","Agree","Definitely false","Probably true","Definitely false","Probably false","Somewhat disagree","Strongly disagree",48.4,8.5,"Strongly agree","Strongly agree","Agree","Agree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false","Yes, true",2,38,0,"Republican",0,0,0.854374859000727 +1747,71,67,"False","Disagree","Definitely false","Probably true","Definitely true","Not sure","Strongly agree","Strongly disagree",68.9,68.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe396f0-7dc5-aa02-c12b-0a118833a5b0","44","2","20","1","1","7","2","3","77080","618","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",29,33,"False","Disagree","Definitely false","Probably false","Definitely false","Not sure","Strongly agree","Strongly disagree",31.1,31.1,"Disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",7,44,0,"Republican",0,1,0.459634341107367 +1748,65.7,30.8,"Not sure","Disagree","Probably true","Probably true","Definitely true","Probably true","Slightly agree","Somewhat disagree",66.9,94.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe399dc-614f-f66d-6fbc-128c3e5a2312","23","2","18","1","1","2","1","2","63124","609","26","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Not sure","No, false","No, false","Yes, true",34.3,69.2,"Not sure","Disagree","Probably true","Probably true","Definitely false","Probably false","Slightly agree","Somewhat agree",33.1,5.2,"Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No, false","No, false","No, false","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false","No, false","Yes, true",2,23,0,"Democrat",0,0,0.47046686834987 +1749,75,99.9,"Not sure","Strongly agree","Probably true","Definitely true","Definitely true","Definitely true","Strongly agree","Somewhat disagree",59.5,45.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for a different candidate","5fe39e1e-3ed6-c040-f0bd-efb4315c5c65","18","1","9","3","2","2","3","4","94121","807","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","No, false","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","No, false","No, false",25,99.9,"Not sure","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",40.5,54.7,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true",2,18,0,"Other",0,0,0.603668613918122 +1750,59.1,68.7,"Not sure","Strongly disagree","Probably true","Not sure","Definitely false","Probably false","Somewhat disagree","Strongly disagree",22.5,9.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Agree","Agree","Agree","Not vote in the presidential election","5fe383e7-211f-da17-9e9b-867cccb722bb","34","1","1","1","1","4","3","4","98023","819","48","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false",59.1,68.7,"Not sure","Strongly disagree","Probably true","Not sure","Definitely false","Probably false","Somewhat agree","Strongly agree",22.5,9.9,"Strongly agree","Strongly disagree","Disagree","Agree","Disagree","Yes, true","Not sure","Not sure","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",4,34,0,"Independent",0,0,2.10235957025767 +1751,87.7,86.8,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Somewhat agree","Somewhat agree",84.5,82.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe39f04-ffab-d7f2-7b1e-55153b591e9f","30","1","20","1","2","7","1","3","31302","507","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",87.7,13.2,"True","Agree","Definitely false","Probably false","Definitely true","Definitely false","Somewhat disagree","Somewhat agree",15.5,17.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",7,30,0,"Democrat",0,0,1.08641163899781 +1752,74.6,71.6,"False","Disagree","Probably true","Probably false","Probably true","Probably false","Somewhat agree","Somewhat agree",51.4,51,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a04c-42c0-391a-d077-49250ff2981b","30","2","13","1","1","-3105","1","2","60459","602","14","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",74.6,71.6,"False","Disagree","Probably false","Probably true","Probably false","Probably false","Somewhat disagree","Somewhat agree",51.4,51,"Disagree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",-3105,30,0,"Democrat",0,0,0.511475565940556 +1753,62.3,56.8,"Not sure","Neither agree nor disagree","Definitely true","Probably true","Probably true","Definitely false","Strongly agree","Strongly disagree",11.9,12,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe39fe4-fa91-48c3-72d2-e4339aa8fdd6","41","2","14","1","1","6","3","3","37040","659","43","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",37.7,56.8,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Probably false","Definitely true","Strongly agree","Strongly disagree",11.9,12,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",6,41,0,"Independent",0,0,0.683941849031096 +1754,63,50.5,"True","Agree","Probably false","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",39.9,44.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly agree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe3a041-5e3c-25ef-18fb-b34a73da3e45","29","2","20","1","1","7","1","1","10001","501","33","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",37,50.5,"False","Agree","Probably false","Probably false","Probably false","Probably false","Somewhat agree","Somewhat disagree",60.1,55.2,"Strongly disagree","Agree","Disagree","Agree","Agree","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false",7,29,0,"Democrat",0,0,0.494491394648778 +1755,62.6,73.5,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",92.3,59.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe39de6-ac89-a89d-fbbd-89085c97aebf","47","1","22","2","1","6","1","2","61614","675","14","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",62.6,73.5,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",7.7,40.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","No, false","No, false","Not sure","No, false","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",6,47,0,"Independent",0,2,1.06559544276142 +1756,60.8,72.6,"True","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Somewhat agree","Slightly agree",41.7,34,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe3a037-73c0-2f01-32cf-8ba74e55ee3b","31","2","19","4","1","7","2","3","78660","635","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false",60.8,27.4,"True","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Somewhat agree","Slightly disagree",41.7,34,"Disagree","Disagree","Disagree","Agree","Agree","Not sure","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Not sure","No, false","Not sure","No, false","Yes, true",7,31,0,"Republican",0,3,0.532475498370776 +1757,55.7,0.1,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely true","Strongly agree","Strongly disagree",76,5.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe39edd-81eb-8d04-3b6b-36cf9701173c","28","1","19","1","1","7","2","1","15203","508","39","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true",55.7,0.1,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",24,94.3,"Disagree","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false",7,28,1,"Republican",0,3,0.919167646530211 +1758,50,99.9,"False","Disagree","Definitely true","Definitely false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",75.6,96.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe39e91-0a37-0065-8930-2930bc2012a2","61","2","8","1","1","4","1","4","93004","803","5","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false",50,99.9,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",24.4,3.59999999999999,"Agree","Neither agree nor disagree","Disagree","Disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",4,61,0,"Democrat",0,1,0.832061691423535 +1759,94.1,50,"False","Agree","Probably true","Probably true","Probably true","Definitely false","Somewhat agree","Somewhat disagree",72,92.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Agree","Neither agree nor disagree","Disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe3a050-a5cf-6655-cbb0-74e58d30e49c","19","1","11","1","1","1","1","4","90011","803","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",5.90000000000001,50,"False","Agree","Probably false","Probably false","Probably false","Definitely false","Somewhat disagree","Somewhat disagree",28,7.90000000000001,"Disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Not sure",1,19,0,"Democrat",0,2,1.12790112616122 +1760,65.5,90.1,"False","Agree","Probably true","Probably true","Probably true","Definitely false","Strongly agree","Strongly agree",65.8,90.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe39ec8-fc05-2973-b9fe-57327c16940d","67","2","5","2","1","6","1","3","78216","641","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true",65.5,9.90000000000001,"False","Disagree","Probably false","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",34.2,9.5,"Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",6,67,0,"Democrat",0,0,0.673136595827227 +1761,93.4,78.5,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",70.4,75.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a048-37b2-593b-6293-fa8ffc4fd88c","40","1","23","1","1","7","3","4","81102","751","6","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","","No, false","No, false","Yes, true","No, false",6.59999999999999,78.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",29.6,24.5,"Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","","Yes, true","No, false","Yes, true","Yes, true",7,40,0,"Independent",0,0,0.807899201610574 +1762,99.1,94.1,"","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly disagree","Somewhat disagree",4.9,3.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Agree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe3a048-e8e9-e94c-fc7a-a19588fca880","40","1","20","1","1","8","1","2","60007","602","14","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",99.1,94.1,"","Strongly disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat agree",4.9,3.2,"Disagree","Strongly disagree","Disagree","Agree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true",8,40,1,"Democrat",0,1,0.932090096130861 +1763,75.8,83.5,"Not sure","Agree","Probably true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly agree",72.8,44.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe3a071-1c4b-ebde-2e9b-b8eb568ecde8","26","2","2","1","16","4","1","1","19008","504","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",75.8,16.5,"Not sure","Disagree","Probably true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",27.2,55.8,"Disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",4,26,0,"Democrat",1,3,0.917293692954153 +1764,30.2,72.9,"True","Neither agree nor disagree","Probably true","Probably true","Definitely true","Probably true","Strongly disagree","Strongly disagree",38.7,41.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe39d71-55b1-e548-fec7-5031150b0916","21","2","5","2","1","6","3","1","11412","501","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","No, false",30.2,72.9,"False","Neither agree nor disagree","Probably true","Probably true","Definitely false","Probably false","Strongly agree","Strongly disagree",38.7,41.2,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Agree","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",6,21,0,"Independent",0,0,0.594351555835364 +1765,50,50,"True","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely false","Slightly agree","Somewhat disagree",52.2,49.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe39fd5-b9c5-85ba-2894-837e666eeed6","26","2","2","1","1","2","4","3","30157","524","11","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",50,50,"False","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Definitely false","Slightly agree","Somewhat disagree",47.8,50.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",2,26,0,"Independent",0,0,1.19608566751863 +1766,39.8,64.4,"False","Agree","Probably false","Probably false","Definitely false","Probably true","Somewhat agree","Strongly disagree",65,85.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe39e71-3d49-9d37-3001-5bce73f9d564","28","1","1","1","1","2","2","3","37211","659","43","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure",39.8,64.4,"False","Agree","Probably false","Probably false","Definitely false","Probably false","Somewhat agree","Strongly disagree",35,14.4,"Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",2,28,0,"Independent",0,1,0.871468009862344 +1767,49.9,40,"True","Disagree","Definitely false","Probably false","Probably true","Definitely false","Slightly agree","Somewhat agree",61.2,80.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3a11b-eec5-2f89-7dcc-39c5e0bc55a2","19","1","-3105","9","1","2","4","1","01108","543","22","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure",50.1,60,"True","Agree","Definitely false","Probably false","Probably false","Definitely false","Slightly agree","Somewhat agree",38.8,19.1,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure",2,19,0,"Independent",0,0,1.1064109430447 +1768,88.4,88.1,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably true","Slightly agree","Slightly agree",75,77.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a05f-0cc3-1269-d291-9dbcb9a1c2a0","33","1","9","1","1","8","2","3","27105","518","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","","Not sure","Yes, true",88.4,11.9,"True","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably false","Slightly agree","Slightly disagree",75,77.7,"Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","","Not sure","Yes, true",8,33,0,"Republican",0,0,0.871468009862344 +1769,99.9,99.9,"False","Agree","Probably true","Definitely false","Definitely false","Probably false","Strongly disagree","Strongly disagree",89.9,81.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Strongly agree","Agree","Strongly agree","Disagree","Agree","Not vote in the presidential election","5fe3a0cf-6065-7f93-836b-cdf91a854eed","27","1","19","16","16","5","1","1","13407","526","33","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",0.0999999999999943,0.0999999999999943,"False","Agree","Probably false","Definitely true","Definitely false","Probably true","Strongly agree","Strongly disagree",10.1,18.9,"Strongly agree","Agree","Strongly disagree","Agree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false",5,27,0,"Democrat",0,0,2.23132061959115 +1770,50,88.1,"Not sure","Agree","Probably true","Definitely true","Probably true","Definitely true","Slightly agree","Slightly agree",73.6,53.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","","5fe3a113-39e2-8ab3-e723-0b9dfd68f51c","23","2","1","15","1","8","1","2","60804","602","14","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true",50,11.9,"Not sure","Disagree","Probably true","Definitely true","Probably false","Definitely true","Slightly disagree","Slightly agree",26.4,46.3,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure","No, false",8,23,0,"Democrat",1,1,0.916122044861498 +1771,50,50,"True","Neither agree nor disagree","Probably false","Probably false","Probably true","Definitely true","Slightly agree","Strongly disagree",53.7,44.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a0f9-7d09-a9cc-6073-a9176d90f3d6","21","2","8","1","1","6","2","4","84321","770","45","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure","No, false",50,50,"True","Neither agree nor disagree","Probably true","Probably true","Probably false","Definitely false","Slightly disagree","Strongly disagree",53.7,44.3,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",6,21,0,"Republican",0,0,0.902904355885667 +1772,77.2,99.5,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly disagree","Slightly agree",58.6,75.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a0a5-3efc-6eef-cb01-9dab435916b3","36","2","12","16","1","6","1","2","48220","505","23","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",77.2,0.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",41.4,24.1,"Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true",6,36,0,"Democrat",1,2,0.382736043920414 +1773,50,50,"Not sure","Strongly agree","Probably false","Probably false","Probably true","Probably true","Strongly agree","Somewhat disagree",65.1,56.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe3a19d-2fdb-6804-ebe0-9ad6c3b9383f","22","2","4","2","1","4","4","4","85711","789","3","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Strongly agree","Probably true","Probably false","Probably true","Probably false","Strongly agree","Somewhat disagree",34.9,43.6,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,22,0,"Other",0,1,0.792894767437384 +1774,64.2,63.3,"True","Agree","Probably false","Probably true","Probably true","Probably false","Slightly agree","Slightly agree",65.8,55.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Agree","Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a1d2-4a34-6134-5dee-e08840a7007a","21","2","1","2","1","2","1","3","29801","520","41","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure",35.8,36.7,"True","Agree","Probably true","Probably false","Probably false","Probably false","Slightly disagree","Slightly disagree",65.8,55.2,"Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure",2,21,0,"Democrat",0,0,0.563508049350613 +1775,50,50,"True","Strongly disagree","Not sure","Not sure","Definitely true","Definitely false","Somewhat agree","Somewhat agree",24.8,5.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Chemicals distributed by government agents","Strongly agree","Agree","Agree","Agree","Agree","","5fe3a06f-b01c-de3e-dbc6-3f87a0e13588","32","2","1","9","1","6","2","3","76014","623","44","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure",50,50,"True","Strongly disagree","Not sure","Not sure","Definitely true","Definitely false","Somewhat disagree","Somewhat disagree",24.8,5.1,"Strongly agree","Agree","Disagree","Agree","Agree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure",6,32,0,"Republican",0,1,0.912934769356083 +1776,50,64.8,"Not sure","Disagree","Not sure","Probably false","Definitely true","Probably true","Slightly agree","Somewhat agree",29.1,15.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a032-cc7c-038d-a5cc-d219be9b8f50","18","2","17","1","1","4","3","4","85286","753","3","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",50,64.8,"Not sure","Agree","Not sure","Probably true","Definitely false","Probably false","Slightly disagree","Somewhat disagree",29.1,15.9,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",4,18,0,"Independent",0,1,0.902904355885667 +1777,17.6,83.3,"False","Strongly agree","Probably true","Probably false","Probably true","Definitely true","Somewhat agree","Strongly disagree",31.1,8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe3a009-964d-4f29-06cc-34f6f1c490b6","76","1","14","1","1","8","2","2","45241","515","36","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","No, false","Yes, true",82.4,16.7,"False","Strongly agree","Probably false","Probably true","Probably false","Definitely false","Somewhat disagree","Strongly disagree",31.1,8,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",8,76,1,"Republican",0,0,1.04464351786682 +1778,75,32.8,"False","Disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",75.1,74.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a1b8-bbc6-2c46-a768-92c7a37c0a12","44","2","15","1","1","4","1","2","48304","505","23","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",75,67.2,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.9,25.9,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",4,44,0,"Democrat",1,0,0.501443380121097 +1779,50.1,49.9,"Not sure","Strongly disagree","Probably true","Probably true","Probably true","Definitely true","Somewhat agree","Strongly agree",58.5,56.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe3a0f7-1d6a-d304-15bd-b1cea5b6e034","56","2","-3105","15","1","6","4","2","64050","616","26","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false",50.1,49.9,"Not sure","Strongly disagree","Probably true","Probably false","Probably false","Definitely true","Somewhat agree","Strongly disagree",58.5,56.1,"Agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",6,56,0,"Other",0,0,1.25624348354942 +1780,51,99.9,"Not sure","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",72,91.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe39f96-ebce-9112-2f56-04a0f3ae22c7","52","1","19","1","1","6","2","4","93309","800","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",51,99.9,"Not sure","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",28,8.09999999999999,"Disagree","Strongly disagree","Agree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true",6,52,0,"Republican",0,0,1.56503676943297 +1781,50,50,"False","Neither agree nor disagree","Probably false","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly agree",5.9,23.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3a09b-ac3f-1408-c75d-5c16d2f7e002","60","2","2","1","1","7","3","2","50317","679","16","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",50,50,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",5.9,23.1,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",7,60,0,"Independent",0,0,0.645133408704056 +1782,50,97.5,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Somewhat agree",89.9,99.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a14e-2289-40ad-45eb-ca862f6e95cd","28","2","17","1","1","4","1","3","30004","524","11","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true",50,2.5,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat agree",10.1,0.900000000000006,"Agree","Agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true",4,28,0,"Democrat",1,0,0.468830069482283 +1783,70.7,76.2,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat agree",70,76.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe3a042-1713-0ace-e9f3-d6f5ba7d9099","30","1","17","1","1","7","1","4","97527","813","38","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure",70.7,76.2,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat agree",30,23.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure",7,30,0,"Democrat",0,0,0.824062531779561 +1784,67.1,99.9,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Probably false","Strongly agree","Slightly disagree",47.8,28.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a140-0f84-18ad-2a9d-0b03759b5b87","18","2","14","15","2","2","1","3","75074","623","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true",67.1,0.0999999999999943,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Probably true","Strongly agree","Slightly disagree",47.8,28.1,"Strongly disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true",2,18,0,"Democrat",1,0,0.610585858876394 +1785,64.8,62.5,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly agree",75,77.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a164-86a7-49e9-b95d-6fc569b95c4b","21","2","6","15","1","4","1","3","26034","554","49","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",35.2,62.5,"False","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25,22.6,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true",4,21,0,"Democrat",0,0,0.329152435286286 +1786,50.5,59.1,"False","Strongly disagree","Probably false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",70.1,88.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a0f1-44ae-78b7-c315-379835a75040","36","1","22","5","1","7","1","4","98030","819","48","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false","Not sure","No, false",50.5,40.9,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",29.9,11.3,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",7,36,0,"Democrat",0,2,0.616644184705796 +1787,65.5,99.9,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly agree",46.1,12.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a1b0-0a34-5c64-a812-0303c976d86e","44","2","-3105","1","1","4","1","4","81008","752","6","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",65.5,99.9,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",46.1,12.9,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",4,44,0,"Democrat",0,0,0.646737281603242 +1788,83.4,87.8,"True","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",75.7,66.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe39fe6-e554-4d14-eb0f-27a16e7768e3","31","1","8","2","1","6","3","3","39564","746","25","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false",16.6,87.8,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.3,33.4,"Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Disagree","Yes, true","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",6,31,0,"Independent",0,0,0.76528861612494 +1789,48.7,66.2,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Probably true","Probably true","Somewhat disagree","Slightly disagree",20.3,20.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe3a196-cdd6-848d-c326-b991bf162475","45","2","-3105","1","1","3","4","3","74944","671","37","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",48.7,33.8,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Probably false","Probably false","Somewhat disagree","Slightly agree",20.3,20.9,"Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",3,45,1,"Republican",0,0,1.52658135748604 +1790,54.4,99.9,"False","Agree","Definitely true","Probably true","Definitely true","Definitely true","Somewhat agree","Strongly agree",74.8,79.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Agree","Strongly agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe3a34d-55e2-aae1-456f-9183c197bedc","39","1","20","1","1","6","1","1","10001","501","33","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure",45.6,99.9,"False","Disagree","Definitely false","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly disagree",74.8,79.9,"Agree","Strongly disagree","Agree","Agree","Disagree","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","Not sure",6,39,0,"Democrat",0,1,0.605598834997122 +1791,84.8,84.8,"True","Agree","Probably true","Probably true","Definitely true","Probably true","Strongly agree","Strongly agree",94.9,89.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a34f-00ae-dba2-2c0a-80753b19e47d","50","1","24","1","1","7","1","2","48658","513","23","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",84.8,84.8,"True","Agree","Probably true","Probably false","Definitely true","Probably true","Strongly disagree","Strongly disagree",5.09999999999999,10.1,"Strongly agree","Agree","Agree","Disagree","Strongly agree","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false",7,50,0,"Democrat",0,1,0.815477235177677 +1792,73.4,79.9,"True","Neither agree nor disagree","Probably true","Probably false","Not sure","Probably true","Slightly disagree","Slightly agree",72.6,59.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Neither agree nor disagree","Agree","Not vote in the presidential election","5fe3a22f-c21e-b335-aedb-d06abd5a2bb3","34","2","2","1","1","4","3","3","37919","557","43","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true",73.4,79.9,"False","Neither agree nor disagree","Probably false","Probably true","Not sure","Probably true","Slightly agree","Slightly agree",27.4,40.3,"Disagree","Agree","Disagree","Neither agree nor disagree","Agree","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true",4,34,0,"Independent",0,0,1.19608566751863 +1793,50,50,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly agree",86.7,89.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a047-e964-e107-1d5a-93ed29730d6c","74","1","19","1","1","8","2","2","60403","602","14","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true",50,50,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",13.3,10.3,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","No, false","Yes, true",8,74,0,"Republican",0,0,1.04464351786682 +1794,99.9,99.9,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly agree",2.1,8.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe3a0b6-5d05-fa73-5605-6a1434d9eaec","30","2","21","1","1","2","2","2","1001","671","17","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",0.0999999999999943,99.9,"True","Disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",2.1,8.9,"Agree","Agree","Disagree","Disagree","Agree","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true",2,30,0,"Republican",0,0,0.761082262610781 +1795,50,21.3,"False","Disagree","Definitely false","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",38.5,22.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a0f2-fc98-65b4-4aa4-2c271a96ebaf","33","1","22","1","1","7","3","1","11214","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure",50,21.3,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",38.5,22.4,"Agree","Agree","Disagree","Disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Not sure",7,33,0,"Independent",0,0,0.919167646530211 +1796,99.9,99.9,"False","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",28.6,20.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Disagree","Agree","Vote for the Democrat Joe Biden","5fe3a074-9f49-da35-9bec-8e7154c1e6da","57","1","1","1","1","6","1","1","10473","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","No, false",0.0999999999999943,99.9,"False","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",28.6,20.8,"Strongly disagree","Strongly disagree","Strongly disagree","Disagree","Agree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true",6,57,0,"Democrat",0,0,0.779134905788461 +1797,85,77,"False","Strongly agree","Probably true","Not sure","Definitely false","Definitely false","Strongly agree","Slightly disagree",18.1,27.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Agree","Strongly agree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a0e9-bc53-906c-99e2-c9485a687d20","44","2","19","1","1","6","1","3","33131","528","10","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",85,23,"True","Strongly agree","Probably false","Not sure","Definitely false","Definitely false","Strongly agree","Slightly agree",18.1,27.5,"Strongly disagree","Disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true",6,44,0,"Democrat",0,0,0.459634341107367 +1798,50,49.8,"True","Strongly agree","Definitely true","Probably true","","Definitely true","Strongly agree","Strongly disagree",14.4,15.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a017-9c6f-52e3-12ef-3e2cd229f1a1","66","1","20","1","1","6","1","4","89148","839","29","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure",50,50.2,"False","Strongly disagree","Definitely false","Probably false","","Definitely false","Strongly disagree","Strongly disagree",14.4,15.6,"Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure",6,66,0,"Independent",0,0,0.905456100816435 +1799,68.3,71.1,"True","Agree","Definitely true","Not sure","Probably true","Definitely false","Somewhat agree","Slightly agree",47,38.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly agree","Disagree","Vote for the Democrat Joe Biden","5fe3a283-36de-7d86-913e-dc2ef625a7aa","45","1","21","1","2","8","2","1","10001","501","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",68.3,28.9,"False","Disagree","Definitely false","Not sure","Probably false","Definitely false","Somewhat agree","Slightly disagree",47,38.1,"Neither agree nor disagree","Disagree","Neither agree nor disagree","Strongly disagree","Disagree","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",8,45,0,"Republican",0,3,1.46249825874011 +1800,50.7,55.1,"True","Agree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",29.2,17.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3a1cd-2b18-d48d-ab9a-3e0f458e7a22","68","2","6","1","1","6","1","3","30523","524","11","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false",49.3,44.9,"False","Disagree","Probably false","Definitely false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",29.2,17.3,"Agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",6,68,0,"Democrat",1,2,0.515136934744757 +1801,50.1,50.1,"False","Strongly agree","Definitely true","Definitely false","Probably true","Definitely false","Somewhat disagree","Strongly disagree",50.1,25.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a185-5969-b230-2d13-80619760cd40","21","2","1","1","1","2","2","3","70373","622","19","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false",49.9,50.1,"True","Strongly agree","Definitely false","Definitely true","Probably false","Definitely false","Somewhat disagree","Strongly agree",50.1,25.1,"Disagree","Disagree","Strongly agree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",2,21,0,"Republican",0,0,0.641691550039753 +1802,56.5,57.3,"Not sure","Disagree","Not sure","Definitely true","Probably true","Definitely false","Slightly agree","Strongly agree",74,87.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Disagree","Disagree","Strongly disagree","Disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3a12d-db0f-26a0-9773-10a0d3d3dd79","65","2","13","1","1","5","2","3","37711","557","43","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure",43.5,57.3,"Not sure","Agree","Not sure","Definitely true","Probably false","Definitely false","Slightly disagree","Strongly disagree",26,12.1,"Disagree","Agree","Strongly agree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","No, false","No, false","Yes, true","Not sure","No, false","Not sure",5,65,1,"Republican",0,0,1.31422437374394 +1803,50,97.6,"True","Strongly disagree","Definitely true","Definitely false","Probably true","Definitely true","Strongly disagree","Strongly agree",77.3,85.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Not vote in the presidential election","5fe3a0a0-afec-d4ad-30dc-6dcc6dda9d51","64","1","6","1","1","3","2","1","19539","504","39","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true",50,97.6,"False","Strongly agree","Definitely false","Definitely true","Probably true","Definitely false","Strongly disagree","Strongly disagree",22.7,14.5,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","No, false","Yes, true","No, false","No, false","Yes, true",3,64,0,"Republican",0,0,1.98773959807259 +1804,76.3,78,"True","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely false","Somewhat disagree","Strongly agree",84.2,53.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe3a14a-b20c-c40b-a1f2-4ae80be67544","66","2","5","1","1","3","3","4","85033","753","3","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Yes, true",23.7,78,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",15.8,46.9,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Agree","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true",3,66,0,"Independent",0,0,1.07856128262739 +1805,56.7,60.6,"True","Disagree","Definitely true","Not sure","Probably true","Definitely true","Strongly disagree","Strongly agree",22.7,5.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe3a17d-8c0b-3c6d-6950-ce76be1d8f12","25","2","1","1","1","5","1","3","27028","517","34","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","No, false",43.3,39.4,"False","Agree","Definitely false","Not sure","Probably true","Definitely false","Strongly agree","Strongly disagree",22.7,5.4,"Disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true",5,25,0,"Democrat",0,0,0.468830069482283 +1806,52.7,99.9,"Not sure","Agree","Definitely true","Definitely false","Definitely true","Definitely true","Somewhat agree","Strongly agree",22.3,77,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Strongly agree","Vote for the Republican Donald Trump","5fe3a0f2-cdb7-21b8-7714-b1e602d1f18a","44","2","11","1","1","2","2","1","19073","504","39","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure",52.7,0.0999999999999943,"Not sure","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",77.7,23,"Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure",2,44,1,"Republican",0,0,0.721377276759402 +1807,46,41.9,"True","Agree","Probably true","Probably false","Definitely true","Definitely true","Somewhat agree","Somewhat agree",97,98,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3a2a0-519b-9d9a-f249-9839ff4bd91f","26","1","16","9","1","7","2","3","20121","511","47","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",54,58.1,"True","Agree","Probably false","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat agree",3,2,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,26,0,"Republican",0,0,1.14043104095828 +1808,50,50,"True","Strongly agree","Definitely false","Definitely true","Probably true","Not sure","Strongly agree","Strongly disagree",84.5,60.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe3a221-037a-ac7b-1bb0-eb0f1701fcd7","30","2","9","1","1","7","2","3","33009","528","10","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false",50,50,"True","Strongly agree","Definitely false","Definitely true","Probably false","Not sure","Strongly agree","Strongly disagree",15.5,39.2,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true",7,30,0,"Independent",0,0,0.697625211881609 +1809,56.1,99.9,"True","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably true","Slightly disagree","Slightly disagree",46.3,17.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3a252-c1cd-164d-30aa-4d7bce992282","23","2","4","1","1","2","2","3","23111","556","47","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",43.9,99.9,"False","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably false","Slightly disagree","Slightly disagree",46.3,17.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,23,1,"Republican",0,0,1.10018682366745 +1810,71.8,86.4,"False","Neither agree nor disagree","Probably false","Probably true","Definitely false","Not sure","Somewhat agree","Slightly disagree",51.6,65.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe3a0bc-8128-64c7-0c20-969336d5d8ca","25","2","1","1","1","2","1","3","32174","534","10","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",71.8,86.4,"False","Neither agree nor disagree","Probably true","Probably false","Definitely false","Not sure","Somewhat disagree","Slightly disagree",51.6,65.8,"Strongly disagree","Agree","Disagree","Disagree","Agree","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false",2,25,0,"Democrat",1,0,0.468830069482283 +1811,50,50,"True","Agree","Not sure","Probably true","Probably true","Definitely true","Slightly agree","Somewhat disagree",75.5,59,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe3a271-38c4-8983-f76c-66f82662b445","43","2","4","1","1","2","2","3","29526","570","41","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",50,50,"True","Agree","Not sure","Probably false","Probably false","Definitely false","Slightly agree","Somewhat agree",24.5,41,"Neither agree nor disagree","Neither agree nor disagree","Agree","Disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",2,43,0,"Republican",0,0,0.683941849031096 +1812,72.9,81.4,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Somewhat agree","Strongly agree",86.5,70.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Disagree","Neither agree nor disagree","Agree","Vote for the Republican Donald Trump","5fe3a14f-45c0-7eb3-27ea-e35fa59dc5bd","40","2","22","1","1","7","3","1","10013","501","33","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true",72.9,81.4,"True","Agree","Definitely false","Probably true","Definitely false","Definitely true","Somewhat disagree","Strongly agree",13.5,29.5,"Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true",7,40,0,"Independent",0,1,0.721377276759402 +1813,50,81.7,"True","Disagree","Probably true","Not sure","Definitely true","Probably true","Strongly agree","Strongly agree",67.5,45.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a1fb-9dd1-bc33-8cd8-5f4e51eb1830","20","2","1","2","1","5","1","1","08629","504","31","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","Not sure","Not sure","Yes, true",50,81.7,"False","Agree","Probably false","Not sure","Definitely false","Probably true","Strongly disagree","Strongly disagree",67.5,45.7,"Strongly disagree","Agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Not sure","Yes, true",5,20,0,"Democrat",0,0,0.594351555835364 +1814,58.9,67.6,"False","Agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Slightly agree",36.5,51.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3a2b7-edb3-ac0c-7c9d-a9ba60f1bd56","61","2","1","1","1","2","2","1","12095","532","33","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true",41.1,32.4,"False","Disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Slightly agree",63.5,48.5,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true",2,61,0,"Republican",0,0,1.59121992153205 +1815,99.9,99.9,"False","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",69.9,75.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3a11c-9cb4-7acc-6f21-ac8a300a3f1a","40","1","19","1","1","7","1","1","10162","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true",0.0999999999999943,99.9,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",69.9,75.5,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false",7,40,0,"Democrat",1,0,0.605598834997122 +1816,83.6,92.8,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",79,51.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a043-0ce1-9b33-86cd-7404f7707c6f","40","2","19","1","1","8","3","1","10013","501","33","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",16.4,7.2,"True","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly agree",21,48.8,"Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false",8,40,0,"Independent",0,1,0.484792339820778 +1817,88.6,99.9,"True","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",30.4,15.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3a338-0752-bce8-5910-80a116b61126","68","1","6","1","1","7","2","4","85048","753","3","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false",11.4,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",30.4,15.8,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true",7,68,0,"Republican",0,3,0.905456100816435 +1818,80.9,14.2,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Probably true","Somewhat disagree","Strongly disagree",35.7,29,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a049-fc0c-601b-5d46-3e9ff8e63ec7","57","2","2","1","1","1","4","3","75103","623","44","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure","No, false","Not sure","No, false","Yes, true",80.9,85.8,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Probably false","Somewhat disagree","Strongly disagree",35.7,29,"Neither agree nor disagree","Strongly agree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","No, false","No, false","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false",1,57,0,"Republican",0,0,0.879927333598919 +1819,96.6,81.3,"True","Agree","Probably true","Definitely true","Definitely true","Probably true","Strongly agree","Somewhat agree",87.7,91.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe3a2a1-40b1-2338-f69e-e580a23ab440","35","2","22","1","1","6","2","1","10001","501","33","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",3.40000000000001,81.3,"False","Agree","Probably true","Definitely false","Definitely false","Probably true","Strongly disagree","Somewhat agree",87.7,91.7,"Strongly agree","Agree","Disagree","Strongly agree","Agree","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","No, false",6,35,0,"Republican",0,0,0.721377276759402 +1820,50,50,"Not sure","Agree","Definitely false","Definitely false","Definitely true","Probably true","Strongly agree","Slightly agree",70.4,83.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe3a2ce-b607-114c-01a5-d8099769fc11","20","2","1","1","1","4","1","2","56601","613","24","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false",50,50,"Not sure","Disagree","Definitely true","Definitely true","Definitely false","Probably false","Strongly agree","Slightly disagree",29.6,16.4,"Disagree","Disagree","Agree","Disagree","Agree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",4,20,0,"Democrat",0,1,0.47046686834987 +1821,61.9,59.6,"False","Disagree","Definitely true","Probably false","Definitely true","Definitely false","Strongly agree","Slightly disagree",68.2,58.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Wastewater from the airplane lavatory","Disagree","Neither agree nor disagree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe3a404-9152-8134-2a06-76ad518cdb38","36","1","23","1","1","7","2","4","90631","803","5","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Not sure",61.9,59.6,"False","Agree","Definitely true","Probably false","Definitely false","Definitely false","Strongly disagree","Slightly agree",31.8,41.3,"Disagree","Neither agree nor disagree","Strongly agree","Agree","Disagree","No, false","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Not sure",7,36,0,"Republican",0,1,0.807899201610574 +1822,50,78.6,"False","Agree","Probably false","Probably true","Probably true","Probably true","Strongly disagree","Strongly disagree",61.1,87.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe3a26a-afe0-a329-2ee6-6db30e5f7295","76","1","7","1","1","4","2","1","17408","566","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true",50,78.6,"True","Disagree","Probably false","Probably true","Probably false","Probably false","Strongly disagree","Strongly disagree",38.9,12.1,"Disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Agree","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true",4,76,0,"Republican",0,1,1.0099548530942 +1823,35.1,99.9,"Not sure","Strongly disagree","Probably true","Probably false","Definitely true","Not sure","Strongly disagree","Strongly agree",61.3,88.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a30c-1fb1-442d-b878-ca2e427dd5a7","47","2","8","1","1","4","1","1","10302","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",64.9,0.0999999999999943,"Not sure","Strongly agree","Probably false","Probably false","Definitely false","Not sure","Strongly agree","Strongly disagree",38.7,11.3,"Disagree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",4,47,0,"Democrat",0,0,0.631126486177329 +1824,46,2.5,"Not sure","Strongly disagree","Probably true","Definitely false","Probably true","Probably true","Somewhat disagree","Somewhat agree",19.7,12.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe3a160-0f19-1ad6-4fea-f81a2b06420b","55","1","8","1","1","2","2","2","65281","604","26","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",54,97.5,"Not sure","Strongly agree","Probably false","Definitely true","Probably false","Probably false","Somewhat agree","Somewhat agree",19.7,12.5,"Strongly disagree","Agree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure",2,55,1,"Republican",0,0,1.19918316758111 +1825,27.4,76.7,"False","Disagree","Probably true","Probably true","Definitely false","Definitely true","Strongly agree","Strongly agree",18,22.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3a1c7-73bd-fc8e-bcaf-88de283661ec","41","1","20","1","1","7","1","1","10025","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","No, false","Not sure","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","No, false",27.4,23.3,"False","Agree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",18,22.9,"Strongly disagree","Disagree","Agree","Disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true",7,41,1,"Democrat",0,1,0.605598834997122 +1826,19,62.8,"Not sure","Neither agree nor disagree","Not sure","Probably true","Probably false","Probably true","Strongly agree","Somewhat agree",15.5,25.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe3a2c9-2e2d-3742-f4e0-80a2085c2251","60","1","12","1","1","2","2","2","61604","675","14","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",19,62.8,"Not sure","Neither agree nor disagree","Not sure","Probably true","Probably false","Probably false","Strongly disagree","Somewhat agree",15.5,25.3,"Agree","Agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",2,60,1,"Republican",0,3,1.19918316758111 +1827,83.4,78,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Strongly agree","Somewhat agree",77.3,46.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe3a2a2-e8b2-c003-602f-71debbe5de3b","38","2","22","2","1","6","1","1","10001","501","33","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",83.4,78,"True","Disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly disagree","Somewhat agree",22.7,53.3,"Disagree","Disagree","Disagree","Disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","No, false","No, false",6,38,0,"Democrat",1,0,0.942633718596669 +1828,50,49.8,"False","Agree","Not sure","Probably true","Definitely true","Probably true","Somewhat disagree","Somewhat agree",10,17.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Disagree","Disagree","Strongly disagree","Agree","Strongly agree","Vote for the Republican Donald Trump","5fe39cda-37cc-45e6-442b-6d9a44ebf44d","36","1","5","1","1","6","2","2","45601","564","36","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","No, false",50,50.2,"True","Disagree","Not sure","Probably true","Definitely false","Probably false","Somewhat disagree","Somewhat agree",90,82.9,"Agree","Agree","Strongly agree","Agree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","No, false",6,36,1,"Republican",0,0,0.932090096130861 +1829,55.2,66.5,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely false","Probably true","Strongly agree","Strongly agree",70.4,62.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a436-81cd-c922-68a2-a370b727f5b0","40","1","10","1","1","4","3","3","27299","518","34","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",55.2,66.5,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably true","Strongly disagree","Strongly disagree",29.6,37.9,"Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false",4,40,0,"Democrat",0,0,0.574171657914799 +1830,50,78.8,"True","Disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly disagree",51.6,49,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe3a168-1f80-399b-fc46-33e84b7a35f1","36","2","1","1","1","5","3","2","63084","609","26","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true",50,78.8,"False","Agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly agree",51.6,49,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No, false","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false",5,36,0,"Democrat",0,0,1.27928919042512 +1831,40.3,39.7,"False","Agree","Probably false","Probably false","Definitely true","Definitely true","Somewhat agree","Somewhat disagree",87.8,87.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a0fb-ae3c-3efa-e05f-437027d5f760","52","2","4","1","1","6","2","3","31537","561","11","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false",40.3,60.3,"True","Disagree","Probably true","Probably false","Definitely false","Definitely false","Somewhat disagree","Somewhat disagree",12.2,12.5,"Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false",6,52,1,"Republican",0,0,0.890389101626892 +1832,72.8,75.2,"False","Agree","Probably false","Probably true","Definitely true","Definitely false","Somewhat disagree","Strongly disagree",82.7,70.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Disagree","Disagree","Not vote in the presidential election","5fe3a280-14a6-d0ff-0d57-4b72611fe940","37","1","15","6","1","4","4","4","91803","803","5","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",27.2,24.8,"False","Disagree","Probably true","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",17.3,29.3,"Agree","Strongly disagree","Disagree","Disagree","Disagree","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false",4,37,0,"Democrat",0,0,1.57319105427641 +1833,50,70.2,"True","Agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",85.9,88.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe3a320-e1c2-5cd5-e0de-e83e2c138a17","74","1","19","1","1","6","3","4","86305","753","3","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure",50,70.2,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",14.1,11.9,"Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure",6,74,0,"Independent",0,1,1.34733039815278 +1834,50,50,"Not sure","Disagree","Probably true","Probably true","Not sure","Probably false","Slightly disagree","Strongly disagree",72.9,68.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Vote for the Republican Donald Trump","5fe3a42e-a61d-2402-4ada-5b2010b7a60f","67","1","13","1","1","4","2","3","73044","650","37","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",50,50,"Not sure","Agree","Probably false","Probably true","Not sure","Probably false","Slightly disagree","Strongly disagree",27.1,31.6,"Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",4,67,1,"Republican",0,1,0.957543870478141 +1835,77.7,87.3,"True","Agree","Probably true","Definitely true","Probably true","Definitely false","Strongly agree","Strongly agree",60.7,75.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a1db-c769-293d-8d51-d6bdd7b1e817","71","1","5","1","16","6","3","3","33613","539","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",77.7,12.7,"False","Agree","Probably false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",39.3,24.5,"Agree","Neither agree nor disagree","Strongly disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true",6,71,0,"Independent",0,0,1.19371771994567 +1836,50.3,65,"False","Neither agree nor disagree","Probably false","Definitely false","Probably true","Definitely true","Somewhat disagree","Slightly agree",75.6,63.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe3a220-22c3-0521-d45d-bb11a0b87a58","60","1","9","1","1","6","3","1","01801","506","22","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true",50.3,65,"True","Neither agree nor disagree","Probably false","Definitely true","Probably false","Definitely false","Somewhat disagree","Slightly agree",24.4,36.5,"Disagree","Strongly disagree","Disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false",6,60,0,"Independent",0,0,1.15936282486158 +1837,36.4,66.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",35.4,48.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3a337-6f74-fd45-8a14-1534091511ef","65","1","20","15","2","6","2","3","77477","618","44","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",36.4,66.9,"Not sure","Neither agree nor disagree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.4,48.5,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",6,65,0,"Republican",0,0,1.35576934846351 +1838,80,82,"True","Agree","Probably true","Probably true","Definitely true","Definitely false","Strongly agree","Strongly agree",80,49.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe3a37e-cc5f-584f-3863-8ed198ed4bbe","40","1","23","1","1","7","1","1","10308","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",80,82,"True","Agree","Probably true","Probably false","Definitely true","Definitely true","Strongly agree","Strongly agree",20,50.7,"Agree","Disagree","Disagree","Disagree","Disagree","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false",7,40,1,"Democrat",0,0,0.605598834997122 +1839,50,99.9,"False","Disagree","Definitely true","Definitely true","Not sure","Definitely false","Strongly disagree","Strongly agree",23.6,23.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Agree","Disagree","Vote for the Democrat Joe Biden","5fe3a2c3-65fc-44c5-f8bf-65b4ee59b7c4","53","2","1","1","1","4","3","4","81050","752","6","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure",50,0.0999999999999943,"False","Disagree","Definitely false","Definitely false","Not sure","Definitely false","Strongly agree","Strongly disagree",23.6,23.6,"Neither agree nor disagree","Agree","Strongly disagree","Disagree","Disagree","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure",4,53,0,"Independent",0,0,0.841954367861977 +1840,80.1,50,"False","Strongly disagree","Definitely true","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly agree",38.3,25.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe3a4dc-2c2e-5b95-9b8a-97e8ab9a66cd","70","1","24","1","1","7","2","1","11782","501","33","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false",19.9,50,"True","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",38.3,25.5,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","No, false",7,70,0,"Republican",0,0,1.0099548530942 +1841,69.8,69.8,"False","Agree","Definitely true","Probably false","Definitely true","Definitely false","Somewhat agree","Strongly agree",31.9,66.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Agree","Agree","Vote for the Republican Donald Trump","5fe3a3bc-0b8b-565c-2314-f6dbb345e6a2","40","1","5","1","1","4","2","4","93901","828","5","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true",69.8,30.2,"False","Agree","Definitely false","Probably true","Definitely true","Definitely true","Somewhat disagree","Strongly agree",31.9,66.9,"Disagree","Agree","Strongly agree","Disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true",4,40,0,"Republican",0,0,1.20216446936721 +1842,67.2,85.7,"True","Agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",89.2,91.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Agree","Disagree","Neither agree nor disagree","Vote for a different candidate","5fe3a292-40cc-39ca-fadc-b64406519e6b","41","2","23","1","1","6","3","3","20175","511","47","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",67.2,14.3,"True","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.8,8.09999999999999,"Neither agree nor disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",6,41,0,"Independent",0,0,0.258535159824144 +1843,49.9,50,"False","Neither agree nor disagree","Probably true","Not sure","Definitely false","Definitely true","Somewhat disagree","Slightly agree",83.4,90.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a1b9-4049-9572-ad33-b39c9a971012","79","1","-3105","1","12","6","2","4","92591","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","No, false",49.9,50,"True","Neither agree nor disagree","Probably false","Not sure","Definitely false","Definitely false","Somewhat agree","Slightly disagree",16.6,9.5,"Strongly disagree","Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","No, false",6,79,0,"Republican",0,0,1.67964332547325 +1844,49.8,99.5,"Not sure","Agree","Definitely true","Probably true","Probably true","Probably false","Strongly disagree","Strongly disagree",76.2,85.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe3a300-78a5-5d6f-d3bf-9516fae97f78","54","2","1","2","1","6","1","3","39114","718","25","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Not sure",50.2,99.5,"Not sure","Agree","Definitely false","Probably true","Probably true","Probably true","Strongly agree","Strongly disagree",23.8,14.9,"Agree","Agree","Disagree","Disagree","Agree","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure",6,54,0,"Democrat",0,0,0.781904367900328 +1845,71,81,"True","Disagree","Probably true","Probably true","Definitely true","Definitely false","Strongly agree","Slightly agree",61,75.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Wastewater from the airplane lavatory","Disagree","Strongly agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe3a23c-3729-b765-ecf8-3224cdebabf1","40","1","11","1","1","6","2","1","01609","506","22","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",29,81,"True","Agree","Probably true","Probably false","Definitely false","Definitely false","Strongly disagree","Slightly agree",39,24.8,"Agree","Strongly agree","Agree","Agree","Disagree","No, false","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","Yes, true",6,40,0,"Republican",0,2,0.901138905289622 +1846,97.1,97.1,"True","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",67.6,80.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a310-bf52-2530-b9ce-8efa55196f01","43","1","20","1","1","6","1","3","75202","623","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",97.1,2.90000000000001,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",32.4,19.9,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",6,43,0,"Democrat",1,0,0.574171657914799 +1847,50.1,49.9,"False","Neither agree nor disagree","","Probably true","Probably true","Definitely true","Strongly agree","Somewhat agree",60.6,68.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Strongly agree","Agree","Not vote in the presidential election","5fe3a215-e0a0-a280-a352-fc3326273abe","83","2","3","1","1","3","4","2","55304","613","24","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,50.1,"True","Neither agree nor disagree","","Probably false","Probably true","Definitely false","Strongly agree","Somewhat disagree",39.4,31.1,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",3,83,0,"Other",0,1,1.43376822240912 +1848,50,99.9,"False","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",72,85.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3a298-fd99-8699-dd50-0a1dedac5f65","68","1","9","1","1","6","3","4","86303","753","3","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","No, false","No, false","No, false",50,0.0999999999999943,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",28,14.6,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true",6,68,0,"Independent",0,2,0.905456100816435 +1849,50,99.9,"True","Disagree","Definitely false","Not sure","Definitely false","Not sure","Somewhat disagree","Somewhat agree",31.3,34.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe3a278-2258-112a-73da-fbc192daddcf","55","2","4","1","1","5","2","3","29178","546","41","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Yes, true",50,0.0999999999999943,"True","Agree","Definitely true","Not sure","Definitely false","Not sure","Somewhat disagree","Somewhat agree",31.3,34.9,"Disagree","Disagree","Agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure","No, false","Yes, true",5,55,0,"Republican",0,0,0.879927333598919 +1850,73.6,29.1,"True","Agree","Definitely false","Definitely true","Probably false","Definitely false","Slightly disagree","Slightly agree",28.4,19.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe3a226-6c73-6725-0b85-9669a8323af9","58","2","2","1","1","2","2","3","31803","522","11","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure",73.6,70.9,"True","Agree","Definitely false","Definitely true","Probably false","Definitely false","Slightly disagree","Slightly disagree",28.4,19.6,"Neither agree nor disagree","Agree","Strongly agree","Neither agree nor disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure",2,58,1,"Republican",0,0,0.879927333598919 +1851,13.6,18.6,"True","Neither agree nor disagree","Probably true","Probably true","Probably true","Probably true","Somewhat agree","Somewhat agree",74.7,70.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3a42d-2b29-78a7-5a3e-41138b3c5734","35","1","13","1","12","8","1","1","10006","501","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",13.6,18.6,"True","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably true","Somewhat agree","Somewhat agree",25.3,29.2,"Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true",8,35,0,"Democrat",0,0,1.12340072610931 +1852,99.9,49.8,"True","Strongly agree","Not sure","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",50.6,73,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Not vote in the presidential election","5fe3a23a-3541-6f42-748b-b7819bc0e249","21","2","1","1","1","2","2","3","31791","525","11","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true",0.0999999999999943,50.2,"False","Strongly agree","Not sure","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly disagree",49.4,27,"Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",2,21,1,"Republican",0,0,1.10018682366745 +1853,50,50,"True","Disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly agree",10.2,20.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3a2e5-e6de-f40b-ed7c-1287369a7a60","57","2","-3105","1","1","4","1","4","85286","753","3","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true",50,50,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.2,20.1,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false","No, false","Not sure","Yes, true",4,57,0,"Democrat",0,0,0.832061691423535 +1854,50,98.7,"True","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",11,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a140-366d-cc5e-ec81-f78941d4dcaa","70","2","14","1","1","8","1","1","19085","504","39","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true",50,98.7,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",11,15,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",8,70,0,"Democrat",0,3,0.543332857421717 +1855,99.9,99.9,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",5.2,3.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly disagree","Agree","Vote for the Democrat Joe Biden","5fe3a36a-19be-e9d4-6d35-4d8f99bdaf47","61","1","12","1","1","2","1","3","42376","649","18","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","No, false","No, false","Not sure","Yes, true",99.9,0.0999999999999943,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",5.2,3.6,"Agree","Agree","Strongly disagree","Strongly disagree","Disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",2,61,0,"Democrat",0,2,0.73870218161496 +1856,77.2,78.6,"True","Agree","Definitely false","Probably false","Probably true","Definitely true","Strongly agree","Somewhat agree",73.7,71.9,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Agree","Agree","Strongly agree","Agree","Vote for the Republican Donald Trump","5fe3a4c5-2dd3-57ed-24d3-517c09b3f3ff","22","1","20","1","2","-3105","1","1","10002","501","33","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",22.8,21.4,"True","Disagree","Definitely false","Probably true","Probably true","Definitely false","Strongly agree","Somewhat agree",26.3,28.1,"Strongly agree","Agree","Agree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",-3105,22,0,"Republican",0,0,1.5683700907032 +1857,49.9,0.1,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Probably false","Strongly agree","Strongly disagree",75.8,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe3a95e-aa44-0c2f-86cb-fcca8bd33f1e","18","1","4","15","2","2","1","4","94085","807","5","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.9,0.1,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",24.2,0,"Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,18,0,"Democrat",0,0,2.73803048787019 +1858,55.8,71.4,"True","Neither agree nor disagree","Probably false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",7.1,11.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly agree","Disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3a626-41c2-11e3-a5e2-0d9cc7606ed0","58","1","-3105","16","13","4","1","4","95842","862","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",44.2,71.4,"False","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",7.1,11.4,"Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Not sure",4,58,0,"Democrat",0,2,1.47167509318041 +1859,50,99.9,"True","Strongly disagree","Probably false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",10.2,25.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3866e-f3f4-65e4-6cf5-14274e59b4d1","59","2","14","1","1","6","1","4","80134","751","6","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true",50,99.9,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.2,25.3,"Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true",6,59,0,"Democrat",1,0,0.832061691423535 +1860,77.8,80.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely true","Somewhat disagree","Strongly agree",95,95,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe3a07f-3497-0ddf-4eb5-3d9b27ec706a","68","1","19","1","1","5","2","3","34602","539","10","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true",77.8,80.9,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly disagree",5,5,"Disagree","Neither agree nor disagree","Disagree","Strongly disagree","Disagree","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","Yes, true",5,68,0,"Republican",0,1,0.957543870478141 +1861,90.1,93.6,"True","Agree","Definitely true","Probably true","Probably true","Definitely true","Strongly agree","Strongly agree",100,73.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3a008-7109-fe7d-22d6-aeb915d24503","20","2","2","3","2","8","2","1","10011","501","33","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure",90.1,93.6,"True","Agree","Definitely false","Probably false","Probably true","Definitely true","Strongly agree","Strongly disagree",0,26.8,"Strongly agree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure",8,20,1,"Democrat",0,0,0.644006160360028 +1862,82.3,72.9,"Not sure","Agree","Probably true","Probably true","Definitely false","Definitely false","Strongly disagree","Strongly agree",15.1,37.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe3b255-da26-bccd-d7a8-18bc3efd4c86","50","2","4","1","1","4","2","3","40342","541","18","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Yes, true","Yes, true",82.3,27.1,"Not sure","Disagree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",15.1,37.2,"Disagree","Neither agree nor disagree","Disagree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true",4,50,0,"Republican",0,0,1.52658135748604 +1863,65,95.7,"True","Neither agree nor disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly disagree","Strongly agree",29.3,48.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3b33a-0091-a8d0-3f6a-1d87440871d8","45","2","5","1","1","4","1","3","29482","519","41","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true",65,4.3,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",29.3,48.7,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","No, false","No, false","Yes, true",4,45,0,"Democrat",1,0,0.59837456742152 +1864,50,79.2,"True","Disagree","Probably true","Definitely true","Probably true","Definitely false","Somewhat agree","Strongly agree",40.9,49.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe3b214-6759-1df0-505b-22f5f1a62b1f","19","1","1","2","2","6","3","2","67301","671","17","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true",50,20.8,"False","Agree","Probably true","Definitely true","Probably false","Definitely false","Somewhat disagree","Strongly agree",40.9,49.6,"Disagree","Disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true",6,19,0,"Democrat",1,0,1.42458546366702 +1865,60.1,81.4,"False","Agree","Definitely false","Probably false","Probably true","Probably true","Slightly agree","Strongly disagree",80.1,95.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3b362-4ae8-cd3b-9949-9c58767aa9d4","49","2","2","1","1","2","1","3","40475","541","18","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Yes, true",60.1,81.4,"False","Agree","Definitely false","Probably false","Probably false","Probably false","Slightly disagree","Strongly disagree",19.9,4.09999999999999,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false",2,49,0,"Democrat",1,0,0.59837456742152 +1866,50,71,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",82.2,84.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe3b279-73bb-1b7c-1de9-bec52c0ff5d3","76","2","19","1","1","6","1","2","49525","563","23","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure",50,71,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.8,15.1,"Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure",6,76,0,"Democrat",0,2,0.561994574124504 +1867,98.8,99.9,"True","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",90.9,93.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Agree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3b259-be5c-2190-357a-0bcb666be4b2","73","1","2","1","1","6","1","2","60135","602","14","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","Yes, true","No, false","Yes, true",98.8,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",9.09999999999999,6.90000000000001,"Agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true",6,73,0,"Democrat",0,0,0.702039267968476 +1868,52,68.9,"False","Strongly disagree","Probably false","Definitely false","Definitely true","Definitely true","Strongly agree","Strongly disagree",99,89.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3b1e6-8d87-167f-7ad5-c0b51a6c2ea8","64","1","9","1","1","7","1","3","39470","622","25","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false",52,68.9,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",1,10.5,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",7,64,1,"Democrat",0,0,0.73870218161496 +1869,58.6,64.2,"Not sure","Agree","Definitely false","Probably false","Probably true","Definitely true","Slightly agree","Strongly disagree",61.1,45.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Vote for a different candidate","5fe39a79-19eb-fa5f-36af-50f2d122dc84","65","1","14","1","12","4","3","4","85378","753","3","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",58.6,35.8,"Not sure","Agree","Definitely false","Probably false","Probably true","Definitely false","Slightly agree","Strongly disagree",61.1,45.7,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,65,0,"Independent",0,0,0.944765907944519 +1870,47.6,48.7,"False","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Not sure","Strongly agree","Strongly disagree",95.3,98,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3b4e8-6ce0-40ba-9494-799637f61033","45","2","17","1","1","5","3","1","03064","506","30","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true",47.6,48.7,"False","Neither agree nor disagree","Definitely false","Not sure","Definitely true","Not sure","Strongly agree","Strongly disagree",4.7,2,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true",5,45,0,"Independent",0,0,0.631126486177329 +1871,50.4,94.1,"True","Disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",25.8,23.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Vote for the Democrat Joe Biden","5fe3b42d-b111-2088-4a51-18e33f50ab12","48","2","3","1","1","6","1","4","98520","819","48","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","No, false","Yes, true",49.6,5.90000000000001,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",25.8,23.3,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Agree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false","No, false","No, false",6,48,0,"Independent",0,0,0.841954367861977 +1872,50,56.4,"False","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",35.9,64.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3b596-217f-5620-5c1b-9fcf97ce0c54","40","2","1","1","1","1","3","1","12986","523","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50,56.4,"False","Neither agree nor disagree","Probably true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",35.9,64.9,"Agree","Agree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure",1,40,0,"Independent",1,0,1.23680882931159 +1873,50,19.6,"False","Neither agree nor disagree","Probably true","Probably false","Definitely true","Definitely true","Slightly disagree","Slightly disagree",60,89,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3b3f5-9daa-5d6e-4d19-716f0eea21b8","88","2","15","1","1","7","2","4","95687","862","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure",50,80.4,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Slightly disagree","Slightly disagree",40,11,"Disagree","Strongly disagree","Agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","No, false","No, false","Not sure",7,88,0,"Republican",0,1,1.07856128262739 +1874,50,99.9,"False","Strongly agree","Definitely false","Not sure","Probably false","Not sure","Somewhat agree","Slightly disagree",24.9,24,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not vote in the presidential election","5fe3b24c-efa0-5d36-3b49-8377ec6bb0c5","75","2","3","1","1","5","3","4","97305","820","38","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure",50,0.0999999999999943,"False","Strongly disagree","Definitely false","Not sure","Probably false","Not sure","Somewhat agree","Slightly disagree",24.9,24,"Disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure",5,75,0,"Independent",0,0,1.84920451514596 +1875,71.9,81.8,"True","Strongly agree","Definitely true","Probably false","Definitely true","Definitely true","Strongly agree","Somewhat agree",76.2,81.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Agree","Strongly agree","Disagree","Agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3b66e-9a06-02c9-7f1f-1f7dc85d019f","29","2","9","2","1","6","1","3","33311","528","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false",71.9,81.8,"False","Strongly agree","Definitely true","Probably false","Definitely true","Definitely false","Strongly agree","Somewhat agree",23.8,18.7,"Disagree","Strongly agree","Agree","Disagree","Strongly agree","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true",6,29,0,"Democrat",1,1,0.612626771072269 +1876,23.4,63,"True","Neither agree nor disagree","Probably false","Probably false","Probably false","Probably true","Strongly agree","Strongly disagree",19.8,25.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3b43a-7935-cfc4-9ef6-e74d96090a3a","76","2","12","2","1","6","1","3","20720","511","21","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",76.6,63,"False","Neither agree nor disagree","Probably true","Probably true","Probably false","Probably false","Strongly agree","Strongly disagree",19.8,25.1,"Agree","Agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",6,76,0,"Democrat",0,0,0.673136595827227 +1877,52.1,31.6,"False","Agree","Definitely true","Not sure","Probably true","Definitely true","Slightly agree","Strongly disagree",85.1,80.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe3b44e-3cd4-2fbb-f6fa-eec5962298ad","54","2","8","1","1","4","2","3","72086","693","4","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure",52.1,31.6,"True","Agree","Definitely false","Not sure","Probably false","Definitely false","Slightly disagree","Strongly disagree",14.9,19.6,"Disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",4,54,0,"Independent",0,2,0.890389101626892 +1878,56.6,44.2,"True","Strongly disagree","Probably true","Definitely false","Definitely true","Definitely false","Slightly disagree","Slightly disagree",74.8,85.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe3b6be-7951-af79-e88d-267f67875480","69","1","19","1","1","4","3","3","40245","529","18","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","","Yes, true",43.4,44.2,"True","Strongly agree","Probably false","Definitely true","Definitely false","Definitely false","Slightly agree","Slightly disagree",25.2,14.8,"Disagree","Disagree","Disagree","Agree","Agree","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","","No, false",4,69,0,"Republican",0,0,0.957543870478141 +1879,99.9,0.1,"False","Strongly agree","Definitely false","Definitely false","Definitely true","Definitely true","Slightly disagree","Strongly disagree",20.6,34.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3b535-4424-d35b-11a5-80b7db589ea6","69","1","22","1","1","7","3","3","24018","573","47","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Yes, true",0.0999999999999943,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",20.6,34.4,"Strongly agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","","No, false","Yes, true","No, false","No, false","No, false","Not sure","No, false","No, false","Not sure","No, false",7,69,0,"Independent",0,1,0.643505067882763 +1880,50,50,"True","Disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly agree","Strongly disagree",12.1,7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Disagree","Vote for the Republican Donald Trump","5fe3b47d-eed7-e672-e0f3-926c2dd36e5e","69","1","4","1","1","7","3","4","80219","751","6","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false",50,50,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",12.1,7,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","No, false","No, false","No, false","No, false",7,69,0,"Independent",0,1,1.34733039815278 +1881,99.9,50,"True","Neither agree nor disagree","Probably false","Definitely false","Probably true","Definitely true","Strongly disagree","Strongly agree",76,75.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Neither agree nor disagree","Agree","Strongly disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe3b524-0e7c-0a97-d798-6bfcc3aaab5b","49","2","8","1","1","4","2","3","29577","570","41","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure",0.0999999999999943,50,"False","Neither agree nor disagree","Probably true","Definitely true","Probably false","Definitely true","Strongly disagree","Strongly agree",76,75.7,"Neither agree nor disagree","Disagree","Strongly agree","Agree","Agree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure",4,49,0,"Republican",0,0,0.890389101626892 +1882,49.8,96.9,"False","Neither agree nor disagree","Not sure","Probably false","Definitely false","Definitely false","Slightly disagree","Strongly disagree",100,72.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3b5b2-5a15-3965-ffea-61795165a19f","60","2","5","1","1","2","1","3","35216","630","1","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",49.8,3.09999999999999,"True","Neither agree nor disagree","Not sure","Probably false","Definitely false","Definitely true","Slightly agree","Strongly disagree",0,27.6,"Disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","No, false","Not sure","Yes, true",2,60,0,"Democrat",0,0,0.59134387049726 +1883,36.9,62.6,"True","Strongly agree","Definitely false","Probably false","Probably true","Definitely true","Somewhat agree","Strongly agree",57.2,50.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Agree","Agree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe3b708-7db1-758a-e843-54f4f3f5d9aa","38","1","21","1","1","7","2","2","43004","535","36","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",63.1,62.6,"False","Strongly agree","Definitely true","Probably false","Probably false","Definitely true","Somewhat disagree","Strongly agree",42.8,49.6,"Disagree","Agree","Strongly agree","Strongly agree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",7,38,1,"Republican",0,1,0.932090096130861 +1884,59.1,80.5,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",95.1,66.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3b723-4299-e3de-7739-6ef63de6ada9","65","1","15","1","1","8","1","3","21209","512","21","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",40.9,80.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",4.90000000000001,33.4,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",8,65,0,"Democrat",1,3,0.643505067882763 +1885,53.1,74.2,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",45.4,27.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Democrat Joe Biden","5fe3b8d3-ad48-ff66-0aff-87682a2fc696","35","2","-3105","1","1","8","1","3","30004","524","11","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Not sure","Not sure","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","No, false","No, false",46.9,74.2,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",45.4,27.6,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true",8,35,0,"Democrat",0,2,0.459634341107367 +1886,11.1,95.5,"True","Disagree","Definitely false","Definitely false","Probably true","Probably false","Somewhat agree","Strongly disagree",73.5,93.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe3b85d-94f3-fdea-6f10-9f95cf16d29e","72","2","3","1","1","2","2","3","23430","544","47","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true",11.1,4.5,"True","Agree","Definitely false","Definitely false","Probably true","Probably true","Somewhat agree","Strongly disagree",26.5,6.8,"Disagree","Disagree","Disagree","Strongly agree","Strongly disagree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Not sure","Yes, true",2,72,1,"Republican",0,0,0.766530426783843 +1887,98.4,89.5,"False","Disagree","Probably false","Probably false","Definitely true","Probably false","Strongly agree","Strongly disagree",18.5,7.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3b817-0d4f-3501-a6a9-ebdbcd8a62de","73","1","1","1","1","7","1","1","01020","543","22","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","No, false",1.59999999999999,10.5,"False","Disagree","Probably false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",18.5,7.8,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Yes, true",7,73,0,"Democrat",1,0,0.678727196044171 +1888,49.9,48.8,"Not sure","Disagree","Definitely false","Not sure","Definitely true","Probably true","Slightly agree","Somewhat disagree",6.1,39.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe3ba2a-fa6e-839e-b14f-56e3dcfd9107","24","1","1","1","1","2","1","2","49707","583","23","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.9,48.8,"Not sure","Agree","Definitely false","Not sure","Definitely false","Probably false","Slightly disagree","Somewhat disagree",6.1,39.7,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,24,0,"Democrat",0,0,1.49935735572671 +1889,49.9,68.9,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably true","Definitely false","Slightly disagree","Somewhat disagree",37.3,35.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Agree","Agree","Neither agree nor disagree","Not vote in the presidential election","5fe3b47b-5763-59b9-d511-44db85bdd3c0","60","2","3","1","1","2","1","3","39111","718","25","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",49.9,31.1,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Probably false","Definitely false","Slightly agree","Somewhat disagree",37.3,35.5,"Disagree","Agree","Disagree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",2,60,0,"Democrat",0,0,1.50864454760297 +1890,99.9,99.9,"Not sure","Agree","Definitely true","Probably false","Definitely false","Probably true","Strongly agree","Strongly disagree",26.9,25.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3b95f-0028-c6d8-0667-6656cf035558","31","2","19","1","1","4","3","3","21014","512","21","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true",99.9,0.0999999999999943,"Not sure","Agree","Definitely false","Probably false","Definitely false","Probably true","Strongly agree","Strongly disagree",26.9,25.4,"Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false",4,31,0,"Independent",0,1,0.468830069482283 +1891,50,80.2,"True","Disagree","Definitely true","Probably false","Definitely true","Definitely false","Strongly disagree","Strongly disagree",10.3,10.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3b998-1d50-878b-1345-964f0a1a81df","60","2","9","1","1","6","1","3","40502","541","18","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true",50,19.8,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",10.3,10.7,"Disagree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","No, false",6,60,0,"Democrat",0,0,0.59134387049726 +1892,49.9,49.9,"True","Disagree","Definitely false","Probably false","Probably false","Probably true","Somewhat disagree","Somewhat agree",24,9.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Disagree","Agree","Disagree","Agree","Agree","Vote for the Republican Donald Trump","5fe3b903-0078-9265-fac2-38e7736fde09","21","2","6","1","2","2","2","3","78223","641","44","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure",50.1,49.9,"True","Agree","Definitely false","Probably true","Probably false","Probably false","Somewhat agree","Somewhat disagree",24,9.5,"Disagree","Disagree","Agree","Agree","Disagree","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","Not sure","No, false","Not sure",2,21,0,"Republican",0,0,1.19035359976591 +1893,77.7,59.1,"True","Disagree","Probably false","Definitely false","Definitely false","Definitely true","Slightly agree","Strongly agree",29,13.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Disagree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe3b2cb-148d-740e-04c8-785ce7db14c8","72","2","10","1","1","4","2","4","92505","803","5","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true",77.7,59.1,"False","Agree","Probably false","Definitely true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",29,13.8,"Strongly disagree","Strongly agree","Disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true",4,72,1,"Republican",0,0,1.07856128262739 +1894,50,99.5,"Not sure","Strongly agree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly agree",80.8,80.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Disagree","Agree","Vote for the Republican Donald Trump","5fe3b8fa-63fb-325c-2478-de107071490e","44","1","1","16","1","2","4","3","38109","640","43","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Not sure","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","No, false","No, false",50,99.5,"Not sure","Strongly agree","Definitely true","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.2,19.7,"Agree","Disagree","Agree","Disagree","Agree","Yes, true","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false",2,44,0,"Republican",0,0,0.652117599957208 +1895,46,54.7,"Not sure","Disagree","Probably true","Probably false","Probably true","Definitely true","Slightly agree","Somewhat agree",74.9,43.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3baee-8c4f-d270-f038-1aa9a59559e2","19","2","1","1","1","5","2","2","50035","679","16","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",54,54.7,"Not sure","Agree","Probably false","Probably false","Probably true","Definitely false","Slightly agree","Somewhat disagree",25.1,56.2,"Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,19,0,"Republican",0,0,0.700060789783147 +1896,50,72.6,"True","Agree","Definitely false","Probably false","Definitely false","Definitely true","Somewhat disagree","Somewhat disagree",4.7,17.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe3baa8-e9ae-c1a5-215f-267e0361fd6b","44","1","21","1","1","6","2","3","37363","575","43","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure",50,72.6,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Somewhat agree",4.7,17.2,"Strongly disagree","Agree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Not sure","No, false","No, false","Not sure",6,44,1,"Republican",0,1,0.854374859000727 +1897,75,50,"True","Strongly agree","Definitely true","Probably true","Probably true","Definitely true","Slightly agree","Slightly disagree",32,10.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Disagree","Strongly disagree","Agree","Vote for the Republican Donald Trump","5fe3b8c4-8aef-3f74-3e1c-40e90431aeb9","68","2","5","1","1","6","2","2","67216","678","17","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true",25,50,"True","Strongly agree","Definitely false","Probably true","Probably true","Definitely false","Slightly agree","Slightly disagree",32,10.9,"Neither agree nor disagree","Disagree","Agree","Strongly disagree","Disagree","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","Not sure","No, false","No, false","Not sure","No, false","Yes, true",6,68,1,"Republican",0,0,0.83625520070175 +1898,44.1,45.6,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Probably true","Slightly disagree","Strongly disagree",38.4,64.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3ba0a-27ee-00e2-a40f-740b7cc3aa6c","37","2","8","1","1","7","4","2","49660","540","23","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",55.9,45.6,"Not sure","Neither agree nor disagree","Definitely true","Probably false","Probably false","Probably false","Slightly disagree","Strongly disagree",38.4,64.6,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,37,0,"Other",0,0,1.27928919042512 +1899,80,95.1,"False","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely true","Strongly agree","Strongly disagree",46.4,20,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3b8c8-6dd6-a78c-af74-0cae19fb22fe","70","2","14","2","1","4","1","3","77016","618","44","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","Yes, true","","Yes, true","Yes, true",80,95.1,"False","Strongly agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly disagree",46.4,20,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","","Yes, true","Yes, true",4,70,0,"Democrat",0,1,0.673136595827227 +1900,75.3,60.1,"True","Disagree","Probably false","Probably false","Definitely true","Probably false","Strongly disagree","Strongly disagree",75.7,91.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Vote for a different candidate","5fe3b988-e014-cc98-e142-6139bcc59110","39","2","11","1","1","7","3","4","85630","789","3","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","No, false","Not sure",75.3,39.9,"False","Agree","Probably true","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",24.3,8.09999999999999,"Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Agree","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure","No, false","Not sure",7,39,0,"Independent",0,0,0.363776836301422 +1901,49.9,46.7,"False","Neither agree nor disagree","Probably true","Definitely true","Probably true","Definitely false","Strongly agree","Slightly disagree",16.1,51.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3bb8c-6416-885a-1f53-64361160900b","73","1","4","1","1","5","2","3","37221","659","43","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,53.3,"False","Neither agree nor disagree","Probably false","Definitely true","Probably true","Definitely true","Strongly agree","Slightly disagree",16.1,51.8,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,73,0,"Republican",0,0,0.957543870478141 +1902,76.6,5.1,"True","Agree","Probably false","Probably true","Definitely true","Probably true","Strongly agree","Strongly agree",60.5,69.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly disagree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3b8f6-aae8-a793-3b49-c11c8b7e4c8f","64","2","-3105","1","1","4","3","3","33705","539","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",23.4,94.9,"False","Disagree","Probably false","Probably false","Definitely false","Probably false","Strongly disagree","Strongly agree",39.5,30.3,"Disagree","Strongly disagree","Agree","Strongly disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",4,64,0,"Independent",0,3,0.879927333598919 +1903,61.8,76.8,"True","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably true","Somewhat agree","Slightly agree",64.3,75.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3bc7c-b963-7a77-f0e9-49f9a5f33df4","24","2","11","10","1","7","1","3","33901","571","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure",61.8,23.2,"False","Neither agree nor disagree","Probably false","Probably true","Probably true","Probably true","Somewhat disagree","Slightly agree",64.3,75.4,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure",7,24,0,"Democrat",0,1,0.329152435286286 +1904,60.2,60.2,"False","Disagree","Probably true","Probably false","Probably true","Probably true","Somewhat agree","Somewhat agree",62.1,69.4,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3bcb2-ad17-7924-653a-62443c658aae","25","1","9","10","14","7","1","3","33901","571","10","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","Not sure",60.2,60.2,"False","Disagree","Probably false","Probably false","Probably true","Probably true","Somewhat disagree","Somewhat disagree",37.9,30.6,"Disagree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure",7,25,0,"Democrat",0,1,0.829224014640894 +1905,98.2,82.8,"False","Strongly disagree","Probably true","Probably true","Definitely false","Probably false","Strongly disagree","Somewhat disagree",76.5,85.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe3bb6d-6305-05e1-2bdb-9f743eba55ed","42","1","23","1","2","7","3","1","10013","501","33","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure",1.8,82.8,"True","Strongly disagree","Probably true","Probably false","Definitely false","Probably false","Strongly disagree","Somewhat disagree",23.5,14.9,"Strongly disagree","Agree","Agree","Disagree","Disagree","Yes, true","Yes, true","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure",7,42,0,"Independent",0,0,1.12340072610931 +1906,84.4,73.3,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Slightly disagree","Strongly agree",57.8,52.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly agree","Agree","Strongly agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3bd5f-ca74-156d-dc9c-2da5362e6298","44","1","12","1","1","7","1","4","94043","807","5","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true",15.6,73.3,"False","Disagree","Definitely false","Definitely true","Definitely true","Definitely false","Slightly agree","Strongly disagree",42.2,47.6,"Strongly agree","Strongly agree","Agree","Strongly agree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","Not sure","Yes, true",7,44,0,"Democrat",1,0,0.807899201610574 +1907,99.9,90.3,"False","Strongly disagree","Definitely false","Probably true","Definitely true","Definitely false","Strongly disagree","Strongly agree",75.1,55.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3b949-03b2-11ce-492e-07ff46bb2ea7","50","1","20","1","1","7","1","2","60048","602","14","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","Yes, true",0.0999999999999943,90.3,"True","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",24.9,44.5,"Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Yes, true","Yes, true","No, false","No, false","No, false","No, false",7,50,0,"Democrat",0,0,0.815477235177677 +1908,59.1,70.5,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely true","Definitely true","Slightly disagree","Strongly agree",98.3,74.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3bc2d-bf52-769d-2679-3f99c231335d","62","2","8","1","1","2","2","2","46514","588","15","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Not sure","Not sure",40.9,70.5,"True","Neither agree nor disagree","Definitely true","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",1.7,25.8,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure",2,62,0,"Republican",0,0,0.959966862697315 +1909,50.5,65.8,"True","Agree","Probably true","Definitely false","Probably false","Probably true","Somewhat disagree","Somewhat disagree",43.7,46.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Agree","Disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3bc6f-ac5f-59d3-c7c9-08ac3c9bba1f","56","2","1","1","1","6","2","2","48654","513","23","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure",50.5,34.2,"False","Agree","Probably true","Definitely true","Probably false","Probably false","Somewhat agree","Somewhat disagree",43.7,46.5,"Disagree","Disagree","Agree","Disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Not sure","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",6,56,0,"Republican",0,0,0.959966862697315 +1910,87.6,0.1,"False","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely false","Somewhat agree","Strongly disagree",49.5,25.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3b85e-19f5-03df-5f9a-bd8cc612947d","54","2","11","1","1","4","2","3","75165","623","44","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false",12.4,99.9,"False","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly agree",49.5,25.6,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","Yes, true",4,54,1,"Republican",0,0,0.890389101626892 +1911,49.3,51.2,"False","Disagree","Definitely true","Probably false","Definitely true","Definitely true","Somewhat agree","Strongly disagree",74.9,67.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe3be2b-8441-e236-9545-e1e91eecef5f","38","2","6","1","1","4","3","3","21061","512","21","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","No, false",49.3,51.2,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",25.1,32.3,"Strongly disagree","Strongly disagree","Agree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",4,38,0,"Other",0,0,0.683941849031096 +1912,90.1,90.1,"False","Agree","Definitely false","Not sure","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",37,19.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe3bb50-aacb-063d-e052-dbb3ee1b29c7","67","2","8","1","1","4","1","2","46218","527","15","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","No, false",90.1,9.90000000000001,"False","Agree","Definitely false","Not sure","Definitely false","Definitely false","Somewhat agree","Strongly disagree",37,19.4,"Disagree","Disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","No, false","No, false","Not sure","Yes, true",4,67,0,"Democrat",0,1,1.43376822240912 +1913,72.6,45.7,"False","Agree","Probably true","Definitely false","Definitely false","Probably false","Slightly agree","Slightly agree",42.4,51.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Vote for the Democrat Joe Biden","5fe3bfa6-ee84-c8c4-ee3b-2a1ce5ff7364","19","2","4","15","14","4","1","1","11211","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false",72.6,45.7,"False","Disagree","Probably false","Definitely false","Definitely true","Probably false","Slightly agree","Slightly disagree",57.6,48.7,"Agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true",4,19,0,"Democrat",0,0,0.644006160360028 +1914,50,99.9,"Not sure","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",50.9,24.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3bf69-3846-ce8c-1cc2-4a02cc8a758b","54","2","4","2","1","5","1","3","38703","647","25","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",50,99.9,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.9,24.8,"Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true",5,54,0,"Democrat",0,0,0.781904367900328 +1915,50,50,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Probably false","Definitely true","Strongly agree","Strongly disagree",76.7,24.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly agree","Strongly agree","Strongly disagree","Vote for the Republican Donald Trump","5fe3bf7e-b26c-0cae-2ae7-fd4d65c89ce6","65","2","3","1","1","2","2","4","85311","753","3","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",50,50,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Probably false","Definitely false","Strongly disagree","Strongly disagree",76.7,24.8,"Neither agree nor disagree","Disagree","Strongly agree","Strongly disagree","Strongly disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",2,65,1,"Republican",0,0,1.07856128262739 +1916,50,44.8,"False","Disagree","Not sure","Not sure","Definitely false","Not sure","Slightly agree","Somewhat agree",46.4,21.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3bee2-d709-a522-53a6-a3366641185a","56","2","1","1","1","2","2","1","12144","532","33","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",50,55.2,"False","Agree","Not sure","Not sure","Definitely false","Not sure","Slightly disagree","Somewhat disagree",46.4,21.8,"Neither agree nor disagree","Agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure",2,56,0,"Republican",0,0,0.928089989751292 +1917,64.1,49.9,"Not sure","Neither agree nor disagree","Definitely true","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",11.4,26,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Agree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe3b87e-1c2c-6eb4-e960-dbdeac43d045","56","2","1","1","1","5","1","3","78382","600","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","Yes, true",64.1,49.9,"Not sure","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",11.4,26,"Strongly disagree","Agree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","No, false","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false",5,56,0,"Democrat",0,0,1.50864454760297 +1918,50,50,"True","Neither agree nor disagree","Probably true","Probably true","Definitely true","Definitely true","Somewhat disagree","Strongly disagree",1,0.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Disagree","Neither agree nor disagree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3c10d-4400-177a-426d-8ec106375c86","38","2","1","1","1","2","2","3","71251","628","19","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",50,50,"True","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly agree",1,0.7,"Strongly disagree","Agree","Neither agree nor disagree","Disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",2,38,0,"Republican",0,0,0.683941849031096 +1919,11.8,99.9,"True","Strongly disagree","Definitely false","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",58.7,57.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Disagree","Neither agree nor disagree","Agree","Vote for the Democrat Joe Biden","5fe3c0b3-9ddf-14ac-ecf7-058264f90f62","48","1","1","2","1","5","1","3","30909","520","11","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true",11.8,0.0999999999999943,"True","Strongly disagree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",41.3,42.3,"Strongly agree","Disagree","Disagree","Neither agree nor disagree","Agree","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true",5,48,0,"Democrat",1,0,0.976748878611933 +1920,50,99.9,"True","Strongly agree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly agree","Slightly disagree",73.9,73.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Disagree","Strongly disagree","Strongly agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3c066-00f8-ce04-c370-99fb56d41f0d","30","2","1","1","1","2","1","2","51501","652","16","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false",50,99.9,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Slightly disagree",26.1,26.7,"Strongly agree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",2,30,0,"Democrat",0,0,0.511475565940556 +1921,68.2,70.9,"True","Strongly agree","Definitely false","Definitely false","Probably true","Definitely true","Strongly agree","Strongly agree",56.8,71.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe3c250-9b5e-0147-04b3-d23225ae490b","44","1","19","1","1","6","2","2","55057","613","24","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true",31.8,29.1,"False","Strongly agree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",43.2,28.4,"Disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false","Not sure","No, false","No, false","Not sure","Not sure","Yes, true",6,44,0,"Republican",0,0,0.932090096130861 +1922,50.9,76.5,"True","Agree","Definitely true","Probably true","Definitely false","Definitely true","Strongly agree","Somewhat agree",64.1,50.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Neither agree nor disagree","Disagree","Disagree","Agree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3be3d-8634-728b-a595-dc69c79e089d","25","1","20","1","1","7","2","4","90017","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false",50.9,76.5,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Strongly disagree","Somewhat agree",35.9,49.9,"Neither agree nor disagree","Disagree","Disagree","Disagree","Neither agree nor disagree","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",7,25,0,"Democrat",0,0,0.824062531779561 +1923,73.9,36.5,"True","Agree","Probably true","Definitely true","Probably false","Definitely true","Strongly agree","Strongly agree",13.3,15,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Disagree","Strongly agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3c1cb-7331-ddf5-b011-0bf84ebbcb8f","82","1","6","1","1","2","1","3","42420","649","18","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","No, false","Yes, true","Yes, true","No, false",73.9,36.5,"False","Disagree","Probably false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly disagree",13.3,15,"Disagree","Strongly disagree","Disagree","Strongly disagree","Neither agree nor disagree","Not sure","No, false","Not sure","Not sure","No, false","No, false","Not sure","Not sure","No, false","No, false","No, false","Yes, true",2,82,0,"Democrat",0,0,0.957543870478141 +1924,81.4,12.1,"True","Neither agree nor disagree","Definitely true","Definitely false","Probably true","Probably true","Strongly agree","Strongly agree",55.6,47.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe3c394-2143-2a85-5eec-053a484a2a11","35","1","18","1","1","7","1","1","11229","501","33","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",81.4,12.1,"True","Neither agree nor disagree","Definitely true","Definitely false","Probably true","Probably false","Strongly agree","Strongly disagree",44.4,52.3,"Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly disagree","Disagree","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true",7,35,0,"Democrat",1,0,0.605598834997122 +1925,0.1,0.1,"False","Disagree","Definitely true","Definitely false","Definitely false","Not sure","Strongly agree","Somewhat disagree",22,38.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Strongly agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Disagree","Vote for the Republican Donald Trump","5fe3c2f4-9678-5104-039c-5209b5146270","32","1","9","1","1","6","4","3","33573","539","10","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false",0.1,99.9,"True","Disagree","Definitely false","Definitely true","Definitely false","Not sure","Strongly disagree","Somewhat agree",22,38.2,"Strongly agree","Neither agree nor disagree","Agree","Neither agree nor disagree","Agree","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false",6,32,1,"Republican",0,2,0.871468009862344 +1926,35.8,76,"False","Strongly agree","Definitely false","Probably true","Definitely true","Definitely true","Strongly disagree","Strongly disagree",82.7,63.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3c1c8-1f6f-2bc7-87b7-8ceffca6770f","60","1","2","1","1","4","2","2","45205","515","36","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure",64.2,24,"False","Strongly disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",17.3,36.3,"Disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure",4,60,0,"Republican",0,0,0.805895656010846 +1927,66.2,34.3,"Not sure","Strongly agree","Probably false","Definitely false","Definitely true","Definitely false","Strongly agree","Slightly disagree",35.8,29.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not vote in the presidential election","5fe3be27-e89d-1991-c9f6-4b1f464fb9b7","51","1","1","1","1","2","3","3","32145","561","10","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false",33.8,34.3,"Not sure","Strongly disagree","Probably false","Definitely true","Definitely false","Definitely false","Strongly disagree","Slightly agree",35.8,29.3,"Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false",2,51,0,"Independent",0,2,1.9069936046507 +1928,93.6,85.8,"False","Strongly agree","Probably true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly disagree",74.8,96.1,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Vote for the Republican Donald Trump","5fe3c3c7-845e-3027-ffdb-853aa41b116f","68","1","4","1","1","6","2","4","89122","839","29","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true",93.6,85.8,"False","Strongly disagree","Probably true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",25.2,3.90000000000001,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","No, false","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false","Yes, true",6,68,1,"Republican",0,1,1.34733039815278 +1929,75.7,77.5,"True","Agree","Definitely false","Definitely false","Probably true","Probably true","Slightly agree","Slightly agree",54.7,51.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3c662-470f-2659-9fa6-d654586979a4","56","1","1","1","1","2","1","2","60406","602","14","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","No, false","No, false",24.3,77.5,"True","Agree","Definitely true","Definitely false","Probably false","Probably false","Slightly agree","Slightly agree",54.7,51.7,"Disagree","Disagree","Agree","Disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","No, false",2,56,0,"Democrat",0,0,1.19918316758111 +1930,50,50,"Not sure","Neither agree nor disagree","Probably false","Definitely false","Definitely true","Not sure","Somewhat disagree","Strongly agree",58,79.5,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe3bfc8-a0cf-dfba-1ab2-207c30b8ead1","20","2","-3105","1","1","4","2","1","10465","501","33","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false",50,50,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Definitely false","Not sure","Somewhat agree","Strongly disagree",42,20.5,"Neither agree nor disagree","Neither agree nor disagree","Agree","Agree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false","No, false",4,20,0,"Republican",0,0,0.676814415645079 +1931,92,72.5,"False","Neither agree nor disagree","Probably false","Probably false","Probably true","Definitely true","Strongly agree","Strongly agree",44.8,91.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3c691-d81f-d33f-17ad-f77a76a2d0d4","44","1","5","1","1","8","3","1","01930","506","22","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",92,72.5,"True","Neither agree nor disagree","Probably true","Probably false","Probably false","Definitely false","Strongly disagree","Strongly disagree",55.2,8.7,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",8,44,0,"Independent",0,3,0.605598834997122 +1932,99.9,99.9,"Not sure","Strongly agree","Definitely false","Definitely true","Definitely true","Definitely true","Slightly disagree","Strongly disagree",100,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3c91f-f00f-edc0-e153-ea6cd67eb69d","42","1","1","3","1","2","3","3","38108","640","43","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",99.9,0.0999999999999943,"Not sure","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Slightly agree","Strongly disagree",100,100,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,42,0,"Independent",0,0,1.11806239447928 +1933,80.5,77.3,"Not sure","Agree","Definitely true","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly disagree",31.1,10.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Disagree","Disagree","Disagree","Vote for the Democrat Joe Biden","5fe3cb75-ccf9-869e-5b0a-a6d17e03b978","22","1","5","1","2","3","1","2","45653","564","36","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",19.5,77.3,"Not sure","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",31.1,10.2,"Neither agree nor disagree","Agree","Disagree","Disagree","Disagree","Yes, true","No, false","Not sure","No, false","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","No, false",3,22,0,"Democrat",0,0,1.09020456410266 +1934,83.9,86.6,"False","Neither agree nor disagree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",77,88.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3ccac-0886-89ba-e618-164b6a33cd8b","66","1","10","1","1","6","1","4","85351","753","3","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Not sure","No, false","Not sure","No, false","No, false","Yes, true","Yes, true","Not sure",83.9,86.6,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",23,11.4,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","Not sure",6,66,0,"Democrat",0,1,0.905456100816435 +1935,52,56.8,"True","Agree","Definitely false","Definitely true","Definitely false","Definitely true","Somewhat agree","Somewhat agree",52.3,42.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","Agree","Agree","Agree","Strongly agree","Agree","Not vote in the presidential election","5fe3ce17-67f8-cf45-409b-7177c6b7a30b","34","1","1","2","1","2","1","3","39702","673","25","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",48,56.8,"False","Disagree","Definitely false","Definitely true","Definitely false","Definitely true","Somewhat agree","Somewhat agree",47.7,57.7,"Agree","Agree","Disagree","Strongly agree","Disagree","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",2,34,0,"Democrat",0,0,1.95241475503695 +1936,50,50,"Not sure","Agree","Definitely false","Definitely true","Definitely true","Definitely false","Strongly disagree","Strongly disagree",81.8,75.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe3c03d-7428-9759-67b0-ed02ac05f70a","56","2","18","1","1","2","2","3","88260","790","32","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Yes, true",50,50,"Not sure","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",18.2,24.8,"Neither agree nor disagree","Neither agree nor disagree","Agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true",2,56,1,"Republican",0,0,0.879927333598919 +1937,75.2,31.9,"False","Strongly agree","Definitely true","Probably true","Definitely false","Definitely false","Strongly agree","Strongly agree",9.9,16.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe3d054-1b1f-4a61-328e-70dd33c437c4","67","1","19","1","1","7","2","1","11784","501","33","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true",75.2,31.9,"False","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",9.9,16.6,"Disagree","Agree","Disagree","Strongly disagree","Agree","Yes, true","Not sure","No, false","No, false","No, false","No, false","Yes, true","Yes, true","No, false","Not sure","Not sure","Yes, true",7,67,0,"Republican",0,0,0.678727196044171 +1938,0.1,78,"Not sure","Disagree","Probably true","Probably false","Probably true","Probably false","Slightly agree","Somewhat disagree",84.5,69.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Agree","Agree","Vote for the Republican Donald Trump","5fe3d0fe-03ea-c9e9-7422-3c3c9aa4f31e","59","1","20","1","1","5","2","4","94954","807","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Yes, true","Yes, true","No, false","No, false",0.1,78,"Not sure","Agree","Probably false","Probably true","Probably true","Probably true","Slightly disagree","Somewhat agree",15.5,30.4,"Strongly disagree","Disagree","Agree","Disagree","Agree","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Yes, true","No, false","No, false","No, false",5,59,0,"Republican",0,0,1.54664812158548 +1939,57.1,94.5,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Strongly agree",72,84.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Vote for the Democrat Joe Biden","5fe3d136-9262-383d-c269-a09689b53f4c","50","1","19","1","1","7","1","3","19713","504","8","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",57.1,5.5,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",28,15.5,"Agree","Disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true",7,50,0,"Democrat",0,0,0.747484873742735 +1940,93.5,83.9,"True","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",87.5,86.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Republican Donald Trump","5fe3d36f-cd6f-be80-b804-96388b822650","35","1","21","1","2","6","3","4","90001","803","5","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true",6.5,16.1,"False","Agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly disagree",87.5,86.8,"Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","No, false","No, false","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",6,35,0,"Democrat",1,1,2.23004464299598 +1941,50,57.2,"False","Disagree","Probably true","Probably true","Definitely true","Definitely true","Strongly agree","Strongly agree",18.9,28.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Strongly agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3d098-04b9-e7ff-c131-8e6b1d23004b","75","1","12","4","1","6","1","2","60056","602","14","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Yes, true",50,42.8,"False","Disagree","Probably false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",18.9,28.8,"Agree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","Not sure","Not sure","No, false","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","No, false",6,75,0,"Democrat",0,0,0.535844609284001 +1942,40.5,95.7,"False","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Not sure","Slightly agree","Strongly disagree",2.6,0.2,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3d01d-79b6-fc4b-c50f-e13d5a8161c3","65","1","7","2","1","5","1","3","35215","630","1","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","No, false",40.5,95.7,"True","Neither agree nor disagree","Definitely false","Probably false","Definitely false","Not sure","Slightly disagree","Strongly disagree",2.6,0.2,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Strongly disagree","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Yes, true",5,65,0,"Democrat",0,0,0.84087702041167 +1943,99.9,0.1,"False","Agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",61.8,100,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Agree","Agree","Vote for the Democrat Joe Biden","5fe3d36a-a0ae-d47d-3902-c79a6627d432","31","1","17","1","1","1","1","3","77084","618","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true","Yes, true",99.9,0.1,"False","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",38.2,0,"Strongly disagree","Strongly agree","Strongly agree","Agree","Disagree","No, false","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false",1,31,0,"Democrat",0,0,0.585658890557251 +1944,93.2,87.5,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",84.3,90.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Agree","Agree","Strongly agree","Strongly agree","Vote for the Democrat Joe Biden","5fe3d342-7644-c390-9d0b-fdd00694404e","35","1","22","1","2","8","1","1","10013","501","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",93.2,12.5,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",84.3,90.7,"Strongly agree","Disagree","Agree","Strongly disagree","Strongly disagree","No, false","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false",8,35,0,"Democrat",1,0,1.12340072610931 +1945,51.7,99.9,"True","Disagree","Definitely false","Definitely false","Definitely true","Definitely true","Somewhat agree","Slightly agree",3,5.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3d2de-faf6-2809-8f0c-c555d4c20645","20","1","19","1","1","1","3","1","19525","504","39","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true",48.3,0.0999999999999943,"True","Disagree","Definitely true","Definitely false","Definitely false","Definitely false","Somewhat disagree","Slightly agree",3,5.7,"Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly agree","Yes, true","Not sure","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true",1,20,0,"Other",1,2,0.568188151788183 +1946,37.5,26.5,"False","Agree","Probably true","Probably false","Probably true","Probably false","Strongly agree","Strongly agree",52.3,51.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3d3c2-7c05-b8b0-7ed5-1b37283ae95a","43","1","3","2","1","2","1","3","33311","528","10","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","No, false","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","Not sure","Not sure","No, false",37.5,73.5,"True","Agree","Probably true","Probably false","Probably true","Probably false","Strongly agree","Strongly disagree",52.3,51.4,"Neither agree nor disagree","Agree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true",2,43,0,"Democrat",1,0,0.750278089496237 +1947,70.2,50.8,"True","Neither agree nor disagree","Probably true","Probably true","Definitely true","Definitely true","Slightly disagree","Strongly agree",70,76.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Agree","Neither agree nor disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe3d0ef-d3b6-3c9e-7fca-2628e1f02c60","77","1","19","1","1","4","3","4","89012","839","29","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",70.2,50.8,"False","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Slightly disagree","Strongly disagree",30,23.5,"Strongly disagree","Disagree","Neither agree nor disagree","Strongly disagree","Agree","Yes, true","No, false","Yes, true","Yes, true","No, false","Not sure","No, false","No, false","No, false","No, false","No, false","Yes, true",4,77,0,"Independent",0,1,1.34733039815278 +1948,96.8,86.9,"True","Strongly agree","Probably false","Definitely false","Definitely true","Definitely false","Strongly agree","Somewhat agree",41,66.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Strongly agree","Disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe3d2a3-2a44-ceb2-0381-f13ecbbd86bc","40","1","20","2","1","7","1","1","10003","501","33","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Yes, true",96.8,86.9,"True","Strongly agree","Probably false","Definitely true","Definitely false","Definitely false","Strongly agree","Somewhat disagree",41,66.1,"Agree","Strongly agree","Disagree","Strongly disagree","Disagree","No, false","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","No, false",7,40,0,"Democrat",1,0,0.791344418797853 +1949,54.7,53,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Definitely false","Strongly disagree","Somewhat agree",35.8,15.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3d4d6-ff34-c20c-a60c-2a9e70348927","36","1","-3105","1","1","6","1","1","10036","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Yes, true","No, false","Not sure",45.3,53,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably false","Definitely false","Strongly agree","Somewhat disagree",35.8,15.5,"Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","No, false","No, false","Not sure",6,36,0,"Democrat",0,1,0.605598834997122 +1950,73.3,29.5,"True","Strongly disagree","Definitely false","Probably false","Definitely true","Definitely false","Strongly agree","Strongly agree",63.1,63,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3d5d4-fd46-4843-2446-311eeda3abe1","51","1","4","1","1","6","1","3","34104","571","10","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","No, false","Not sure",73.3,70.5,"False","Strongly disagree","Definitely false","Probably true","Definitely false","Definitely false","Strongly agree","Strongly disagree",36.9,37,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure",6,51,0,"Democrat",0,0,0.747484873742735 +1951,71,79.2,"True","Agree","Definitely true","Definitely false","Definitely true","Definitely false","Strongly agree","Strongly agree",70.5,72,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Disagree","Strongly disagree","Strongly agree","Agree","Vote for the Democrat Joe Biden","5fe3d4d1-b127-7899-8ad6-58d0a3db8726","46","1","4","1","1","2","1","2","43701","596","36","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true",29,20.8,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",29.5,28,"Disagree","Agree","Strongly disagree","Strongly disagree","Disagree","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","No, false","No, false","Yes, true","No, false",2,46,0,"Independent",0,2,0.815477235177677 +1952,62.6,72.1,"True","Agree","Definitely true","Probably true","Definitely true","Definitely true","Somewhat agree","Somewhat disagree",44.8,45.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Disagree","Disagree","Disagree","Disagree","Vote for the Republican Donald Trump","5fe3d88b-3dc7-bd52-ea49-a9a5e7a5c222","45","1","22","1","1","7","2","4","90009","803","5","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",37.4,27.9,"False","Agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",55.2,54.4,"Agree","Agree","Agree","Disagree","Agree","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,45,0,"Republican",0,0,1.56503676943297 +1953,50,50,"Not sure","Agree","Definitely true","Probably false","Definitely false","Definitely true","Strongly agree","Somewhat disagree",24.8,24.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Agree","Neither agree nor disagree","Disagree","Agree","Vote for the Republican Donald Trump","5fe3db1b-990e-5053-a477-fc8ea9429a9e","66","1","4","1","1","2","3","2","43558","547","36","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true",50,50,"Not sure","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",24.8,24.3,"Agree","Disagree","Neither agree nor disagree","Disagree","Disagree","Not sure","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true",2,66,0,"Republican",0,0,1.04464351786682 +1954,0.5,9.7,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly agree",61.2,75.4,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Vote for the Republican Donald Trump","5fe3ddc5-2db7-f06b-bdb2-e76c67d988ab","34","1","10","1","1","7","2","1","10001","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false",0.5,90.3,"False","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly agree",38.8,24.6,"Agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Disagree","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false",7,34,0,"Republican",0,3,0.919167646530211 +1955,99.9,75,"True","Strongly agree","Definitely false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",85,25.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Not vote in the presidential election","5fe3d9fb-05c8-c22e-3df6-dfe9376b3625","68","1","3","1","1","2","2","2","46203","527","15","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true",0.0999999999999943,25,"False","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly agree","Strongly disagree",15,74.9,"Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true",2,68,0,"Republican",0,0,1.79105215537822 +1956,42.8,82.9,"True","Strongly agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",88.2,93.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Vote for the Republican Donald Trump","5fe3e372-5392-41eb-0a6e-b17b6284239c","48","1","5","1","1","2","2","3","38671","640","25","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","No, false","No, false","No, false","No, false","Not sure","No, false","Not sure","Yes, true","No, false",42.8,17.1,"False","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",11.8,6.40000000000001,"Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Yes, true","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","Not sure","No, false","Yes, true",2,48,1,"Republican",0,1,1.11226716750253 +1957,57.9,93.5,"False","Agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",79,71.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","","Agree","Strongly disagree","Vote for the Democrat Joe Biden","5fe3e044-8a57-8111-c4a7-105728195d92","28","1","4","1","1","6","1","2","66503","605","17","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",42.1,6.5,"False","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",21,28.7,"Agree","Neither agree nor disagree","","Disagree","Strongly disagree","Yes, true","No, false","Yes, true","No, false","Not sure","No, false","Yes, true","No, false","Yes, true","No, false","Yes, true","Yes, true",6,28,0,"Democrat",0,1,0.638931314338847 +1958,50,0.1,"False","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",26.9,36.6,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","Neither agree nor disagree","Strongly disagree","Agree","Agree","Vote for the Democrat Joe Biden","5fe3e578-ab09-b133-2ea9-a2995438be3d","78","1","18","1","1","7","1","2","67218","678","17","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true",50,0.1,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",26.9,36.6,"Agree","Neither agree nor disagree","Strongly disagree","Disagree","Disagree","No, false","Not sure","Yes, true","No, false","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true",7,78,0,"Democrat",0,0,0.702039267968476 +1959,50.9,61.9,"Not sure","Agree","Probably false","Probably false","Definitely true","Probably false","Somewhat agree","Somewhat agree",64.3,44.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","Agree","Disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Vote for a different candidate","5fe3a081-0483-c1d3-9a8a-e148812e1192","22","2","10","2","1","6","1","3","19734","504","8","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Yes, true",49.1,61.9,"Not sure","Disagree","Probably true","Probably true","Definitely false","Probably true","Somewhat disagree","Somewhat agree",64.3,44.1,"Disagree","Agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","No, false","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Yes, true",6,22,0,"Democrat",0,0,0.316962051290726 +1960,46.8,16,"False","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Slightly disagree","Somewhat disagree",73.8,58.4,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Wastewater from the airplane lavatory","","","","","","","5fe0e83d-f050-e8e2-51a3-416217047a21","44","2","6","1","1","2","2","2","65804","619","26","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","No, false","No, false","Yes, true","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure",46.8,84,"True","Strongly agree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat disagree",26.2,41.6,"","","","","","Yes, true","Not sure","Yes, true","Yes, true","No, false","No, false","No, false","Not sure","No, false","No, false","Not sure","Not sure",2,44,0,"Other",0,0,1.27928919042512 +1961,78.7,99.9,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly disagree",49.3,15.2,"","","","","","","","","","5fe0ed72-b8f5-35d5-a912-acc2ecf14360","29","2","1","15","2","2","1","1","11356","501","33","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","","Not sure","Not sure","","","Yes, true","","","No, false","Not sure","","",21.3,99.9,"False","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",50.7,84.8,"","","","","","","Not sure","Not sure","","","Yes, true","","","Yes, true","Not sure","","",2,29,0,"Other",0,0,1.78621074141776 +1962,91.4,89.5,"True","Neither agree nor disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",83.5,100,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Chemicals distributed by government agents","Strongly agree","Neither agree nor disagree","Strongly disagree","Disagree","Agree","","5fe0ee51-e3a5-03f9-a8ca-b59c58a9313d","28","2","2","1","1","6","1","2","45239","515","36","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","Not sure","Yes, true",91.4,10.5,"True","Neither agree nor disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly disagree","Strongly disagree",16.5,0,"Strongly disagree","Neither agree nor disagree","Strongly disagree","Disagree","Disagree","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Yes, true",6,28,0,"Other",0,0,1.30488343971418 +1963,38.1,36.1,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Not sure","Definitely false","Slightly disagree","Slightly disagree",37,39.2,"","","","","","","","","","5fe0ef60-7694-9e62-d491-4d46affac862","75","2","6","1","1","2","3","4","83706","757","13","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",61.9,36.1,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Not sure","Definitely false","Slightly disagree","Slightly disagree",37,39.2,"","","","","","","","","","","","","","","","","",2,75,0,"Other",0,0,1.84920451514596 +1964,69.4,99.5,"Not sure","Neither agree nor disagree","Probably true","Probably true","Probably true","Definitely true","Strongly agree","Strongly agree",76.9,65.1,"","","","","","","","","","5fe0f311-8385-d71e-3195-2fb200b589c5","43","2","1","1","1","2","1","4","89104","839","29","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",30.6,0.5,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably false","Definitely false","Strongly agree","Strongly disagree",76.9,65.1,"","","","","","","","","","","","","","","","","",2,43,0,"Other",0,0,1.64996497351335 +1965,50,82.5,"False","Agree","Probably true","Probably false","Definitely true","Probably false","Strongly agree","Strongly disagree",27.4,23.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Agree","","","","","","5fe0f4a0-9c4b-5c07-a073-49e2ee21b442","39","1","2","1","1","2","1","3","71409","644","19","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true",50,17.5,"False","Agree","Probably true","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",27.4,23.7,"Agree","","","","","Yes, true","No, false","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Not sure","Yes, true",2,39,0,"Other",0,0,1.4648345646551 +1966,50,50,"Not sure","Agree","Definitely false","Probably false","Definitely false","Definitely false","Slightly agree","Slightly agree",12.5,22.5,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe10703-067a-68e9-a513-fa3972124aad","61","1","24","1","1","6","2","2","55803","676","24","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","No, false","Not sure","No, false","No, false","Yes, true","Not sure","No, false","Not sure","Yes, true","No, false","No, false","Yes, true",50,50,"Not sure","Disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Slightly agree",12.5,22.5,"","","","","","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure","No, false","No, false","Yes, true","Yes, true",6,61,0,"Other",0,0,2.05601198902308 +1967,83.5,73.7,"True","Agree","Definitely false","Not sure","Probably true","Definitely true","Strongly disagree","Strongly agree",11.6,37.3,"","","","","","","","","","5fe10e7b-bcb0-8fd3-f7eb-61f23f4bb087","60","1","17","1","1","4","1","3","70001","622","19","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",83.5,73.7,"False","Disagree","Definitely false","Not sure","Probably false","Definitely false","Strongly agree","Strongly disagree",11.6,37.3,"","","","","","","","","","","","","","","","","",4,60,0,"Other",0,0,1.88458708070939 +1968,85.1,71.9,"False","Disagree","Definitely false","Probably false","Definitely false","Probably true","Strongly disagree","Strongly disagree",NA,NA,"","","","","","","","","","5fe11f09-4938-c191-3a85-55c667a7f34a","73","2","1","1","1","2","1","3","29577","570","41","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",14.9,28.1,"True","Disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly disagree",NA,NA,"","","","","","","","","","","","","","","","","",2,73,0,"Other",0,0,1.31422437374394 +1969,50,50,"True","Neither agree nor disagree","Not sure","Not sure","Probably true","Probably false","Slightly agree","Strongly disagree",31.4,88.2,"","","","","","","","","","5fe12142-cd0e-a669-f3a4-a7f8e9b4e497","66","1","1","1","1","3","2","1","06002","533","7","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","No, false","No, false","Not sure",50,50,"True","Neither agree nor disagree","Not sure","Not sure","Probably false","Probably false","Slightly agree","Strongly disagree",68.6,11.8,"","","","","","No, false","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure",3,66,0,"Other",0,0,1.73157807953745 +1970,70.2,86.1,"Not sure","Disagree","Definitely true","Probably false","Definitely true","Probably true","Strongly agree","Strongly agree",NA,NA,"","","","","","","","","","5fe14dd7-2dc3-49a1-5632-367db1323345","32","2","3","15","2","2","1","3","78577","636","44","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",29.8,13.9,"Not sure","Agree","Definitely false","Probably false","Definitely false","Probably false","Strongly agree","Strongly disagree",NA,NA,"","","","","","","","","","","","","","","","","",2,32,0,"Other",0,0,1.69351643945936 +1971,50.1,50.1,"Not sure","Neither agree nor disagree","Not sure","Probably false","Not sure","Probably true","Strongly agree","Strongly agree",49.6,24.8,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe24706-6c05-974a-6289-494ed85ad2af","20","1","4","1","1","2","4","3","28110","517","34","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,50.1,"Not sure","Neither agree nor disagree","Not sure","Probably false","Not sure","Probably false","Strongly agree","Strongly disagree",49.6,24.8,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,20,0,"Other",0,0,1.37434485647712 +1972,56,64.7,"False","Agree","Definitely false","Probably false","Probably true","Not sure","Somewhat agree","Strongly disagree",10.4,23.2,"","","","","","","","","","5fe23445-5331-aa14-c7b9-bef112cc1d73","44","2","1","1","1","1","3","3","38559","659","43","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",56,35.3,"True","Agree","Definitely false","Probably false","Probably false","Not sure","Somewhat agree","Strongly disagree",10.4,23.2,"","","","","","","","","","","","","","","","","",1,44,0,"Other",0,0,1.17262539987032 +1973,50.1,63.9,"False","Disagree","Probably true","Definitely true","Definitely true","Definitely true","Somewhat agree","Slightly disagree",40.6,12.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe249f8-a8e8-05eb-3588-efb4da550262","21","2","3","1","1","4","3","2","57069","725","42","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",50.1,36.1,"True","Agree","Probably true","Definitely true","Definitely false","Definitely false","Somewhat agree","Slightly agree",40.6,12.5,"","","","","","Not sure","Yes, true","Yes, true","Not sure","Yes, true","No, false","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure",4,21,0,"Other",0,0,1.20026149111351 +1974,28.8,99.9,"False","Disagree","Probably false","Probably true","Definitely false","Definitely true","Strongly agree","Strongly agree",88.8,75.8,"","","","","","","","","","5fe24a39-3c48-d648-7544-ab6c74c647fb","19","1","16","1","1","2","1","2","48706","513","23","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",71.2,0.0999999999999943,"True","Agree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",11.2,24.2,"","","","","","","","","","","","","","","","","",2,19,0,"Other",0,0,1.49935735572671 +1975,50,50,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely true","Definitely true","Slightly agree","Somewhat agree",NA,NA,"","","","","","","","","","5fe24a16-a963-13e6-6df6-f17f56aad94c","72","2","4","5","1","2","1","4","96815","744","12","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",50,50,"Not sure","Neither agree nor disagree","Probably false","Not sure","Definitely false","Definitely false","Slightly agree","Somewhat disagree",NA,NA,"","","","","","","","","","","","","","","","","",2,72,0,"Other",0,0,1.41143995231488 +1976,50.7,93.2,"False","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly agree",64.9,84.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","","5fe380ed-b5a4-ebaf-aa73-d8dae8fdbdbd","68","2","3","2","1","2","1","2","60432","602","14","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure",49.3,93.2,"False","Neither agree nor disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",35.1,15.7,"Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure",2,68,0,"Other",0,0,1.87352487337359 +1977,50,96.4,"True","Strongly agree","Definitely false","Definitely true","Probably true","Definitely true","Strongly agree","Strongly disagree",34,52.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Wastewater from the airplane lavatory","","","","","","","5fe102b4-1128-80ec-11d2-d8cff978ec4c","30","1","5","1","1","6","1","1","02062","506","22","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",50,3.59999999999999,"False","Strongly disagree","Definitely false","Definitely false","Probably false","Definitely false","Strongly disagree","Strongly disagree",34,52.9,"","","","","","Not sure","Not sure","Not sure","Yes, true","Yes, true","No, false","Not sure","Not sure","Not sure","No, false","Not sure","Not sure",6,30,0,"Other",0,0,1.57592247146049 +1978,68,76.1,"True","Agree","Probably true","Probably true","Definitely false","Not sure","Somewhat disagree","Slightly agree",78.5,8.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not vote in the presidential election","5fe3a12c-8d13-7e18-423a-463ac7c98edb","20","2","1","1","1","2","3","2","45040","515","36","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","No, false","Yes, true","Yes, true",32,23.9,"False","Agree","Probably false","Probably true","Definitely false","Not sure","Somewhat agree","Slightly disagree",21.5,91.9,"Disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","No, false","Yes, true","Yes, true","No, false",2,20,0,"Independent",0,0,1.20026149111351 +1979,50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Definitely true","Probably true","","",NA,NA,"","","","","","","","","","5fe3a23e-a09f-95d0-99b6-c19fc4c53fcd","31","2","8","1","2","2","4","3","77302","618","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",50,50,"Not sure","Neither agree nor disagree","Probably true","Not sure","Definitely false","Probably true","","",NA,NA,"","","","","","","","","","","","","","","","","",2,31,0,"Other",0,0,2.21876831613416 +1980,49.8,52.3,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly disagree","Strongly agree",80.1,23.2,"","","","","","","","","","5fe1041c-e42a-e67e-ce73-77b4fd2b242f","64","1","1","2","1","1","1","2","46402","602","15","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.8,52.3,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.9,76.8,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",1,64,0,"Other",0,0,2.68661945576996 +1981,49.9,57.3,"Not sure","Neither agree nor disagree","Probably false","Probably false","Probably true","Probably false","Slightly agree","Somewhat disagree",26.7,28.8,"","","","","","","","","","5fe0eeab-8fad-87e4-49a6-b86082ebe9cc","32","2","3","1","1","4","2","2","65201","604","26","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,57.3,"Not sure","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably true","Slightly agree","Somewhat disagree",26.7,28.8,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",4,32,0,"Other",0,0,1.30488343971418 +1982,48.7,60.5,"False","Neither agree nor disagree","Definitely true","Definitely true","Probably true","Definitely false","Somewhat disagree","Somewhat disagree",NA,NA,"","","","","","","","","","5fe0ed89-9c6b-2c50-8e88-6cf6da6bc66b","63","1","10","1","1","6","3","4","84041","770","45","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",51.3,39.5,"False","Neither agree nor disagree","Definitely false","Definitely true","Probably false","Definitely false","Somewhat disagree","Somewhat disagree",NA,NA,"","","","","","","","","","","","","","","","","",6,63,0,"Other",0,0,2.65174425954799 +1983,52.7,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Definitely false","Strongly agree","Strongly disagree",40.9,38.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe0e68d-5121-305a-7a52-f217b7812b00","53","2","12","1","2","4","3","1","11727","501","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","No, false","","","","","","",52.7,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Definitely false","Strongly agree","Strongly disagree",40.9,38.5,"","","","","","","","","","","No, false","","","","","","",4,53,0,"Other",0,0,2.98684649760131 +1984,50,75.7,"Not sure","Agree","Definitely false","Probably false","Definitely true","Definitely false","Strongly disagree","Somewhat agree",97.3,96.6,"","","","","","","","","","5fe0f1f1-db39-2dc5-1df9-e4f20fcdd7f3","68","1","12","1","1","6","3","2","43440","547","36","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",50,75.7,"Not sure","Agree","Definitely false","Probably true","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",2.7,3.40000000000001,"","","","","","","","","","","","","","","","","",6,68,0,"Other",0,0,1.79105215537822 +1985,72.6,63.9,"True","Neither agree nor disagree","Probably true","Probably false","Probably true","Probably false","Slightly agree","Somewhat agree",56.5,38.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe0e70a-5c02-d5ed-a82a-240664af88a3","23","2","1","2","1","2","1","2","53216","617","50","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Yes, true","Not sure","","","","Yes, true","","","","","","No, false",27.4,63.9,"False","Neither agree nor disagree","Probably false","Probably true","Probably false","Probably false","Slightly disagree","Somewhat disagree",56.5,38.7,"","","","","","Yes, true","Not sure","","","","Yes, true","","","","","","No, false",2,23,0,"Other",0,0,1.56839838058007 +1986,65.8,96.9,"False","Strongly agree","Definitely true","Probably false","Definitely false","Probably false","Strongly disagree","Strongly agree",25.3,15.3,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","","","","","","","","","5fe0f4d0-c877-3a5d-1ec3-634c1c795556","32","2","3","1","1","2","1","2","43614","547","36","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","Not sure","","","","","","","","","","",34.2,96.9,"True","Strongly disagree","Definitely true","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",25.3,15.3,"","","","","","","Not sure","","","","","","","","","","",2,32,0,"Other",0,0,1.30488343971418 +1987,54.3,79,"True","Agree","Definitely false","Probably false","Definitely true","Probably true","Strongly disagree","Strongly disagree",66.3,81.1,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","","","","","","","5fe0f59a-4a73-6698-a9d8-e5e0c885e775","19","2","1","1","1","2","3","3","33435","548","10","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","Not sure","","","","","","",45.7,21,"True","Agree","Definitely false","Probably true","Definitely true","Probably true","Strongly agree","Strongly disagree",33.7,18.9,"","","","","","","","","","","Not sure","","","","","","",2,19,0,"Other",0,0,1.10018682366745 +1988,50,50,"Not sure","Neither agree nor disagree","Probably true","Probably true","Definitely true","Definitely false","Strongly agree","Strongly agree",80.2,83.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe1119b-d5b2-d4f8-6d46-da0bbf678a7b","74","1","1","1","1","2","1","2","61075","682","14","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",19.8,16.4,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,74,0,"Other",0,0,1.79105215537822 +1989,57.1,67.2,"False","Strongly disagree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",62.8,66.2,"","","","","","","","","","5fe11241-a839-e15c-d72c-58b73bd43413","21","1","1","1","1","4","1","1","90014","501","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",42.9,67.2,"True","Strongly agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",37.2,33.8,"","","","","","","","","","","","","","","","","",4,21,0,"Other",0,0,1.44956936221734 +1990,22.2,94.7,"True","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely true","Strongly agree","Strongly agree",27.3,32,"","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe11e9f-83ed-166c-64b5-e2642b5795fb","58","1","14","1","1","4","3","1","13126","555","33","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","No, false","No, false","Not sure","No, false","Yes, true","No, false","Not sure","Not sure","Yes, true","Not sure","Yes, true",77.8,94.7,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",27.3,32,"","","","","","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","No, false","Not sure","Yes, true",4,58,0,"Other",0,2,1.98773959807259 +1991,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely true","Not sure","Slightly agree","Strongly agree",27.5,17,"","","","","","","","","","5fe1215a-41a3-d1cb-adb0-bf7f543dc084","73","1","13","1","1","4","4","4","93308","800","5","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Definitely false","Not sure","Slightly disagree","Strongly disagree",27.5,17,"","","","","","","","","","","","","","","","","",4,73,0,"Other",0,0,2.31001195369097 +1992,50,77.2,"True","Neither agree nor disagree","Definitely false","Probably false","Probably true","Definitely false","Somewhat disagree","Slightly agree",75.2,60.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","","","","","","","5fe23441-40c7-abb1-7be6-bdbf0941362d","32","2","3","1","1","2","2","3","35062","630","1","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","No, false",50,22.8,"True","Neither agree nor disagree","Definitely false","Probably true","Probably false","Definitely false","Somewhat agree","Slightly disagree",24.8,39.1,"","","","","","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",2,32,0,"Other",0,0,1.19608566751863 +1993,63.4,88.8,"Not sure","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Somewhat disagree",52.8,50.4,"","","","","","","","","","5fe24613-7920-a518-91a1-c7d9a8041b23","20","2","3","15","2","6","1","3","27889","545","34","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",63.4,11.2,"Not sure","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Somewhat disagree",52.8,50.4,"","","","","","","","","","","","","","","","","",6,20,0,"Other",0,0,1.55773497079245 +1994,50,50,"False","Neither agree nor disagree","Probably true","Probably false","Definitely false","Definitely true","Somewhat agree","Somewhat agree",42.9,20.1,"","","","","","","","","","5fe24ca1-d15b-ad93-17ff-39e617211ad0","73","1","2","1","1","4","3","2","55428","613","24","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",50,50,"False","Neither agree nor disagree","Probably false","Probably false","Definitely false","Definitely false","Somewhat agree","Somewhat disagree",42.9,20.1,"","","","","","","","","","","","","","","","","",4,73,0,"Other",0,0,1.79105215537822 +1995,50,98.7,"False","Strongly agree","Definitely false","Probably true","Definitely true","Definitely true","Somewhat agree","Strongly disagree",25,9.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe27e34-c20b-32b6-3aed-210f5530e970","50","2","7","1","1","2","3","4","98903","810","48","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","No, false","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","No, false",50,1.3,"True","Strongly agree","Definitely false","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",25,9.8,"","","","","","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Yes, true",2,50,0,"Other",0,0,2.14800546649339 +1996,50,71.3,"True","Neither agree nor disagree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat agree",39.3,35.1,"","","","","","","","","","5fe28009-6e06-1cf2-f967-62e37dda8a28","71","2","12","1","1","3","2","3","31406","507","11","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",50,71.3,"False","Neither agree nor disagree","Probably false","Probably true","Definitely false","Definitely false","Slightly agree","Somewhat disagree",39.3,35.1,"","","","","","","","","","","","","","","","","",3,71,0,"Other",0,0,1.31422437374394 +1997,20.3,75,"False","Disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly disagree","Somewhat disagree",24.9,75.7,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe38133-f51a-e5df-c7f5-1fa0a7079768","64","2","1","2","1","2","1","1","14222","514","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","Not sure","","Not sure","Not sure","No, false","Yes, true","No, false","Not sure","Yes, true","No, false","Yes, true",20.3,25,"False","Disagree","Definitely false","Probably true","Definitely false","Probably false","Strongly agree","Somewhat disagree",24.9,75.7,"","","","","","No, false","Not sure","","Not sure","Not sure","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true","Yes, true",2,64,0,"Other",0,0,2.07926919804978 +1998,57.5,13.2,"True","Agree","Definitely false","Definitely false","Probably false","Definitely true","Strongly agree","Slightly agree",60,87.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","","","","","","","5fe381ee-3bd7-ed11-5584-89c142af4650","63","2","3","1","1","2","2","2","60115","602","14","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure",42.5,13.2,"True","Agree","Definitely false","Definitely true","Probably false","Definitely false","Strongly disagree","Slightly agree",40,12.7,"","","","","","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Yes, true","Not sure","No, false","Not sure","No, false","Not sure",2,63,0,"Other",0,0,1.64587315109813 +1999,59.8,55.1,"True","Agree","Definitely true","Definitely true","Definitely false","Probably true","Somewhat agree","Somewhat agree",75.1,76.1,"","","","","","","","","","5fe37e8e-da22-b03f-dbcd-a91415439b02","78","2","3","1","1","2","4","4","85022","753","3","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",40.2,44.9,"True","Disagree","Definitely true","Definitely true","Definitely false","Probably false","Somewhat disagree","Somewhat disagree",24.9,23.9,"","","","","","","","","","","","","","","","","",2,78,0,"Other",0,0,1.84920451514596 +2000,50,50,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably false","","",NA,NA,"","","","","","","","","","5fe3a119-77bf-8d6b-29f7-b503cb629773","37","2","5","1","1","5","4","2","52641","637","16","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",50,50,"True","Neither agree nor disagree","Definitely true","Probably false","Definitely false","Probably false","","",NA,NA,"","","","","","","","","","","","","","","","","",5,37,0,"Other",0,0,1.27928919042512 +2001,50,72.5,"False","Strongly agree","Probably true","Probably false","Definitely false","Definitely false","Somewhat disagree","Strongly agree",74.9,68.7,"","","","","","","","","","5fe38554-36db-1e50-48cc-a8c30aede02f","60","2","9","1","1","2","2","3","76067","623","44","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",50,27.5,"False","Strongly agree","Probably false","Probably true","Definitely false","Definitely false","Somewhat disagree","Strongly disagree",25.1,31.3,"","","","","","","","","","","","","","","","","",2,60,0,"Other",0,0,1.50864454760297 +2002,44.9,44.9,"True","Disagree","Probably false","Probably false","Probably false","Probably false","Slightly agree","Slightly disagree",56.8,44.3,"","","","","","","","","","5fe3a160-0234-30e8-ceab-a99320d606b5","20","2","-3105","2","10","2","3","2","43081","535","36","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Yes, true","Yes, true","No, false",44.9,44.9,"False","Disagree","Probably false","Probably false","Probably false","Probably true","Slightly disagree","Slightly agree",43.2,55.7,"","","","","","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true","Not sure","Not sure","No, false","No, false","Yes, true",2,20,0,"Other",0,0,2.909417551275 +2003,50.7,23.6,"Not sure","Agree","Probably true","Probably false","Definitely true","Definitely true","Slightly agree","Strongly agree",80.1,66.9,"","","","","","","","","","5fe3a15f-cd62-6b01-3980-438a59cc8bb7","45","1","20","1","1","6","2","1","10011","501","33","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",49.3,23.6,"Not sure","Agree","Probably true","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",19.9,33.1,"","","","","","","","","","","","","","","","","",6,45,0,"Other",0,0,2.01137253886328 +2004,50,80.7,"Not sure","Neither agree nor disagree","Definitely false","Definitely false","Definitely true","Definitely false","Somewhat agree","Slightly agree",25.1,51.8,"","","","","","","","","","5fe11d49-148d-db34-26d6-3a784f9135c7","22","2","1","3","1","2","3","1","11432","501","33","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",50,19.3,"Not sure","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Definitely false","Somewhat agree","Slightly agree",74.9,48.2,"","","","","","","","","","","","","","","","","",2,22,0,"Other",0,0,0.885701092678788 +2005,75,68.3,"True","Agree","Definitely false","Definitely false","Definitely true","Definitely false","Strongly disagree","Strongly agree",32,30.2,"","","","","","","","","","5fe11f16-0e63-79ed-c1b3-d44397010633","42","1","1","1","14","4","2","1","10155","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",25,68.3,"True","Agree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",32,30.2,"","","","","","","","","","","","","","","","","",4,42,0,"Other",0,0,2.8660352542301 +2006,50,22.8,"Not sure","Agree","Definitely false","Probably true","Definitely true","Probably false","Slightly agree","Strongly agree",59.8,84.3,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe11fee-6f03-5e4d-4f5b-58733383588c","21","2","6","1","1","6","2","3","35805","691","1","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","No, false","Yes, true",50,77.2,"Not sure","Agree","Definitely false","Probably false","Definitely false","Probably false","Slightly disagree","Strongly disagree",40.2,15.7,"","","","","","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false","Yes, true",6,21,0,"Other",0,0,1.10018682366745 +2007,62.2,62.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably true","Probably true","Somewhat agree","Strongly disagree",NA,NA,"","","","","","","","","","5fe2284c-7959-392a-0604-6477cdc650da","63","1","9","1","1","4","2","2","45342","542","36","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",62.2,37.8,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably true","Probably true","Somewhat agree","Strongly disagree",NA,NA,"","","","","","","","","","","","","","","","","",4,63,0,"Other",0,0,2.05601198902308 +2008,49.9,49.9,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Definitely true","Not sure","Slightly disagree","Strongly disagree",26.7,15,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Vote for the Republican Donald Trump","5fe228de-24fc-2bf5-d821-905b51626ff9","45","1","1","1","1","1","2","3","30655","524","11","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","Yes, true",49.9,50.1,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Definitely false","Not sure","Slightly agree","Strongly disagree",26.7,15,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false",1,45,0,"Independent",0,0,1.11226716750253 +2009,59.1,65.3,"True","Agree","Definitely false","Not sure","Probably true","Definitely false","Slightly agree","Slightly agree",53.8,56,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe23835-7402-ba88-e881-875baf41bec0","42","2","1","1","1","2","3","3","27816","560","34","1","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",59.1,34.7,"True","Agree","Definitely true","Not sure","Probably true","Definitely false","Slightly disagree","Slightly disagree",46.2,44,"","","","","","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",2,42,0,"Other",0,0,1.17262539987032 +2010,8.3,10,"False","Neither agree nor disagree","Definitely true","Definitely false","Definitely true","Probably true","Strongly disagree","Strongly agree",20.3,16.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","","","","","","","5fe0ec87-bc66-2521-20b3-0f70887c2243","33","1","13","1","1","6","1","4","92832","803","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","No, false",8.3,90,"True","Neither agree nor disagree","Definitely true","Definitely false","Definitely false","Probably true","Strongly agree","Strongly disagree",79.7,83.3,"","","","","","Not sure","Not sure","Yes, true","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true",6,33,0,"Other",0,0,2.10235957025767 +2011,50,40.1,"False","Neither agree nor disagree","Definitely true","Probably true","Definitely true","Definitely false","Slightly agree","Strongly agree",66.8,75.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Chemicals distributed by government agents","","","","","","","5fe0ecfc-dd05-3d89-6434-4fc93b161bb0","66","2","14","1","1","7","2","1","11561","501","33","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","","","","Yes, true","Yes, true","","","","","No, false","Not sure",50,59.9,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Definitely false","Slightly agree","Strongly disagree",33.2,24.1,"","","","","","","","","","No, false","No, false","","","","","No, false","Not sure",7,66,0,"Other",0,0,1.38615819623451 +2012,75.7,99.9,"Not sure","Strongly disagree","Definitely true","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly agree",15,20.8,"","","","","","","","","","5fe245a6-e277-6966-42a3-893c24790c29","43","2","9","3","1","7","2","1","13029","555","33","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",75.7,99.9,"Not sure","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly disagree",15,20.8,"","","","","","","","","","","","","","","","","",7,43,0,"Other",0,0,0.944017484690372 +2013,49.9,50,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Probably true","Definitely false","Slightly agree","Strongly disagree",45.9,100,"","","","","","","","","","5fe0e991-b388-9306-9f16-29229cc59abb","30","2","3","1","1","7","3","3","38111","640","43","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",49.9,50,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Probably false","Definitely false","Slightly disagree","Strongly disagree",54.1,0,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",7,30,0,"Other",0,0,1.19608566751863 +2014,70.6,50,"True","Disagree","Probably true","Probably false","Probably false","Probably true","Somewhat disagree","Strongly disagree",31.8,37.2,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe0ed28-a55b-1265-4033-df14868f95af","23","2","21","1","1","6","1","3","28751","567","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","No, false","Yes, true","Not sure","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true",29.4,50,"True","Agree","Probably false","Probably true","Probably false","Probably true","Somewhat agree","Strongly disagree",31.8,37.2,"","","","","","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","No, false","Yes, true","Yes, true",6,23,0,"Other",0,0,1.10018682366745 +2015,78.8,98.7,"True","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly agree",99.4,78,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe0eedd-398e-adff-2f16-f9b88516efad","57","1","2","1","1","2","1","3","21224","512","21","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","No, false","","","","","","","","","",21.2,98.7,"False","Disagree","Definitely false","Probably false","Definitely false","Definitely false","Strongly agree","Strongly disagree",0.599999999999994,22,"","","","","","","","No, false","","","","","","","","","",2,57,0,"Other",0,0,1.88458708070939 +2016,19.8,64.2,"Not sure","Neither agree nor disagree","Probably true","Definitely false","Probably false","Probably false","Slightly agree","Slightly disagree",26.3,83.9,"","","","","","","","","","5fe0f1e0-3ee1-df85-c41a-7d4669acfa6c","20","2","3","1","1","4","3","2","68701","624","28","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","Not sure","","","","","","","",80.2,64.2,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Probably false","Probably false","Slightly agree","Slightly agree",73.7,16.1,"","","","","","","","","","Not sure","","","","","","","",4,20,0,"Other",0,0,1.20026149111351 +2017,63.1,30.8,"True","Neither agree nor disagree","Definitely true","Probably false","Probably true","Definitely true","Somewhat agree","Strongly agree",NA,NA,"","","","","","","","","","5fe0f297-f838-dec0-ab66-b88173b7faa3","24","2","1","3","1","6","1","3","77015","618","44","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",63.1,30.8,"False","Neither agree nor disagree","Definitely true","Probably true","Probably false","Definitely true","Somewhat agree","Strongly agree",NA,NA,"","","","","","","","","","","","","","","","","",6,24,0,"Other",0,0,0.839738182129671 +2018,61.9,41,"Not sure","Disagree","Probably false","Probably true","Definitely true","Definitely false","Somewhat disagree","Strongly agree",43.8,55.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe0f76b-cfff-5328-9e9f-764f7af6f145","69","2","6","1","1","2","2","1","16502","516","39","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false","Not sure","Not sure",61.9,41,"Not sure","Agree","Probably false","Probably true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",43.8,55.8,"","","","","","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","No, false","Not sure","Not sure","No, false","Not sure","Not sure",2,69,0,"Other",0,0,1.38615819623451 +2019,41.6,0.1,"Not sure","Strongly agree","Definitely false","Probably false","Probably true","Probably true","Somewhat disagree","Somewhat disagree",19.9,4.3,"","","","","","","","","","5fe0f829-68bc-9b2a-b918-f15f9508fcc5","36","1","9","1","1","6","3","2","44820","535","36","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Not sure","Yes, true","Yes, true","Not sure","No, false","No, false","No, false","No, false","Yes, true","Not sure","No, false","Yes, true",41.6,0.1,"Not sure","Strongly disagree","Definitely false","Probably true","Probably false","Probably false","Somewhat disagree","Somewhat disagree",19.9,4.3,"","","","","","Not sure","No, false","Yes, true","Not sure","No, false","No, false","No, false","Yes, true","No, false","Not sure","No, false","Yes, true",6,36,0,"Other",0,0,1.59807814544321 +2020,49.9,81.7,"Not sure","Agree","Definitely false","Definitely false","Probably true","Not sure","Strongly agree","Strongly disagree",75.8,73.1,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","","5fe24898-f6c1-088d-dcef-fc58da782f1a","19","2","2","2","1","2","4","2","61073","610","14","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","No, false","Not sure",49.9,81.7,"Not sure","Disagree","Definitely false","Definitely true","Probably false","Not sure","Strongly agree","Strongly disagree",24.2,26.9,"Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Not sure",2,19,0,"Other",0,0,1.56839838058007 +2021,50,50,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably false","Strongly disagree","Strongly agree",14.7,36.1,"","","","","","","","","","5fe248a3-73e1-2b11-e5f1-db6c3fcd1716","60","1","-3105","1","1","6","3","4","84037","770","45","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",50,50,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Probably true","Strongly agree","Strongly disagree",14.7,36.1,"","","","","","","","","","","","","","","","","",6,60,0,"Other",0,0,2.65174425954799 +2022,50,75.4,"True","Disagree","Definitely true","Probably true","Definitely true","Probably true","Slightly disagree","Somewhat disagree",25.7,56.3,"","","","","","","","","","5fe12129-1243-3ac9-3057-dcc4ce13cc25","45","2","4","1","1","6","2","2","47380","509","15","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",50,24.6,"False","Disagree","Definitely false","Probably true","Definitely false","Probably false","Slightly agree","Somewhat disagree",25.7,56.3,"","","","","","","","","","","","","","","","","",6,45,0,"Other",0,0,1.66544152049953 +2023,50,14.7,"False","Agree","Not sure","Probably true","Probably true","Probably false","Somewhat agree","Slightly agree",18.2,14.3,"","","","","","","","","","5fe26ba7-38d1-d7ab-680b-e6ca57f1262b","68","1","-3105","16","1","4","3","3","37027","659","43","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",50,14.7,"True","Agree","Not sure","Probably false","Probably false","Probably false","Somewhat agree","Slightly disagree",18.2,14.3,"","","","","","","","","","","","","","","","","",4,68,0,"Other",0,0,1.25307267807237 +2024,84.7,71.9,"True","Disagree","Probably false","Definitely true","Definitely true","Definitely false","","",NA,NA,"","","","","","","","","","5fe1211f-de2b-8ee4-90b3-12b72ea47a8f","20","1","4","16","2","2","4","4","86442","753","3","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",84.7,28.1,"True","Disagree","Probably false","Definitely true","Definitely false","Definitely false","","",NA,NA,"","","","","","","","","","","","","","","","","",2,20,0,"Other",0,0,2.73803048787019 +2025,99.9,76.2,"True","Neither agree nor disagree","Definitely false","Probably true","Definitely true","Probably false","Strongly agree","Strongly agree",75.1,50.3,"","","","","","","","","","5fe105ea-b619-2cc1-29a4-e00597d1162f","56","1","9","1","1","6","2","4","91602","803","5","1","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",0.0999999999999943,23.8,"False","Neither agree nor disagree","Definitely false","Probably true","Definitely false","Probably false","Strongly disagree","Strongly disagree",24.9,49.7,"","","","","","","","","","","","","","","","","",6,56,0,"Other",0,0,2.65174425954799 +2026,18.9,76.7,"Not sure","Agree","Probably false","Probably true","Probably false","Not sure","Slightly agree","Strongly disagree",75.7,49.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","","","","","","","","","5fe11d0a-4d64-1b90-c092-550561a20d08","18","2","5","1","1","2","2","2","53188","617","50","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",81.1,23.3,"Not sure","Agree","Probably false","Probably false","Probably false","Not sure","Slightly disagree","Strongly disagree",75.7,49.9,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,18,0,"Other",0,0,1.20026149111351 +2027,64,92,"Not sure","Agree","Probably true","Probably true","Probably true","Probably true","Strongly disagree","Strongly agree",59.4,45.8,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","","","","","","","5fe123c3-693f-4d01-f97d-ec910dc445f5","35","1","-3105","1","1","2","4","1","19054","504","39","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",36,8,"Not sure","Disagree","Probably true","Probably false","Probably false","Probably true","Strongly agree","Strongly disagree",59.4,45.8,"","","","","","Not sure","Not sure","Not sure","No, false","No, false","Not sure","Not sure","Not sure","Yes, true","Yes, true","Not sure","Not sure",2,35,0,"Other",0,0,1.54501200745489 +2028,67.9,59.8,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",51,53.7,"","","","","","","","","","5fe143e8-3e2b-1617-83ea-e560a6f8c9bf","59","2","5","1","1","5","1","3","28358","570","34","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",67.9,40.2,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Strongly agree","Strongly disagree",49,46.3,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","No, false",5,59,0,"Other",0,0,1.50864454760297 +2029,50,99.9,"Not sure","Agree","Probably false","Not sure","Probably true","Probably true","Slightly agree","Strongly disagree",38.8,20.6,"","","","","","","","","","5fe149b9-b9b1-0ec9-527a-672a9bb84d71","18","2","1","2","16","2","3","3","29405","519","41","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","Not sure","Not sure",50,0.0999999999999943,"Not sure","Agree","Probably false","Not sure","Probably false","Probably true","Slightly agree","Strongly disagree",61.2,79.4,"","","","","","Not sure","Yes, true","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure",2,18,0,"Other",0,0,2.66683791670267 +2030,74,76.7,"Not sure","Neither agree nor disagree","Definitely false","Not sure","Not sure","Definitely false","Slightly disagree","Strongly disagree",58.5,49.6,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","","5fe28358-177b-4e4a-1255-14a9f924b25c","36","2","2","2","1","6","1","3","70805","716","19","1","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","Not sure","Not sure","Yes, true","Yes, true",74,23.3,"Not sure","Neither agree nor disagree","Definitely true","Not sure","Not sure","Definitely false","Slightly agree","Strongly disagree",41.5,50.4,"Neither agree nor disagree","Neither agree nor disagree","Disagree","Strongly agree","Neither agree nor disagree","Not sure","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Not sure","Not sure","No, false","Yes, true",6,36,0,"Other",0,0,1.53228591586109 +2031,50,50,"False","Strongly agree","Probably true","Definitely false","Definitely false","Definitely true","Strongly disagree","Strongly agree",7.1,11.6,"","","","","","","","","","5fe15876-02d8-c000-b4d7-ab1171049902","66","2","20","1","14","7","1","3","34114","571","10","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","","","","","","","","","","","","",50,50,"False","Strongly disagree","Probably false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",7.1,11.6,"","","","","","","","","","","","","","","","","",7,66,0,"Other",0,0,2.43791852033784 +2032,50,50,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably true","Probably false","","",NA,NA,"","","","","","","","","","5fe22944-d225-32d2-f8cd-d4c97582fdfa","48","2","13","1","1","6","1","1","08096","504","31","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",50,50,"Not sure","Neither agree nor disagree","Definitely false","Probably false","Probably false","Probably false","","",NA,NA,"","","","","","","","","","","","","","","","","",6,48,0,"Other",0,0,1.61013849931105 +2033,81.7,59.8,"Not sure","Strongly agree","Probably true","Definitely false","Probably true","Definitely false","Strongly disagree","Strongly disagree",82.6,73.3,"","","","","","","","","","5fe230f0-e442-52d7-f173-e5fd2d9505a9","58","2","5","1","1","6","2","4","81212","752","6","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",81.7,40.2,"Not sure","Strongly disagree","Probably false","Definitely true","Probably false","Definitely false","Strongly agree","Strongly disagree",17.4,26.7,"","","","","","","","","","","","","","","","","",6,58,0,"Other",0,0,2.12276713543991 +2034,50.1,50.5,"Not sure","Neither agree nor disagree","Probably false","Probably true","Definitely false","Not sure","Slightly disagree","Slightly agree",20.1,8.3,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe39e5b-cd4d-6073-0fc5-fa28388782b0","38","2","6","15","2","2","3","4","97266","820","38","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50.1,49.5,"Not sure","Neither agree nor disagree","Probably true","Probably false","Definitely false","Not sure","Slightly disagree","Slightly disagree",20.1,8.3,"","","","","","Not sure","Not sure","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,38,0,"Other",0,0,2.33615608234304 +2035,29.6,80.5,"Not sure","Disagree","Definitely false","Probably true","Probably true","Not sure","Strongly agree","Strongly disagree",54,18.2,"","","","","","","","","","5fe246e3-19fa-9537-6dbf-d764598c068b","20","2","1","2","14","2","3","1","01844","506","22","1","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",70.4,19.5,"Not sure","Disagree","Definitely false","Probably false","Probably true","Not sure","Strongly disagree","Strongly disagree",54,18.2,"","","","","","","","","","","","","","","","","",2,20,0,"Other",0,0,2.81280678559885 +2036,50,50,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely false","Strongly agree","Strongly agree",50.5,74.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe280da-22e6-cd86-d4c8-af070a1a95ba","60","2","5","1","1","5","1","4","93274","866","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","Yes, true","Yes, true","Yes, true","No, false","Yes, true","No, false","No, false","Not sure","Yes, true","Yes, true",50,50,"False","Strongly disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",50.5,74.8,"","","","","","Yes, true","No, false","Yes, true","No, false","No, false","Yes, true","No, false","Yes, true","No, false","Not sure","Yes, true","Yes, true",5,60,0,"Other",0,0,2.12276713543991 +2037,95.5,99.9,"False","Disagree","Probably true","Probably true","Probably true","Probably false","Strongly agree","Strongly agree",80.4,84.5,"","","","","","","","","","5fe28227-2143-f29b-4b78-2cd387a91888","43","2","9","1","1","6","1","2","44490","536","36","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",4.5,0.0999999999999943,"True","Agree","Probably false","Probably true","Probably false","Probably true","Strongly agree","Strongly disagree",19.6,15.5,"","","","","","","","","","","","","","","","","",6,43,0,"Other",0,0,1.27928919042512 +2038,50,50,"True","Disagree","Probably true","Probably false","Probably true","Probably true","Slightly agree","Somewhat agree",53.4,13.2,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe3a3da-fd59-399f-f34f-fb7d9aeedf4e","21","1","1","2","1","2","4","1","14094","514","33","1","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","No, false","Yes, true","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Yes, true","No, false",50,50,"False","Agree","Probably true","Probably true","Probably false","Probably true","Slightly agree","Somewhat agree",53.4,13.2,"","","","","","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","No, false","Yes, true",2,21,0,"Other",0,0,1.89417244248251 +2039,50,75,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly disagree","Strongly agree",54.8,53.6,"","","","","","","","","","5fe3a438-0b4e-a8b1-fe95-6454f3db70a9","39","1","5","1","1","2","1","3","37209","659","43","1","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","","","","","","","","","","","","",50,25,"True","Disagree","Definitely false","Definitely false","Definitely false","Definitely false","Strongly agree","Strongly disagree",54.8,53.6,"","","","","","","","","","","","","","","","","",2,39,0,"Other",0,0,1.4648345646551 +2040,90.5,80,"False","Strongly agree","Probably true","Probably true","Probably true","Definitely false","Somewhat agree","Strongly agree",19.6,37.5,"","","","","","","","","","5fe3b99a-6394-a6e4-ca0b-97e5a0ccbf66","54","2","23","1","1","7","2","3","73071","650","37","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","No, false","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Not sure","No, false","Yes, true","Not sure","Not sure","Not sure",9.5,20,"False","Strongly agree","Probably false","Probably true","Probably false","Definitely false","Somewhat agree","Strongly disagree",19.6,37.5,"","","","","","Yes, true","Yes, true","No, false","Not sure","No, false","Yes, true","Not sure","No, false","No, false","Not sure","Not sure","Not sure",7,54,0,"Other",0,0,1.52658135748604 +2041,83.2,84.3,"True","Agree","Probably true","Probably true","Definitely true","Definitely true","Strongly agree","Somewhat agree",25.3,46.6,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","","","","","","","5fe3ce2c-1052-5fa6-2aae-5973463cbd86","34","1","23","1","1","8","2","1","10021","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true","Yes, true",16.8,84.3,"True","Agree","Probably true","Probably true","Definitely false","Definitely false","Strongly agree","Somewhat agree",25.3,46.6,"","","","","","Yes, true","No, false","No, false","Not sure","Yes, true","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true",8,34,0,"Other",0,0,1.57592247146049 +2042,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly disagree","Slightly disagree",24,22.5,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","","","","","","","","","5fe3d1f6-9103-1e46-40e3-e42685168575","20","1","-3105","16","1","1","4","3","37208","659","43","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly agree","Slightly disagree",24,22.5,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",1,20,0,"Other",0,0,1.04899443128234 +2043,92.4,78.3,"True","Strongly agree","Definitely true","Definitely true","Definitely true","Definitely true","Strongly agree","Strongly agree",76.3,79.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","","5fe12300-eb05-f618-899b-bc925200f3cc","36","1","14","1","2","7","3","4","90011","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,FALSE,"Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","Yes, true","Yes, true",92.4,21.7,"False","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely true","Strongly disagree","Strongly disagree",76.3,79.9,"Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Not sure","Yes, true","Not sure","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","Yes, true",7,36,0,"Other",0,0,3.82343468955197 +2044,31.5,28.7,"Not sure","Disagree","Not sure","Definitely true","Definitely false","Definitely false","Strongly disagree","Slightly agree",32.6,11.7,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","Abroad","Chemicals distributed by government agents","","","","","","","5fe120ec-1e20-254f-2769-63e208a2183f","58","1","1","1","1","1","2","4","98258","819","48","1","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false","No, false",31.5,71.3,"Not sure","Agree","Not sure","Definitely true","Definitely true","Definitely false","Strongly disagree","Slightly agree",67.4,88.3,"","","","","","No, false","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false","Yes, true","No, false","No, false","No, false",1,58,0,"Other",0,0,2.65174425954799 +2045,66.2,63,"False","Disagree","Definitely true","Probably true","Definitely true","Definitely false","Slightly disagree","Somewhat agree",76.9,92.2,"","","","","","","","","","5fe23119-baf8-3f60-6a48-606aa05fad9b","50","1","14","1","1","6","2","3","37043","659","43","1","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",66.2,37,"True","Agree","Definitely false","Probably true","Definitely false","Definitely false","Slightly disagree","Somewhat disagree",23.1,7.8,"","","","","","","","","","","","","","","","","",6,50,0,"Other",0,0,1.9069936046507 +2046,49.2,10.7,"Not sure","Disagree","Definitely false","Probably true","Definitely true","Not sure","Somewhat agree","Somewhat disagree",64.6,39.5,"","","","","","","","","","5fe23545-8258-2892-10de-11c65a0de2e1","42","2","7","2","1","6","1","2","45614","564","36","1","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Yes, true","No, false","Not sure","No, false","No, false","Not sure","Yes, true","Not sure","No, false","No, false","No, false","Not sure",50.8,10.7,"Not sure","Disagree","Definitely true","Probably false","Definitely false","Not sure","Somewhat agree","Somewhat disagree",35.4,60.5,"","","","","","Yes, true","No, false","Not sure","Yes, true","No, false","Not sure","No, false","Not sure","Yes, true","Yes, true","No, false","Not sure",6,42,0,"Other",0,0,1.67166497418403 +2047,50,25.1,"Not sure","Strongly agree","Definitely false","Definitely true","Probably true","Definitely false","Strongly agree","Strongly disagree",50.7,89.9,"Established “death panels” which have the authority to determine whether or not a gravely ill or injured person should receive health care based on their “level of productivity in society.”","In the United States","Wastewater from the airplane lavatory","","","","","","","5fe23a53-28a5-8210-6f6c-fdff9de25251","29","2","9","1","1","6","1","4","90740","803","5","1","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Yes, true","No, false","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","No, false","Not sure","Yes, true",50,25.1,"Not sure","Strongly agree","Definitely false","Definitely false","Probably true","Definitely false","Strongly agree","Strongly disagree",50.7,89.9,"","","","","","Yes, true","Yes, true","Yes, true","Not sure","Not sure","Not sure","No, false","Not sure","No, false","No, false","Not sure","Yes, true",6,29,0,"Other",0,0,1.68297519134869 +2048,50.9,51.2,"False","Agree","Probably false","Probably true","Probably false","Probably false","Somewhat disagree","Slightly agree",77.2,45.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe23d3f-cf8c-fd80-1771-af064c276f4f","38","1","5","1","1","2","3","2","63601","609","26","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Not sure","No, false","Not sure","Not sure","Not sure","Not sure","Yes, true","Not sure","Yes, true","Not sure","Not sure","No, false",49.1,51.2,"False","Agree","Probably true","Probably true","Probably false","Probably false","Somewhat agree","Slightly agree",22.8,54.2,"","","","","","Not sure","Yes, true","Not sure","Not sure","Not sure","Not sure","No, false","Not sure","Yes, true","Not sure","Not sure","No, false",2,38,0,"Other",0,0,1.59807814544321 +2049,50,50,"True","Agree","Definitely true","Probably true","Probably false","Probably false","Slightly disagree","Slightly agree",48.1,48.9,"Prohibited insurers to deny coverage to those with pre-existing conditions.","Abroad","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe2480a-c4fb-f675-1afa-39b7070e5475","18","2","2","1","2","1","4","3","77085","618","44","1","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","No, false","No, false","Not sure","Yes, true","No, false","No, false","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",50,50,"True","Agree","Definitely false","Probably true","Probably true","Probably true","Slightly disagree","Slightly agree",51.9,51.1,"","","","","","Yes, true","Yes, true","Not sure","No, false","No, false","Yes, true","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",1,18,0,"Other",0,0,2.04087360334798 +2050,56.1,60.1,"Not sure","Neither agree nor disagree","Probably true","Definitely true","Definitely true","Probably true","Slightly disagree","Strongly disagree",81.1,75.7,"Nationalized healthcare, disallowing private insurance companies from continuing to provide coverage.","In the United States","Chemicals distributed by government agents","","","","","","","5fe24934-f61e-4d0d-fab1-d72d25d07771","25","2","6","2","1","2","1","3","30014","524","11","1","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",56.1,39.9,"Not sure","Neither agree nor disagree","Probably false","Definitely true","Definitely false","Probably false","Slightly agree","Strongly disagree",18.9,24.3,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",2,25,0,"Other",0,0,1.56294177382206 +2051,79.8,99.4,"True","Disagree","Probably true","Not sure","Probably true","Probably false","Strongly agree","Strongly disagree",31,51.5,"","","","","","","","","","5fe268cb-3f4b-b060-1939-fde8d448e0d2","69","2","-3105","7","1","6","1","4","90046","803","5","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",20.2,99.4,"False","Agree","Probably false","Not sure","Probably true","Probably false","Strongly agree","Strongly disagree",31,51.5,"","","","","","","","","","","","","","","","","",6,69,0,"Other",0,0,1.41143995231488 +2052,55.1,39.3,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly agree","Slightly agree",53.2,59.8,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe284b2-e350-e294-e67a-64da8537ed26","22","2","1","1","1","5","4","2","55109","658","50","1","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed",TRUE,TRUE,"Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",44.9,60.7,"Not sure","Neither agree nor disagree","Not sure","Not sure","Not sure","Not sure","Slightly agree","Slightly disagree",46.8,40.2,"","","","","","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure","Not sure",5,22,0,"Other",0,0,1.20026149111351 +2053,99.9,94,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely true","Strongly agree","Strongly agree",50,72,"","","","","","","","","","5fe3a481-74c3-9dee-38a2-80e7d9b9ffae","40","1","21","1","1","6","1","1","10001","501","33","1","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","","","","","","","","","","","","",99.9,6,"True","Agree","Definitely true","Definitely true","Definitely false","Definitely false","Strongly agree","Strongly disagree",50,72,"","","","","","","","","","","","","","","","","",6,40,0,"Other",0,0,1.54501200745489 +2054,50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Not sure","Strongly agree","Strongly disagree",25.9,47.8,"","","","","","","","","","5fe3be9f-93c0-336d-2903-80e633cf3845","52","2","1","16","1","4","3","1","17872","577","39","1","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed",TRUE,TRUE,"Neg keyed","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","","","","","","","","","","","","",50,50,"Not sure","Neither agree nor disagree","Not sure","Not sure","Probably false","Not sure","Strongly agree","Strongly disagree",25.9,47.8,"","","","","","","","","","","","","","","","","",4,52,0,"Other",0,0,1.22896834183241 +2055,72.8,44.2,"True","Strongly disagree","Definitely false","Definitely false","Definitely true","Definitely false","Somewhat disagree","Strongly agree",14.6,17,"Prohibited insurers to deny coverage to those with pre-existing conditions.","In the United States","Water vapor from the jet exhaust mixing with cold air outside the plane","","","","","","","5fe3bfdd-5552-6f93-3965-aa2c97351de0","66","1","19","1","1","6","2","3","72758","670","4","1","Pos keyed","Neg keyed","Pos keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","Pos keyed","Pos keyed",FALSE,TRUE,"Neg keyed","Neg keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Pos keyed","Neg keyed","Neg keyed","Neg keyed","Neg keyed","No, false","No, false","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","Yes, true","Yes, true","No, false","No, false",72.8,44.2,"True","Strongly agree","Definitely false","Definitely true","Definitely false","Definitely false","Somewhat agree","Strongly disagree",14.6,17,"","","","","","Yes, true","Yes, true","Yes, true","Not sure","Yes, true","Yes, true","Yes, true","No, false","No, false","No, false","Yes, true","Yes, true",6,66,0,"Other",0,0,1.64171890578631 diff --git a/data/external/Pre2020Surveys_Pooled.csv b/data/external/Pre2020Surveys_Pooled.csv new file mode 100755 index 0000000..4b7ecfc --- /dev/null +++ b/data/external/Pre2020Surveys_Pooled.csv @@ -0,0 +1,66031 @@ +"statement.id","headline.id","resp.id","survey.id","contest","statemtrue","belief.orig","round","pr.true","pr.true.prev","news.source","pid.summ" +1,NA,51,"tess",3,1,47,1,47,NA,NA,"Neither" +1,NA,53,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,62,"tess",4,0,0,1,100,NA,NA,"Democrat" +1,NA,64,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,68,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,69,"tess",4,0,50,1,50,NA,NA,"Neither" +1,NA,70,"tess",1,0,29,1,71,NA,NA,"Republican" +1,NA,72,"tess",2,0,34,1,66,NA,NA,"Democrat" +1,NA,77,"tess",1,0,16,1,84,NA,NA,"Democrat" +1,NA,78,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,80,"tess",2,1,43,1,43,NA,NA,"Republican" +1,NA,90,"tess",3,1,70,1,70,NA,NA,"Democrat" +1,NA,94,"tess",1,0,99,1,1,NA,NA,"Republican" +1,NA,95,"tess",1,0,87,1,13,NA,NA,"Democrat" +1,NA,96,"tess",4,0,57,1,43,NA,NA,"Democrat" +1,NA,114,"tess",2,1,99,1,99,NA,NA,"Republican" +1,NA,118,"tess",2,0,70,1,30,NA,NA,"Democrat" +1,NA,120,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,128,"tess",2,0,87,1,13,NA,NA,"Republican" +1,NA,130,"tess",1,0,45,1,55,NA,NA,"Republican" +1,NA,136,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,140,"tess",1,1,90,1,90,NA,NA,"Republican" +1,NA,151,"tess",4,1,10,1,10,NA,NA,"Republican" +1,NA,152,"tess",1,1,51,1,51,NA,NA,"Neither" +1,NA,165,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,182,"tess",2,1,86,1,86,NA,NA,"Democrat" +1,NA,187,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,188,"tess",4,1,36,1,36,NA,NA,"Democrat" +1,NA,189,"tess",4,1,80,1,80,NA,NA,"Republican" +1,NA,196,"tess",2,0,69,1,31,NA,NA,"Democrat" +1,NA,206,"tess",4,0,49,1,51,NA,NA,"Republican" +1,NA,207,"tess",4,0,100,1,0,NA,NA,"Republican" +1,NA,216,"tess",2,1,77,1,77,NA,NA,"Democrat" +1,NA,221,"tess",2,1,99,1,99,NA,NA,"Democrat" +1,NA,224,"tess",4,1,76,1,76,NA,NA,"Democrat" +1,NA,234,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,247,"tess",4,1,15,1,15,NA,NA,"Republican" +1,NA,262,"tess",2,1,10,1,10,NA,NA,"Democrat" +1,NA,263,"tess",4,1,88,1,88,NA,NA,"Neither" +1,NA,266,"tess",1,1,90,1,90,NA,NA,"Democrat" +1,NA,296,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,299,"tess",4,0,80,1,20,NA,NA,"Democrat" +1,NA,301,"tess",2,0,70,1,30,NA,NA,"Democrat" +1,NA,308,"tess",3,0,93,1,7,NA,NA,"Democrat" +1,NA,315,"tess",1,1,45,1,45,NA,NA,"Democrat" +1,NA,334,"tess",3,1,80,1,80,NA,NA,"Democrat" +1,NA,336,"tess",3,0,90,1,10,NA,NA,"Republican" +1,NA,342,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,347,"tess",2,1,39,1,39,NA,NA,"Democrat" +1,NA,363,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,366,"tess",3,0,97,1,3,NA,NA,"Democrat" +1,NA,372,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,379,"tess",1,0,85,1,15,NA,NA,"Democrat" +1,NA,389,"tess",1,0,60,1,40,NA,NA,"Democrat" +1,NA,397,"tess",2,0,0,1,100,NA,NA,"Democrat" +1,NA,399,"tess",2,0,27,1,73,NA,NA,"Neither" +1,NA,405,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,413,"tess",4,0,83,1,17,NA,NA,"Democrat" +1,NA,421,"tess",1,1,95,1,95,NA,NA,"Democrat" +1,NA,426,"tess",1,0,70,1,30,NA,NA,"Republican" +1,NA,430,"tess",1,1,61,1,61,NA,NA,"Republican" +1,NA,431,"tess",4,0,45,1,55,NA,NA,"Democrat" +1,NA,440,"tess",3,1,1,1,1,NA,NA,"Democrat" +1,NA,443,"tess",4,0,100,1,0,NA,NA,"Republican" +1,NA,450,"tess",3,1,10,1,10,NA,NA,"Republican" +1,NA,461,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,478,"tess",4,1,28,1,28,NA,NA,"Democrat" +1,NA,482,"tess",3,1,80,1,80,NA,NA,"Democrat" +1,NA,485,"tess",2,0,56,1,44,NA,NA,"Democrat" +1,NA,491,"tess",4,1,54,1,54,NA,NA,"Neither" +1,NA,493,"tess",3,1,80,1,80,NA,NA,"Republican" +1,NA,502,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,503,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,508,"tess",1,0,100,1,0,NA,NA,"Republican" +1,NA,509,"tess",3,0,90,1,10,NA,NA,"Democrat" +1,NA,512,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,516,"tess",3,0,6,1,94,NA,NA,"Democrat" +1,NA,522,"tess",1,1,100,1,100,NA,NA,"Democrat" +1,NA,530,"tess",1,0,8,1,92,NA,NA,"Republican" +1,NA,541,"tess",3,0,0,1,100,NA,NA,"Democrat" +1,NA,542,"tess",3,0,99,1,1,NA,NA,"Republican" +1,NA,549,"tess",2,1,53,1,53,NA,NA,"Democrat" +1,NA,550,"tess",1,1,79,1,79,NA,NA,"Republican" +1,NA,567,"tess",1,1,0,1,0,NA,NA,"Democrat" +1,NA,573,"tess",1,0,100,1,0,NA,NA,"Democrat" +1,NA,574,"tess",4,1,58,1,58,NA,NA,"Democrat" +1,NA,584,"tess",2,0,35,1,65,NA,NA,"Democrat" +1,NA,589,"tess",2,0,89,1,11,NA,NA,"Republican" +1,NA,591,"tess",4,1,52,1,52,NA,NA,"Democrat" +1,NA,596,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,600,"tess",1,1,100,1,100,NA,NA,"Republican" +1,NA,602,"tess",4,0,71,1,29,NA,NA,"Democrat" +1,NA,603,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,608,"tess",3,0,20,1,80,NA,NA,"Democrat" +1,NA,611,"tess",2,0,64,1,36,NA,NA,"Republican" +1,NA,617,"tess",1,0,100,1,0,NA,NA,"Republican" +1,NA,622,"tess",2,0,8,1,92,NA,NA,"Democrat" +1,NA,627,"tess",2,0,66,1,34,NA,NA,"Democrat" +1,NA,633,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,638,"tess",3,0,42,1,58,NA,NA,"Republican" +1,NA,639,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,649,"tess",1,0,99,1,1,NA,NA,"Democrat" +1,NA,675,"tess",3,0,70,1,30,NA,NA,"Democrat" +1,NA,680,"tess",4,1,44,1,44,NA,NA,"Republican" +1,NA,684,"tess",3,0,70,1,30,NA,NA,"Republican" +1,NA,689,"tess",1,0,20,1,80,NA,NA,"Democrat" +1,NA,693,"tess",1,0,100,1,0,NA,NA,"Republican" +1,NA,702,"tess",1,1,84,1,84,NA,NA,"Democrat" +1,NA,709,"tess",2,1,88,1,88,NA,NA,"Republican" +1,NA,711,"tess",3,0,82,1,18,NA,NA,"Democrat" +1,NA,717,"tess",1,0,95,1,5,NA,NA,"Republican" +1,NA,727,"tess",1,1,2,1,2,NA,NA,"Republican" +1,NA,728,"tess",3,1,94,1,94,NA,NA,"Democrat" +1,NA,734,"tess",3,0,93,1,7,NA,NA,"Republican" +1,NA,740,"tess",4,0,99,1,1,NA,NA,"Democrat" +1,NA,752,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,753,"tess",2,0,95,1,5,NA,NA,"Republican" +1,NA,766,"tess",4,1,33,1,33,NA,NA,"Republican" +1,NA,770,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,771,"tess",2,0,75,1,25,NA,NA,"Democrat" +1,NA,772,"tess",4,1,4,1,4,NA,NA,"Republican" +1,NA,773,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,783,"tess",2,0,97,1,3,NA,NA,"Democrat" +1,NA,786,"tess",2,0,10,1,90,NA,NA,"Republican" +1,NA,794,"tess",3,0,79,1,21,NA,NA,"Democrat" +1,NA,803,"tess",4,0,61,1,39,NA,NA,"Democrat" +1,NA,804,"tess",1,1,28,1,28,NA,NA,"Democrat" +1,NA,806,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,823,"tess",2,1,84,1,84,NA,NA,"Democrat" +1,NA,828,"tess",2,0,97,1,3,NA,NA,"Neither" +1,NA,829,"tess",2,0,90,1,10,NA,NA,"Neither" +1,NA,836,"tess",3,1,98,1,98,NA,NA,"Democrat" +1,NA,845,"tess",3,1,75,1,75,NA,NA,"Republican" +1,NA,847,"tess",2,0,78,1,22,NA,NA,"Democrat" +1,NA,851,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,852,"tess",3,0,100,1,0,NA,NA,"Democrat" +1,NA,855,"tess",1,1,5,1,5,NA,NA,"Republican" +1,NA,857,"tess",2,1,91,1,91,NA,NA,"Democrat" +1,NA,861,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,878,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,883,"tess",4,1,25,1,25,NA,NA,"Democrat" +1,NA,886,"tess",4,0,50,1,50,NA,NA,"Republican" +1,NA,890,"tess",1,0,4,1,96,NA,NA,"Republican" +1,NA,891,"tess",4,1,91,1,91,NA,NA,"Republican" +1,NA,895,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,898,"tess",4,0,51,1,49,NA,NA,"Republican" +1,NA,903,"tess",4,0,66,1,34,NA,NA,"Republican" +1,NA,912,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,918,"tess",1,1,79,1,79,NA,NA,"Republican" +1,NA,919,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,922,"tess",2,1,39,1,39,NA,NA,"Republican" +1,NA,928,"tess",1,0,91,1,9,NA,NA,"Republican" +1,NA,943,"tess",3,0,80,1,20,NA,NA,"Republican" +1,NA,950,"tess",2,0,88,1,12,NA,NA,"Democrat" +1,NA,952,"tess",1,0,50,1,50,NA,NA,"Republican" +1,NA,958,"tess",2,1,5,1,5,NA,NA,"Democrat" +1,NA,961,"tess",2,1,51,1,51,NA,NA,"Democrat" +1,NA,968,"tess",2,0,99,1,1,NA,NA,"Democrat" +1,NA,978,"tess",1,1,44,1,44,NA,NA,"Democrat" +1,NA,985,"tess",1,1,99,1,99,NA,NA,"Republican" +1,NA,990,"tess",1,1,61,1,61,NA,NA,"Republican" +1,NA,997,"tess",4,0,98,1,2,NA,NA,"Democrat" +1,NA,1018,"tess",3,1,49,1,49,NA,NA,"Republican" +1,NA,1020,"tess",1,0,90,1,10,NA,NA,"Republican" +1,NA,1031,"tess",1,0,25,1,75,NA,NA,"Democrat" +1,NA,1035,"tess",3,1,60,1,60,NA,NA,"Democrat" +1,NA,1036,"tess",4,0,30,1,70,NA,NA,"Republican" +1,NA,1046,"tess",3,0,3,1,97,NA,NA,"Republican" +1,NA,1047,"tess",4,0,24,1,76,NA,NA,"Republican" +1,NA,1051,"tess",1,0,90,1,10,NA,NA,"Republican" +1,NA,1055,"tess",3,0,95,1,5,NA,NA,"Republican" +1,NA,1058,"tess",1,1,40,1,40,NA,NA,"Republican" +1,NA,1062,"tess",1,0,39,1,61,NA,NA,"Democrat" +1,NA,1064,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,1065,"tess",1,1,99,1,99,NA,NA,"Republican" +1,NA,1066,"tess",4,0,54,1,46,NA,NA,"Democrat" +1,NA,1067,"tess",2,1,1,1,1,NA,NA,"Republican" +1,NA,1068,"tess",2,0,61,1,39,NA,NA,"Republican" +1,NA,1081,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,1083,"tess",4,0,85,1,15,NA,NA,"Democrat" +1,NA,1084,"tess",1,1,68,1,68,NA,NA,"Republican" +1,NA,1087,"tess",2,1,41,1,41,NA,NA,"Democrat" +1,NA,1096,"tess",4,1,0,1,0,NA,NA,"Democrat" +1,NA,1097,"tess",2,1,69,1,69,NA,NA,"Republican" +1,NA,1100,"tess",4,0,89,1,11,NA,NA,"Republican" +1,NA,1104,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,1110,"tess",4,1,96,1,96,NA,NA,"Neither" +1,NA,1114,"tess",2,1,68,1,68,NA,NA,"Neither" +1,NA,1119,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,1122,"tess",1,0,99,1,1,NA,NA,"Republican" +1,NA,1133,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,1141,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,1147,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,1148,"tess",2,1,90,1,90,NA,NA,"Republican" +1,NA,1149,"tess",2,1,42,1,42,NA,NA,"Democrat" +1,NA,1150,"tess",4,1,70,1,70,NA,NA,"Democrat" +1,NA,1156,"tess",2,0,99,1,1,NA,NA,"Democrat" +1,NA,1172,"tess",4,0,99,1,1,NA,NA,"Republican" +1,NA,1178,"tess",1,0,47,1,53,NA,NA,"Republican" +1,NA,1182,"tess",3,0,35,1,65,NA,NA,"Republican" +1,NA,1192,"tess",4,0,43,1,57,NA,NA,"Democrat" +1,NA,1193,"tess",1,0,74,1,26,NA,NA,"Democrat" +1,NA,1208,"tess",2,1,93,1,93,NA,NA,"Republican" +1,NA,1220,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,1235,"tess",3,0,91,1,9,NA,NA,"Republican" +1,NA,1246,"tess",1,0,0,1,100,NA,NA,"Republican" +1,NA,1256,"tess",2,0,10,1,90,NA,NA,"Democrat" +1,NA,1259,"tess",4,0,86,1,14,NA,NA,"Democrat" +1,NA,1260,"tess",2,0,88,1,12,NA,NA,"Democrat" +1,NA,1265,"tess",3,0,52,1,48,NA,NA,"Republican" +1,NA,1277,"tess",1,0,50,1,50,NA,NA,"Republican" +1,NA,1282,"tess",4,1,54,1,54,NA,NA,"Republican" +1,NA,1284,"tess",4,0,98,1,2,NA,NA,"Democrat" +1,NA,1285,"tess",3,1,32,1,32,NA,NA,"Neither" +1,NA,1288,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,1304,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,1306,"tess",4,0,98,1,2,NA,NA,"Democrat" +1,NA,1307,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,1309,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,1311,"tess",1,0,25,1,75,NA,NA,"Democrat" +1,NA,1314,"tess",4,1,69,1,69,NA,NA,"Democrat" +1,NA,1321,"tess",4,0,91,1,9,NA,NA,"Republican" +1,NA,1330,"tess",1,1,20,1,20,NA,NA,"Republican" +1,NA,1336,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,1348,"tess",2,0,40,1,60,NA,NA,"Democrat" +1,NA,1356,"tess",3,0,80,1,20,NA,NA,"Republican" +1,NA,1366,"tess",1,1,86,1,86,NA,NA,"Democrat" +1,NA,1376,"tess",4,0,97,1,3,NA,NA,"Democrat" +1,NA,1382,"tess",3,1,1,1,1,NA,NA,"Republican" +1,NA,1397,"tess",2,1,10,1,10,NA,NA,"Democrat" +1,NA,1402,"tess",1,1,100,1,100,NA,NA,"Republican" +1,NA,1408,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,1416,"tess",3,1,60,1,60,NA,NA,"Republican" +1,NA,1418,"tess",4,1,47,1,47,NA,NA,"Republican" +1,NA,1419,"tess",2,1,73,1,73,NA,NA,"Republican" +1,NA,1426,"tess",3,1,70,1,70,NA,NA,"Democrat" +1,NA,1444,"tess",3,1,56,1,56,NA,NA,"Democrat" +1,NA,1445,"tess",3,0,89,1,11,NA,NA,"Republican" +1,NA,1454,"tess",1,0,97,1,3,NA,NA,"Democrat" +1,NA,1461,"tess",4,1,90,1,90,NA,NA,"Democrat" +1,NA,1464,"tess",3,0,96,1,4,NA,NA,"Democrat" +1,NA,1468,"tess",1,0,39,1,61,NA,NA,"Republican" +1,NA,1485,"tess",3,1,43,1,43,NA,NA,"Democrat" +1,NA,1486,"tess",4,0,0,1,100,NA,NA,"Democrat" +1,NA,1491,"tess",2,1,100,1,100,NA,NA,"Republican" +1,NA,1500,"tess",4,0,96,1,4,NA,NA,"Democrat" +1,NA,1506,"tess",2,0,100,1,0,NA,NA,"Democrat" +1,NA,1507,"tess",4,1,70,1,70,NA,NA,"Democrat" +1,NA,1510,"tess",3,1,99,1,99,NA,NA,"Republican" +1,NA,1511,"tess",4,0,4,1,96,NA,NA,"Republican" +1,NA,1518,"tess",1,0,67,1,33,NA,NA,"Democrat" +1,NA,1523,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,1530,"tess",1,0,49,1,51,NA,NA,"Republican" +1,NA,1532,"tess",3,1,38,1,38,NA,NA,"Republican" +1,NA,1541,"tess",3,0,51,1,49,NA,NA,"Republican" +1,NA,1551,"tess",1,1,29,1,29,NA,NA,"Republican" +1,NA,1552,"tess",2,0,12,1,88,NA,NA,"Republican" +1,NA,1553,"tess",1,0,1,1,99,NA,NA,"Democrat" +1,NA,1556,"tess",4,0,75,1,25,NA,NA,"Democrat" +1,NA,1563,"tess",4,1,98,1,98,NA,NA,"Republican" +1,NA,1565,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,1600,"tess",1,1,100,1,100,NA,NA,"Republican" +1,NA,1605,"tess",1,1,9,1,9,NA,NA,"Republican" +1,NA,1608,"tess",3,1,10,1,10,NA,NA,"Republican" +1,NA,1618,"tess",3,1,100,1,100,NA,NA,"Republican" +1,NA,1624,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,1631,"tess",4,1,81,1,81,NA,NA,"Democrat" +1,NA,1634,"tess",4,0,89,1,11,NA,NA,"Democrat" +1,NA,1644,"tess",2,0,51,1,49,NA,NA,"Democrat" +1,NA,1654,"tess",4,0,91,1,9,NA,NA,"Democrat" +1,NA,1657,"tess",1,1,40,1,40,NA,NA,"Republican" +1,NA,1663,"tess",1,0,75,1,25,NA,NA,"Neither" +1,NA,1668,"tess",3,1,81,1,81,NA,NA,"Democrat" +1,NA,1669,"tess",4,1,80,1,80,NA,NA,"Democrat" +1,NA,1673,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,1674,"tess",4,1,51,1,51,NA,NA,"Republican" +1,NA,1689,"tess",2,0,97,1,3,NA,NA,"Democrat" +1,NA,1702,"tess",2,0,90,1,10,NA,NA,"Neither" +1,NA,1706,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,1724,"tess",1,0,75,1,25,NA,NA,"Democrat" +1,NA,1726,"tess",1,1,55,1,55,NA,NA,"Democrat" +1,NA,1728,"tess",2,0,70,1,30,NA,NA,"Democrat" +1,NA,1733,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,1739,"tess",4,1,40,1,40,NA,NA,"Republican" +1,NA,1756,"tess",2,1,90,1,90,NA,NA,"Democrat" +1,NA,1767,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,1775,"tess",4,1,64,1,64,NA,NA,"Democrat" +1,NA,1798,"tess",3,1,0,1,0,NA,NA,"Democrat" +1,NA,1799,"tess",2,0,69,1,31,NA,NA,"Republican" +1,NA,1813,"tess",4,0,47,1,53,NA,NA,"Democrat" +1,NA,1815,"tess",2,0,83,1,17,NA,NA,"Republican" +1,NA,1824,"tess",2,1,100,1,100,NA,NA,"Republican" +1,NA,1832,"tess",1,0,60,1,40,NA,NA,"Republican" +1,NA,1834,"tess",4,1,100,1,100,NA,NA,"Neither" +1,NA,1835,"tess",3,1,94,1,94,NA,NA,"Neither" +1,NA,1841,"tess",3,0,76,1,24,NA,NA,"Republican" +1,NA,1847,"tess",1,1,61,1,61,NA,NA,"Republican" +1,NA,1850,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,1851,"tess",4,1,88,1,88,NA,NA,"Democrat" +1,NA,1856,"tess",3,0,75,1,25,NA,NA,"Republican" +1,NA,1857,"tess",4,1,97,1,97,NA,NA,"Democrat" +1,NA,1863,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,1870,"tess",3,1,75,1,75,NA,NA,"Republican" +1,NA,1890,"tess",2,1,75,1,75,NA,NA,"Democrat" +1,NA,1891,"tess",2,1,99,1,99,NA,NA,"Republican" +1,NA,1898,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,1899,"tess",4,1,95,1,95,NA,NA,"Democrat" +1,NA,1900,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,1902,"tess",3,0,99,1,1,NA,NA,"Democrat" +1,NA,1910,"tess",4,1,99,1,99,NA,NA,"Republican" +1,NA,1924,"tess",2,1,36,1,36,NA,NA,"Democrat" +1,NA,1928,"tess",2,1,96,1,96,NA,NA,"Democrat" +1,NA,1930,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,1933,"tess",1,0,30,1,70,NA,NA,"Democrat" +1,NA,1935,"tess",4,0,100,1,0,NA,NA,"Republican" +1,NA,1939,"tess",3,1,86,1,86,NA,NA,"Democrat" +1,NA,1940,"tess",3,0,60,1,40,NA,NA,"Democrat" +1,NA,1945,"tess",3,1,8,1,8,NA,NA,"Democrat" +1,NA,1950,"tess",4,1,100,1,100,NA,NA,"Republican" +1,NA,1952,"tess",2,1,20,1,20,NA,NA,"Democrat" +1,NA,1953,"tess",2,0,76,1,24,NA,NA,"Republican" +1,NA,1960,"tess",1,1,80,1,80,NA,NA,"Republican" +1,NA,1966,"tess",4,0,88,1,12,NA,NA,"Republican" +1,NA,1973,"tess",2,0,90,1,10,NA,NA,"Democrat" +1,NA,1976,"tess",3,1,87,1,87,NA,NA,"Republican" +1,NA,1981,"tess",1,0,97,1,3,NA,NA,"Democrat" +1,NA,1982,"tess",2,1,99,1,99,NA,NA,"Democrat" +1,NA,1992,"tess",2,1,90,1,90,NA,NA,"Democrat" +1,NA,1994,"tess",2,1,98,1,98,NA,NA,"Republican" +1,NA,2001,"tess",4,0,98,1,2,NA,NA,"Republican" +1,NA,2017,"tess",1,1,63,1,63,NA,NA,"Democrat" +1,NA,2030,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,2033,"tess",1,0,86,1,14,NA,NA,"Democrat" +1,NA,2044,"tess",4,1,82,1,82,NA,NA,"Republican" +1,NA,2049,"tess",4,0,84,1,16,NA,NA,"Democrat" +1,NA,2056,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,2057,"tess",1,1,72,1,72,NA,NA,"Republican" +1,NA,2060,"tess",2,0,62,1,38,NA,NA,"Democrat" +1,NA,2061,"tess",1,1,82,1,82,NA,NA,"Democrat" +1,NA,2066,"tess",3,0,98,1,2,NA,NA,"Republican" +1,NA,2072,"tess",3,1,98,1,98,NA,NA,"Democrat" +1,NA,2080,"tess",4,0,66,1,34,NA,NA,"Democrat" +1,NA,2082,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,2088,"tess",2,0,99,1,1,NA,NA,"Democrat" +1,NA,2090,"tess",1,1,0,1,0,NA,NA,"Democrat" +1,NA,2097,"tess",1,0,84,1,16,NA,NA,"Republican" +1,NA,2099,"tess",4,1,51,1,51,NA,NA,"Republican" +1,NA,2100,"tess",4,0,82,1,18,NA,NA,"Democrat" +1,NA,2104,"tess",1,0,99,1,1,NA,NA,"Republican" +1,NA,2107,"tess",1,1,34,1,34,NA,NA,"Republican" +1,NA,2120,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,2124,"tess",2,1,88,1,88,NA,NA,"Republican" +1,NA,2137,"tess",1,1,82,1,82,NA,NA,"Democrat" +1,NA,2141,"tess",3,0,71,1,29,NA,NA,"Democrat" +1,NA,2147,"tess",2,0,91,1,9,NA,NA,"Democrat" +1,NA,2153,"tess",1,0,94,1,6,NA,NA,"Democrat" +1,NA,2169,"tess",2,0,98,1,2,NA,NA,"Democrat" +1,NA,2179,"tess",2,1,37,1,37,NA,NA,"Democrat" +1,NA,2180,"tess",2,0,68,1,32,NA,NA,"Democrat" +1,NA,2187,"tess",4,1,55,1,55,NA,NA,"Democrat" +1,NA,2188,"tess",4,0,50,1,50,NA,NA,"Republican" +1,NA,2190,"tess",2,1,52,1,52,NA,NA,"Neither" +1,NA,2195,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,2196,"tess",4,1,90,1,90,NA,NA,"Republican" +1,NA,2197,"tess",2,0,60,1,40,NA,NA,"Republican" +1,NA,2207,"tess",4,1,47,1,47,NA,NA,"Republican" +1,NA,2208,"tess",3,1,0,1,0,NA,NA,"Democrat" +1,NA,2211,"tess",2,1,11,1,11,NA,NA,"Republican" +1,NA,2213,"tess",1,1,99,1,99,NA,NA,"Neither" +1,NA,2215,"tess",3,0,0,1,100,NA,NA,"Republican" +1,NA,2218,"tess",3,0,92,1,8,NA,NA,"Republican" +1,NA,2225,"tess",1,0,95,1,5,NA,NA,"Republican" +1,NA,2228,"tess",1,1,77,1,77,NA,NA,"Democrat" +1,NA,2230,"tess",4,1,99,1,99,NA,NA,"Republican" +1,NA,2235,"tess",1,1,90,1,90,NA,NA,"Republican" +1,NA,2238,"tess",1,1,83,1,83,NA,NA,"Democrat" +1,NA,2242,"tess",3,1,76,1,76,NA,NA,"Republican" +1,NA,2248,"tess",2,1,55,1,55,NA,NA,"Democrat" +1,NA,2253,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,2271,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,2272,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,2275,"tess",2,1,48,1,48,NA,NA,"Republican" +1,NA,2278,"tess",1,1,39,1,39,NA,NA,"Neither" +1,NA,2283,"tess",2,0,60,1,40,NA,NA,"Democrat" +1,NA,2286,"tess",2,1,94,1,94,NA,NA,"Democrat" +1,NA,2287,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,2291,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,2308,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,2313,"tess",4,0,80,1,20,NA,NA,"Democrat" +1,NA,2315,"tess",4,1,75,1,75,NA,NA,"Democrat" +1,NA,2318,"tess",2,1,70,1,70,NA,NA,"Democrat" +1,NA,2322,"tess",1,0,70,1,30,NA,NA,"Republican" +1,NA,2337,"tess",1,1,20,1,20,NA,NA,"Democrat" +1,NA,2353,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,2356,"tess",3,0,81,1,19,NA,NA,"Republican" +1,NA,2359,"tess",3,1,99,1,99,NA,NA,"Democrat" +1,NA,2378,"tess",4,0,87,1,13,NA,NA,"Democrat" +1,NA,2379,"tess",4,0,63,1,37,NA,NA,"Republican" +1,NA,2381,"tess",4,1,92,1,92,NA,NA,"Democrat" +1,NA,2382,"tess",2,1,11,1,11,NA,NA,"Democrat" +1,NA,2383,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,2393,"tess",1,1,90,1,90,NA,NA,"Democrat" +1,NA,2394,"tess",1,1,70,1,70,NA,NA,"Democrat" +1,NA,2398,"tess",2,0,1,1,99,NA,NA,"Democrat" +1,NA,2399,"tess",1,1,72,1,72,NA,NA,"Democrat" +1,NA,2405,"tess",4,1,69,1,69,NA,NA,"Democrat" +1,NA,2407,"tess",1,0,96,1,4,NA,NA,"Republican" +1,NA,2412,"tess",2,1,70,1,70,NA,NA,"Democrat" +1,NA,2424,"tess",4,0,37,1,63,NA,NA,"Republican" +1,NA,2434,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,2435,"tess",4,0,84,1,16,NA,NA,"Democrat" +1,NA,2445,"tess",2,1,98,1,98,NA,NA,"Republican" +1,NA,2447,"tess",1,1,49,1,49,NA,NA,"Democrat" +1,NA,2459,"tess",4,0,30,1,70,NA,NA,"Democrat" +1,NA,2460,"tess",2,0,67,1,33,NA,NA,"Democrat" +1,NA,2468,"tess",1,1,79,1,79,NA,NA,"Democrat" +1,NA,2474,"tess",4,0,0,1,100,NA,NA,"Democrat" +1,NA,2483,"tess",4,1,90,1,90,NA,NA,"Democrat" +1,NA,2484,"tess",1,0,61,1,39,NA,NA,"Republican" +1,NA,2485,"tess",3,0,80,1,20,NA,NA,"Democrat" +1,NA,2486,"tess",3,1,94,1,94,NA,NA,"Republican" +1,NA,2488,"tess",1,1,58,1,58,NA,NA,"Democrat" +1,NA,2492,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,2498,"tess",4,1,94,1,94,NA,NA,"Republican" +1,NA,2508,"tess",2,1,90,1,90,NA,NA,"Democrat" +1,NA,2511,"tess",2,1,70,1,70,NA,NA,"Democrat" +1,NA,2512,"tess",3,0,20,1,80,NA,NA,"Republican" +1,NA,2514,"tess",4,0,81,1,19,NA,NA,"Democrat" +1,NA,2518,"tess",4,0,73,1,27,NA,NA,"Republican" +1,NA,2519,"tess",1,0,86,1,14,NA,NA,"Democrat" +1,NA,2520,"tess",3,0,99,1,1,NA,NA,"Democrat" +1,NA,2525,"tess",3,1,1,1,1,NA,NA,"Republican" +1,NA,2528,"tess",1,1,42,1,42,NA,NA,"Democrat" +1,NA,2529,"tess",2,0,99,1,1,NA,NA,"Democrat" +1,NA,2532,"tess",3,1,10,1,10,NA,NA,"Democrat" +1,NA,2536,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,2537,"tess",1,1,65,1,65,NA,NA,"Republican" +1,NA,2542,"tess",3,1,24,1,24,NA,NA,"Neither" +1,NA,2545,"tess",1,1,76,1,76,NA,NA,"Democrat" +1,NA,2547,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,2557,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,2578,"tess",4,0,98,1,2,NA,NA,"Republican" +1,NA,2581,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,2592,"tess",2,1,41,1,41,NA,NA,"Democrat" +1,NA,2599,"tess",2,0,99,1,1,NA,NA,"Republican" +1,NA,2608,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,2611,"tess",1,0,70,1,30,NA,NA,"Neither" +1,NA,2623,"tess",3,0,95,1,5,NA,NA,"Democrat" +1,NA,2630,"tess",4,1,51,1,51,NA,NA,"Republican" +1,NA,2632,"tess",1,1,60,1,60,NA,NA,"Democrat" +1,NA,2644,"tess",1,1,30,1,30,NA,NA,"Democrat" +1,NA,2658,"tess",4,0,5,1,95,NA,NA,"Republican" +1,NA,2659,"tess",4,1,2,1,2,NA,NA,"Republican" +1,NA,2664,"tess",4,1,89,1,89,NA,NA,"Democrat" +1,NA,2669,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,2670,"tess",3,0,75,1,25,NA,NA,"Neither" +1,NA,2671,"tess",2,1,47,1,47,NA,NA,"Republican" +1,NA,2695,"tess",4,0,80,1,20,NA,NA,"Republican" +1,NA,2698,"tess",4,1,70,1,70,NA,NA,"Republican" +1,NA,2700,"tess",2,0,76,1,24,NA,NA,"Democrat" +1,NA,2707,"tess",4,0,86,1,14,NA,NA,"Democrat" +1,NA,2709,"tess",3,1,40,1,40,NA,NA,"Democrat" +1,NA,2714,"tess",4,1,91,1,91,NA,NA,"Democrat" +1,NA,2715,"tess",1,1,79,1,79,NA,NA,"Republican" +1,NA,2720,"tess",1,1,53,1,53,NA,NA,"Republican" +1,NA,2722,"tess",4,1,63,1,63,NA,NA,"Democrat" +1,NA,2731,"tess",1,0,25,1,75,NA,NA,"Democrat" +1,NA,2733,"tess",2,0,7,1,93,NA,NA,"Democrat" +1,NA,2740,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,2741,"tess",1,1,75,1,75,NA,NA,"Democrat" +1,NA,2745,"tess",1,1,60,1,60,NA,NA,"Republican" +1,NA,2760,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,2764,"tess",4,1,93,1,93,NA,NA,"Republican" +1,NA,2765,"tess",3,0,95,1,5,NA,NA,"Republican" +1,NA,2767,"tess",3,0,71,1,29,NA,NA,"Democrat" +1,NA,2771,"tess",4,0,56,1,44,NA,NA,"Democrat" +1,NA,2773,"tess",4,1,78,1,78,NA,NA,"Republican" +1,NA,2774,"tess",2,0,95,1,5,NA,NA,"Republican" +1,NA,2778,"tess",1,1,79,1,79,NA,NA,"Republican" +1,NA,2779,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,2784,"tess",1,1,80,1,80,NA,NA,"Republican" +1,NA,2795,"tess",3,1,100,1,100,NA,NA,"Republican" +1,NA,2797,"tess",1,0,35,1,65,NA,NA,"Democrat" +1,NA,2799,"tess",3,1,15,1,15,NA,NA,"Republican" +1,NA,2804,"tess",4,0,51,1,49,NA,NA,"Republican" +1,NA,2808,"tess",4,1,81,1,81,NA,NA,"Democrat" +1,NA,2818,"tess",1,0,71,1,29,NA,NA,"Democrat" +1,NA,2827,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,2828,"tess",4,0,94,1,6,NA,NA,"Republican" +1,NA,2829,"tess",4,1,70,1,70,NA,NA,"Democrat" +1,NA,2843,"tess",2,1,90,1,90,NA,NA,"Democrat" +1,NA,2852,"tess",1,1,96,1,96,NA,NA,"Republican" +1,NA,2863,"tess",4,0,25,1,75,NA,NA,"Republican" +1,NA,2885,"tess",4,1,79,1,79,NA,NA,"Republican" +1,NA,2888,"tess",3,1,90,1,90,NA,NA,"Democrat" +1,NA,2892,"tess",3,1,54,1,54,NA,NA,"Democrat" +1,NA,2893,"tess",2,1,59,1,59,NA,NA,"Republican" +1,NA,2902,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,2903,"tess",4,1,85,1,85,NA,NA,"Democrat" +1,NA,2905,"tess",1,0,13,1,87,NA,NA,"Democrat" +1,NA,2906,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,2915,"tess",1,0,70,1,30,NA,NA,"Democrat" +1,NA,2917,"tess",3,0,48,1,52,NA,NA,"Republican" +1,NA,2923,"tess",3,0,75,1,25,NA,NA,"Neither" +1,NA,2934,"tess",3,1,40,1,40,NA,NA,"Democrat" +1,NA,2936,"tess",4,0,72,1,28,NA,NA,"Democrat" +1,NA,2938,"tess",1,0,100,1,0,NA,NA,"Republican" +1,NA,2940,"tess",2,0,100,1,0,NA,NA,"Republican" +1,NA,2945,"tess",3,0,17,1,83,NA,NA,"Democrat" +1,NA,2953,"tess",1,0,50,1,50,NA,NA,"Neither" +1,NA,2970,"tess",1,1,33,1,33,NA,NA,"Neither" +1,NA,2979,"tess",2,0,75,1,25,NA,NA,"Democrat" +1,NA,2981,"tess",4,1,19,1,19,NA,NA,"Democrat" +1,NA,2982,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,2983,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,2987,"tess",3,1,98,1,98,NA,NA,"Republican" +1,NA,2988,"tess",2,1,49,1,49,NA,NA,"Democrat" +1,NA,2990,"tess",2,1,10,1,10,NA,NA,"Republican" +1,NA,2998,"tess",3,1,93,1,93,NA,NA,"Republican" +1,NA,3006,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,3011,"tess",3,1,5,1,5,NA,NA,"Republican" +1,NA,3020,"tess",3,0,71,1,29,NA,NA,"Democrat" +1,NA,3021,"tess",3,0,70,1,30,NA,NA,"Democrat" +1,NA,3025,"tess",3,1,1,1,1,NA,NA,"Democrat" +1,NA,3028,"tess",1,1,95,1,95,NA,NA,"Democrat" +1,NA,3029,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,3039,"tess",3,1,80,1,80,NA,NA,"Republican" +1,NA,3043,"tess",3,0,52,1,48,NA,NA,"Democrat" +1,NA,3047,"tess",4,0,46,1,54,NA,NA,"Democrat" +1,NA,3048,"tess",1,0,99,1,1,NA,NA,"Democrat" +1,NA,3051,"tess",3,0,80,1,20,NA,NA,"Republican" +1,NA,3062,"tess",1,0,86,1,14,NA,NA,"Neither" +1,NA,3068,"tess",4,0,60,1,40,NA,NA,"Democrat" +1,NA,3071,"tess",4,0,79,1,21,NA,NA,"Democrat" +1,NA,3072,"tess",3,0,99,1,1,NA,NA,"Republican" +1,NA,3074,"tess",2,1,70,1,70,NA,NA,"Democrat" +1,NA,3076,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,3077,"tess",4,1,95,1,95,NA,NA,"Democrat" +1,NA,3082,"tess",2,0,48,1,52,NA,NA,"Neither" +1,NA,3086,"tess",1,0,10,1,90,NA,NA,"Republican" +1,NA,3089,"tess",3,1,76,1,76,NA,NA,"Democrat" +1,NA,3096,"tess",3,1,99,1,99,NA,NA,"Republican" +1,NA,3102,"tess",2,1,55,1,55,NA,NA,"Democrat" +1,NA,3107,"tess",3,1,51,1,51,NA,NA,"Democrat" +1,NA,3109,"tess",2,0,17,1,83,NA,NA,"Neither" +1,NA,3111,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,3115,"tess",4,1,50,1,50,NA,NA,"Neither" +1,NA,3123,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,3125,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,3128,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,3137,"tess",2,1,78,1,78,NA,NA,"Democrat" +1,NA,3155,"tess",4,1,99,1,99,NA,NA,"Neither" +1,NA,3156,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,3170,"tess",1,1,51,1,51,NA,NA,"Democrat" +1,NA,3172,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,3176,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,3186,"tess",3,1,10,1,10,NA,NA,"Democrat" +1,NA,3188,"tess",3,0,24,1,76,NA,NA,"Democrat" +1,NA,3190,"tess",1,1,94,1,94,NA,NA,"Democrat" +1,NA,3192,"tess",3,0,97,1,3,NA,NA,"Democrat" +1,NA,3195,"tess",1,0,10,1,90,NA,NA,"Democrat" +1,NA,3197,"tess",2,1,30,1,30,NA,NA,"Democrat" +1,NA,3201,"tess",4,0,72,1,28,NA,NA,"Republican" +1,NA,3205,"tess",4,0,55,1,45,NA,NA,"Republican" +1,NA,3206,"tess",4,0,80,1,20,NA,NA,"Democrat" +1,NA,3207,"tess",2,0,44,1,56,NA,NA,"Republican" +1,NA,3208,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,3214,"tess",4,1,56,1,56,NA,NA,"Democrat" +1,NA,3223,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,3225,"tess",2,1,6,1,6,NA,NA,"Republican" +1,NA,3226,"tess",1,1,82,1,82,NA,NA,"Republican" +1,NA,3230,"tess",2,0,98,1,2,NA,NA,"Republican" +1,NA,3234,"tess",1,1,90,1,90,NA,NA,"Republican" +1,NA,3244,"tess",2,1,83,1,83,NA,NA,"Republican" +1,NA,3259,"tess",2,1,75,1,75,NA,NA,"Republican" +1,NA,3262,"tess",4,0,45,1,55,NA,NA,"Republican" +1,NA,3263,"tess",1,0,87,1,13,NA,NA,"Democrat" +1,NA,3274,"tess",3,0,0,1,100,NA,NA,"Democrat" +1,NA,3281,"tess",2,1,90,1,90,NA,NA,"Democrat" +1,NA,3288,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,3295,"tess",2,1,51,1,51,NA,NA,"Democrat" +1,NA,3304,"tess",1,1,99,1,99,NA,NA,"Republican" +1,NA,3313,"tess",4,1,80,1,80,NA,NA,"Republican" +1,NA,3320,"tess",1,0,51,1,49,NA,NA,"Democrat" +1,NA,3333,"tess",2,1,41,1,41,NA,NA,"Democrat" +1,NA,3335,"tess",1,1,70,1,70,NA,NA,"Democrat" +1,NA,3342,"tess",4,1,100,1,100,NA,NA,"Republican" +1,NA,3344,"tess",2,1,97,1,97,NA,NA,"Democrat" +1,NA,3346,"tess",1,1,30,1,30,NA,NA,"Republican" +1,NA,3348,"tess",1,0,40,1,60,NA,NA,"Democrat" +1,NA,3356,"tess",2,0,100,1,0,NA,NA,"Democrat" +1,NA,3364,"tess",2,0,83,1,17,NA,NA,"Democrat" +1,NA,3365,"tess",3,0,80,1,20,NA,NA,"Democrat" +1,NA,3371,"tess",3,0,87,1,13,NA,NA,"Democrat" +1,NA,3407,"tess",4,1,73,1,73,NA,NA,"Republican" +1,NA,3412,"tess",2,1,68,1,68,NA,NA,"Democrat" +1,NA,3419,"tess",2,0,99,1,1,NA,NA,"Democrat" +1,NA,3424,"tess",4,1,46,1,46,NA,NA,"Democrat" +1,NA,3425,"tess",2,0,77,1,23,NA,NA,"Republican" +1,NA,3426,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,3430,"tess",4,0,40,1,60,NA,NA,"Democrat" +1,NA,3433,"tess",1,1,81,1,81,NA,NA,"Democrat" +1,NA,3435,"tess",1,1,48,1,48,NA,NA,"Republican" +1,NA,3437,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,3452,"tess",4,0,3,1,97,NA,NA,"Republican" +1,NA,3454,"tess",2,0,100,1,0,NA,NA,"Democrat" +1,NA,3462,"tess",1,0,3,1,97,NA,NA,"Republican" +1,NA,3464,"tess",2,1,30,1,30,NA,NA,"Republican" +1,NA,3468,"tess",3,0,40,1,60,NA,NA,"Democrat" +1,NA,3477,"tess",3,1,53,1,53,NA,NA,"Democrat" +1,NA,3488,"tess",4,0,8,1,92,NA,NA,"Republican" +1,NA,3494,"tess",4,1,75,1,75,NA,NA,"Democrat" +1,NA,3505,"tess",2,0,70,1,30,NA,NA,"Republican" +1,NA,3507,"tess",2,1,18,1,18,NA,NA,"Democrat" +1,NA,3508,"tess",3,1,51,1,51,NA,NA,"Republican" +1,NA,3512,"tess",4,1,90,1,90,NA,NA,"Republican" +1,NA,3513,"tess",3,1,6,1,6,NA,NA,"Democrat" +1,NA,3515,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,3517,"tess",2,0,90,1,10,NA,NA,"Republican" +1,NA,3522,"tess",4,0,79,1,21,NA,NA,"Republican" +1,NA,3523,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,3535,"tess",1,1,30,1,30,NA,NA,"Democrat" +1,NA,3536,"tess",4,0,100,1,0,NA,NA,"Republican" +1,NA,3544,"tess",2,1,81,1,81,NA,NA,"Neither" +1,NA,3545,"tess",4,0,60,1,40,NA,NA,"Democrat" +1,NA,3548,"tess",1,1,89,1,89,NA,NA,"Republican" +1,NA,3554,"tess",4,0,86,1,14,NA,NA,"Democrat" +1,NA,3562,"tess",3,1,58,1,58,NA,NA,"Democrat" +1,NA,3564,"tess",3,0,95,1,5,NA,NA,"Republican" +1,NA,3568,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,3573,"tess",3,0,65,1,35,NA,NA,"Democrat" +1,NA,3582,"tess",3,1,99,1,99,NA,NA,"Republican" +1,NA,3587,"tess",2,1,3,1,3,NA,NA,"Democrat" +1,NA,3589,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,3593,"tess",4,0,80,1,20,NA,NA,"Democrat" +1,NA,3607,"tess",2,1,97,1,97,NA,NA,"Republican" +1,NA,3609,"tess",2,1,98,1,98,NA,NA,"Republican" +1,NA,3610,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,3611,"tess",2,0,1,1,99,NA,NA,"Democrat" +1,NA,3612,"tess",3,0,90,1,10,NA,NA,"Republican" +1,NA,3627,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,3629,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,3631,"tess",3,1,20,1,20,NA,NA,"Democrat" +1,NA,3632,"tess",1,0,60,1,40,NA,NA,"Republican" +1,NA,3634,"tess",3,0,34,1,66,NA,NA,"Democrat" +1,NA,3635,"tess",3,1,0,1,0,NA,NA,"Republican" +1,NA,3643,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,3645,"tess",3,0,96,1,4,NA,NA,"Republican" +1,NA,3653,"tess",2,0,52,1,48,NA,NA,"Democrat" +1,NA,3656,"tess",4,0,51,1,49,NA,NA,"Democrat" +1,NA,3663,"tess",3,1,47,1,47,NA,NA,"Democrat" +1,NA,3673,"tess",3,1,30,1,30,NA,NA,"Republican" +1,NA,3676,"tess",2,0,51,1,49,NA,NA,"Republican" +1,NA,3678,"tess",1,1,0,1,0,NA,NA,"Republican" +1,NA,3681,"tess",4,1,79,1,79,NA,NA,"Democrat" +1,NA,3695,"tess",4,1,82,1,82,NA,NA,"Republican" +1,NA,3699,"tess",2,1,32,1,32,NA,NA,"Republican" +1,NA,3702,"tess",1,1,11,1,11,NA,NA,"Democrat" +1,NA,3704,"tess",1,0,92,1,8,NA,NA,"Republican" +1,NA,3708,"tess",3,0,100,1,0,NA,NA,"Democrat" +1,NA,3710,"tess",3,0,80,1,20,NA,NA,"Democrat" +1,NA,3711,"tess",3,1,41,1,41,NA,NA,"Democrat" +1,NA,3722,"tess",4,1,78,1,78,NA,NA,"Democrat" +1,NA,3725,"tess",1,1,88,1,88,NA,NA,"Republican" +1,NA,3726,"tess",2,1,60,1,60,NA,NA,"Democrat" +1,NA,3728,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,3736,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,3745,"tess",4,0,99,1,1,NA,NA,"Democrat" +1,NA,3747,"tess",3,1,37,1,37,NA,NA,"Democrat" +1,NA,3754,"tess",3,1,99,1,99,NA,NA,"Democrat" +1,NA,3759,"tess",4,1,71,1,71,NA,NA,"Republican" +1,NA,3767,"tess",2,0,94,1,6,NA,NA,"Republican" +1,NA,3774,"tess",3,0,81,1,19,NA,NA,"Neither" +1,NA,3776,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,3779,"tess",3,0,94,1,6,NA,NA,"Republican" +1,NA,3782,"tess",3,0,72,1,28,NA,NA,"Democrat" +1,NA,3787,"tess",1,0,61,1,39,NA,NA,"Democrat" +1,NA,3793,"tess",4,1,36,1,36,NA,NA,"Republican" +1,NA,3795,"tess",4,1,97,1,97,NA,NA,"Democrat" +1,NA,3799,"tess",1,0,75,1,25,NA,NA,"Republican" +1,NA,3801,"tess",2,1,86,1,86,NA,NA,"Democrat" +1,NA,3806,"tess",4,0,24,1,76,NA,NA,"Republican" +1,NA,3810,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,3811,"tess",4,0,80,1,20,NA,NA,"Republican" +1,NA,3813,"tess",4,1,86,1,86,NA,NA,"Republican" +1,NA,3814,"tess",2,0,51,1,49,NA,NA,"Democrat" +1,NA,3819,"tess",2,0,85,1,15,NA,NA,"Republican" +1,NA,3820,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,3845,"tess",1,1,35,1,35,NA,NA,"Democrat" +1,NA,3848,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,3851,"tess",4,1,97,1,97,NA,NA,"Republican" +1,NA,3865,"tess",2,1,65,1,65,NA,NA,"Democrat" +1,NA,3868,"tess",3,0,99,1,1,NA,NA,"Democrat" +1,NA,3880,"tess",2,0,59,1,41,NA,NA,"Republican" +1,NA,3890,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,3895,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,3898,"tess",3,1,55,1,55,NA,NA,"Democrat" +1,NA,3904,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,3909,"tess",1,0,70,1,30,NA,NA,"Democrat" +1,NA,3910,"tess",2,1,32,1,32,NA,NA,"Democrat" +1,NA,3915,"tess",3,0,90,1,10,NA,NA,"Democrat" +1,NA,3918,"tess",3,1,98,1,98,NA,NA,"Democrat" +1,NA,3919,"tess",4,0,75,1,25,NA,NA,"Democrat" +1,NA,3920,"tess",1,1,70,1,70,NA,NA,"Democrat" +1,NA,3923,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,3931,"tess",2,1,37,1,37,NA,NA,"Democrat" +1,NA,3946,"tess",4,0,10,1,90,NA,NA,"Democrat" +1,NA,3958,"tess",2,0,30,1,70,NA,NA,"Republican" +1,NA,3959,"tess",4,1,51,1,51,NA,NA,"Democrat" +1,NA,3961,"tess",3,1,93,1,93,NA,NA,"Democrat" +1,NA,3965,"tess",1,0,98,1,2,NA,NA,"Democrat" +1,NA,3966,"tess",4,0,97,1,3,NA,NA,"Democrat" +1,NA,3981,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,4001,"tess",2,1,49,1,49,NA,NA,"Neither" +1,NA,4006,"tess",4,1,20,1,20,NA,NA,"Democrat" +1,NA,4007,"tess",4,0,50,1,50,NA,NA,"Republican" +1,NA,4008,"tess",4,0,49,1,51,NA,NA,"Republican" +1,NA,4015,"tess",2,1,1,1,1,NA,NA,"Democrat" +1,NA,4027,"tess",4,0,77,1,23,NA,NA,"Republican" +1,NA,4035,"tess",3,0,0,1,100,NA,NA,"Republican" +1,NA,4039,"tess",1,0,84,1,16,NA,NA,"Democrat" +1,NA,4043,"tess",3,0,5,1,95,NA,NA,"Republican" +1,NA,4046,"tess",2,1,10,1,10,NA,NA,"Democrat" +1,NA,4049,"tess",2,0,50,1,50,NA,NA,"Neither" +1,NA,4065,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,4069,"tess",2,0,62,1,38,NA,NA,"Democrat" +1,NA,4072,"tess",4,1,48,1,48,NA,NA,"Democrat" +1,NA,4075,"tess",4,0,70,1,30,NA,NA,"Democrat" +1,NA,4076,"tess",1,0,83,1,17,NA,NA,"Republican" +1,NA,4079,"tess",3,1,98,1,98,NA,NA,"Democrat" +1,NA,4084,"tess",2,1,34,1,34,NA,NA,"Republican" +1,NA,4096,"tess",2,1,40,1,40,NA,NA,"Democrat" +1,NA,4108,"tess",2,1,99,1,99,NA,NA,"Democrat" +1,NA,4120,"tess",1,0,50,1,50,NA,NA,"Republican" +1,NA,4139,"tess",1,1,11,1,11,NA,NA,"Republican" +1,NA,4141,"tess",4,0,97,1,3,NA,NA,"Democrat" +1,NA,4142,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,4149,"tess",4,1,73,1,73,NA,NA,"Republican" +1,NA,4153,"tess",3,1,90,1,90,NA,NA,"Republican" +1,NA,4160,"tess",3,1,70,1,70,NA,NA,"Democrat" +1,NA,4163,"tess",2,0,77,1,23,NA,NA,"Republican" +1,NA,4175,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,4178,"tess",2,1,42,1,42,NA,NA,"Democrat" +1,NA,4186,"tess",1,0,37,1,63,NA,NA,"Democrat" +1,NA,4195,"tess",1,0,50,1,50,NA,NA,"Republican" +1,NA,4197,"tess",2,0,100,1,0,NA,NA,"Democrat" +1,NA,4199,"tess",2,1,67,1,67,NA,NA,"Democrat" +1,NA,4200,"tess",2,1,54,1,54,NA,NA,"Democrat" +1,NA,4202,"tess",2,1,90,1,90,NA,NA,"Democrat" +1,NA,4209,"tess",1,0,83,1,17,NA,NA,"Democrat" +1,NA,4210,"tess",2,0,75,1,25,NA,NA,"Republican" +1,NA,4216,"tess",4,1,79,1,79,NA,NA,"Democrat" +1,NA,4217,"tess",3,1,63,1,63,NA,NA,"Democrat" +1,NA,4218,"tess",1,0,96,1,4,NA,NA,"Democrat" +1,NA,4222,"tess",3,0,28,1,72,NA,NA,"Democrat" +1,NA,4224,"tess",4,0,76,1,24,NA,NA,"Democrat" +1,NA,4227,"tess",2,1,35,1,35,NA,NA,"Democrat" +1,NA,4229,"tess",1,0,89,1,11,NA,NA,"Democrat" +1,NA,4237,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,4238,"tess",3,0,20,1,80,NA,NA,"Democrat" +1,NA,4241,"tess",2,1,70,1,70,NA,NA,"Republican" +1,NA,4251,"tess",4,0,86,1,14,NA,NA,"Republican" +1,NA,4252,"tess",4,1,85,1,85,NA,NA,"Republican" +1,NA,4253,"tess",3,1,39,1,39,NA,NA,"Democrat" +1,NA,4266,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,4269,"tess",1,1,90,1,90,NA,NA,"Republican" +1,NA,4277,"tess",1,1,53,1,53,NA,NA,"Democrat" +1,NA,4278,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,4282,"tess",4,0,0,1,100,NA,NA,"Republican" +1,NA,4285,"tess",2,0,99,1,1,NA,NA,"Neither" +1,NA,4290,"tess",4,1,76,1,76,NA,NA,"Democrat" +1,NA,4291,"tess",3,1,89,1,89,NA,NA,"Democrat" +1,NA,4298,"tess",2,1,25,1,25,NA,NA,"Democrat" +1,NA,4302,"tess",3,0,21,1,79,NA,NA,"Democrat" +1,NA,4307,"tess",4,0,50,1,50,NA,NA,"Republican" +1,NA,4308,"tess",4,0,99,1,1,NA,NA,"Democrat" +1,NA,4311,"tess",1,1,4,1,4,NA,NA,"Democrat" +1,NA,4322,"tess",4,1,51,1,51,NA,NA,"Republican" +1,NA,4325,"tess",3,0,100,1,0,NA,NA,"Democrat" +1,NA,4326,"tess",3,1,40,1,40,NA,NA,"Democrat" +1,NA,4331,"tess",4,1,30,1,30,NA,NA,"Democrat" +1,NA,4332,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,4334,"tess",1,0,95,1,5,NA,NA,"Republican" +1,NA,4335,"tess",2,0,60,1,40,NA,NA,"Republican" +1,NA,4349,"tess",1,1,34,1,34,NA,NA,"Democrat" +1,NA,4356,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,4357,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,4361,"tess",4,1,16,1,16,NA,NA,"Democrat" +1,NA,4365,"tess",2,1,60,1,60,NA,NA,"Republican" +1,NA,4367,"tess",4,0,91,1,9,NA,NA,"Republican" +1,NA,4370,"tess",2,1,24,1,24,NA,NA,"Republican" +1,NA,4380,"tess",2,1,99,1,99,NA,NA,"Republican" +1,NA,4390,"tess",4,0,76,1,24,NA,NA,"Democrat" +1,NA,4391,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,4401,"tess",4,1,1,1,1,NA,NA,"Democrat" +1,NA,4403,"tess",4,0,39,1,61,NA,NA,"Republican" +1,NA,4412,"tess",3,0,80,1,20,NA,NA,"Republican" +1,NA,4416,"tess",4,1,81,1,81,NA,NA,"Republican" +1,NA,4420,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,4427,"tess",3,1,99,1,99,NA,NA,"Democrat" +1,NA,4431,"tess",1,0,99,1,1,NA,NA,"Democrat" +1,NA,4441,"tess",1,1,81,1,81,NA,NA,"Democrat" +1,NA,4447,"tess",2,1,20,1,20,NA,NA,"Republican" +1,NA,4451,"tess",1,1,51,1,51,NA,NA,"Republican" +1,NA,4452,"tess",3,0,98,1,2,NA,NA,"Republican" +1,NA,4455,"tess",2,1,60,1,60,NA,NA,"Democrat" +1,NA,4457,"tess",2,1,0,1,0,NA,NA,"Democrat" +1,NA,4458,"tess",3,0,90,1,10,NA,NA,"Republican" +1,NA,4459,"tess",3,0,100,1,0,NA,NA,"Democrat" +1,NA,4470,"tess",4,0,84,1,16,NA,NA,"Democrat" +1,NA,4475,"tess",2,1,75,1,75,NA,NA,"Democrat" +1,NA,4476,"tess",2,0,40,1,60,NA,NA,"Democrat" +1,NA,4480,"tess",2,0,60,1,40,NA,NA,"Democrat" +1,NA,4482,"tess",4,0,50,1,50,NA,NA,"Neither" +1,NA,4484,"tess",4,1,11,1,11,NA,NA,"Democrat" +1,NA,4486,"tess",3,1,0,1,0,NA,NA,"Republican" +1,NA,4500,"tess",1,1,85,1,85,NA,NA,"Democrat" +1,NA,4512,"tess",4,0,70,1,30,NA,NA,"Democrat" +1,NA,4516,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,4523,"tess",1,0,95,1,5,NA,NA,"Republican" +1,NA,4524,"tess",1,1,70,1,70,NA,NA,"Republican" +1,NA,4525,"tess",3,1,10,1,10,NA,NA,"Republican" +1,NA,4548,"tess",1,0,70,1,30,NA,NA,"Republican" +1,NA,4552,"tess",2,1,95,1,95,NA,NA,"Democrat" +1,NA,4557,"tess",1,1,94,1,94,NA,NA,"Republican" +1,NA,4561,"tess",2,0,78,1,22,NA,NA,"Democrat" +1,NA,4574,"tess",4,1,18,1,18,NA,NA,"Democrat" +1,NA,4581,"tess",4,1,95,1,95,NA,NA,"Democrat" +1,NA,4584,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,4587,"tess",4,0,59,1,41,NA,NA,"Republican" +1,NA,4606,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,4618,"tess",4,1,59,1,59,NA,NA,"Democrat" +1,NA,4624,"tess",2,0,75,1,25,NA,NA,"Republican" +1,NA,4627,"tess",2,0,6,1,94,NA,NA,"Democrat" +1,NA,4628,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,4632,"tess",3,1,76,1,76,NA,NA,"Democrat" +1,NA,4633,"tess",3,0,70,1,30,NA,NA,"Democrat" +1,NA,4642,"tess",1,1,37,1,37,NA,NA,"Democrat" +1,NA,4656,"tess",4,1,5,1,5,NA,NA,"Democrat" +1,NA,4663,"tess",3,1,20,1,20,NA,NA,"Democrat" +1,NA,4674,"tess",4,0,73,1,27,NA,NA,"Republican" +1,NA,4683,"tess",4,1,100,1,100,NA,NA,"Neither" +1,NA,4690,"tess",4,0,95,1,5,NA,NA,"Democrat" +1,NA,4691,"tess",1,1,100,1,100,NA,NA,"Democrat" +1,NA,4700,"tess",1,0,90,1,10,NA,NA,"Republican" +1,NA,4708,"tess",4,1,78,1,78,NA,NA,"Democrat" +1,NA,4713,"tess",1,0,50,1,50,NA,NA,"Neither" +1,NA,4715,"tess",3,1,73,1,73,NA,NA,"Republican" +1,NA,4722,"tess",1,1,59,1,59,NA,NA,"Democrat" +1,NA,4726,"tess",4,1,76,1,76,NA,NA,"Republican" +1,NA,4737,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,4739,"tess",3,1,99,1,99,NA,NA,"Republican" +1,NA,4740,"tess",3,1,90,1,90,NA,NA,"Republican" +1,NA,4742,"tess",2,0,30,1,70,NA,NA,"Democrat" +1,NA,4770,"tess",3,0,10,1,90,NA,NA,"Democrat" +1,NA,4774,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,4780,"tess",2,0,92,1,8,NA,NA,"Republican" +1,NA,4782,"tess",3,1,47,1,47,NA,NA,"Democrat" +1,NA,4785,"tess",2,1,87,1,87,NA,NA,"Republican" +1,NA,4789,"tess",2,1,96,1,96,NA,NA,"Democrat" +1,NA,4792,"tess",3,1,56,1,56,NA,NA,"Republican" +1,NA,4793,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,4795,"tess",1,1,90,1,90,NA,NA,"Democrat" +1,NA,4799,"tess",1,0,78,1,22,NA,NA,"Republican" +1,NA,4800,"tess",4,0,100,1,0,NA,NA,"Republican" +1,NA,4807,"tess",4,1,81,1,81,NA,NA,"Democrat" +1,NA,4810,"tess",2,0,79,1,21,NA,NA,"Democrat" +1,NA,4813,"tess",3,0,53,1,47,NA,NA,"Democrat" +1,NA,4816,"tess",4,0,96,1,4,NA,NA,"Democrat" +1,NA,4817,"tess",3,0,79,1,21,NA,NA,"Democrat" +1,NA,4819,"tess",3,0,48,1,52,NA,NA,"Democrat" +1,NA,4820,"tess",4,0,50,1,50,NA,NA,"Republican" +1,NA,4821,"tess",4,0,39,1,61,NA,NA,"Neither" +1,NA,4823,"tess",2,1,49,1,49,NA,NA,"Democrat" +1,NA,4826,"tess",3,0,90,1,10,NA,NA,"Democrat" +1,NA,4831,"tess",1,1,63,1,63,NA,NA,"Neither" +1,NA,4833,"tess",4,1,56,1,56,NA,NA,"Democrat" +1,NA,4841,"tess",2,0,51,1,49,NA,NA,"Democrat" +1,NA,4863,"tess",1,1,100,1,100,NA,NA,"Republican" +1,NA,4866,"tess",2,1,57,1,57,NA,NA,"Democrat" +1,NA,4869,"tess",1,1,0,1,0,NA,NA,"Democrat" +1,NA,4875,"tess",2,0,0,1,100,NA,NA,"Democrat" +1,NA,4880,"tess",4,1,12,1,12,NA,NA,"Republican" +1,NA,4883,"tess",2,0,83,1,17,NA,NA,"Democrat" +1,NA,4887,"tess",4,0,88,1,12,NA,NA,"Republican" +1,NA,4897,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,4899,"tess",3,0,98,1,2,NA,NA,"Democrat" +1,NA,4903,"tess",4,0,70,1,30,NA,NA,"Democrat" +1,NA,4905,"tess",2,0,100,1,0,NA,NA,"Democrat" +1,NA,4906,"tess",2,0,100,1,0,NA,NA,"Republican" +1,NA,4908,"tess",2,0,51,1,49,NA,NA,"Democrat" +1,NA,4914,"tess",3,0,80,1,20,NA,NA,"Democrat" +1,NA,4921,"tess",1,0,100,1,0,NA,NA,"Republican" +1,NA,4925,"tess",4,1,84,1,84,NA,NA,"Democrat" +1,NA,4926,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,4930,"tess",2,0,18,1,82,NA,NA,"Democrat" +1,NA,4932,"tess",3,0,10,1,90,NA,NA,"Republican" +1,NA,4935,"tess",2,0,75,1,25,NA,NA,"Democrat" +1,NA,4940,"tess",1,0,6,1,94,NA,NA,"Republican" +1,NA,4964,"tess",3,1,90,1,90,NA,NA,"Republican" +1,NA,4966,"tess",3,1,2,1,2,NA,NA,"Republican" +1,NA,4969,"tess",1,0,33,1,67,NA,NA,"Democrat" +1,NA,4971,"tess",4,0,61,1,39,NA,NA,"Democrat" +1,NA,4977,"tess",2,0,100,1,0,NA,NA,"Republican" +1,NA,4990,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,4998,"tess",3,0,93,1,7,NA,NA,"Democrat" +1,NA,5003,"tess",4,0,70,1,30,NA,NA,"Republican" +1,NA,5004,"tess",1,1,88,1,88,NA,NA,"Democrat" +1,NA,5008,"tess",3,1,83,1,83,NA,NA,"Republican" +1,NA,5016,"tess",2,0,6,1,94,NA,NA,"Democrat" +1,NA,5018,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,5025,"tess",4,1,49,1,49,NA,NA,"Democrat" +1,NA,5027,"tess",2,0,19,1,81,NA,NA,"Republican" +1,NA,5029,"tess",4,1,82,1,82,NA,NA,"Republican" +1,NA,5048,"tess",2,1,20,1,20,NA,NA,"Republican" +1,NA,5055,"tess",2,1,84,1,84,NA,NA,"Republican" +1,NA,5058,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,5068,"tess",3,1,20,1,20,NA,NA,"Democrat" +1,NA,5073,"tess",1,1,33,1,33,NA,NA,"Democrat" +1,NA,5086,"tess",1,1,20,1,20,NA,NA,"Neither" +1,NA,5092,"tess",4,0,96,1,4,NA,NA,"Republican" +1,NA,5101,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,5108,"tess",1,1,95,1,95,NA,NA,"Republican" +1,NA,5114,"tess",1,1,89,1,89,NA,NA,"Democrat" +1,NA,5116,"tess",4,1,19,1,19,NA,NA,"Republican" +1,NA,5128,"tess",2,0,90,1,10,NA,NA,"Democrat" +1,NA,5131,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,5132,"tess",4,1,44,1,44,NA,NA,"Republican" +1,NA,5133,"tess",3,1,95,1,95,NA,NA,"Republican" +1,NA,5137,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,5143,"tess",4,1,77,1,77,NA,NA,"Republican" +1,NA,5144,"tess",1,1,51,1,51,NA,NA,"Democrat" +1,NA,5147,"tess",3,1,62,1,62,NA,NA,"Republican" +1,NA,5151,"tess",2,0,1,1,99,NA,NA,"Democrat" +1,NA,5160,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,5162,"tess",4,0,60,1,40,NA,NA,"Neither" +1,NA,5165,"tess",4,1,100,1,100,NA,NA,"Republican" +1,NA,5172,"tess",3,0,90,1,10,NA,NA,"Democrat" +1,NA,5175,"tess",1,1,11,1,11,NA,NA,"Democrat" +1,NA,5186,"tess",1,0,2,1,98,NA,NA,"Republican" +1,NA,5192,"tess",1,1,51,1,51,NA,NA,"Democrat" +1,NA,5195,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,5221,"tess",4,0,81,1,19,NA,NA,"Republican" +1,NA,5222,"tess",2,0,97,1,3,NA,NA,"Democrat" +1,NA,5224,"tess",1,1,99,1,99,NA,NA,"Republican" +1,NA,5225,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,5228,"tess",1,1,23,1,23,NA,NA,"Democrat" +1,NA,5268,"tess",3,1,30,1,30,NA,NA,"Democrat" +1,NA,5270,"tess",2,0,56,1,44,NA,NA,"Republican" +1,NA,5275,"tess",3,0,96,1,4,NA,NA,"Democrat" +1,NA,5279,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,5284,"tess",4,0,94,1,6,NA,NA,"Democrat" +1,NA,5288,"tess",3,1,58,1,58,NA,NA,"Democrat" +1,NA,5289,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,5290,"tess",1,0,38,1,62,NA,NA,"Republican" +1,NA,5299,"tess",4,1,57,1,57,NA,NA,"Democrat" +1,NA,5301,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,5308,"tess",4,0,83,1,17,NA,NA,"Democrat" +1,NA,5311,"tess",2,0,15,1,85,NA,NA,"Republican" +1,NA,5314,"tess",4,1,100,1,100,NA,NA,"Republican" +1,NA,5316,"tess",1,1,58,1,58,NA,NA,"Republican" +1,NA,5318,"tess",3,1,30,1,30,NA,NA,"Democrat" +1,NA,5319,"tess",2,0,25,1,75,NA,NA,"Democrat" +1,NA,5325,"tess",2,0,83,1,17,NA,NA,"Democrat" +1,NA,5326,"tess",3,1,37,1,37,NA,NA,"Democrat" +1,NA,5327,"tess",1,1,19,1,19,NA,NA,"Republican" +1,NA,5331,"tess",4,1,40,1,40,NA,NA,"Democrat" +1,NA,5353,"tess",3,0,1,1,99,NA,NA,"Democrat" +1,NA,5363,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,5378,"tess",3,0,51,1,49,NA,NA,"Democrat" +1,NA,5383,"tess",3,1,69,1,69,NA,NA,"Republican" +1,NA,5385,"tess",3,1,85,1,85,NA,NA,"Democrat" +1,NA,5386,"tess",1,1,20,1,20,NA,NA,"Republican" +1,NA,5388,"tess",1,1,27,1,27,NA,NA,"Republican" +1,NA,5389,"tess",3,0,70,1,30,NA,NA,"Republican" +1,NA,5392,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,5393,"tess",3,1,84,1,84,NA,NA,"Republican" +1,NA,5400,"tess",1,1,91,1,91,NA,NA,"Republican" +1,NA,5406,"tess",2,0,70,1,30,NA,NA,"Republican" +1,NA,5407,"tess",1,1,63,1,63,NA,NA,"Republican" +1,NA,5411,"tess",2,1,70,1,70,NA,NA,"Republican" +1,NA,5412,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,5416,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,5419,"tess",2,1,10,1,10,NA,NA,"Republican" +1,NA,5423,"tess",2,0,96,1,4,NA,NA,"Democrat" +1,NA,5428,"tess",1,0,77,1,23,NA,NA,"Republican" +1,NA,5430,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,5434,"tess",4,0,74,1,26,NA,NA,"Republican" +1,NA,5438,"tess",3,0,61,1,39,NA,NA,"Democrat" +1,NA,5447,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,5448,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,5450,"tess",2,1,95,1,95,NA,NA,"Republican" +1,NA,5456,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,5462,"tess",3,1,71,1,71,NA,NA,"Republican" +1,NA,5465,"tess",3,1,89,1,89,NA,NA,"Republican" +1,NA,5470,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,5475,"tess",4,0,98,1,2,NA,NA,"Democrat" +1,NA,5480,"tess",1,0,50,1,50,NA,NA,"Republican" +1,NA,5490,"tess",4,1,91,1,91,NA,NA,"Republican" +1,NA,5500,"tess",3,1,40,1,40,NA,NA,"Democrat" +1,NA,5504,"tess",1,1,60,1,60,NA,NA,"Republican" +1,NA,5509,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,5515,"tess",3,1,81,1,81,NA,NA,"Republican" +1,NA,5518,"tess",1,0,30,1,70,NA,NA,"Republican" +1,NA,5519,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,5523,"tess",3,0,2,1,98,NA,NA,"Democrat" +1,NA,5536,"tess",2,1,11,1,11,NA,NA,"Democrat" +1,NA,5540,"tess",2,1,95,1,95,NA,NA,"Democrat" +1,NA,5544,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,5551,"tess",1,0,87,1,13,NA,NA,"Republican" +1,NA,5553,"tess",4,0,50,1,50,NA,NA,"Republican" +1,NA,5559,"tess",1,1,75,1,75,NA,NA,"Republican" +1,NA,5561,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,5567,"tess",1,0,90,1,10,NA,NA,"Republican" +1,NA,5569,"tess",1,1,84,1,84,NA,NA,"Democrat" +1,NA,5570,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,5575,"tess",1,0,69,1,31,NA,NA,"Democrat" +1,NA,5576,"tess",2,1,75,1,75,NA,NA,"Democrat" +1,NA,5579,"tess",2,0,85,1,15,NA,NA,"Republican" +1,NA,5581,"tess",2,1,11,1,11,NA,NA,"Democrat" +1,NA,5584,"tess",4,0,80,1,20,NA,NA,"Democrat" +1,NA,5586,"tess",3,0,51,1,49,NA,NA,"Democrat" +1,NA,5590,"tess",4,1,87,1,87,NA,NA,"Democrat" +1,NA,5593,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,5594,"tess",3,1,28,1,28,NA,NA,"Republican" +1,NA,5595,"tess",2,0,0,1,100,NA,NA,"Republican" +1,NA,5597,"tess",3,0,10,1,90,NA,NA,"Republican" +1,NA,5611,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,5612,"tess",1,0,76,1,24,NA,NA,"Democrat" +1,NA,5613,"tess",2,0,98,1,2,NA,NA,"Republican" +1,NA,5614,"tess",1,0,71,1,29,NA,NA,"Democrat" +1,NA,5615,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,5617,"tess",1,0,89,1,11,NA,NA,"Democrat" +1,NA,5620,"tess",3,1,60,1,60,NA,NA,"Democrat" +1,NA,5621,"tess",4,0,0,1,100,NA,NA,"Democrat" +1,NA,5626,"tess",4,0,0,1,100,NA,NA,"Democrat" +1,NA,5631,"tess",1,0,60,1,40,NA,NA,"Republican" +1,NA,5633,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,5635,"tess",2,0,99,1,1,NA,NA,"Republican" +1,NA,5646,"tess",2,0,0,1,100,NA,NA,"Republican" +1,NA,5648,"tess",1,1,97,1,97,NA,NA,"Democrat" +1,NA,5654,"tess",1,1,87,1,87,NA,NA,"Democrat" +1,NA,5657,"tess",1,1,94,1,94,NA,NA,"Democrat" +1,NA,5660,"tess",3,0,20,1,80,NA,NA,"Democrat" +1,NA,5663,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,5664,"tess",2,0,96,1,4,NA,NA,"Democrat" +1,NA,5669,"tess",1,0,83,1,17,NA,NA,"Neither" +1,NA,5676,"tess",2,0,99,1,1,NA,NA,"Democrat" +1,NA,5677,"tess",3,0,55,1,45,NA,NA,"Republican" +1,NA,5679,"tess",3,1,37,1,37,NA,NA,"Democrat" +1,NA,5681,"tess",2,1,41,1,41,NA,NA,"Democrat" +1,NA,5683,"tess",4,1,81,1,81,NA,NA,"Democrat" +1,NA,5684,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,5691,"tess",3,1,63,1,63,NA,NA,"Democrat" +1,NA,5706,"tess",3,0,23,1,77,NA,NA,"Republican" +1,NA,5715,"tess",4,1,49,1,49,NA,NA,"Republican" +1,NA,5720,"tess",1,0,94,1,6,NA,NA,"Republican" +1,NA,5721,"tess",2,0,31,1,69,NA,NA,"Republican" +1,NA,5725,"tess",2,0,9,1,91,NA,NA,"Republican" +1,NA,5726,"tess",4,0,96,1,4,NA,NA,"Democrat" +1,NA,5729,"tess",2,0,75,1,25,NA,NA,"Republican" +1,NA,5730,"tess",2,0,74,1,26,NA,NA,"Republican" +1,NA,5731,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,5732,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,5734,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,5735,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,5740,"tess",1,1,0,1,0,NA,NA,"Democrat" +1,NA,5743,"tess",1,0,50,1,50,NA,NA,"Republican" +1,NA,5744,"tess",3,1,10,1,10,NA,NA,"Democrat" +1,NA,5745,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,5746,"tess",2,0,20,1,80,NA,NA,"Democrat" +1,NA,5751,"tess",2,1,15,1,15,NA,NA,"Republican" +1,NA,5752,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,5757,"tess",4,1,71,1,71,NA,NA,"Republican" +1,NA,5760,"tess",3,0,89,1,11,NA,NA,"Democrat" +1,NA,5763,"tess",4,1,85,1,85,NA,NA,"Democrat" +1,NA,5772,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,5783,"tess",3,1,91,1,91,NA,NA,"Democrat" +1,NA,5787,"tess",4,1,97,1,97,NA,NA,"Republican" +1,NA,5802,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,5803,"tess",3,1,68,1,68,NA,NA,"Republican" +1,NA,5804,"tess",2,1,59,1,59,NA,NA,"Republican" +1,NA,5810,"tess",4,0,30,1,70,NA,NA,"Democrat" +1,NA,5815,"tess",2,1,88,1,88,NA,NA,"Democrat" +1,NA,5820,"tess",3,1,71,1,71,NA,NA,"Democrat" +1,NA,5824,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,5825,"tess",4,1,100,1,100,NA,NA,"Republican" +1,NA,5826,"tess",3,0,88,1,12,NA,NA,"Republican" +1,NA,5833,"tess",2,0,39,1,61,NA,NA,"Democrat" +1,NA,5838,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,5842,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,5844,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,5854,"tess",3,1,1,1,1,NA,NA,"Democrat" +1,NA,5868,"tess",3,1,81,1,81,NA,NA,"Democrat" +1,NA,5873,"tess",4,1,25,1,25,NA,NA,"Democrat" +1,NA,5874,"tess",4,1,47,1,47,NA,NA,"Democrat" +1,NA,5884,"tess",2,0,51,1,49,NA,NA,"Democrat" +1,NA,5885,"tess",4,1,52,1,52,NA,NA,"Republican" +1,NA,5886,"tess",2,1,48,1,48,NA,NA,"Republican" +1,NA,5889,"tess",2,1,53,1,53,NA,NA,"Democrat" +1,NA,5896,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,5899,"tess",4,0,79,1,21,NA,NA,"Democrat" +1,NA,5901,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,5902,"tess",4,0,51,1,49,NA,NA,"Republican" +1,NA,5906,"tess",4,0,0,1,100,NA,NA,"Democrat" +1,NA,5914,"tess",3,0,38,1,62,NA,NA,"Republican" +1,NA,5916,"tess",4,1,21,1,21,NA,NA,"Republican" +1,NA,5918,"tess",1,0,71,1,29,NA,NA,"Republican" +1,NA,5920,"tess",4,0,78,1,22,NA,NA,"Republican" +1,NA,5922,"tess",3,0,94,1,6,NA,NA,"Republican" +1,NA,5925,"tess",4,1,88,1,88,NA,NA,"Republican" +1,NA,5926,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,5931,"tess",3,1,14,1,14,NA,NA,"Democrat" +1,NA,5934,"tess",1,1,96,1,96,NA,NA,"Democrat" +1,NA,5937,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,5940,"tess",1,0,81,1,19,NA,NA,"Democrat" +1,NA,5946,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,5951,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,5954,"tess",1,0,70,1,30,NA,NA,"Democrat" +1,NA,5958,"tess",1,1,20,1,20,NA,NA,"Democrat" +1,NA,5959,"tess",1,0,90,1,10,NA,NA,"Republican" +1,NA,5963,"tess",2,1,95,1,95,NA,NA,"Democrat" +1,NA,5964,"tess",4,1,94,1,94,NA,NA,"Democrat" +1,NA,5978,"tess",2,1,48,1,48,NA,NA,"Democrat" +1,NA,5981,"tess",4,1,22,1,22,NA,NA,"Republican" +1,NA,5982,"tess",3,1,29,1,29,NA,NA,"Democrat" +1,NA,5987,"tess",4,1,75,1,75,NA,NA,"Democrat" +1,NA,5988,"tess",2,1,81,1,81,NA,NA,"Democrat" +1,NA,5990,"tess",3,0,37,1,63,NA,NA,"Democrat" +1,NA,5994,"tess",2,0,90,1,10,NA,NA,"Democrat" +1,NA,5996,"tess",2,0,94,1,6,NA,NA,"Democrat" +1,NA,5998,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,5999,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,6000,"tess",2,0,81,1,19,NA,NA,"Democrat" +1,NA,6008,"tess",1,1,26,1,26,NA,NA,"Republican" +1,NA,6012,"tess",3,1,40,1,40,NA,NA,"Republican" +1,NA,6013,"tess",2,0,99,1,1,NA,NA,"Democrat" +1,NA,6039,"tess",2,0,36,1,64,NA,NA,"Republican" +1,NA,6041,"tess",2,0,30,1,70,NA,NA,"Democrat" +1,NA,6042,"tess",2,1,98,1,98,NA,NA,"Neither" +1,NA,6045,"tess",3,1,29,1,29,NA,NA,"Republican" +1,NA,6046,"tess",4,0,93,1,7,NA,NA,"Democrat" +1,NA,6048,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,6050,"tess",1,1,19,1,19,NA,NA,"Republican" +1,NA,6053,"tess",1,1,91,1,91,NA,NA,"Republican" +1,NA,6061,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,6067,"tess",4,0,51,1,49,NA,NA,"Republican" +1,NA,6068,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,6069,"tess",4,0,81,1,19,NA,NA,"Democrat" +1,NA,6070,"tess",4,0,22,1,78,NA,NA,"Republican" +1,NA,6073,"tess",3,0,0,1,100,NA,NA,"Democrat" +1,NA,6074,"tess",1,1,49,1,49,NA,NA,"Republican" +1,NA,6077,"tess",1,1,60,1,60,NA,NA,"Democrat" +1,NA,6084,"tess",4,1,75,1,75,NA,NA,"Democrat" +1,NA,6087,"tess",1,0,96,1,4,NA,NA,"Democrat" +1,NA,6088,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,6090,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,6095,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,6096,"tess",2,0,96,1,4,NA,NA,"Republican" +1,NA,6097,"tess",3,0,75,1,25,NA,NA,"Republican" +1,NA,6100,"tess",3,1,48,1,48,NA,NA,"Democrat" +1,NA,6101,"tess",1,1,35,1,35,NA,NA,"Democrat" +1,NA,6110,"tess",1,0,87,1,13,NA,NA,"Republican" +1,NA,6111,"tess",4,0,64,1,36,NA,NA,"Democrat" +1,NA,6116,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,6121,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,6130,"tess",2,0,21,1,79,NA,NA,"Republican" +1,NA,6131,"tess",1,0,60,1,40,NA,NA,"Neither" +1,NA,6132,"tess",1,1,20,1,20,NA,NA,"Neither" +1,NA,6136,"tess",4,0,52,1,48,NA,NA,"Democrat" +1,NA,6137,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,6138,"tess",1,0,75,1,25,NA,NA,"Democrat" +1,NA,6142,"tess",3,0,50,1,50,NA,NA,"Neither" +1,NA,6144,"tess",3,1,48,1,48,NA,NA,"Democrat" +1,NA,6146,"tess",4,1,20,1,20,NA,NA,"Republican" +1,NA,6151,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,6152,"tess",2,0,60,1,40,NA,NA,"Democrat" +1,NA,6155,"tess",1,1,100,1,100,NA,NA,"Democrat" +1,NA,6158,"tess",2,0,85,1,15,NA,NA,"Republican" +1,NA,6162,"tess",1,0,97,1,3,NA,NA,"Democrat" +1,NA,6164,"tess",2,0,70,1,30,NA,NA,"Democrat" +1,NA,6170,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,6171,"tess",1,0,51,1,49,NA,NA,"Democrat" +1,NA,6172,"tess",1,0,99,1,1,NA,NA,"Democrat" +1,NA,6179,"tess",2,1,38,1,38,NA,NA,"Democrat" +1,NA,6180,"tess",3,1,79,1,79,NA,NA,"Republican" +1,NA,6187,"tess",2,1,100,1,100,NA,NA,"Democrat" +1,NA,6188,"tess",2,1,20,1,20,NA,NA,"Republican" +1,NA,6193,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,6195,"tess",3,1,95,1,95,NA,NA,"Democrat" +1,NA,6196,"tess",1,1,98,1,98,NA,NA,"Democrat" +1,NA,6197,"tess",3,0,60,1,40,NA,NA,"Democrat" +1,NA,6199,"tess",3,0,49,1,51,NA,NA,"Republican" +1,NA,6204,"tess",4,1,39,1,39,NA,NA,"Republican" +1,NA,6209,"tess",1,1,100,1,100,NA,NA,"Democrat" +1,NA,6215,"tess",1,1,89,1,89,NA,NA,"Republican" +1,NA,6220,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,6224,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,6225,"tess",1,0,55,1,45,NA,NA,"Democrat" +1,NA,6226,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,6227,"tess",3,1,65,1,65,NA,NA,"Democrat" +1,NA,6231,"tess",2,1,40,1,40,NA,NA,"Democrat" +1,NA,6237,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,6242,"tess",1,0,83,1,17,NA,NA,"Democrat" +1,NA,6244,"tess",4,1,10,1,10,NA,NA,"Democrat" +1,NA,6245,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,6246,"tess",4,0,29,1,71,NA,NA,"Republican" +1,NA,6248,"tess",4,0,50,1,50,NA,NA,"Republican" +1,NA,6249,"tess",1,0,41,1,59,NA,NA,"Democrat" +1,NA,6251,"tess",3,1,9,1,9,NA,NA,"Democrat" +1,NA,6254,"tess",1,0,64,1,36,NA,NA,"Democrat" +1,NA,6256,"tess",1,0,1,1,99,NA,NA,"Democrat" +1,NA,6257,"tess",1,0,97,1,3,NA,NA,"Democrat" +1,NA,6258,"tess",4,1,80,1,80,NA,NA,"Republican" +1,NA,6259,"tess",2,0,100,1,0,NA,NA,"Democrat" +1,NA,6261,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,6263,"tess",1,1,3,1,3,NA,NA,"Democrat" +1,NA,6265,"tess",4,1,76,1,76,NA,NA,"Democrat" +1,NA,6268,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,6269,"tess",1,1,20,1,20,NA,NA,"Democrat" +1,NA,6270,"tess",2,1,78,1,78,NA,NA,"Democrat" +1,NA,6271,"tess",1,0,30,1,70,NA,NA,"Democrat" +1,NA,6272,"tess",1,0,100,1,0,NA,NA,"Democrat" +1,NA,6279,"tess",2,1,0,1,0,NA,NA,"Republican" +1,NA,6280,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,6284,"tess",2,0,20,1,80,NA,NA,"Neither" +1,NA,6292,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,6294,"tess",2,0,100,1,0,NA,NA,"Republican" +1,NA,6298,"tess",3,0,100,1,0,NA,NA,"Neither" +1,NA,6301,"tess",3,1,39,1,39,NA,NA,"Democrat" +1,NA,6307,"tess",1,1,67,1,67,NA,NA,"Republican" +1,NA,6312,"tess",1,1,70,1,70,NA,NA,"Republican" +1,NA,6323,"tess",3,0,98,1,2,NA,NA,"Democrat" +1,NA,6326,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,6329,"tess",1,1,59,1,59,NA,NA,"Democrat" +1,NA,6333,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,6354,"tess",2,0,40,1,60,NA,NA,"Republican" +1,NA,6361,"tess",4,1,85,1,85,NA,NA,"Democrat" +1,NA,6362,"tess",3,1,5,1,5,NA,NA,"Republican" +1,NA,6366,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,6367,"tess",1,0,30,1,70,NA,NA,"Democrat" +1,NA,6372,"tess",1,0,99,1,1,NA,NA,"Democrat" +1,NA,6373,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,6376,"tess",1,0,75,1,25,NA,NA,"Democrat" +1,NA,6382,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,6383,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,6385,"tess",4,0,61,1,39,NA,NA,"Democrat" +1,NA,6388,"tess",2,0,18,1,82,NA,NA,"Democrat" +1,NA,6391,"tess",4,0,86,1,14,NA,NA,"Democrat" +1,NA,6397,"tess",1,1,99,1,99,NA,NA,"Republican" +1,NA,6401,"tess",1,0,40,1,60,NA,NA,"Democrat" +1,NA,6402,"tess",2,1,97,1,97,NA,NA,"Democrat" +1,NA,6405,"tess",2,1,100,1,100,NA,NA,"Republican" +1,NA,6411,"tess",2,1,98,1,98,NA,NA,"Democrat" +1,NA,6414,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,6419,"tess",2,0,74,1,26,NA,NA,"Democrat" +1,NA,6424,"tess",1,1,100,1,100,NA,NA,"Republican" +1,NA,6427,"tess",4,1,67,1,67,NA,NA,"Republican" +1,NA,6428,"tess",3,1,19,1,19,NA,NA,"Neither" +1,NA,6430,"tess",4,0,80,1,20,NA,NA,"Democrat" +1,NA,6434,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,6440,"tess",1,1,40,1,40,NA,NA,"Republican" +1,NA,6449,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,6452,"tess",4,1,97,1,97,NA,NA,"Republican" +1,NA,6458,"tess",2,1,10,1,10,NA,NA,"Republican" +1,NA,6462,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,6463,"tess",3,1,27,1,27,NA,NA,"Democrat" +1,NA,6466,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,6467,"tess",2,1,25,1,25,NA,NA,"Democrat" +1,NA,6468,"tess",2,1,91,1,91,NA,NA,"Republican" +1,NA,6469,"tess",4,0,66,1,34,NA,NA,"Democrat" +1,NA,6472,"tess",4,1,21,1,21,NA,NA,"Republican" +1,NA,6473,"tess",1,1,95,1,95,NA,NA,"Republican" +1,NA,6488,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,6489,"tess",4,1,23,1,23,NA,NA,"Democrat" +1,NA,6491,"tess",3,0,10,1,90,NA,NA,"Neither" +1,NA,6496,"tess",4,1,40,1,40,NA,NA,"Democrat" +1,NA,6501,"tess",1,1,90,1,90,NA,NA,"Neither" +1,NA,6506,"tess",1,1,100,1,100,NA,NA,"Democrat" +1,NA,6507,"tess",4,1,49,1,49,NA,NA,"Republican" +1,NA,6508,"tess",4,0,28,1,72,NA,NA,"Republican" +1,NA,6513,"tess",1,1,30,1,30,NA,NA,"Republican" +1,NA,6516,"tess",1,1,21,1,21,NA,NA,"Republican" +1,NA,6519,"tess",2,1,99,1,99,NA,NA,"Republican" +1,NA,6521,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,6522,"tess",1,0,60,1,40,NA,NA,"Democrat" +1,NA,6524,"tess",4,0,85,1,15,NA,NA,"Democrat" +1,NA,6527,"tess",1,0,34,1,66,NA,NA,"Democrat" +1,NA,6532,"tess",2,1,49,1,49,NA,NA,"Democrat" +1,NA,6534,"tess",3,0,75,1,25,NA,NA,"Republican" +1,NA,6538,"tess",2,0,80,1,20,NA,NA,"Republican" +1,NA,6540,"tess",2,0,0,1,100,NA,NA,"Democrat" +1,NA,6541,"tess",3,0,13,1,87,NA,NA,"Democrat" +1,NA,6545,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,6547,"tess",1,1,90,1,90,NA,NA,"Republican" +1,NA,6548,"tess",2,1,4,1,4,NA,NA,"Democrat" +1,NA,6549,"tess",3,0,24,1,76,NA,NA,"Democrat" +1,NA,6551,"tess",4,1,70,1,70,NA,NA,"Democrat" +1,NA,6553,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,6557,"tess",2,0,79,1,21,NA,NA,"Republican" +1,NA,6558,"tess",2,1,20,1,20,NA,NA,"Republican" +1,NA,6561,"tess",3,0,90,1,10,NA,NA,"Democrat" +1,NA,6562,"tess",2,1,100,1,100,NA,NA,"Republican" +1,NA,6565,"tess",2,1,70,1,70,NA,NA,"Democrat" +1,NA,6568,"tess",4,0,61,1,39,NA,NA,"Democrat" +1,NA,6571,"tess",3,0,85,1,15,NA,NA,"Republican" +1,NA,6572,"tess",4,0,82,1,18,NA,NA,"Democrat" +1,NA,6581,"tess",4,0,93,1,7,NA,NA,"Democrat" +1,NA,6587,"tess",2,1,97,1,97,NA,NA,"Republican" +1,NA,6588,"tess",4,0,33,1,67,NA,NA,"Democrat" +1,NA,6589,"tess",4,0,72,1,28,NA,NA,"Democrat" +1,NA,6590,"tess",2,0,81,1,19,NA,NA,"Democrat" +1,NA,6592,"tess",1,0,77,1,23,NA,NA,"Democrat" +1,NA,6593,"tess",1,0,0,1,100,NA,NA,"Democrat" +1,NA,6596,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,6599,"tess",3,1,66,1,66,NA,NA,"Democrat" +1,NA,6600,"tess",2,1,61,1,61,NA,NA,"Republican" +1,NA,6607,"tess",1,0,89,1,11,NA,NA,"Democrat" +1,NA,6608,"tess",4,0,1,1,99,NA,NA,"Republican" +1,NA,6609,"tess",2,0,5,1,95,NA,NA,"Democrat" +1,NA,6610,"tess",4,1,60,1,60,NA,NA,"Democrat" +1,NA,6611,"tess",2,1,13,1,13,NA,NA,"Republican" +1,NA,6615,"tess",3,1,90,1,90,NA,NA,"Democrat" +1,NA,6617,"tess",1,1,26,1,26,NA,NA,"Democrat" +1,NA,6619,"tess",4,1,29,1,29,NA,NA,"Republican" +1,NA,6621,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,6625,"tess",2,0,75,1,25,NA,NA,"Democrat" +1,NA,6626,"tess",1,1,20,1,20,NA,NA,"Republican" +1,NA,6633,"tess",3,0,56,1,44,NA,NA,"Republican" +1,NA,6634,"tess",2,0,83,1,17,NA,NA,"Republican" +1,NA,6635,"tess",2,1,88,1,88,NA,NA,"Republican" +1,NA,6636,"tess",1,0,6,1,94,NA,NA,"Republican" +1,NA,6640,"tess",3,0,40,1,60,NA,NA,"Republican" +1,NA,6642,"tess",2,1,30,1,30,NA,NA,"Democrat" +1,NA,6646,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,6647,"tess",1,1,36,1,36,NA,NA,"Democrat" +1,NA,6648,"tess",3,0,67,1,33,NA,NA,"Democrat" +1,NA,6652,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,6656,"tess",2,1,99,1,99,NA,NA,"Democrat" +1,NA,6660,"tess",4,1,89,1,89,NA,NA,"Democrat" +1,NA,6661,"tess",4,0,80,1,20,NA,NA,"Republican" +1,NA,6665,"tess",2,0,90,1,10,NA,NA,"Democrat" +1,NA,6666,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,6667,"tess",4,0,81,1,19,NA,NA,"Democrat" +1,NA,6668,"tess",4,1,58,1,58,NA,NA,"Democrat" +1,NA,6670,"tess",3,0,25,1,75,NA,NA,"Democrat" +1,NA,6674,"tess",1,0,60,1,40,NA,NA,"Democrat" +1,NA,6675,"tess",2,0,51,1,49,NA,NA,"Democrat" +1,NA,6676,"tess",2,1,77,1,77,NA,NA,"Democrat" +1,NA,6680,"tess",4,0,3,1,97,NA,NA,"Republican" +1,NA,6682,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,6683,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,6685,"tess",3,1,55,1,55,NA,NA,"Republican" +1,NA,6686,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,6688,"tess",4,1,56,1,56,NA,NA,"Republican" +1,NA,6696,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,6698,"tess",3,0,99,1,1,NA,NA,"Democrat" +1,NA,6702,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,6703,"tess",1,0,85,1,15,NA,NA,"Democrat" +1,NA,6710,"tess",4,1,75,1,75,NA,NA,"Republican" +1,NA,6712,"tess",1,1,49,1,49,NA,NA,"Democrat" +1,NA,6718,"tess",4,0,86,1,14,NA,NA,"Republican" +1,NA,6720,"tess",2,0,22,1,78,NA,NA,"Republican" +1,NA,6725,"tess",3,1,10,1,10,NA,NA,"Republican" +1,NA,6729,"tess",4,0,67,1,33,NA,NA,"Democrat" +1,NA,6730,"tess",2,0,73,1,27,NA,NA,"Democrat" +1,NA,6732,"tess",3,1,79,1,79,NA,NA,"Democrat" +1,NA,6733,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,6741,"tess",4,1,20,1,20,NA,NA,"Democrat" +1,NA,6742,"tess",1,1,70,1,70,NA,NA,"Democrat" +1,NA,6748,"tess",4,1,90,1,90,NA,NA,"Democrat" +1,NA,6755,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,6758,"tess",4,1,78,1,78,NA,NA,"Republican" +1,NA,6760,"tess",3,0,65,1,35,NA,NA,"Democrat" +1,NA,6775,"tess",3,1,89,1,89,NA,NA,"Republican" +1,NA,6777,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,6780,"tess",3,0,78,1,22,NA,NA,"Democrat" +1,NA,6782,"tess",1,0,98,1,2,NA,NA,"Republican" +1,NA,6783,"tess",3,0,16,1,84,NA,NA,"Democrat" +1,NA,6788,"tess",2,1,93,1,93,NA,NA,"Democrat" +1,NA,6791,"tess",4,1,80,1,80,NA,NA,"Democrat" +1,NA,6792,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,6795,"tess",2,0,62,1,38,NA,NA,"Democrat" +1,NA,6797,"tess",4,1,80,1,80,NA,NA,"Democrat" +1,NA,6802,"tess",4,1,46,1,46,NA,NA,"Democrat" +1,NA,6803,"tess",4,0,87,1,13,NA,NA,"Democrat" +1,NA,6804,"tess",2,1,80,1,80,NA,NA,"Republican" +1,NA,6805,"tess",3,0,60,1,40,NA,NA,"Republican" +1,NA,6814,"tess",1,0,70,1,30,NA,NA,"Democrat" +1,NA,6820,"tess",4,0,10,1,90,NA,NA,"Republican" +1,NA,6825,"tess",3,1,99,1,99,NA,NA,"Democrat" +1,NA,6827,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,6831,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,6833,"tess",2,0,100,1,0,NA,NA,"Neither" +1,NA,6835,"tess",3,1,71,1,71,NA,NA,"Democrat" +1,NA,6837,"tess",3,1,97,1,97,NA,NA,"Democrat" +1,NA,6838,"tess",4,0,80,1,20,NA,NA,"Democrat" +1,NA,6842,"tess",1,1,95,1,95,NA,NA,"Republican" +1,NA,6843,"tess",2,1,11,1,11,NA,NA,"Republican" +1,NA,6844,"tess",2,1,53,1,53,NA,NA,"Democrat" +1,NA,6853,"tess",2,0,40,1,60,NA,NA,"Democrat" +1,NA,6864,"tess",3,1,49,1,49,NA,NA,"Republican" +1,NA,6865,"tess",2,1,96,1,96,NA,NA,"Democrat" +1,NA,6866,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,6868,"tess",2,0,52,1,48,NA,NA,"Republican" +1,NA,6869,"tess",4,0,56,1,44,NA,NA,"Democrat" +1,NA,6881,"tess",1,0,97,1,3,NA,NA,"Democrat" +1,NA,6882,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,6883,"tess",1,1,85,1,85,NA,NA,"Democrat" +1,NA,6891,"tess",4,0,51,1,49,NA,NA,"Democrat" +1,NA,6893,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,6897,"tess",3,1,35,1,35,NA,NA,"Democrat" +1,NA,6908,"tess",1,1,89,1,89,NA,NA,"Democrat" +1,NA,6909,"tess",1,1,83,1,83,NA,NA,"Republican" +1,NA,6910,"tess",3,0,99,1,1,NA,NA,"Democrat" +1,NA,6911,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,6912,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,6913,"tess",4,0,68,1,32,NA,NA,"Democrat" +1,NA,6915,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,6920,"tess",3,0,56,1,44,NA,NA,"Republican" +1,NA,6927,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,6930,"tess",2,1,64,1,64,NA,NA,"Republican" +1,NA,6932,"tess",2,1,77,1,77,NA,NA,"Democrat" +1,NA,6935,"tess",2,0,85,1,15,NA,NA,"Democrat" +1,NA,6936,"tess",1,1,75,1,75,NA,NA,"Republican" +1,NA,6938,"tess",2,0,31,1,69,NA,NA,"Democrat" +1,NA,6951,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,6956,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,6963,"tess",2,1,63,1,63,NA,NA,"Democrat" +1,NA,6971,"tess",3,1,99,1,99,NA,NA,"Republican" +1,NA,6984,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,6997,"tess",2,0,0,1,100,NA,NA,"Republican" +1,NA,6998,"tess",2,1,90,1,90,NA,NA,"Republican" +1,NA,7003,"tess",2,0,10,1,90,NA,NA,"Republican" +1,NA,7011,"tess",2,0,30,1,70,NA,NA,"Democrat" +1,NA,7022,"tess",1,1,4,1,4,NA,NA,"Democrat" +1,NA,7023,"tess",1,1,40,1,40,NA,NA,"Democrat" +1,NA,7027,"tess",2,0,92,1,8,NA,NA,"Republican" +1,NA,7031,"tess",4,0,83,1,17,NA,NA,"Republican" +1,NA,7036,"tess",1,0,46,1,54,NA,NA,"Republican" +1,NA,7046,"tess",1,1,60,1,60,NA,NA,"Democrat" +1,NA,7048,"tess",3,0,0,1,100,NA,NA,"Democrat" +1,NA,7049,"tess",4,1,22,1,22,NA,NA,"Democrat" +1,NA,7054,"tess",1,0,98,1,2,NA,NA,"Democrat" +1,NA,7055,"tess",1,1,30,1,30,NA,NA,"Republican" +1,NA,7060,"tess",1,1,10,1,10,NA,NA,"Democrat" +1,NA,7061,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,7066,"tess",2,1,60,1,60,NA,NA,"Democrat" +1,NA,7073,"tess",1,0,1,1,99,NA,NA,"Republican" +1,NA,7078,"tess",4,0,90,1,10,NA,NA,"Republican" +1,NA,7083,"tess",3,1,2,1,2,NA,NA,"Democrat" +1,NA,7087,"tess",1,1,100,1,100,NA,NA,"Democrat" +1,NA,7088,"tess",1,0,82,1,18,NA,NA,"Democrat" +1,NA,7094,"tess",4,1,60,1,60,NA,NA,"Republican" +1,NA,7099,"tess",4,0,93,1,7,NA,NA,"Democrat" +1,NA,7104,"tess",2,0,93,1,7,NA,NA,"Republican" +1,NA,7106,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,7122,"tess",2,1,88,1,88,NA,NA,"Democrat" +1,NA,7124,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,7125,"tess",1,0,76,1,24,NA,NA,"Republican" +1,NA,7127,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,7128,"tess",3,0,41,1,59,NA,NA,"Republican" +1,NA,7133,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,7140,"tess",1,0,71,1,29,NA,NA,"Republican" +1,NA,7148,"tess",2,0,98,1,2,NA,NA,"Democrat" +1,NA,7153,"tess",1,0,95,1,5,NA,NA,"Democrat" +1,NA,7158,"tess",2,1,75,1,75,NA,NA,"Democrat" +1,NA,7161,"tess",2,0,5,1,95,NA,NA,"Democrat" +1,NA,7164,"tess",3,0,2,1,98,NA,NA,"Neither" +1,NA,7166,"tess",2,0,62,1,38,NA,NA,"Neither" +1,NA,7174,"tess",3,0,87,1,13,NA,NA,"Democrat" +1,NA,7182,"tess",4,1,1,1,1,NA,NA,"Democrat" +1,NA,7186,"tess",2,1,86,1,86,NA,NA,"Democrat" +1,NA,7190,"tess",4,0,41,1,59,NA,NA,"Democrat" +1,NA,7197,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,7199,"tess",3,0,99,1,1,NA,NA,"Republican" +1,NA,7201,"tess",4,1,89,1,89,NA,NA,"Democrat" +1,NA,7210,"tess",2,1,3,1,3,NA,NA,"Neither" +1,NA,7216,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,7218,"tess",4,0,76,1,24,NA,NA,"Democrat" +1,NA,7222,"tess",1,1,95,1,95,NA,NA,"Democrat" +1,NA,7223,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,7224,"tess",1,0,100,1,0,NA,NA,"Republican" +1,NA,7225,"tess",3,0,49,1,51,NA,NA,"Democrat" +1,NA,7226,"tess",4,1,56,1,56,NA,NA,"Democrat" +1,NA,7228,"tess",1,0,51,1,49,NA,NA,"Democrat" +1,NA,7230,"tess",4,0,87,1,13,NA,NA,"Republican" +1,NA,7231,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,7235,"tess",2,1,31,1,31,NA,NA,"Democrat" +1,NA,7239,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,7240,"tess",3,1,98,1,98,NA,NA,"Democrat" +1,NA,7241,"tess",1,1,17,1,17,NA,NA,"Neither" +1,NA,7248,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,7252,"tess",4,1,0,1,0,NA,NA,"Republican" +1,NA,7253,"tess",3,0,27,1,73,NA,NA,"Neither" +1,NA,7266,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,7273,"tess",1,0,90,1,10,NA,NA,"Democrat" +1,NA,7275,"tess",1,0,18,1,82,NA,NA,"Republican" +1,NA,7276,"tess",4,1,92,1,92,NA,NA,"Republican" +1,NA,7280,"tess",4,1,67,1,67,NA,NA,"Neither" +1,NA,7286,"tess",1,1,25,1,25,NA,NA,"Republican" +1,NA,7287,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,7289,"tess",3,0,77,1,23,NA,NA,"Democrat" +1,NA,7297,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,7303,"tess",4,0,44,1,56,NA,NA,"Republican" +1,NA,7307,"tess",4,1,97,1,97,NA,NA,"Democrat" +1,NA,7311,"tess",1,1,95,1,95,NA,NA,"Republican" +1,NA,7315,"tess",1,0,51,1,49,NA,NA,"Neither" +1,NA,7323,"tess",1,0,50,1,50,NA,NA,"Republican" +1,NA,7325,"tess",3,0,90,1,10,NA,NA,"Republican" +1,NA,7330,"tess",3,1,89,1,89,NA,NA,"Democrat" +1,NA,7338,"tess",1,1,1,1,1,NA,NA,"Democrat" +1,NA,7341,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,7353,"tess",4,0,93,1,7,NA,NA,"Democrat" +1,NA,7356,"tess",3,0,58,1,42,NA,NA,"Democrat" +1,NA,7360,"tess",4,1,90,1,90,NA,NA,"Democrat" +1,NA,7368,"tess",3,0,61,1,39,NA,NA,"Democrat" +1,NA,7370,"tess",4,1,33,1,33,NA,NA,"Republican" +1,NA,7373,"tess",3,1,10,1,10,NA,NA,"Democrat" +1,NA,7381,"tess",3,1,51,1,51,NA,NA,"Republican" +1,NA,7388,"tess",4,1,80,1,80,NA,NA,"Democrat" +1,NA,7395,"tess",4,0,90,1,10,NA,NA,"Republican" +1,NA,7397,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,7398,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,7404,"tess",3,0,93,1,7,NA,NA,"Democrat" +1,NA,7407,"tess",1,0,60,1,40,NA,NA,"Republican" +1,NA,7409,"tess",3,0,96,1,4,NA,NA,"Democrat" +1,NA,7412,"tess",4,0,0,1,100,NA,NA,"Republican" +1,NA,7418,"tess",4,0,74,1,26,NA,NA,"Democrat" +1,NA,7425,"tess",3,0,83,1,17,NA,NA,"Democrat" +1,NA,7427,"tess",1,0,97,1,3,NA,NA,"Democrat" +1,NA,7432,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,7437,"tess",2,0,74,1,26,NA,NA,"Democrat" +1,NA,7440,"tess",2,0,97,1,3,NA,NA,"Republican" +1,NA,7441,"tess",3,1,88,1,88,NA,NA,"Democrat" +1,NA,7446,"tess",4,1,89,1,89,NA,NA,"Democrat" +1,NA,7448,"tess",4,0,0,1,100,NA,NA,"Democrat" +1,NA,7450,"tess",1,1,86,1,86,NA,NA,"Democrat" +1,NA,7452,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,7453,"tess",2,0,40,1,60,NA,NA,"Republican" +1,NA,7466,"tess",4,1,30,1,30,NA,NA,"Republican" +1,NA,7470,"tess",3,0,92,1,8,NA,NA,"Republican" +1,NA,7472,"tess",1,0,99,1,1,NA,NA,"Republican" +1,NA,7475,"tess",3,1,18,1,18,NA,NA,"Neither" +1,NA,7477,"tess",2,0,74,1,26,NA,NA,"Republican" +1,NA,7479,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,7486,"tess",2,1,55,1,55,NA,NA,"Democrat" +1,NA,7494,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,7497,"tess",2,0,20,1,80,NA,NA,"Democrat" +1,NA,7498,"tess",4,0,80,1,20,NA,NA,"Republican" +1,NA,7501,"tess",4,0,54,1,46,NA,NA,"Republican" +1,NA,7504,"tess",3,0,61,1,39,NA,NA,"Republican" +1,NA,7506,"tess",1,1,54,1,54,NA,NA,"Democrat" +1,NA,7524,"tess",2,0,79,1,21,NA,NA,"Democrat" +1,NA,7525,"tess",1,0,100,1,0,NA,NA,"Democrat" +1,NA,7528,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,7534,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,7539,"tess",4,1,9,1,9,NA,NA,"Republican" +1,NA,7542,"tess",1,1,83,1,83,NA,NA,"Republican" +1,NA,7543,"tess",1,1,85,1,85,NA,NA,"Republican" +1,NA,7546,"tess",4,1,90,1,90,NA,NA,"Republican" +1,NA,7556,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,7558,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,7563,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,7564,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,7569,"tess",1,1,97,1,97,NA,NA,"Republican" +1,NA,7573,"tess",3,1,5,1,5,NA,NA,"Democrat" +1,NA,7577,"tess",3,1,47,1,47,NA,NA,"Democrat" +1,NA,7580,"tess",1,0,96,1,4,NA,NA,"Republican" +1,NA,7584,"tess",2,1,99,1,99,NA,NA,"Republican" +1,NA,7586,"tess",3,0,11,1,89,NA,NA,"Democrat" +1,NA,7587,"tess",2,0,75,1,25,NA,NA,"Democrat" +1,NA,7588,"tess",2,0,58,1,42,NA,NA,"Republican" +1,NA,7590,"tess",4,1,85,1,85,NA,NA,"Republican" +1,NA,7593,"tess",3,0,51,1,49,NA,NA,"Republican" +1,NA,7594,"tess",1,1,70,1,70,NA,NA,"Democrat" +1,NA,7597,"tess",2,1,60,1,60,NA,NA,"Democrat" +1,NA,7600,"tess",4,1,61,1,61,NA,NA,"Republican" +1,NA,7603,"tess",1,0,15,1,85,NA,NA,"Democrat" +1,NA,7605,"tess",1,0,22,1,78,NA,NA,"Republican" +1,NA,7607,"tess",1,1,50,1,50,NA,NA,"Neither" +1,NA,7608,"tess",1,0,55,1,45,NA,NA,"Republican" +1,NA,7615,"tess",1,1,0,1,0,NA,NA,"Republican" +1,NA,7622,"tess",2,0,98,1,2,NA,NA,"Democrat" +1,NA,7623,"tess",4,0,90,1,10,NA,NA,"Republican" +1,NA,7630,"tess",1,1,97,1,97,NA,NA,"Democrat" +1,NA,7631,"tess",2,0,12,1,88,NA,NA,"Democrat" +1,NA,7634,"tess",4,1,30,1,30,NA,NA,"Republican" +1,NA,7640,"tess",2,0,60,1,40,NA,NA,"Republican" +1,NA,7641,"tess",1,1,50,1,50,NA,NA,"Democrat" +1,NA,7656,"tess",2,1,90,1,90,NA,NA,"Republican" +1,NA,7659,"tess",2,0,95,1,5,NA,NA,"Republican" +1,NA,7662,"tess",3,0,100,1,0,NA,NA,"Democrat" +1,NA,7667,"tess",2,0,60,1,40,NA,NA,"Democrat" +1,NA,7668,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,7688,"tess",1,1,90,1,90,NA,NA,"Democrat" +1,NA,7694,"tess",2,0,10,1,90,NA,NA,"Republican" +1,NA,7696,"tess",2,0,1,1,99,NA,NA,"Democrat" +1,NA,7699,"tess",3,1,0,1,0,NA,NA,"Democrat" +1,NA,7702,"tess",1,0,93,1,7,NA,NA,"Democrat" +1,NA,7711,"tess",1,1,5,1,5,NA,NA,"Republican" +1,NA,7712,"tess",4,1,90,1,90,NA,NA,"Democrat" +1,NA,7717,"tess",2,0,70,1,30,NA,NA,"Democrat" +1,NA,7722,"tess",3,1,10,1,10,NA,NA,"Republican" +1,NA,7739,"tess",4,0,47,1,53,NA,NA,"Republican" +1,NA,7741,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,7747,"tess",3,1,30,1,30,NA,NA,"Democrat" +1,NA,7754,"tess",3,1,29,1,29,NA,NA,"Neither" +1,NA,7759,"tess",2,0,90,1,10,NA,NA,"Democrat" +1,NA,7778,"tess",3,0,95,1,5,NA,NA,"Democrat" +1,NA,7783,"tess",1,1,80,1,80,NA,NA,"Republican" +1,NA,7784,"tess",1,0,40,1,60,NA,NA,"Neither" +1,NA,7786,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,7789,"tess",2,0,41,1,59,NA,NA,"Republican" +1,NA,7792,"tess",2,1,81,1,81,NA,NA,"Neither" +1,NA,7793,"tess",3,1,91,1,91,NA,NA,"Republican" +1,NA,7799,"tess",1,0,30,1,70,NA,NA,"Democrat" +1,NA,7819,"tess",3,1,56,1,56,NA,NA,"Democrat" +1,NA,7820,"tess",2,0,2,1,98,NA,NA,"Republican" +1,NA,7822,"tess",1,0,70,1,30,NA,NA,"Democrat" +1,NA,7826,"tess",4,1,91,1,91,NA,NA,"Republican" +1,NA,7837,"tess",1,0,0,1,100,NA,NA,"Democrat" +1,NA,7844,"tess",3,1,84,1,84,NA,NA,"Republican" +1,NA,7854,"tess",4,0,49,1,51,NA,NA,"Democrat" +1,NA,7856,"tess",1,0,59,1,41,NA,NA,"Republican" +1,NA,7861,"tess",4,1,82,1,82,NA,NA,"Republican" +1,NA,7864,"tess",3,1,56,1,56,NA,NA,"Republican" +1,NA,7872,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,7880,"tess",4,0,97,1,3,NA,NA,"Democrat" +1,NA,7884,"tess",2,1,20,1,20,NA,NA,"Democrat" +1,NA,7891,"tess",4,0,100,1,0,NA,NA,"Republican" +1,NA,7906,"tess",3,1,90,1,90,NA,NA,"Republican" +1,NA,7908,"tess",1,0,99,1,1,NA,NA,"Republican" +1,NA,7910,"tess",3,1,92,1,92,NA,NA,"Democrat" +1,NA,7918,"tess",1,0,75,1,25,NA,NA,"Democrat" +1,NA,7922,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,7930,"tess",2,0,4,1,96,NA,NA,"Republican" +1,NA,7936,"tess",4,0,24,1,76,NA,NA,"Democrat" +1,NA,7942,"tess",1,1,60,1,60,NA,NA,"Republican" +1,NA,7946,"tess",3,0,49,1,51,NA,NA,"Democrat" +1,NA,7951,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,7957,"tess",4,1,98,1,98,NA,NA,"Democrat" +1,NA,7959,"tess",1,0,1,1,99,NA,NA,"Democrat" +1,NA,7960,"tess",3,1,37,1,37,NA,NA,"Democrat" +1,NA,7965,"tess",4,0,65,1,35,NA,NA,"Democrat" +1,NA,7967,"tess",3,0,62,1,38,NA,NA,"Democrat" +1,NA,7968,"tess",1,1,75,1,75,NA,NA,"Democrat" +1,NA,7973,"tess",3,0,98,1,2,NA,NA,"Republican" +1,NA,7982,"tess",3,0,75,1,25,NA,NA,"Democrat" +1,NA,7983,"tess",1,0,8,1,92,NA,NA,"Democrat" +1,NA,7987,"tess",4,0,64,1,36,NA,NA,"Democrat" +1,NA,7988,"tess",3,1,77,1,77,NA,NA,"Democrat" +1,NA,7991,"tess",3,1,49,1,49,NA,NA,"Republican" +1,NA,7995,"tess",4,0,35,1,65,NA,NA,"Republican" +1,NA,7998,"tess",3,0,65,1,35,NA,NA,"Democrat" +1,NA,8000,"tess",1,1,60,1,60,NA,NA,"Democrat" +1,NA,8001,"tess",3,0,49,1,51,NA,NA,"Republican" +1,NA,8010,"tess",3,1,60,1,60,NA,NA,"Republican" +1,NA,8011,"tess",4,0,81,1,19,NA,NA,"Republican" +1,NA,8019,"tess",1,0,91,1,9,NA,NA,"Republican" +1,NA,8023,"tess",4,0,16,1,84,NA,NA,"Democrat" +1,NA,8041,"tess",2,0,61,1,39,NA,NA,"Republican" +1,NA,8042,"tess",3,0,55,1,45,NA,NA,"Republican" +1,NA,8049,"tess",4,0,80,1,20,NA,NA,"Republican" +1,NA,8050,"tess",3,0,90,1,10,NA,NA,"Neither" +1,NA,8055,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,8061,"tess",4,1,51,1,51,NA,NA,"Republican" +1,NA,8062,"tess",4,0,80,1,20,NA,NA,"Democrat" +1,NA,8063,"tess",4,1,72,1,72,NA,NA,"Republican" +1,NA,8064,"tess",3,0,3,1,97,NA,NA,"Democrat" +1,NA,8065,"tess",2,1,28,1,28,NA,NA,"Democrat" +1,NA,8069,"tess",4,0,68,1,32,NA,NA,"Democrat" +1,NA,8078,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,8079,"tess",1,0,100,1,0,NA,NA,"Democrat" +1,NA,8081,"tess",3,1,94,1,94,NA,NA,"Democrat" +1,NA,8095,"tess",3,1,100,1,100,NA,NA,"Democrat" +1,NA,8096,"tess",4,1,99,1,99,NA,NA,"Republican" +1,NA,8097,"tess",2,0,70,1,30,NA,NA,"Republican" +1,NA,8101,"tess",1,1,83,1,83,NA,NA,"Republican" +1,NA,8104,"tess",4,0,82,1,18,NA,NA,"Republican" +1,NA,8110,"tess",1,1,46,1,46,NA,NA,"Democrat" +1,NA,8112,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,8116,"tess",1,0,82,1,18,NA,NA,"Democrat" +1,NA,8127,"tess",1,1,25,1,25,NA,NA,"Republican" +1,NA,8134,"tess",1,1,93,1,93,NA,NA,"Democrat" +1,NA,8141,"tess",2,0,0,1,100,NA,NA,"Democrat" +1,NA,8142,"tess",2,1,90,1,90,NA,NA,"Democrat" +1,NA,8146,"tess",2,0,100,1,0,NA,NA,"Republican" +1,NA,8152,"tess",2,0,35,1,65,NA,NA,"Democrat" +1,NA,8159,"tess",3,1,14,1,14,NA,NA,"Neither" +1,NA,8160,"tess",1,0,95,1,5,NA,NA,"Democrat" +1,NA,8170,"tess",1,0,10,1,90,NA,NA,"Democrat" +1,NA,8176,"tess",1,1,95,1,95,NA,NA,"Democrat" +1,NA,8181,"tess",3,0,90,1,10,NA,NA,"Republican" +1,NA,8190,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,8191,"tess",2,1,75,1,75,NA,NA,"Democrat" +1,NA,8196,"tess",3,0,89,1,11,NA,NA,"Democrat" +1,NA,8197,"tess",3,0,91,1,9,NA,NA,"Republican" +1,NA,8199,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,8201,"tess",1,0,70,1,30,NA,NA,"Democrat" +1,NA,8202,"tess",1,1,26,1,26,NA,NA,"Republican" +1,NA,8203,"tess",1,0,80,1,20,NA,NA,"Republican" +1,NA,8207,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,8218,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,8221,"tess",1,0,80,1,20,NA,NA,"Democrat" +1,NA,8224,"tess",1,0,90,1,10,NA,NA,"Republican" +1,NA,8228,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,8232,"tess",4,0,79,1,21,NA,NA,"Democrat" +1,NA,8244,"tess",3,0,1,1,99,NA,NA,"Republican" +1,NA,8247,"tess",2,1,90,1,90,NA,NA,"Republican" +1,NA,8249,"tess",2,0,50,1,50,NA,NA,"Democrat" +1,NA,8250,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,8252,"tess",1,0,75,1,25,NA,NA,"Democrat" +1,NA,8253,"tess",3,0,31,1,69,NA,NA,"Democrat" +1,NA,8260,"tess",1,1,83,1,83,NA,NA,"Neither" +1,NA,8265,"tess",3,1,51,1,51,NA,NA,"Republican" +1,NA,8267,"tess",3,1,80,1,80,NA,NA,"Republican" +1,NA,8272,"tess",2,1,85,1,85,NA,NA,"Democrat" +1,NA,8274,"tess",3,1,99,1,99,NA,NA,"Republican" +1,NA,8276,"tess",1,0,81,1,19,NA,NA,"Republican" +1,NA,8280,"tess",3,0,59,1,41,NA,NA,"Democrat" +1,NA,8285,"tess",2,1,99,1,99,NA,NA,"Democrat" +1,NA,8287,"tess",1,1,85,1,85,NA,NA,"Democrat" +1,NA,8308,"tess",2,0,99,1,1,NA,NA,"Democrat" +1,NA,8317,"tess",2,1,0,1,0,NA,NA,"Republican" +1,NA,8324,"tess",3,1,94,1,94,NA,NA,"Republican" +1,NA,8327,"tess",4,1,77,1,77,NA,NA,"Democrat" +1,NA,8331,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,8333,"tess",4,0,84,1,16,NA,NA,"Democrat" +1,NA,8335,"tess",3,1,95,1,95,NA,NA,"Republican" +1,NA,8337,"tess",3,0,5,1,95,NA,NA,"Republican" +1,NA,8344,"tess",4,0,76,1,24,NA,NA,"Democrat" +1,NA,8345,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,8347,"tess",4,1,42,1,42,NA,NA,"Republican" +1,NA,8356,"tess",2,0,100,1,0,NA,NA,"Neither" +1,NA,8360,"tess",2,0,55,1,45,NA,NA,"Democrat" +1,NA,8361,"tess",2,0,40,1,60,NA,NA,"Republican" +1,NA,8371,"tess",3,1,91,1,91,NA,NA,"Republican" +1,NA,8374,"tess",4,1,99,1,99,NA,NA,"Republican" +1,NA,8378,"tess",3,0,100,1,0,NA,NA,"Republican" +1,NA,8386,"tess",1,0,62,1,38,NA,NA,"Republican" +1,NA,8397,"tess",4,1,70,1,70,NA,NA,"Republican" +1,NA,8400,"tess",2,1,99,1,99,NA,NA,"Democrat" +1,NA,8405,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,8406,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,8425,"tess",4,0,91,1,9,NA,NA,"Democrat" +1,NA,8432,"tess",2,1,80,1,80,NA,NA,"Democrat" +1,NA,8435,"tess",3,1,35,1,35,NA,NA,"Republican" +1,NA,8449,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,8452,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,8455,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,8466,"tess",1,0,79,1,21,NA,NA,"Democrat" +1,NA,8468,"tess",1,0,70,1,30,NA,NA,"Democrat" +1,NA,8476,"tess",3,1,93,1,93,NA,NA,"Democrat" +1,NA,8489,"tess",4,0,99,1,1,NA,NA,"Democrat" +1,NA,8503,"tess",2,1,70,1,70,NA,NA,"Republican" +1,NA,8507,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,8522,"tess",1,0,70,1,30,NA,NA,"Democrat" +1,NA,8541,"tess",2,1,69,1,69,NA,NA,"Republican" +1,NA,8544,"tess",1,1,62,1,62,NA,NA,"Democrat" +1,NA,8545,"tess",3,1,100,1,100,NA,NA,"Republican" +1,NA,8550,"tess",1,0,94,1,6,NA,NA,"Democrat" +1,NA,8552,"tess",1,1,20,1,20,NA,NA,"Democrat" +1,NA,8556,"tess",3,1,57,1,57,NA,NA,"Democrat" +1,NA,8558,"tess",3,1,77,1,77,NA,NA,"Republican" +1,NA,8564,"tess",1,0,19,1,81,NA,NA,"Republican" +1,NA,8568,"tess",4,0,78,1,22,NA,NA,"Democrat" +1,NA,8573,"tess",3,0,51,1,49,NA,NA,"Democrat" +1,NA,8577,"tess",1,0,82,1,18,NA,NA,"Democrat" +1,NA,8579,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,8583,"tess",4,1,4,1,4,NA,NA,"Democrat" +1,NA,8589,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,8590,"tess",4,1,2,1,2,NA,NA,"Republican" +1,NA,8600,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,8607,"tess",4,1,23,1,23,NA,NA,"Republican" +1,NA,8608,"tess",3,1,97,1,97,NA,NA,"Republican" +1,NA,8618,"tess",3,1,75,1,75,NA,NA,"Republican" +1,NA,8619,"tess",2,1,98,1,98,NA,NA,"Republican" +1,NA,8638,"tess",4,1,20,1,20,NA,NA,"Neither" +1,NA,8640,"tess",4,0,90,1,10,NA,NA,"Democrat" +1,NA,8651,"tess",2,1,64,1,64,NA,NA,"Republican" +1,NA,8659,"tess",2,1,44,1,44,NA,NA,"Democrat" +1,NA,8669,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,8680,"tess",4,1,91,1,91,NA,NA,"Republican" +1,NA,8685,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,8686,"tess",2,0,16,1,84,NA,NA,"Republican" +1,NA,8706,"tess",2,0,65,1,35,NA,NA,"Republican" +1,NA,8707,"tess",2,1,98,1,98,NA,NA,"Republican" +1,NA,8709,"tess",1,1,41,1,41,NA,NA,"Republican" +1,NA,8710,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,8713,"tess",1,1,50,1,50,NA,NA,"Republican" +1,NA,8714,"tess",2,1,89,1,89,NA,NA,"Democrat" +1,NA,8717,"tess",2,1,37,1,37,NA,NA,"Republican" +1,NA,8719,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,8724,"tess",3,1,67,1,67,NA,NA,"Democrat" +1,NA,8727,"tess",2,1,59,1,59,NA,NA,"Democrat" +1,NA,8728,"tess",1,1,75,1,75,NA,NA,"Republican" +1,NA,8731,"tess",1,0,99,1,1,NA,NA,"Democrat" +1,NA,8739,"tess",2,0,90,1,10,NA,NA,"Republican" +1,NA,8746,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,8755,"tess",1,0,64,1,36,NA,NA,"Democrat" +1,NA,8763,"tess",4,0,50,1,50,NA,NA,"Republican" +1,NA,8765,"tess",2,1,10,1,10,NA,NA,"Democrat" +1,NA,8768,"tess",1,0,100,1,0,NA,NA,"Democrat" +1,NA,8777,"tess",3,1,20,1,20,NA,NA,"Democrat" +1,NA,8779,"tess",4,1,100,1,100,NA,NA,"Republican" +1,NA,8782,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,8790,"tess",4,0,20,1,80,NA,NA,"Republican" +1,NA,8797,"tess",1,1,40,1,40,NA,NA,"Republican" +1,NA,8806,"tess",3,0,87,1,13,NA,NA,"Neither" +1,NA,8810,"tess",3,1,80,1,80,NA,NA,"Democrat" +1,NA,8814,"tess",4,1,6,1,6,NA,NA,"Democrat" +1,NA,8816,"tess",3,1,50,1,50,NA,NA,"Democrat" +1,NA,8819,"tess",3,1,2,1,2,NA,NA,"Republican" +1,NA,8821,"tess",3,1,99,1,99,NA,NA,"Republican" +1,NA,8826,"tess",3,1,68,1,68,NA,NA,"Republican" +1,NA,8836,"tess",4,1,98,1,98,NA,NA,"Democrat" +1,NA,8837,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,8848,"tess",2,0,100,1,0,NA,NA,"Democrat" +1,NA,8853,"tess",4,0,15,1,85,NA,NA,"Democrat" +1,NA,8866,"tess",4,1,76,1,76,NA,NA,"Democrat" +1,NA,8877,"tess",2,0,50,1,50,NA,NA,"Republican" +1,NA,8881,"tess",1,1,1,1,1,NA,NA,"Democrat" +1,NA,8888,"tess",3,0,60,1,40,NA,NA,"Republican" +1,NA,8890,"tess",1,1,89,1,89,NA,NA,"Republican" +1,NA,8892,"tess",4,1,95,1,95,NA,NA,"Democrat" +1,NA,8893,"tess",2,1,79,1,79,NA,NA,"Democrat" +1,NA,8894,"tess",4,0,89,1,11,NA,NA,"Democrat" +1,NA,8900,"tess",3,1,99,1,99,NA,NA,"Republican" +1,NA,8903,"tess",3,0,95,1,5,NA,NA,"Republican" +1,NA,8925,"tess",2,1,48,1,48,NA,NA,"Democrat" +1,NA,8932,"tess",1,0,100,1,0,NA,NA,"Democrat" +1,NA,8933,"tess",4,0,45,1,55,NA,NA,"Republican" +1,NA,8934,"tess",4,1,66,1,66,NA,NA,"Democrat" +1,NA,8939,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,8941,"tess",2,0,52,1,48,NA,NA,"Neither" +1,NA,8946,"tess",4,0,70,1,30,NA,NA,"Democrat" +1,NA,8953,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,8956,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,8970,"tess",2,0,11,1,89,NA,NA,"Republican" +1,NA,8973,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,8981,"tess",4,1,20,1,20,NA,NA,"Democrat" +1,NA,8983,"tess",2,1,98,1,98,NA,NA,"Democrat" +1,NA,8988,"tess",2,1,70,1,70,NA,NA,"Republican" +1,NA,8990,"tess",4,1,96,1,96,NA,NA,"Republican" +1,NA,8995,"tess",4,1,30,1,30,NA,NA,"Republican" +1,NA,8999,"tess",2,1,81,1,81,NA,NA,"Democrat" +1,NA,9007,"tess",4,0,10,1,90,NA,NA,"Democrat" +1,NA,9018,"tess",4,1,0,1,0,NA,NA,"Democrat" +1,NA,9024,"tess",4,0,97,1,3,NA,NA,"Democrat" +1,NA,9025,"tess",3,0,49,1,51,NA,NA,"Republican" +1,NA,9029,"tess",4,0,90,1,10,NA,NA,"Neither" +1,NA,9034,"tess",3,0,97,1,3,NA,NA,"Republican" +1,NA,9038,"tess",1,0,1,1,99,NA,NA,"Neither" +1,NA,9050,"tess",4,1,91,1,91,NA,NA,"Republican" +1,NA,9057,"tess",2,1,50,1,50,NA,NA,"Republican" +1,NA,9065,"tess",3,0,70,1,30,NA,NA,"Neither" +1,NA,9066,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,9068,"tess",3,1,75,1,75,NA,NA,"Democrat" +1,NA,9070,"tess",3,1,3,1,3,NA,NA,"Democrat" +1,NA,9074,"tess",2,1,10,1,10,NA,NA,"Republican" +1,NA,9075,"tess",4,0,0,1,100,NA,NA,"Democrat" +1,NA,9081,"tess",2,1,70,1,70,NA,NA,"Republican" +1,NA,9083,"tess",3,0,87,1,13,NA,NA,"Neither" +1,NA,9084,"tess",1,0,71,1,29,NA,NA,"Democrat" +1,NA,9101,"tess",1,0,13,1,87,NA,NA,"Democrat" +1,NA,9105,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,9106,"tess",1,0,60,1,40,NA,NA,"Republican" +1,NA,9108,"tess",3,0,70,1,30,NA,NA,"Democrat" +1,NA,9109,"tess",1,0,97,1,3,NA,NA,"Democrat" +1,NA,9119,"tess",1,1,31,1,31,NA,NA,"Democrat" +1,NA,9120,"tess",4,0,75,1,25,NA,NA,"Democrat" +1,NA,9135,"tess",4,1,55,1,55,NA,NA,"Democrat" +1,NA,9146,"tess",3,0,50,1,50,NA,NA,"Republican" +1,NA,9148,"tess",3,1,97,1,97,NA,NA,"Republican" +1,NA,9149,"tess",2,0,70,1,30,NA,NA,"Democrat" +1,NA,9150,"tess",4,0,21,1,79,NA,NA,"Republican" +1,NA,9152,"tess",1,1,100,1,100,NA,NA,"Democrat" +1,NA,9153,"tess",4,0,98,1,2,NA,NA,"Democrat" +1,NA,9154,"tess",4,1,100,1,100,NA,NA,"Democrat" +1,NA,9155,"tess",3,1,0,1,0,NA,NA,"Democrat" +1,NA,9166,"tess",3,1,87,1,87,NA,NA,"Republican" +1,NA,9169,"tess",2,0,20,1,80,NA,NA,"Republican" +1,NA,9184,"tess",1,1,100,1,100,NA,NA,"Democrat" +1,NA,9189,"tess",3,0,20,1,80,NA,NA,"Republican" +1,NA,9193,"tess",4,1,20,1,20,NA,NA,"Democrat" +1,NA,9198,"tess",3,0,68,1,32,NA,NA,"Democrat" +1,NA,9199,"tess",4,0,63,1,37,NA,NA,"Republican" +1,NA,9210,"tess",4,0,51,1,49,NA,NA,"Democrat" +1,NA,9211,"tess",2,0,0,1,100,NA,NA,"Republican" +1,NA,9230,"tess",3,1,42,1,42,NA,NA,"Democrat" +1,NA,9235,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,9236,"tess",3,0,99,1,1,NA,NA,"Republican" +1,NA,9239,"tess",4,0,97,1,3,NA,NA,"Democrat" +1,NA,9245,"tess",2,1,90,1,90,NA,NA,"Republican" +1,NA,9247,"tess",1,0,100,1,0,NA,NA,"Democrat" +1,NA,9260,"tess",3,1,20,1,20,NA,NA,"Republican" +1,NA,9267,"tess",2,0,68,1,32,NA,NA,"Democrat" +1,NA,9269,"tess",1,1,75,1,75,NA,NA,"Democrat" +1,NA,9279,"tess",4,1,30,1,30,NA,NA,"Democrat" +1,NA,9281,"tess",4,0,91,1,9,NA,NA,"Republican" +1,NA,9284,"tess",4,0,71,1,29,NA,NA,"Republican" +1,NA,9286,"tess",3,1,93,1,93,NA,NA,"Democrat" +1,NA,9292,"tess",4,1,80,1,80,NA,NA,"Republican" +1,NA,9295,"tess",1,0,90,1,10,NA,NA,"Republican" +1,NA,9297,"tess",4,1,90,1,90,NA,NA,"Republican" +1,NA,9298,"tess",3,0,91,1,9,NA,NA,"Democrat" +1,NA,9301,"tess",2,0,75,1,25,NA,NA,"Democrat" +1,NA,9302,"tess",1,1,80,1,80,NA,NA,"Democrat" +1,NA,9314,"tess",1,1,30,1,30,NA,NA,"Republican" +1,NA,9316,"tess",3,0,51,1,49,NA,NA,"Republican" +1,NA,9319,"tess",4,0,99,1,1,NA,NA,"Democrat" +1,NA,9332,"tess",2,0,70,1,30,NA,NA,"Democrat" +1,NA,9337,"tess",3,1,50,1,50,NA,NA,"Republican" +1,NA,9340,"tess",1,1,99,1,99,NA,NA,"Democrat" +1,NA,9342,"tess",2,0,66,1,34,NA,NA,"Republican" +1,NA,9346,"tess",1,1,25,1,25,NA,NA,"Democrat" +1,NA,9352,"tess",2,0,60,1,40,NA,NA,"Democrat" +1,NA,9360,"tess",1,0,81,1,19,NA,NA,"Republican" +1,NA,9366,"tess",1,1,40,1,40,NA,NA,"Republican" +1,NA,9372,"tess",2,1,81,1,81,NA,NA,"Democrat" +1,NA,9383,"tess",2,0,47,1,53,NA,NA,"Republican" +1,NA,9395,"tess",3,1,98,1,98,NA,NA,"Democrat" +1,NA,9398,"tess",3,0,27,1,73,NA,NA,"Republican" +1,NA,9412,"tess",3,0,99,1,1,NA,NA,"Republican" +1,NA,9419,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,9420,"tess",2,0,100,1,0,NA,NA,"Democrat" +1,NA,9422,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,9424,"tess",2,0,79,1,21,NA,NA,"Democrat" +1,NA,9425,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,9431,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,9435,"tess",2,1,36,1,36,NA,NA,"Democrat" +1,NA,9440,"tess",3,0,10,1,90,NA,NA,"Republican" +1,NA,9443,"tess",3,0,1,1,99,NA,NA,"Democrat" +1,NA,9458,"tess",2,1,90,1,90,NA,NA,"Republican" +1,NA,9465,"tess",4,0,20,1,80,NA,NA,"Republican" +1,NA,9471,"tess",3,0,20,1,80,NA,NA,"Democrat" +1,NA,9475,"tess",3,1,80,1,80,NA,NA,"Republican" +1,NA,9479,"tess",3,0,50,1,50,NA,NA,"Democrat" +1,NA,9490,"tess",4,1,50,1,50,NA,NA,"Republican" +1,NA,9493,"tess",4,1,94,1,94,NA,NA,"Democrat" +1,NA,9499,"tess",3,0,54,1,46,NA,NA,"Democrat" +1,NA,9500,"tess",3,1,16,1,16,NA,NA,"Republican" +1,NA,9510,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,9512,"tess",1,1,98,1,98,NA,NA,"Democrat" +1,NA,9514,"tess",2,1,92,1,92,NA,NA,"Republican" +1,NA,9517,"tess",1,0,0,1,100,NA,NA,"Neither" +1,NA,9532,"tess",2,1,90,1,90,NA,NA,"Republican" +1,NA,9534,"tess",1,0,3,1,97,NA,NA,"Democrat" +1,NA,9536,"tess",3,1,17,1,17,NA,NA,"Democrat" +1,NA,9538,"tess",1,1,61,1,61,NA,NA,"Republican" +1,NA,9551,"tess",4,0,100,1,0,NA,NA,"Democrat" +1,NA,9563,"tess",1,1,91,1,91,NA,NA,"Republican" +1,NA,9570,"tess",2,1,77,1,77,NA,NA,"Democrat" +1,NA,9572,"tess",1,0,70,1,30,NA,NA,"Republican" +1,NA,9578,"tess",3,0,10,1,90,NA,NA,"Republican" +1,NA,9585,"tess",2,0,21,1,79,NA,NA,"Democrat" +1,NA,9590,"tess",1,0,85,1,15,NA,NA,"Republican" +1,NA,9601,"tess",4,0,80,1,20,NA,NA,"Republican" +1,NA,9603,"tess",4,0,59,1,41,NA,NA,"Democrat" +1,NA,9608,"tess",4,1,99,1,99,NA,NA,"Democrat" +1,NA,9626,"tess",4,0,75,1,25,NA,NA,"Democrat" +1,NA,9627,"tess",1,0,89,1,11,NA,NA,"Democrat" +1,NA,9631,"tess",2,0,90,1,10,NA,NA,"Democrat" +1,NA,9635,"tess",2,1,30,1,30,NA,NA,"Democrat" +1,NA,9642,"tess",2,1,51,1,51,NA,NA,"Republican" +1,NA,9645,"tess",2,1,47,1,47,NA,NA,"Democrat" +1,NA,9647,"tess",3,0,92,1,8,NA,NA,"Republican" +1,NA,9648,"tess",1,0,96,1,4,NA,NA,"Democrat" +1,NA,9649,"tess",3,1,92,1,92,NA,NA,"Democrat" +1,NA,9650,"tess",1,1,52,1,52,NA,NA,"Republican" +1,NA,9663,"tess",4,0,84,1,16,NA,NA,"Democrat" +1,NA,9664,"tess",2,1,52,1,52,NA,NA,"Republican" +1,NA,9666,"tess",1,1,76,1,76,NA,NA,"Republican" +1,NA,9671,"tess",4,1,50,1,50,NA,NA,"Democrat" +1,NA,9676,"tess",4,0,55,1,45,NA,NA,"Democrat" +1,NA,9679,"tess",1,1,98,1,98,NA,NA,"Republican" +1,NA,9681,"tess",2,1,50,1,50,NA,NA,"Democrat" +1,NA,9684,"tess",2,1,91,1,91,NA,NA,"Democrat" +1,NA,9685,"tess",2,1,90,1,90,NA,NA,"Republican" +1,NA,9686,"tess",1,0,68,1,32,NA,NA,"Democrat" +1,NA,9689,"tess",4,0,50,1,50,NA,NA,"Democrat" +1,NA,9692,"tess",4,0,66,1,34,NA,NA,"Democrat" +1,NA,9693,"tess",1,0,74,1,26,NA,NA,"Neither" +1,NA,9701,"tess",4,1,21,1,21,NA,NA,"Democrat" +1,NA,9703,"tess",1,0,50,1,50,NA,NA,"Democrat" +1,NA,9711,"tess",3,0,30,1,70,NA,NA,"Neither" +1,NA,9716,"tess",2,1,66,1,66,NA,NA,"Democrat" +1,NA,9717,"tess",2,0,95,1,5,NA,NA,"Neither" +1,NA,9729,"tess",1,1,100,1,100,NA,NA,"Republican" +1,NA,9731,"tess",4,0,91,1,9,NA,NA,"Democrat" +1,NA,9741,"tess",1,0,0,1,100,NA,NA,"Republican" +1,NA,9743,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,9744,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,9747,"turk",3,0,80,1,20,NA,NA,"Neither" +1,NA,9752,"turk",5,0,30,1,70,NA,NA,"Democrat" +1,NA,9752,"turk",5,0,50,2,50,70,NA,"Democrat" +1,NA,9752,"turk",5,0,40,3,60,50,NA,"Democrat" +1,NA,9752,"turk",5,0,60,4,40,60,NA,"Democrat" +1,NA,9752,"turk",5,0,30,5,70,40,NA,"Democrat" +1,NA,9756,"turk",5,0,1,1,99,NA,NA,"Democrat" +1,NA,9756,"turk",5,0,1,2,99,99,NA,"Democrat" +1,NA,9756,"turk",5,0,1,3,99,99,NA,"Democrat" +1,NA,9756,"turk",5,0,1,4,99,99,NA,"Democrat" +1,NA,9756,"turk",5,0,1,5,99,99,NA,"Democrat" +1,NA,9761,"turk",5,0,67,1,33,NA,NA,"Democrat" +1,NA,9761,"turk",5,0,80,2,20,33,NA,"Democrat" +1,NA,9761,"turk",5,0,60,3,40,20,NA,"Democrat" +1,NA,9761,"turk",5,0,60,4,40,40,NA,"Democrat" +1,NA,9761,"turk",5,0,60,5,40,40,NA,"Democrat" +1,NA,9762,"turk",3,0,80,1,20,NA,NA,"Neither" +1,NA,9763,"turk",2,0,95,1,5,NA,NA,"Neither" +1,NA,9764,"turk",3,0,70,1,30,NA,NA,"Democrat" +1,NA,9766,"turk",4,0,50,1,50,NA,NA,"Democrat" +1,NA,9767,"turk",4,0,15,1,85,NA,NA,"Neither" +1,NA,9769,"turk",2,0,80,1,20,NA,NA,"Democrat" +1,NA,9772,"turk",2,0,40,1,60,NA,NA,"Democrat" +1,NA,9773,"turk",1,0,1,1,99,NA,NA,"Democrat" +1,NA,9773,"turk",1,0,1,2,99,99,NA,"Democrat" +1,NA,9773,"turk",1,0,1,3,99,99,NA,"Democrat" +1,NA,9773,"turk",1,0,1,4,99,99,NA,"Democrat" +1,NA,9773,"turk",1,0,1,5,99,99,NA,"Democrat" +1,NA,9775,"turk",2,0,15,1,85,NA,NA,"Neither" +1,NA,9777,"turk",4,0,20,1,80,NA,NA,"Democrat" +1,NA,9780,"turk",2,0,0,1,100,NA,NA,"Republican" +1,NA,9781,"turk",3,0,50,1,50,NA,NA,"Neither" +1,NA,9785,"turk",4,0,90,1,10,NA,NA,"Democrat" +1,NA,9786,"turk",4,0,40,1,60,NA,NA,"Democrat" +1,NA,9787,"turk",2,0,1,1,99,NA,NA,"Democrat" +1,NA,9791,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,9792,"turk",4,0,55,1,45,NA,NA,"Republican" +1,NA,9795,"turk",3,0,90,1,10,NA,NA,"Republican" +1,NA,9798,"turk",2,0,65,1,35,NA,NA,"Democrat" +1,NA,9802,"turk",2,0,0,1,100,NA,NA,"Democrat" +1,NA,9803,"turk",2,0,1,1,99,NA,NA,"Democrat" +1,NA,9807,"turk",2,0,50,1,50,NA,NA,"Republican" +1,NA,9808,"turk",3,0,20,1,80,NA,NA,"Neither" +1,NA,9809,"turk",5,0,40,1,60,NA,NA,"Neither" +1,NA,9809,"turk",5,0,20,2,80,60,NA,"Neither" +1,NA,9809,"turk",5,0,15,3,85,80,NA,"Neither" +1,NA,9809,"turk",5,0,10,4,90,85,NA,"Neither" +1,NA,9809,"turk",5,0,5,5,95,90,NA,"Neither" +1,NA,9810,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,9815,"turk",3,0,60,1,40,NA,NA,"Democrat" +1,NA,9817,"turk",2,0,99,1,1,NA,NA,"Republican" +1,NA,9820,"turk",1,0,99,1,1,NA,NA,"Republican" +1,NA,9820,"turk",1,0,1,2,99,1,NA,"Republican" +1,NA,9820,"turk",1,0,50,3,50,99,NA,"Republican" +1,NA,9820,"turk",1,0,1,4,99,50,NA,"Republican" +1,NA,9820,"turk",1,0,99,5,1,99,NA,"Republican" +1,NA,9821,"turk",3,0,80,1,20,NA,NA,"Democrat" +1,NA,9823,"turk",4,0,60,1,40,NA,NA,"Neither" +1,NA,9826,"turk",4,0,85,1,15,NA,NA,"Republican" +1,NA,9827,"turk",4,0,50,1,50,NA,NA,"Republican" +1,NA,9833,"turk",1,0,75,1,25,NA,NA,"Democrat" +1,NA,9833,"turk",1,0,88,2,12,25,NA,"Democrat" +1,NA,9833,"turk",1,0,70,3,30,12,NA,"Democrat" +1,NA,9833,"turk",1,0,62,4,38,30,NA,"Democrat" +1,NA,9833,"turk",1,0,62,5,38,38,NA,"Democrat" +1,NA,9835,"turk",5,0,99,1,1,NA,NA,"Democrat" +1,NA,9835,"turk",5,0,99,2,1,1,NA,"Democrat" +1,NA,9835,"turk",5,0,99,3,1,1,NA,"Democrat" +1,NA,9835,"turk",5,0,99,4,1,1,NA,"Democrat" +1,NA,9835,"turk",5,0,99,5,1,1,NA,"Democrat" +1,NA,9836,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,9837,"turk",5,0,1,1,99,NA,NA,"Republican" +1,NA,9837,"turk",5,0,1,2,99,99,NA,"Republican" +1,NA,9837,"turk",5,0,1,3,99,99,NA,"Republican" +1,NA,9837,"turk",5,0,1,4,99,99,NA,"Republican" +1,NA,9837,"turk",5,0,1,5,99,99,NA,"Republican" +1,NA,9839,"turk",4,0,1,1,99,NA,NA,"Democrat" +1,NA,9842,"turk",3,0,20,1,80,NA,NA,"Democrat" +1,NA,9843,"turk",2,0,99,1,1,NA,NA,"Neither" +1,NA,9844,"turk",5,0,50,1,50,NA,NA,"Democrat" +1,NA,9844,"turk",5,0,50,2,50,50,NA,"Democrat" +1,NA,9844,"turk",5,0,50,3,50,50,NA,"Democrat" +1,NA,9844,"turk",5,0,50,4,50,50,NA,"Democrat" +1,NA,9844,"turk",5,0,50,5,50,50,NA,"Democrat" +1,NA,9847,"turk",4,0,99,1,1,NA,NA,"Republican" +1,NA,9849,"turk",2,0,50,1,50,NA,NA,"Republican" +1,NA,9851,"turk",1,0,1,1,99,NA,NA,"Democrat" +1,NA,9851,"turk",1,0,1,2,99,99,NA,"Democrat" +1,NA,9851,"turk",1,0,1,3,99,99,NA,"Democrat" +1,NA,9851,"turk",1,0,99,4,1,99,NA,"Democrat" +1,NA,9851,"turk",1,0,1,5,99,1,NA,"Democrat" +1,NA,9852,"turk",2,0,75,1,25,NA,NA,"Democrat" +1,NA,9855,"turk",2,0,1,1,99,NA,NA,"Neither" +1,NA,9857,"turk",1,0,99,1,1,NA,NA,"Democrat" +1,NA,9857,"turk",1,0,1,2,99,1,NA,"Democrat" +1,NA,9857,"turk",1,0,1,3,99,99,NA,"Democrat" +1,NA,9857,"turk",1,0,1,4,99,99,NA,"Democrat" +1,NA,9857,"turk",1,0,99,5,1,99,NA,"Democrat" +1,NA,9858,"turk",5,0,99,1,1,NA,NA,"Republican" +1,NA,9858,"turk",5,0,99,2,1,1,NA,"Republican" +1,NA,9858,"turk",5,0,99,3,1,1,NA,"Republican" +1,NA,9858,"turk",5,0,0,4,100,1,NA,"Republican" +1,NA,9858,"turk",5,0,0,5,100,100,NA,"Republican" +1,NA,9861,"turk",2,0,1,1,99,NA,NA,"Neither" +1,NA,9866,"turk",1,0,50,1,50,NA,NA,"Republican" +1,NA,9866,"turk",1,0,10,2,90,50,NA,"Republican" +1,NA,9866,"turk",1,0,10,3,90,90,NA,"Republican" +1,NA,9866,"turk",1,0,10,4,90,90,NA,"Republican" +1,NA,9866,"turk",1,0,10,5,90,90,NA,"Republican" +1,NA,9867,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,9870,"turk",3,0,75,1,25,NA,NA,"Democrat" +1,NA,9872,"turk",3,0,50,1,50,NA,NA,"Republican" +1,NA,9874,"turk",2,0,50,1,50,NA,NA,"Democrat" +1,NA,9875,"turk",4,0,50,1,50,NA,NA,"Democrat" +1,NA,9878,"turk",4,0,50,1,50,NA,NA,"Republican" +1,NA,9881,"turk",3,0,3,1,97,NA,NA,"Democrat" +1,NA,9884,"turk",4,0,50,1,50,NA,NA,"Republican" +1,NA,9885,"turk",4,0,85,1,15,NA,NA,"Democrat" +1,NA,9887,"turk",4,0,1,1,99,NA,NA,"Republican" +1,NA,9889,"turk",2,0,20,1,80,NA,NA,"Neither" +1,NA,9891,"turk",3,0,95,1,5,NA,NA,"Democrat" +1,NA,9892,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,9896,"turk",3,0,70,1,30,NA,NA,"Neither" +1,NA,9897,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,9899,"turk",1,0,75,1,25,NA,NA,"Democrat" +1,NA,9899,"turk",1,0,80,2,20,25,NA,"Democrat" +1,NA,9899,"turk",1,0,80,3,20,20,NA,"Democrat" +1,NA,9899,"turk",1,0,80,4,20,20,NA,"Democrat" +1,NA,9899,"turk",1,0,75,5,25,20,NA,"Democrat" +1,NA,9900,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,9902,"turk",4,0,80,1,20,NA,NA,"Democrat" +1,NA,9905,"turk",3,0,1,1,99,NA,NA,"Republican" +1,NA,9906,"turk",1,0,1,1,99,NA,NA,"Democrat" +1,NA,9906,"turk",1,0,65,2,35,99,NA,"Democrat" +1,NA,9906,"turk",1,0,1,3,99,35,NA,"Democrat" +1,NA,9906,"turk",1,0,1,4,99,99,NA,"Democrat" +1,NA,9906,"turk",1,0,1,5,99,99,NA,"Democrat" +1,NA,9910,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,9913,"turk",1,0,99,1,1,NA,NA,"Neither" +1,NA,9913,"turk",1,0,99,2,1,1,NA,"Neither" +1,NA,9913,"turk",1,0,99,3,1,1,NA,"Neither" +1,NA,9913,"turk",1,0,50,4,50,1,NA,"Neither" +1,NA,9913,"turk",1,0,1,5,99,50,NA,"Neither" +1,NA,9914,"turk",3,0,1,1,99,NA,NA,"Republican" +1,NA,9916,"turk",1,0,80,1,20,NA,NA,"Republican" +1,NA,9916,"turk",1,0,80,2,20,20,NA,"Republican" +1,NA,9916,"turk",1,0,80,3,20,20,NA,"Republican" +1,NA,9916,"turk",1,0,80,4,20,20,NA,"Republican" +1,NA,9916,"turk",1,0,80,5,20,20,NA,"Republican" +1,NA,9917,"turk",3,0,40,1,60,NA,NA,"Neither" +1,NA,9918,"turk",2,0,75,1,25,NA,NA,"Democrat" +1,NA,9920,"turk",3,0,99,1,1,NA,NA,"Republican" +1,NA,9921,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,9922,"turk",4,0,50,1,50,NA,NA,"Democrat" +1,NA,9923,"turk",4,0,99,1,1,NA,NA,"Neither" +1,NA,9925,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,9927,"turk",3,0,100,1,0,NA,NA,"Republican" +1,NA,9928,"turk",2,0,50,1,50,NA,NA,"Democrat" +1,NA,9931,"turk",2,0,99,1,1,NA,NA,"Neither" +1,NA,9933,"turk",5,0,10,1,90,NA,NA,"Republican" +1,NA,9933,"turk",5,0,10,2,90,90,NA,"Republican" +1,NA,9933,"turk",5,0,10,3,90,90,NA,"Republican" +1,NA,9933,"turk",5,0,5,4,95,90,NA,"Republican" +1,NA,9933,"turk",5,0,1,5,99,95,NA,"Republican" +1,NA,9935,"turk",4,0,50,1,50,NA,NA,"Neither" +1,NA,9937,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,9938,"turk",2,0,75,1,25,NA,NA,"Democrat" +1,NA,9939,"turk",2,0,1,1,99,NA,NA,"Republican" +1,NA,9940,"turk",2,0,75,1,25,NA,NA,"Democrat" +1,NA,9941,"turk",2,0,50,1,50,NA,NA,"Republican" +1,NA,9942,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,9946,"turk",3,0,80,1,20,NA,NA,"Democrat" +1,NA,9947,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,9948,"turk",2,0,0,1,100,NA,NA,"Republican" +1,NA,9953,"turk",4,0,90,1,10,NA,NA,"Neither" +1,NA,9956,"turk",4,0,90,1,10,NA,NA,"Democrat" +1,NA,9958,"turk",4,0,70,1,30,NA,NA,"Republican" +1,NA,9960,"turk",2,0,1,1,99,NA,NA,"Democrat" +1,NA,9964,"turk",3,0,80,1,20,NA,NA,"Democrat" +1,NA,9965,"turk",4,0,50,1,50,NA,NA,"Democrat" +1,NA,9966,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,9967,"turk",2,0,1,1,99,NA,NA,"Neither" +1,NA,9968,"turk",4,0,0,1,100,NA,NA,"Democrat" +1,NA,9970,"turk",2,0,100,1,0,NA,NA,"Republican" +1,NA,9971,"turk",3,0,70,1,30,NA,NA,"Democrat" +1,NA,9975,"turk",5,0,2,1,98,NA,NA,"Democrat" +1,NA,9975,"turk",5,0,2,2,98,98,NA,"Democrat" +1,NA,9975,"turk",5,0,2,3,98,98,NA,"Democrat" +1,NA,9975,"turk",5,0,0,4,100,98,NA,"Democrat" +1,NA,9975,"turk",5,0,2,5,98,100,NA,"Democrat" +1,NA,9976,"turk",2,0,75,1,25,NA,NA,"Republican" +1,NA,9978,"turk",5,0,1,1,99,NA,NA,"Republican" +1,NA,9978,"turk",5,0,1,2,99,99,NA,"Republican" +1,NA,9978,"turk",5,0,1,3,99,99,NA,"Republican" +1,NA,9978,"turk",5,0,1,4,99,99,NA,"Republican" +1,NA,9978,"turk",5,0,1,5,99,99,NA,"Republican" +1,NA,9982,"turk",3,0,50,1,50,NA,NA,"Republican" +1,NA,9983,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,9986,"turk",3,0,70,1,30,NA,NA,"Democrat" +1,NA,9987,"turk",1,0,80,1,20,NA,NA,"Democrat" +1,NA,9987,"turk",1,0,85,2,15,20,NA,"Democrat" +1,NA,9987,"turk",1,0,85,3,15,15,NA,"Democrat" +1,NA,9987,"turk",1,0,80,4,20,15,NA,"Democrat" +1,NA,9987,"turk",1,0,85,5,15,20,NA,"Democrat" +1,NA,9988,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,9990,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,9991,"turk",2,0,20,1,80,NA,NA,"Neither" +1,NA,9999,"turk",2,0,50,1,50,NA,NA,"Democrat" +1,NA,10001,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10002,"turk",3,0,20,1,80,NA,NA,"Democrat" +1,NA,10007,"turk",3,0,80,1,20,NA,NA,"Republican" +1,NA,10013,"turk",5,0,50,1,50,NA,NA,"Democrat" +1,NA,10013,"turk",5,0,99,2,1,50,NA,"Democrat" +1,NA,10013,"turk",5,0,99,3,1,1,NA,"Democrat" +1,NA,10013,"turk",5,0,99,4,1,1,NA,"Democrat" +1,NA,10013,"turk",5,0,99,5,1,1,NA,"Democrat" +1,NA,10014,"turk",1,0,75,1,25,NA,NA,"Republican" +1,NA,10014,"turk",1,0,20,2,80,25,NA,"Republican" +1,NA,10014,"turk",1,0,50,3,50,80,NA,"Republican" +1,NA,10014,"turk",1,0,20,4,80,50,NA,"Republican" +1,NA,10014,"turk",1,0,1,5,99,80,NA,"Republican" +1,NA,10017,"turk",3,0,2,1,98,NA,NA,"Democrat" +1,NA,10018,"turk",4,0,0,1,100,NA,NA,"Republican" +1,NA,10020,"turk",3,0,55,1,45,NA,NA,"Democrat" +1,NA,10024,"turk",2,0,80,1,20,NA,NA,"Republican" +1,NA,10028,"turk",4,0,90,1,10,NA,NA,"Republican" +1,NA,10030,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10031,"turk",1,0,90,1,10,NA,NA,"Neither" +1,NA,10031,"turk",1,0,20,2,80,10,NA,"Neither" +1,NA,10031,"turk",1,0,1,3,99,80,NA,"Neither" +1,NA,10031,"turk",1,0,1,4,99,99,NA,"Neither" +1,NA,10031,"turk",1,0,1,5,99,99,NA,"Neither" +1,NA,10032,"turk",4,0,1,1,99,NA,NA,"Democrat" +1,NA,10033,"turk",2,0,0,1,100,NA,NA,"Neither" +1,NA,10036,"turk",3,0,60,1,40,NA,NA,"Republican" +1,NA,10037,"turk",2,0,60,1,40,NA,NA,"Democrat" +1,NA,10038,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,10039,"turk",1,0,5,1,95,NA,NA,"Democrat" +1,NA,10039,"turk",1,0,1,2,99,95,NA,"Democrat" +1,NA,10039,"turk",1,0,1,3,99,99,NA,"Democrat" +1,NA,10039,"turk",1,0,1,4,99,99,NA,"Democrat" +1,NA,10039,"turk",1,0,1,5,99,99,NA,"Democrat" +1,NA,10041,"turk",4,0,99,1,1,NA,NA,"Republican" +1,NA,10042,"turk",4,0,30,1,70,NA,NA,"Democrat" +1,NA,10043,"turk",4,0,65,1,35,NA,NA,"Democrat" +1,NA,10044,"turk",2,0,70,1,30,NA,NA,"Republican" +1,NA,10047,"turk",2,0,70,1,30,NA,NA,"Democrat" +1,NA,10049,"turk",2,0,0,1,100,NA,NA,"Democrat" +1,NA,10051,"turk",1,0,76,1,24,NA,NA,"Democrat" +1,NA,10051,"turk",1,0,76,2,24,24,NA,"Democrat" +1,NA,10051,"turk",1,0,67,3,33,24,NA,"Democrat" +1,NA,10051,"turk",1,0,76,4,24,33,NA,"Democrat" +1,NA,10051,"turk",1,0,76,5,24,24,NA,"Democrat" +1,NA,10052,"turk",4,0,1,1,99,NA,NA,"Democrat" +1,NA,10055,"turk",1,0,85,1,15,NA,NA,"Republican" +1,NA,10055,"turk",1,0,90,2,10,15,NA,"Republican" +1,NA,10055,"turk",1,0,99,3,1,10,NA,"Republican" +1,NA,10055,"turk",1,0,75,4,25,1,NA,"Republican" +1,NA,10055,"turk",1,0,99,5,1,25,NA,"Republican" +1,NA,10056,"turk",4,0,25,1,75,NA,NA,"Republican" +1,NA,10058,"turk",3,0,1,1,99,NA,NA,"Republican" +1,NA,10059,"turk",4,0,65,1,35,NA,NA,"Democrat" +1,NA,10062,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,10065,"turk",4,0,40,1,60,NA,NA,"Democrat" +1,NA,10066,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10069,"turk",2,0,75,1,25,NA,NA,"Republican" +1,NA,10073,"turk",3,0,50,1,50,NA,NA,"Neither" +1,NA,10076,"turk",2,0,50,1,50,NA,NA,"Neither" +1,NA,10077,"turk",2,0,50,1,50,NA,NA,"Democrat" +1,NA,10078,"turk",3,0,50,1,50,NA,NA,"Republican" +1,NA,10080,"turk",3,0,70,1,30,NA,NA,"Republican" +1,NA,10081,"turk",4,0,0,1,100,NA,NA,"Democrat" +1,NA,10085,"turk",4,0,10,1,90,NA,NA,"Neither" +1,NA,10090,"turk",4,0,80,1,20,NA,NA,"Democrat" +1,NA,10092,"turk",4,0,50,1,50,NA,NA,"Neither" +1,NA,10093,"turk",4,0,50,1,50,NA,NA,"Democrat" +1,NA,10094,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,10095,"turk",4,0,30,1,70,NA,NA,"Democrat" +1,NA,10096,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,10097,"turk",2,0,25,1,75,NA,NA,"Democrat" +1,NA,10101,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10104,"turk",1,0,80,1,20,NA,NA,"Democrat" +1,NA,10104,"turk",1,0,80,2,20,20,NA,"Democrat" +1,NA,10104,"turk",1,0,80,3,20,20,NA,"Democrat" +1,NA,10104,"turk",1,0,80,4,20,20,NA,"Democrat" +1,NA,10104,"turk",1,0,1,5,99,20,NA,"Democrat" +1,NA,10105,"turk",1,0,69,1,31,NA,NA,"Democrat" +1,NA,10105,"turk",1,0,69,2,31,31,NA,"Democrat" +1,NA,10105,"turk",1,0,69,3,31,31,NA,"Democrat" +1,NA,10105,"turk",1,0,69,4,31,31,NA,"Democrat" +1,NA,10105,"turk",1,0,69,5,31,31,NA,"Democrat" +1,NA,10107,"turk",4,0,20,1,80,NA,NA,"Democrat" +1,NA,10108,"turk",2,0,1,1,99,NA,NA,"Democrat" +1,NA,10111,"turk",3,0,25,1,75,NA,NA,"Neither" +1,NA,10116,"turk",3,0,100,1,0,NA,NA,"Democrat" +1,NA,10118,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,10120,"turk",4,0,81,1,19,NA,NA,"Republican" +1,NA,10121,"turk",2,0,30,1,70,NA,NA,"Neither" +1,NA,10126,"turk",4,0,70,1,30,NA,NA,"Republican" +1,NA,10131,"turk",3,0,50,1,50,NA,NA,"Republican" +1,NA,10133,"turk",4,0,60,1,40,NA,NA,"Democrat" +1,NA,10135,"turk",3,0,60,1,40,NA,NA,"Democrat" +1,NA,10136,"turk",2,0,40,1,60,NA,NA,"Democrat" +1,NA,10138,"turk",4,0,75,1,25,NA,NA,"Democrat" +1,NA,10140,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10145,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10147,"turk",3,0,69,1,31,NA,NA,"Democrat" +1,NA,10149,"turk",4,0,50,1,50,NA,NA,"Republican" +1,NA,10150,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10152,"turk",2,0,50,1,50,NA,NA,"Neither" +1,NA,10153,"turk",2,0,1,1,99,NA,NA,"Republican" +1,NA,10155,"turk",2,0,1,1,99,NA,NA,"Republican" +1,NA,10157,"turk",1,0,50,1,50,NA,NA,"Democrat" +1,NA,10157,"turk",1,0,2,2,98,50,NA,"Democrat" +1,NA,10157,"turk",1,0,2,3,98,98,NA,"Democrat" +1,NA,10157,"turk",1,0,2,4,98,98,NA,"Democrat" +1,NA,10157,"turk",1,0,2,5,98,98,NA,"Democrat" +1,NA,10160,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,10162,"turk",3,0,65,1,35,NA,NA,"Democrat" +1,NA,10163,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,10166,"turk",4,0,55,1,45,NA,NA,"Democrat" +1,NA,10167,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10169,"turk",2,0,40,1,60,NA,NA,"Republican" +1,NA,10174,"turk",3,0,0,1,100,NA,NA,"Democrat" +1,NA,10175,"turk",3,0,60,1,40,NA,NA,"Neither" +1,NA,10178,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10179,"turk",4,0,15,1,85,NA,NA,"Republican" +1,NA,10182,"turk",2,0,65,1,35,NA,NA,"Democrat" +1,NA,10183,"turk",1,0,99,1,1,NA,NA,"" +1,NA,10183,"turk",1,0,0,2,100,1,NA,"" +1,NA,10183,"turk",1,0,99,3,1,100,NA,"" +1,NA,10183,"turk",1,0,99,4,1,1,NA,"" +1,NA,10183,"turk",1,0,1,5,99,1,NA,"" +1,NA,10184,"turk",2,0,50,1,50,NA,NA,"Republican" +1,NA,10186,"turk",2,0,1,1,99,NA,NA,"Democrat" +1,NA,10188,"turk",2,0,50,1,50,NA,NA,"Democrat" +1,NA,10194,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,10197,"turk",2,0,90,1,10,NA,NA,"Democrat" +1,NA,10202,"turk",3,0,1,1,99,NA,NA,"Neither" +1,NA,10203,"turk",2,0,50,1,50,NA,NA,"Republican" +1,NA,10204,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10209,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,10210,"turk",4,0,50,1,50,NA,NA,"Republican" +1,NA,10211,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10215,"turk",4,0,100,1,0,NA,NA,"Democrat" +1,NA,10218,"turk",1,0,33,1,67,NA,NA,"Democrat" +1,NA,10218,"turk",1,0,99,2,1,67,NA,"Democrat" +1,NA,10218,"turk",1,0,99,3,1,1,NA,"Democrat" +1,NA,10218,"turk",1,0,1,4,99,1,NA,"Democrat" +1,NA,10218,"turk",1,0,99,5,1,99,NA,"Democrat" +1,NA,10223,"turk",3,0,80,1,20,NA,NA,"Democrat" +1,NA,10224,"turk",4,0,1,1,99,NA,NA,"Democrat" +1,NA,10227,"turk",3,0,75,1,25,NA,NA,"Republican" +1,NA,10228,"turk",2,0,99,1,1,NA,NA,"Neither" +1,NA,10229,"turk",5,0,1,1,99,NA,NA,"Democrat" +1,NA,10229,"turk",5,0,1,2,99,99,NA,"Democrat" +1,NA,10229,"turk",5,0,1,3,99,99,NA,"Democrat" +1,NA,10229,"turk",5,0,1,4,99,99,NA,"Democrat" +1,NA,10229,"turk",5,0,1,5,99,99,NA,"Democrat" +1,NA,10230,"turk",5,0,99,1,1,NA,NA,"Neither" +1,NA,10230,"turk",5,0,98,2,2,1,NA,"Neither" +1,NA,10230,"turk",5,0,96,3,4,2,NA,"Neither" +1,NA,10230,"turk",5,0,4,4,96,4,NA,"Neither" +1,NA,10230,"turk",5,0,41,5,59,96,NA,"Neither" +1,NA,10235,"turk",4,0,1,1,99,NA,NA,"Republican" +1,NA,10241,"turk",5,0,50,1,50,NA,NA,"Democrat" +1,NA,10241,"turk",5,0,99,2,1,50,NA,"Democrat" +1,NA,10241,"turk",5,0,96,3,4,1,NA,"Democrat" +1,NA,10241,"turk",5,0,55,4,45,4,NA,"Democrat" +1,NA,10241,"turk",5,0,1,5,99,45,NA,"Democrat" +1,NA,10242,"turk",4,0,99,1,1,NA,NA,"Republican" +1,NA,10245,"turk",3,0,99,1,1,NA,NA,"Neither" +1,NA,10248,"turk",2,0,60,1,40,NA,NA,"Democrat" +1,NA,10252,"turk",3,0,50,1,50,NA,NA,"Republican" +1,NA,10254,"turk",5,0,50,1,50,NA,NA,"Democrat" +1,NA,10254,"turk",5,0,10,2,90,50,NA,"Democrat" +1,NA,10254,"turk",5,0,50,3,50,90,NA,"Democrat" +1,NA,10254,"turk",5,0,5,4,95,50,NA,"Democrat" +1,NA,10254,"turk",5,0,1,5,99,95,NA,"Democrat" +1,NA,10256,"turk",2,0,50,1,50,NA,NA,"Neither" +1,NA,10261,"turk",5,0,1,1,99,NA,NA,"Neither" +1,NA,10261,"turk",5,0,99,2,1,99,NA,"Neither" +1,NA,10261,"turk",5,0,1,3,99,1,NA,"Neither" +1,NA,10261,"turk",5,0,1,4,99,99,NA,"Neither" +1,NA,10261,"turk",5,0,99,5,1,99,NA,"Neither" +1,NA,10262,"turk",3,0,30,1,70,NA,NA,"Democrat" +1,NA,10271,"turk",2,0,99,1,1,NA,NA,"Republican" +1,NA,10272,"turk",5,0,80,1,20,NA,NA,"Democrat" +1,NA,10272,"turk",5,0,25,2,75,20,NA,"Democrat" +1,NA,10272,"turk",5,0,15,3,85,75,NA,"Democrat" +1,NA,10272,"turk",5,0,10,4,90,85,NA,"Democrat" +1,NA,10272,"turk",5,0,100,5,0,90,NA,"Democrat" +1,NA,10274,"turk",4,0,99,1,1,NA,NA,"Republican" +1,NA,10275,"turk",2,0,100,1,0,NA,NA,"Democrat" +1,NA,10276,"turk",3,0,20,1,80,NA,NA,"Neither" +1,NA,10277,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10279,"turk",4,0,80,1,20,NA,NA,"Democrat" +1,NA,10281,"turk",4,0,75,1,25,NA,NA,"Democrat" +1,NA,10284,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,10285,"turk",4,0,99,1,1,NA,NA,"Republican" +1,NA,10289,"turk",3,0,99,1,1,NA,NA,"Republican" +1,NA,10290,"turk",4,0,99,1,1,NA,NA,"Neither" +1,NA,10292,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,10294,"turk",5,0,50,1,50,NA,NA,"Democrat" +1,NA,10294,"turk",5,0,50,2,50,50,NA,"Democrat" +1,NA,10294,"turk",5,0,50,3,50,50,NA,"Democrat" +1,NA,10294,"turk",5,0,70,4,30,50,NA,"Democrat" +1,NA,10294,"turk",5,0,60,5,40,30,NA,"Democrat" +1,NA,10295,"turk",4,0,15,1,85,NA,NA,"Democrat" +1,NA,10297,"turk",2,0,77,1,23,NA,NA,"Democrat" +1,NA,10298,"turk",5,0,1,1,99,NA,NA,"Neither" +1,NA,10298,"turk",5,0,0,2,100,99,NA,"Neither" +1,NA,10298,"turk",5,0,0,3,100,100,NA,"Neither" +1,NA,10298,"turk",5,0,0,4,100,100,NA,"Neither" +1,NA,10298,"turk",5,0,0,5,100,100,NA,"Neither" +1,NA,10299,"turk",5,0,50,1,50,NA,NA,"Republican" +1,NA,10299,"turk",5,0,50,2,50,50,NA,"Republican" +1,NA,10299,"turk",5,0,0,3,100,50,NA,"Republican" +1,NA,10299,"turk",5,0,99,4,1,100,NA,"Republican" +1,NA,10299,"turk",5,0,0,5,100,1,NA,"Republican" +1,NA,10301,"turk",5,0,40,1,60,NA,NA,"Democrat" +1,NA,10301,"turk",5,0,25,2,75,60,NA,"Democrat" +1,NA,10301,"turk",5,0,20,3,80,75,NA,"Democrat" +1,NA,10301,"turk",5,0,10,4,90,80,NA,"Democrat" +1,NA,10301,"turk",5,0,5,5,95,90,NA,"Democrat" +1,NA,10307,"turk",3,0,25,1,75,NA,NA,"Republican" +1,NA,10308,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10312,"turk",5,0,88,1,12,NA,NA,"Democrat" +1,NA,10312,"turk",5,0,77,2,23,12,NA,"Democrat" +1,NA,10312,"turk",5,0,16,3,84,23,NA,"Democrat" +1,NA,10312,"turk",5,0,88,4,12,84,NA,"Democrat" +1,NA,10312,"turk",5,0,50,5,50,12,NA,"Democrat" +1,NA,10315,"turk",3,0,99,1,1,NA,NA,"Republican" +1,NA,10317,"turk",4,0,80,1,20,NA,NA,"Democrat" +1,NA,10318,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10319,"turk",3,0,1,1,99,NA,NA,"Neither" +1,NA,10320,"turk",4,0,99,1,1,NA,NA,"Republican" +1,NA,10322,"turk",5,0,50,1,50,NA,NA,"Republican" +1,NA,10322,"turk",5,0,1,2,99,50,NA,"Republican" +1,NA,10322,"turk",5,0,60,3,40,99,NA,"Republican" +1,NA,10322,"turk",5,0,1,4,99,40,NA,"Republican" +1,NA,10322,"turk",5,0,1,5,99,99,NA,"Republican" +1,NA,10325,"turk",5,0,5,1,95,NA,NA,"Democrat" +1,NA,10325,"turk",5,0,5,2,95,95,NA,"Democrat" +1,NA,10325,"turk",5,0,5,3,95,95,NA,"Democrat" +1,NA,10325,"turk",5,0,5,4,95,95,NA,"Democrat" +1,NA,10325,"turk",5,0,5,5,95,95,NA,"Democrat" +1,NA,10328,"turk",1,0,99,1,1,NA,NA,"Neither" +1,NA,10328,"turk",1,0,50,2,50,1,NA,"Neither" +1,NA,10328,"turk",1,0,50,3,50,50,NA,"Neither" +1,NA,10328,"turk",1,0,1,4,99,50,NA,"Neither" +1,NA,10328,"turk",1,0,1,5,99,99,NA,"Neither" +1,NA,10329,"turk",3,0,40,1,60,NA,NA,"Republican" +1,NA,10331,"turk",3,0,5,1,95,NA,NA,"Democrat" +1,NA,10332,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,10340,"turk",1,0,99,1,1,NA,NA,"Neither" +1,NA,10340,"turk",1,0,99,2,1,1,NA,"Neither" +1,NA,10340,"turk",1,0,90,3,10,1,NA,"Neither" +1,NA,10340,"turk",1,0,100,4,0,10,NA,"Neither" +1,NA,10340,"turk",1,0,95,5,5,0,NA,"Neither" +1,NA,10342,"turk",2,0,10,1,90,NA,NA,"Democrat" +1,NA,10346,"turk",3,0,20,1,80,NA,NA,"Democrat" +1,NA,10350,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10354,"turk",4,0,99,1,1,NA,NA,"Neither" +1,NA,10355,"turk",4,0,50,1,50,NA,NA,"Neither" +1,NA,10359,"turk",2,0,50,1,50,NA,NA,"Republican" +1,NA,10360,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10361,"turk",5,0,99,1,1,NA,NA,"Neither" +1,NA,10361,"turk",5,0,1,2,99,1,NA,"Neither" +1,NA,10361,"turk",5,0,1,3,99,99,NA,"Neither" +1,NA,10361,"turk",5,0,99,4,1,99,NA,"Neither" +1,NA,10361,"turk",5,0,1,5,99,1,NA,"Neither" +1,NA,10365,"turk",2,0,50,1,50,NA,NA,"Republican" +1,NA,10367,"turk",4,0,90,1,10,NA,NA,"Republican" +1,NA,10368,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10369,"turk",4,0,99,1,1,NA,NA,"Republican" +1,NA,10373,"turk",1,0,90,1,10,NA,NA,"Neither" +1,NA,10373,"turk",1,0,10,2,90,10,NA,"Neither" +1,NA,10373,"turk",1,0,9,3,91,90,NA,"Neither" +1,NA,10373,"turk",1,0,9,4,91,91,NA,"Neither" +1,NA,10373,"turk",1,0,1,5,99,91,NA,"Neither" +1,NA,10374,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10376,"turk",2,0,99,1,1,NA,NA,"Republican" +1,NA,10382,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,10385,"turk",2,0,40,1,60,NA,NA,"Republican" +1,NA,10386,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,10387,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,10389,"turk",3,0,85,1,15,NA,NA,"Neither" +1,NA,10391,"turk",2,0,99,1,1,NA,NA,"Neither" +1,NA,10392,"turk",4,0,2,1,98,NA,NA,"Democrat" +1,NA,10394,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10396,"turk",3,0,45,1,55,NA,NA,"Republican" +1,NA,10398,"turk",4,0,80,1,20,NA,NA,"Republican" +1,NA,10402,"turk",2,0,80,1,20,NA,NA,"Democrat" +1,NA,10404,"turk",2,0,99,1,1,NA,NA,"Republican" +1,NA,10406,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,10408,"turk",2,0,99,1,1,NA,NA,"Democrat" +1,NA,10411,"turk",2,0,50,1,50,NA,NA,"Republican" +1,NA,10412,"turk",1,0,85,1,15,NA,NA,"Democrat" +1,NA,10412,"turk",1,0,2,2,98,15,NA,"Democrat" +1,NA,10412,"turk",1,0,68,3,32,98,NA,"Democrat" +1,NA,10412,"turk",1,0,82,4,18,32,NA,"Democrat" +1,NA,10412,"turk",1,0,85,5,15,18,NA,"Democrat" +1,NA,10413,"turk",3,0,20,1,80,NA,NA,"Republican" +1,NA,10416,"turk",4,0,50,1,50,NA,NA,"Republican" +1,NA,10418,"turk",4,0,74,1,26,NA,NA,"Democrat" +1,NA,10422,"turk",2,0,35,1,65,NA,NA,"Democrat" +1,NA,10423,"turk",3,0,20,1,80,NA,NA,"Neither" +1,NA,10425,"turk",4,0,1,1,99,NA,NA,"Democrat" +1,NA,10427,"turk",3,0,1,1,99,NA,NA,"Republican" +1,NA,10429,"turk",2,0,80,1,20,NA,NA,"Democrat" +1,NA,10433,"turk",2,0,1,1,99,NA,NA,"Democrat" +1,NA,10440,"turk",3,0,87,1,13,NA,NA,"Democrat" +1,NA,10441,"turk",4,0,30,1,70,NA,NA,"Democrat" +1,NA,10442,"turk",2,0,50,1,50,NA,NA,"Neither" +1,NA,10443,"turk",2,0,85,1,15,NA,NA,"Republican" +1,NA,10450,"turk",1,0,60,1,40,NA,NA,"Democrat" +1,NA,10450,"turk",1,0,1,2,99,40,NA,"Democrat" +1,NA,10450,"turk",1,0,2,3,98,99,NA,"Democrat" +1,NA,10450,"turk",1,0,99,4,1,98,NA,"Democrat" +1,NA,10450,"turk",1,0,0,5,100,1,NA,"Democrat" +1,NA,10454,"turk",2,0,1,1,99,NA,NA,"Democrat" +1,NA,10457,"turk",4,0,95,1,5,NA,NA,"Republican" +1,NA,10460,"turk",5,0,1,1,99,NA,NA,"Democrat" +1,NA,10460,"turk",5,0,1,2,99,99,NA,"Democrat" +1,NA,10460,"turk",5,0,1,3,99,99,NA,"Democrat" +1,NA,10460,"turk",5,0,1,4,99,99,NA,"Democrat" +1,NA,10460,"turk",5,0,1,5,99,99,NA,"Democrat" +1,NA,10463,"turk",3,0,75,1,25,NA,NA,"Republican" +1,NA,10464,"turk",4,0,30,1,70,NA,NA,"Democrat" +1,NA,10466,"turk",5,0,70,1,30,NA,NA,"Neither" +1,NA,10466,"turk",5,0,35,2,65,30,NA,"Neither" +1,NA,10466,"turk",5,0,20,3,80,65,NA,"Neither" +1,NA,10466,"turk",5,0,20,4,80,80,NA,"Neither" +1,NA,10466,"turk",5,0,50,5,50,80,NA,"Neither" +1,NA,10467,"turk",5,0,45,1,55,NA,NA,"Neither" +1,NA,10467,"turk",5,0,25,2,75,55,NA,"Neither" +1,NA,10467,"turk",5,0,25,3,75,75,NA,"Neither" +1,NA,10467,"turk",5,0,2,4,98,75,NA,"Neither" +1,NA,10467,"turk",5,0,5,5,95,98,NA,"Neither" +1,NA,10468,"turk",4,0,60,1,40,NA,NA,"Democrat" +1,NA,10469,"turk",3,0,1,1,99,NA,NA,"Neither" +1,NA,10470,"turk",2,0,1,1,99,NA,NA,"Democrat" +1,NA,10473,"turk",1,0,1,1,99,NA,NA,"Democrat" +1,NA,10473,"turk",1,0,1,2,99,99,NA,"Democrat" +1,NA,10473,"turk",1,0,1,3,99,99,NA,"Democrat" +1,NA,10473,"turk",1,0,0,4,100,99,NA,"Democrat" +1,NA,10473,"turk",1,0,99,5,1,100,NA,"Democrat" +1,NA,10474,"turk",2,0,78,1,22,NA,NA,"Democrat" +1,NA,10475,"turk",2,0,0,1,100,NA,NA,"Democrat" +1,NA,10476,"turk",4,0,10,1,90,NA,NA,"Neither" +1,NA,10479,"turk",4,0,1,1,99,NA,NA,"Democrat" +1,NA,10481,"turk",2,0,40,1,60,NA,NA,"Neither" +1,NA,10483,"turk",3,0,50,1,50,NA,NA,"Democrat" +1,NA,10485,"turk",3,0,20,1,80,NA,NA,"Democrat" +1,NA,10486,"turk",4,0,50,1,50,NA,NA,"Neither" +1,NA,10488,"turk",4,0,50,1,50,NA,NA,"Republican" +1,NA,10489,"turk",4,0,30,1,70,NA,NA,"Democrat" +1,NA,10493,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,10499,"turk",3,0,1,1,99,NA,NA,"Democrat" +1,NA,10500,"turk",2,0,1,1,99,NA,NA,"Neither" +1,NA,10501,"turk",3,0,100,1,0,NA,NA,"Democrat" +1,NA,10503,"turk",4,0,99,1,1,NA,NA,"Democrat" +1,NA,10504,"turk",5,0,5,1,95,NA,NA,"Democrat" +1,NA,10504,"turk",5,0,5,2,95,95,NA,"Democrat" +1,NA,10504,"turk",5,0,7,3,93,95,NA,"Democrat" +1,NA,10504,"turk",5,0,6,4,94,93,NA,"Democrat" +1,NA,10504,"turk",5,0,5,5,95,94,NA,"Democrat" +1,NA,10505,"turk",4,0,70,1,30,NA,NA,"Republican" +1,NA,10508,"turk",2,0,50,1,50,NA,NA,"Democrat" +1,NA,10514,"turk",1,0,99,1,1,NA,NA,"Democrat" +1,NA,10514,"turk",1,0,1,2,99,1,NA,"Democrat" +1,NA,10514,"turk",1,0,1,3,99,99,NA,"Democrat" +1,NA,10514,"turk",1,0,1,4,99,99,NA,"Democrat" +1,NA,10514,"turk",1,0,11,5,89,99,NA,"Democrat" +1,NA,10521,"turk",4,0,50,1,50,NA,NA,"Democrat" +1,NA,10522,"turk",3,0,50,1,50,NA,NA,"Republican" +1,NA,10523,"turk",3,0,99,1,1,NA,NA,"Democrat" +1,NA,10525,"turk",4,0,50,1,50,NA,NA,"Neither" +1,NA,10526,"turk",1,0,50,1,50,NA,NA,"Neither" +1,NA,10526,"turk",1,0,0,2,100,50,NA,"Neither" +1,NA,10526,"turk",1,0,50,3,50,100,NA,"Neither" +1,NA,10526,"turk",1,0,50,4,50,50,NA,"Neither" +1,NA,10526,"turk",1,0,50,5,50,50,NA,"Neither" +1,NA,10528,"turk",3,0,50,1,50,NA,NA,"Neither" +1,NA,10529,"turk",3,0,80,1,20,NA,NA,"Republican" +1,NA,10534,"turk",2,0,97,1,3,NA,NA,"Republican" +1,NA,9742,"turk",4,1,30,1,30,NA,NA,"Neither" +1,NA,9745,"turk",3,1,30,1,30,NA,NA,"Republican" +1,NA,9746,"turk",2,1,1,1,1,NA,NA,"Neither" +1,NA,9748,"turk",2,1,20,1,20,NA,NA,"Democrat" +1,NA,9749,"turk",2,1,100,1,100,NA,NA,"Democrat" +1,NA,9750,"turk",3,1,90,1,90,NA,NA,"Republican" +1,NA,9751,"turk",2,1,99,1,99,NA,NA,"Democrat" +1,NA,9753,"turk",3,1,65,1,65,NA,NA,"Democrat" +1,NA,9754,"turk",4,1,50,1,50,NA,NA,"Republican" +1,NA,9757,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,9758,"turk",4,1,50,1,50,NA,NA,"Neither" +1,NA,9759,"turk",2,1,50,1,50,NA,NA,"Republican" +1,NA,9760,"turk",3,1,45,1,45,NA,NA,"Neither" +1,NA,9765,"turk",4,1,99,1,99,NA,NA,"Neither" +1,NA,9770,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,9771,"turk",2,1,80,1,80,NA,NA,"Democrat" +1,NA,9776,"turk",3,1,70,1,70,NA,NA,"Neither" +1,NA,9778,"turk",4,1,78,1,78,NA,NA,"Neither" +1,NA,9779,"turk",3,1,95,1,95,NA,NA,"Democrat" +1,NA,9782,"turk",3,1,80,1,80,NA,NA,"Republican" +1,NA,9783,"turk",1,1,50,1,50,NA,NA,"Neither" +1,NA,9783,"turk",1,1,90,2,90,50,NA,"Neither" +1,NA,9783,"turk",1,1,80,3,80,90,NA,"Neither" +1,NA,9783,"turk",1,1,99,4,99,80,NA,"Neither" +1,NA,9783,"turk",1,1,99,5,99,99,NA,"Neither" +1,NA,9784,"turk",2,1,99,1,99,NA,NA,"Republican" +1,NA,9788,"turk",1,1,50,1,50,NA,NA,"Democrat" +1,NA,9788,"turk",1,1,50,2,50,50,NA,"Democrat" +1,NA,9788,"turk",1,1,50,3,50,50,NA,"Democrat" +1,NA,9788,"turk",1,1,65,4,65,50,NA,"Democrat" +1,NA,9788,"turk",1,1,65,5,65,65,NA,"Democrat" +1,NA,9789,"turk",3,1,99,1,99,NA,NA,"Democrat" +1,NA,9790,"turk",3,1,0,1,0,NA,NA,"Neither" +1,NA,9793,"turk",2,1,65,1,65,NA,NA,"Neither" +1,NA,9794,"turk",5,1,90,1,90,NA,NA,"Democrat" +1,NA,9794,"turk",5,1,90,2,90,90,NA,"Democrat" +1,NA,9794,"turk",5,1,90,3,90,90,NA,"Democrat" +1,NA,9794,"turk",5,1,90,4,90,90,NA,"Democrat" +1,NA,9794,"turk",5,1,90,5,90,90,NA,"Democrat" +1,NA,9796,"turk",4,1,12,1,12,NA,NA,"Democrat" +1,NA,9797,"turk",2,1,75,1,75,NA,NA,"Republican" +1,NA,9799,"turk",3,1,1,1,1,NA,NA,"Democrat" +1,NA,9800,"turk",4,1,90,1,90,NA,NA,"Republican" +1,NA,9801,"turk",2,1,90,1,90,NA,NA,"Neither" +1,NA,9805,"turk",1,1,75,1,75,NA,NA,"Democrat" +1,NA,9805,"turk",1,1,80,2,80,75,NA,"Democrat" +1,NA,9805,"turk",1,1,80,3,80,80,NA,"Democrat" +1,NA,9805,"turk",1,1,80,4,80,80,NA,"Democrat" +1,NA,9805,"turk",1,1,90,5,90,80,NA,"Democrat" +1,NA,9811,"turk",2,1,50,1,50,NA,NA,"Republican" +1,NA,9812,"turk",4,1,90,1,90,NA,NA,"Republican" +1,NA,9814,"turk",5,1,50,1,50,NA,NA,"Democrat" +1,NA,9814,"turk",5,1,99,2,99,50,NA,"Democrat" +1,NA,9814,"turk",5,1,99,3,99,99,NA,"Democrat" +1,NA,9814,"turk",5,1,99,4,99,99,NA,"Democrat" +1,NA,9814,"turk",5,1,99,5,99,99,NA,"Democrat" +1,NA,9816,"turk",3,1,99,1,99,NA,NA,"Democrat" +1,NA,9818,"turk",5,1,1,1,1,NA,NA,"Republican" +1,NA,9818,"turk",5,1,70,2,70,1,NA,"Republican" +1,NA,9818,"turk",5,1,1,3,1,70,NA,"Republican" +1,NA,9818,"turk",5,1,50,4,50,1,NA,"Republican" +1,NA,9818,"turk",5,1,60,5,60,50,NA,"Republican" +1,NA,9819,"turk",2,1,90,1,90,NA,NA,"Republican" +1,NA,9822,"turk",5,1,30,1,30,NA,NA,"Democrat" +1,NA,9822,"turk",5,1,20,2,20,30,NA,"Democrat" +1,NA,9822,"turk",5,1,30,3,30,20,NA,"Democrat" +1,NA,9822,"turk",5,1,40,4,40,30,NA,"Democrat" +1,NA,9822,"turk",5,1,30,5,30,40,NA,"Democrat" +1,NA,9824,"turk",3,1,5,1,5,NA,NA,"Democrat" +1,NA,9825,"turk",5,1,1,1,1,NA,NA,"Neither" +1,NA,9825,"turk",5,1,99,2,99,1,NA,"Neither" +1,NA,9825,"turk",5,1,1,3,1,99,NA,"Neither" +1,NA,9825,"turk",5,1,99,4,99,1,NA,"Neither" +1,NA,9825,"turk",5,1,99,5,99,99,NA,"Neither" +1,NA,9832,"turk",5,1,70,1,70,NA,NA,"Republican" +1,NA,9832,"turk",5,1,80,2,80,70,NA,"Republican" +1,NA,9832,"turk",5,1,75,3,75,80,NA,"Republican" +1,NA,9832,"turk",5,1,15,4,15,75,NA,"Republican" +1,NA,9832,"turk",5,1,1,5,1,15,NA,"Republican" +1,NA,9834,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,9838,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,9840,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,9841,"turk",2,1,99,1,99,NA,NA,"Democrat" +1,NA,9845,"turk",4,1,60,1,60,NA,NA,"Neither" +1,NA,9846,"turk",4,1,70,1,70,NA,NA,"Democrat" +1,NA,9848,"turk",4,1,50,1,50,NA,NA,"Neither" +1,NA,9850,"turk",3,1,99,1,99,NA,NA,"Republican" +1,NA,9853,"turk",4,1,50,1,50,NA,NA,"Neither" +1,NA,9854,"turk",4,1,99,1,99,NA,NA,"Neither" +1,NA,9856,"turk",3,1,2,1,2,NA,NA,"Republican" +1,NA,9859,"turk",5,1,50,1,50,NA,NA,"Democrat" +1,NA,9859,"turk",5,1,75,2,75,50,NA,"Democrat" +1,NA,9859,"turk",5,1,50,3,50,75,NA,"Democrat" +1,NA,9859,"turk",5,1,75,4,75,50,NA,"Democrat" +1,NA,9859,"turk",5,1,50,5,50,75,NA,"Democrat" +1,NA,9860,"turk",4,1,60,1,60,NA,NA,"Republican" +1,NA,9862,"turk",3,1,15,1,15,NA,NA,"Democrat" +1,NA,9863,"turk",5,1,50,1,50,NA,NA,"Neither" +1,NA,9863,"turk",5,1,50,2,50,50,NA,"Neither" +1,NA,9863,"turk",5,1,100,3,100,50,NA,"Neither" +1,NA,9863,"turk",5,1,100,4,100,100,NA,"Neither" +1,NA,9863,"turk",5,1,100,5,100,100,NA,"Neither" +1,NA,9865,"turk",1,1,50,1,50,NA,NA,"Neither" +1,NA,9865,"turk",1,1,99,2,99,50,NA,"Neither" +1,NA,9865,"turk",1,1,99,3,99,99,NA,"Neither" +1,NA,9865,"turk",1,1,99,4,99,99,NA,"Neither" +1,NA,9865,"turk",1,1,99,5,99,99,NA,"Neither" +1,NA,9873,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,9876,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,9877,"turk",4,1,50,1,50,NA,NA,"Neither" +1,NA,9880,"turk",4,1,90,1,90,NA,NA,"Democrat" +1,NA,9882,"turk",2,1,90,1,90,NA,NA,"Democrat" +1,NA,9883,"turk",5,1,50,1,50,NA,NA,"Republican" +1,NA,9883,"turk",5,1,99,2,99,50,NA,"Republican" +1,NA,9883,"turk",5,1,99,3,99,99,NA,"Republican" +1,NA,9883,"turk",5,1,99,4,99,99,NA,"Republican" +1,NA,9883,"turk",5,1,99,5,99,99,NA,"Republican" +1,NA,9888,"turk",4,1,1,1,1,NA,NA,"Republican" +1,NA,9893,"turk",2,1,70,1,70,NA,NA,"Democrat" +1,NA,9895,"turk",2,1,99,1,99,NA,NA,"Neither" +1,NA,9901,"turk",4,1,55,1,55,NA,NA,"Republican" +1,NA,9903,"turk",3,1,70,1,70,NA,NA,"Democrat" +1,NA,9904,"turk",2,1,0,1,0,NA,NA,"Democrat" +1,NA,9907,"turk",1,1,99,1,99,NA,NA,"Democrat" +1,NA,9907,"turk",1,1,75,2,75,99,NA,"Democrat" +1,NA,9907,"turk",1,1,99,3,99,75,NA,"Democrat" +1,NA,9907,"turk",1,1,99,4,99,99,NA,"Democrat" +1,NA,9907,"turk",1,1,99,5,99,99,NA,"Democrat" +1,NA,9908,"turk",2,1,70,1,70,NA,NA,"Democrat" +1,NA,9909,"turk",3,1,90,1,90,NA,NA,"Neither" +1,NA,9911,"turk",2,1,25,1,25,NA,NA,"Democrat" +1,NA,9912,"turk",3,1,70,1,70,NA,NA,"Democrat" +1,NA,9915,"turk",3,1,99,1,99,NA,NA,"Democrat" +1,NA,9919,"turk",3,1,99,1,99,NA,NA,"Democrat" +1,NA,9924,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,9926,"turk",4,1,99,1,99,NA,NA,"Republican" +1,NA,9930,"turk",5,1,50,1,50,NA,NA,"Democrat" +1,NA,9930,"turk",5,1,75,2,75,50,NA,"Democrat" +1,NA,9930,"turk",5,1,80,3,80,75,NA,"Democrat" +1,NA,9930,"turk",5,1,85,4,85,80,NA,"Democrat" +1,NA,9930,"turk",5,1,90,5,90,85,NA,"Democrat" +1,NA,9932,"turk",4,1,1,1,1,NA,NA,"Democrat" +1,NA,9934,"turk",4,1,70,1,70,NA,NA,"Democrat" +1,NA,9936,"turk",3,1,80,1,80,NA,NA,"Republican" +1,NA,9943,"turk",3,1,80,1,80,NA,NA,"Republican" +1,NA,9944,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,9945,"turk",2,1,99,1,99,NA,NA,"Democrat" +1,NA,9950,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,9952,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,9954,"turk",4,1,85,1,85,NA,NA,"Democrat" +1,NA,9955,"turk",5,1,50,1,50,NA,NA,"Republican" +1,NA,9955,"turk",5,1,99,2,99,50,NA,"Republican" +1,NA,9955,"turk",5,1,99,3,99,99,NA,"Republican" +1,NA,9955,"turk",5,1,99,4,99,99,NA,"Republican" +1,NA,9955,"turk",5,1,99,5,99,99,NA,"Republican" +1,NA,9957,"turk",4,1,99,1,99,NA,NA,"Republican" +1,NA,9962,"turk",2,1,99,1,99,NA,NA,"Democrat" +1,NA,9969,"turk",3,1,1,1,1,NA,NA,"Democrat" +1,NA,9972,"turk",1,1,80,1,80,NA,NA,"Democrat" +1,NA,9972,"turk",1,1,50,2,50,80,NA,"Democrat" +1,NA,9972,"turk",1,1,50,3,50,50,NA,"Democrat" +1,NA,9972,"turk",1,1,52,4,52,50,NA,"Democrat" +1,NA,9972,"turk",1,1,55,5,55,52,NA,"Democrat" +1,NA,9973,"turk",4,1,80,1,80,NA,NA,"Democrat" +1,NA,9974,"turk",2,1,55,1,55,NA,NA,"Democrat" +1,NA,9977,"turk",3,1,100,1,100,NA,NA,"Neither" +1,NA,9979,"turk",4,1,50,1,50,NA,NA,"Republican" +1,NA,9980,"turk",2,1,75,1,75,NA,NA,"Republican" +1,NA,9981,"turk",4,1,90,1,90,NA,NA,"Democrat" +1,NA,9984,"turk",4,1,1,1,1,NA,NA,"Democrat" +1,NA,9985,"turk",3,1,30,1,30,NA,NA,"Democrat" +1,NA,9989,"turk",2,1,60,1,60,NA,NA,"Democrat" +1,NA,9992,"turk",3,1,1,1,1,NA,NA,"Republican" +1,NA,9994,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,9995,"turk",4,1,75,1,75,NA,NA,"Republican" +1,NA,9996,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,9997,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,9998,"turk",4,1,75,1,75,NA,NA,"Democrat" +1,NA,10004,"turk",3,1,1,1,1,NA,NA,"Democrat" +1,NA,10005,"turk",3,1,80,1,80,NA,NA,"Republican" +1,NA,10006,"turk",4,1,30,1,30,NA,NA,"Democrat" +1,NA,10008,"turk",4,1,0,1,0,NA,NA,"Republican" +1,NA,10009,"turk",2,1,98,1,98,NA,NA,"Republican" +1,NA,10010,"turk",5,1,60,1,60,NA,NA,"Democrat" +1,NA,10010,"turk",5,1,50,2,50,60,NA,"Democrat" +1,NA,10010,"turk",5,1,70,3,70,50,NA,"Democrat" +1,NA,10010,"turk",5,1,50,4,50,70,NA,"Democrat" +1,NA,10010,"turk",5,1,50,5,50,50,NA,"Democrat" +1,NA,10011,"turk",3,1,70,1,70,NA,NA,"Democrat" +1,NA,10012,"turk",3,1,30,1,30,NA,NA,"Neither" +1,NA,10016,"turk",2,1,1,1,1,NA,NA,"Neither" +1,NA,10021,"turk",2,1,60,1,60,NA,NA,"Democrat" +1,NA,10022,"turk",4,1,75,1,75,NA,NA,"Neither" +1,NA,10023,"turk",3,1,0,1,0,NA,NA,"Republican" +1,NA,10025,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,10029,"turk",2,1,0,1,0,NA,NA,"Democrat" +1,NA,10035,"turk",3,1,60,1,60,NA,NA,"Democrat" +1,NA,10040,"turk",3,1,99,1,99,NA,NA,"Democrat" +1,NA,10045,"turk",2,1,50,1,50,NA,NA,"Neither" +1,NA,10050,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,10053,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10057,"turk",3,1,99,1,99,NA,NA,"Republican" +1,NA,10060,"turk",4,1,60,1,60,NA,NA,"Democrat" +1,NA,10063,"turk",4,1,50,1,50,NA,NA,"Republican" +1,NA,10064,"turk",2,1,89,1,89,NA,NA,"Republican" +1,NA,10068,"turk",2,1,99,1,99,NA,NA,"Democrat" +1,NA,10072,"turk",1,1,0,1,0,NA,NA,"Democrat" +1,NA,10072,"turk",1,1,80,2,80,0,NA,"Democrat" +1,NA,10072,"turk",1,1,80,3,80,80,NA,"Democrat" +1,NA,10072,"turk",1,1,80,4,80,80,NA,"Democrat" +1,NA,10072,"turk",1,1,80,5,80,80,NA,"Democrat" +1,NA,10075,"turk",2,1,0,1,0,NA,NA,"Democrat" +1,NA,10079,"turk",2,1,50,1,50,NA,NA,"Republican" +1,NA,10082,"turk",2,1,99,1,99,NA,NA,"Neither" +1,NA,10086,"turk",2,1,40,1,40,NA,NA,"Neither" +1,NA,10088,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10091,"turk",4,1,60,1,60,NA,NA,"Democrat" +1,NA,10098,"turk",4,1,65,1,65,NA,NA,"Neither" +1,NA,10099,"turk",3,1,60,1,60,NA,NA,"Democrat" +1,NA,10100,"turk",2,1,70,1,70,NA,NA,"Democrat" +1,NA,10102,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,10106,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,10110,"turk",3,1,90,1,90,NA,NA,"Republican" +1,NA,10112,"turk",3,1,60,1,60,NA,NA,"Democrat" +1,NA,10114,"turk",3,1,99,1,99,NA,NA,"Republican" +1,NA,10117,"turk",3,1,75,1,75,NA,NA,"Democrat" +1,NA,10119,"turk",3,1,99,1,99,NA,NA,"Neither" +1,NA,10122,"turk",2,1,60,1,60,NA,NA,"Democrat" +1,NA,10123,"turk",4,1,50,1,50,NA,NA,"Republican" +1,NA,10124,"turk",2,1,99,1,99,NA,NA,"Republican" +1,NA,10127,"turk",4,1,50,1,50,NA,NA,"Republican" +1,NA,10128,"turk",3,1,2,1,2,NA,NA,"Democrat" +1,NA,10129,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,10132,"turk",3,1,22,1,22,NA,NA,"Republican" +1,NA,10134,"turk",5,1,30,1,30,NA,NA,"Republican" +1,NA,10134,"turk",5,1,70,2,70,30,NA,"Republican" +1,NA,10134,"turk",5,1,70,3,70,70,NA,"Republican" +1,NA,10134,"turk",5,1,70,4,70,70,NA,"Republican" +1,NA,10134,"turk",5,1,30,5,30,70,NA,"Republican" +1,NA,10137,"turk",2,1,0,1,0,NA,NA,"Democrat" +1,NA,10139,"turk",2,1,20,1,20,NA,NA,"Republican" +1,NA,10141,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10142,"turk",1,1,25,1,25,NA,NA,"Republican" +1,NA,10142,"turk",1,1,25,2,25,25,NA,"Republican" +1,NA,10142,"turk",1,1,75,3,75,25,NA,"Republican" +1,NA,10142,"turk",1,1,80,4,80,75,NA,"Republican" +1,NA,10142,"turk",1,1,80,5,80,80,NA,"Republican" +1,NA,10143,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,10144,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,10148,"turk",2,1,40,1,40,NA,NA,"Republican" +1,NA,10151,"turk",3,1,1,1,1,NA,NA,"Democrat" +1,NA,10156,"turk",2,1,65,1,65,NA,NA,"Democrat" +1,NA,10159,"turk",3,1,10,1,10,NA,NA,"Republican" +1,NA,10164,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,10165,"turk",4,1,1,1,1,NA,NA,"Democrat" +1,NA,10170,"turk",4,1,100,1,100,NA,NA,"Neither" +1,NA,10172,"turk",4,1,99,1,99,NA,NA,"Republican" +1,NA,10173,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,10177,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,10180,"turk",2,1,10,1,10,NA,NA,"Neither" +1,NA,10181,"turk",2,1,1,1,1,NA,NA,"Democrat" +1,NA,10185,"turk",3,1,0,1,0,NA,NA,"Republican" +1,NA,10187,"turk",3,1,90,1,90,NA,NA,"Democrat" +1,NA,10189,"turk",4,1,1,1,1,NA,NA,"Democrat" +1,NA,10191,"turk",5,1,60,1,60,NA,NA,"Democrat" +1,NA,10191,"turk",5,1,70,2,70,60,NA,"Democrat" +1,NA,10191,"turk",5,1,80,3,80,70,NA,"Democrat" +1,NA,10191,"turk",5,1,80,4,80,80,NA,"Democrat" +1,NA,10191,"turk",5,1,80,5,80,80,NA,"Democrat" +1,NA,10196,"turk",2,1,1,1,1,NA,NA,"Democrat" +1,NA,10198,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,10201,"turk",3,1,45,1,45,NA,NA,"Republican" +1,NA,10205,"turk",2,1,30,1,30,NA,NA,"Democrat" +1,NA,10206,"turk",4,1,4,1,4,NA,NA,"Democrat" +1,NA,10207,"turk",2,1,99,1,99,NA,NA,"Republican" +1,NA,10208,"turk",3,1,33,1,33,NA,NA,"Democrat" +1,NA,10212,"turk",3,1,65,1,65,NA,NA,"Democrat" +1,NA,10213,"turk",1,1,95,1,95,NA,NA,"Republican" +1,NA,10213,"turk",1,1,65,2,65,95,NA,"Republican" +1,NA,10213,"turk",1,1,80,3,80,65,NA,"Republican" +1,NA,10213,"turk",1,1,95,4,95,80,NA,"Republican" +1,NA,10213,"turk",1,1,99,5,99,95,NA,"Republican" +1,NA,10214,"turk",3,1,50,1,50,NA,NA,"Neither" +1,NA,10216,"turk",4,1,99,1,99,NA,NA,"Republican" +1,NA,10217,"turk",4,1,1,1,1,NA,NA,"Democrat" +1,NA,10219,"turk",2,1,1,1,1,NA,NA,"Democrat" +1,NA,10222,"turk",2,1,1,1,1,NA,NA,"Neither" +1,NA,10225,"turk",2,1,80,1,80,NA,NA,"Republican" +1,NA,10231,"turk",5,1,99,1,99,NA,NA,"Democrat" +1,NA,10231,"turk",5,1,99,2,99,99,NA,"Democrat" +1,NA,10231,"turk",5,1,99,3,99,99,NA,"Democrat" +1,NA,10231,"turk",5,1,99,4,99,99,NA,"Democrat" +1,NA,10231,"turk",5,1,99,5,99,99,NA,"Democrat" +1,NA,10233,"turk",3,1,100,1,100,NA,NA,"Neither" +1,NA,10234,"turk",2,1,75,1,75,NA,NA,"Republican" +1,NA,10237,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,10238,"turk",4,1,75,1,75,NA,NA,"Democrat" +1,NA,10240,"turk",4,1,50,1,50,NA,NA,"Neither" +1,NA,10243,"turk",3,1,1,1,1,NA,NA,"Republican" +1,NA,10244,"turk",2,1,99,1,99,NA,NA,"Republican" +1,NA,10246,"turk",2,1,1,1,1,NA,NA,"Democrat" +1,NA,10247,"turk",3,1,99,1,99,NA,NA,"Democrat" +1,NA,10249,"turk",3,1,80,1,80,NA,NA,"Democrat" +1,NA,10250,"turk",2,1,22,1,22,NA,NA,"Democrat" +1,NA,10251,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,10253,"turk",4,1,20,1,20,NA,NA,"Democrat" +1,NA,10255,"turk",3,1,50,1,50,NA,NA,"Democrat" +1,NA,10257,"turk",3,1,1,1,1,NA,NA,"Democrat" +1,NA,10258,"turk",1,1,50,1,50,NA,NA,"Neither" +1,NA,10258,"turk",1,1,80,2,80,50,NA,"Neither" +1,NA,10258,"turk",1,1,80,3,80,80,NA,"Neither" +1,NA,10258,"turk",1,1,80,4,80,80,NA,"Neither" +1,NA,10258,"turk",1,1,90,5,90,80,NA,"Neither" +1,NA,10259,"turk",4,1,1,1,1,NA,NA,"Democrat" +1,NA,10260,"turk",2,1,99,1,99,NA,NA,"Neither" +1,NA,10263,"turk",1,1,80,1,80,NA,NA,"Republican" +1,NA,10263,"turk",1,1,25,2,25,80,NA,"Republican" +1,NA,10263,"turk",1,1,60,3,60,25,NA,"Republican" +1,NA,10263,"turk",1,1,99,4,99,60,NA,"Republican" +1,NA,10263,"turk",1,1,100,5,100,99,NA,"Republican" +1,NA,10265,"turk",2,1,80,1,80,NA,NA,"Republican" +1,NA,10266,"turk",4,1,1,1,1,NA,NA,"Republican" +1,NA,10267,"turk",3,1,1,1,1,NA,NA,"Democrat" +1,NA,10268,"turk",1,1,50,1,50,NA,NA,"Democrat" +1,NA,10268,"turk",1,1,75,2,75,50,NA,"Democrat" +1,NA,10268,"turk",1,1,75,3,75,75,NA,"Democrat" +1,NA,10268,"turk",1,1,75,4,75,75,NA,"Democrat" +1,NA,10268,"turk",1,1,99,5,99,75,NA,"Democrat" +1,NA,10269,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,10270,"turk",4,1,99,1,99,NA,NA,"Republican" +1,NA,10273,"turk",5,1,80,1,80,NA,NA,"Democrat" +1,NA,10273,"turk",5,1,20,2,20,80,NA,"Democrat" +1,NA,10273,"turk",5,1,80,3,80,20,NA,"Democrat" +1,NA,10273,"turk",5,1,10,4,10,80,NA,"Democrat" +1,NA,10273,"turk",5,1,10,5,10,10,NA,"Democrat" +1,NA,10278,"turk",2,1,1,1,1,NA,NA,"Democrat" +1,NA,10280,"turk",5,1,1,1,1,NA,NA,"Republican" +1,NA,10280,"turk",5,1,99,2,99,1,NA,"Republican" +1,NA,10280,"turk",5,1,99,3,99,99,NA,"Republican" +1,NA,10280,"turk",5,1,99,4,99,99,NA,"Republican" +1,NA,10280,"turk",5,1,99,5,99,99,NA,"Republican" +1,NA,10282,"turk",2,1,85,1,85,NA,NA,"Neither" +1,NA,10283,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10286,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10287,"turk",4,1,60,1,60,NA,NA,"Democrat" +1,NA,10288,"turk",4,1,99,1,99,NA,NA,"Neither" +1,NA,10293,"turk",2,1,70,1,70,NA,NA,"Democrat" +1,NA,10296,"turk",2,1,85,1,85,NA,NA,"Republican" +1,NA,10300,"turk",3,1,80,1,80,NA,NA,"Democrat" +1,NA,10302,"turk",3,1,99,1,99,NA,NA,"Republican" +1,NA,10304,"turk",3,1,1,1,1,NA,NA,"Democrat" +1,NA,10306,"turk",5,1,80,1,80,NA,NA,"Democrat" +1,NA,10306,"turk",5,1,90,2,90,80,NA,"Democrat" +1,NA,10306,"turk",5,1,99,3,99,90,NA,"Democrat" +1,NA,10306,"turk",5,1,100,4,100,99,NA,"Democrat" +1,NA,10306,"turk",5,1,99,5,99,100,NA,"Democrat" +1,NA,10309,"turk",1,1,50,1,50,NA,NA,"Republican" +1,NA,10309,"turk",1,1,10,2,10,50,NA,"Republican" +1,NA,10309,"turk",1,1,10,3,10,10,NA,"Republican" +1,NA,10309,"turk",1,1,10,4,10,10,NA,"Republican" +1,NA,10309,"turk",1,1,10,5,10,10,NA,"Republican" +1,NA,10310,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10313,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,10314,"turk",4,1,85,1,85,NA,NA,"" +1,NA,10321,"turk",2,1,80,1,80,NA,NA,"Republican" +1,NA,10323,"turk",3,1,5,1,5,NA,NA,"Democrat" +1,NA,10324,"turk",5,1,25,1,25,NA,NA,"Neither" +1,NA,10324,"turk",5,1,99,2,99,25,NA,"Neither" +1,NA,10324,"turk",5,1,99,3,99,99,NA,"Neither" +1,NA,10324,"turk",5,1,10,4,10,99,NA,"Neither" +1,NA,10324,"turk",5,1,99,5,99,10,NA,"Neither" +1,NA,10326,"turk",3,1,1,1,1,NA,NA,"Republican" +1,NA,10327,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,10330,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,10333,"turk",4,1,90,1,90,NA,NA,"Neither" +1,NA,10335,"turk",5,1,50,1,50,NA,NA,"Democrat" +1,NA,10335,"turk",5,1,70,2,70,50,NA,"Democrat" +1,NA,10335,"turk",5,1,20,3,20,70,NA,"Democrat" +1,NA,10335,"turk",5,1,70,4,70,20,NA,"Democrat" +1,NA,10335,"turk",5,1,90,5,90,70,NA,"Democrat" +1,NA,10336,"turk",3,1,80,1,80,NA,NA,"Neither" +1,NA,10338,"turk",2,1,80,1,80,NA,NA,"Neither" +1,NA,10339,"turk",3,1,99,1,99,NA,NA,"Democrat" +1,NA,10341,"turk",5,1,20,1,20,NA,NA,"Democrat" +1,NA,10341,"turk",5,1,10,2,10,20,NA,"Democrat" +1,NA,10341,"turk",5,1,20,3,20,10,NA,"Democrat" +1,NA,10341,"turk",5,1,50,4,50,20,NA,"Democrat" +1,NA,10341,"turk",5,1,50,5,50,50,NA,"Democrat" +1,NA,10343,"turk",3,1,20,1,20,NA,NA,"Republican" +1,NA,10345,"turk",1,1,1,1,1,NA,NA,"Republican" +1,NA,10345,"turk",1,1,1,2,1,1,NA,"Republican" +1,NA,10345,"turk",1,1,99,3,99,1,NA,"Republican" +1,NA,10345,"turk",1,1,99,4,99,99,NA,"Republican" +1,NA,10345,"turk",1,1,99,5,99,99,NA,"Republican" +1,NA,10347,"turk",4,1,20,1,20,NA,NA,"Democrat" +1,NA,10348,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,10349,"turk",4,1,50,1,50,NA,NA,"Republican" +1,NA,10351,"turk",2,1,35,1,35,NA,NA,"Democrat" +1,NA,10353,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,10356,"turk",4,1,99,1,99,NA,NA,"Republican" +1,NA,10358,"turk",2,1,50,1,50,NA,NA,"Republican" +1,NA,10362,"turk",3,1,99,1,99,NA,NA,"Democrat" +1,NA,10363,"turk",3,1,80,1,80,NA,NA,"Republican" +1,NA,10364,"turk",4,1,1,1,1,NA,NA,"Democrat" +1,NA,10366,"turk",3,1,80,1,80,NA,NA,"Democrat" +1,NA,10372,"turk",3,1,60,1,60,NA,NA,"Neither" +1,NA,10375,"turk",2,1,90,1,90,NA,NA,"Democrat" +1,NA,10377,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,10378,"turk",2,1,50,1,50,NA,NA,"Neither" +1,NA,10379,"turk",2,1,70,1,70,NA,NA,"Democrat" +1,NA,10380,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10383,"turk",5,1,66,1,66,NA,NA,"Democrat" +1,NA,10383,"turk",5,1,68,2,68,66,NA,"Democrat" +1,NA,10383,"turk",5,1,44,3,44,68,NA,"Democrat" +1,NA,10383,"turk",5,1,60,4,60,44,NA,"Democrat" +1,NA,10383,"turk",5,1,45,5,45,60,NA,"Democrat" +1,NA,10388,"turk",3,1,70,1,70,NA,NA,"Neither" +1,NA,10393,"turk",3,1,100,1,100,NA,NA,"Democrat" +1,NA,10395,"turk",2,1,85,1,85,NA,NA,"Neither" +1,NA,10397,"turk",2,1,99,1,99,NA,NA,"Neither" +1,NA,10399,"turk",5,1,90,1,90,NA,NA,"Democrat" +1,NA,10399,"turk",5,1,99,2,99,90,NA,"Democrat" +1,NA,10399,"turk",5,1,99,3,99,99,NA,"Democrat" +1,NA,10399,"turk",5,1,99,4,99,99,NA,"Democrat" +1,NA,10399,"turk",5,1,99,5,99,99,NA,"Democrat" +1,NA,10400,"turk",1,1,1,1,1,NA,NA,"Neither" +1,NA,10400,"turk",1,1,75,2,75,1,NA,"Neither" +1,NA,10400,"turk",1,1,85,3,85,75,NA,"Neither" +1,NA,10400,"turk",1,1,99,4,99,85,NA,"Neither" +1,NA,10400,"turk",1,1,99,5,99,99,NA,"Neither" +1,NA,10401,"turk",2,1,1,1,1,NA,NA,"Republican" +1,NA,10405,"turk",2,1,99,1,99,NA,NA,"Democrat" +1,NA,10407,"turk",3,1,75,1,75,NA,NA,"Neither" +1,NA,10414,"turk",5,1,100,1,100,NA,NA,"Neither" +1,NA,10414,"turk",5,1,55,2,55,100,NA,"Neither" +1,NA,10414,"turk",5,1,1,3,1,55,NA,"Neither" +1,NA,10414,"turk",5,1,1,4,1,1,NA,"Neither" +1,NA,10414,"turk",5,1,50,5,50,1,NA,"Neither" +1,NA,10415,"turk",3,1,90,1,90,NA,NA,"Democrat" +1,NA,10420,"turk",2,1,99,1,99,NA,NA,"Republican" +1,NA,10421,"turk",2,1,1,1,1,NA,NA,"Democrat" +1,NA,10424,"turk",3,1,1,1,1,NA,NA,"Republican" +1,NA,10428,"turk",3,1,90,1,90,NA,NA,"Republican" +1,NA,10430,"turk",2,1,50,1,50,NA,NA,"Neither" +1,NA,10431,"turk",1,1,1,1,1,NA,NA,"Republican" +1,NA,10431,"turk",1,1,99,2,99,1,NA,"Republican" +1,NA,10431,"turk",1,1,0,3,0,99,NA,"Republican" +1,NA,10431,"turk",1,1,99,4,99,0,NA,"Republican" +1,NA,10431,"turk",1,1,0,5,0,99,NA,"Republican" +1,NA,10432,"turk",3,1,80,1,80,NA,NA,"Democrat" +1,NA,10434,"turk",2,1,90,1,90,NA,NA,"Democrat" +1,NA,10435,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,10436,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,10437,"turk",4,1,55,1,55,NA,NA,"Democrat" +1,NA,10438,"turk",5,1,30,1,30,NA,NA,"Republican" +1,NA,10438,"turk",5,1,40,2,40,30,NA,"Republican" +1,NA,10438,"turk",5,1,30,3,30,40,NA,"Republican" +1,NA,10438,"turk",5,1,30,4,30,30,NA,"Republican" +1,NA,10438,"turk",5,1,50,5,50,30,NA,"Republican" +1,NA,10445,"turk",2,1,0,1,0,NA,NA,"Democrat" +1,NA,10446,"turk",3,1,60,1,60,NA,NA,"Democrat" +1,NA,10447,"turk",4,1,99,1,99,NA,NA,"Neither" +1,NA,10449,"turk",1,1,99,1,99,NA,NA,"Democrat" +1,NA,10449,"turk",1,1,99,2,99,99,NA,"Democrat" +1,NA,10449,"turk",1,1,99,3,99,99,NA,"Democrat" +1,NA,10449,"turk",1,1,99,4,99,99,NA,"Democrat" +1,NA,10449,"turk",1,1,99,5,99,99,NA,"Democrat" +1,NA,10451,"turk",2,1,85,1,85,NA,NA,"Republican" +1,NA,10452,"turk",5,1,50,1,50,NA,NA,"Neither" +1,NA,10452,"turk",5,1,99,2,99,50,NA,"Neither" +1,NA,10452,"turk",5,1,100,3,100,99,NA,"Neither" +1,NA,10452,"turk",5,1,100,4,100,100,NA,"Neither" +1,NA,10452,"turk",5,1,99,5,99,100,NA,"Neither" +1,NA,10453,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,10455,"turk",4,1,50,1,50,NA,NA,"Democrat" +1,NA,10461,"turk",3,1,80,1,80,NA,NA,"Democrat" +1,NA,10462,"turk",2,1,99,1,99,NA,NA,"Republican" +1,NA,10465,"turk",2,1,99,1,99,NA,NA,"Democrat" +1,NA,10471,"turk",4,1,1,1,1,NA,NA,"Democrat" +1,NA,10472,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10477,"turk",3,1,50,1,50,NA,NA,"Republican" +1,NA,10478,"turk",2,1,80,1,80,NA,NA,"Neither" +1,NA,10480,"turk",4,1,66,1,66,NA,NA,"Neither" +1,NA,10482,"turk",3,1,80,1,80,NA,NA,"Republican" +1,NA,10484,"turk",2,1,50,1,50,NA,NA,"Democrat" +1,NA,10487,"turk",5,1,40,1,40,NA,NA,"Democrat" +1,NA,10487,"turk",5,1,30,2,30,40,NA,"Democrat" +1,NA,10487,"turk",5,1,30,3,30,30,NA,"Democrat" +1,NA,10487,"turk",5,1,20,4,20,30,NA,"Democrat" +1,NA,10487,"turk",5,1,30,5,30,20,NA,"Democrat" +1,NA,10491,"turk",4,1,10,1,10,NA,NA,"Democrat" +1,NA,10492,"turk",4,1,40,1,40,NA,NA,"Democrat" +1,NA,10494,"turk",4,1,50,1,50,NA,NA,"Republican" +1,NA,10495,"turk",4,1,80,1,80,NA,NA,"Neither" +1,NA,10496,"turk",3,1,25,1,25,NA,NA,"Republican" +1,NA,10497,"turk",3,1,1,1,1,NA,NA,"Democrat" +1,NA,10498,"turk",2,1,80,1,80,NA,NA,"Republican" +1,NA,10502,"turk",5,1,50,1,50,NA,NA,"Democrat" +1,NA,10502,"turk",5,1,60,2,60,50,NA,"Democrat" +1,NA,10502,"turk",5,1,70,3,70,60,NA,"Democrat" +1,NA,10502,"turk",5,1,70,4,70,70,NA,"Democrat" +1,NA,10502,"turk",5,1,80,5,80,70,NA,"Democrat" +1,NA,10509,"turk",1,1,50,1,50,NA,NA,"Democrat" +1,NA,10509,"turk",1,1,50,2,50,50,NA,"Democrat" +1,NA,10509,"turk",1,1,50,3,50,50,NA,"Democrat" +1,NA,10509,"turk",1,1,99,4,99,50,NA,"Democrat" +1,NA,10509,"turk",1,1,99,5,99,99,NA,"Democrat" +1,NA,10511,"turk",2,1,1,1,1,NA,NA,"Democrat" +1,NA,10512,"turk",4,1,100,1,100,NA,NA,"Democrat" +1,NA,10515,"turk",2,1,1,1,1,NA,NA,"Republican" +1,NA,10516,"turk",2,1,1,1,1,NA,NA,"Democrat" +1,NA,10518,"turk",2,1,99,1,99,NA,NA,"Republican" +1,NA,10519,"turk",2,1,99,1,99,NA,NA,"Republican" +1,NA,10520,"turk",2,1,0,1,0,NA,NA,"Democrat" +1,NA,10524,"turk",3,1,10,1,10,NA,NA,"Democrat" +1,NA,10527,"turk",4,1,99,1,99,NA,NA,"Democrat" +1,NA,10530,"turk",1,1,75,1,75,NA,NA,"Democrat" +1,NA,10530,"turk",1,1,85,2,85,75,NA,"Democrat" +1,NA,10530,"turk",1,1,95,3,95,85,NA,"Democrat" +1,NA,10530,"turk",1,1,99,4,99,95,NA,"Democrat" +1,NA,10530,"turk",1,1,99,5,99,99,NA,"Democrat" +1,NA,10531,"turk",3,1,99,1,99,NA,NA,"Neither" +1,NA,10532,"turk",5,1,78,1,78,NA,NA,"Democrat" +1,NA,10532,"turk",5,1,90,2,90,78,NA,"Democrat" +1,NA,10532,"turk",5,1,65,3,65,90,NA,"Democrat" +1,NA,10532,"turk",5,1,89,4,89,65,NA,"Democrat" +1,NA,10532,"turk",5,1,95,5,95,89,NA,"Democrat" +1,NA,10533,"turk",1,1,70,1,70,NA,NA,"Democrat" +1,NA,10533,"turk",1,1,90,2,90,70,NA,"Democrat" +1,NA,10533,"turk",1,1,99,3,99,90,NA,"Democrat" +1,NA,10533,"turk",1,1,99,4,99,99,NA,"Democrat" +1,NA,10533,"turk",1,1,99,5,99,99,NA,"Democrat" +1,NA,10535,"turk",5,1,50,1,50,NA,NA,"Republican" +1,NA,10535,"turk",5,1,25,2,25,50,NA,"Republican" +1,NA,10535,"turk",5,1,45,3,45,25,NA,"Republican" +1,NA,10535,"turk",5,1,75,4,75,45,NA,"Republican" +1,NA,10535,"turk",5,1,100,5,100,75,NA,"Republican" +1,1,62,"tess",4,0,4,2,96,100,"CNN","Democrat" +1,1,68,"tess",4,1,88,2,88,50,"CNN","Democrat" +1,1,72,"tess",2,0,45,2,55,66,"CNN","Democrat" +1,1,80,"tess",2,1,0,3,0,89,"CNN","Republican" +1,1,94,"tess",1,0,99,2,1,1,"CNN","Republican" +1,1,96,"tess",4,0,55,2,45,43,"CNN","Democrat" +1,1,114,"tess",2,1,99,3,99,99,"CNN","Republican" +1,1,118,"tess",2,0,40,2,60,30,"CNN","Democrat" +1,1,120,"tess",4,1,100,2,100,99,"CNN","Democrat" +1,1,136,"tess",2,0,1,2,99,50,"CNN","Democrat" +1,1,140,"tess",1,1,99,2,99,90,"CNN","Republican" +1,1,152,"tess",1,1,51,3,51,84,"CNN","Neither" +1,1,182,"tess",2,1,84,3,84,90,"CNN","Democrat" +1,1,187,"tess",3,1,90,2,90,50,"CNN","Republican" +1,1,216,"tess",2,1,95,2,95,77,"CNN","Democrat" +1,1,221,"tess",2,1,100,3,100,100,"CNN","Democrat" +1,1,224,"tess",4,1,10,2,10,76,"CNN","Democrat" +1,1,234,"tess",4,1,99,2,99,99,"CNN","Democrat" +1,1,266,"tess",1,1,40,2,40,90,"CNN","Democrat" +1,1,296,"tess",1,1,98,2,98,50,"CNN","Republican" +1,1,301,"tess",2,0,60,2,40,30,"CNN","Democrat" +1,1,336,"tess",3,0,10,2,90,10,"CNN","Republican" +1,1,347,"tess",2,1,21,2,21,39,"CNN","Democrat" +1,1,363,"tess",3,0,98,3,2,71,"CNN","Republican" +1,1,372,"tess",3,1,70,2,70,50,"CNN","Republican" +1,1,389,"tess",1,0,1,2,99,40,"CNN","Democrat" +1,1,397,"tess",2,0,100,2,0,100,"CNN","Democrat" +1,1,405,"tess",3,0,0,3,100,0,"CNN","Republican" +1,1,421,"tess",1,1,95,2,95,95,"CNN","Democrat" +1,1,431,"tess",4,0,58,2,42,55,"CNN","Democrat" +1,1,450,"tess",3,1,10,3,10,87,"CNN","Republican" +1,1,478,"tess",4,1,73,2,73,28,"CNN","Democrat" +1,1,482,"tess",3,1,77,3,77,70,"CNN","Democrat" +1,1,503,"tess",2,1,50,2,50,50,"CNN","Republican" +1,1,509,"tess",3,0,50,2,50,10,"CNN","Democrat" +1,1,516,"tess",3,0,8,3,92,92,"CNN","Democrat" +1,1,541,"tess",3,0,51,3,49,60,"CNN","Democrat" +1,1,549,"tess",2,1,40,2,40,53,"CNN","Democrat" +1,1,567,"tess",1,1,0,2,0,0,"CNN","Democrat" +1,1,573,"tess",1,0,84,2,16,0,"CNN","Democrat" +1,1,584,"tess",2,0,35,3,65,69,"CNN","Democrat" +1,1,591,"tess",4,1,73,2,73,52,"CNN","Democrat" +1,1,600,"tess",1,1,100,2,100,100,"CNN","Republican" +1,1,603,"tess",1,0,20,2,80,20,"CNN","Democrat" +1,1,608,"tess",3,0,50,2,50,80,"CNN","Democrat" +1,1,617,"tess",1,0,100,3,0,0,"CNN","Republican" +1,1,622,"tess",2,0,83,2,17,92,"CNN","Democrat" +1,1,627,"tess",2,0,67,3,33,33,"CNN","Democrat" +1,1,684,"tess",3,0,50,3,50,50,"CNN","Republican" +1,1,689,"tess",1,0,50,3,50,10,"CNN","Democrat" +1,1,702,"tess",1,1,81,2,81,84,"CNN","Democrat" +1,1,709,"tess",2,1,91,3,91,100,"CNN","Republican" +1,1,711,"tess",3,0,73,3,27,69,"CNN","Democrat" +1,1,727,"tess",1,1,NA,3,NA,NA,"CNN","Republican" +1,1,728,"tess",3,1,99,3,99,95,"CNN","Democrat" +1,1,740,"tess",4,0,99,2,1,1,"CNN","Democrat" +1,1,752,"tess",4,0,90,2,10,50,"CNN","Democrat" +1,1,753,"tess",2,0,90,2,10,5,"CNN","Republican" +1,1,766,"tess",4,1,50,2,50,33,"CNN","Republican" +1,1,783,"tess",2,0,19,2,81,3,"CNN","Democrat" +1,1,786,"tess",2,0,80,2,20,90,"CNN","Republican" +1,1,794,"tess",3,0,60,2,40,21,"CNN","Democrat" +1,1,806,"tess",1,1,50,3,50,50,"CNN","Democrat" +1,1,823,"tess",2,1,100,2,100,84,"CNN","Democrat" +1,1,828,"tess",2,0,80,3,20,40,"CNN","Neither" +1,1,861,"tess",1,0,0,3,100,98,"CNN","Democrat" +1,1,878,"tess",1,0,11,2,89,10,"CNN","Democrat" +1,1,890,"tess",1,0,76,3,24,59,"CNN","Republican" +1,1,895,"tess",3,0,75,3,25,74,"CNN","Democrat" +1,1,912,"tess",4,0,49,2,51,50,"CNN","Democrat" +1,1,918,"tess",1,1,66,2,66,79,"CNN","Republican" +1,1,922,"tess",2,1,81,3,81,69,"CNN","Republican" +1,1,943,"tess",3,0,90,2,10,20,"CNN","Republican" +1,1,952,"tess",1,0,79,2,21,50,"CNN","Republican" +1,1,968,"tess",2,0,0,3,100,99,"CNN","Democrat" +1,1,978,"tess",1,1,48,3,48,55,"CNN","Democrat" +1,1,985,"tess",1,1,100,3,100,99,"CNN","Republican" +1,1,990,"tess",1,1,25,3,25,59,"CNN","Republican" +1,1,997,"tess",4,0,40,2,60,2,"CNN","Democrat" +1,1,1018,"tess",3,1,89,3,89,79,"CNN","Republican" +1,1,1058,"tess",1,1,70,2,70,40,"CNN","Republican" +1,1,1064,"tess",1,0,50,2,50,50,"CNN","Democrat" +1,1,1068,"tess",2,0,70,2,30,39,"CNN","Republican" +1,1,1081,"tess",4,0,92,2,8,50,"CNN","Democrat" +1,1,1096,"tess",4,1,0,2,0,0,"CNN","Democrat" +1,1,1110,"tess",4,1,90,2,90,96,"CNN","Neither" +1,1,1122,"tess",1,0,0,3,100,0,"CNN","Republican" +1,1,1141,"tess",1,0,75,3,25,21,"CNN","Democrat" +1,1,1148,"tess",2,1,99,2,99,90,"CNN","Republican" +1,1,1149,"tess",2,1,91,2,91,42,"CNN","Democrat" +1,1,1178,"tess",1,0,15,3,85,92,"CNN","Republican" +1,1,1182,"tess",3,0,42,2,58,65,"CNN","Republican" +1,1,1193,"tess",1,0,99,3,1,2,"CNN","Democrat" +1,1,1235,"tess",3,0,50,2,50,9,"CNN","Republican" +1,1,1246,"tess",1,0,54,2,46,100,"CNN","Republican" +1,1,1256,"tess",2,0,86,3,14,82,"CNN","Democrat" +1,1,1285,"tess",3,1,29,3,29,60,"CNN","Neither" +1,1,1304,"tess",3,1,50,2,50,50,"CNN","Democrat" +1,1,1307,"tess",2,0,20,2,80,20,"CNN","Republican" +1,1,1309,"tess",3,1,NA,2,NA,100,"CNN","Democrat" +1,1,1314,"tess",4,1,89,2,89,69,"CNN","Democrat" +1,1,1330,"tess",1,1,97,3,97,90,"CNN","Republican" +1,1,1348,"tess",2,0,89,2,11,60,"CNN","Democrat" +1,1,1366,"tess",1,1,77,3,77,85,"CNN","Democrat" +1,1,1376,"tess",4,0,9,2,91,3,"CNN","Democrat" +1,1,1408,"tess",1,0,10,2,90,10,"CNN","Democrat" +1,1,1416,"tess",3,1,80,3,80,83,"CNN","Republican" +1,1,1426,"tess",3,1,80,3,80,20,"CNN","Democrat" +1,1,1445,"tess",3,0,79,2,21,11,"CNN","Republican" +1,1,1461,"tess",4,1,73,2,73,90,"CNN","Democrat" +1,1,1491,"tess",2,1,100,3,100,100,"CNN","Republican" +1,1,1500,"tess",4,0,97,2,3,4,"CNN","Democrat" +1,1,1530,"tess",1,0,56,2,44,51,"CNN","Republican" +1,1,1541,"tess",3,0,30,2,70,49,"CNN","Republican" +1,1,1551,"tess",1,1,71,3,71,82,"CNN","Republican" +1,1,1556,"tess",4,0,10,2,90,25,"CNN","Democrat" +1,1,1565,"tess",1,0,90,2,10,10,"CNN","Democrat" +1,1,1600,"tess",1,1,100,2,100,100,"CNN","Republican" +1,1,1605,"tess",1,1,61,2,61,9,"CNN","Republican" +1,1,1608,"tess",3,1,90,2,90,10,"CNN","Republican" +1,1,1631,"tess",4,1,100,2,100,81,"CNN","Democrat" +1,1,1644,"tess",2,0,65,2,35,49,"CNN","Democrat" +1,1,1654,"tess",4,0,30,2,70,9,"CNN","Democrat" +1,1,1657,"tess",1,1,99,2,99,40,"CNN","Republican" +1,1,1668,"tess",3,1,42,2,42,81,"CNN","Democrat" +1,1,1669,"tess",4,1,16,2,16,80,"CNN","Democrat" +1,1,1706,"tess",1,0,100,2,0,10,"CNN","Democrat" +1,1,1724,"tess",1,0,99,2,1,25,"CNN","Democrat" +1,1,1728,"tess",2,0,40,3,60,20,"CNN","Democrat" +1,1,1798,"tess",3,1,100,3,100,99,"CNN","Democrat" +1,1,1815,"tess",2,0,51,3,49,21,"CNN","Republican" +1,1,1824,"tess",2,1,99,3,99,100,"CNN","Republican" +1,1,1834,"tess",4,1,98,2,98,100,"CNN","Neither" +1,1,1835,"tess",3,1,3,3,3,3,"CNN","Neither" +1,1,1841,"tess",3,0,72,2,28,24,"CNN","Republican" +1,1,1851,"tess",4,1,85,2,85,88,"CNN","Democrat" +1,1,1856,"tess",3,0,49,2,51,25,"CNN","Republican" +1,1,1863,"tess",2,0,51,2,49,50,"CNN","Republican" +1,1,1890,"tess",2,1,80,3,80,73,"CNN","Democrat" +1,1,1891,"tess",2,1,100,3,100,98,"CNN","Republican" +1,1,1898,"tess",2,1,60,2,60,50,"CNN","Democrat" +1,1,1899,"tess",4,1,100,2,100,95,"CNN","Democrat" +1,1,1900,"tess",1,0,30,2,70,20,"CNN","Republican" +1,1,1924,"tess",2,1,69,3,69,88,"CNN","Democrat" +1,1,1928,"tess",2,1,96,2,96,96,"CNN","Democrat" +1,1,1933,"tess",1,0,50,2,50,70,"CNN","Democrat" +1,1,1945,"tess",3,1,13,2,13,8,"CNN","Democrat" +1,1,1952,"tess",2,1,NA,2,NA,20,"CNN","Democrat" +1,1,1953,"tess",2,0,86,3,14,9,"CNN","Republican" +1,1,1973,"tess",2,0,50,3,50,50,"CNN","Democrat" +1,1,1976,"tess",3,1,74,3,74,93,"CNN","Republican" +1,1,1981,"tess",1,0,66,3,34,47,"CNN","Democrat" +1,1,1982,"tess",2,1,99,3,99,100,"CNN","Democrat" +1,1,1994,"tess",2,1,98,3,98,99,"CNN","Republican" +1,1,2033,"tess",1,0,59,2,41,14,"CNN","Democrat" +1,1,2044,"tess",4,1,75,2,75,82,"CNN","Republican" +1,1,2057,"tess",1,1,85,3,85,97,"CNN","Republican" +1,1,2066,"tess",3,0,98,2,2,2,"CNN","Republican" +1,1,2082,"tess",2,1,100,3,100,95,"CNN","Democrat" +1,1,2104,"tess",1,0,24,2,76,1,"CNN","Republican" +1,1,2120,"tess",3,1,90,3,90,89,"CNN","Republican" +1,1,2124,"tess",2,1,50,3,50,91,"CNN","Republican" +1,1,2137,"tess",1,1,100,3,100,80,"CNN","Democrat" +1,1,2147,"tess",2,0,94,2,6,9,"CNN","Democrat" +1,1,2153,"tess",1,0,80,2,20,6,"CNN","Democrat" +1,1,2169,"tess",2,0,48,2,52,2,"CNN","Democrat" +1,1,2179,"tess",2,1,NA,3,NA,50,"CNN","Democrat" +1,1,2213,"tess",1,1,99,2,99,99,"CNN","Neither" +1,1,2218,"tess",3,0,98,2,2,8,"CNN","Republican" +1,1,2235,"tess",1,1,80,2,80,90,"CNN","Republican" +1,1,2238,"tess",1,1,41,3,41,92,"CNN","Democrat" +1,1,2253,"tess",4,1,98,2,98,99,"CNN","Democrat" +1,1,2287,"tess",1,0,40,3,60,70,"CNN","Democrat" +1,1,2315,"tess",4,1,78,2,78,75,"CNN","Democrat" +1,1,2318,"tess",2,1,90,3,90,80,"CNN","Democrat" +1,1,2337,"tess",1,1,90,2,90,20,"CNN","Democrat" +1,1,2353,"tess",4,1,100,2,100,100,"CNN","Democrat" +1,1,2378,"tess",4,0,92,2,8,13,"CNN","Democrat" +1,1,2379,"tess",4,0,84,2,16,37,"CNN","Republican" +1,1,2381,"tess",4,1,36,2,36,92,"CNN","Democrat" +1,1,2383,"tess",1,0,84,2,16,20,"CNN","Republican" +1,1,2393,"tess",1,1,89,2,89,90,"CNN","Democrat" +1,1,2394,"tess",1,1,74,2,74,70,"CNN","Democrat" +1,1,2405,"tess",4,1,67,2,67,69,"CNN","Democrat" +1,1,2407,"tess",1,0,97,3,3,0,"CNN","Republican" +1,1,2412,"tess",2,1,80,2,80,70,"CNN","Democrat" +1,1,2434,"tess",3,1,65,2,65,50,"CNN","Democrat" +1,1,2435,"tess",4,0,92,2,8,16,"CNN","Democrat" +1,1,2459,"tess",4,0,70,2,30,70,"CNN","Democrat" +1,1,2460,"tess",2,0,11,2,89,33,"CNN","Democrat" +1,1,2468,"tess",1,1,90,2,90,79,"CNN","Democrat" +1,1,2485,"tess",3,0,90,3,10,40,"CNN","Democrat" +1,1,2486,"tess",3,1,100,3,100,100,"CNN","Republican" +1,1,2498,"tess",4,1,95,2,95,94,"CNN","Republican" +1,1,2508,"tess",2,1,100,3,100,98,"CNN","Democrat" +1,1,2520,"tess",3,0,99,2,1,1,"CNN","Democrat" +1,1,2528,"tess",1,1,100,3,100,99,"CNN","Democrat" +1,1,2529,"tess",2,0,51,3,49,49,"CNN","Democrat" +1,1,2536,"tess",4,0,50,2,50,50,"CNN","Democrat" +1,1,2608,"tess",4,1,95,2,95,99,"CNN","Democrat" +1,1,2632,"tess",1,1,50,2,50,60,"CNN","Democrat" +1,1,2664,"tess",4,1,83,2,83,89,"CNN","Democrat" +1,1,2707,"tess",4,0,63,2,37,14,"CNN","Democrat" +1,1,2715,"tess",1,1,95,2,95,79,"CNN","Republican" +1,1,2740,"tess",3,1,0,3,0,0,"CNN","Democrat" +1,1,2741,"tess",1,1,100,3,100,100,"CNN","Democrat" +1,1,2767,"tess",3,0,42,3,58,57,"CNN","Democrat" +1,1,2771,"tess",4,0,83,2,17,44,"CNN","Democrat" +1,1,2778,"tess",1,1,79,2,79,79,"CNN","Republican" +1,1,2779,"tess",2,0,30,3,70,94,"CNN","Democrat" +1,1,2799,"tess",3,1,50,3,50,8,"CNN","Republican" +1,1,2808,"tess",4,1,100,2,100,81,"CNN","Democrat" +1,1,2818,"tess",1,0,86,3,14,20,"CNN","Democrat" +1,1,2828,"tess",4,0,39,2,61,6,"CNN","Republican" +1,1,2829,"tess",4,1,80,2,80,70,"CNN","Democrat" +1,1,2843,"tess",2,1,52,3,52,50,"CNN","Democrat" +1,1,2852,"tess",1,1,94,3,94,96,"CNN","Republican" +1,1,2888,"tess",3,1,90,2,90,90,"CNN","Democrat" +1,1,2902,"tess",2,0,80,3,20,20,"CNN","Democrat" +1,1,2905,"tess",1,0,60,3,40,39,"CNN","Democrat" +1,1,2906,"tess",4,1,4,2,4,99,"CNN","Democrat" +1,1,2917,"tess",3,0,19,2,81,52,"CNN","Republican" +1,1,2934,"tess",3,1,40,3,40,40,"CNN","Democrat" +1,1,2938,"tess",1,0,86,3,14,50,"CNN","Republican" +1,1,2953,"tess",1,0,3,2,97,50,"CNN","Neither" +1,1,2979,"tess",2,0,49,3,51,1,"CNN","Democrat" +1,1,2982,"tess",1,1,90,3,90,60,"CNN","Democrat" +1,1,2983,"tess",3,0,96,3,4,8,"CNN","Democrat" +1,1,2998,"tess",3,1,100,3,100,100,"CNN","Republican" +1,1,3006,"tess",4,0,NA,2,NA,50,"CNN","Democrat" +1,1,3011,"tess",3,1,6,2,6,5,"CNN","Republican" +1,1,3021,"tess",3,0,70,3,30,30,"CNN","Democrat" +1,1,3025,"tess",3,1,1,2,1,1,"CNN","Democrat" +1,1,3029,"tess",1,1,74,3,74,67,"CNN","Democrat" +1,1,3039,"tess",3,1,90,3,90,90,"CNN","Republican" +1,1,3043,"tess",3,0,7,2,93,48,"CNN","Democrat" +1,1,3068,"tess",4,0,90,2,10,40,"CNN","Democrat" +1,1,3071,"tess",4,0,44,2,56,21,"CNN","Democrat" +1,1,3076,"tess",2,0,100,2,0,50,"CNN","Republican" +1,1,3096,"tess",3,1,99,3,99,99,"CNN","Republican" +1,1,3102,"tess",2,1,57,2,57,55,"CNN","Democrat" +1,1,3111,"tess",3,0,50,3,50,49,"CNN","Democrat" +1,1,3123,"tess",3,0,10,3,90,70,"CNN","Democrat" +1,1,3128,"tess",3,0,20,2,80,50,"CNN","Republican" +1,1,3137,"tess",2,1,95,3,95,85,"CNN","Democrat" +1,1,3155,"tess",4,1,95,2,95,99,"CNN","Neither" +1,1,3170,"tess",1,1,70,2,70,51,"CNN","Democrat" +1,1,3172,"tess",4,0,90,2,10,50,"CNN","Democrat" +1,1,3186,"tess",3,1,91,3,91,60,"CNN","Democrat" +1,1,3195,"tess",1,0,50,3,50,49,"CNN","Democrat" +1,1,3197,"tess",2,1,80,3,80,30,"CNN","Democrat" +1,1,3201,"tess",4,0,75,2,25,28,"CNN","Republican" +1,1,3223,"tess",1,0,99,2,1,50,"CNN","Democrat" +1,1,3225,"tess",2,1,38,3,38,39,"CNN","Republican" +1,1,3226,"tess",1,1,94,3,94,95,"CNN","Republican" +1,1,3230,"tess",2,0,90,3,10,0,"CNN","Republican" +1,1,3234,"tess",1,1,90,2,90,90,"CNN","Republican" +1,1,3244,"tess",2,1,93,2,93,83,"CNN","Republican" +1,1,3259,"tess",2,1,100,3,100,100,"CNN","Republican" +1,1,3262,"tess",4,0,56,2,44,55,"CNN","Republican" +1,1,3263,"tess",1,0,42,3,58,59,"CNN","Democrat" +1,1,3281,"tess",2,1,98,3,98,98,"CNN","Democrat" +1,1,3288,"tess",2,0,50,3,50,50,"CNN","Republican" +1,1,3320,"tess",1,0,21,3,79,78,"CNN","Democrat" +1,1,3333,"tess",2,1,90,2,90,41,"CNN","Democrat" +1,1,3335,"tess",1,1,76,2,76,70,"CNN","Democrat" +1,1,3348,"tess",1,0,20,3,80,30,"CNN","Democrat" +1,1,3364,"tess",2,0,32,2,68,17,"CNN","Democrat" +1,1,3371,"tess",3,0,85,2,15,13,"CNN","Democrat" +1,1,3412,"tess",2,1,74,3,74,80,"CNN","Democrat" +1,1,3419,"tess",2,0,99,2,1,1,"CNN","Democrat" +1,1,3424,"tess",4,1,16,2,16,46,"CNN","Democrat" +1,1,3430,"tess",4,0,100,2,0,60,"CNN","Democrat" +1,1,3435,"tess",1,1,50,3,50,50,"CNN","Republican" +1,1,3437,"tess",3,1,95,3,95,95,"CNN","Republican" +1,1,3494,"tess",4,1,91,2,91,75,"CNN","Democrat" +1,1,3508,"tess",3,1,86,2,86,51,"CNN","Republican" +1,1,3535,"tess",1,1,90,3,90,90,"CNN","Democrat" +1,1,3536,"tess",4,0,0,2,100,0,"CNN","Republican" +1,1,3562,"tess",3,1,57,3,57,60,"CNN","Democrat" +1,1,3573,"tess",3,0,39,2,61,35,"CNN","Democrat" +1,1,3587,"tess",2,1,2,2,2,3,"CNN","Democrat" +1,1,3593,"tess",4,0,23,2,77,20,"CNN","Democrat" +1,1,3607,"tess",2,1,95,3,95,100,"CNN","Republican" +1,1,3612,"tess",3,0,40,2,60,10,"CNN","Republican" +1,1,3627,"tess",2,0,10,3,90,90,"CNN","Republican" +1,1,3629,"tess",2,0,19,3,81,60,"CNN","Republican" +1,1,3634,"tess",3,0,88,2,12,66,"CNN","Democrat" +1,1,3656,"tess",4,0,6,2,94,49,"CNN","Democrat" +1,1,3676,"tess",2,0,0,2,100,49,"CNN","Republican" +1,1,3708,"tess",3,0,18,2,82,0,"CNN","Democrat" +1,1,3710,"tess",3,0,60,2,40,20,"CNN","Democrat" +1,1,3725,"tess",1,1,83,3,83,90,"CNN","Republican" +1,1,3726,"tess",2,1,72,2,72,60,"CNN","Democrat" +1,1,3767,"tess",2,0,89,2,11,6,"CNN","Republican" +1,1,3774,"tess",3,0,30,3,70,30,"CNN","Neither" +1,1,3820,"tess",1,0,90,2,10,10,"CNN","Democrat" +1,1,3845,"tess",1,1,73,3,73,37,"CNN","Democrat" +1,1,3851,"tess",4,1,95,2,95,97,"CNN","Republican" +1,1,3865,"tess",2,1,52,2,52,65,"CNN","Democrat" +1,1,3880,"tess",2,0,80,3,20,32,"CNN","Republican" +1,1,3895,"tess",4,1,50,2,50,50,"CNN","Republican" +1,1,3904,"tess",3,1,50,3,50,71,"CNN","Democrat" +1,1,3910,"tess",2,1,35,3,35,58,"CNN","Democrat" +1,1,3919,"tess",4,0,94,2,6,25,"CNN","Democrat" +1,1,3920,"tess",1,1,78,3,78,78,"CNN","Democrat" +1,1,3931,"tess",2,1,53,2,53,37,"CNN","Democrat" +1,1,3946,"tess",4,0,10,2,90,90,"CNN","Democrat" +1,1,3961,"tess",3,1,93,3,93,92,"CNN","Democrat" +1,1,3965,"tess",1,0,20,3,80,50,"CNN","Democrat" +1,1,3966,"tess",4,0,100,2,0,3,"CNN","Democrat" +1,1,4001,"tess",2,1,90,2,90,49,"CNN","Neither" +1,1,4039,"tess",1,0,20,3,80,80,"CNN","Democrat" +1,1,4046,"tess",2,1,92,2,92,10,"CNN","Democrat" +1,1,4049,"tess",2,0,7,2,93,50,"CNN","Neither" +1,1,4065,"tess",4,0,10,2,90,0,"CNN","Democrat" +1,1,4069,"tess",2,0,64,3,36,50,"CNN","Democrat" +1,1,4076,"tess",1,0,78,2,22,17,"CNN","Republican" +1,1,4079,"tess",3,1,93,3,93,98,"CNN","Democrat" +1,1,4084,"tess",2,1,64,3,64,56,"CNN","Republican" +1,1,4120,"tess",1,0,50,2,50,50,"CNN","Republican" +1,1,4142,"tess",2,1,0,2,0,100,"CNN","Democrat" +1,1,4160,"tess",3,1,70,3,70,70,"CNN","Democrat" +1,1,4163,"tess",2,0,78,3,22,23,"CNN","Republican" +1,1,4178,"tess",2,1,64,3,64,57,"CNN","Democrat" +1,1,4186,"tess",1,0,78,3,22,3,"CNN","Democrat" +1,1,4195,"tess",1,0,70,2,30,50,"CNN","Republican" +1,1,4199,"tess",2,1,87,3,87,41,"CNN","Democrat" +1,1,4200,"tess",2,1,70,3,70,70,"CNN","Democrat" +1,1,4227,"tess",2,1,50,2,50,35,"CNN","Democrat" +1,1,4238,"tess",3,0,88,3,12,13,"CNN","Democrat" +1,1,4266,"tess",1,1,0,3,0,98,"CNN","Democrat" +1,1,4269,"tess",1,1,90,2,90,90,"CNN","Republican" +1,1,4291,"tess",3,1,50,3,50,90,"CNN","Democrat" +1,1,4298,"tess",2,1,50,2,50,25,"CNN","Democrat" +1,1,4302,"tess",3,0,99,3,1,97,"CNN","Democrat" +1,1,4308,"tess",4,0,0,2,100,1,"CNN","Democrat" +1,1,4325,"tess",3,0,100,2,0,0,"CNN","Democrat" +1,1,4331,"tess",4,1,22,2,22,30,"CNN","Democrat" +1,1,4334,"tess",1,0,99,2,1,5,"CNN","Republican" +1,1,4335,"tess",2,0,70,3,30,30,"CNN","Republican" +1,1,4356,"tess",3,1,50,3,50,50,"CNN","Republican" +1,1,4357,"tess",3,1,99,2,99,100,"CNN","Democrat" +1,1,4370,"tess",2,1,61,3,61,44,"CNN","Republican" +1,1,4391,"tess",3,0,50,3,50,50,"CNN","Democrat" +1,1,4412,"tess",3,0,80,2,20,20,"CNN","Republican" +1,1,4420,"tess",3,1,30,2,30,50,"CNN","Democrat" +1,1,4441,"tess",1,1,100,2,100,81,"CNN","Democrat" +1,1,4452,"tess",3,0,97,2,3,2,"CNN","Republican" +1,1,4457,"tess",2,1,0,2,0,0,"CNN","Democrat" +1,1,4458,"tess",3,0,52,3,48,94,"CNN","Republican" +1,1,4516,"tess",2,1,86,3,86,76,"CNN","Democrat" +1,1,4552,"tess",2,1,100,3,100,95,"CNN","Democrat" +1,1,4584,"tess",3,0,50,2,50,50,"CNN","Democrat" +1,1,4628,"tess",3,0,50,2,50,50,"CNN","Democrat" +1,1,4632,"tess",3,1,89,3,89,80,"CNN","Democrat" +1,1,4656,"tess",4,1,5,2,5,5,"CNN","Democrat" +1,1,4663,"tess",3,1,94,2,94,20,"CNN","Democrat" +1,1,4713,"tess",1,0,50,2,50,50,"CNN","Neither" +1,1,4722,"tess",1,1,41,2,41,59,"CNN","Democrat" +1,1,4726,"tess",4,1,62,2,62,76,"CNN","Republican" +1,1,4737,"tess",3,1,10,3,10,0,"CNN","Democrat" +1,1,4740,"tess",3,1,20,2,20,90,"CNN","Republican" +1,1,4770,"tess",3,0,98,3,2,4,"CNN","Democrat" +1,1,4774,"tess",2,0,60,3,40,50,"CNN","Republican" +1,1,4780,"tess",2,0,92,3,8,5,"CNN","Republican" +1,1,4785,"tess",2,1,100,2,100,87,"CNN","Republican" +1,1,4789,"tess",2,1,25,3,25,62,"CNN","Democrat" +1,1,4792,"tess",3,1,56,2,56,56,"CNN","Republican" +1,1,4793,"tess",3,1,64,3,64,50,"CNN","Democrat" +1,1,4795,"tess",1,1,96,2,96,90,"CNN","Democrat" +1,1,4807,"tess",4,1,36,2,36,81,"CNN","Democrat" +1,1,4810,"tess",2,0,9,3,91,81,"CNN","Democrat" +1,1,4813,"tess",3,0,91,2,9,47,"CNN","Democrat" +1,1,4816,"tess",4,0,4,2,96,4,"CNN","Democrat" +1,1,4817,"tess",3,0,24,2,76,21,"CNN","Democrat" +1,1,4819,"tess",3,0,19,3,81,68,"CNN","Democrat" +1,1,4820,"tess",4,0,49,2,51,50,"CNN","Republican" +1,1,4831,"tess",1,1,30,3,30,78,"CNN","Neither" +1,1,4833,"tess",4,1,90,2,90,56,"CNN","Democrat" +1,1,4841,"tess",2,0,32,2,68,49,"CNN","Democrat" +1,1,4863,"tess",1,1,51,3,51,87,"CNN","Republican" +1,1,4869,"tess",1,1,0,2,0,0,"CNN","Democrat" +1,1,4897,"tess",3,0,60,2,40,50,"CNN","Democrat" +1,1,4899,"tess",3,0,94,3,6,15,"CNN","Democrat" +1,1,4905,"tess",2,0,98,3,2,97,"CNN","Democrat" +1,1,4925,"tess",4,1,80,2,80,84,"CNN","Democrat" +1,1,4926,"tess",1,1,99,3,99,99,"CNN","Democrat" +1,1,4940,"tess",1,0,90,2,10,94,"CNN","Republican" +1,1,4966,"tess",3,1,93,2,93,2,"CNN","Republican" +1,1,4969,"tess",1,0,75,3,25,22,"CNN","Democrat" +1,1,4977,"tess",2,0,88,2,12,0,"CNN","Republican" +1,1,4990,"tess",3,1,68,3,68,70,"CNN","Republican" +1,1,5004,"tess",1,1,19,2,19,88,"CNN","Democrat" +1,1,5008,"tess",3,1,23,2,23,83,"CNN","Republican" +1,1,5018,"tess",2,1,86,2,86,100,"CNN","Democrat" +1,1,5027,"tess",2,0,54,3,46,20,"CNN","Republican" +1,1,5029,"tess",4,1,75,2,75,82,"CNN","Republican" +1,1,5048,"tess",2,1,19,2,19,20,"CNN","Republican" +1,1,5058,"tess",2,1,70,2,70,50,"CNN","Republican" +1,1,5068,"tess",3,1,20,2,20,20,"CNN","Democrat" +1,1,5086,"tess",1,1,70,3,70,70,"CNN","Neither" +1,1,5101,"tess",2,1,99,2,99,50,"CNN","Democrat" +1,1,5108,"tess",1,1,94,3,94,85,"CNN","Republican" +1,1,5114,"tess",1,1,88,2,88,89,"CNN","Democrat" +1,1,5128,"tess",2,0,89,3,11,20,"CNN","Democrat" +1,1,5131,"tess",1,0,45,3,55,43,"CNN","Democrat" +1,1,5133,"tess",3,1,51,2,51,95,"CNN","Republican" +1,1,5137,"tess",1,0,50,3,50,50,"CNN","Democrat" +1,1,5160,"tess",3,1,70,2,70,50,"CNN","Democrat" +1,1,5162,"tess",4,0,50,2,50,40,"CNN","Neither" +1,1,5172,"tess",3,0,90,2,10,10,"CNN","Democrat" +1,1,5186,"tess",1,0,0,2,100,98,"CNN","Republican" +1,1,5192,"tess",1,1,72,3,72,50,"CNN","Democrat" +1,1,5224,"tess",1,1,67,2,67,99,"CNN","Republican" +1,1,5228,"tess",1,1,23,2,23,23,"CNN","Democrat" +1,1,5268,"tess",3,1,52,3,52,36,"CNN","Democrat" +1,1,5270,"tess",2,0,NA,2,NA,44,"CNN","Republican" +1,1,5275,"tess",3,0,100,3,0,0,"CNN","Democrat" +1,1,5279,"tess",4,0,100,2,0,0,"CNN","Democrat" +1,1,5288,"tess",3,1,52,3,52,7,"CNN","Democrat" +1,1,5290,"tess",1,0,67,3,33,20,"CNN","Republican" +1,1,5311,"tess",2,0,50,2,50,85,"CNN","Republican" +1,1,5318,"tess",3,1,20,3,20,0,"CNN","Democrat" +1,1,5319,"tess",2,0,9,3,91,90,"CNN","Democrat" +1,1,5363,"tess",2,1,3,3,3,3,"CNN","Republican" +1,1,5378,"tess",3,0,86,2,14,49,"CNN","Democrat" +1,1,5386,"tess",1,1,0,3,0,10,"CNN","Republican" +1,1,5388,"tess",1,1,92,3,92,86,"CNN","Republican" +1,1,5389,"tess",3,0,1,3,99,70,"CNN","Republican" +1,1,5392,"tess",1,1,69,2,69,50,"CNN","Democrat" +1,1,5393,"tess",3,1,27,2,27,84,"CNN","Republican" +1,1,5400,"tess",1,1,96,2,96,91,"CNN","Republican" +1,1,5406,"tess",2,0,46,3,54,55,"CNN","Republican" +1,1,5407,"tess",1,1,55,2,55,63,"CNN","Republican" +1,1,5411,"tess",2,1,80,2,80,70,"CNN","Republican" +1,1,5416,"tess",4,0,28,2,72,50,"CNN","Democrat" +1,1,5419,"tess",2,1,0,3,0,100,"CNN","Republican" +1,1,5456,"tess",4,1,99,2,99,99,"CNN","Democrat" +1,1,5470,"tess",4,1,69,2,69,50,"CNN","Democrat" +1,1,5475,"tess",4,0,98,2,2,2,"CNN","Democrat" +1,1,5500,"tess",3,1,50,3,50,45,"CNN","Democrat" +1,1,5509,"tess",3,1,85,3,85,21,"CNN","Democrat" +1,1,5515,"tess",3,1,95,3,95,90,"CNN","Republican" +1,1,5519,"tess",4,1,99,2,99,100,"CNN","Democrat" +1,1,5523,"tess",3,0,0,2,100,98,"CNN","Democrat" +1,1,5561,"tess",3,1,75,3,75,80,"CNN","Republican" +1,1,5575,"tess",1,0,100,3,0,55,"CNN","Democrat" +1,1,5576,"tess",2,1,74,2,74,75,"CNN","Democrat" +1,1,5579,"tess",2,0,38,2,62,15,"CNN","Republican" +1,1,5590,"tess",4,1,15,2,15,87,"CNN","Democrat" +1,1,5597,"tess",3,0,80,2,20,90,"CNN","Republican" +1,1,5612,"tess",1,0,20,3,80,63,"CNN","Democrat" +1,1,5614,"tess",1,0,56,3,44,21,"CNN","Democrat" +1,1,5617,"tess",1,0,99,2,1,11,"CNN","Democrat" +1,1,5620,"tess",3,1,92,2,92,60,"CNN","Democrat" +1,1,5626,"tess",4,0,0,2,100,100,"CNN","Democrat" +1,1,5635,"tess",2,0,50,3,50,1,"CNN","Republican" +1,1,5646,"tess",2,0,100,3,0,0,"CNN","Republican" +1,1,5648,"tess",1,1,42,3,42,100,"CNN","Democrat" +1,1,5654,"tess",1,1,54,3,54,41,"CNN","Democrat" +1,1,5663,"tess",3,0,71,3,29,30,"CNN","Democrat" +1,1,5676,"tess",2,0,3,3,97,99,"CNN","Democrat" +1,1,5679,"tess",3,1,42,3,42,65,"CNN","Democrat" +1,1,5683,"tess",4,1,31,2,31,81,"CNN","Democrat" +1,1,5691,"tess",3,1,64,3,64,51,"CNN","Democrat" +1,1,5715,"tess",4,1,50,2,50,49,"CNN","Republican" +1,1,5720,"tess",1,0,50,3,50,50,"CNN","Republican" +1,1,5726,"tess",4,0,5,2,95,4,"CNN","Democrat" +1,1,5730,"tess",2,0,41,2,59,26,"CNN","Republican" +1,1,5734,"tess",4,0,30,2,70,10,"CNN","Democrat" +1,1,5740,"tess",1,1,0,3,0,0,"CNN","Democrat" +1,1,5744,"tess",3,1,10,2,10,10,"CNN","Democrat" +1,1,5746,"tess",2,0,NA,3,NA,NA,"CNN","Democrat" +1,1,5751,"tess",2,1,50,2,50,15,"CNN","Republican" +1,1,5802,"tess",1,0,50,3,50,11,"CNN","Republican" +1,1,5804,"tess",2,1,40,3,40,68,"CNN","Republican" +1,1,5824,"tess",2,0,100,3,0,100,"CNN","Democrat" +1,1,5826,"tess",3,0,100,3,0,54,"CNN","Republican" +1,1,5833,"tess",2,0,88,2,12,61,"CNN","Democrat" +1,1,5842,"tess",1,0,9,3,91,50,"CNN","Democrat" +1,1,5844,"tess",3,1,50,3,50,50,"CNN","Democrat" +1,1,5854,"tess",3,1,50,2,50,1,"CNN","Democrat" +1,1,5873,"tess",4,1,1,2,1,25,"CNN","Democrat" +1,1,5874,"tess",4,1,43,2,43,47,"CNN","Democrat" +1,1,5914,"tess",3,0,79,3,21,33,"CNN","Republican" +1,1,5926,"tess",2,0,19,3,81,88,"CNN","Democrat" +1,1,5940,"tess",1,0,49,2,51,19,"CNN","Democrat" +1,1,5951,"tess",2,1,90,2,90,100,"CNN","Democrat" +1,1,5954,"tess",1,0,50,2,50,30,"CNN","Democrat" +1,1,5958,"tess",1,1,100,3,100,90,"CNN","Democrat" +1,1,5978,"tess",2,1,90,2,90,48,"CNN","Democrat" +1,1,5981,"tess",4,1,90,2,90,22,"CNN","Republican" +1,1,6008,"tess",1,1,90,3,90,90,"CNN","Republican" +1,1,6013,"tess",2,0,89,3,11,30,"CNN","Democrat" +1,1,6039,"tess",2,0,100,3,0,24,"CNN","Republican" +1,1,6041,"tess",2,0,70,2,30,70,"CNN","Democrat" +1,1,6045,"tess",3,1,12,3,12,20,"CNN","Republican" +1,1,6048,"tess",3,1,50,3,50,50,"CNN","Republican" +1,1,6050,"tess",1,1,83,2,83,19,"CNN","Republican" +1,1,6053,"tess",1,1,40,3,40,29,"CNN","Republican" +1,1,6061,"tess",4,0,81,2,19,50,"CNN","Democrat" +1,1,6068,"tess",1,1,50,3,50,50,"CNN","Democrat" +1,1,6069,"tess",4,0,30,2,70,19,"CNN","Democrat" +1,1,6073,"tess",3,0,10,3,90,60,"CNN","Democrat" +1,1,6084,"tess",4,1,98,2,98,75,"CNN","Democrat" +1,1,6088,"tess",1,0,86,3,14,20,"CNN","Republican" +1,1,6095,"tess",4,1,100,2,100,100,"CNN","Democrat" +1,1,6096,"tess",2,0,9,3,91,91,"CNN","Republican" +1,1,6097,"tess",3,0,53,2,47,25,"CNN","Republican" +1,1,6101,"tess",1,1,50,3,50,46,"CNN","Democrat" +1,1,6132,"tess",1,1,80,2,80,20,"CNN","Neither" +1,1,6136,"tess",4,0,80,2,20,48,"CNN","Democrat" +1,1,6137,"tess",2,0,15,3,85,89,"CNN","Democrat" +1,1,6138,"tess",1,0,30,2,70,25,"CNN","Democrat" +1,1,6144,"tess",3,1,54,2,54,48,"CNN","Democrat" +1,1,6151,"tess",3,1,70,2,70,50,"CNN","Democrat" +1,1,6152,"tess",2,0,20,2,80,40,"CNN","Democrat" +1,1,6155,"tess",1,1,98,3,98,100,"CNN","Democrat" +1,1,6158,"tess",2,0,40,3,60,36,"CNN","Republican" +1,1,6171,"tess",1,0,0,3,100,99,"CNN","Democrat" +1,1,6179,"tess",2,1,20,3,20,56,"CNN","Democrat" +1,1,6187,"tess",2,1,99,2,99,100,"CNN","Democrat" +1,1,6188,"tess",2,1,20,3,20,19,"CNN","Republican" +1,1,6195,"tess",3,1,64,3,64,92,"CNN","Democrat" +1,1,6196,"tess",1,1,50,3,50,1,"CNN","Democrat" +1,1,6197,"tess",3,0,10,2,90,40,"CNN","Democrat" +1,1,6199,"tess",3,0,6,3,94,92,"CNN","Republican" +1,1,6215,"tess",1,1,70,2,70,89,"CNN","Republican" +1,1,6220,"tess",4,1,60,2,60,50,"CNN","Democrat" +1,1,6225,"tess",1,0,71,3,29,30,"CNN","Democrat" +1,1,6226,"tess",1,0,11,2,89,20,"CNN","Democrat" +1,1,6231,"tess",2,1,44,3,44,62,"CNN","Democrat" +1,1,6237,"tess",1,1,30,3,30,75,"CNN","Democrat" +1,1,6245,"tess",1,0,30,2,70,20,"CNN","Democrat" +1,1,6251,"tess",3,1,83,2,83,9,"CNN","Democrat" +1,1,6265,"tess",4,1,38,2,38,76,"CNN","Democrat" +1,1,6271,"tess",1,0,62,2,38,70,"CNN","Democrat" +1,1,6272,"tess",1,0,92,3,8,19,"CNN","Democrat" +1,1,6280,"tess",1,1,30,3,30,46,"CNN","Democrat" +1,1,6292,"tess",3,1,80,3,80,96,"CNN","Democrat" +1,1,6294,"tess",2,0,100,3,0,100,"CNN","Republican" +1,1,6301,"tess",3,1,79,2,79,39,"CNN","Democrat" +1,1,6323,"tess",3,0,17,3,83,79,"CNN","Democrat" +1,1,6329,"tess",1,1,79,3,79,51,"CNN","Democrat" +1,1,6367,"tess",1,0,20,2,80,70,"CNN","Democrat" +1,1,6376,"tess",1,0,60,3,40,70,"CNN","Democrat" +1,1,6382,"tess",3,1,50,3,50,50,"CNN","Democrat" +1,1,6383,"tess",4,1,50,2,50,50,"CNN","Democrat" +1,1,6388,"tess",2,0,80,3,20,52,"CNN","Democrat" +1,1,6397,"tess",1,1,99,2,99,99,"CNN","Republican" +1,1,6401,"tess",1,0,48,2,52,60,"CNN","Democrat" +1,1,6402,"tess",2,1,100,2,100,97,"CNN","Democrat" +1,1,6411,"tess",2,1,99,3,99,99,"CNN","Democrat" +1,1,6414,"tess",2,1,89,2,89,50,"CNN","Republican" +1,1,6419,"tess",2,0,76,3,24,34,"CNN","Democrat" +1,1,6424,"tess",1,1,100,2,100,100,"CNN","Republican" +1,1,6428,"tess",3,1,95,2,95,19,"CNN","Neither" +1,1,6434,"tess",3,1,50,3,50,94,"CNN","Democrat" +1,1,6440,"tess",1,1,80,3,80,75,"CNN","Republican" +1,1,6466,"tess",4,0,20,2,80,10,"CNN","Democrat" +1,1,6468,"tess",2,1,70,3,70,3,"CNN","Republican" +1,1,6469,"tess",4,0,54,2,46,34,"CNN","Democrat" +1,1,6473,"tess",1,1,90,2,90,95,"CNN","Republican" +1,1,6488,"tess",2,0,NA,2,NA,20,"CNN","Republican" +1,1,6489,"tess",4,1,25,2,25,23,"CNN","Democrat" +1,1,6501,"tess",1,1,70,3,70,90,"CNN","Neither" +1,1,6508,"tess",4,0,23,2,77,72,"CNN","Republican" +1,1,6521,"tess",1,1,70,3,70,70,"CNN","Democrat" +1,1,6522,"tess",1,0,40,2,60,40,"CNN","Democrat" +1,1,6532,"tess",2,1,99,3,99,90,"CNN","Democrat" +1,1,6547,"tess",1,1,20,3,20,80,"CNN","Republican" +1,1,6548,"tess",2,1,55,3,55,29,"CNN","Democrat" +1,1,6549,"tess",3,0,73,3,27,33,"CNN","Democrat" +1,1,6557,"tess",2,0,63,3,37,30,"CNN","Republican" +1,1,6558,"tess",2,1,0,2,0,20,"CNN","Republican" +1,1,6568,"tess",4,0,100,2,0,39,"CNN","Democrat" +1,1,6571,"tess",3,0,32,2,68,15,"CNN","Republican" +1,1,6587,"tess",2,1,50,2,50,97,"CNN","Republican" +1,1,6589,"tess",4,0,73,2,27,28,"CNN","Democrat" +1,1,6626,"tess",1,1,50,3,50,30,"CNN","Republican" +1,1,6633,"tess",3,0,26,2,74,44,"CNN","Republican" +1,1,6640,"tess",3,0,20,3,80,58,"CNN","Republican" +1,1,6646,"tess",1,0,90,3,10,90,"CNN","Republican" +1,1,6647,"tess",1,1,75,2,75,36,"CNN","Democrat" +1,1,6652,"tess",3,1,95,3,95,94,"CNN","Republican" +1,1,6656,"tess",2,1,99,2,99,99,"CNN","Democrat" +1,1,6660,"tess",4,1,44,2,44,89,"CNN","Democrat" +1,1,6666,"tess",1,0,80,3,20,49,"CNN","Democrat" +1,1,6675,"tess",2,0,90,3,10,50,"CNN","Democrat" +1,1,6676,"tess",2,1,94,3,94,90,"CNN","Democrat" +1,1,6682,"tess",4,0,95,2,5,0,"CNN","Democrat" +1,1,6685,"tess",3,1,70,2,70,55,"CNN","Republican" +1,1,6696,"tess",2,1,90,3,90,90,"CNN","Democrat" +1,1,6698,"tess",3,0,99,2,1,1,"CNN","Democrat" +1,1,6703,"tess",1,0,100,2,0,15,"CNN","Democrat" +1,1,6732,"tess",3,1,35,3,35,75,"CNN","Democrat" +1,1,6733,"tess",3,0,50,2,50,50,"CNN","Republican" +1,1,6760,"tess",3,0,2,3,98,90,"CNN","Democrat" +1,1,6777,"tess",3,1,91,3,91,50,"CNN","Democrat" +1,1,6782,"tess",1,0,29,2,71,2,"CNN","Republican" +1,1,6791,"tess",4,1,70,2,70,80,"CNN","Democrat" +1,1,6792,"tess",1,0,90,3,10,80,"CNN","Democrat" +1,1,6805,"tess",3,0,30,3,70,40,"CNN","Republican" +1,1,6820,"tess",4,0,94,2,6,90,"CNN","Republican" +1,1,6825,"tess",3,1,99,2,99,99,"CNN","Democrat" +1,1,6833,"tess",2,0,100,2,0,0,"CNN","Neither" +1,1,6837,"tess",3,1,48,2,48,97,"CNN","Democrat" +1,1,6838,"tess",4,0,10,2,90,20,"CNN","Democrat" +1,1,6842,"tess",1,1,99,3,99,99,"CNN","Republican" +1,1,6843,"tess",2,1,80,3,80,30,"CNN","Republican" +1,1,6844,"tess",2,1,47,3,47,52,"CNN","Democrat" +1,1,6853,"tess",2,0,70,3,30,60,"CNN","Democrat" +1,1,6865,"tess",2,1,100,3,100,6,"CNN","Democrat" +1,1,6866,"tess",1,1,99,2,99,99,"CNN","Democrat" +1,1,6881,"tess",1,0,3,2,97,3,"CNN","Democrat" +1,1,6891,"tess",4,0,50,2,50,49,"CNN","Democrat" +1,1,6893,"tess",3,0,63,2,37,50,"CNN","Republican" +1,1,6908,"tess",1,1,31,3,31,10,"CNN","Democrat" +1,1,6909,"tess",1,1,40,3,40,40,"CNN","Republican" +1,1,6910,"tess",3,0,75,2,25,1,"CNN","Democrat" +1,1,6911,"tess",2,0,25,2,75,50,"CNN","Democrat" +1,1,6920,"tess",3,0,57,3,43,33,"CNN","Republican" +1,1,6936,"tess",1,1,29,3,29,60,"CNN","Republican" +1,1,6956,"tess",1,0,97,2,3,10,"CNN","Democrat" +1,1,6984,"tess",1,1,30,3,30,49,"CNN","Republican" +1,1,6997,"tess",2,0,50,2,50,100,"CNN","Republican" +1,1,7003,"tess",2,0,70,2,30,90,"CNN","Republican" +1,1,7027,"tess",2,0,62,3,38,14,"CNN","Republican" +1,1,7048,"tess",3,0,98,3,2,3,"CNN","Democrat" +1,1,7049,"tess",4,1,84,2,84,22,"CNN","Democrat" +1,1,7054,"tess",1,0,10,2,90,2,"CNN","Democrat" +1,1,7066,"tess",2,1,68,2,68,60,"CNN","Democrat" +1,1,7073,"tess",1,0,0,3,100,98,"CNN","Republican" +1,1,7083,"tess",3,1,0,2,0,2,"CNN","Democrat" +1,1,7094,"tess",4,1,70,2,70,60,"CNN","Republican" +1,1,7104,"tess",2,0,8,3,92,9,"CNN","Republican" +1,1,7106,"tess",3,0,0,3,100,100,"CNN","Republican" +1,1,7124,"tess",4,1,50,2,50,50,"CNN","Democrat" +1,1,7127,"tess",4,1,100,2,100,100,"CNN","Democrat" +1,1,7153,"tess",1,0,50,2,50,5,"CNN","Democrat" +1,1,7161,"tess",2,0,37,3,63,31,"CNN","Democrat" +1,1,7164,"tess",3,0,84,2,16,98,"CNN","Neither" +1,1,7166,"tess",2,0,49,2,51,38,"CNN","Neither" +1,1,7190,"tess",4,0,40,2,60,59,"CNN","Democrat" +1,1,7201,"tess",4,1,50,2,50,89,"CNN","Democrat" +1,1,7224,"tess",1,0,100,2,0,0,"CNN","Republican" +1,1,7225,"tess",3,0,69,2,31,51,"CNN","Democrat" +1,1,7240,"tess",3,1,100,2,100,98,"CNN","Democrat" +1,1,7241,"tess",1,1,0,3,0,0,"CNN","Neither" +1,1,7248,"tess",1,1,88,2,88,50,"CNN","Democrat" +1,1,7266,"tess",3,0,80,2,20,50,"CNN","Republican" +1,1,7275,"tess",1,0,51,3,49,99,"CNN","Republican" +1,1,7276,"tess",4,1,97,2,97,92,"CNN","Republican" +1,1,7289,"tess",3,0,81,3,19,19,"CNN","Democrat" +1,1,7311,"tess",1,1,95,2,95,95,"CNN","Republican" +1,1,7338,"tess",1,1,97,3,97,97,"CNN","Democrat" +1,1,7356,"tess",3,0,21,3,79,41,"CNN","Democrat" +1,1,7368,"tess",3,0,6,3,94,74,"CNN","Democrat" +1,1,7373,"tess",3,1,4,2,4,10,"CNN","Democrat" +1,1,7397,"tess",3,0,11,2,89,50,"CNN","Democrat" +1,1,7398,"tess",3,1,50,3,50,100,"CNN","Democrat" +1,1,7418,"tess",4,0,58,2,42,26,"CNN","Democrat" +1,1,7441,"tess",3,1,24,2,24,88,"CNN","Democrat" +1,1,7450,"tess",1,1,47,2,47,86,"CNN","Democrat" +1,1,7472,"tess",1,0,99,2,1,1,"CNN","Republican" +1,1,7475,"tess",3,1,99,3,99,88,"CNN","Neither" +1,1,7486,"tess",2,1,80,3,80,90,"CNN","Democrat" +1,1,7498,"tess",4,0,79,2,21,20,"CNN","Republican" +1,1,7504,"tess",3,0,39,2,61,39,"CNN","Republican" +1,1,7506,"tess",1,1,41,3,41,76,"CNN","Democrat" +1,1,7524,"tess",2,0,71,2,29,21,"CNN","Democrat" +1,1,7534,"tess",3,1,50,3,50,50,"CNN","Democrat" +1,1,7556,"tess",4,0,19,2,81,50,"CNN","Democrat" +1,1,7569,"tess",1,1,95,2,95,97,"CNN","Republican" +1,1,7577,"tess",3,1,34,2,34,47,"CNN","Democrat" +1,1,7584,"tess",2,1,100,2,100,99,"CNN","Republican" +1,1,7587,"tess",2,0,90,2,10,25,"CNN","Democrat" +1,1,7588,"tess",2,0,52,2,48,42,"CNN","Republican" +1,1,7593,"tess",3,0,55,2,45,49,"CNN","Republican" +1,1,7605,"tess",1,0,97,2,3,78,"CNN","Republican" +1,1,7607,"tess",1,1,69,2,69,50,"CNN","Neither" +1,1,7608,"tess",1,0,45,2,55,45,"CNN","Republican" +1,1,7615,"tess",1,1,71,2,71,0,"CNN","Republican" +1,1,7634,"tess",4,1,20,2,20,30,"CNN","Republican" +1,1,7640,"tess",2,0,49,3,51,60,"CNN","Republican" +1,1,7656,"tess",2,1,90,3,90,20,"CNN","Republican" +1,1,7659,"tess",2,0,10,2,90,5,"CNN","Republican" +1,1,7694,"tess",2,0,11,2,89,90,"CNN","Republican" +1,1,7699,"tess",3,1,19,3,19,2,"CNN","Democrat" +1,1,7754,"tess",3,1,50,3,50,41,"CNN","Neither" +1,1,7759,"tess",2,0,0,2,100,10,"CNN","Democrat" +1,1,7778,"tess",3,0,65,3,35,90,"CNN","Democrat" +1,1,7786,"tess",2,1,100,2,100,50,"CNN","Democrat" +1,1,7793,"tess",3,1,91,3,91,95,"CNN","Republican" +1,1,7799,"tess",1,0,5,3,95,85,"CNN","Democrat" +1,1,7819,"tess",3,1,38,2,38,56,"CNN","Democrat" +1,1,7820,"tess",2,0,70,3,30,30,"CNN","Republican" +1,1,7837,"tess",1,0,77,2,23,100,"CNN","Democrat" +1,1,7854,"tess",4,0,14,2,86,51,"CNN","Democrat" +1,1,7872,"tess",4,0,30,2,70,50,"CNN","Democrat" +1,1,7880,"tess",4,0,100,2,0,3,"CNN","Democrat" +1,1,7884,"tess",2,1,90,2,90,20,"CNN","Democrat" +1,1,7906,"tess",3,1,99,2,99,90,"CNN","Republican" +1,1,7908,"tess",1,0,99,3,1,100,"CNN","Republican" +1,1,7910,"tess",3,1,16,2,16,92,"CNN","Democrat" +1,1,7918,"tess",1,0,40,3,60,25,"CNN","Democrat" +1,1,7922,"tess",1,1,13,3,13,91,"CNN","Democrat" +1,1,7942,"tess",1,1,89,3,89,77,"CNN","Republican" +1,1,7946,"tess",3,0,50,3,50,50,"CNN","Democrat" +1,1,7951,"tess",2,0,10,3,90,90,"CNN","Republican" +1,1,7957,"tess",4,1,92,2,92,98,"CNN","Democrat" +1,1,7973,"tess",3,0,22,2,78,2,"CNN","Republican" +1,1,7982,"tess",3,0,75,2,25,25,"CNN","Democrat" +1,1,7983,"tess",1,0,89,2,11,92,"CNN","Democrat" +1,1,7988,"tess",3,1,67,3,67,70,"CNN","Democrat" +1,1,7998,"tess",3,0,87,3,13,24,"CNN","Democrat" +1,1,8042,"tess",3,0,25,3,75,75,"CNN","Republican" +1,1,8062,"tess",4,0,50,2,50,20,"CNN","Democrat" +1,1,8079,"tess",1,0,0,3,100,0,"CNN","Democrat" +1,1,8101,"tess",1,1,94,3,94,99,"CNN","Republican" +1,1,8112,"tess",3,0,50,2,50,50,"CNN","Democrat" +1,1,8116,"tess",1,0,83,2,17,18,"CNN","Democrat" +1,1,8159,"tess",3,1,60,2,60,14,"CNN","Neither" +1,1,8160,"tess",1,0,9,3,91,90,"CNN","Democrat" +1,1,8181,"tess",3,0,50,2,50,10,"CNN","Republican" +1,1,8190,"tess",2,0,51,2,49,50,"CNN","Democrat" +1,1,8191,"tess",2,1,100,3,100,85,"CNN","Democrat" +1,1,8196,"tess",3,0,100,3,0,0,"CNN","Democrat" +1,1,8201,"tess",1,0,50,2,50,30,"CNN","Democrat" +1,1,8202,"tess",1,1,50,3,50,61,"CNN","Republican" +1,1,8203,"tess",1,0,82,2,18,20,"CNN","Republican" +1,1,8207,"tess",4,0,50,2,50,50,"CNN","Democrat" +1,1,8228,"tess",2,1,91,3,91,80,"CNN","Democrat" +1,1,8244,"tess",3,0,50,2,50,99,"CNN","Republican" +1,1,8250,"tess",3,0,90,2,10,50,"CNN","Democrat" +1,1,8267,"tess",3,1,90,2,90,80,"CNN","Republican" +1,1,8272,"tess",2,1,93,2,93,85,"CNN","Democrat" +1,1,8274,"tess",3,1,50,3,50,99,"CNN","Republican" +1,1,8280,"tess",3,0,73,3,27,14,"CNN","Democrat" +1,1,8285,"tess",2,1,100,2,100,99,"CNN","Democrat" +1,1,8324,"tess",3,1,100,2,100,94,"CNN","Republican" +1,1,8327,"tess",4,1,87,2,87,77,"CNN","Democrat" +1,1,8333,"tess",4,0,50,2,50,16,"CNN","Democrat" +1,1,8335,"tess",3,1,100,2,100,95,"CNN","Republican" +1,1,8344,"tess",4,0,84,2,16,24,"CNN","Democrat" +1,1,8345,"tess",3,0,70,2,30,50,"CNN","Democrat" +1,1,8360,"tess",2,0,100,3,0,3,"CNN","Democrat" +1,1,8400,"tess",2,1,100,2,100,99,"CNN","Democrat" +1,1,8435,"tess",3,1,71,2,71,35,"CNN","Republican" +1,1,8466,"tess",1,0,71,2,29,21,"CNN","Democrat" +1,1,8476,"tess",3,1,40,2,40,93,"CNN","Democrat" +1,1,8503,"tess",2,1,80,2,80,70,"CNN","Republican" +1,1,8507,"tess",1,0,51,2,49,50,"CNN","Democrat" +1,1,8522,"tess",1,0,80,3,20,20,"CNN","Democrat" +1,1,8544,"tess",1,1,77,2,77,62,"CNN","Democrat" +1,1,8556,"tess",3,1,59,3,59,58,"CNN","Democrat" +1,1,8558,"tess",3,1,51,3,51,93,"CNN","Republican" +1,1,8577,"tess",1,0,65,3,35,85,"CNN","Democrat" +1,1,8579,"tess",3,0,10,2,90,50,"CNN","Democrat" +1,1,8583,"tess",4,1,6,2,6,4,"CNN","Democrat" +1,1,8589,"tess",4,1,50,2,50,50,"CNN","Democrat" +1,1,8608,"tess",3,1,89,3,89,90,"CNN","Republican" +1,1,8619,"tess",2,1,94,2,94,98,"CNN","Republican" +1,1,8640,"tess",4,0,9,2,91,10,"CNN","Democrat" +1,1,8651,"tess",2,1,40,2,40,64,"CNN","Republican" +1,1,8713,"tess",1,1,0,2,0,50,"CNN","Republican" +1,1,8714,"tess",2,1,91,2,91,89,"CNN","Democrat" +1,1,8719,"tess",2,1,70,2,70,50,"CNN","Republican" +1,1,8728,"tess",1,1,99,2,99,75,"CNN","Republican" +1,1,8739,"tess",2,0,27,2,73,10,"CNN","Republican" +1,1,8746,"tess",3,1,50,3,50,50,"CNN","Republican" +1,1,8765,"tess",2,1,NA,2,NA,10,"CNN","Democrat" +1,1,8768,"tess",1,0,50,3,50,50,"CNN","Democrat" +1,1,8777,"tess",3,1,70,3,70,10,"CNN","Democrat" +1,1,8797,"tess",1,1,68,2,68,40,"CNN","Republican" +1,1,8806,"tess",3,0,46,2,54,13,"CNN","Neither" +1,1,8821,"tess",3,1,56,2,56,99,"CNN","Republican" +1,1,8826,"tess",3,1,40,3,40,87,"CNN","Republican" +1,1,8837,"tess",1,1,100,2,100,99,"CNN","Democrat" +1,1,8853,"tess",4,0,94,2,6,85,"CNN","Democrat" +1,1,8866,"tess",4,1,80,2,80,76,"CNN","Democrat" +1,1,8877,"tess",2,0,33,2,67,50,"CNN","Republican" +1,1,8881,"tess",1,1,50,3,50,50,"CNN","Democrat" +1,1,8888,"tess",3,0,61,2,39,40,"CNN","Republican" +1,1,8893,"tess",2,1,100,3,100,100,"CNN","Democrat" +1,1,8932,"tess",1,0,52,3,48,47,"CNN","Democrat" +1,1,8946,"tess",4,0,0,2,100,30,"CNN","Democrat" +1,1,8970,"tess",2,0,12,3,88,0,"CNN","Republican" +1,1,8983,"tess",2,1,100,3,100,95,"CNN","Democrat" +1,1,8999,"tess",2,1,18,2,18,81,"CNN","Democrat" +1,1,9034,"tess",3,0,99,3,1,3,"CNN","Republican" +1,1,9038,"tess",1,0,81,3,19,30,"CNN","Neither" +1,1,9057,"tess",2,1,NA,3,NA,50,"CNN","Republican" +1,1,9068,"tess",3,1,90,2,90,75,"CNN","Democrat" +1,1,9074,"tess",2,1,80,2,80,10,"CNN","Republican" +1,1,9075,"tess",4,0,98,2,2,100,"CNN","Democrat" +1,1,9081,"tess",2,1,40,2,40,70,"CNN","Republican" +1,1,9105,"tess",1,1,99,2,99,99,"CNN","Democrat" +1,1,9106,"tess",1,0,80,2,20,40,"CNN","Republican" +1,1,9109,"tess",1,0,13,2,87,3,"CNN","Democrat" +1,1,9119,"tess",1,1,82,2,82,31,"CNN","Democrat" +1,1,9135,"tess",4,1,60,2,60,55,"CNN","Democrat" +1,1,9146,"tess",3,0,3,2,97,50,"CNN","Republican" +1,1,9148,"tess",3,1,64,3,64,98,"CNN","Republican" +1,1,9152,"tess",1,1,67,3,67,94,"CNN","Democrat" +1,1,9154,"tess",4,1,100,2,100,100,"CNN","Democrat" +1,1,9184,"tess",1,1,48,2,48,100,"CNN","Democrat" +1,1,9193,"tess",4,1,29,2,29,20,"CNN","Democrat" +1,1,9198,"tess",3,0,72,2,28,32,"CNN","Democrat" +1,1,9210,"tess",4,0,97,2,3,49,"CNN","Democrat" +1,1,9211,"tess",2,0,0,3,100,100,"CNN","Republican" +1,1,9235,"tess",4,0,56,2,44,0,"CNN","Democrat" +1,1,9236,"tess",3,0,61,3,39,36,"CNN","Republican" +1,1,9239,"tess",4,0,96,2,4,3,"CNN","Democrat" +1,1,9247,"tess",1,0,9,3,91,50,"CNN","Democrat" +1,1,9267,"tess",2,0,51,3,49,33,"CNN","Democrat" +1,1,9269,"tess",1,1,98,3,98,85,"CNN","Democrat" +1,1,9295,"tess",1,0,95,3,5,5,"CNN","Republican" +1,1,9298,"tess",3,0,69,2,31,9,"CNN","Democrat" +1,1,9302,"tess",1,1,60,3,60,21,"CNN","Democrat" +1,1,9314,"tess",1,1,82,3,82,21,"CNN","Republican" +1,1,9319,"tess",4,0,99,2,1,1,"CNN","Democrat" +1,1,9332,"tess",2,0,10,2,90,30,"CNN","Democrat" +1,1,9340,"tess",1,1,100,3,100,26,"CNN","Democrat" +1,1,9342,"tess",2,0,45,2,55,34,"CNN","Republican" +1,1,9346,"tess",1,1,90,2,90,25,"CNN","Democrat" +1,1,9352,"tess",2,0,59,3,41,52,"CNN","Democrat" +1,1,9360,"tess",1,0,77,3,23,46,"CNN","Republican" +1,1,9372,"tess",2,1,95,3,95,97,"CNN","Democrat" +1,1,9395,"tess",3,1,98,3,98,98,"CNN","Democrat" +1,1,9398,"tess",3,0,35,2,65,73,"CNN","Republican" +1,1,9412,"tess",3,0,99,3,1,50,"CNN","Republican" +1,1,9419,"tess",1,0,50,2,50,50,"CNN","Democrat" +1,1,9420,"tess",2,0,14,3,86,0,"CNN","Democrat" +1,1,9424,"tess",2,0,90,2,10,21,"CNN","Democrat" +1,1,9425,"tess",1,0,0,3,100,99,"CNN","Democrat" +1,1,9435,"tess",2,1,76,2,76,36,"CNN","Democrat" +1,1,9443,"tess",3,0,50,3,50,1,"CNN","Democrat" +1,1,9475,"tess",3,1,80,3,80,70,"CNN","Republican" +1,1,9479,"tess",3,0,NA,2,NA,50,"CNN","Democrat" +1,1,9493,"tess",4,1,96,2,96,94,"CNN","Democrat" +1,1,9499,"tess",3,0,47,2,53,46,"CNN","Democrat" +1,1,9500,"tess",3,1,35,2,35,16,"CNN","Republican" +1,1,9512,"tess",1,1,100,2,100,98,"CNN","Democrat" +1,1,9534,"tess",1,0,3,3,97,96,"CNN","Democrat" +1,1,9538,"tess",1,1,NA,3,NA,71,"CNN","Republican" +1,1,9570,"tess",2,1,78,3,78,89,"CNN","Democrat" +1,1,9590,"tess",1,0,80,2,20,15,"CNN","Republican" +1,1,9601,"tess",4,0,41,2,59,20,"CNN","Republican" +1,1,9603,"tess",4,0,61,2,39,41,"CNN","Democrat" +1,1,9635,"tess",2,1,80,2,80,30,"CNN","Democrat" +1,1,9649,"tess",3,1,7,2,7,92,"CNN","Democrat" +1,1,9650,"tess",1,1,86,3,86,80,"CNN","Republican" +1,1,9664,"tess",2,1,75,2,75,52,"CNN","Republican" +1,1,9681,"tess",2,1,71,3,71,50,"CNN","Democrat" +1,1,9684,"tess",2,1,90,3,90,77,"CNN","Democrat" +1,1,9685,"tess",2,1,99,2,99,90,"CNN","Republican" +1,1,9692,"tess",4,0,39,2,61,34,"CNN","Democrat" +1,1,9693,"tess",1,0,76,3,24,62,"CNN","Neither" +1,1,9701,"tess",4,1,83,2,83,21,"CNN","Democrat" +1,1,9716,"tess",2,1,96,3,96,85,"CNN","Democrat" +1,1,9717,"tess",2,0,70,3,30,38,"CNN","Neither" +1,1,9731,"tess",4,0,13,2,87,9,"CNN","Democrat" +1,1,9741,"tess",1,0,99,3,1,100,"CNN","Republican" +1,1,9743,"turk",3,0,30,4,70,60,"CNN","Democrat" +1,1,9744,"turk",2,0,1,4,99,99,"CNN","Democrat" +1,1,9747,"turk",3,0,20,4,80,80,"CNN","Neither" +1,1,9762,"turk",3,0,40,2,60,20,"CNN","Neither" +1,1,9763,"turk",2,0,85,3,15,5,"CNN","Neither" +1,1,9764,"turk",3,0,70,4,30,100,"CNN","Democrat" +1,1,9766,"turk",4,0,35,5,65,70,"CNN","Democrat" +1,1,9767,"turk",4,0,72,3,28,20,"CNN","Neither" +1,1,9769,"turk",2,0,30,5,70,60,"CNN","Democrat" +1,1,9772,"turk",2,0,25,4,75,75,"CNN","Democrat" +1,1,9775,"turk",2,0,15,4,85,80,"CNN","Neither" +1,1,9777,"turk",4,0,25,2,75,80,"CNN","Democrat" +1,1,9780,"turk",2,0,0,5,100,100,"CNN","Republican" +1,1,9781,"turk",3,0,50,2,50,50,"CNN","Neither" +1,1,9785,"turk",4,0,20,3,80,50,"CNN","Democrat" +1,1,9786,"turk",4,0,15,4,85,80,"CNN","Democrat" +1,1,9787,"turk",2,0,1,4,99,99,"CNN","Democrat" +1,1,9791,"turk",3,0,2,2,98,50,"CNN","Democrat" +1,1,9792,"turk",4,0,55,4,45,65,"CNN","Republican" +1,1,9795,"turk",3,0,90,2,10,10,"CNN","Republican" +1,1,9798,"turk",2,0,30,4,70,60,"CNN","Democrat" +1,1,9802,"turk",2,0,50,3,50,50,"CNN","Democrat" +1,1,9803,"turk",2,0,99,5,1,1,"CNN","Democrat" +1,1,9807,"turk",2,0,60,4,40,25,"CNN","Republican" +1,1,9808,"turk",3,0,20,2,80,80,"CNN","Neither" +1,1,9810,"turk",2,0,1,3,99,99,"CNN","Democrat" +1,1,9815,"turk",3,0,50,4,50,50,"CNN","Democrat" +1,1,9817,"turk",2,0,1,2,99,1,"CNN","Republican" +1,1,9821,"turk",3,0,50,3,50,40,"CNN","Democrat" +1,1,9823,"turk",4,0,1,4,99,99,"CNN","Neither" +1,1,9826,"turk",4,0,1,5,99,99,"CNN","Republican" +1,1,9827,"turk",4,0,1,3,99,99,"CNN","Republican" +1,1,9836,"turk",3,0,99,5,1,1,"CNN","Democrat" +1,1,9839,"turk",4,0,1,2,99,99,"CNN","Democrat" +1,1,9842,"turk",3,0,20,2,80,80,"CNN","Democrat" +1,1,9843,"turk",2,0,99,2,1,1,"CNN","Neither" +1,1,9847,"turk",4,0,99,3,1,99,"CNN","Republican" +1,1,9849,"turk",2,0,99,5,1,100,"CNN","Republican" +1,1,9852,"turk",2,0,75,5,25,25,"CNN","Democrat" +1,1,9855,"turk",2,0,1,3,99,99,"CNN","Neither" +1,1,9861,"turk",2,0,1,2,99,99,"CNN","Neither" +1,1,9867,"turk",2,0,1,3,99,99,"CNN","Democrat" +1,1,9870,"turk",3,0,25,3,75,50,"CNN","Democrat" +1,1,9872,"turk",3,0,20,2,80,50,"CNN","Republican" +1,1,9874,"turk",2,0,25,4,75,75,"CNN","Democrat" +1,1,9875,"turk",4,0,1,4,99,80,"CNN","Democrat" +1,1,9878,"turk",4,0,10,3,90,75,"CNN","Republican" +1,1,9881,"turk",3,0,1,4,99,98,"CNN","Democrat" +1,1,9884,"turk",4,0,14,5,86,87,"CNN","Republican" +1,1,9885,"turk",4,0,80,2,20,15,"CNN","Democrat" +1,1,9887,"turk",4,0,1,2,99,99,"CNN","Republican" +1,1,9889,"turk",2,0,2,5,98,98,"CNN","Neither" +1,1,9891,"turk",3,0,30,3,70,40,"CNN","Democrat" +1,1,9892,"turk",2,0,48,5,52,51,"CNN","Democrat" +1,1,9896,"turk",3,0,1,5,99,99,"CNN","Neither" +1,1,9897,"turk",3,0,1,5,99,99,"CNN","Democrat" +1,1,9900,"turk",2,0,1,3,99,89,"CNN","Democrat" +1,1,9902,"turk",4,0,10,3,90,80,"CNN","Democrat" +1,1,9905,"turk",3,0,99,4,1,99,"CNN","Republican" +1,1,9910,"turk",2,0,1,2,99,1,"CNN","Democrat" +1,1,9914,"turk",3,0,1,5,99,99,"CNN","Republican" +1,1,9917,"turk",3,0,20,4,80,80,"CNN","Neither" +1,1,9918,"turk",2,0,1,4,99,99,"CNN","Democrat" +1,1,9920,"turk",3,0,0,4,100,100,"CNN","Republican" +1,1,9921,"turk",3,0,50,2,50,1,"CNN","Democrat" +1,1,9922,"turk",4,0,30,4,70,50,"CNN","Democrat" +1,1,9923,"turk",4,0,99,4,1,1,"CNN","Neither" +1,1,9925,"turk",3,0,22,2,78,1,"CNN","Democrat" +1,1,9927,"turk",3,0,100,2,0,0,"CNN","Republican" +1,1,9928,"turk",2,0,1,5,99,99,"CNN","Democrat" +1,1,9931,"turk",2,0,1,3,99,99,"CNN","Neither" +1,1,9935,"turk",4,0,50,2,50,50,"CNN","Neither" +1,1,9937,"turk",3,0,1,5,99,99,"CNN","Democrat" +1,1,9938,"turk",2,0,25,3,75,75,"CNN","Democrat" +1,1,9939,"turk",2,0,99,3,1,99,"CNN","Republican" +1,1,9940,"turk",2,0,25,2,75,25,"CNN","Democrat" +1,1,9941,"turk",2,0,30,2,70,50,"CNN","Republican" +1,1,9942,"turk",3,0,50,2,50,1,"CNN","Democrat" +1,1,9946,"turk",3,0,10,4,90,80,"CNN","Democrat" +1,1,9947,"turk",4,0,1,3,99,1,"CNN","Democrat" +1,1,9948,"turk",2,0,1,5,99,99,"CNN","Republican" +1,1,9953,"turk",4,0,50,2,50,10,"CNN","Neither" +1,1,9956,"turk",4,0,50,2,50,10,"CNN","Democrat" +1,1,9958,"turk",4,0,65,2,35,30,"CNN","Republican" +1,1,9960,"turk",2,0,99,3,1,98,"CNN","Democrat" +1,1,9964,"turk",3,0,45,2,55,20,"CNN","Democrat" +1,1,9965,"turk",4,0,50,2,50,50,"CNN","Democrat" +1,1,9966,"turk",2,0,99,2,1,1,"CNN","Democrat" +1,1,9967,"turk",2,0,1,4,99,99,"CNN","Neither" +1,1,9968,"turk",4,0,99,5,1,1,"CNN","Democrat" +1,1,9970,"turk",2,0,0,2,100,0,"CNN","Republican" +1,1,9971,"turk",3,0,5,4,95,90,"CNN","Democrat" +1,1,9976,"turk",2,0,99,5,1,1,"CNN","Republican" +1,1,9982,"turk",3,0,40,2,60,50,"CNN","Republican" +1,1,9983,"turk",4,0,99,5,1,50,"CNN","Democrat" +1,1,9986,"turk",3,0,60,2,40,30,"CNN","Democrat" +1,1,9988,"turk",3,0,1,4,99,99,"CNN","Democrat" +1,1,9990,"turk",3,0,35,3,65,55,"CNN","Democrat" +1,1,9991,"turk",2,0,10,5,90,70,"CNN","Neither" +1,1,9999,"turk",2,0,5,3,95,80,"CNN","Democrat" +1,1,10001,"turk",4,0,1,4,99,99,"CNN","Democrat" +1,1,10002,"turk",3,0,80,3,20,85,"CNN","Democrat" +1,1,10007,"turk",3,0,10,2,90,20,"CNN","Republican" +1,1,10017,"turk",3,0,1,2,99,98,"CNN","Democrat" +1,1,10018,"turk",4,0,0,4,100,100,"CNN","Republican" +1,1,10020,"turk",3,0,25,2,75,45,"CNN","Democrat" +1,1,10024,"turk",2,0,20,5,80,60,"CNN","Republican" +1,1,10028,"turk",4,0,80,2,20,10,"CNN","Republican" +1,1,10030,"turk",3,0,30,3,70,60,"CNN","Democrat" +1,1,10032,"turk",4,0,99,4,1,1,"CNN","Democrat" +1,1,10033,"turk",2,0,100,3,0,0,"CNN","Neither" +1,1,10036,"turk",3,0,1,5,99,99,"CNN","Republican" +1,1,10037,"turk",2,0,1,3,99,95,"CNN","Democrat" +1,1,10038,"turk",2,0,1,2,99,1,"CNN","Democrat" +1,1,10041,"turk",4,0,50,5,50,99,"CNN","Republican" +1,1,10042,"turk",4,0,10,4,90,90,"CNN","Democrat" +1,1,10043,"turk",4,0,75,3,25,70,"CNN","Democrat" +1,1,10044,"turk",2,0,70,2,30,30,"CNN","Republican" +1,1,10047,"turk",2,0,40,4,60,50,"CNN","Democrat" +1,1,10049,"turk",2,0,80,5,20,20,"CNN","Democrat" +1,1,10052,"turk",4,0,1,5,99,99,"CNN","Democrat" +1,1,10056,"turk",4,0,99,3,1,25,"CNN","Republican" +1,1,10058,"turk",3,0,1,4,99,50,"CNN","Republican" +1,1,10059,"turk",4,0,1,4,99,99,"CNN","Democrat" +1,1,10062,"turk",2,0,50,5,50,1,"CNN","Democrat" +1,1,10065,"turk",4,0,80,3,20,20,"CNN","Democrat" +1,1,10066,"turk",3,0,1,5,99,90,"CNN","Democrat" +1,1,10069,"turk",2,0,10,5,90,90,"CNN","Republican" +1,1,10073,"turk",3,0,50,3,50,40,"CNN","Neither" +1,1,10076,"turk",2,0,1,3,99,99,"CNN","Neither" +1,1,10077,"turk",2,0,15,3,85,65,"CNN","Democrat" +1,1,10078,"turk",3,0,50,2,50,50,"CNN","Republican" +1,1,10080,"turk",3,0,85,4,15,35,"CNN","Republican" +1,1,10081,"turk",4,0,80,4,20,80,"CNN","Democrat" +1,1,10085,"turk",4,0,5,3,95,90,"CNN","Neither" +1,1,10090,"turk",4,0,50,5,50,40,"CNN","Democrat" +1,1,10092,"turk",4,0,99,4,1,99,"CNN","Neither" +1,1,10093,"turk",4,0,1,4,99,99,"CNN","Democrat" +1,1,10094,"turk",2,0,99,4,1,1,"CNN","Democrat" +1,1,10095,"turk",4,0,20,2,80,70,"CNN","Democrat" +1,1,10096,"turk",2,0,99,3,1,1,"CNN","Democrat" +1,1,10097,"turk",2,0,1,4,99,99,"CNN","Democrat" +1,1,10101,"turk",3,0,1,4,99,90,"CNN","Democrat" +1,1,10107,"turk",4,0,10,4,90,85,"CNN","Democrat" +1,1,10108,"turk",2,0,1,5,99,99,"CNN","Democrat" +1,1,10111,"turk",3,0,1,5,99,99,"CNN","Neither" +1,1,10116,"turk",3,0,100,3,0,0,"CNN","Democrat" +1,1,10118,"turk",2,0,45,2,55,1,"CNN","Democrat" +1,1,10120,"turk",4,0,81,4,19,19,"CNN","Republican" +1,1,10121,"turk",2,0,20,3,80,80,"CNN","Neither" +1,1,10126,"turk",4,0,40,3,60,40,"CNN","Republican" +1,1,10131,"turk",3,0,50,4,50,99,"CNN","Republican" +1,1,10133,"turk",4,0,15,4,85,80,"CNN","Democrat" +1,1,10135,"turk",3,0,5,2,95,40,"CNN","Democrat" +1,1,10136,"turk",2,0,1,3,99,80,"CNN","Democrat" +1,1,10138,"turk",4,0,35,2,65,25,"CNN","Democrat" +1,1,10140,"turk",3,0,30,5,70,60,"CNN","Democrat" +1,1,10145,"turk",4,0,1,5,99,99,"CNN","Democrat" +1,1,10147,"turk",3,0,10,5,90,85,"CNN","Democrat" +1,1,10149,"turk",4,0,1,5,99,99,"CNN","Republican" +1,1,10150,"turk",3,0,1,5,99,99,"CNN","Democrat" +1,1,10152,"turk",2,0,50,2,50,50,"CNN","Neither" +1,1,10153,"turk",2,0,1,4,99,99,"CNN","Republican" +1,1,10155,"turk",2,0,99,3,1,1,"CNN","Republican" +1,1,10160,"turk",3,0,99,4,1,1,"CNN","Democrat" +1,1,10162,"turk",3,0,1,5,99,90,"CNN","Democrat" +1,1,10163,"turk",3,0,99,3,1,1,"CNN","Democrat" +1,1,10166,"turk",4,0,80,3,20,30,"CNN","Democrat" +1,1,10167,"turk",3,0,60,3,40,60,"CNN","Democrat" +1,1,10169,"turk",2,0,5,4,95,90,"CNN","Republican" +1,1,10174,"turk",3,0,0,5,100,100,"CNN","Democrat" +1,1,10175,"turk",3,0,1,3,99,99,"CNN","Neither" +1,1,10178,"turk",4,0,1,5,99,99,"CNN","Democrat" +1,1,10179,"turk",4,0,1,5,99,99,"CNN","Republican" +1,1,10182,"turk",2,0,25,4,75,70,"CNN","Democrat" +1,1,10184,"turk",2,0,1,4,99,80,"CNN","Republican" +1,1,10186,"turk",2,0,25,2,75,99,"CNN","Democrat" +1,1,10188,"turk",2,0,30,2,70,50,"CNN","Democrat" +1,1,10194,"turk",3,0,1,4,99,99,"CNN","Democrat" +1,1,10197,"turk",2,0,20,4,80,80,"CNN","Democrat" +1,1,10202,"turk",3,0,99,3,1,50,"CNN","Neither" +1,1,10203,"turk",2,0,55,4,45,40,"CNN","Republican" +1,1,10204,"turk",4,0,99,2,1,1,"CNN","Democrat" +1,1,10209,"turk",3,0,1,2,99,99,"CNN","Democrat" +1,1,10210,"turk",4,0,70,2,30,50,"CNN","Republican" +1,1,10211,"turk",3,0,10,5,90,90,"CNN","Democrat" +1,1,10215,"turk",4,0,50,3,50,0,"CNN","Democrat" +1,1,10223,"turk",3,0,1,4,99,99,"CNN","Democrat" +1,1,10224,"turk",4,0,1,3,99,0,"CNN","Democrat" +1,1,10227,"turk",3,0,75,3,25,50,"CNN","Republican" +1,1,10228,"turk",2,0,50,2,50,1,"CNN","Neither" +1,1,10235,"turk",4,0,1,5,99,99,"CNN","Republican" +1,1,10242,"turk",4,0,99,4,1,1,"CNN","Republican" +1,1,10245,"turk",3,0,99,2,1,1,"CNN","Neither" +1,1,10248,"turk",2,0,5,3,95,80,"CNN","Democrat" +1,1,10252,"turk",3,0,1,5,99,98,"CNN","Republican" +1,1,10256,"turk",2,0,99,4,1,1,"CNN","Neither" +1,1,10262,"turk",3,0,10,5,90,80,"CNN","Democrat" +1,1,10271,"turk",2,0,96,5,4,4,"CNN","Republican" +1,1,10274,"turk",4,0,1,4,99,99,"CNN","Republican" +1,1,10275,"turk",2,0,100,4,0,99,"CNN","Democrat" +1,1,10276,"turk",3,0,1,2,99,80,"CNN","Neither" +1,1,10277,"turk",4,0,1,5,99,99,"CNN","Democrat" +1,1,10279,"turk",4,0,10,5,90,90,"CNN","Democrat" +1,1,10281,"turk",4,0,45,4,55,50,"CNN","Democrat" +1,1,10284,"turk",3,0,99,5,1,50,"CNN","Democrat" +1,1,10285,"turk",4,0,1,5,99,99,"CNN","Republican" +1,1,10289,"turk",3,0,1,3,99,1,"CNN","Republican" +1,1,10290,"turk",4,0,40,4,60,60,"CNN","Neither" +1,1,10292,"turk",3,0,1,2,99,99,"CNN","Democrat" +1,1,10295,"turk",4,0,2,4,98,95,"CNN","Democrat" +1,1,10297,"turk",2,0,1,5,99,99,"CNN","Democrat" +1,1,10307,"turk",3,0,10,4,90,85,"CNN","Republican" +1,1,10308,"turk",3,0,1,2,99,50,"CNN","Democrat" +1,1,10315,"turk",3,0,80,5,20,20,"CNN","Republican" +1,1,10317,"turk",4,0,5,4,95,90,"CNN","Democrat" +1,1,10318,"turk",3,0,1,3,99,90,"CNN","Democrat" +1,1,10319,"turk",3,0,99,2,1,99,"CNN","Neither" +1,1,10320,"turk",4,0,1,5,99,99,"CNN","Republican" +1,1,10329,"turk",3,0,50,2,50,60,"CNN","Republican" +1,1,10331,"turk",3,0,5,3,95,95,"CNN","Democrat" +1,1,10332,"turk",2,0,1,4,99,60,"CNN","Democrat" +1,1,10342,"turk",2,0,5,4,95,95,"CNN","Democrat" +1,1,10346,"turk",3,0,1,5,99,99,"CNN","Democrat" +1,1,10350,"turk",3,0,1,3,99,99,"CNN","Democrat" +1,1,10354,"turk",4,0,75,5,25,25,"CNN","Neither" +1,1,10355,"turk",4,0,10,5,90,90,"CNN","Neither" +1,1,10359,"turk",2,0,1,4,99,99,"CNN","Republican" +1,1,10360,"turk",4,0,99,2,1,1,"CNN","Democrat" +1,1,10365,"turk",2,0,99,3,1,50,"CNN","Republican" +1,1,10367,"turk",4,0,50,5,50,50,"CNN","Republican" +1,1,10368,"turk",3,0,1,4,99,99,"CNN","Democrat" +1,1,10369,"turk",4,0,99,4,1,99,"CNN","Republican" +1,1,10374,"turk",4,0,99,5,1,1,"CNN","Democrat" +1,1,10376,"turk",2,0,99,3,1,100,"CNN","Republican" +1,1,10382,"turk",3,0,1,4,99,1,"CNN","Democrat" +1,1,10385,"turk",2,0,5,5,95,95,"CNN","Republican" +1,1,10386,"turk",2,0,1,5,99,99,"CNN","Democrat" +1,1,10387,"turk",3,0,1,4,99,99,"CNN","Democrat" +1,1,10389,"turk",3,0,10,3,90,75,"CNN","Neither" +1,1,10391,"turk",2,0,50,5,50,50,"CNN","Neither" +1,1,10392,"turk",4,0,66,4,34,40,"CNN","Democrat" +1,1,10394,"turk",4,0,1,4,99,99,"CNN","Democrat" +1,1,10396,"turk",3,0,41,4,59,84,"CNN","Republican" +1,1,10398,"turk",4,0,80,3,20,20,"CNN","Republican" +1,1,10402,"turk",2,0,75,2,25,20,"CNN","Democrat" +1,1,10404,"turk",2,0,1,5,99,99,"CNN","Republican" +1,1,10406,"turk",3,0,99,5,1,99,"CNN","Democrat" +1,1,10408,"turk",2,0,99,4,1,50,"CNN","Democrat" +1,1,10411,"turk",2,0,10,4,90,90,"CNN","Republican" +1,1,10413,"turk",3,0,5,5,95,90,"CNN","Republican" +1,1,10416,"turk",4,0,50,4,50,50,"CNN","Republican" +1,1,10418,"turk",4,0,20,5,80,80,"CNN","Democrat" +1,1,10422,"turk",2,0,35,3,65,100,"CNN","Democrat" +1,1,10423,"turk",3,0,15,2,85,80,"CNN","Neither" +1,1,10425,"turk",4,0,1,5,99,99,"CNN","Democrat" +1,1,10427,"turk",3,0,1,2,99,99,"CNN","Republican" +1,1,10429,"turk",2,0,15,2,85,20,"CNN","Democrat" +1,1,10433,"turk",2,0,1,3,99,99,"CNN","Democrat" +1,1,10440,"turk",3,0,23,3,77,79,"CNN","Democrat" +1,1,10441,"turk",4,0,20,4,80,80,"CNN","Democrat" +1,1,10442,"turk",2,0,50,3,50,50,"CNN","Neither" +1,1,10443,"turk",2,0,80,3,20,100,"CNN","Republican" +1,1,10454,"turk",2,0,1,5,99,99,"CNN","Democrat" +1,1,10457,"turk",4,0,95,3,5,5,"CNN","Republican" +1,1,10463,"turk",3,0,50,3,50,25,"CNN","Republican" +1,1,10464,"turk",4,0,85,3,15,15,"CNN","Democrat" +1,1,10468,"turk",4,0,20,4,80,80,"CNN","Democrat" +1,1,10469,"turk",3,0,99,4,1,1,"CNN","Neither" +1,1,10470,"turk",2,0,99,2,1,99,"CNN","Democrat" +1,1,10474,"turk",2,0,78,5,22,22,"CNN","Democrat" +1,1,10475,"turk",2,0,99,5,1,100,"CNN","Democrat" +1,1,10476,"turk",4,0,1,5,99,99,"CNN","Neither" +1,1,10479,"turk",4,0,1,5,99,99,"CNN","Democrat" +1,1,10481,"turk",2,0,20,5,80,80,"CNN","Neither" +1,1,10483,"turk",3,0,20,5,80,70,"CNN","Democrat" +1,1,10485,"turk",3,0,1,4,99,99,"CNN","Democrat" +1,1,10486,"turk",4,0,50,3,50,50,"CNN","Neither" +1,1,10488,"turk",4,0,30,4,70,70,"CNN","Republican" +1,1,10489,"turk",4,0,23,3,77,65,"CNN","Democrat" +1,1,10493,"turk",3,0,1,2,99,1,"CNN","Democrat" +1,1,10499,"turk",3,0,99,2,1,99,"CNN","Democrat" +1,1,10500,"turk",2,0,1,3,99,99,"CNN","Neither" +1,1,10501,"turk",3,0,50,2,50,0,"CNN","Democrat" +1,1,10503,"turk",4,0,99,3,1,1,"CNN","Democrat" +1,1,10505,"turk",4,0,10,4,90,90,"CNN","Republican" +1,1,10508,"turk",2,0,10,3,90,100,"CNN","Democrat" +1,1,10521,"turk",4,0,1,3,99,99,"CNN","Democrat" +1,1,10522,"turk",3,0,20,3,80,60,"CNN","Republican" +1,1,10523,"turk",3,0,24,4,76,50,"CNN","Democrat" +1,1,10525,"turk",4,0,50,3,50,50,"CNN","Neither" +1,1,10528,"turk",3,0,1,5,99,99,"CNN","Neither" +1,1,10529,"turk",3,0,1,3,99,80,"CNN","Republican" +1,1,10534,"turk",2,0,98,5,2,3,"CNN","Republican" +1,1,9742,"turk",4,1,100,5,100,100,"CNN","Neither" +1,1,9745,"turk",3,1,99,5,99,99,"CNN","Republican" +1,1,9746,"turk",2,1,25,4,25,1,"CNN","Neither" +1,1,9748,"turk",2,1,30,3,30,25,"CNN","Democrat" +1,1,9749,"turk",2,1,100,5,100,100,"CNN","Democrat" +1,1,9750,"turk",3,1,99,5,99,99,"CNN","Republican" +1,1,9751,"turk",2,1,99,3,99,99,"CNN","Democrat" +1,1,9753,"turk",3,1,89,5,89,85,"CNN","Democrat" +1,1,9754,"turk",4,1,95,3,95,95,"CNN","Republican" +1,1,9757,"turk",2,1,99,3,99,99,"CNN","Democrat" +1,1,9758,"turk",4,1,100,5,100,100,"CNN","Neither" +1,1,9759,"turk",2,1,95,5,95,95,"CNN","Republican" +1,1,9760,"turk",3,1,80,4,80,70,"CNN","Neither" +1,1,9765,"turk",4,1,99,3,99,99,"CNN","Neither" +1,1,9770,"turk",3,1,85,2,85,50,"CNN","Democrat" +1,1,9771,"turk",2,1,99,2,99,80,"CNN","Democrat" +1,1,9776,"turk",3,1,99,4,99,99,"CNN","Neither" +1,1,9778,"turk",4,1,78,2,78,78,"CNN","Neither" +1,1,9779,"turk",3,1,99,4,99,99,"CNN","Democrat" +1,1,9782,"turk",3,1,99,5,99,95,"CNN","Republican" +1,1,9784,"turk",2,1,99,5,99,99,"CNN","Republican" +1,1,9789,"turk",3,1,99,4,99,99,"CNN","Democrat" +1,1,9790,"turk",3,1,99,4,99,99,"CNN","Neither" +1,1,9793,"turk",2,1,88,2,88,65,"CNN","Neither" +1,1,9796,"turk",4,1,5,3,5,11,"CNN","Democrat" +1,1,9797,"turk",2,1,90,2,90,75,"CNN","Republican" +1,1,9799,"turk",3,1,99,4,99,99,"CNN","Democrat" +1,1,9800,"turk",4,1,70,5,70,80,"CNN","Republican" +1,1,9801,"turk",2,1,99,5,99,99,"CNN","Neither" +1,1,9811,"turk",2,1,50,2,50,50,"CNN","Republican" +1,1,9812,"turk",4,1,96,2,96,90,"CNN","Republican" +1,1,9816,"turk",3,1,99,2,99,99,"CNN","Democrat" +1,1,9819,"turk",2,1,99,4,99,99,"CNN","Republican" +1,1,9824,"turk",3,1,99,5,99,1,"CNN","Democrat" +1,1,9834,"turk",4,1,75,4,75,75,"CNN","Democrat" +1,1,9838,"turk",3,1,89,5,89,66,"CNN","Democrat" +1,1,9840,"turk",4,1,0,3,0,50,"CNN","Democrat" +1,1,9841,"turk",2,1,99,4,99,99,"CNN","Democrat" +1,1,9845,"turk",4,1,50,2,50,60,"CNN","Neither" +1,1,9846,"turk",4,1,80,3,80,75,"CNN","Democrat" +1,1,9848,"turk",4,1,25,2,25,50,"CNN","Neither" +1,1,9850,"turk",3,1,99,4,99,99,"CNN","Republican" +1,1,9853,"turk",4,1,85,4,85,70,"CNN","Neither" +1,1,9854,"turk",4,1,99,2,99,99,"CNN","Neither" +1,1,9856,"turk",3,1,2,4,2,1,"CNN","Republican" +1,1,9860,"turk",4,1,99,2,99,60,"CNN","Republican" +1,1,9862,"turk",3,1,1,5,1,1,"CNN","Democrat" +1,1,9873,"turk",3,1,99,4,99,99,"CNN","Democrat" +1,1,9876,"turk",4,1,99,5,99,99,"CNN","Democrat" +1,1,9877,"turk",4,1,75,5,75,75,"CNN","Neither" +1,1,9880,"turk",4,1,100,2,100,90,"CNN","Democrat" +1,1,9882,"turk",2,1,90,3,90,90,"CNN","Democrat" +1,1,9888,"turk",4,1,1,4,1,1,"CNN","Republican" +1,1,9893,"turk",2,1,75,2,75,70,"CNN","Democrat" +1,1,9895,"turk",2,1,90,2,90,99,"CNN","Neither" +1,1,9901,"turk",4,1,66,2,66,55,"CNN","Republican" +1,1,9903,"turk",3,1,90,3,90,80,"CNN","Democrat" +1,1,9904,"turk",2,1,80,3,80,80,"CNN","Democrat" +1,1,9908,"turk",2,1,75,2,75,70,"CNN","Democrat" +1,1,9909,"turk",3,1,80,2,80,90,"CNN","Neither" +1,1,9911,"turk",2,1,15,2,15,25,"CNN","Democrat" +1,1,9912,"turk",3,1,80,2,80,70,"CNN","Democrat" +1,1,9915,"turk",3,1,99,5,99,99,"CNN","Democrat" +1,1,9919,"turk",3,1,99,4,99,99,"CNN","Democrat" +1,1,9924,"turk",4,1,99,2,99,99,"CNN","Democrat" +1,1,9926,"turk",4,1,99,2,99,99,"CNN","Republican" +1,1,9932,"turk",4,1,1,3,1,1,"CNN","Democrat" +1,1,9934,"turk",4,1,70,2,70,70,"CNN","Democrat" +1,1,9936,"turk",3,1,90,3,90,90,"CNN","Republican" +1,1,9943,"turk",3,1,90,5,90,90,"CNN","Republican" +1,1,9944,"turk",3,1,30,3,30,50,"CNN","Democrat" +1,1,9945,"turk",2,1,99,5,99,99,"CNN","Democrat" +1,1,9950,"turk",2,1,75,3,75,70,"CNN","Democrat" +1,1,9952,"turk",3,1,99,4,99,50,"CNN","Democrat" +1,1,9954,"turk",4,1,95,3,95,90,"CNN","Democrat" +1,1,9957,"turk",4,1,50,3,50,99,"CNN","Republican" +1,1,9962,"turk",2,1,99,4,99,99,"CNN","Democrat" +1,1,9969,"turk",3,1,1,5,1,1,"CNN","Democrat" +1,1,9973,"turk",4,1,80,2,80,80,"CNN","Democrat" +1,1,9974,"turk",2,1,70,2,70,55,"CNN","Democrat" +1,1,9977,"turk",3,1,100,4,100,100,"CNN","Neither" +1,1,9979,"turk",4,1,20,2,20,50,"CNN","Republican" +1,1,9980,"turk",2,1,99,3,99,90,"CNN","Republican" +1,1,9981,"turk",4,1,100,4,100,100,"CNN","Democrat" +1,1,9984,"turk",4,1,1,2,1,1,"CNN","Democrat" +1,1,9985,"turk",3,1,40,5,40,10,"CNN","Democrat" +1,1,9989,"turk",2,1,55,5,55,98,"CNN","Democrat" +1,1,9992,"turk",3,1,99,2,99,1,"CNN","Republican" +1,1,9994,"turk",2,1,99,2,99,50,"CNN","Democrat" +1,1,9995,"turk",4,1,98,3,98,90,"CNN","Republican" +1,1,9996,"turk",2,1,75,5,75,60,"CNN","Democrat" +1,1,9997,"turk",4,1,99,3,99,99,"CNN","Democrat" +1,1,9998,"turk",4,1,99,3,99,99,"CNN","Democrat" +1,1,10004,"turk",3,1,99,3,99,99,"CNN","Democrat" +1,1,10005,"turk",3,1,80,2,80,80,"CNN","Republican" +1,1,10006,"turk",4,1,100,4,100,40,"CNN","Democrat" +1,1,10008,"turk",4,1,90,2,90,0,"CNN","Republican" +1,1,10009,"turk",2,1,99,3,99,99,"CNN","Republican" +1,1,10011,"turk",3,1,80,4,80,80,"CNN","Democrat" +1,1,10012,"turk",3,1,99,3,99,70,"CNN","Neither" +1,1,10016,"turk",2,1,60,2,60,1,"CNN","Neither" +1,1,10021,"turk",2,1,70,3,70,70,"CNN","Democrat" +1,1,10022,"turk",4,1,99,5,99,99,"CNN","Neither" +1,1,10023,"turk",3,1,0,3,0,0,"CNN","Republican" +1,1,10025,"turk",4,1,90,5,90,85,"CNN","Democrat" +1,1,10029,"turk",2,1,80,2,80,0,"CNN","Democrat" +1,1,10035,"turk",3,1,70,5,70,60,"CNN","Democrat" +1,1,10040,"turk",3,1,99,4,99,89,"CNN","Democrat" +1,1,10045,"turk",2,1,80,3,80,80,"CNN","Neither" +1,1,10050,"turk",4,1,85,3,85,80,"CNN","Democrat" +1,1,10053,"turk",3,1,90,2,90,50,"CNN","Republican" +1,1,10057,"turk",3,1,99,5,99,99,"CNN","Republican" +1,1,10060,"turk",4,1,70,4,70,70,"CNN","Democrat" +1,1,10063,"turk",4,1,99,3,99,1,"CNN","Republican" +1,1,10064,"turk",2,1,1,5,1,99,"CNN","Republican" +1,1,10068,"turk",2,1,99,4,99,99,"CNN","Democrat" +1,1,10075,"turk",2,1,99,5,99,99,"CNN","Democrat" +1,1,10079,"turk",2,1,80,2,80,50,"CNN","Republican" +1,1,10082,"turk",2,1,99,5,99,1,"CNN","Neither" +1,1,10086,"turk",2,1,85,5,85,85,"CNN","Neither" +1,1,10088,"turk",3,1,85,4,85,85,"CNN","Republican" +1,1,10091,"turk",4,1,90,4,90,85,"CNN","Democrat" +1,1,10098,"turk",4,1,80,4,80,75,"CNN","Neither" +1,1,10099,"turk",3,1,80,4,80,80,"CNN","Democrat" +1,1,10100,"turk",2,1,70,5,70,60,"CNN","Democrat" +1,1,10102,"turk",4,1,80,2,80,50,"CNN","Democrat" +1,1,10106,"turk",4,1,99,5,99,99,"CNN","Democrat" +1,1,10110,"turk",3,1,99,3,99,99,"CNN","Republican" +1,1,10112,"turk",3,1,90,3,90,80,"CNN","Democrat" +1,1,10114,"turk",3,1,99,4,99,99,"CNN","Republican" +1,1,10117,"turk",3,1,95,3,95,85,"CNN","Democrat" +1,1,10119,"turk",3,1,99,3,99,99,"CNN","Neither" +1,1,10122,"turk",2,1,65,5,65,80,"CNN","Democrat" +1,1,10123,"turk",4,1,99,4,99,99,"CNN","Republican" +1,1,10124,"turk",2,1,99,5,99,99,"CNN","Republican" +1,1,10127,"turk",4,1,99,3,99,99,"CNN","Republican" +1,1,10128,"turk",3,1,99,4,99,99,"CNN","Democrat" +1,1,10129,"turk",2,1,78,2,78,50,"CNN","Democrat" +1,1,10132,"turk",3,1,22,2,22,22,"CNN","Republican" +1,1,10137,"turk",2,1,90,4,90,70,"CNN","Democrat" +1,1,10139,"turk",2,1,90,4,90,85,"CNN","Republican" +1,1,10141,"turk",3,1,50,3,50,50,"CNN","Republican" +1,1,10143,"turk",4,1,99,2,99,99,"CNN","Democrat" +1,1,10144,"turk",3,1,98,4,98,88,"CNN","Democrat" +1,1,10148,"turk",2,1,99,4,99,80,"CNN","Republican" +1,1,10151,"turk",3,1,99,5,99,99,"CNN","Democrat" +1,1,10156,"turk",2,1,99,5,99,99,"CNN","Democrat" +1,1,10159,"turk",3,1,5,3,5,20,"CNN","Republican" +1,1,10164,"turk",2,1,50,5,50,50,"CNN","Democrat" +1,1,10165,"turk",4,1,99,3,99,99,"CNN","Democrat" +1,1,10170,"turk",4,1,100,3,100,100,"CNN","Neither" +1,1,10172,"turk",4,1,99,5,99,99,"CNN","Republican" +1,1,10173,"turk",3,1,30,2,30,50,"CNN","Democrat" +1,1,10177,"turk",3,1,80,2,80,50,"CNN","Democrat" +1,1,10180,"turk",2,1,50,5,50,90,"CNN","Neither" +1,1,10181,"turk",2,1,99,3,99,80,"CNN","Democrat" +1,1,10185,"turk",3,1,1,4,1,0,"CNN","Republican" +1,1,10187,"turk",3,1,99,2,99,90,"CNN","Democrat" +1,1,10189,"turk",4,1,1,5,1,1,"CNN","Democrat" +1,1,10196,"turk",2,1,1,2,1,1,"CNN","Democrat" +1,1,10198,"turk",3,1,95,4,95,75,"CNN","Democrat" +1,1,10201,"turk",3,1,65,2,65,45,"CNN","Republican" +1,1,10205,"turk",2,1,40,5,40,60,"CNN","Democrat" +1,1,10206,"turk",4,1,99,2,99,4,"CNN","Democrat" +1,1,10207,"turk",2,1,99,2,99,99,"CNN","Republican" +1,1,10208,"turk",3,1,66,4,66,67,"CNN","Democrat" +1,1,10212,"turk",3,1,1,5,1,99,"CNN","Democrat" +1,1,10214,"turk",3,1,25,2,25,50,"CNN","Neither" +1,1,10216,"turk",4,1,99,3,99,99,"CNN","Republican" +1,1,10217,"turk",4,1,1,4,1,1,"CNN","Democrat" +1,1,10219,"turk",2,1,79,4,79,50,"CNN","Democrat" +1,1,10222,"turk",2,1,50,5,50,50,"CNN","Neither" +1,1,10225,"turk",2,1,20,3,20,50,"CNN","Republican" +1,1,10233,"turk",3,1,100,2,100,100,"CNN","Neither" +1,1,10234,"turk",2,1,90,3,90,90,"CNN","Republican" +1,1,10237,"turk",2,1,90,5,90,90,"CNN","Democrat" +1,1,10238,"turk",4,1,90,3,90,80,"CNN","Democrat" +1,1,10240,"turk",4,1,50,3,50,50,"CNN","Neither" +1,1,10243,"turk",3,1,99,4,99,99,"CNN","Republican" +1,1,10244,"turk",2,1,99,3,99,99,"CNN","Republican" +1,1,10246,"turk",2,1,100,3,100,50,"CNN","Democrat" +1,1,10247,"turk",3,1,99,2,99,99,"CNN","Democrat" +1,1,10249,"turk",3,1,80,2,80,80,"CNN","Democrat" +1,1,10250,"turk",2,1,54,5,54,34,"CNN","Democrat" +1,1,10251,"turk",3,1,99,4,99,99,"CNN","Democrat" +1,1,10253,"turk",4,1,85,5,85,90,"CNN","Democrat" +1,1,10255,"turk",3,1,50,3,50,50,"CNN","Democrat" +1,1,10257,"turk",3,1,99,2,99,1,"CNN","Democrat" +1,1,10259,"turk",4,1,50,5,50,99,"CNN","Democrat" +1,1,10260,"turk",2,1,99,4,99,99,"CNN","Neither" +1,1,10265,"turk",2,1,95,4,95,90,"CNN","Republican" +1,1,10266,"turk",4,1,99,5,99,99,"CNN","Republican" +1,1,10267,"turk",3,1,99,3,99,99,"CNN","Democrat" +1,1,10269,"turk",4,1,1,2,1,99,"CNN","Democrat" +1,1,10270,"turk",4,1,99,4,99,99,"CNN","Republican" +1,1,10278,"turk",2,1,1,3,1,99,"CNN","Democrat" +1,1,10282,"turk",2,1,96,5,96,90,"CNN","Neither" +1,1,10283,"turk",3,1,65,2,65,50,"CNN","Republican" +1,1,10286,"turk",3,1,25,4,25,50,"CNN","Republican" +1,1,10287,"turk",4,1,95,3,95,80,"CNN","Democrat" +1,1,10288,"turk",4,1,99,3,99,99,"CNN","Neither" +1,1,10293,"turk",2,1,80,2,80,70,"CNN","Democrat" +1,1,10296,"turk",2,1,95,2,95,85,"CNN","Republican" +1,1,10300,"turk",3,1,99,5,99,99,"CNN","Democrat" +1,1,10302,"turk",3,1,99,5,99,99,"CNN","Republican" +1,1,10304,"turk",3,1,99,5,99,99,"CNN","Democrat" +1,1,10310,"turk",3,1,100,4,100,75,"CNN","Republican" +1,1,10313,"turk",2,1,60,4,60,30,"CNN","Democrat" +1,1,10314,"turk",4,1,75,2,75,85,"CNN","" +1,1,10321,"turk",2,1,99,2,99,80,"CNN","Republican" +1,1,10323,"turk",3,1,99,2,99,5,"CNN","Democrat" +1,1,10326,"turk",3,1,1,2,1,1,"CNN","Republican" +1,1,10327,"turk",4,1,0,4,0,99,"CNN","Democrat" +1,1,10330,"turk",4,1,75,3,75,70,"CNN","Democrat" +1,1,10333,"turk",4,1,99,4,99,99,"CNN","Neither" +1,1,10336,"turk",3,1,95,3,95,90,"CNN","Neither" +1,1,10338,"turk",2,1,10,2,10,80,"CNN","Neither" +1,1,10339,"turk",3,1,99,2,99,99,"CNN","Democrat" +1,1,10343,"turk",3,1,75,5,75,70,"CNN","Republican" +1,1,10347,"turk",4,1,10,3,10,15,"CNN","Democrat" +1,1,10348,"turk",4,1,75,2,75,50,"CNN","Democrat" +1,1,10349,"turk",4,1,99,4,99,99,"CNN","Republican" +1,1,10351,"turk",2,1,77,3,77,65,"CNN","Democrat" +1,1,10353,"turk",2,1,99,5,99,99,"CNN","Democrat" +1,1,10356,"turk",4,1,50,4,50,99,"CNN","Republican" +1,1,10358,"turk",2,1,50,3,50,50,"CNN","Republican" +1,1,10362,"turk",3,1,100,3,100,99,"CNN","Democrat" +1,1,10363,"turk",3,1,70,3,70,70,"CNN","Republican" +1,1,10364,"turk",4,1,1,3,1,1,"CNN","Democrat" +1,1,10366,"turk",3,1,80,3,80,80,"CNN","Democrat" +1,1,10372,"turk",3,1,90,5,90,80,"CNN","Neither" +1,1,10375,"turk",2,1,94,3,94,92,"CNN","Democrat" +1,1,10377,"turk",2,1,0,3,0,1,"CNN","Democrat" +1,1,10378,"turk",2,1,99,5,99,99,"CNN","Neither" +1,1,10379,"turk",2,1,80,2,80,70,"CNN","Democrat" +1,1,10380,"turk",3,1,75,2,75,50,"CNN","Republican" +1,1,10388,"turk",3,1,80,2,80,70,"CNN","Neither" +1,1,10393,"turk",3,1,98,3,98,99,"CNN","Democrat" +1,1,10395,"turk",2,1,99,5,99,99,"CNN","Neither" +1,1,10397,"turk",2,1,99,4,99,99,"CNN","Neither" +1,1,10401,"turk",2,1,50,3,50,10,"CNN","Republican" +1,1,10405,"turk",2,1,99,5,99,99,"CNN","Democrat" +1,1,10407,"turk",3,1,80,2,80,75,"CNN","Neither" +1,1,10415,"turk",3,1,98,2,98,90,"CNN","Democrat" +1,1,10420,"turk",2,1,99,3,99,99,"CNN","Republican" +1,1,10421,"turk",2,1,50,3,50,1,"CNN","Democrat" +1,1,10424,"turk",3,1,99,3,99,99,"CNN","Republican" +1,1,10428,"turk",3,1,90,5,90,90,"CNN","Republican" +1,1,10430,"turk",2,1,99,5,99,99,"CNN","Neither" +1,1,10432,"turk",3,1,85,3,85,85,"CNN","Democrat" +1,1,10434,"turk",2,1,10,2,10,90,"CNN","Democrat" +1,1,10435,"turk",2,1,80,5,80,80,"CNN","Democrat" +1,1,10436,"turk",4,1,99,3,99,99,"CNN","Democrat" +1,1,10437,"turk",4,1,70,4,70,70,"CNN","Democrat" +1,1,10445,"turk",2,1,99,4,99,99,"CNN","Democrat" +1,1,10446,"turk",3,1,75,2,75,60,"CNN","Democrat" +1,1,10447,"turk",4,1,1,4,1,99,"CNN","Neither" +1,1,10451,"turk",2,1,50,2,50,85,"CNN","Republican" +1,1,10453,"turk",4,1,99,3,99,99,"CNN","Democrat" +1,1,10455,"turk",4,1,1,5,1,1,"CNN","Democrat" +1,1,10461,"turk",3,1,99,4,99,99,"CNN","Democrat" +1,1,10462,"turk",2,1,99,2,99,99,"CNN","Republican" +1,1,10465,"turk",2,1,0,3,0,0,"CNN","Democrat" +1,1,10471,"turk",4,1,80,3,80,50,"CNN","Democrat" +1,1,10472,"turk",3,1,90,3,90,75,"CNN","Republican" +1,1,10477,"turk",3,1,72,2,72,50,"CNN","Republican" +1,1,10478,"turk",2,1,95,4,95,95,"CNN","Neither" +1,1,10480,"turk",4,1,88,3,88,77,"CNN","Neither" +1,1,10482,"turk",3,1,67,3,67,99,"CNN","Republican" +1,1,10484,"turk",2,1,100,3,100,100,"CNN","Democrat" +1,1,10491,"turk",4,1,75,3,75,50,"CNN","Democrat" +1,1,10492,"turk",4,1,90,4,90,90,"CNN","Democrat" +1,1,10494,"turk",4,1,60,2,60,50,"CNN","Republican" +1,1,10495,"turk",4,1,90,3,90,80,"CNN","Neither" +1,1,10496,"turk",3,1,65,2,65,25,"CNN","Republican" +1,1,10497,"turk",3,1,99,2,99,1,"CNN","Democrat" +1,1,10498,"turk",2,1,99,5,99,95,"CNN","Republican" +1,1,10511,"turk",2,1,99,4,99,99,"CNN","Democrat" +1,1,10512,"turk",4,1,1,2,1,100,"CNN","Democrat" +1,1,10515,"turk",2,1,1,2,1,1,"CNN","Republican" +1,1,10516,"turk",2,1,99,3,99,99,"CNN","Democrat" +1,1,10518,"turk",2,1,99,3,99,99,"CNN","Republican" +1,1,10519,"turk",2,1,99,5,99,99,"CNN","Republican" +1,1,10520,"turk",2,1,99,2,99,0,"CNN","Democrat" +1,1,10524,"turk",3,1,10,4,10,10,"CNN","Democrat" +1,1,10527,"turk",4,1,99,4,99,99,"CNN","Democrat" +1,1,10531,"turk",3,1,50,4,50,50,"CNN","Neither" +1,2,51,"tess",3,1,50,2,50,47,"Fox News","Neither" +1,2,64,"tess",3,0,38,2,62,50,"Fox News","Democrat" +1,2,70,"tess",1,0,49,2,51,71,"Fox News","Republican" +1,2,72,"tess",2,0,62,3,38,55,"Fox News","Democrat" +1,2,90,"tess",3,1,97,3,97,90,"Fox News","Democrat" +1,2,95,"tess",1,0,68,3,32,58,"Fox News","Democrat" +1,2,114,"tess",2,1,99,2,99,99,"Fox News","Republican" +1,2,128,"tess",2,0,28,2,72,13,"Fox News","Republican" +1,2,130,"tess",1,0,41,3,59,82,"Fox News","Republican" +1,2,151,"tess",4,1,98,2,98,10,"Fox News","Republican" +1,2,152,"tess",1,1,84,2,84,51,"Fox News","Neither" +1,2,165,"tess",4,0,31,2,69,0,"Fox News","Democrat" +1,2,247,"tess",4,1,87,2,87,15,"Fox News","Republican" +1,2,262,"tess",2,1,99,2,99,10,"Fox News","Democrat" +1,2,301,"tess",2,0,60,3,40,40,"Fox News","Democrat" +1,2,308,"tess",3,0,83,2,17,7,"Fox News","Democrat" +1,2,315,"tess",1,1,47,2,47,45,"Fox News","Democrat" +1,2,363,"tess",3,0,29,2,71,0,"Fox News","Republican" +1,2,366,"tess",3,0,100,2,0,3,"Fox News","Democrat" +1,2,372,"tess",3,1,80,3,80,70,"Fox News","Republican" +1,2,379,"tess",1,0,25,2,75,15,"Fox News","Democrat" +1,2,426,"tess",1,0,80,2,20,30,"Fox News","Republican" +1,2,430,"tess",1,1,50,2,50,61,"Fox News","Republican" +1,2,440,"tess",3,1,1,2,1,1,"Fox News","Democrat" +1,2,450,"tess",3,1,87,2,87,10,"Fox News","Republican" +1,2,461,"tess",3,0,44,3,56,15,"Fox News","Republican" +1,2,482,"tess",3,1,70,2,70,80,"Fox News","Democrat" +1,2,485,"tess",2,0,0,2,100,44,"Fox News","Democrat" +1,2,493,"tess",3,1,50,2,50,80,"Fox News","Republican" +1,2,503,"tess",2,1,97,3,97,50,"Fox News","Republican" +1,2,508,"tess",1,0,54,2,46,0,"Fox News","Republican" +1,2,516,"tess",3,0,8,2,92,94,"Fox News","Democrat" +1,2,542,"tess",3,0,28,2,72,1,"Fox News","Republican" +1,2,573,"tess",1,0,0,3,100,16,"Fox News","Democrat" +1,2,574,"tess",4,1,59,2,59,58,"Fox News","Democrat" +1,2,584,"tess",2,0,31,2,69,65,"Fox News","Democrat" +1,2,589,"tess",2,0,54,3,46,40,"Fox News","Republican" +1,2,596,"tess",2,1,100,3,100,100,"Fox News","Democrat" +1,2,611,"tess",2,0,30,3,70,50,"Fox News","Republican" +1,2,617,"tess",1,0,100,2,0,0,"Fox News","Republican" +1,2,627,"tess",2,0,67,2,33,34,"Fox News","Democrat" +1,2,633,"tess",1,1,60,3,60,50,"Fox News","Democrat" +1,2,638,"tess",3,0,32,3,68,43,"Fox News","Republican" +1,2,639,"tess",3,1,18,2,18,100,"Fox News","Democrat" +1,2,649,"tess",1,0,1,2,99,1,"Fox News","Democrat" +1,2,675,"tess",3,0,76,3,24,30,"Fox News","Democrat" +1,2,693,"tess",1,0,74,2,26,0,"Fox News","Republican" +1,2,709,"tess",2,1,100,2,100,88,"Fox News","Republican" +1,2,711,"tess",3,0,31,2,69,18,"Fox News","Democrat" +1,2,734,"tess",3,0,14,2,86,7,"Fox News","Republican" +1,2,770,"tess",2,1,100,2,100,100,"Fox News","Democrat" +1,2,772,"tess",4,1,39,2,39,4,"Fox News","Republican" +1,2,786,"tess",2,0,81,3,19,20,"Fox News","Republican" +1,2,803,"tess",4,0,60,2,40,39,"Fox News","Democrat" +1,2,804,"tess",1,1,84,3,84,60,"Fox News","Democrat" +1,2,823,"tess",2,1,77,3,77,100,"Fox News","Democrat" +1,2,829,"tess",2,0,90,3,10,11,"Fox News","Neither" +1,2,836,"tess",3,1,98,2,98,98,"Fox News","Democrat" +1,2,845,"tess",3,1,99,3,99,99,"Fox News","Republican" +1,2,851,"tess",4,1,20,2,20,50,"Fox News","Republican" +1,2,855,"tess",1,1,5,3,5,4,"Fox News","Republican" +1,2,861,"tess",1,0,2,2,98,50,"Fox News","Democrat" +1,2,886,"tess",4,0,97,2,3,50,"Fox News","Republican" +1,2,895,"tess",3,0,26,2,74,50,"Fox News","Democrat" +1,2,898,"tess",4,0,48,2,52,49,"Fox News","Republican" +1,2,919,"tess",4,1,34,2,34,99,"Fox News","Democrat" +1,2,928,"tess",1,0,90,3,10,9,"Fox News","Republican" +1,2,950,"tess",2,0,80,2,20,12,"Fox News","Democrat" +1,2,952,"tess",1,0,49,3,51,21,"Fox News","Republican" +1,2,958,"tess",2,1,1,2,1,5,"Fox News","Democrat" +1,2,985,"tess",1,1,99,2,99,99,"Fox News","Republican" +1,2,1020,"tess",1,0,97,3,3,5,"Fox News","Republican" +1,2,1031,"tess",1,0,86,2,14,75,"Fox News","Democrat" +1,2,1035,"tess",3,1,90,3,90,80,"Fox News","Democrat" +1,2,1036,"tess",4,0,30,2,70,70,"Fox News","Republican" +1,2,1046,"tess",3,0,97,2,3,97,"Fox News","Republican" +1,2,1047,"tess",4,0,47,2,53,76,"Fox News","Republican" +1,2,1051,"tess",1,0,84,3,16,20,"Fox News","Republican" +1,2,1055,"tess",3,0,40,2,60,5,"Fox News","Republican" +1,2,1062,"tess",1,0,40,2,60,61,"Fox News","Democrat" +1,2,1064,"tess",1,0,NA,3,NA,50,"Fox News","Democrat" +1,2,1067,"tess",2,1,1,2,1,1,"Fox News","Republican" +1,2,1087,"tess",2,1,49,3,49,50,"Fox News","Democrat" +1,2,1100,"tess",4,0,89,2,11,11,"Fox News","Republican" +1,2,1104,"tess",2,0,31,2,69,50,"Fox News","Democrat" +1,2,1114,"tess",2,1,74,3,74,86,"Fox News","Neither" +1,2,1119,"tess",2,0,70,2,30,20,"Fox News","Republican" +1,2,1133,"tess",3,0,98,3,2,20,"Fox News","Republican" +1,2,1141,"tess",1,0,79,2,21,20,"Fox News","Democrat" +1,2,1148,"tess",2,1,69,3,69,99,"Fox News","Republican" +1,2,1156,"tess",2,0,99,3,1,1,"Fox News","Democrat" +1,2,1172,"tess",4,0,99,2,1,1,"Fox News","Republican" +1,2,1178,"tess",1,0,8,2,92,53,"Fox News","Republican" +1,2,1256,"tess",2,0,18,2,82,90,"Fox News","Democrat" +1,2,1260,"tess",2,0,59,3,41,62,"Fox News","Democrat" +1,2,1265,"tess",3,0,81,3,19,41,"Fox News","Republican" +1,2,1277,"tess",1,0,1,3,99,99,"Fox News","Republican" +1,2,1282,"tess",4,1,94,2,94,54,"Fox News","Republican" +1,2,1285,"tess",3,1,60,2,60,32,"Fox News","Neither" +1,2,1288,"tess",2,1,30,3,30,30,"Fox News","Republican" +1,2,1311,"tess",1,0,75,2,25,75,"Fox News","Democrat" +1,2,1330,"tess",1,1,90,2,90,20,"Fox News","Republican" +1,2,1336,"tess",4,1,45,2,45,50,"Fox News","Republican" +1,2,1356,"tess",3,0,72,2,28,20,"Fox News","Republican" +1,2,1366,"tess",1,1,85,2,85,86,"Fox News","Democrat" +1,2,1382,"tess",3,1,100,2,100,1,"Fox News","Republican" +1,2,1402,"tess",1,1,1,2,1,100,"Fox News","Republican" +1,2,1408,"tess",1,0,20,3,80,90,"Fox News","Democrat" +1,2,1418,"tess",4,1,84,2,84,47,"Fox News","Republican" +1,2,1426,"tess",3,1,20,2,20,70,"Fox News","Democrat" +1,2,1444,"tess",3,1,57,3,57,56,"Fox News","Democrat" +1,2,1464,"tess",3,0,27,2,73,4,"Fox News","Democrat" +1,2,1506,"tess",2,0,81,3,19,15,"Fox News","Democrat" +1,2,1510,"tess",3,1,35,2,35,99,"Fox News","Republican" +1,2,1511,"tess",4,0,4,2,96,96,"Fox News","Republican" +1,2,1518,"tess",1,0,74,2,26,33,"Fox News","Democrat" +1,2,1523,"tess",4,1,96,2,96,50,"Fox News","Republican" +1,2,1532,"tess",3,1,52,2,52,38,"Fox News","Republican" +1,2,1551,"tess",1,1,82,2,82,29,"Fox News","Republican" +1,2,1552,"tess",2,0,49,3,51,69,"Fox News","Republican" +1,2,1553,"tess",1,0,0,3,100,50,"Fox News","Democrat" +1,2,1563,"tess",4,1,99,2,99,98,"Fox News","Republican" +1,2,1618,"tess",3,1,46,3,46,100,"Fox News","Republican" +1,2,1657,"tess",1,1,99,3,99,99,"Fox News","Republican" +1,2,1663,"tess",1,0,74,3,26,23,"Fox News","Neither" +1,2,1674,"tess",4,1,89,2,89,51,"Fox News","Republican" +1,2,1689,"tess",2,0,73,2,27,3,"Fox News","Democrat" +1,2,1702,"tess",2,0,95,3,5,10,"Fox News","Neither" +1,2,1726,"tess",1,1,60,2,60,55,"Fox News","Democrat" +1,2,1733,"tess",4,1,50,2,50,50,"Fox News","Democrat" +1,2,1756,"tess",2,1,40,3,40,90,"Fox News","Democrat" +1,2,1775,"tess",4,1,57,2,57,64,"Fox News","Democrat" +1,2,1813,"tess",4,0,63,2,37,53,"Fox News","Democrat" +1,2,1832,"tess",1,0,80,3,20,50,"Fox News","Republican" +1,2,1835,"tess",3,1,3,2,3,94,"Fox News","Neither" +1,2,1847,"tess",1,1,70,3,70,70,"Fox News","Republican" +1,2,1850,"tess",1,0,40,3,60,71,"Fox News","Republican" +1,2,1863,"tess",2,0,55,3,45,49,"Fox News","Republican" +1,2,1870,"tess",3,1,55,2,55,75,"Fox News","Republican" +1,2,1890,"tess",2,1,73,2,73,75,"Fox News","Democrat" +1,2,1898,"tess",2,1,52,3,52,60,"Fox News","Democrat" +1,2,1910,"tess",4,1,99,2,99,99,"Fox News","Republican" +1,2,1928,"tess",2,1,98,3,98,96,"Fox News","Democrat" +1,2,1933,"tess",1,0,92,3,8,50,"Fox News","Democrat" +1,2,1935,"tess",4,0,100,2,0,0,"Fox News","Republican" +1,2,1940,"tess",3,0,10,3,90,60,"Fox News","Democrat" +1,2,1950,"tess",4,1,99,2,99,100,"Fox News","Republican" +1,2,1952,"tess",2,1,NA,3,NA,NA,"Fox News","Democrat" +1,2,1953,"tess",2,0,91,2,9,24,"Fox News","Republican" +1,2,1960,"tess",1,1,100,2,100,80,"Fox News","Republican" +1,2,1966,"tess",4,0,86,2,14,12,"Fox News","Republican" +1,2,1976,"tess",3,1,93,2,93,87,"Fox News","Republican" +1,2,1994,"tess",2,1,99,2,99,98,"Fox News","Republican" +1,2,2001,"tess",4,0,95,2,5,2,"Fox News","Republican" +1,2,2017,"tess",1,1,NA,2,NA,63,"Fox News","Democrat" +1,2,2030,"tess",2,1,100,2,100,100,"Fox News","Democrat" +1,2,2057,"tess",1,1,97,2,97,72,"Fox News","Republican" +1,2,2060,"tess",2,0,92,3,8,14,"Fox News","Democrat" +1,2,2061,"tess",1,1,83,2,83,82,"Fox News","Democrat" +1,2,2066,"tess",3,0,98,3,2,2,"Fox News","Republican" +1,2,2072,"tess",3,1,66,2,66,98,"Fox News","Democrat" +1,2,2088,"tess",2,0,81,2,19,1,"Fox News","Democrat" +1,2,2090,"tess",1,1,90,2,90,0,"Fox News","Democrat" +1,2,2104,"tess",1,0,49,3,51,76,"Fox News","Republican" +1,2,2107,"tess",1,1,83,3,83,85,"Fox News","Republican" +1,2,2180,"tess",2,0,56,3,44,0,"Fox News","Democrat" +1,2,2188,"tess",4,0,80,2,20,50,"Fox News","Republican" +1,2,2190,"tess",2,1,86,3,86,52,"Fox News","Neither" +1,2,2195,"tess",4,1,50,2,50,50,"Fox News","Republican" +1,2,2196,"tess",4,1,70,2,70,90,"Fox News","Republican" +1,2,2207,"tess",4,1,43,2,43,47,"Fox News","Republican" +1,2,2208,"tess",3,1,0,2,0,0,"Fox News","Democrat" +1,2,2228,"tess",1,1,52,3,52,22,"Fox News","Democrat" +1,2,2230,"tess",4,1,97,2,97,99,"Fox News","Republican" +1,2,2248,"tess",2,1,37,2,37,55,"Fox News","Democrat" +1,2,2272,"tess",4,0,50,2,50,50,"Fox News","Democrat" +1,2,2275,"tess",2,1,52,3,52,56,"Fox News","Republican" +1,2,2278,"tess",1,1,40,2,40,39,"Fox News","Neither" +1,2,2283,"tess",2,0,10,3,90,80,"Fox News","Democrat" +1,2,2286,"tess",2,1,90,2,90,94,"Fox News","Democrat" +1,2,2318,"tess",2,1,80,2,80,70,"Fox News","Democrat" +1,2,2322,"tess",1,0,77,3,23,35,"Fox News","Republican" +1,2,2356,"tess",3,0,11,3,89,69,"Fox News","Republican" +1,2,2382,"tess",2,1,58,2,58,11,"Fox News","Democrat" +1,2,2398,"tess",2,0,1,2,99,99,"Fox News","Democrat" +1,2,2399,"tess",1,1,94,3,94,86,"Fox News","Democrat" +1,2,2447,"tess",1,1,30,3,30,20,"Fox News","Democrat" +1,2,2474,"tess",4,0,5,2,95,100,"Fox News","Democrat" +1,2,2484,"tess",1,0,70,3,30,40,"Fox News","Republican" +1,2,2486,"tess",3,1,100,2,100,94,"Fox News","Republican" +1,2,2492,"tess",3,1,92,3,92,90,"Fox News","Democrat" +1,2,2512,"tess",3,0,19,2,81,80,"Fox News","Republican" +1,2,2518,"tess",4,0,81,2,19,27,"Fox News","Republican" +1,2,2519,"tess",1,0,58,2,42,14,"Fox News","Democrat" +1,2,2520,"tess",3,0,98,3,2,1,"Fox News","Democrat" +1,2,2525,"tess",3,1,25,2,25,1,"Fox News","Republican" +1,2,2537,"tess",1,1,87,3,87,85,"Fox News","Republican" +1,2,2542,"tess",3,1,33,2,33,24,"Fox News","Neither" +1,2,2545,"tess",1,1,67,3,67,79,"Fox News","Democrat" +1,2,2557,"tess",3,1,42,2,42,50,"Fox News","Democrat" +1,2,2578,"tess",4,0,13,2,87,2,"Fox News","Republican" +1,2,2592,"tess",2,1,48,3,48,39,"Fox News","Democrat" +1,2,2623,"tess",3,0,45,3,55,50,"Fox News","Democrat" +1,2,2630,"tess",4,1,50,2,50,51,"Fox News","Republican" +1,2,2644,"tess",1,1,90,2,90,30,"Fox News","Democrat" +1,2,2658,"tess",4,0,97,2,3,95,"Fox News","Republican" +1,2,2659,"tess",4,1,69,2,69,2,"Fox News","Republican" +1,2,2669,"tess",3,1,100,2,100,100,"Fox News","Democrat" +1,2,2670,"tess",3,0,15,3,85,65,"Fox News","Neither" +1,2,2695,"tess",4,0,NA,2,NA,20,"Fox News","Republican" +1,2,2698,"tess",4,1,41,2,41,70,"Fox News","Republican" +1,2,2700,"tess",2,0,80,2,20,24,"Fox News","Democrat" +1,2,2714,"tess",4,1,93,2,93,91,"Fox News","Democrat" +1,2,2720,"tess",1,1,30,2,30,53,"Fox News","Republican" +1,2,2722,"tess",4,1,81,2,81,63,"Fox News","Democrat" +1,2,2745,"tess",1,1,50,3,50,90,"Fox News","Republican" +1,2,2760,"tess",1,1,70,3,70,80,"Fox News","Republican" +1,2,2764,"tess",4,1,78,2,78,93,"Fox News","Republican" +1,2,2765,"tess",3,0,20,3,80,81,"Fox News","Republican" +1,2,2774,"tess",2,0,3,3,97,95,"Fox News","Republican" +1,2,2797,"tess",1,0,16,3,84,80,"Fox News","Democrat" +1,2,2885,"tess",4,1,95,2,95,79,"Fox News","Republican" +1,2,2888,"tess",3,1,89,3,89,90,"Fox News","Democrat" +1,2,2892,"tess",3,1,44,2,44,54,"Fox News","Democrat" +1,2,2893,"tess",2,1,10,3,10,20,"Fox News","Republican" +1,2,2902,"tess",2,0,80,2,20,50,"Fox News","Democrat" +1,2,2905,"tess",1,0,61,2,39,87,"Fox News","Democrat" +1,2,2915,"tess",1,0,50,2,50,30,"Fox News","Democrat" +1,2,2923,"tess",3,0,65,2,35,25,"Fox News","Neither" +1,2,2934,"tess",3,1,40,2,40,40,"Fox News","Democrat" +1,2,2945,"tess",3,0,95,3,5,6,"Fox News","Democrat" +1,2,2970,"tess",1,1,100,3,100,20,"Fox News","Neither" +1,2,2987,"tess",3,1,100,2,100,98,"Fox News","Republican" +1,2,2988,"tess",2,1,96,3,96,59,"Fox News","Democrat" +1,2,2990,"tess",2,1,99,3,99,99,"Fox News","Republican" +1,2,3020,"tess",3,0,47,3,53,55,"Fox News","Democrat" +1,2,3021,"tess",3,0,70,2,30,30,"Fox News","Democrat" +1,2,3028,"tess",1,1,89,2,89,95,"Fox News","Democrat" +1,2,3029,"tess",1,1,67,2,67,50,"Fox News","Democrat" +1,2,3047,"tess",4,0,49,2,51,54,"Fox News","Democrat" +1,2,3048,"tess",1,0,50,2,50,1,"Fox News","Democrat" +1,2,3051,"tess",3,0,77,3,23,60,"Fox News","Republican" +1,2,3072,"tess",3,0,99,2,1,1,"Fox News","Republican" +1,2,3074,"tess",2,1,21,3,21,41,"Fox News","Democrat" +1,2,3076,"tess",2,0,0,3,100,0,"Fox News","Republican" +1,2,3082,"tess",2,0,53,3,47,52,"Fox News","Neither" +1,2,3107,"tess",3,1,100,3,100,98,"Fox News","Democrat" +1,2,3109,"tess",2,0,86,2,14,83,"Fox News","Neither" +1,2,3123,"tess",3,0,30,2,70,50,"Fox News","Democrat" +1,2,3125,"tess",2,1,91,3,91,51,"Fox News","Democrat" +1,2,3128,"tess",3,0,20,3,80,80,"Fox News","Republican" +1,2,3156,"tess",1,1,70,2,70,50,"Fox News","Democrat" +1,2,3170,"tess",1,1,50,3,50,70,"Fox News","Democrat" +1,2,3186,"tess",3,1,60,2,60,10,"Fox News","Democrat" +1,2,3188,"tess",3,0,30,3,70,75,"Fox News","Democrat" +1,2,3190,"tess",1,1,100,3,100,100,"Fox News","Democrat" +1,2,3192,"tess",3,0,70,2,30,3,"Fox News","Democrat" +1,2,3195,"tess",1,0,51,2,49,90,"Fox News","Democrat" +1,2,3214,"tess",4,1,53,2,53,56,"Fox News","Democrat" +1,2,3244,"tess",2,1,99,3,99,93,"Fox News","Republican" +1,2,3263,"tess",1,0,41,2,59,13,"Fox News","Democrat" +1,2,3274,"tess",3,0,100,3,0,0,"Fox News","Democrat" +1,2,3281,"tess",2,1,98,2,98,90,"Fox News","Democrat" +1,2,3295,"tess",2,1,74,2,74,51,"Fox News","Democrat" +1,2,3304,"tess",1,1,100,2,100,99,"Fox News","Republican" +1,2,3313,"tess",4,1,85,2,85,80,"Fox News","Republican" +1,2,3344,"tess",2,1,63,3,63,87,"Fox News","Democrat" +1,2,3346,"tess",1,1,50,3,50,30,"Fox News","Republican" +1,2,3356,"tess",2,0,100,3,0,71,"Fox News","Democrat" +1,2,3364,"tess",2,0,42,3,58,68,"Fox News","Democrat" +1,2,3365,"tess",3,0,30,3,70,70,"Fox News","Democrat" +1,2,3425,"tess",2,0,59,2,41,23,"Fox News","Republican" +1,2,3452,"tess",4,0,89,2,11,97,"Fox News","Republican" +1,2,3462,"tess",1,0,64,2,36,97,"Fox News","Republican" +1,2,3464,"tess",2,1,59,2,59,30,"Fox News","Republican" +1,2,3468,"tess",3,0,97,3,3,59,"Fox News","Democrat" +1,2,3477,"tess",3,1,81,3,81,74,"Fox News","Democrat" +1,2,3505,"tess",2,0,0,3,100,91,"Fox News","Republican" +1,2,3507,"tess",2,1,68,2,68,18,"Fox News","Democrat" +1,2,3512,"tess",4,1,97,2,97,90,"Fox News","Republican" +1,2,3513,"tess",3,1,48,2,48,6,"Fox News","Democrat" +1,2,3515,"tess",3,0,13,2,87,0,"Fox News","Republican" +1,2,3517,"tess",2,0,93,3,7,51,"Fox News","Republican" +1,2,3522,"tess",4,0,92,2,8,21,"Fox News","Republican" +1,2,3535,"tess",1,1,90,2,90,30,"Fox News","Democrat" +1,2,3545,"tess",4,0,40,2,60,40,"Fox News","Democrat" +1,2,3568,"tess",1,1,90,2,90,80,"Fox News","Democrat" +1,2,3589,"tess",4,1,98,2,98,99,"Fox News","Democrat" +1,2,3609,"tess",2,1,100,2,100,98,"Fox News","Republican" +1,2,3610,"tess",3,0,NA,3,NA,50,"Fox News","Democrat" +1,2,3611,"tess",2,0,100,3,0,98,"Fox News","Democrat" +1,2,3631,"tess",3,1,20,3,20,90,"Fox News","Democrat" +1,2,3635,"tess",3,1,91,3,91,50,"Fox News","Republican" +1,2,3643,"tess",1,0,3,3,97,95,"Fox News","Democrat" +1,2,3645,"tess",3,0,88,2,12,4,"Fox News","Republican" +1,2,3653,"tess",2,0,70,2,30,48,"Fox News","Democrat" +1,2,3663,"tess",3,1,78,2,78,47,"Fox News","Democrat" +1,2,3673,"tess",3,1,66,2,66,30,"Fox News","Republican" +1,2,3676,"tess",2,0,51,3,49,100,"Fox News","Republican" +1,2,3678,"tess",1,1,0,2,0,0,"Fox News","Republican" +1,2,3681,"tess",4,1,62,2,62,79,"Fox News","Democrat" +1,2,3702,"tess",1,1,90,2,90,11,"Fox News","Democrat" +1,2,3710,"tess",3,0,60,3,40,40,"Fox News","Democrat" +1,2,3711,"tess",3,1,60,3,60,50,"Fox News","Democrat" +1,2,3725,"tess",1,1,90,2,90,88,"Fox News","Republican" +1,2,3736,"tess",3,1,100,3,100,50,"Fox News","Democrat" +1,2,3745,"tess",4,0,48,2,52,1,"Fox News","Democrat" +1,2,3747,"tess",3,1,90,3,90,95,"Fox News","Democrat" +1,2,3754,"tess",3,1,25,2,25,99,"Fox News","Democrat" +1,2,3759,"tess",4,1,51,2,51,71,"Fox News","Republican" +1,2,3776,"tess",3,1,34,3,34,46,"Fox News","Democrat" +1,2,3782,"tess",3,0,61,2,39,28,"Fox News","Democrat" +1,2,3787,"tess",1,0,0,3,100,99,"Fox News","Democrat" +1,2,3793,"tess",4,1,49,2,49,36,"Fox News","Republican" +1,2,3795,"tess",4,1,94,2,94,97,"Fox News","Democrat" +1,2,3801,"tess",2,1,66,2,66,86,"Fox News","Democrat" +1,2,3810,"tess",1,0,80,3,20,20,"Fox News","Democrat" +1,2,3814,"tess",2,0,51,3,49,50,"Fox News","Democrat" +1,2,3819,"tess",2,0,61,2,39,15,"Fox News","Republican" +1,2,3820,"tess",1,0,90,3,10,10,"Fox News","Democrat" +1,2,3848,"tess",2,0,2,3,98,90,"Fox News","Republican" +1,2,3890,"tess",2,0,100,2,0,50,"Fox News","Republican" +1,2,3898,"tess",3,1,100,2,100,55,"Fox News","Democrat" +1,2,3909,"tess",1,0,10,2,90,30,"Fox News","Democrat" +1,2,3920,"tess",1,1,78,2,78,70,"Fox News","Democrat" +1,2,3923,"tess",1,1,99,2,99,99,"Fox News","Democrat" +1,2,3958,"tess",2,0,91,2,9,70,"Fox News","Republican" +1,2,3965,"tess",1,0,50,2,50,2,"Fox News","Democrat" +1,2,4001,"tess",2,1,80,3,80,90,"Fox News","Neither" +1,2,4007,"tess",4,0,50,2,50,50,"Fox News","Republican" +1,2,4008,"tess",4,0,70,2,30,51,"Fox News","Republican" +1,2,4015,"tess",2,1,0,2,0,1,"Fox News","Democrat" +1,2,4027,"tess",4,0,28,2,72,23,"Fox News","Republican" +1,2,4043,"tess",3,0,92,2,8,95,"Fox News","Republican" +1,2,4075,"tess",4,0,22,2,78,30,"Fox News","Democrat" +1,2,4096,"tess",2,1,69,2,69,40,"Fox News","Democrat" +1,2,4108,"tess",2,1,100,3,100,99,"Fox News","Democrat" +1,2,4139,"tess",1,1,21,2,21,11,"Fox News","Republican" +1,2,4142,"tess",2,1,0,3,0,0,"Fox News","Democrat" +1,2,4149,"tess",4,1,91,2,91,73,"Fox News","Republican" +1,2,4160,"tess",3,1,70,2,70,70,"Fox News","Democrat" +1,2,4163,"tess",2,0,77,2,23,23,"Fox News","Republican" +1,2,4197,"tess",2,0,0,2,100,0,"Fox News","Democrat" +1,2,4199,"tess",2,1,41,2,41,67,"Fox News","Democrat" +1,2,4200,"tess",2,1,70,2,70,54,"Fox News","Democrat" +1,2,4202,"tess",2,1,74,2,74,90,"Fox News","Democrat" +1,2,4209,"tess",1,0,80,3,20,50,"Fox News","Democrat" +1,2,4216,"tess",4,1,86,2,86,79,"Fox News","Democrat" +1,2,4218,"tess",1,0,6,2,94,4,"Fox News","Democrat" +1,2,4222,"tess",3,0,76,3,24,69,"Fox News","Democrat" +1,2,4229,"tess",1,0,19,2,81,11,"Fox News","Democrat" +1,2,4238,"tess",3,0,87,2,13,80,"Fox News","Democrat" +1,2,4251,"tess",4,0,85,2,15,14,"Fox News","Republican" +1,2,4252,"tess",4,1,91,2,91,85,"Fox News","Republican" +1,2,4253,"tess",3,1,52,2,52,39,"Fox News","Democrat" +1,2,4282,"tess",4,0,100,2,0,100,"Fox News","Republican" +1,2,4285,"tess",2,0,1,3,99,99,"Fox News","Neither" +1,2,4307,"tess",4,0,56,2,44,50,"Fox News","Republican" +1,2,4311,"tess",1,1,62,2,62,4,"Fox News","Democrat" +1,2,4322,"tess",4,1,96,2,96,51,"Fox News","Republican" +1,2,4334,"tess",1,0,90,3,10,1,"Fox News","Republican" +1,2,4349,"tess",1,1,100,3,100,98,"Fox News","Democrat" +1,2,4356,"tess",3,1,50,2,50,50,"Fox News","Republican" +1,2,4365,"tess",2,1,75,2,75,60,"Fox News","Republican" +1,2,4367,"tess",4,0,50,2,50,9,"Fox News","Republican" +1,2,4403,"tess",4,0,64,2,36,61,"Fox News","Republican" +1,2,4416,"tess",4,1,79,2,79,81,"Fox News","Republican" +1,2,4431,"tess",1,0,90,3,10,90,"Fox News","Democrat" +1,2,4447,"tess",2,1,90,2,90,20,"Fox News","Republican" +1,2,4451,"tess",1,1,82,3,82,98,"Fox News","Republican" +1,2,4455,"tess",2,1,90,3,90,80,"Fox News","Democrat" +1,2,4457,"tess",2,1,0,3,0,0,"Fox News","Democrat" +1,2,4470,"tess",4,0,74,2,26,16,"Fox News","Democrat" +1,2,4476,"tess",2,0,31,3,69,50,"Fox News","Democrat" +1,2,4486,"tess",3,1,40,3,40,50,"Fox News","Republican" +1,2,4500,"tess",1,1,84,3,84,90,"Fox News","Democrat" +1,2,4512,"tess",4,0,59,2,41,30,"Fox News","Democrat" +1,2,4523,"tess",1,0,67,3,33,75,"Fox News","Republican" +1,2,4524,"tess",1,1,75,2,75,70,"Fox News","Republican" +1,2,4548,"tess",1,0,50,2,50,30,"Fox News","Republican" +1,2,4557,"tess",1,1,96,2,96,94,"Fox News","Republican" +1,2,4587,"tess",4,0,28,2,72,41,"Fox News","Republican" +1,2,4624,"tess",2,0,65,3,35,50,"Fox News","Republican" +1,2,4642,"tess",1,1,100,2,100,37,"Fox News","Democrat" +1,2,4674,"tess",4,0,26,2,74,27,"Fox News","Republican" +1,2,4683,"tess",4,1,100,2,100,100,"Fox News","Neither" +1,2,4691,"tess",1,1,100,3,100,100,"Fox News","Democrat" +1,2,4700,"tess",1,0,90,2,10,10,"Fox News","Republican" +1,2,4742,"tess",2,0,20,3,80,20,"Fox News","Democrat" +1,2,4770,"tess",3,0,96,2,4,90,"Fox News","Democrat" +1,2,4774,"tess",2,0,50,2,50,20,"Fox News","Republican" +1,2,4782,"tess",3,1,49,3,49,58,"Fox News","Democrat" +1,2,4785,"tess",2,1,28,3,28,100,"Fox News","Republican" +1,2,4793,"tess",3,1,50,2,50,100,"Fox News","Democrat" +1,2,4799,"tess",1,0,58,3,42,42,"Fox News","Republican" +1,2,4800,"tess",4,0,100,2,0,0,"Fox News","Republican" +1,2,4817,"tess",3,0,70,3,30,76,"Fox News","Democrat" +1,2,4821,"tess",4,0,31,2,69,61,"Fox News","Neither" +1,2,4823,"tess",2,1,100,2,100,49,"Fox News","Democrat" +1,2,4826,"tess",3,0,90,3,10,50,"Fox News","Democrat" +1,2,4863,"tess",1,1,87,2,87,100,"Fox News","Republican" +1,2,4866,"tess",2,1,64,2,64,57,"Fox News","Democrat" +1,2,4880,"tess",4,1,44,2,44,12,"Fox News","Republican" +1,2,4908,"tess",2,0,93,2,7,49,"Fox News","Democrat" +1,2,4914,"tess",3,0,90,3,10,20,"Fox News","Democrat" +1,2,4921,"tess",1,0,100,2,0,0,"Fox News","Republican" +1,2,4926,"tess",1,1,99,2,99,99,"Fox News","Democrat" +1,2,4930,"tess",2,0,82,2,18,82,"Fox News","Democrat" +1,2,4932,"tess",3,0,0,2,100,90,"Fox News","Republican" +1,2,4935,"tess",2,0,30,2,70,25,"Fox News","Democrat" +1,2,4964,"tess",3,1,90,2,90,90,"Fox News","Republican" +1,2,4969,"tess",1,0,78,2,22,67,"Fox News","Democrat" +1,2,4998,"tess",3,0,45,3,55,46,"Fox News","Democrat" +1,2,5003,"tess",4,0,14,2,86,30,"Fox News","Republican" +1,2,5016,"tess",2,0,80,2,20,94,"Fox News","Democrat" +1,2,5055,"tess",2,1,100,2,100,84,"Fox News","Republican" +1,2,5086,"tess",1,1,70,2,70,20,"Fox News","Neither" +1,2,5092,"tess",4,0,30,2,70,4,"Fox News","Republican" +1,2,5144,"tess",1,1,80,2,80,51,"Fox News","Democrat" +1,2,5151,"tess",2,0,98,3,2,12,"Fox News","Democrat" +1,2,5165,"tess",4,1,100,2,100,100,"Fox News","Republican" +1,2,5175,"tess",1,1,41,3,41,41,"Fox News","Democrat" +1,2,5221,"tess",4,0,52,2,48,19,"Fox News","Republican" +1,2,5222,"tess",2,0,49,2,51,3,"Fox News","Democrat" +1,2,5225,"tess",4,1,62,2,62,50,"Fox News","Democrat" +1,2,5290,"tess",1,0,80,2,20,62,"Fox News","Republican" +1,2,5301,"tess",1,0,80,2,20,50,"Fox News","Democrat" +1,2,5311,"tess",2,0,76,3,24,50,"Fox News","Republican" +1,2,5314,"tess",4,1,97,2,97,100,"Fox News","Republican" +1,2,5316,"tess",1,1,57,2,57,58,"Fox News","Republican" +1,2,5325,"tess",2,0,28,2,72,17,"Fox News","Democrat" +1,2,5327,"tess",1,1,18,3,18,10,"Fox News","Republican" +1,2,5353,"tess",3,0,98,3,2,0,"Fox News","Democrat" +1,2,5385,"tess",3,1,89,3,89,79,"Fox News","Democrat" +1,2,5388,"tess",1,1,86,2,86,27,"Fox News","Republican" +1,2,5392,"tess",1,1,90,3,90,69,"Fox News","Democrat" +1,2,5393,"tess",3,1,30,3,30,27,"Fox News","Republican" +1,2,5400,"tess",1,1,80,3,80,96,"Fox News","Republican" +1,2,5407,"tess",1,1,49,3,49,55,"Fox News","Republican" +1,2,5412,"tess",3,1,62,2,62,50,"Fox News","Republican" +1,2,5419,"tess",2,1,100,2,100,10,"Fox News","Republican" +1,2,5423,"tess",2,0,15,2,85,4,"Fox News","Democrat" +1,2,5428,"tess",1,0,1,3,99,95,"Fox News","Republican" +1,2,5430,"tess",4,0,100,2,0,0,"Fox News","Democrat" +1,2,5434,"tess",4,0,70,2,30,26,"Fox News","Republican" +1,2,5438,"tess",3,0,12,2,88,39,"Fox News","Democrat" +1,2,5448,"tess",2,1,100,3,100,93,"Fox News","Democrat" +1,2,5462,"tess",3,1,40,2,40,71,"Fox News","Republican" +1,2,5465,"tess",3,1,89,3,89,72,"Fox News","Republican" +1,2,5480,"tess",1,0,NA,3,NA,30,"Fox News","Republican" +1,2,5490,"tess",4,1,74,2,74,91,"Fox News","Republican" +1,2,5504,"tess",1,1,60,2,60,60,"Fox News","Republican" +1,2,5509,"tess",3,1,21,2,21,50,"Fox News","Democrat" +1,2,5515,"tess",3,1,90,2,90,81,"Fox News","Republican" +1,2,5540,"tess",2,1,91,3,91,96,"Fox News","Democrat" +1,2,5544,"tess",3,0,90,2,10,50,"Fox News","Republican" +1,2,5551,"tess",1,0,88,2,12,13,"Fox News","Republican" +1,2,5553,"tess",4,0,5,2,95,50,"Fox News","Republican" +1,2,5561,"tess",3,1,80,2,80,50,"Fox News","Republican" +1,2,5569,"tess",1,1,87,2,87,84,"Fox News","Democrat" +1,2,5570,"tess",1,1,51,2,51,50,"Fox News","Democrat" +1,2,5576,"tess",2,1,85,3,85,74,"Fox News","Democrat" +1,2,5581,"tess",2,1,10,3,10,90,"Fox News","Democrat" +1,2,5586,"tess",3,0,99,3,1,97,"Fox News","Democrat" +1,2,5595,"tess",2,0,99,3,1,1,"Fox News","Republican" +1,2,5597,"tess",3,0,78,3,22,20,"Fox News","Republican" +1,2,5611,"tess",3,0,35,3,65,84,"Fox News","Republican" +1,2,5613,"tess",2,0,99,3,1,85,"Fox News","Republican" +1,2,5615,"tess",2,0,59,3,41,40,"Fox News","Democrat" +1,2,5617,"tess",1,0,23,3,77,1,"Fox News","Democrat" +1,2,5620,"tess",3,1,98,3,98,92,"Fox News","Democrat" +1,2,5621,"tess",4,0,99,2,1,100,"Fox News","Democrat" +1,2,5631,"tess",1,0,0,3,100,90,"Fox News","Republican" +1,2,5635,"tess",2,0,99,2,1,1,"Fox News","Republican" +1,2,5648,"tess",1,1,100,2,100,97,"Fox News","Democrat" +1,2,5657,"tess",1,1,87,3,87,100,"Fox News","Democrat" +1,2,5664,"tess",2,0,98,2,2,4,"Fox News","Democrat" +1,2,5677,"tess",3,0,24,3,76,77,"Fox News","Republican" +1,2,5681,"tess",2,1,90,3,90,70,"Fox News","Democrat" +1,2,5706,"tess",3,0,34,3,66,53,"Fox News","Republican" +1,2,5721,"tess",2,0,99,3,1,70,"Fox News","Republican" +1,2,5725,"tess",2,0,2,2,98,91,"Fox News","Republican" +1,2,5731,"tess",1,0,50,3,50,50,"Fox News","Democrat" +1,2,5735,"tess",3,1,85,3,85,70,"Fox News","Republican" +1,2,5740,"tess",1,1,0,2,0,0,"Fox News","Democrat" +1,2,5746,"tess",2,0,NA,2,NA,80,"Fox News","Democrat" +1,2,5760,"tess",3,0,31,3,69,69,"Fox News","Democrat" +1,2,5772,"tess",1,0,100,2,0,20,"Fox News","Democrat" +1,2,5803,"tess",3,1,96,3,96,79,"Fox News","Republican" +1,2,5810,"tess",4,0,50,2,50,70,"Fox News","Democrat" +1,2,5815,"tess",2,1,79,3,79,50,"Fox News","Democrat" +1,2,5820,"tess",3,1,76,3,76,77,"Fox News","Democrat" +1,2,5844,"tess",3,1,50,2,50,50,"Fox News","Democrat" +1,2,5884,"tess",2,0,50,2,50,49,"Fox News","Democrat" +1,2,5885,"tess",4,1,52,2,52,52,"Fox News","Republican" +1,2,5896,"tess",2,1,96,3,96,61,"Fox News","Republican" +1,2,5902,"tess",4,0,100,2,0,49,"Fox News","Republican" +1,2,5914,"tess",3,0,67,2,33,62,"Fox News","Republican" +1,2,5920,"tess",4,0,70,2,30,22,"Fox News","Republican" +1,2,5922,"tess",3,0,3,2,97,6,"Fox News","Republican" +1,2,5926,"tess",2,0,12,2,88,50,"Fox News","Democrat" +1,2,5934,"tess",1,1,98,3,98,96,"Fox News","Democrat" +1,2,5940,"tess",1,0,57,3,43,51,"Fox News","Democrat" +1,2,5946,"tess",3,0,2,2,98,0,"Fox News","Republican" +1,2,5954,"tess",1,0,30,3,70,50,"Fox News","Democrat" +1,2,5964,"tess",4,1,96,2,96,94,"Fox News","Democrat" +1,2,5988,"tess",2,1,51,2,51,81,"Fox News","Democrat" +1,2,5990,"tess",3,0,82,3,18,78,"Fox News","Democrat" +1,2,5994,"tess",2,0,90,3,10,10,"Fox News","Democrat" +1,2,5996,"tess",2,0,43,3,57,37,"Fox News","Democrat" +1,2,5998,"tess",3,0,47,2,53,50,"Fox News","Democrat" +1,2,5999,"tess",4,0,50,2,50,50,"Fox News","Democrat" +1,2,6000,"tess",2,0,81,3,19,19,"Fox News","Democrat" +1,2,6041,"tess",2,0,59,3,41,30,"Fox News","Democrat" +1,2,6048,"tess",3,1,50,2,50,50,"Fox News","Republican" +1,2,6067,"tess",4,0,12,2,88,49,"Fox News","Republican" +1,2,6070,"tess",4,0,90,2,10,78,"Fox News","Republican" +1,2,6077,"tess",1,1,70,3,70,69,"Fox News","Democrat" +1,2,6087,"tess",1,0,97,3,3,16,"Fox News","Democrat" +1,2,6100,"tess",3,1,50,3,50,50,"Fox News","Democrat" +1,2,6116,"tess",3,1,100,2,100,100,"Fox News","Democrat" +1,2,6121,"tess",1,0,58,2,42,50,"Fox News","Democrat" +1,2,6142,"tess",3,0,95,3,5,20,"Fox News","Neither" +1,2,6146,"tess",4,1,46,2,46,20,"Fox News","Republican" +1,2,6155,"tess",1,1,100,2,100,100,"Fox News","Democrat" +1,2,6164,"tess",2,0,29,3,71,75,"Fox News","Democrat" +1,2,6170,"tess",3,0,85,3,15,21,"Fox News","Democrat" +1,2,6171,"tess",1,0,1,2,99,49,"Fox News","Democrat" +1,2,6172,"tess",1,0,99,2,1,1,"Fox News","Democrat" +1,2,6193,"tess",1,1,97,2,97,80,"Fox News","Democrat" +1,2,6196,"tess",1,1,1,2,1,98,"Fox News","Democrat" +1,2,6215,"tess",1,1,80,3,80,70,"Fox News","Republican" +1,2,6224,"tess",1,0,70,2,30,20,"Fox News","Democrat" +1,2,6227,"tess",3,1,100,3,100,96,"Fox News","Democrat" +1,2,6231,"tess",2,1,62,2,62,40,"Fox News","Democrat" +1,2,6245,"tess",1,0,10,3,90,70,"Fox News","Democrat" +1,2,6248,"tess",4,0,83,2,17,50,"Fox News","Republican" +1,2,6249,"tess",1,0,55,3,45,18,"Fox News","Democrat" +1,2,6251,"tess",3,1,87,3,87,83,"Fox News","Democrat" +1,2,6254,"tess",1,0,65,3,35,39,"Fox News","Democrat" +1,2,6256,"tess",1,0,99,2,1,99,"Fox News","Democrat" +1,2,6257,"tess",1,0,18,3,82,16,"Fox News","Democrat" +1,2,6258,"tess",4,1,89,2,89,80,"Fox News","Republican" +1,2,6261,"tess",4,1,89,2,89,50,"Fox News","Democrat" +1,2,6263,"tess",1,1,0,2,0,3,"Fox News","Democrat" +1,2,6268,"tess",2,0,89,2,11,50,"Fox News","Republican" +1,2,6269,"tess",1,1,25,3,25,30,"Fox News","Democrat" +1,2,6270,"tess",2,1,69,3,69,86,"Fox News","Democrat" +1,2,6284,"tess",2,0,20,3,80,70,"Fox News","Neither" +1,2,6298,"tess",3,0,100,2,0,0,"Fox News","Neither" +1,2,6312,"tess",1,1,100,2,100,70,"Fox News","Republican" +1,2,6333,"tess",1,0,51,3,49,58,"Fox News","Republican" +1,2,6354,"tess",2,0,11,3,89,80,"Fox News","Republican" +1,2,6362,"tess",3,1,83,2,83,5,"Fox News","Republican" +1,2,6366,"tess",2,1,90,2,90,50,"Fox News","Democrat" +1,2,6372,"tess",1,0,0,3,100,100,"Fox News","Democrat" +1,2,6373,"tess",1,0,50,2,50,50,"Fox News","Democrat" +1,2,6391,"tess",4,0,39,2,61,14,"Fox News","Democrat" +1,2,6405,"tess",2,1,100,3,100,100,"Fox News","Republican" +1,2,6458,"tess",2,1,50,2,50,10,"Fox News","Republican" +1,2,6473,"tess",1,1,1,3,1,90,"Fox News","Republican" +1,2,6491,"tess",3,0,90,2,10,90,"Fox News","Neither" +1,2,6501,"tess",1,1,90,2,90,90,"Fox News","Neither" +1,2,6507,"tess",4,1,88,2,88,49,"Fox News","Republican" +1,2,6513,"tess",1,1,98,2,98,30,"Fox News","Republican" +1,2,6516,"tess",1,1,30,3,30,40,"Fox News","Republican" +1,2,6519,"tess",2,1,99,3,99,98,"Fox News","Republican" +1,2,6521,"tess",1,1,70,2,70,50,"Fox News","Democrat" +1,2,6534,"tess",3,0,30,3,70,18,"Fox News","Republican" +1,2,6538,"tess",2,0,7,2,93,20,"Fox News","Republican" +1,2,6541,"tess",3,0,100,3,0,39,"Fox News","Democrat" +1,2,6545,"tess",1,0,100,3,0,74,"Fox News","Democrat" +1,2,6548,"tess",2,1,29,2,29,4,"Fox News","Democrat" +1,2,6549,"tess",3,0,67,2,33,76,"Fox News","Democrat" +1,2,6551,"tess",4,1,98,2,98,70,"Fox News","Democrat" +1,2,6553,"tess",1,1,99,3,99,79,"Fox News","Republican" +1,2,6561,"tess",3,0,69,2,31,10,"Fox News","Democrat" +1,2,6562,"tess",2,1,99,2,99,100,"Fox News","Republican" +1,2,6581,"tess",4,0,89,2,11,7,"Fox News","Democrat" +1,2,6588,"tess",4,0,71,2,29,67,"Fox News","Democrat" +1,2,6590,"tess",2,0,71,3,29,30,"Fox News","Democrat" +1,2,6592,"tess",1,0,41,2,59,23,"Fox News","Democrat" +1,2,6593,"tess",1,0,NA,3,NA,NA,"Fox News","Democrat" +1,2,6596,"tess",4,1,100,2,100,100,"Fox News","Democrat" +1,2,6600,"tess",2,1,70,2,70,61,"Fox News","Republican" +1,2,6607,"tess",1,0,50,2,50,11,"Fox News","Democrat" +1,2,6608,"tess",4,0,99,2,1,99,"Fox News","Republican" +1,2,6609,"tess",2,0,100,2,0,95,"Fox News","Democrat" +1,2,6611,"tess",2,1,30,3,30,26,"Fox News","Republican" +1,2,6619,"tess",4,1,51,2,51,29,"Fox News","Republican" +1,2,6621,"tess",1,0,75,2,25,50,"Fox News","Democrat" +1,2,6634,"tess",2,0,3,3,97,89,"Fox News","Republican" +1,2,6646,"tess",1,0,10,2,90,20,"Fox News","Republican" +1,2,6652,"tess",3,1,94,2,94,50,"Fox News","Republican" +1,2,6661,"tess",4,0,81,2,19,20,"Fox News","Republican" +1,2,6665,"tess",2,0,11,3,89,90,"Fox News","Democrat" +1,2,6668,"tess",4,1,58,2,58,58,"Fox News","Democrat" +1,2,6670,"tess",3,0,97,3,3,9,"Fox News","Democrat" +1,2,6675,"tess",2,0,50,2,50,49,"Fox News","Democrat" +1,2,6683,"tess",1,1,100,3,100,99,"Fox News","Democrat" +1,2,6686,"tess",2,0,84,3,16,70,"Fox News","Republican" +1,2,6688,"tess",4,1,84,2,84,56,"Fox News","Republican" +1,2,6703,"tess",1,0,90,3,10,0,"Fox News","Democrat" +1,2,6720,"tess",2,0,84,3,16,16,"Fox News","Republican" +1,2,6725,"tess",3,1,16,2,16,10,"Fox News","Republican" +1,2,6730,"tess",2,0,19,3,81,63,"Fox News","Democrat" +1,2,6742,"tess",1,1,39,2,39,70,"Fox News","Democrat" +1,2,6775,"tess",3,1,89,2,89,89,"Fox News","Republican" +1,2,6780,"tess",3,0,24,3,76,65,"Fox News","Democrat" +1,2,6803,"tess",4,0,6,2,94,13,"Fox News","Democrat" +1,2,6804,"tess",2,1,30,3,30,89,"Fox News","Republican" +1,2,6805,"tess",3,0,60,2,40,40,"Fox News","Republican" +1,2,6814,"tess",1,0,50,2,50,30,"Fox News","Democrat" +1,2,6825,"tess",3,1,99,3,99,99,"Fox News","Democrat" +1,2,6833,"tess",2,0,100,3,0,0,"Fox News","Neither" +1,2,6835,"tess",3,1,50,3,50,59,"Fox News","Democrat" +1,2,6842,"tess",1,1,99,2,99,95,"Fox News","Republican" +1,2,6843,"tess",2,1,30,2,30,11,"Fox News","Republican" +1,2,6853,"tess",2,0,40,2,60,60,"Fox News","Democrat" +1,2,6864,"tess",3,1,NA,3,NA,50,"Fox News","Republican" +1,2,6865,"tess",2,1,6,2,6,96,"Fox News","Democrat" +1,2,6883,"tess",1,1,94,2,94,85,"Fox News","Democrat" +1,2,6897,"tess",3,1,35,2,35,35,"Fox News","Democrat" +1,2,6908,"tess",1,1,10,2,10,89,"Fox News","Democrat" +1,2,6911,"tess",2,0,25,3,75,75,"Fox News","Democrat" +1,2,6915,"tess",1,0,70,2,30,20,"Fox News","Republican" +1,2,6920,"tess",3,0,67,2,33,44,"Fox News","Republican" +1,2,6927,"tess",4,1,100,2,100,100,"Fox News","Democrat" +1,2,6956,"tess",1,0,64,3,36,3,"Fox News","Democrat" +1,2,6963,"tess",2,1,62,3,62,53,"Fox News","Democrat" +1,2,6997,"tess",2,0,75,3,25,50,"Fox News","Republican" +1,2,6998,"tess",2,1,80,2,80,90,"Fox News","Republican" +1,2,7003,"tess",2,0,90,3,10,30,"Fox News","Republican" +1,2,7011,"tess",2,0,99,3,1,1,"Fox News","Democrat" +1,2,7023,"tess",1,1,99,2,99,40,"Fox News","Democrat" +1,2,7031,"tess",4,0,45,2,55,17,"Fox News","Republican" +1,2,7060,"tess",1,1,91,3,91,90,"Fox News","Democrat" +1,2,7073,"tess",1,0,2,2,98,99,"Fox News","Republican" +1,2,7078,"tess",4,0,71,2,29,10,"Fox News","Republican" +1,2,7088,"tess",1,0,70,2,30,18,"Fox News","Democrat" +1,2,7104,"tess",2,0,91,2,9,7,"Fox News","Republican" +1,2,7106,"tess",3,0,0,2,100,0,"Fox News","Republican" +1,2,7122,"tess",2,1,100,3,100,96,"Fox News","Democrat" +1,2,7128,"tess",3,0,82,3,18,13,"Fox News","Republican" +1,2,7140,"tess",1,0,82,2,18,29,"Fox News","Republican" +1,2,7148,"tess",2,0,2,3,98,99,"Fox News","Democrat" +1,2,7158,"tess",2,1,90,2,90,75,"Fox News","Democrat" +1,2,7161,"tess",2,0,69,2,31,95,"Fox News","Democrat" +1,2,7166,"tess",2,0,20,3,80,51,"Fox News","Neither" +1,2,7186,"tess",2,1,NA,2,NA,86,"Fox News","Democrat" +1,2,7197,"tess",2,1,50,2,50,50,"Fox News","Republican" +1,2,7199,"tess",3,0,99,2,1,1,"Fox News","Republican" +1,2,7210,"tess",2,1,10,3,10,95,"Fox News","Neither" +1,2,7223,"tess",1,1,57,2,57,50,"Fox News","Democrat" +1,2,7228,"tess",1,0,47,3,53,88,"Fox News","Democrat" +1,2,7230,"tess",4,0,47,2,53,13,"Fox News","Republican" +1,2,7235,"tess",2,1,93,3,93,91,"Fox News","Democrat" +1,2,7239,"tess",4,1,50,2,50,50,"Fox News","Republican" +1,2,7241,"tess",1,1,0,2,0,17,"Fox News","Neither" +1,2,7248,"tess",1,1,100,3,100,88,"Fox News","Democrat" +1,2,7252,"tess",4,1,100,2,100,0,"Fox News","Republican" +1,2,7273,"tess",1,0,48,2,52,10,"Fox News","Democrat" +1,2,7275,"tess",1,0,1,2,99,82,"Fox News","Republican" +1,2,7280,"tess",4,1,62,2,62,67,"Fox News","Neither" +1,2,7286,"tess",1,1,25,3,25,25,"Fox News","Republican" +1,2,7287,"tess",3,0,100,3,0,10,"Fox News","Republican" +1,2,7289,"tess",3,0,81,2,19,23,"Fox News","Democrat" +1,2,7297,"tess",3,1,100,3,100,100,"Fox News","Democrat" +1,2,7303,"tess",4,0,44,2,56,56,"Fox News","Republican" +1,2,7311,"tess",1,1,95,3,95,95,"Fox News","Republican" +1,2,7323,"tess",1,0,99,3,1,100,"Fox News","Republican" +1,2,7330,"tess",3,1,92,3,92,94,"Fox News","Democrat" +1,2,7341,"tess",1,1,49,2,49,99,"Fox News","Democrat" +1,2,7381,"tess",3,1,99,2,99,51,"Fox News","Republican" +1,2,7395,"tess",4,0,50,2,50,10,"Fox News","Republican" +1,2,7407,"tess",1,0,40,2,60,40,"Fox News","Republican" +1,2,7409,"tess",3,0,23,2,77,4,"Fox News","Democrat" +1,2,7412,"tess",4,0,97,2,3,100,"Fox News","Republican" +1,2,7425,"tess",3,0,48,3,52,52,"Fox News","Democrat" +1,2,7427,"tess",1,0,90,2,10,3,"Fox News","Democrat" +1,2,7437,"tess",2,0,50,2,50,26,"Fox News","Democrat" +1,2,7440,"tess",2,0,61,3,39,55,"Fox News","Republican" +1,2,7441,"tess",3,1,20,3,20,24,"Fox News","Democrat" +1,2,7446,"tess",4,1,100,2,100,89,"Fox News","Democrat" +1,2,7448,"tess",4,0,1,2,99,100,"Fox News","Democrat" +1,2,7450,"tess",1,1,76,3,76,47,"Fox News","Democrat" +1,2,7452,"tess",1,1,59,3,59,63,"Fox News","Democrat" +1,2,7453,"tess",2,0,81,2,19,60,"Fox News","Republican" +1,2,7466,"tess",4,1,30,2,30,30,"Fox News","Republican" +1,2,7475,"tess",3,1,88,2,88,18,"Fox News","Neither" +1,2,7477,"tess",2,0,30,2,70,26,"Fox News","Republican" +1,2,7479,"tess",3,1,50,3,50,50,"Fox News","Democrat" +1,2,7497,"tess",2,0,64,3,36,72,"Fox News","Democrat" +1,2,7506,"tess",1,1,76,2,76,54,"Fox News","Democrat" +1,2,7525,"tess",1,0,51,3,49,1,"Fox News","Democrat" +1,2,7528,"tess",1,1,88,2,88,50,"Fox News","Republican" +1,2,7534,"tess",3,1,50,2,50,50,"Fox News","Democrat" +1,2,7542,"tess",1,1,99,2,99,83,"Fox News","Republican" +1,2,7546,"tess",4,1,90,2,90,90,"Fox News","Republican" +1,2,7563,"tess",2,0,25,2,75,50,"Fox News","Democrat" +1,2,7564,"tess",2,1,55,2,55,50,"Fox News","Democrat" +1,2,7569,"tess",1,1,94,3,94,95,"Fox News","Republican" +1,2,7573,"tess",3,1,90,2,90,5,"Fox News","Democrat" +1,2,7577,"tess",3,1,20,3,20,34,"Fox News","Democrat" +1,2,7588,"tess",2,0,89,3,11,48,"Fox News","Republican" +1,2,7590,"tess",4,1,100,2,100,85,"Fox News","Republican" +1,2,7603,"tess",1,0,97,2,3,85,"Fox News","Democrat" +1,2,7615,"tess",1,1,100,3,100,71,"Fox News","Republican" +1,2,7622,"tess",2,0,97,3,3,92,"Fox News","Democrat" +1,2,7630,"tess",1,1,91,3,91,97,"Fox News","Democrat" +1,2,7631,"tess",2,0,100,3,0,96,"Fox News","Democrat" +1,2,7641,"tess",1,1,90,3,90,90,"Fox News","Democrat" +1,2,7659,"tess",2,0,10,3,90,90,"Fox News","Republican" +1,2,7662,"tess",3,0,32,3,68,25,"Fox News","Democrat" +1,2,7668,"tess",3,1,100,3,100,90,"Fox News","Republican" +1,2,7688,"tess",1,1,50,2,50,90,"Fox News","Democrat" +1,2,7696,"tess",2,0,9,2,91,99,"Fox News","Democrat" +1,2,7699,"tess",3,1,2,2,2,0,"Fox News","Democrat" +1,2,7702,"tess",1,0,18,2,82,7,"Fox News","Democrat" +1,2,7711,"tess",1,1,5,2,5,5,"Fox News","Republican" +1,2,7717,"tess",2,0,20,3,80,80,"Fox News","Democrat" +1,2,7739,"tess",4,0,50,2,50,53,"Fox News","Republican" +1,2,7747,"tess",3,1,15,3,15,40,"Fox News","Democrat" +1,2,7754,"tess",3,1,41,2,41,29,"Fox News","Neither" +1,2,7778,"tess",3,0,10,2,90,5,"Fox News","Democrat" +1,2,7783,"tess",1,1,90,3,90,90,"Fox News","Republican" +1,2,7784,"tess",1,0,14,2,86,60,"Fox News","Neither" +1,2,7786,"tess",2,1,100,3,100,100,"Fox News","Democrat" +1,2,7792,"tess",2,1,79,3,79,80,"Fox News","Neither" +1,2,7793,"tess",3,1,95,2,95,91,"Fox News","Republican" +1,2,7819,"tess",3,1,48,3,48,38,"Fox News","Democrat" +1,2,7861,"tess",4,1,58,2,58,82,"Fox News","Republican" +1,2,7906,"tess",3,1,99,3,99,99,"Fox News","Republican" +1,2,7908,"tess",1,0,0,2,100,1,"Fox News","Republican" +1,2,7922,"tess",1,1,91,2,91,99,"Fox News","Democrat" +1,2,7930,"tess",2,0,86,2,14,96,"Fox News","Republican" +1,2,7959,"tess",1,0,12,3,88,85,"Fox News","Democrat" +1,2,7960,"tess",3,1,89,3,89,46,"Fox News","Democrat" +1,2,7967,"tess",3,0,100,3,0,18,"Fox News","Democrat" +1,2,7968,"tess",1,1,90,3,90,90,"Fox News","Democrat" +1,2,7988,"tess",3,1,70,2,70,77,"Fox News","Democrat" +1,2,7991,"tess",3,1,80,2,80,49,"Fox News","Republican" +1,2,7995,"tess",4,0,96,2,4,65,"Fox News","Republican" +1,2,8000,"tess",1,1,80,2,80,60,"Fox News","Democrat" +1,2,8001,"tess",3,0,14,2,86,51,"Fox News","Republican" +1,2,8010,"tess",3,1,76,2,76,60,"Fox News","Republican" +1,2,8011,"tess",4,0,12,2,88,19,"Fox News","Republican" +1,2,8019,"tess",1,0,86,3,14,46,"Fox News","Republican" +1,2,8023,"tess",4,0,42,2,58,84,"Fox News","Democrat" +1,2,8049,"tess",4,0,83,2,17,20,"Fox News","Republican" +1,2,8050,"tess",3,0,88,3,12,60,"Fox News","Neither" +1,2,8063,"tess",4,1,75,2,75,72,"Fox News","Republican" +1,2,8079,"tess",1,0,100,2,0,0,"Fox News","Democrat" +1,2,8095,"tess",3,1,100,3,100,100,"Fox News","Democrat" +1,2,8097,"tess",2,0,30,2,70,30,"Fox News","Republican" +1,2,8141,"tess",2,0,80,2,20,100,"Fox News","Democrat" +1,2,8146,"tess",2,0,1,2,99,0,"Fox News","Republican" +1,2,8152,"tess",2,0,43,2,57,65,"Fox News","Democrat" +1,2,8170,"tess",1,0,9,3,91,91,"Fox News","Democrat" +1,2,8191,"tess",2,1,85,2,85,75,"Fox News","Democrat" +1,2,8197,"tess",3,0,10,2,90,9,"Fox News","Republican" +1,2,8199,"tess",1,0,70,3,30,50,"Fox News","Democrat" +1,2,8203,"tess",1,0,81,3,19,18,"Fox News","Republican" +1,2,8218,"tess",1,0,70,2,30,20,"Fox News","Democrat" +1,2,8224,"tess",1,0,100,3,0,1,"Fox News","Republican" +1,2,8244,"tess",3,0,50,3,50,50,"Fox News","Republican" +1,2,8249,"tess",2,0,0,3,100,100,"Fox News","Democrat" +1,2,8253,"tess",3,0,37,3,63,83,"Fox News","Democrat" +1,2,8265,"tess",3,1,51,3,51,49,"Fox News","Republican" +1,2,8267,"tess",3,1,90,3,90,90,"Fox News","Republican" +1,2,8272,"tess",2,1,30,3,30,93,"Fox News","Democrat" +1,2,8285,"tess",2,1,94,3,94,100,"Fox News","Democrat" +1,2,8287,"tess",1,1,90,2,90,85,"Fox News","Democrat" +1,2,8317,"tess",2,1,99,2,99,0,"Fox News","Republican" +1,2,8331,"tess",1,1,90,2,90,80,"Fox News","Democrat" +1,2,8335,"tess",3,1,95,3,95,100,"Fox News","Republican" +1,2,8337,"tess",3,0,48,3,52,72,"Fox News","Republican" +1,2,8345,"tess",3,0,81,3,19,30,"Fox News","Democrat" +1,2,8347,"tess",4,1,59,2,59,42,"Fox News","Republican" +1,2,8356,"tess",2,0,0,2,100,0,"Fox News","Neither" +1,2,8371,"tess",3,1,44,2,44,91,"Fox News","Republican" +1,2,8374,"tess",4,1,76,2,76,99,"Fox News","Republican" +1,2,8378,"tess",3,0,31,3,69,70,"Fox News","Republican" +1,2,8386,"tess",1,0,14,3,86,89,"Fox News","Republican" +1,2,8397,"tess",4,1,80,2,80,70,"Fox News","Republican" +1,2,8406,"tess",2,1,90,2,90,50,"Fox News","Democrat" +1,2,8432,"tess",2,1,100,3,100,96,"Fox News","Democrat" +1,2,8452,"tess",1,1,97,3,97,97,"Fox News","Republican" +1,2,8455,"tess",2,0,1,3,99,96,"Fox News","Republican" +1,2,8466,"tess",1,0,70,3,30,29,"Fox News","Democrat" +1,2,8489,"tess",4,0,99,2,1,1,"Fox News","Democrat" +1,2,8541,"tess",2,1,99,3,99,83,"Fox News","Republican" +1,2,8545,"tess",3,1,97,3,97,100,"Fox News","Republican" +1,2,8564,"tess",1,0,100,2,0,81,"Fox News","Republican" +1,2,8579,"tess",3,0,0,3,100,90,"Fox News","Democrat" +1,2,8590,"tess",4,1,95,2,95,2,"Fox News","Republican" +1,2,8600,"tess",1,1,80,2,80,80,"Fox News","Democrat" +1,2,8619,"tess",2,1,99,3,99,94,"Fox News","Republican" +1,2,8638,"tess",4,1,30,2,30,20,"Fox News","Neither" +1,2,8651,"tess",2,1,50,3,50,40,"Fox News","Republican" +1,2,8659,"tess",2,1,75,3,75,54,"Fox News","Democrat" +1,2,8669,"tess",4,1,8,2,8,100,"Fox News","Democrat" +1,2,8680,"tess",4,1,89,2,89,91,"Fox News","Republican" +1,2,8685,"tess",2,1,74,2,74,50,"Fox News","Democrat" +1,2,8706,"tess",2,0,31,3,69,64,"Fox News","Republican" +1,2,8707,"tess",2,1,93,3,93,92,"Fox News","Republican" +1,2,8719,"tess",2,1,70,3,70,70,"Fox News","Republican" +1,2,8727,"tess",2,1,71,2,71,59,"Fox News","Democrat" +1,2,8731,"tess",1,0,94,3,6,28,"Fox News","Democrat" +1,2,8755,"tess",1,0,33,2,67,36,"Fox News","Democrat" +1,2,8765,"tess",2,1,NA,3,NA,NA,"Fox News","Democrat" +1,2,8768,"tess",1,0,50,2,50,0,"Fox News","Democrat" +1,2,8777,"tess",3,1,10,2,10,20,"Fox News","Democrat" +1,2,8779,"tess",4,1,100,2,100,100,"Fox News","Republican" +1,2,8782,"tess",2,1,50,2,50,50,"Fox News","Republican" +1,2,8806,"tess",3,0,30,3,70,54,"Fox News","Neither" +1,2,8816,"tess",3,1,70,3,70,65,"Fox News","Democrat" +1,2,8819,"tess",3,1,98,3,98,98,"Fox News","Republican" +1,2,8848,"tess",2,0,1,3,99,97,"Fox News","Democrat" +1,2,8890,"tess",1,1,97,2,97,89,"Fox News","Republican" +1,2,8900,"tess",3,1,97,3,97,100,"Fox News","Republican" +1,2,8903,"tess",3,0,80,2,20,5,"Fox News","Republican" +1,2,8925,"tess",2,1,52,2,52,48,"Fox News","Democrat" +1,2,8932,"tess",1,0,53,2,47,0,"Fox News","Democrat" +1,2,8941,"tess",2,0,1,3,99,95,"Fox News","Neither" +1,2,8953,"tess",2,1,57,2,57,50,"Fox News","Republican" +1,2,8973,"tess",4,1,99,2,99,50,"Fox News","Republican" +1,2,8990,"tess",4,1,100,2,100,96,"Fox News","Republican" +1,2,8995,"tess",4,1,90,2,90,30,"Fox News","Republican" +1,2,9038,"tess",1,0,70,2,30,99,"Fox News","Neither" +1,2,9068,"tess",3,1,90,3,90,90,"Fox News","Democrat" +1,2,9070,"tess",3,1,90,3,90,90,"Fox News","Democrat" +1,2,9074,"tess",2,1,80,3,80,80,"Fox News","Republican" +1,2,9083,"tess",3,0,9,2,91,13,"Fox News","Neither" +1,2,9101,"tess",1,0,72,3,28,50,"Fox News","Democrat" +1,2,9146,"tess",3,0,2,3,98,97,"Fox News","Republican" +1,2,9184,"tess",1,1,100,3,100,48,"Fox News","Democrat" +1,2,9198,"tess",3,0,61,3,39,28,"Fox News","Democrat" +1,2,9230,"tess",3,1,24,2,24,42,"Fox News","Democrat" +1,2,9245,"tess",2,1,90,2,90,90,"Fox News","Republican" +1,2,9260,"tess",3,1,80,2,80,20,"Fox News","Republican" +1,2,9281,"tess",4,0,89,2,11,9,"Fox News","Republican" +1,2,9286,"tess",3,1,78,3,78,70,"Fox News","Democrat" +1,2,9297,"tess",4,1,90,2,90,90,"Fox News","Republican" +1,2,9298,"tess",3,0,19,3,81,31,"Fox News","Democrat" +1,2,9301,"tess",2,0,55,2,45,25,"Fox News","Democrat" +1,2,9316,"tess",3,0,6,3,94,77,"Fox News","Republican" +1,2,9337,"tess",3,1,90,2,90,50,"Fox News","Republican" +1,2,9340,"tess",1,1,26,2,26,99,"Fox News","Democrat" +1,2,9346,"tess",1,1,95,3,95,90,"Fox News","Democrat" +1,2,9366,"tess",1,1,70,3,70,70,"Fox News","Republican" +1,2,9383,"tess",2,0,75,2,25,53,"Fox News","Republican" +1,2,9398,"tess",3,0,30,3,70,65,"Fox News","Republican" +1,2,9419,"tess",1,0,50,3,50,50,"Fox News","Democrat" +1,2,9422,"tess",4,0,1,2,99,0,"Fox News","Democrat" +1,2,9425,"tess",1,0,1,2,99,50,"Fox News","Democrat" +1,2,9458,"tess",2,1,79,2,79,90,"Fox News","Republican" +1,2,9471,"tess",3,0,89,3,11,29,"Fox News","Democrat" +1,2,9479,"tess",3,0,NA,3,NA,NA,"Fox News","Democrat" +1,2,9490,"tess",4,1,50,2,50,50,"Fox News","Republican" +1,2,9512,"tess",1,1,100,3,100,100,"Fox News","Democrat" +1,2,9514,"tess",2,1,53,3,53,72,"Fox News","Republican" +1,2,9532,"tess",2,1,99,3,99,99,"Fox News","Republican" +1,2,9534,"tess",1,0,4,2,96,97,"Fox News","Democrat" +1,2,9536,"tess",3,1,50,2,50,17,"Fox News","Democrat" +1,2,9538,"tess",1,1,71,2,71,61,"Fox News","Republican" +1,2,9572,"tess",1,0,10,3,90,90,"Fox News","Republican" +1,2,9578,"tess",3,0,92,3,8,1,"Fox News","Republican" +1,2,9590,"tess",1,0,85,3,15,20,"Fox News","Republican" +1,2,9627,"tess",1,0,30,3,70,60,"Fox News","Democrat" +1,2,9631,"tess",2,0,10,3,90,90,"Fox News","Democrat" +1,2,9642,"tess",2,1,71,2,71,51,"Fox News","Republican" +1,2,9645,"tess",2,1,59,3,59,61,"Fox News","Democrat" +1,2,9664,"tess",2,1,90,3,90,75,"Fox News","Republican" +1,2,9666,"tess",1,1,93,3,93,93,"Fox News","Republican" +1,2,9676,"tess",4,0,59,2,41,45,"Fox News","Democrat" +1,2,9681,"tess",2,1,50,2,50,50,"Fox News","Democrat" +1,2,9684,"tess",2,1,77,2,77,91,"Fox News","Democrat" +1,2,9686,"tess",1,0,25,2,75,32,"Fox News","Democrat" +1,2,9703,"tess",1,0,50,3,50,50,"Fox News","Democrat" +1,2,9711,"tess",3,0,21,2,79,70,"Fox News","Neither" +1,2,9716,"tess",2,1,85,2,85,66,"Fox News","Democrat" +1,2,9741,"tess",1,0,0,2,100,100,"Fox News","Republican" +1,2,9743,"turk",3,0,40,3,60,40,"Fox News","Democrat" +1,2,9744,"turk",2,0,1,2,99,1,"Fox News","Democrat" +1,2,9747,"turk",3,0,20,3,80,80,"Fox News","Neither" +1,2,9762,"turk",3,0,30,3,70,60,"Fox News","Neither" +1,2,9763,"turk",2,0,95,5,5,5,"Fox News","Neither" +1,2,9764,"turk",3,0,70,5,30,30,"Fox News","Democrat" +1,2,9766,"turk",4,0,30,4,70,55,"Fox News","Democrat" +1,2,9767,"turk",4,0,61,4,39,28,"Fox News","Neither" +1,2,9769,"turk",2,0,60,3,40,20,"Fox News","Democrat" +1,2,9772,"turk",2,0,25,5,75,75,"Fox News","Democrat" +1,2,9775,"turk",2,0,20,3,80,50,"Fox News","Neither" +1,2,9777,"turk",4,0,17,5,83,75,"Fox News","Democrat" +1,2,9780,"turk",2,0,0,3,100,100,"Fox News","Republican" +1,2,9781,"turk",3,0,1,5,99,99,"Fox News","Neither" +1,2,9785,"turk",4,0,5,5,95,90,"Fox News","Democrat" +1,2,9786,"turk",4,0,10,5,90,85,"Fox News","Democrat" +1,2,9787,"turk",2,0,1,5,99,99,"Fox News","Democrat" +1,2,9791,"turk",3,0,2,3,98,98,"Fox News","Democrat" +1,2,9792,"turk",4,0,35,3,65,60,"Fox News","Republican" +1,2,9795,"turk",3,0,99,3,1,10,"Fox News","Republican" +1,2,9798,"turk",2,0,65,2,35,35,"Fox News","Democrat" +1,2,9802,"turk",2,0,50,2,50,100,"Fox News","Democrat" +1,2,9803,"turk",2,0,99,4,1,1,"Fox News","Democrat" +1,2,9807,"turk",2,0,50,5,50,40,"Fox News","Republican" +1,2,9808,"turk",3,0,10,4,90,90,"Fox News","Neither" +1,2,9810,"turk",2,0,1,5,99,99,"Fox News","Democrat" +1,2,9815,"turk",3,0,65,5,35,50,"Fox News","Democrat" +1,2,9817,"turk",2,0,1,4,99,99,"Fox News","Republican" +1,2,9821,"turk",3,0,60,2,40,20,"Fox News","Democrat" +1,2,9823,"turk",4,0,1,3,99,80,"Fox News","Neither" +1,2,9826,"turk",4,0,1,4,99,99,"Fox News","Republican" +1,2,9827,"turk",4,0,1,2,99,50,"Fox News","Republican" +1,2,9836,"turk",3,0,80,3,20,25,"Fox News","Democrat" +1,2,9839,"turk",4,0,1,4,99,99,"Fox News","Democrat" +1,2,9842,"turk",3,0,20,5,80,80,"Fox News","Democrat" +1,2,9843,"turk",2,0,99,3,1,1,"Fox News","Neither" +1,2,9847,"turk",4,0,99,4,1,1,"Fox News","Republican" +1,2,9849,"turk",2,0,99,3,1,1,"Fox News","Republican" +1,2,9852,"turk",2,0,75,3,25,25,"Fox News","Democrat" +1,2,9855,"turk",2,0,1,5,99,99,"Fox News","Neither" +1,2,9861,"turk",2,0,99,5,1,1,"Fox News","Neither" +1,2,9867,"turk",2,0,1,5,99,99,"Fox News","Democrat" +1,2,9870,"turk",3,0,25,4,75,75,"Fox News","Democrat" +1,2,9872,"turk",3,0,12,3,88,80,"Fox News","Republican" +1,2,9874,"turk",2,0,25,5,75,75,"Fox News","Democrat" +1,2,9875,"turk",4,0,1,5,99,99,"Fox News","Democrat" +1,2,9878,"turk",4,0,5,4,95,90,"Fox News","Republican" +1,2,9881,"turk",3,0,2,3,98,99,"Fox News","Democrat" +1,2,9884,"turk",4,0,13,4,87,80,"Fox News","Republican" +1,2,9885,"turk",4,0,80,3,20,20,"Fox News","Democrat" +1,2,9887,"turk",4,0,1,3,99,99,"Fox News","Republican" +1,2,9889,"turk",2,0,2,3,98,95,"Fox News","Neither" +1,2,9891,"turk",3,0,35,5,65,70,"Fox News","Democrat" +1,2,9892,"turk",2,0,50,3,50,50,"Fox News","Democrat" +1,2,9896,"turk",3,0,40,2,60,30,"Fox News","Neither" +1,2,9897,"turk",3,0,15,2,85,50,"Fox News","Democrat" +1,2,9900,"turk",2,0,1,4,99,99,"Fox News","Democrat" +1,2,9902,"turk",4,0,5,4,95,90,"Fox News","Democrat" +1,2,9905,"turk",3,0,99,5,1,1,"Fox News","Republican" +1,2,9910,"turk",2,0,1,4,99,99,"Fox News","Democrat" +1,2,9914,"turk",3,0,1,3,99,99,"Fox News","Republican" +1,2,9917,"turk",3,0,10,5,90,80,"Fox News","Neither" +1,2,9918,"turk",2,0,1,3,99,75,"Fox News","Democrat" +1,2,9920,"turk",3,0,0,2,100,1,"Fox News","Republican" +1,2,9921,"turk",3,0,1,3,99,50,"Fox News","Democrat" +1,2,9922,"turk",4,0,45,5,55,70,"Fox News","Democrat" +1,2,9923,"turk",4,0,99,3,1,1,"Fox News","Neither" +1,2,9925,"turk",3,0,33,3,67,78,"Fox News","Democrat" +1,2,9927,"turk",3,0,50,5,50,50,"Fox News","Republican" +1,2,9928,"turk",2,0,20,2,80,50,"Fox News","Democrat" +1,2,9931,"turk",2,0,1,2,99,1,"Fox News","Neither" +1,2,9935,"turk",4,0,5,4,95,50,"Fox News","Neither" +1,2,9937,"turk",3,0,1,3,99,99,"Fox News","Democrat" +1,2,9938,"turk",2,0,25,2,75,25,"Fox News","Democrat" +1,2,9939,"turk",2,0,99,4,1,1,"Fox News","Republican" +1,2,9940,"turk",2,0,10,4,90,80,"Fox News","Democrat" +1,2,9941,"turk",2,0,10,3,90,70,"Fox News","Republican" +1,2,9942,"turk",3,0,2,3,98,50,"Fox News","Democrat" +1,2,9946,"turk",3,0,20,3,80,80,"Fox News","Democrat" +1,2,9947,"turk",4,0,99,2,1,1,"Fox News","Democrat" +1,2,9948,"turk",2,0,1,2,99,100,"Fox News","Republican" +1,2,9953,"turk",4,0,1,4,99,99,"Fox News","Neither" +1,2,9956,"turk",4,0,1,4,99,60,"Fox News","Democrat" +1,2,9958,"turk",4,0,15,4,85,70,"Fox News","Republican" +1,2,9960,"turk",2,0,60,5,40,97,"Fox News","Democrat" +1,2,9964,"turk",3,0,10,5,90,90,"Fox News","Democrat" +1,2,9965,"turk",4,0,1,5,99,99,"Fox News","Democrat" +1,2,9966,"turk",2,0,1,4,99,99,"Fox News","Democrat" +1,2,9967,"turk",2,0,1,3,99,99,"Fox News","Neither" +1,2,9968,"turk",4,0,99,4,1,1,"Fox News","Democrat" +1,2,9970,"turk",2,0,0,5,100,100,"Fox News","Republican" +1,2,9971,"turk",3,0,30,2,70,30,"Fox News","Democrat" +1,2,9976,"turk",2,0,99,4,1,1,"Fox News","Republican" +1,2,9982,"turk",3,0,5,5,95,90,"Fox News","Republican" +1,2,9983,"turk",4,0,50,4,50,50,"Fox News","Democrat" +1,2,9986,"turk",3,0,80,3,20,40,"Fox News","Democrat" +1,2,9988,"turk",3,0,1,3,99,99,"Fox News","Democrat" +1,2,9990,"turk",3,0,55,4,45,65,"Fox News","Democrat" +1,2,9991,"turk",2,0,50,2,50,80,"Fox News","Neither" +1,2,9999,"turk",2,0,1,5,99,99,"Fox News","Democrat" +1,2,10001,"turk",4,0,0,5,100,99,"Fox News","Democrat" +1,2,10002,"turk",3,0,15,2,85,80,"Fox News","Democrat" +1,2,10007,"turk",3,0,10,5,90,90,"Fox News","Republican" +1,2,10017,"turk",3,0,2,5,98,98,"Fox News","Democrat" +1,2,10018,"turk",4,0,0,2,100,100,"Fox News","Republican" +1,2,10020,"turk",3,0,25,3,75,75,"Fox News","Democrat" +1,2,10024,"turk",2,0,60,2,40,20,"Fox News","Republican" +1,2,10028,"turk",4,0,75,5,25,25,"Fox News","Republican" +1,2,10030,"turk",3,0,40,2,60,50,"Fox News","Democrat" +1,2,10032,"turk",4,0,99,2,1,99,"Fox News","Democrat" +1,2,10033,"turk",2,0,100,4,0,0,"Fox News","Neither" +1,2,10036,"turk",3,0,1,4,99,99,"Fox News","Republican" +1,2,10037,"turk",2,0,5,2,95,40,"Fox News","Democrat" +1,2,10038,"turk",2,0,99,4,1,1,"Fox News","Democrat" +1,2,10041,"turk",4,0,50,3,50,50,"Fox News","Republican" +1,2,10042,"turk",4,0,10,5,90,90,"Fox News","Democrat" +1,2,10043,"turk",4,0,20,4,80,25,"Fox News","Democrat" +1,2,10044,"turk",2,0,40,5,60,35,"Fox News","Republican" +1,2,10047,"turk",2,0,20,2,80,30,"Fox News","Democrat" +1,2,10049,"turk",2,0,80,2,20,100,"Fox News","Democrat" +1,2,10052,"turk",4,0,1,2,99,99,"Fox News","Democrat" +1,2,10056,"turk",4,0,75,2,25,75,"Fox News","Republican" +1,2,10058,"turk",3,0,99,5,1,99,"Fox News","Republican" +1,2,10059,"turk",4,0,1,5,99,99,"Fox News","Democrat" +1,2,10062,"turk",2,0,99,4,1,1,"Fox News","Democrat" +1,2,10065,"turk",4,0,80,2,20,60,"Fox News","Democrat" +1,2,10066,"turk",3,0,10,4,90,90,"Fox News","Democrat" +1,2,10069,"turk",2,0,40,2,60,25,"Fox News","Republican" +1,2,10073,"turk",3,0,50,4,50,50,"Fox News","Neither" +1,2,10076,"turk",2,0,1,2,99,50,"Fox News","Neither" +1,2,10077,"turk",2,0,10,4,90,85,"Fox News","Democrat" +1,2,10078,"turk",3,0,100,3,0,50,"Fox News","Republican" +1,2,10080,"turk",3,0,75,2,25,30,"Fox News","Republican" +1,2,10081,"turk",4,0,80,5,20,20,"Fox News","Democrat" +1,2,10085,"turk",4,0,1,5,99,99,"Fox News","Neither" +1,2,10090,"turk",4,0,60,3,40,40,"Fox News","Democrat" +1,2,10092,"turk",4,0,1,5,99,1,"Fox News","Neither" +1,2,10093,"turk",4,0,1,3,99,65,"Fox News","Democrat" +1,2,10094,"turk",2,0,99,5,1,1,"Fox News","Democrat" +1,2,10095,"turk",4,0,1,3,99,80,"Fox News","Democrat" +1,2,10096,"turk",2,0,99,4,1,1,"Fox News","Democrat" +1,2,10097,"turk",2,0,1,3,99,99,"Fox News","Democrat" +1,2,10101,"turk",3,0,1,5,99,99,"Fox News","Democrat" +1,2,10107,"turk",4,0,10,5,90,90,"Fox News","Democrat" +1,2,10108,"turk",2,0,1,2,99,99,"Fox News","Democrat" +1,2,10111,"turk",3,0,1,4,99,99,"Fox News","Neither" +1,2,10116,"turk",3,0,100,5,0,0,"Fox News","Democrat" +1,2,10118,"turk",2,0,22,3,78,55,"Fox News","Democrat" +1,2,10120,"turk",4,0,81,5,19,19,"Fox News","Republican" +1,2,10121,"turk",2,0,20,2,80,70,"Fox News","Neither" +1,2,10126,"turk",4,0,79,5,21,40,"Fox News","Republican" +1,2,10131,"turk",3,0,50,2,50,50,"Fox News","Republican" +1,2,10133,"turk",4,0,15,5,85,85,"Fox News","Democrat" +1,2,10135,"turk",3,0,5,3,95,95,"Fox News","Democrat" +1,2,10136,"turk",2,0,20,2,80,60,"Fox News","Democrat" +1,2,10138,"turk",4,0,15,3,85,65,"Fox News","Democrat" +1,2,10140,"turk",3,0,40,4,60,60,"Fox News","Democrat" +1,2,10145,"turk",4,0,10,3,90,80,"Fox News","Democrat" +1,2,10147,"turk",3,0,32,3,68,52,"Fox News","Democrat" +1,2,10149,"turk",4,0,1,2,99,50,"Fox News","Republican" +1,2,10150,"turk",3,0,1,4,99,90,"Fox News","Democrat" +1,2,10152,"turk",2,0,50,4,50,50,"Fox News","Neither" +1,2,10153,"turk",2,0,1,5,99,99,"Fox News","Republican" +1,2,10155,"turk",2,0,99,4,1,1,"Fox News","Republican" +1,2,10160,"turk",3,0,99,3,1,99,"Fox News","Democrat" +1,2,10162,"turk",3,0,30,2,70,35,"Fox News","Democrat" +1,2,10163,"turk",3,0,99,5,1,1,"Fox News","Democrat" +1,2,10166,"turk",4,0,75,4,25,20,"Fox News","Democrat" +1,2,10167,"turk",3,0,40,2,60,50,"Fox News","Democrat" +1,2,10169,"turk",2,0,1,5,99,95,"Fox News","Republican" +1,2,10174,"turk",3,0,0,2,100,100,"Fox News","Democrat" +1,2,10175,"turk",3,0,1,5,99,99,"Fox News","Neither" +1,2,10178,"turk",4,0,1,2,99,1,"Fox News","Democrat" +1,2,10179,"turk",4,0,1,2,99,85,"Fox News","Republican" +1,2,10182,"turk",2,0,25,5,75,75,"Fox News","Democrat" +1,2,10184,"turk",2,0,1,5,99,99,"Fox News","Republican" +1,2,10186,"turk",2,0,2,4,98,94,"Fox News","Democrat" +1,2,10188,"turk",2,0,1,5,99,99,"Fox News","Democrat" +1,2,10194,"turk",3,0,1,3,99,1,"Fox News","Democrat" +1,2,10197,"turk",2,0,20,2,80,10,"Fox News","Democrat" +1,2,10202,"turk",3,0,50,2,50,99,"Fox News","Neither" +1,2,10203,"turk",2,0,60,3,40,45,"Fox News","Republican" +1,2,10204,"turk",4,0,99,5,1,1,"Fox News","Democrat" +1,2,10209,"turk",3,0,1,4,99,99,"Fox News","Democrat" +1,2,10210,"turk",4,0,20,4,80,60,"Fox News","Republican" +1,2,10211,"turk",3,0,10,4,90,90,"Fox News","Democrat" +1,2,10215,"turk",4,0,30,4,70,50,"Fox News","Democrat" +1,2,10223,"turk",3,0,50,2,50,20,"Fox News","Democrat" +1,2,10224,"turk",4,0,1,5,99,0,"Fox News","Democrat" +1,2,10227,"turk",3,0,50,2,50,25,"Fox News","Republican" +1,2,10228,"turk",2,0,50,5,50,50,"Fox News","Neither" +1,2,10235,"turk",4,0,1,3,99,99,"Fox News","Republican" +1,2,10242,"turk",4,0,99,3,1,1,"Fox News","Republican" +1,2,10245,"turk",3,0,99,3,1,1,"Fox News","Neither" +1,2,10248,"turk",2,0,20,2,80,40,"Fox News","Democrat" +1,2,10252,"turk",3,0,20,3,80,80,"Fox News","Republican" +1,2,10256,"turk",2,0,99,5,1,1,"Fox News","Neither" +1,2,10262,"turk",3,0,30,2,70,70,"Fox News","Democrat" +1,2,10271,"turk",2,0,99,2,1,1,"Fox News","Republican" +1,2,10274,"turk",4,0,1,5,99,99,"Fox News","Republican" +1,2,10275,"turk",2,0,50,5,50,0,"Fox News","Democrat" +1,2,10276,"turk",3,0,50,5,50,50,"Fox News","Neither" +1,2,10277,"turk",4,0,1,3,99,1,"Fox News","Democrat" +1,2,10279,"turk",4,0,20,3,80,70,"Fox News","Democrat" +1,2,10281,"turk",4,0,0,2,100,25,"Fox News","Democrat" +1,2,10284,"turk",3,0,99,3,1,1,"Fox News","Democrat" +1,2,10285,"turk",4,0,1,2,99,1,"Fox News","Republican" +1,2,10289,"turk",3,0,99,2,1,1,"Fox News","Republican" +1,2,10290,"turk",4,0,99,2,1,1,"Fox News","Neither" +1,2,10292,"turk",3,0,1,3,99,99,"Fox News","Democrat" +1,2,10295,"turk",4,0,15,2,85,85,"Fox News","Democrat" +1,2,10297,"turk",2,0,1,4,99,99,"Fox News","Democrat" +1,2,10307,"turk",3,0,10,5,90,90,"Fox News","Republican" +1,2,10308,"turk",3,0,1,3,99,99,"Fox News","Democrat" +1,2,10315,"turk",3,0,80,2,20,1,"Fox News","Republican" +1,2,10317,"turk",4,0,10,3,90,80,"Fox News","Democrat" +1,2,10318,"turk",3,0,1,4,99,99,"Fox News","Democrat" +1,2,10319,"turk",3,0,99,5,1,1,"Fox News","Neither" +1,2,10320,"turk",4,0,1,3,99,1,"Fox News","Republican" +1,2,10329,"turk",3,0,60,4,40,100,"Fox News","Republican" +1,2,10331,"turk",3,0,5,2,95,95,"Fox News","Democrat" +1,2,10332,"turk",2,0,50,2,50,1,"Fox News","Democrat" +1,2,10342,"turk",2,0,5,2,95,90,"Fox News","Democrat" +1,2,10346,"turk",3,0,1,3,99,99,"Fox News","Democrat" +1,2,10350,"turk",3,0,1,2,99,50,"Fox News","Democrat" +1,2,10354,"turk",4,0,75,2,25,1,"Fox News","Neither" +1,2,10355,"turk",4,0,30,3,70,60,"Fox News","Neither" +1,2,10359,"turk",2,0,1,5,99,99,"Fox News","Republican" +1,2,10360,"turk",4,0,99,4,1,99,"Fox News","Democrat" +1,2,10365,"turk",2,0,99,5,1,1,"Fox News","Republican" +1,2,10367,"turk",4,0,50,3,50,60,"Fox News","Republican" +1,2,10368,"turk",3,0,1,5,99,99,"Fox News","Democrat" +1,2,10369,"turk",4,0,1,3,99,99,"Fox News","Republican" +1,2,10374,"turk",4,0,99,2,1,1,"Fox News","Democrat" +1,2,10376,"turk",2,0,99,4,1,1,"Fox News","Republican" +1,2,10382,"turk",3,0,99,3,1,99,"Fox News","Democrat" +1,2,10385,"turk",2,0,10,3,90,95,"Fox News","Republican" +1,2,10386,"turk",2,0,1,4,99,99,"Fox News","Democrat" +1,2,10387,"turk",3,0,1,3,99,99,"Fox News","Democrat" +1,2,10389,"turk",3,0,25,2,75,15,"Fox News","Neither" +1,2,10391,"turk",2,0,99,3,1,50,"Fox News","Neither" +1,2,10392,"turk",4,0,45,2,55,98,"Fox News","Democrat" +1,2,10394,"turk",4,0,1,5,99,99,"Fox News","Democrat" +1,2,10396,"turk",3,0,16,3,84,45,"Fox News","Republican" +1,2,10398,"turk",4,0,80,5,20,20,"Fox News","Republican" +1,2,10402,"turk",2,0,40,4,60,50,"Fox News","Democrat" +1,2,10404,"turk",2,0,1,4,99,99,"Fox News","Republican" +1,2,10406,"turk",3,0,99,3,1,1,"Fox News","Democrat" +1,2,10408,"turk",2,0,50,2,50,1,"Fox News","Democrat" +1,2,10411,"turk",2,0,10,3,90,80,"Fox News","Republican" +1,2,10413,"turk",3,0,20,2,80,80,"Fox News","Republican" +1,2,10416,"turk",4,0,50,2,50,50,"Fox News","Republican" +1,2,10418,"turk",4,0,34,2,66,26,"Fox News","Democrat" +1,2,10422,"turk",2,0,15,5,85,75,"Fox News","Democrat" +1,2,10423,"turk",3,0,15,5,85,85,"Fox News","Neither" +1,2,10425,"turk",4,0,1,2,99,99,"Fox News","Democrat" +1,2,10427,"turk",3,0,1,5,99,99,"Fox News","Republican" +1,2,10429,"turk",2,0,1,5,99,98,"Fox News","Democrat" +1,2,10433,"turk",2,0,1,4,99,99,"Fox News","Democrat" +1,2,10440,"turk",3,0,67,5,33,46,"Fox News","Democrat" +1,2,10441,"turk",4,0,20,5,80,80,"Fox News","Democrat" +1,2,10442,"turk",2,0,50,2,50,50,"Fox News","Neither" +1,2,10443,"turk",2,0,10,4,90,20,"Fox News","Republican" +1,2,10454,"turk",2,0,1,3,99,99,"Fox News","Democrat" +1,2,10457,"turk",4,0,95,5,5,5,"Fox News","Republican" +1,2,10463,"turk",3,0,75,2,25,25,"Fox News","Republican" +1,2,10464,"turk",4,0,85,4,15,15,"Fox News","Democrat" +1,2,10468,"turk",4,0,20,5,80,80,"Fox News","Democrat" +1,2,10469,"turk",3,0,99,3,1,99,"Fox News","Neither" +1,2,10470,"turk",2,0,99,5,1,1,"Fox News","Democrat" +1,2,10474,"turk",2,0,78,2,22,22,"Fox News","Democrat" +1,2,10475,"turk",2,0,0,2,100,100,"Fox News","Democrat" +1,2,10476,"turk",4,0,1,4,99,99,"Fox News","Neither" +1,2,10479,"turk",4,0,1,2,99,99,"Fox News","Democrat" +1,2,10481,"turk",2,0,30,2,70,60,"Fox News","Neither" +1,2,10483,"turk",3,0,30,4,70,55,"Fox News","Democrat" +1,2,10485,"turk",3,0,1,3,99,90,"Fox News","Democrat" +1,2,10486,"turk",4,0,50,2,50,50,"Fox News","Neither" +1,2,10488,"turk",4,0,20,5,80,70,"Fox News","Republican" +1,2,10489,"turk",4,0,13,4,87,77,"Fox News","Democrat" +1,2,10493,"turk",3,0,99,4,1,1,"Fox News","Democrat" +1,2,10499,"turk",3,0,45,4,55,50,"Fox News","Democrat" +1,2,10500,"turk",2,0,1,2,99,99,"Fox News","Neither" +1,2,10501,"turk",3,0,0,4,100,80,"Fox News","Democrat" +1,2,10503,"turk",4,0,99,5,1,1,"Fox News","Democrat" +1,2,10505,"turk",4,0,10,2,90,30,"Fox News","Republican" +1,2,10508,"turk",2,0,10,5,90,90,"Fox News","Democrat" +1,2,10521,"turk",4,0,1,4,99,99,"Fox News","Democrat" +1,2,10522,"turk",3,0,5,4,95,80,"Fox News","Republican" +1,2,10523,"turk",3,0,80,5,20,76,"Fox News","Democrat" +1,2,10525,"turk",4,0,50,2,50,50,"Fox News","Neither" +1,2,10528,"turk",3,0,1,3,99,99,"Fox News","Neither" +1,2,10529,"turk",3,0,20,2,80,20,"Fox News","Republican" +1,2,10534,"turk",2,0,97,3,3,3,"Fox News","Republican" +1,2,9742,"turk",4,1,100,4,100,100,"Fox News","Neither" +1,2,9745,"turk",3,1,90,3,90,80,"Fox News","Republican" +1,2,9746,"turk",2,1,99,5,99,25,"Fox News","Neither" +1,2,9748,"turk",2,1,50,5,50,40,"Fox News","Democrat" +1,2,9749,"turk",2,1,100,2,100,100,"Fox News","Democrat" +1,2,9750,"turk",3,1,99,2,99,90,"Fox News","Republican" +1,2,9751,"turk",2,1,99,5,99,99,"Fox News","Democrat" +1,2,9753,"turk",3,1,75,2,75,65,"Fox News","Democrat" +1,2,9754,"turk",4,1,95,2,95,50,"Fox News","Republican" +1,2,9757,"turk",2,1,99,4,99,99,"Fox News","Democrat" +1,2,9758,"turk",4,1,100,4,100,100,"Fox News","Neither" +1,2,9759,"turk",2,1,80,2,80,50,"Fox News","Republican" +1,2,9760,"turk",3,1,70,3,70,50,"Fox News","Neither" +1,2,9765,"turk",4,1,99,5,99,99,"Fox News","Neither" +1,2,9770,"turk",3,1,85,4,85,85,"Fox News","Democrat" +1,2,9771,"turk",2,1,99,3,99,99,"Fox News","Democrat" +1,2,9776,"turk",3,1,99,5,99,99,"Fox News","Neither" +1,2,9778,"turk",4,1,90,4,90,87,"Fox News","Neither" +1,2,9779,"turk",3,1,95,5,95,99,"Fox News","Democrat" +1,2,9782,"turk",3,1,95,3,95,90,"Fox News","Republican" +1,2,9784,"turk",2,1,99,3,99,99,"Fox News","Republican" +1,2,9789,"turk",3,1,99,5,99,99,"Fox News","Democrat" +1,2,9790,"turk",3,1,99,5,99,99,"Fox News","Neither" +1,2,9793,"turk",2,1,99,3,99,88,"Fox News","Neither" +1,2,9796,"turk",4,1,99,5,99,99,"Fox News","Democrat" +1,2,9797,"turk",2,1,90,5,90,90,"Fox News","Republican" +1,2,9799,"turk",3,1,99,3,99,99,"Fox News","Democrat" +1,2,9800,"turk",4,1,80,4,80,85,"Fox News","Republican" +1,2,9801,"turk",2,1,95,2,95,90,"Fox News","Neither" +1,2,9811,"turk",2,1,95,3,95,50,"Fox News","Republican" +1,2,9812,"turk",4,1,99,4,99,99,"Fox News","Republican" +1,2,9816,"turk",3,1,99,5,99,0,"Fox News","Democrat" +1,2,9819,"turk",2,1,99,5,99,99,"Fox News","Republican" +1,2,9824,"turk",3,1,1,2,1,5,"Fox News","Democrat" +1,2,9834,"turk",4,1,75,5,75,75,"Fox News","Democrat" +1,2,9838,"turk",3,1,50,2,50,50,"Fox News","Democrat" +1,2,9840,"turk",4,1,0,5,0,50,"Fox News","Democrat" +1,2,9841,"turk",2,1,99,2,99,99,"Fox News","Democrat" +1,2,9845,"turk",4,1,40,5,40,40,"Fox News","Neither" +1,2,9846,"turk",4,1,80,4,80,80,"Fox News","Democrat" +1,2,9848,"turk",4,1,75,3,75,25,"Fox News","Neither" +1,2,9850,"turk",3,1,99,3,99,99,"Fox News","Republican" +1,2,9853,"turk",4,1,55,2,55,50,"Fox News","Neither" +1,2,9854,"turk",4,1,99,5,99,99,"Fox News","Neither" +1,2,9856,"turk",3,1,3,2,3,2,"Fox News","Republican" +1,2,9860,"turk",4,1,99,5,99,99,"Fox News","Republican" +1,2,9862,"turk",3,1,15,2,15,15,"Fox News","Democrat" +1,2,9873,"turk",3,1,60,5,60,99,"Fox News","Democrat" +1,2,9876,"turk",4,1,99,4,99,99,"Fox News","Democrat" +1,2,9877,"turk",4,1,75,4,75,70,"Fox News","Neither" +1,2,9880,"turk",4,1,100,5,100,100,"Fox News","Democrat" +1,2,9882,"turk",2,1,90,4,90,90,"Fox News","Democrat" +1,2,9888,"turk",4,1,1,2,1,1,"Fox News","Republican" +1,2,9893,"turk",2,1,80,3,80,75,"Fox News","Democrat" +1,2,9895,"turk",2,1,99,4,99,95,"Fox News","Neither" +1,2,9901,"turk",4,1,99,5,99,99,"Fox News","Republican" +1,2,9903,"turk",3,1,95,4,95,90,"Fox News","Democrat" +1,2,9904,"turk",2,1,80,2,80,0,"Fox News","Democrat" +1,2,9908,"turk",2,1,85,5,85,85,"Fox News","Democrat" +1,2,9909,"turk",3,1,90,4,90,80,"Fox News","Neither" +1,2,9911,"turk",2,1,10,3,10,15,"Fox News","Democrat" +1,2,9912,"turk",3,1,99,5,99,99,"Fox News","Democrat" +1,2,9915,"turk",3,1,99,4,99,99,"Fox News","Democrat" +1,2,9919,"turk",3,1,99,3,99,99,"Fox News","Democrat" +1,2,9924,"turk",4,1,99,5,99,99,"Fox News","Democrat" +1,2,9926,"turk",4,1,99,4,99,99,"Fox News","Republican" +1,2,9932,"turk",4,1,1,5,1,1,"Fox News","Democrat" +1,2,9934,"turk",4,1,85,4,85,75,"Fox News","Democrat" +1,2,9936,"turk",3,1,99,5,99,99,"Fox News","Republican" +1,2,9943,"turk",3,1,90,4,90,80,"Fox News","Republican" +1,2,9944,"turk",3,1,50,2,50,50,"Fox News","Democrat" +1,2,9945,"turk",2,1,99,3,99,99,"Fox News","Democrat" +1,2,9950,"turk",2,1,70,2,70,50,"Fox News","Democrat" +1,2,9952,"turk",3,1,1,2,1,50,"Fox News","Democrat" +1,2,9954,"turk",4,1,95,4,95,95,"Fox News","Democrat" +1,2,9957,"turk",4,1,0,5,0,1,"Fox News","Republican" +1,2,9962,"turk",2,1,99,2,99,99,"Fox News","Democrat" +1,2,9969,"turk",3,1,1,4,1,1,"Fox News","Democrat" +1,2,9973,"turk",4,1,95,5,95,95,"Fox News","Democrat" +1,2,9974,"turk",2,1,75,3,75,70,"Fox News","Democrat" +1,2,9977,"turk",3,1,100,3,100,100,"Fox News","Neither" +1,2,9979,"turk",4,1,30,5,30,30,"Fox News","Republican" +1,2,9980,"turk",2,1,90,2,90,75,"Fox News","Republican" +1,2,9981,"turk",4,1,80,5,80,100,"Fox News","Democrat" +1,2,9984,"turk",4,1,99,4,99,99,"Fox News","Democrat" +1,2,9985,"turk",3,1,80,3,80,30,"Fox News","Democrat" +1,2,9989,"turk",2,1,98,4,98,30,"Fox News","Democrat" +1,2,9992,"turk",3,1,99,3,99,99,"Fox News","Republican" +1,2,9994,"turk",2,1,99,4,99,99,"Fox News","Democrat" +1,2,9995,"turk",4,1,90,2,90,75,"Fox News","Republican" +1,2,9996,"turk",2,1,50,2,50,50,"Fox News","Democrat" +1,2,9997,"turk",4,1,99,2,99,99,"Fox News","Democrat" +1,2,9998,"turk",4,1,99,4,99,99,"Fox News","Democrat" +1,2,10004,"turk",3,1,99,2,99,1,"Fox News","Democrat" +1,2,10005,"turk",3,1,90,4,90,90,"Fox News","Republican" +1,2,10006,"turk",4,1,60,2,60,30,"Fox News","Democrat" +1,2,10008,"turk",4,1,99,4,99,98,"Fox News","Republican" +1,2,10009,"turk",2,1,99,5,99,99,"Fox News","Republican" +1,2,10011,"turk",3,1,80,3,80,80,"Fox News","Democrat" +1,2,10012,"turk",3,1,70,2,70,30,"Fox News","Neither" +1,2,10016,"turk",2,1,90,5,90,99,"Fox News","Neither" +1,2,10021,"turk",2,1,70,2,70,60,"Fox News","Democrat" +1,2,10022,"turk",4,1,80,2,80,75,"Fox News","Neither" +1,2,10023,"turk",3,1,0,5,0,0,"Fox News","Republican" +1,2,10025,"turk",4,1,60,2,60,50,"Fox News","Democrat" +1,2,10029,"turk",2,1,90,4,90,85,"Fox News","Democrat" +1,2,10035,"turk",3,1,60,3,60,60,"Fox News","Democrat" +1,2,10040,"turk",3,1,88,5,88,99,"Fox News","Democrat" +1,2,10045,"turk",2,1,85,4,85,80,"Fox News","Neither" +1,2,10050,"turk",4,1,90,5,90,85,"Fox News","Democrat" +1,2,10053,"turk",3,1,90,3,90,90,"Fox News","Republican" +1,2,10057,"turk",3,1,99,3,99,99,"Fox News","Republican" +1,2,10060,"turk",4,1,70,5,70,70,"Fox News","Democrat" +1,2,10063,"turk",4,1,1,2,1,50,"Fox News","Republican" +1,2,10064,"turk",2,1,99,4,99,1,"Fox News","Republican" +1,2,10068,"turk",2,1,99,3,99,99,"Fox News","Democrat" +1,2,10075,"turk",2,1,0,3,0,99,"Fox News","Democrat" +1,2,10079,"turk",2,1,90,4,90,90,"Fox News","Republican" +1,2,10082,"turk",2,1,1,4,1,1,"Fox News","Neither" +1,2,10086,"turk",2,1,85,3,85,80,"Fox News","Neither" +1,2,10088,"turk",3,1,90,5,90,85,"Fox News","Republican" +1,2,10091,"turk",4,1,99,5,99,90,"Fox News","Democrat" +1,2,10098,"turk",4,1,85,2,85,65,"Fox News","Neither" +1,2,10099,"turk",3,1,80,3,80,70,"Fox News","Democrat" +1,2,10100,"turk",2,1,60,4,60,74,"Fox News","Democrat" +1,2,10102,"turk",4,1,99,5,99,99,"Fox News","Democrat" +1,2,10106,"turk",4,1,99,4,99,99,"Fox News","Democrat" +1,2,10110,"turk",3,1,80,5,80,99,"Fox News","Republican" +1,2,10112,"turk",3,1,95,5,95,95,"Fox News","Democrat" +1,2,10114,"turk",3,1,99,2,99,99,"Fox News","Republican" +1,2,10117,"turk",3,1,99,5,99,99,"Fox News","Democrat" +1,2,10119,"turk",3,1,99,5,99,99,"Fox News","Neither" +1,2,10122,"turk",2,1,70,2,70,60,"Fox News","Democrat" +1,2,10123,"turk",4,1,99,5,99,99,"Fox News","Republican" +1,2,10124,"turk",2,1,99,4,99,99,"Fox News","Republican" +1,2,10127,"turk",4,1,99,4,99,99,"Fox News","Republican" +1,2,10128,"turk",3,1,99,5,99,99,"Fox News","Democrat" +1,2,10129,"turk",2,1,99,5,99,99,"Fox News","Democrat" +1,2,10132,"turk",3,1,22,4,22,22,"Fox News","Republican" +1,2,10137,"turk",2,1,70,3,70,60,"Fox News","Democrat" +1,2,10139,"turk",2,1,90,5,90,90,"Fox News","Republican" +1,2,10141,"turk",3,1,50,5,50,50,"Fox News","Republican" +1,2,10143,"turk",4,1,99,4,99,99,"Fox News","Democrat" +1,2,10144,"turk",3,1,99,5,99,98,"Fox News","Democrat" +1,2,10148,"turk",2,1,80,3,80,80,"Fox News","Republican" +1,2,10151,"turk",3,1,99,4,99,99,"Fox News","Democrat" +1,2,10156,"turk",2,1,90,2,90,65,"Fox News","Democrat" +1,2,10159,"turk",3,1,20,4,20,5,"Fox News","Republican" +1,2,10164,"turk",2,1,50,3,50,50,"Fox News","Democrat" +1,2,10165,"turk",4,1,99,2,99,1,"Fox News","Democrat" +1,2,10170,"turk",4,1,100,4,100,100,"Fox News","Neither" +1,2,10172,"turk",4,1,99,2,99,99,"Fox News","Republican" +1,2,10173,"turk",3,1,43,3,43,30,"Fox News","Democrat" +1,2,10177,"turk",3,1,90,3,90,80,"Fox News","Democrat" +1,2,10180,"turk",2,1,90,2,90,10,"Fox News","Neither" +1,2,10181,"turk",2,1,80,2,80,1,"Fox News","Democrat" +1,2,10185,"turk",3,1,0,3,0,99,"Fox News","Republican" +1,2,10187,"turk",3,1,99,4,99,99,"Fox News","Democrat" +1,2,10189,"turk",4,1,1,3,1,0,"Fox News","Democrat" +1,2,10196,"turk",2,1,99,4,99,99,"Fox News","Democrat" +1,2,10198,"turk",3,1,60,2,60,50,"Fox News","Democrat" +1,2,10201,"turk",3,1,85,5,85,83,"Fox News","Republican" +1,2,10205,"turk",2,1,40,3,40,50,"Fox News","Democrat" +1,2,10206,"turk",4,1,42,3,42,99,"Fox News","Democrat" +1,2,10207,"turk",2,1,100,4,100,99,"Fox News","Republican" +1,2,10208,"turk",3,1,50,5,50,66,"Fox News","Democrat" +1,2,10212,"turk",3,1,75,2,75,65,"Fox News","Democrat" +1,2,10214,"turk",3,1,66,3,66,25,"Fox News","Neither" +1,2,10216,"turk",4,1,99,2,99,99,"Fox News","Republican" +1,2,10217,"turk",4,1,99,2,99,1,"Fox News","Democrat" +1,2,10219,"turk",2,1,1,2,1,1,"Fox News","Democrat" +1,2,10222,"turk",2,1,1,2,1,1,"Fox News","Neither" +1,2,10225,"turk",2,1,2,4,2,20,"Fox News","Republican" +1,2,10233,"turk",3,1,100,5,100,100,"Fox News","Neither" +1,2,10234,"turk",2,1,90,2,90,75,"Fox News","Republican" +1,2,10237,"turk",2,1,80,2,80,50,"Fox News","Democrat" +1,2,10238,"turk",4,1,99,5,99,90,"Fox News","Democrat" +1,2,10240,"turk",4,1,50,2,50,50,"Fox News","Neither" +1,2,10243,"turk",3,1,99,3,99,99,"Fox News","Republican" +1,2,10244,"turk",2,1,99,4,99,99,"Fox News","Republican" +1,2,10246,"turk",2,1,100,4,100,100,"Fox News","Democrat" +1,2,10247,"turk",3,1,99,3,99,99,"Fox News","Democrat" +1,2,10249,"turk",3,1,90,3,90,80,"Fox News","Democrat" +1,2,10250,"turk",2,1,44,3,44,55,"Fox News","Democrat" +1,2,10251,"turk",3,1,99,5,99,99,"Fox News","Democrat" +1,2,10253,"turk",4,1,90,4,90,75,"Fox News","Democrat" +1,2,10255,"turk",3,1,50,2,50,50,"Fox News","Democrat" +1,2,10257,"turk",3,1,99,5,99,50,"Fox News","Democrat" +1,2,10259,"turk",4,1,99,2,99,1,"Fox News","Democrat" +1,2,10260,"turk",2,1,99,5,99,99,"Fox News","Neither" +1,2,10265,"turk",2,1,90,2,90,80,"Fox News","Republican" +1,2,10266,"turk",4,1,75,3,75,50,"Fox News","Republican" +1,2,10267,"turk",3,1,99,5,99,99,"Fox News","Democrat" +1,2,10269,"turk",4,1,1,3,1,1,"Fox News","Democrat" +1,2,10270,"turk",4,1,99,3,99,99,"Fox News","Republican" +1,2,10278,"turk",2,1,99,4,99,1,"Fox News","Democrat" +1,2,10282,"turk",2,1,90,2,90,85,"Fox News","Neither" +1,2,10283,"turk",3,1,75,4,75,70,"Fox News","Republican" +1,2,10286,"turk",3,1,25,5,25,25,"Fox News","Republican" +1,2,10287,"turk",4,1,100,5,100,99,"Fox News","Democrat" +1,2,10288,"turk",4,1,99,5,99,99,"Fox News","Neither" +1,2,10293,"turk",2,1,95,4,95,85,"Fox News","Democrat" +1,2,10296,"turk",2,1,100,3,100,95,"Fox News","Republican" +1,2,10300,"turk",3,1,99,4,99,99,"Fox News","Democrat" +1,2,10302,"turk",3,1,99,4,99,99,"Fox News","Republican" +1,2,10304,"turk",3,1,1,2,1,1,"Fox News","Democrat" +1,2,10310,"turk",3,1,75,2,75,50,"Fox News","Republican" +1,2,10313,"turk",2,1,30,3,30,30,"Fox News","Democrat" +1,2,10314,"turk",4,1,90,5,90,90,"Fox News","" +1,2,10321,"turk",2,1,99,5,99,99,"Fox News","Republican" +1,2,10323,"turk",3,1,99,5,99,99,"Fox News","Democrat" +1,2,10326,"turk",3,1,30,4,30,1,"Fox News","Republican" +1,2,10327,"turk",4,1,99,2,99,99,"Fox News","Democrat" +1,2,10330,"turk",4,1,80,4,80,75,"Fox News","Democrat" +1,2,10333,"turk",4,1,95,2,95,90,"Fox News","Neither" +1,2,10336,"turk",3,1,90,2,90,80,"Fox News","Neither" +1,2,10338,"turk",2,1,99,4,99,99,"Fox News","Neither" +1,2,10339,"turk",3,1,99,3,99,99,"Fox News","Democrat" +1,2,10343,"turk",3,1,70,4,70,60,"Fox News","Republican" +1,2,10347,"turk",4,1,25,5,25,5,"Fox News","Democrat" +1,2,10348,"turk",4,1,99,3,99,75,"Fox News","Democrat" +1,2,10349,"turk",4,1,99,3,99,99,"Fox News","Republican" +1,2,10351,"turk",2,1,82,4,82,77,"Fox News","Democrat" +1,2,10353,"turk",2,1,90,3,90,80,"Fox News","Democrat" +1,2,10356,"turk",4,1,99,3,99,99,"Fox News","Republican" +1,2,10358,"turk",2,1,75,5,75,50,"Fox News","Republican" +1,2,10362,"turk",3,1,100,4,100,100,"Fox News","Democrat" +1,2,10363,"turk",3,1,70,2,70,80,"Fox News","Republican" +1,2,10364,"turk",4,1,1,2,1,1,"Fox News","Democrat" +1,2,10366,"turk",3,1,80,5,80,75,"Fox News","Democrat" +1,2,10372,"turk",3,1,75,2,75,60,"Fox News","Neither" +1,2,10375,"turk",2,1,99,5,99,99,"Fox News","Democrat" +1,2,10377,"turk",2,1,1,2,1,50,"Fox News","Democrat" +1,2,10378,"turk",2,1,99,2,99,50,"Fox News","Neither" +1,2,10379,"turk",2,1,89,3,89,80,"Fox News","Democrat" +1,2,10380,"turk",3,1,85,3,85,75,"Fox News","Republican" +1,2,10388,"turk",3,1,100,5,100,100,"Fox News","Neither" +1,2,10393,"turk",3,1,96,5,96,97,"Fox News","Democrat" +1,2,10395,"turk",2,1,99,4,99,90,"Fox News","Neither" +1,2,10397,"turk",2,1,99,2,99,99,"Fox News","Neither" +1,2,10401,"turk",2,1,60,4,60,50,"Fox News","Republican" +1,2,10405,"turk",2,1,99,4,99,85,"Fox News","Democrat" +1,2,10407,"turk",3,1,88,5,88,86,"Fox News","Neither" +1,2,10415,"turk",3,1,99,4,99,99,"Fox News","Democrat" +1,2,10420,"turk",2,1,99,5,99,99,"Fox News","Republican" +1,2,10421,"turk",2,1,50,4,50,50,"Fox News","Democrat" +1,2,10424,"turk",3,1,1,4,1,99,"Fox News","Republican" +1,2,10428,"turk",3,1,90,4,90,90,"Fox News","Republican" +1,2,10430,"turk",2,1,99,4,99,99,"Fox News","Neither" +1,2,10432,"turk",3,1,90,5,90,90,"Fox News","Democrat" +1,2,10434,"turk",2,1,10,5,10,10,"Fox News","Democrat" +1,2,10435,"turk",2,1,60,2,60,50,"Fox News","Democrat" +1,2,10436,"turk",4,1,99,2,99,99,"Fox News","Democrat" +1,2,10437,"turk",4,1,70,2,70,55,"Fox News","Democrat" +1,2,10445,"turk",2,1,99,3,99,0,"Fox News","Democrat" +1,2,10446,"turk",3,1,20,4,20,30,"Fox News","Democrat" +1,2,10447,"turk",4,1,99,2,99,99,"Fox News","Neither" +1,2,10451,"turk",2,1,65,5,65,35,"Fox News","Republican" +1,2,10453,"turk",4,1,99,5,99,99,"Fox News","Democrat" +1,2,10455,"turk",4,1,50,3,50,99,"Fox News","Democrat" +1,2,10461,"turk",3,1,99,3,99,95,"Fox News","Democrat" +1,2,10462,"turk",2,1,99,4,99,99,"Fox News","Republican" +1,2,10465,"turk",2,1,99,5,99,0,"Fox News","Democrat" +1,2,10471,"turk",4,1,99,4,99,80,"Fox News","Democrat" +1,2,10472,"turk",3,1,75,2,75,50,"Fox News","Republican" +1,2,10477,"turk",3,1,99,5,99,96,"Fox News","Republican" +1,2,10478,"turk",2,1,95,5,95,95,"Fox News","Neither" +1,2,10480,"turk",4,1,77,2,77,66,"Fox News","Neither" +1,2,10482,"turk",3,1,NA,5,NA,0,"Fox News","Republican" +1,2,10484,"turk",2,1,100,2,100,50,"Fox News","Democrat" +1,2,10491,"turk",4,1,99,5,99,90,"Fox News","Democrat" +1,2,10492,"turk",4,1,99,5,99,90,"Fox News","Democrat" +1,2,10494,"turk",4,1,54,5,54,60,"Fox News","Republican" +1,2,10495,"turk",4,1,95,4,95,90,"Fox News","Neither" +1,2,10496,"turk",3,1,85,5,85,80,"Fox News","Republican" +1,2,10497,"turk",3,1,99,3,99,99,"Fox News","Democrat" +1,2,10498,"turk",2,1,90,3,90,80,"Fox News","Republican" +1,2,10511,"turk",2,1,70,2,70,1,"Fox News","Democrat" +1,2,10512,"turk",4,1,1,3,1,1,"Fox News","Democrat" +1,2,10515,"turk",2,1,99,5,99,1,"Fox News","Republican" +1,2,10516,"turk",2,1,99,5,99,99,"Fox News","Democrat" +1,2,10518,"turk",2,1,99,5,99,99,"Fox News","Republican" +1,2,10519,"turk",2,1,0,3,0,99,"Fox News","Republican" +1,2,10520,"turk",2,1,99,4,99,99,"Fox News","Democrat" +1,2,10524,"turk",3,1,10,5,10,10,"Fox News","Democrat" +1,2,10527,"turk",4,1,99,2,99,99,"Fox News","Democrat" +1,2,10531,"turk",3,1,50,2,50,99,"Fox News","Neither" +1,3,51,"tess",3,1,50,3,50,50,"New York Times","Neither" +1,3,53,"tess",4,1,89,2,89,50,"New York Times","Democrat" +1,3,64,"tess",3,0,28,3,72,62,"New York Times","Democrat" +1,3,69,"tess",4,0,50,2,50,50,"New York Times","Neither" +1,3,70,"tess",1,0,49,3,51,51,"New York Times","Republican" +1,3,77,"tess",1,0,12,3,88,39,"New York Times","Democrat" +1,3,78,"tess",2,0,98,2,2,50,"New York Times","Democrat" +1,3,90,"tess",3,1,90,2,90,70,"New York Times","Democrat" +1,3,95,"tess",1,0,42,2,58,13,"New York Times","Democrat" +1,3,140,"tess",1,1,99,3,99,99,"New York Times","Republican" +1,3,188,"tess",4,1,39,2,39,36,"New York Times","Democrat" +1,3,189,"tess",4,1,82,2,82,80,"New York Times","Republican" +1,3,196,"tess",2,0,40,3,60,48,"New York Times","Democrat" +1,3,207,"tess",4,0,51,2,49,0,"New York Times","Republican" +1,3,221,"tess",2,1,100,2,100,99,"New York Times","Democrat" +1,3,266,"tess",1,1,79,3,79,40,"New York Times","Democrat" +1,3,296,"tess",1,1,98,3,98,98,"New York Times","Republican" +1,3,334,"tess",3,1,96,2,96,80,"New York Times","Democrat" +1,3,336,"tess",3,0,19,3,81,90,"New York Times","Republican" +1,3,342,"tess",4,0,90,2,10,10,"New York Times","Democrat" +1,3,347,"tess",2,1,20,3,20,21,"New York Times","Democrat" +1,3,366,"tess",3,0,73,3,27,0,"New York Times","Democrat" +1,3,399,"tess",2,0,49,2,51,73,"New York Times","Neither" +1,3,413,"tess",4,0,82,2,18,17,"New York Times","Democrat" +1,3,426,"tess",1,0,81,3,19,20,"New York Times","Republican" +1,3,430,"tess",1,1,50,3,50,50,"New York Times","Republican" +1,3,440,"tess",3,1,50,3,50,1,"New York Times","Democrat" +1,3,443,"tess",4,0,87,2,13,0,"New York Times","Republican" +1,3,461,"tess",3,0,85,2,15,0,"New York Times","Republican" +1,3,491,"tess",4,1,80,2,80,54,"New York Times","Neither" +1,3,502,"tess",1,0,79,2,21,50,"New York Times","Democrat" +1,3,509,"tess",3,0,50,3,50,50,"New York Times","Democrat" +1,3,522,"tess",1,1,0,3,0,51,"New York Times","Democrat" +1,3,530,"tess",1,0,77,2,23,92,"New York Times","Republican" +1,3,541,"tess",3,0,40,2,60,100,"New York Times","Democrat" +1,3,550,"tess",1,1,51,3,51,62,"New York Times","Republican" +1,3,567,"tess",1,1,98,3,98,0,"New York Times","Democrat" +1,3,589,"tess",2,0,60,2,40,11,"New York Times","Republican" +1,3,596,"tess",2,1,100,2,100,100,"New York Times","Democrat" +1,3,600,"tess",1,1,100,3,100,100,"New York Times","Republican" +1,3,603,"tess",1,0,80,3,20,80,"New York Times","Democrat" +1,3,622,"tess",2,0,79,3,21,17,"New York Times","Democrat" +1,3,633,"tess",1,1,50,2,50,50,"New York Times","Democrat" +1,3,639,"tess",3,1,3,3,3,18,"New York Times","Democrat" +1,3,684,"tess",3,0,50,2,50,30,"New York Times","Republican" +1,3,717,"tess",1,0,65,2,35,5,"New York Times","Republican" +1,3,728,"tess",3,1,95,2,95,94,"New York Times","Democrat" +1,3,734,"tess",3,0,10,3,90,86,"New York Times","Republican" +1,3,753,"tess",2,0,90,3,10,10,"New York Times","Republican" +1,3,771,"tess",2,0,52,2,48,25,"New York Times","Democrat" +1,3,794,"tess",3,0,54,3,46,40,"New York Times","Democrat" +1,3,804,"tess",1,1,60,2,60,28,"New York Times","Democrat" +1,3,806,"tess",1,1,50,2,50,50,"New York Times","Democrat" +1,3,836,"tess",3,1,69,3,69,98,"New York Times","Democrat" +1,3,847,"tess",2,0,37,2,63,22,"New York Times","Democrat" +1,3,852,"tess",3,0,77,2,23,0,"New York Times","Democrat" +1,3,855,"tess",1,1,4,2,4,5,"New York Times","Republican" +1,3,857,"tess",2,1,70,2,70,91,"New York Times","Democrat" +1,3,883,"tess",4,1,25,2,25,25,"New York Times","Democrat" +1,3,891,"tess",4,1,98,2,98,91,"New York Times","Republican" +1,3,918,"tess",1,1,56,3,56,66,"New York Times","Republican" +1,3,922,"tess",2,1,69,2,69,39,"New York Times","Republican" +1,3,950,"tess",2,0,60,3,40,20,"New York Times","Democrat" +1,3,958,"tess",2,1,2,3,2,1,"New York Times","Democrat" +1,3,961,"tess",2,1,86,2,86,51,"New York Times","Democrat" +1,3,968,"tess",2,0,1,2,99,1,"New York Times","Democrat" +1,3,990,"tess",1,1,59,2,59,61,"New York Times","Republican" +1,3,1018,"tess",3,1,79,2,79,49,"New York Times","Republican" +1,3,1020,"tess",1,0,95,2,5,10,"New York Times","Republican" +1,3,1031,"tess",1,0,86,3,14,14,"New York Times","Democrat" +1,3,1065,"tess",1,1,14,3,14,99,"New York Times","Republican" +1,3,1067,"tess",2,1,50,3,50,1,"New York Times","Republican" +1,3,1083,"tess",4,0,10,2,90,15,"New York Times","Democrat" +1,3,1084,"tess",1,1,18,3,18,91,"New York Times","Republican" +1,3,1087,"tess",2,1,50,2,50,41,"New York Times","Democrat" +1,3,1097,"tess",2,1,75,3,75,84,"New York Times","Republican" +1,3,1147,"tess",3,0,89,2,11,50,"New York Times","Democrat" +1,3,1150,"tess",4,1,71,2,71,70,"New York Times","Democrat" +1,3,1192,"tess",4,0,50,2,50,57,"New York Times","Democrat" +1,3,1193,"tess",1,0,98,2,2,26,"New York Times","Democrat" +1,3,1208,"tess",2,1,58,3,58,96,"New York Times","Republican" +1,3,1220,"tess",4,0,100,2,0,0,"New York Times","Democrat" +1,3,1235,"tess",3,0,50,3,50,50,"New York Times","Republican" +1,3,1260,"tess",2,0,38,2,62,12,"New York Times","Democrat" +1,3,1265,"tess",3,0,59,2,41,48,"New York Times","Republican" +1,3,1284,"tess",4,0,88,2,12,2,"New York Times","Democrat" +1,3,1288,"tess",2,1,30,2,30,50,"New York Times","Republican" +1,3,1306,"tess",4,0,4,2,96,2,"New York Times","Democrat" +1,3,1309,"tess",3,1,NA,3,NA,NA,"New York Times","Democrat" +1,3,1356,"tess",3,0,77,3,23,28,"New York Times","Republican" +1,3,1382,"tess",3,1,100,3,100,100,"New York Times","Republican" +1,3,1397,"tess",2,1,0,3,0,0,"New York Times","Democrat" +1,3,1416,"tess",3,1,83,2,83,60,"New York Times","Republican" +1,3,1419,"tess",2,1,59,2,59,73,"New York Times","Republican" +1,3,1444,"tess",3,1,56,2,56,56,"New York Times","Democrat" +1,3,1445,"tess",3,0,30,3,70,21,"New York Times","Republican" +1,3,1454,"tess",1,0,88,3,12,0,"New York Times","Democrat" +1,3,1464,"tess",3,0,86,3,14,73,"New York Times","Democrat" +1,3,1468,"tess",1,0,30,2,70,61,"New York Times","Republican" +1,3,1485,"tess",3,1,51,3,51,67,"New York Times","Democrat" +1,3,1491,"tess",2,1,100,2,100,100,"New York Times","Republican" +1,3,1506,"tess",2,0,85,2,15,0,"New York Times","Democrat" +1,3,1510,"tess",3,1,32,3,32,35,"New York Times","Republican" +1,3,1518,"tess",1,0,68,3,32,26,"New York Times","Democrat" +1,3,1532,"tess",3,1,34,3,34,52,"New York Times","Republican" +1,3,1605,"tess",1,1,74,3,74,61,"New York Times","Republican" +1,3,1618,"tess",3,1,100,2,100,100,"New York Times","Republican" +1,3,1624,"tess",1,1,50,2,50,50,"New York Times","Republican" +1,3,1634,"tess",4,0,89,2,11,11,"New York Times","Democrat" +1,3,1644,"tess",2,0,28,3,72,35,"New York Times","Democrat" +1,3,1663,"tess",1,0,77,2,23,25,"New York Times","Neither" +1,3,1668,"tess",3,1,65,3,65,42,"New York Times","Democrat" +1,3,1673,"tess",4,1,90,2,90,50,"New York Times","Democrat" +1,3,1689,"tess",2,0,96,3,4,27,"New York Times","Democrat" +1,3,1724,"tess",1,0,100,3,0,1,"New York Times","Democrat" +1,3,1726,"tess",1,1,71,3,71,60,"New York Times","Democrat" +1,3,1739,"tess",4,1,27,2,27,40,"New York Times","Republican" +1,3,1767,"tess",2,0,49,3,51,50,"New York Times","Republican" +1,3,1798,"tess",3,1,99,2,99,0,"New York Times","Democrat" +1,3,1799,"tess",2,0,61,2,39,31,"New York Times","Republican" +1,3,1824,"tess",2,1,100,2,100,100,"New York Times","Republican" +1,3,1832,"tess",1,0,50,2,50,40,"New York Times","Republican" +1,3,1847,"tess",1,1,70,2,70,61,"New York Times","Republican" +1,3,1900,"tess",1,0,30,3,70,70,"New York Times","Republican" +1,3,1902,"tess",3,0,94,2,6,1,"New York Times","Democrat" +1,3,1930,"tess",1,0,15,2,85,20,"New York Times","Democrat" +1,3,1939,"tess",3,1,53,2,53,86,"New York Times","Democrat" +1,3,1973,"tess",2,0,50,2,50,10,"New York Times","Democrat" +1,3,1981,"tess",1,0,53,2,47,3,"New York Times","Democrat" +1,3,1992,"tess",2,1,99,2,99,90,"New York Times","Democrat" +1,3,2017,"tess",1,1,NA,3,NA,NA,"New York Times","Democrat" +1,3,2030,"tess",2,1,100,3,100,100,"New York Times","Democrat" +1,3,2049,"tess",4,0,50,2,50,16,"New York Times","Democrat" +1,3,2060,"tess",2,0,86,2,14,38,"New York Times","Democrat" +1,3,2072,"tess",3,1,99,3,99,66,"New York Times","Democrat" +1,3,2080,"tess",4,0,64,2,36,34,"New York Times","Democrat" +1,3,2082,"tess",2,1,95,2,95,100,"New York Times","Democrat" +1,3,2088,"tess",2,0,87,3,13,19,"New York Times","Democrat" +1,3,2090,"tess",1,1,95,3,95,90,"New York Times","Democrat" +1,3,2097,"tess",1,0,75,2,25,16,"New York Times","Republican" +1,3,2099,"tess",4,1,90,2,90,51,"New York Times","Republican" +1,3,2100,"tess",4,0,77,2,23,18,"New York Times","Democrat" +1,3,2124,"tess",2,1,91,2,91,88,"New York Times","Republican" +1,3,2137,"tess",1,1,80,2,80,82,"New York Times","Democrat" +1,3,2141,"tess",3,0,98,3,2,40,"New York Times","Democrat" +1,3,2147,"tess",2,0,21,3,79,6,"New York Times","Democrat" +1,3,2153,"tess",1,0,87,3,13,20,"New York Times","Democrat" +1,3,2169,"tess",2,0,50,3,50,52,"New York Times","Democrat" +1,3,2187,"tess",4,1,49,2,49,55,"New York Times","Democrat" +1,3,2190,"tess",2,1,52,2,52,52,"New York Times","Neither" +1,3,2197,"tess",2,0,11,2,89,40,"New York Times","Republican" +1,3,2208,"tess",3,1,0,3,0,0,"New York Times","Democrat" +1,3,2211,"tess",2,1,79,3,79,72,"New York Times","Republican" +1,3,2213,"tess",1,1,51,3,51,99,"New York Times","Neither" +1,3,2215,"tess",3,0,99,2,1,100,"New York Times","Republican" +1,3,2225,"tess",1,0,90,3,10,99,"New York Times","Republican" +1,3,2228,"tess",1,1,22,2,22,77,"New York Times","Democrat" +1,3,2242,"tess",3,1,75,3,75,76,"New York Times","Republican" +1,3,2271,"tess",3,0,56,3,44,59,"New York Times","Democrat" +1,3,2275,"tess",2,1,56,2,56,48,"New York Times","Republican" +1,3,2283,"tess",2,0,20,2,80,40,"New York Times","Democrat" +1,3,2286,"tess",2,1,95,3,95,90,"New York Times","Democrat" +1,3,2287,"tess",1,0,30,2,70,20,"New York Times","Democrat" +1,3,2291,"tess",3,1,70,2,70,50,"New York Times","Republican" +1,3,2308,"tess",4,1,95,2,95,100,"New York Times","Democrat" +1,3,2313,"tess",4,0,90,2,10,20,"New York Times","Democrat" +1,3,2322,"tess",1,0,65,2,35,30,"New York Times","Republican" +1,3,2337,"tess",1,1,90,3,90,90,"New York Times","Democrat" +1,3,2359,"tess",3,1,50,3,50,99,"New York Times","Democrat" +1,3,2394,"tess",1,1,70,3,70,74,"New York Times","Democrat" +1,3,2407,"tess",1,0,100,2,0,4,"New York Times","Republican" +1,3,2445,"tess",2,1,72,3,72,70,"New York Times","Republican" +1,3,2460,"tess",2,0,0,3,100,89,"New York Times","Democrat" +1,3,2483,"tess",4,1,89,2,89,90,"New York Times","Democrat" +1,3,2488,"tess",1,1,48,2,48,58,"New York Times","Democrat" +1,3,2492,"tess",3,1,90,2,90,50,"New York Times","Democrat" +1,3,2508,"tess",2,1,98,2,98,90,"New York Times","Democrat" +1,3,2511,"tess",2,1,96,2,96,70,"New York Times","Democrat" +1,3,2528,"tess",1,1,99,2,99,42,"New York Times","Democrat" +1,3,2532,"tess",3,1,10,3,10,10,"New York Times","Democrat" +1,3,2537,"tess",1,1,85,2,85,65,"New York Times","Republican" +1,3,2542,"tess",3,1,54,3,54,33,"New York Times","Neither" +1,3,2581,"tess",4,0,80,2,20,0,"New York Times","Democrat" +1,3,2592,"tess",2,1,39,2,39,41,"New York Times","Democrat" +1,3,2599,"tess",2,0,99,3,1,2,"New York Times","Republican" +1,3,2611,"tess",1,0,18,3,82,0,"New York Times","Neither" +1,3,2632,"tess",1,1,70,3,70,50,"New York Times","Democrat" +1,3,2669,"tess",3,1,100,3,100,100,"New York Times","Democrat" +1,3,2670,"tess",3,0,35,2,65,25,"New York Times","Neither" +1,3,2671,"tess",2,1,43,2,43,47,"New York Times","Republican" +1,3,2709,"tess",3,1,68,2,68,40,"New York Times","Democrat" +1,3,2731,"tess",1,0,88,3,12,13,"New York Times","Democrat" +1,3,2733,"tess",2,0,3,3,97,97,"New York Times","Democrat" +1,3,2740,"tess",3,1,0,2,0,100,"New York Times","Democrat" +1,3,2741,"tess",1,1,100,2,100,75,"New York Times","Democrat" +1,3,2745,"tess",1,1,90,2,90,60,"New York Times","Republican" +1,3,2778,"tess",1,1,80,3,80,79,"New York Times","Republican" +1,3,2784,"tess",1,1,90,2,90,80,"New York Times","Republican" +1,3,2795,"tess",3,1,60,3,60,20,"New York Times","Republican" +1,3,2827,"tess",4,1,99,2,99,99,"New York Times","Democrat" +1,3,2843,"tess",2,1,50,2,50,90,"New York Times","Democrat" +1,3,2863,"tess",4,0,95,2,5,75,"New York Times","Republican" +1,3,2892,"tess",3,1,64,3,64,44,"New York Times","Democrat" +1,3,2903,"tess",4,1,91,2,91,85,"New York Times","Democrat" +1,3,2915,"tess",1,0,60,3,40,50,"New York Times","Democrat" +1,3,2917,"tess",3,0,78,3,22,81,"New York Times","Republican" +1,3,2923,"tess",3,0,62,3,38,35,"New York Times","Neither" +1,3,2940,"tess",2,0,100,2,0,0,"New York Times","Republican" +1,3,2953,"tess",1,0,50,3,50,97,"New York Times","Neither" +1,3,2970,"tess",1,1,20,2,20,33,"New York Times","Neither" +1,3,2979,"tess",2,0,99,2,1,25,"New York Times","Democrat" +1,3,2983,"tess",3,0,92,2,8,50,"New York Times","Democrat" +1,3,2987,"tess",3,1,100,3,100,100,"New York Times","Republican" +1,3,2988,"tess",2,1,59,2,59,49,"New York Times","Democrat" +1,3,3039,"tess",3,1,90,2,90,80,"New York Times","Republican" +1,3,3043,"tess",3,0,8,3,92,93,"New York Times","Democrat" +1,3,3048,"tess",1,0,80,3,20,50,"New York Times","Democrat" +1,3,3062,"tess",1,0,91,3,9,6,"New York Times","Neither" +1,3,3077,"tess",4,1,95,2,95,95,"New York Times","Democrat" +1,3,3082,"tess",2,0,48,2,52,52,"New York Times","Neither" +1,3,3086,"tess",1,0,90,2,10,90,"New York Times","Republican" +1,3,3089,"tess",3,1,67,2,67,76,"New York Times","Democrat" +1,3,3096,"tess",3,1,99,2,99,99,"New York Times","Republican" +1,3,3102,"tess",2,1,50,3,50,57,"New York Times","Democrat" +1,3,3111,"tess",3,0,51,2,49,50,"New York Times","Democrat" +1,3,3125,"tess",2,1,51,2,51,50,"New York Times","Democrat" +1,3,3137,"tess",2,1,85,2,85,78,"New York Times","Democrat" +1,3,3176,"tess",1,1,50,3,50,50,"New York Times","Republican" +1,3,3205,"tess",4,0,49,2,51,45,"New York Times","Republican" +1,3,3207,"tess",2,0,97,2,3,56,"New York Times","Republican" +1,3,3208,"tess",3,1,50,2,50,50,"New York Times","Democrat" +1,3,3223,"tess",1,0,50,3,50,1,"New York Times","Democrat" +1,3,3225,"tess",2,1,39,2,39,6,"New York Times","Republican" +1,3,3226,"tess",1,1,95,2,95,82,"New York Times","Republican" +1,3,3230,"tess",2,0,100,2,0,2,"New York Times","Republican" +1,3,3234,"tess",1,1,99,3,99,90,"New York Times","Republican" +1,3,3274,"tess",3,0,100,2,0,100,"New York Times","Democrat" +1,3,3295,"tess",2,1,32,3,32,74,"New York Times","Democrat" +1,3,3304,"tess",1,1,51,3,51,100,"New York Times","Republican" +1,3,3320,"tess",1,0,22,2,78,49,"New York Times","Democrat" +1,3,3348,"tess",1,0,70,2,30,60,"New York Times","Democrat" +1,3,3356,"tess",2,0,29,2,71,0,"New York Times","Democrat" +1,3,3365,"tess",3,0,30,2,70,20,"New York Times","Democrat" +1,3,3407,"tess",4,1,80,2,80,73,"New York Times","Republican" +1,3,3412,"tess",2,1,80,2,80,68,"New York Times","Democrat" +1,3,3426,"tess",2,1,100,3,100,100,"New York Times","Democrat" +1,3,3433,"tess",1,1,71,2,71,81,"New York Times","Democrat" +1,3,3435,"tess",1,1,50,2,50,48,"New York Times","Republican" +1,3,3454,"tess",2,0,99,3,1,0,"New York Times","Democrat" +1,3,3464,"tess",2,1,60,3,60,59,"New York Times","Republican" +1,3,3468,"tess",3,0,41,2,59,60,"New York Times","Democrat" +1,3,3477,"tess",3,1,74,2,74,53,"New York Times","Democrat" +1,3,3505,"tess",2,0,9,2,91,30,"New York Times","Republican" +1,3,3508,"tess",3,1,87,3,87,86,"New York Times","Republican" +1,3,3523,"tess",1,1,75,2,75,50,"New York Times","Democrat" +1,3,3544,"tess",2,1,77,3,77,96,"New York Times","Neither" +1,3,3548,"tess",1,1,50,3,50,70,"New York Times","Republican" +1,3,3554,"tess",4,0,52,2,48,14,"New York Times","Democrat" +1,3,3562,"tess",3,1,60,2,60,58,"New York Times","Democrat" +1,3,3564,"tess",3,0,96,2,4,5,"New York Times","Republican" +1,3,3582,"tess",3,1,99,3,99,99,"New York Times","Republican" +1,3,3610,"tess",3,0,50,2,50,50,"New York Times","Democrat" +1,3,3611,"tess",2,0,2,2,98,99,"New York Times","Democrat" +1,3,3627,"tess",2,0,10,2,90,20,"New York Times","Republican" +1,3,3631,"tess",3,1,90,2,90,20,"New York Times","Democrat" +1,3,3632,"tess",1,0,61,2,39,40,"New York Times","Republican" +1,3,3635,"tess",3,1,50,2,50,0,"New York Times","Republican" +1,3,3645,"tess",3,0,81,3,19,12,"New York Times","Republican" +1,3,3663,"tess",3,1,53,3,53,78,"New York Times","Democrat" +1,3,3673,"tess",3,1,60,3,60,66,"New York Times","Republican" +1,3,3699,"tess",2,1,74,3,74,60,"New York Times","Republican" +1,3,3704,"tess",1,0,51,3,49,90,"New York Times","Republican" +1,3,3722,"tess",4,1,85,2,85,78,"New York Times","Democrat" +1,3,3726,"tess",2,1,38,3,38,72,"New York Times","Democrat" +1,3,3728,"tess",1,0,0,3,100,99,"New York Times","Republican" +1,3,3754,"tess",3,1,10,3,10,25,"New York Times","Democrat" +1,3,3767,"tess",2,0,95,3,5,11,"New York Times","Republican" +1,3,3776,"tess",3,1,46,2,46,100,"New York Times","Democrat" +1,3,3779,"tess",3,0,91,2,9,6,"New York Times","Republican" +1,3,3799,"tess",1,0,83,3,17,17,"New York Times","Republican" +1,3,3806,"tess",4,0,12,2,88,76,"New York Times","Republican" +1,3,3848,"tess",2,0,10,2,90,20,"New York Times","Republican" +1,3,3865,"tess",2,1,86,3,86,52,"New York Times","Democrat" +1,3,3868,"tess",3,0,99,3,1,1,"New York Times","Democrat" +1,3,3880,"tess",2,0,68,2,32,41,"New York Times","Republican" +1,3,3904,"tess",3,1,71,2,71,50,"New York Times","Democrat" +1,3,3909,"tess",1,0,10,3,90,90,"New York Times","Democrat" +1,3,3915,"tess",3,0,30,3,70,100,"New York Times","Democrat" +1,3,3918,"tess",3,1,99,2,99,98,"New York Times","Democrat" +1,3,3923,"tess",1,1,100,3,100,99,"New York Times","Democrat" +1,3,3958,"tess",2,0,75,3,25,9,"New York Times","Republican" +1,3,3959,"tess",4,1,90,2,90,51,"New York Times","Democrat" +1,3,3981,"tess",3,0,50,2,50,50,"New York Times","Republican" +1,3,4006,"tess",4,1,80,2,80,20,"New York Times","Democrat" +1,3,4015,"tess",2,1,49,3,49,0,"New York Times","Democrat" +1,3,4035,"tess",3,0,100,2,0,100,"New York Times","Republican" +1,3,4046,"tess",2,1,89,3,89,92,"New York Times","Democrat" +1,3,4069,"tess",2,0,50,2,50,38,"New York Times","Democrat" +1,3,4072,"tess",4,1,76,2,76,48,"New York Times","Democrat" +1,3,4076,"tess",1,0,80,3,20,22,"New York Times","Republican" +1,3,4108,"tess",2,1,99,2,99,99,"New York Times","Democrat" +1,3,4120,"tess",1,0,50,3,50,50,"New York Times","Republican" +1,3,4141,"tess",4,0,86,2,14,3,"New York Times","Democrat" +1,3,4153,"tess",3,1,96,3,96,60,"New York Times","Republican" +1,3,4175,"tess",1,1,50,3,50,80,"New York Times","Democrat" +1,3,4178,"tess",2,1,57,2,57,42,"New York Times","Democrat" +1,3,4210,"tess",2,0,5,3,95,96,"New York Times","Republican" +1,3,4217,"tess",3,1,96,2,96,63,"New York Times","Democrat" +1,3,4218,"tess",1,0,50,3,50,94,"New York Times","Democrat" +1,3,4222,"tess",3,0,31,2,69,72,"New York Times","Democrat" +1,3,4224,"tess",4,0,91,2,9,24,"New York Times","Democrat" +1,3,4227,"tess",2,1,46,3,46,50,"New York Times","Democrat" +1,3,4237,"tess",4,0,50,2,50,50,"New York Times","Democrat" +1,3,4241,"tess",2,1,50,3,50,50,"New York Times","Republican" +1,3,4266,"tess",1,1,98,2,98,99,"New York Times","Democrat" +1,3,4277,"tess",1,1,85,2,85,53,"New York Times","Democrat" +1,3,4278,"tess",2,0,99,2,1,20,"New York Times","Republican" +1,3,4285,"tess",2,0,1,2,99,1,"New York Times","Neither" +1,3,4290,"tess",4,1,79,2,79,76,"New York Times","Democrat" +1,3,4291,"tess",3,1,90,2,90,89,"New York Times","Democrat" +1,3,4302,"tess",3,0,3,2,97,79,"New York Times","Democrat" +1,3,4311,"tess",1,1,38,3,38,62,"New York Times","Democrat" +1,3,4326,"tess",3,1,54,3,54,52,"New York Times","Democrat" +1,3,4332,"tess",1,0,20,2,80,10,"New York Times","Democrat" +1,3,4335,"tess",2,0,70,2,30,40,"New York Times","Republican" +1,3,4365,"tess",2,1,78,3,78,75,"New York Times","Republican" +1,3,4380,"tess",2,1,98,3,98,1,"New York Times","Republican" +1,3,4401,"tess",4,1,100,2,100,1,"New York Times","Democrat" +1,3,4427,"tess",3,1,50,2,50,99,"New York Times","Democrat" +1,3,4441,"tess",1,1,100,3,100,100,"New York Times","Democrat" +1,3,4447,"tess",2,1,97,3,97,90,"New York Times","Republican" +1,3,4451,"tess",1,1,98,2,98,51,"New York Times","Republican" +1,3,4452,"tess",3,0,98,3,2,3,"New York Times","Republican" +1,3,4455,"tess",2,1,80,2,80,60,"New York Times","Democrat" +1,3,4459,"tess",3,0,77,3,23,32,"New York Times","Democrat" +1,3,4475,"tess",2,1,50,2,50,75,"New York Times","Democrat" +1,3,4480,"tess",2,0,57,2,43,40,"New York Times","Democrat" +1,3,4484,"tess",4,1,90,2,90,11,"New York Times","Democrat" +1,3,4486,"tess",3,1,50,2,50,0,"New York Times","Republican" +1,3,4500,"tess",1,1,90,2,90,85,"New York Times","Democrat" +1,3,4516,"tess",2,1,76,2,76,50,"New York Times","Democrat" +1,3,4524,"tess",1,1,50,3,50,75,"New York Times","Republican" +1,3,4525,"tess",3,1,89,2,89,10,"New York Times","Republican" +1,3,4561,"tess",2,0,100,2,0,22,"New York Times","Democrat" +1,3,4581,"tess",4,1,97,2,97,95,"New York Times","Democrat" +1,3,4584,"tess",3,0,95,3,5,50,"New York Times","Democrat" +1,3,4606,"tess",3,0,3,3,97,11,"New York Times","Republican" +1,3,4624,"tess",2,0,50,2,50,25,"New York Times","Republican" +1,3,4627,"tess",2,0,64,2,36,94,"New York Times","Democrat" +1,3,4628,"tess",3,0,51,3,49,50,"New York Times","Democrat" +1,3,4633,"tess",3,0,73,3,27,50,"New York Times","Democrat" +1,3,4642,"tess",1,1,30,3,30,100,"New York Times","Democrat" +1,3,4663,"tess",3,1,93,3,93,94,"New York Times","Democrat" +1,3,4690,"tess",4,0,0,2,100,5,"New York Times","Democrat" +1,3,4708,"tess",4,1,88,2,88,78,"New York Times","Democrat" +1,3,4715,"tess",3,1,9,3,9,42,"New York Times","Republican" +1,3,4722,"tess",1,1,70,3,70,41,"New York Times","Democrat" +1,3,4739,"tess",3,1,7,2,7,99,"New York Times","Republican" +1,3,4742,"tess",2,0,80,2,20,70,"New York Times","Democrat" +1,3,4780,"tess",2,0,95,2,5,8,"New York Times","Republican" +1,3,4782,"tess",3,1,58,2,58,47,"New York Times","Democrat" +1,3,4795,"tess",1,1,97,3,97,96,"New York Times","Democrat" +1,3,4823,"tess",2,1,51,3,51,100,"New York Times","Democrat" +1,3,4875,"tess",2,0,100,3,0,100,"New York Times","Democrat" +1,3,4883,"tess",2,0,20,3,80,79,"New York Times","Democrat" +1,3,4897,"tess",3,0,50,3,50,40,"New York Times","Democrat" +1,3,4903,"tess",4,0,70,2,30,30,"New York Times","Democrat" +1,3,4905,"tess",2,0,3,2,97,0,"New York Times","Democrat" +1,3,4906,"tess",2,0,82,2,18,0,"New York Times","Republican" +1,3,4908,"tess",2,0,65,3,35,7,"New York Times","Democrat" +1,3,4932,"tess",3,0,0,3,100,100,"New York Times","Republican" +1,3,4964,"tess",3,1,60,3,60,90,"New York Times","Republican" +1,3,4966,"tess",3,1,100,3,100,93,"New York Times","Republican" +1,3,4990,"tess",3,1,70,2,70,50,"New York Times","Republican" +1,3,4998,"tess",3,0,54,2,46,7,"New York Times","Democrat" +1,3,5004,"tess",1,1,30,3,30,19,"New York Times","Democrat" +1,3,5008,"tess",3,1,97,3,97,23,"New York Times","Republican" +1,3,5025,"tess",4,1,71,2,71,49,"New York Times","Democrat" +1,3,5027,"tess",2,0,80,2,20,81,"New York Times","Republican" +1,3,5048,"tess",2,1,21,3,21,19,"New York Times","Republican" +1,3,5073,"tess",1,1,0,3,0,10,"New York Times","Democrat" +1,3,5114,"tess",1,1,83,3,83,88,"New York Times","Democrat" +1,3,5133,"tess",3,1,99,3,99,51,"New York Times","Republican" +1,3,5143,"tess",4,1,61,2,61,77,"New York Times","Republican" +1,3,5147,"tess",3,1,95,2,95,62,"New York Times","Republican" +1,3,5175,"tess",1,1,41,2,41,11,"New York Times","Democrat" +1,3,5186,"tess",1,0,3,3,97,100,"New York Times","Republican" +1,3,5192,"tess",1,1,50,2,50,51,"New York Times","Democrat" +1,3,5222,"tess",2,0,50,3,50,51,"New York Times","Democrat" +1,3,5224,"tess",1,1,75,3,75,67,"New York Times","Republican" +1,3,5268,"tess",3,1,36,2,36,30,"New York Times","Democrat" +1,3,5284,"tess",4,0,94,2,6,6,"New York Times","Democrat" +1,3,5289,"tess",2,1,97,2,97,50,"New York Times","Democrat" +1,3,5301,"tess",1,0,91,3,9,20,"New York Times","Democrat" +1,3,5308,"tess",4,0,100,2,0,17,"New York Times","Democrat" +1,3,5318,"tess",3,1,0,2,0,30,"New York Times","Democrat" +1,3,5325,"tess",2,0,88,3,12,72,"New York Times","Democrat" +1,3,5326,"tess",3,1,60,3,60,89,"New York Times","Democrat" +1,3,5331,"tess",4,1,89,2,89,40,"New York Times","Democrat" +1,3,5353,"tess",3,0,100,2,0,99,"New York Times","Democrat" +1,3,5383,"tess",3,1,80,2,80,69,"New York Times","Republican" +1,3,5386,"tess",1,1,10,2,10,20,"New York Times","Republican" +1,3,5389,"tess",3,0,30,2,70,30,"New York Times","Republican" +1,3,5406,"tess",2,0,45,2,55,30,"New York Times","Republican" +1,3,5412,"tess",3,1,65,3,65,62,"New York Times","Republican" +1,3,5423,"tess",2,0,99,3,1,85,"New York Times","Democrat" +1,3,5438,"tess",3,0,30,3,70,88,"New York Times","Democrat" +1,3,5447,"tess",4,1,94,2,94,99,"New York Times","Democrat" +1,3,5450,"tess",2,1,94,3,94,94,"New York Times","Republican" +1,3,5480,"tess",1,0,70,2,30,50,"New York Times","Republican" +1,3,5500,"tess",3,1,45,2,45,40,"New York Times","Democrat" +1,3,5518,"tess",1,0,40,3,60,85,"New York Times","Republican" +1,3,5536,"tess",2,1,16,2,16,11,"New York Times","Democrat" +1,3,5551,"tess",1,0,91,3,9,12,"New York Times","Republican" +1,3,5559,"tess",1,1,84,3,84,51,"New York Times","Republican" +1,3,5567,"tess",1,0,90,3,10,10,"New York Times","Republican" +1,3,5569,"tess",1,1,45,3,45,87,"New York Times","Democrat" +1,3,5579,"tess",2,0,81,3,19,62,"New York Times","Republican" +1,3,5584,"tess",4,0,50,2,50,20,"New York Times","Democrat" +1,3,5586,"tess",3,0,3,2,97,49,"New York Times","Democrat" +1,3,5594,"tess",3,1,6,2,6,28,"New York Times","Republican" +1,3,5631,"tess",1,0,10,2,90,40,"New York Times","Republican" +1,3,5633,"tess",4,1,100,2,100,100,"New York Times","Democrat" +1,3,5646,"tess",2,0,100,2,0,100,"New York Times","Republican" +1,3,5660,"tess",3,0,40,3,60,10,"New York Times","Democrat" +1,3,5669,"tess",1,0,88,2,12,17,"New York Times","Neither" +1,3,5676,"tess",2,0,1,2,99,1,"New York Times","Democrat" +1,3,5677,"tess",3,0,23,2,77,45,"New York Times","Republican" +1,3,5681,"tess",2,1,70,2,70,41,"New York Times","Democrat" +1,3,5684,"tess",4,0,100,2,0,0,"New York Times","Democrat" +1,3,5691,"tess",3,1,51,2,51,63,"New York Times","Democrat" +1,3,5720,"tess",1,0,50,2,50,6,"New York Times","Republican" +1,3,5721,"tess",2,0,30,2,70,69,"New York Times","Republican" +1,3,5725,"tess",2,0,1,3,99,98,"New York Times","Republican" +1,3,5729,"tess",2,0,100,3,0,7,"New York Times","Republican" +1,3,5730,"tess",2,0,45,3,55,59,"New York Times","Republican" +1,3,5731,"tess",1,0,50,2,50,20,"New York Times","Democrat" +1,3,5732,"tess",3,1,50,2,50,50,"New York Times","Republican" +1,3,5735,"tess",3,1,70,2,70,50,"New York Times","Republican" +1,3,5743,"tess",1,0,90,2,10,50,"New York Times","Republican" +1,3,5745,"tess",2,1,80,3,80,70,"New York Times","Democrat" +1,3,5751,"tess",2,1,63,3,63,50,"New York Times","Republican" +1,3,5752,"tess",2,1,30,2,30,50,"New York Times","Democrat" +1,3,5760,"tess",3,0,31,2,69,11,"New York Times","Democrat" +1,3,5783,"tess",3,1,90,3,90,47,"New York Times","Democrat" +1,3,5804,"tess",2,1,68,2,68,59,"New York Times","Republican" +1,3,5815,"tess",2,1,50,2,50,88,"New York Times","Democrat" +1,3,5820,"tess",3,1,77,2,77,71,"New York Times","Democrat" +1,3,5824,"tess",2,0,0,2,100,50,"New York Times","Democrat" +1,3,5826,"tess",3,0,46,2,54,12,"New York Times","Republican" +1,3,5838,"tess",1,1,99,2,99,50,"New York Times","Republican" +1,3,5854,"tess",3,1,50,3,50,50,"New York Times","Democrat" +1,3,5868,"tess",3,1,95,3,95,91,"New York Times","Democrat" +1,3,5884,"tess",2,0,40,3,60,50,"New York Times","Democrat" +1,3,5886,"tess",2,1,44,2,44,48,"New York Times","Republican" +1,3,5889,"tess",2,1,55,2,55,53,"New York Times","Democrat" +1,3,5901,"tess",4,1,100,2,100,50,"New York Times","Democrat" +1,3,5918,"tess",1,0,0,3,100,99,"New York Times","Republican" +1,3,5922,"tess",3,0,4,3,96,97,"New York Times","Republican" +1,3,5925,"tess",4,1,88,2,88,88,"New York Times","Republican" +1,3,5931,"tess",3,1,7,3,7,4,"New York Times","Democrat" +1,3,5937,"tess",2,0,50,3,50,49,"New York Times","Democrat" +1,3,5946,"tess",3,0,3,3,97,98,"New York Times","Republican" +1,3,5951,"tess",2,1,87,3,87,90,"New York Times","Democrat" +1,3,5959,"tess",1,0,62,3,38,20,"New York Times","Republican" +1,3,5963,"tess",2,1,98,2,98,95,"New York Times","Democrat" +1,3,5982,"tess",3,1,50,2,50,29,"New York Times","Democrat" +1,3,5987,"tess",4,1,95,2,95,75,"New York Times","Democrat" +1,3,5988,"tess",2,1,89,3,89,51,"New York Times","Democrat" +1,3,5994,"tess",2,0,90,2,10,10,"New York Times","Democrat" +1,3,5998,"tess",3,0,93,3,7,53,"New York Times","Democrat" +1,3,6000,"tess",2,0,81,2,19,19,"New York Times","Democrat" +1,3,6008,"tess",1,1,90,2,90,26,"New York Times","Republican" +1,3,6012,"tess",3,1,70,3,70,50,"New York Times","Republican" +1,3,6042,"tess",2,1,99,2,99,98,"New York Times","Neither" +1,3,6046,"tess",4,0,19,2,81,7,"New York Times","Democrat" +1,3,6050,"tess",1,1,45,3,45,83,"New York Times","Republican" +1,3,6068,"tess",1,1,50,2,50,50,"New York Times","Democrat" +1,3,6073,"tess",3,0,40,2,60,100,"New York Times","Democrat" +1,3,6074,"tess",1,1,88,2,88,49,"New York Times","Republican" +1,3,6087,"tess",1,0,84,2,16,4,"New York Times","Democrat" +1,3,6090,"tess",4,0,0,2,100,0,"New York Times","Democrat" +1,3,6101,"tess",1,1,46,2,46,35,"New York Times","Democrat" +1,3,6110,"tess",1,0,48,2,52,13,"New York Times","Republican" +1,3,6111,"tess",4,0,86,2,14,36,"New York Times","Democrat" +1,3,6130,"tess",2,0,6,2,94,79,"New York Times","Republican" +1,3,6131,"tess",1,0,50,2,50,40,"New York Times","Neither" +1,3,6137,"tess",2,0,11,2,89,50,"New York Times","Democrat" +1,3,6144,"tess",3,1,57,3,57,54,"New York Times","Democrat" +1,3,6151,"tess",3,1,80,3,80,70,"New York Times","Democrat" +1,3,6152,"tess",2,0,3,3,97,80,"New York Times","Democrat" +1,3,6162,"tess",1,0,76,3,24,13,"New York Times","Democrat" +1,3,6172,"tess",1,0,99,3,1,1,"New York Times","Democrat" +1,3,6180,"tess",3,1,92,2,92,79,"New York Times","Republican" +1,3,6187,"tess",2,1,92,3,92,99,"New York Times","Democrat" +1,3,6188,"tess",2,1,19,2,19,20,"New York Times","Republican" +1,3,6197,"tess",3,0,5,3,95,90,"New York Times","Democrat" +1,3,6199,"tess",3,0,8,2,92,51,"New York Times","Republican" +1,3,6209,"tess",1,1,100,3,100,100,"New York Times","Democrat" +1,3,6224,"tess",1,0,90,3,10,30,"New York Times","Democrat" +1,3,6225,"tess",1,0,70,2,30,45,"New York Times","Democrat" +1,3,6226,"tess",1,0,10,3,90,89,"New York Times","Democrat" +1,3,6242,"tess",1,0,57,3,43,11,"New York Times","Democrat" +1,3,6244,"tess",4,1,10,2,10,10,"New York Times","Democrat" +1,3,6246,"tess",4,0,67,2,33,71,"New York Times","Republican" +1,3,6254,"tess",1,0,61,2,39,36,"New York Times","Democrat" +1,3,6256,"tess",1,0,99,3,1,1,"New York Times","Democrat" +1,3,6257,"tess",1,0,84,2,16,3,"New York Times","Democrat" +1,3,6259,"tess",2,0,33,2,67,0,"New York Times","Democrat" +1,3,6269,"tess",1,1,30,2,30,20,"New York Times","Democrat" +1,3,6270,"tess",2,1,86,2,86,78,"New York Times","Democrat" +1,3,6279,"tess",2,1,NA,3,NA,NA,"New York Times","Republican" +1,3,6280,"tess",1,1,46,2,46,50,"New York Times","Democrat" +1,3,6292,"tess",3,1,96,2,96,50,"New York Times","Democrat" +1,3,6298,"tess",3,0,100,3,0,0,"New York Times","Neither" +1,3,6307,"tess",1,1,74,2,74,67,"New York Times","Republican" +1,3,6312,"tess",1,1,62,3,62,100,"New York Times","Republican" +1,3,6326,"tess",4,0,90,2,10,10,"New York Times","Democrat" +1,3,6333,"tess",1,0,42,2,58,20,"New York Times","Republican" +1,3,6361,"tess",4,1,78,2,78,85,"New York Times","Democrat" +1,3,6362,"tess",3,1,98,3,98,83,"New York Times","Republican" +1,3,6366,"tess",2,1,90,3,90,90,"New York Times","Democrat" +1,3,6367,"tess",1,0,50,3,50,80,"New York Times","Democrat" +1,3,6376,"tess",1,0,30,2,70,25,"New York Times","Democrat" +1,3,6382,"tess",3,1,50,2,50,100,"New York Times","Democrat" +1,3,6385,"tess",4,0,62,2,38,39,"New York Times","Democrat" +1,3,6388,"tess",2,0,48,2,52,82,"New York Times","Democrat" +1,3,6397,"tess",1,1,99,3,99,99,"New York Times","Republican" +1,3,6411,"tess",2,1,99,2,99,98,"New York Times","Democrat" +1,3,6419,"tess",2,0,66,2,34,26,"New York Times","Democrat" +1,3,6427,"tess",4,1,50,2,50,67,"New York Times","Republican" +1,3,6430,"tess",4,0,10,2,90,20,"New York Times","Democrat" +1,3,6440,"tess",1,1,75,2,75,40,"New York Times","Republican" +1,3,6458,"tess",2,1,51,3,51,50,"New York Times","Republican" +1,3,6462,"tess",4,1,99,2,99,50,"New York Times","Democrat" +1,3,6463,"tess",3,1,89,3,89,29,"New York Times","Democrat" +1,3,6467,"tess",2,1,29,3,29,22,"New York Times","Democrat" +1,3,6491,"tess",3,0,99,3,1,10,"New York Times","Neither" +1,3,6496,"tess",4,1,60,2,60,40,"New York Times","Democrat" +1,3,6506,"tess",1,1,41,2,41,100,"New York Times","Democrat" +1,3,6524,"tess",4,0,93,2,7,15,"New York Times","Democrat" +1,3,6527,"tess",1,0,5,3,95,77,"New York Times","Democrat" +1,3,6532,"tess",2,1,90,2,90,49,"New York Times","Democrat" +1,3,6534,"tess",3,0,82,2,18,25,"New York Times","Republican" +1,3,6540,"tess",2,0,0,2,100,100,"New York Times","Democrat" +1,3,6541,"tess",3,0,61,2,39,87,"New York Times","Democrat" +1,3,6545,"tess",1,0,26,2,74,20,"New York Times","Democrat" +1,3,6547,"tess",1,1,80,2,80,90,"New York Times","Republican" +1,3,6553,"tess",1,1,79,2,79,50,"New York Times","Republican" +1,3,6557,"tess",2,0,70,2,30,21,"New York Times","Republican" +1,3,6558,"tess",2,1,10,3,10,0,"New York Times","Republican" +1,3,6561,"tess",3,0,82,3,18,31,"New York Times","Democrat" +1,3,6562,"tess",2,1,100,3,100,99,"New York Times","Republican" +1,3,6565,"tess",2,1,90,3,90,85,"New York Times","Democrat" +1,3,6571,"tess",3,0,24,3,76,68,"New York Times","Republican" +1,3,6572,"tess",4,0,52,2,48,18,"New York Times","Democrat" +1,3,6587,"tess",2,1,50,3,50,50,"New York Times","Republican" +1,3,6590,"tess",2,0,70,2,30,19,"New York Times","Democrat" +1,3,6592,"tess",1,0,85,3,15,59,"New York Times","Democrat" +1,3,6599,"tess",3,1,86,2,86,66,"New York Times","Democrat" +1,3,6600,"tess",2,1,65,3,65,70,"New York Times","Republican" +1,3,6610,"tess",4,1,75,2,75,60,"New York Times","Democrat" +1,3,6615,"tess",3,1,100,2,100,90,"New York Times","Democrat" +1,3,6617,"tess",1,1,85,2,85,26,"New York Times","Democrat" +1,3,6625,"tess",2,0,71,2,29,25,"New York Times","Democrat" +1,3,6634,"tess",2,0,11,2,89,17,"New York Times","Republican" +1,3,6635,"tess",2,1,93,2,93,88,"New York Times","Republican" +1,3,6636,"tess",1,0,91,3,9,9,"New York Times","Republican" +1,3,6642,"tess",2,1,21,3,21,70,"New York Times","Democrat" +1,3,6647,"tess",1,1,66,3,66,75,"New York Times","Democrat" +1,3,6648,"tess",3,0,74,2,26,33,"New York Times","Democrat" +1,3,6666,"tess",1,0,51,2,49,20,"New York Times","Democrat" +1,3,6670,"tess",3,0,91,2,9,75,"New York Times","Democrat" +1,3,6674,"tess",1,0,21,2,79,40,"New York Times","Democrat" +1,3,6683,"tess",1,1,99,2,99,99,"New York Times","Democrat" +1,3,6686,"tess",2,0,30,2,70,50,"New York Times","Republican" +1,3,6696,"tess",2,1,90,2,90,50,"New York Times","Democrat" +1,3,6702,"tess",4,0,99,2,1,10,"New York Times","Democrat" +1,3,6712,"tess",1,1,39,3,39,35,"New York Times","Democrat" +1,3,6720,"tess",2,0,84,2,16,78,"New York Times","Republican" +1,3,6725,"tess",3,1,10,3,10,16,"New York Times","Republican" +1,3,6729,"tess",4,0,89,2,11,33,"New York Times","Democrat" +1,3,6730,"tess",2,0,37,2,63,27,"New York Times","Democrat" +1,3,6733,"tess",3,0,100,3,0,50,"New York Times","Republican" +1,3,6741,"tess",4,1,50,2,50,20,"New York Times","Democrat" +1,3,6742,"tess",1,1,30,3,30,39,"New York Times","Democrat" +1,3,6748,"tess",4,1,95,2,95,90,"New York Times","Democrat" +1,3,6755,"tess",3,1,11,3,11,20,"New York Times","Republican" +1,3,6758,"tess",4,1,78,2,78,78,"New York Times","Republican" +1,3,6760,"tess",3,0,10,2,90,35,"New York Times","Democrat" +1,3,6780,"tess",3,0,35,2,65,22,"New York Times","Democrat" +1,3,6783,"tess",3,0,95,3,5,22,"New York Times","Democrat" +1,3,6788,"tess",2,1,94,2,94,93,"New York Times","Democrat" +1,3,6795,"tess",2,0,3,3,97,99,"New York Times","Democrat" +1,3,6797,"tess",4,1,90,2,90,80,"New York Times","Democrat" +1,3,6802,"tess",4,1,82,2,82,46,"New York Times","Democrat" +1,3,6827,"tess",3,1,50,2,50,50,"New York Times","Democrat" +1,3,6835,"tess",3,1,59,2,59,71,"New York Times","Democrat" +1,3,6844,"tess",2,1,52,2,52,53,"New York Times","Democrat" +1,3,6866,"tess",1,1,99,3,99,99,"New York Times","Democrat" +1,3,6868,"tess",2,0,53,3,47,52,"New York Times","Republican" +1,3,6869,"tess",4,0,0,2,100,44,"New York Times","Democrat" +1,3,6897,"tess",3,1,35,3,35,35,"New York Times","Democrat" +1,3,6909,"tess",1,1,40,2,40,83,"New York Times","Republican" +1,3,6912,"tess",2,1,90,2,90,50,"New York Times","Democrat" +1,3,6913,"tess",4,0,73,2,27,32,"New York Times","Democrat" +1,3,6915,"tess",1,0,80,3,20,30,"New York Times","Republican" +1,3,6930,"tess",2,1,44,2,44,64,"New York Times","Republican" +1,3,6932,"tess",2,1,33,2,33,77,"New York Times","Democrat" +1,3,6935,"tess",2,0,91,3,9,9,"New York Times","Democrat" +1,3,6936,"tess",1,1,60,2,60,75,"New York Times","Republican" +1,3,6938,"tess",2,0,13,3,87,87,"New York Times","Democrat" +1,3,6951,"tess",4,1,75,2,75,50,"New York Times","Democrat" +1,3,6963,"tess",2,1,53,2,53,63,"New York Times","Democrat" +1,3,6971,"tess",3,1,100,2,100,99,"New York Times","Republican" +1,3,6984,"tess",1,1,49,2,49,50,"New York Times","Republican" +1,3,6998,"tess",2,1,81,3,81,80,"New York Times","Republican" +1,3,7011,"tess",2,0,99,2,1,70,"New York Times","Democrat" +1,3,7022,"tess",1,1,53,3,53,100,"New York Times","Democrat" +1,3,7023,"tess",1,1,100,3,100,99,"New York Times","Democrat" +1,3,7027,"tess",2,0,86,2,14,8,"New York Times","Republican" +1,3,7036,"tess",1,0,94,3,6,17,"New York Times","Republican" +1,3,7046,"tess",1,1,70,3,70,60,"New York Times","Democrat" +1,3,7048,"tess",3,0,97,2,3,100,"New York Times","Democrat" +1,3,7054,"tess",1,0,2,3,98,90,"New York Times","Democrat" +1,3,7055,"tess",1,1,99,2,99,30,"New York Times","Republican" +1,3,7060,"tess",1,1,90,2,90,10,"New York Times","Democrat" +1,3,7061,"tess",2,0,78,2,22,50,"New York Times","Democrat" +1,3,7083,"tess",3,1,3,3,3,0,"New York Times","Democrat" +1,3,7087,"tess",1,1,70,2,70,100,"New York Times","Democrat" +1,3,7099,"tess",4,0,90,2,10,7,"New York Times","Democrat" +1,3,7122,"tess",2,1,96,2,96,88,"New York Times","Democrat" +1,3,7125,"tess",1,0,81,3,19,0,"New York Times","Republican" +1,3,7128,"tess",3,0,87,2,13,59,"New York Times","Republican" +1,3,7133,"tess",1,1,91,2,91,80,"New York Times","Democrat" +1,3,7140,"tess",1,0,69,3,31,18,"New York Times","Republican" +1,3,7158,"tess",2,1,95,3,95,90,"New York Times","Democrat" +1,3,7164,"tess",3,0,86,3,14,16,"New York Times","Neither" +1,3,7174,"tess",3,0,22,3,78,64,"New York Times","Democrat" +1,3,7182,"tess",4,1,99,2,99,1,"New York Times","Democrat" +1,3,7218,"tess",4,0,58,2,42,24,"New York Times","Democrat" +1,3,7222,"tess",1,1,95,3,95,100,"New York Times","Democrat" +1,3,7231,"tess",4,1,100,2,100,99,"New York Times","Democrat" +1,3,7240,"tess",3,1,100,3,100,100,"New York Times","Democrat" +1,3,7253,"tess",3,0,80,2,20,73,"New York Times","Neither" +1,3,7266,"tess",3,0,99,3,1,20,"New York Times","Republican" +1,3,7286,"tess",1,1,25,2,25,25,"New York Times","Republican" +1,3,7297,"tess",3,1,100,2,100,100,"New York Times","Democrat" +1,3,7307,"tess",4,1,97,2,97,97,"New York Times","Democrat" +1,3,7315,"tess",1,0,50,2,50,49,"New York Times","Neither" +1,3,7325,"tess",3,0,10,3,90,10,"New York Times","Republican" +1,3,7330,"tess",3,1,94,2,94,89,"New York Times","Democrat" +1,3,7338,"tess",1,1,97,2,97,1,"New York Times","Democrat" +1,3,7341,"tess",1,1,50,3,50,49,"New York Times","Democrat" +1,3,7353,"tess",4,0,57,2,43,7,"New York Times","Democrat" +1,3,7356,"tess",3,0,59,2,41,42,"New York Times","Democrat" +1,3,7360,"tess",4,1,90,2,90,90,"New York Times","Democrat" +1,3,7368,"tess",3,0,26,2,74,39,"New York Times","Democrat" +1,3,7370,"tess",4,1,70,2,70,33,"New York Times","Republican" +1,3,7381,"tess",3,1,98,3,98,99,"New York Times","Republican" +1,3,7388,"tess",4,1,80,2,80,80,"New York Times","Democrat" +1,3,7404,"tess",3,0,90,2,10,7,"New York Times","Democrat" +1,3,7407,"tess",1,0,80,3,20,60,"New York Times","Republican" +1,3,7409,"tess",3,0,10,3,90,77,"New York Times","Democrat" +1,3,7427,"tess",1,0,96,3,4,10,"New York Times","Democrat" +1,3,7432,"tess",4,0,50,2,50,50,"New York Times","Democrat" +1,3,7437,"tess",2,0,86,3,14,50,"New York Times","Democrat" +1,3,7452,"tess",1,1,63,2,63,50,"New York Times","Democrat" +1,3,7453,"tess",2,0,50,3,50,19,"New York Times","Republican" +1,3,7470,"tess",3,0,93,2,7,8,"New York Times","Republican" +1,3,7472,"tess",1,0,99,3,1,1,"New York Times","Republican" +1,3,7477,"tess",2,0,10,3,90,70,"New York Times","Republican" +1,3,7486,"tess",2,1,90,2,90,55,"New York Times","Democrat" +1,3,7494,"tess",3,1,65,2,65,50,"New York Times","Republican" +1,3,7497,"tess",2,0,28,2,72,80,"New York Times","Democrat" +1,3,7501,"tess",4,0,42,2,58,46,"New York Times","Republican" +1,3,7528,"tess",1,1,94,3,94,88,"New York Times","Republican" +1,3,7539,"tess",4,1,50,2,50,9,"New York Times","Republican" +1,3,7542,"tess",1,1,4,3,4,99,"New York Times","Republican" +1,3,7543,"tess",1,1,97,2,97,85,"New York Times","Republican" +1,3,7558,"tess",1,1,50,3,50,99,"New York Times","Democrat" +1,3,7564,"tess",2,1,58,3,58,55,"New York Times","Democrat" +1,3,7573,"tess",3,1,91,3,91,90,"New York Times","Democrat" +1,3,7580,"tess",1,0,83,2,17,4,"New York Times","Republican" +1,3,7584,"tess",2,1,98,3,98,100,"New York Times","Republican" +1,3,7586,"tess",3,0,92,2,8,89,"New York Times","Democrat" +1,3,7594,"tess",1,1,90,2,90,70,"New York Times","Democrat" +1,3,7597,"tess",2,1,91,3,91,90,"New York Times","Democrat" +1,3,7600,"tess",4,1,88,2,88,61,"New York Times","Republican" +1,3,7608,"tess",1,0,65,3,35,55,"New York Times","Republican" +1,3,7662,"tess",3,0,75,2,25,0,"New York Times","Democrat" +1,3,7667,"tess",2,0,0,2,100,40,"New York Times","Democrat" +1,3,7688,"tess",1,1,38,3,38,50,"New York Times","Democrat" +1,3,7696,"tess",2,0,0,3,100,91,"New York Times","Democrat" +1,3,7711,"tess",1,1,8,3,8,5,"New York Times","Republican" +1,3,7712,"tess",4,1,91,2,91,90,"New York Times","Democrat" +1,3,7722,"tess",3,1,51,2,51,10,"New York Times","Republican" +1,3,7741,"tess",2,0,99,2,1,50,"New York Times","Republican" +1,3,7789,"tess",2,0,100,3,0,0,"New York Times","Republican" +1,3,7792,"tess",2,1,80,2,80,81,"New York Times","Neither" +1,3,7820,"tess",2,0,70,2,30,98,"New York Times","Republican" +1,3,7822,"tess",1,0,60,3,40,50,"New York Times","Democrat" +1,3,7837,"tess",1,0,48,3,52,23,"New York Times","Democrat" +1,3,7844,"tess",3,1,80,2,80,84,"New York Times","Republican" +1,3,7856,"tess",1,0,40,3,60,60,"New York Times","Republican" +1,3,7864,"tess",3,1,67,2,67,56,"New York Times","Republican" +1,3,7910,"tess",3,1,30,3,30,16,"New York Times","Democrat" +1,3,7918,"tess",1,0,75,2,25,25,"New York Times","Democrat" +1,3,7942,"tess",1,1,77,2,77,60,"New York Times","Republican" +1,3,7946,"tess",3,0,50,2,50,51,"New York Times","Democrat" +1,3,7951,"tess",2,0,10,2,90,50,"New York Times","Republican" +1,3,7965,"tess",4,0,80,2,20,35,"New York Times","Democrat" +1,3,7968,"tess",1,1,90,2,90,75,"New York Times","Democrat" +1,3,7973,"tess",3,0,60,3,40,78,"New York Times","Republican" +1,3,7982,"tess",3,0,85,3,15,25,"New York Times","Democrat" +1,3,7987,"tess",4,0,4,2,96,36,"New York Times","Democrat" +1,3,7998,"tess",3,0,76,2,24,35,"New York Times","Democrat" +1,3,8001,"tess",3,0,15,3,85,86,"New York Times","Republican" +1,3,8010,"tess",3,1,90,3,90,76,"New York Times","Republican" +1,3,8019,"tess",1,0,54,2,46,9,"New York Times","Republican" +1,3,8041,"tess",2,0,61,2,39,39,"New York Times","Republican" +1,3,8042,"tess",3,0,25,2,75,45,"New York Times","Republican" +1,3,8055,"tess",4,0,10,2,90,10,"New York Times","Democrat" +1,3,8064,"tess",3,0,83,2,17,97,"New York Times","Democrat" +1,3,8065,"tess",2,1,84,2,84,28,"New York Times","Democrat" +1,3,8069,"tess",4,0,80,2,20,32,"New York Times","Democrat" +1,3,8078,"tess",1,1,61,3,61,50,"New York Times","Republican" +1,3,8081,"tess",3,1,99,3,99,96,"New York Times","Democrat" +1,3,8095,"tess",3,1,100,2,100,100,"New York Times","Democrat" +1,3,8096,"tess",4,1,98,2,98,99,"New York Times","Republican" +1,3,8097,"tess",2,0,70,3,30,70,"New York Times","Republican" +1,3,8101,"tess",1,1,99,2,99,83,"New York Times","Republican" +1,3,8110,"tess",1,1,51,2,51,46,"New York Times","Democrat" +1,3,8116,"tess",1,0,83,3,17,17,"New York Times","Democrat" +1,3,8127,"tess",1,1,33,2,33,25,"New York Times","Republican" +1,3,8134,"tess",1,1,6,2,6,93,"New York Times","Democrat" +1,3,8142,"tess",2,1,30,2,30,90,"New York Times","Democrat" +1,3,8146,"tess",2,0,100,3,0,99,"New York Times","Republican" +1,3,8160,"tess",1,0,10,2,90,5,"New York Times","Democrat" +1,3,8176,"tess",1,1,NA,2,NA,95,"New York Times","Democrat" +1,3,8181,"tess",3,0,0,3,100,50,"New York Times","Republican" +1,3,8190,"tess",2,0,59,3,41,49,"New York Times","Democrat" +1,3,8197,"tess",3,0,99,3,1,90,"New York Times","Republican" +1,3,8199,"tess",1,0,50,2,50,50,"New York Times","Democrat" +1,3,8201,"tess",1,0,51,3,49,50,"New York Times","Democrat" +1,3,8218,"tess",1,0,50,3,50,30,"New York Times","Democrat" +1,3,8221,"tess",1,0,53,2,47,20,"New York Times","Democrat" +1,3,8232,"tess",4,0,100,2,0,21,"New York Times","Democrat" +1,3,8247,"tess",2,1,81,3,81,40,"New York Times","Republican" +1,3,8249,"tess",2,0,0,2,100,50,"New York Times","Democrat" +1,3,8250,"tess",3,0,100,3,0,10,"New York Times","Democrat" +1,3,8252,"tess",1,0,50,3,50,15,"New York Times","Democrat" +1,3,8260,"tess",1,1,100,3,100,77,"New York Times","Neither" +1,3,8274,"tess",3,1,99,2,99,99,"New York Times","Republican" +1,3,8276,"tess",1,0,80,2,20,19,"New York Times","Republican" +1,3,8280,"tess",3,0,86,2,14,41,"New York Times","Democrat" +1,3,8308,"tess",2,0,51,2,49,1,"New York Times","Democrat" +1,3,8324,"tess",3,1,100,3,100,100,"New York Times","Republican" +1,3,8356,"tess",2,0,0,3,100,100,"New York Times","Neither" +1,3,8360,"tess",2,0,97,2,3,45,"New York Times","Democrat" +1,3,8361,"tess",2,0,60,2,40,60,"New York Times","Republican" +1,3,8386,"tess",1,0,11,2,89,38,"New York Times","Republican" +1,3,8405,"tess",4,1,50,2,50,50,"New York Times","Democrat" +1,3,8406,"tess",2,1,90,3,90,90,"New York Times","Democrat" +1,3,8425,"tess",4,0,40,2,60,9,"New York Times","Democrat" +1,3,8432,"tess",2,1,96,2,96,80,"New York Times","Democrat" +1,3,8449,"tess",4,0,74,2,26,10,"New York Times","Democrat" +1,3,8468,"tess",1,0,98,2,2,30,"New York Times","Democrat" +1,3,8507,"tess",1,0,70,3,30,49,"New York Times","Democrat" +1,3,8522,"tess",1,0,80,2,20,30,"New York Times","Democrat" +1,3,8545,"tess",3,1,100,2,100,100,"New York Times","Republican" +1,3,8550,"tess",1,0,19,3,81,100,"New York Times","Democrat" +1,3,8552,"tess",1,1,2,3,2,20,"New York Times","Democrat" +1,3,8556,"tess",3,1,58,2,58,57,"New York Times","Democrat" +1,3,8564,"tess",1,0,97,3,3,0,"New York Times","Republican" +1,3,8568,"tess",4,0,83,2,17,22,"New York Times","Democrat" +1,3,8573,"tess",3,0,51,3,49,40,"New York Times","Democrat" +1,3,8600,"tess",1,1,80,3,80,80,"New York Times","Democrat" +1,3,8608,"tess",3,1,90,2,90,97,"New York Times","Republican" +1,3,8618,"tess",3,1,99,3,99,95,"New York Times","Republican" +1,3,8685,"tess",2,1,99,3,99,74,"New York Times","Democrat" +1,3,8686,"tess",2,0,38,2,62,84,"New York Times","Republican" +1,3,8707,"tess",2,1,92,2,92,98,"New York Times","Republican" +1,3,8709,"tess",1,1,64,3,64,44,"New York Times","Republican" +1,3,8710,"tess",2,1,99,3,99,80,"New York Times","Democrat" +1,3,8713,"tess",1,1,100,3,100,0,"New York Times","Republican" +1,3,8714,"tess",2,1,99,3,99,91,"New York Times","Democrat" +1,3,8717,"tess",2,1,49,2,49,37,"New York Times","Republican" +1,3,8724,"tess",3,1,87,2,87,67,"New York Times","Democrat" +1,3,8739,"tess",2,0,75,3,25,73,"New York Times","Republican" +1,3,8755,"tess",1,0,57,3,43,67,"New York Times","Democrat" +1,3,8782,"tess",2,1,65,3,65,50,"New York Times","Republican" +1,3,8790,"tess",4,0,5,2,95,80,"New York Times","Republican" +1,3,8810,"tess",3,1,90,3,90,90,"New York Times","Democrat" +1,3,8816,"tess",3,1,65,2,65,50,"New York Times","Democrat" +1,3,8819,"tess",3,1,98,2,98,2,"New York Times","Republican" +1,3,8836,"tess",4,1,66,2,66,98,"New York Times","Democrat" +1,3,8837,"tess",1,1,98,3,98,100,"New York Times","Democrat" +1,3,8877,"tess",2,0,50,3,50,67,"New York Times","Republican" +1,3,8888,"tess",3,0,68,3,32,39,"New York Times","Republican" +1,3,8892,"tess",4,1,99,2,99,95,"New York Times","Democrat" +1,3,8894,"tess",4,0,93,2,7,11,"New York Times","Democrat" +1,3,8903,"tess",3,0,85,3,15,20,"New York Times","Republican" +1,3,8934,"tess",4,1,99,2,99,66,"New York Times","Democrat" +1,3,8939,"tess",4,1,80,2,80,50,"New York Times","Democrat" +1,3,8941,"tess",2,0,5,2,95,48,"New York Times","Neither" +1,3,8953,"tess",2,1,23,3,23,57,"New York Times","Republican" +1,3,8956,"tess",3,1,21,3,21,50,"New York Times","Republican" +1,3,8970,"tess",2,0,100,2,0,89,"New York Times","Republican" +1,3,8983,"tess",2,1,95,2,95,98,"New York Times","Democrat" +1,3,8988,"tess",2,1,70,2,70,70,"New York Times","Republican" +1,3,8999,"tess",2,1,11,3,11,18,"New York Times","Democrat" +1,3,9007,"tess",4,0,69,2,31,90,"New York Times","Democrat" +1,3,9018,"tess",4,1,98,2,98,0,"New York Times","Democrat" +1,3,9024,"tess",4,0,90,2,10,3,"New York Times","Democrat" +1,3,9025,"tess",3,0,51,3,49,51,"New York Times","Republican" +1,3,9029,"tess",4,0,90,2,10,10,"New York Times","Neither" +1,3,9050,"tess",4,1,90,2,90,91,"New York Times","Republican" +1,3,9065,"tess",3,0,68,3,32,42,"New York Times","Neither" +1,3,9066,"tess",3,0,50,2,50,50,"New York Times","Republican" +1,3,9070,"tess",3,1,90,2,90,3,"New York Times","Democrat" +1,3,9081,"tess",2,1,70,3,70,40,"New York Times","Republican" +1,3,9083,"tess",3,0,4,3,96,91,"New York Times","Neither" +1,3,9084,"tess",1,0,20,3,80,70,"New York Times","Democrat" +1,3,9101,"tess",1,0,50,2,50,87,"New York Times","Democrat" +1,3,9105,"tess",1,1,98,3,98,99,"New York Times","Democrat" +1,3,9108,"tess",3,0,90,3,10,24,"New York Times","Democrat" +1,3,9119,"tess",1,1,82,3,82,82,"New York Times","Democrat" +1,3,9120,"tess",4,0,89,2,11,25,"New York Times","Democrat" +1,3,9149,"tess",2,0,60,2,40,30,"New York Times","Democrat" +1,3,9152,"tess",1,1,94,2,94,100,"New York Times","Democrat" +1,3,9155,"tess",3,1,86,2,86,0,"New York Times","Democrat" +1,3,9166,"tess",3,1,50,3,50,20,"New York Times","Republican" +1,3,9169,"tess",2,0,6,2,94,80,"New York Times","Republican" +1,3,9189,"tess",3,0,5,3,95,90,"New York Times","Republican" +1,3,9211,"tess",2,0,0,2,100,100,"New York Times","Republican" +1,3,9236,"tess",3,0,64,2,36,1,"New York Times","Republican" +1,3,9245,"tess",2,1,91,3,91,90,"New York Times","Republican" +1,3,9260,"tess",3,1,11,3,11,80,"New York Times","Republican" +1,3,9267,"tess",2,0,67,2,33,32,"New York Times","Democrat" +1,3,9269,"tess",1,1,85,2,85,75,"New York Times","Democrat" +1,3,9279,"tess",4,1,80,2,80,30,"New York Times","Democrat" +1,3,9292,"tess",4,1,80,2,80,80,"New York Times","Republican" +1,3,9295,"tess",1,0,95,2,5,10,"New York Times","Republican" +1,3,9301,"tess",2,0,80,3,20,45,"New York Times","Democrat" +1,3,9314,"tess",1,1,21,2,21,30,"New York Times","Republican" +1,3,9316,"tess",3,0,23,2,77,49,"New York Times","Republican" +1,3,9332,"tess",2,0,10,3,90,90,"New York Times","Democrat" +1,3,9337,"tess",3,1,80,3,80,90,"New York Times","Republican" +1,3,9352,"tess",2,0,48,2,52,40,"New York Times","Democrat" +1,3,9366,"tess",1,1,70,2,70,40,"New York Times","Republican" +1,3,9395,"tess",3,1,98,2,98,98,"New York Times","Democrat" +1,3,9440,"tess",3,0,70,2,30,90,"New York Times","Republican" +1,3,9458,"tess",2,1,80,3,80,79,"New York Times","Republican" +1,3,9471,"tess",3,0,71,2,29,80,"New York Times","Democrat" +1,3,9475,"tess",3,1,70,2,70,80,"New York Times","Republican" +1,3,9499,"tess",3,0,54,3,46,53,"New York Times","Democrat" +1,3,9510,"tess",4,0,10,2,90,50,"New York Times","Democrat" +1,3,9517,"tess",1,0,99,2,1,100,"New York Times","Neither" +1,3,9532,"tess",2,1,99,2,99,90,"New York Times","Republican" +1,3,9551,"tess",4,0,100,2,0,0,"New York Times","Democrat" +1,3,9563,"tess",1,1,97,3,97,93,"New York Times","Republican" +1,3,9572,"tess",1,0,10,2,90,30,"New York Times","Republican" +1,3,9585,"tess",2,0,26,3,74,19,"New York Times","Democrat" +1,3,9608,"tess",4,1,99,2,99,99,"New York Times","Democrat" +1,3,9626,"tess",4,0,80,2,20,25,"New York Times","Democrat" +1,3,9642,"tess",2,1,70,3,70,71,"New York Times","Republican" +1,3,9645,"tess",2,1,61,2,61,47,"New York Times","Democrat" +1,3,9647,"tess",3,0,22,3,78,81,"New York Times","Republican" +1,3,9648,"tess",1,0,5,3,95,99,"New York Times","Democrat" +1,3,9663,"tess",4,0,88,2,12,16,"New York Times","Democrat" +1,3,9666,"tess",1,1,93,2,93,76,"New York Times","Republican" +1,3,9671,"tess",4,1,85,2,85,50,"New York Times","Democrat" +1,3,9679,"tess",1,1,51,2,51,98,"New York Times","Republican" +1,3,9686,"tess",1,0,54,3,46,75,"New York Times","Democrat" +1,3,9689,"tess",4,0,11,2,89,50,"New York Times","Democrat" +1,3,9711,"tess",3,0,50,3,50,79,"New York Times","Neither" +1,3,9729,"tess",1,1,100,3,100,100,"New York Times","Republican" +1,3,9743,"turk",3,0,60,2,40,50,"New York Times","Democrat" +1,3,9744,"turk",2,0,1,3,99,99,"New York Times","Democrat" +1,3,9747,"turk",3,0,20,2,80,20,"New York Times","Neither" +1,3,9762,"turk",3,0,5,5,95,90,"New York Times","Neither" +1,3,9763,"turk",2,0,95,4,5,15,"New York Times","Neither" +1,3,9764,"turk",3,0,70,2,30,30,"New York Times","Democrat" +1,3,9766,"turk",4,0,45,3,55,70,"New York Times","Democrat" +1,3,9767,"turk",4,0,40,5,60,39,"New York Times","Neither" +1,3,9769,"turk",2,0,40,4,60,40,"New York Times","Democrat" +1,3,9772,"turk",2,0,25,3,75,70,"New York Times","Democrat" +1,3,9775,"turk",2,0,50,2,50,85,"New York Times","Neither" +1,3,9777,"turk",4,0,25,3,75,75,"New York Times","Democrat" +1,3,9780,"turk",2,0,0,2,100,100,"New York Times","Republican" +1,3,9781,"turk",3,0,20,3,80,50,"New York Times","Neither" +1,3,9785,"turk",4,0,50,2,50,10,"New York Times","Democrat" +1,3,9786,"turk",4,0,20,2,80,60,"New York Times","Democrat" +1,3,9787,"turk",2,0,1,3,99,99,"New York Times","Democrat" +1,3,9791,"turk",3,0,2,4,98,98,"New York Times","Democrat" +1,3,9792,"turk",4,0,60,5,40,45,"New York Times","Republican" +1,3,9795,"turk",3,0,85,5,15,20,"New York Times","Republican" +1,3,9798,"turk",2,0,40,3,60,35,"New York Times","Democrat" +1,3,9802,"turk",2,0,70,5,30,30,"New York Times","Democrat" +1,3,9803,"turk",2,0,99,3,1,1,"New York Times","Democrat" +1,3,9807,"turk",2,0,60,2,40,50,"New York Times","Republican" +1,3,9808,"turk",3,0,10,5,90,90,"New York Times","Neither" +1,3,9810,"turk",2,0,1,2,99,1,"New York Times","Democrat" +1,3,9815,"turk",3,0,50,3,50,50,"New York Times","Democrat" +1,3,9817,"turk",2,0,1,3,99,99,"New York Times","Republican" +1,3,9821,"turk",3,0,30,4,70,50,"New York Times","Democrat" +1,3,9823,"turk",4,0,1,5,99,99,"New York Times","Neither" +1,3,9826,"turk",4,0,1,3,99,99,"New York Times","Republican" +1,3,9827,"turk",4,0,1,4,99,99,"New York Times","Republican" +1,3,9836,"turk",3,0,99,4,1,20,"New York Times","Democrat" +1,3,9839,"turk",4,0,1,3,99,99,"New York Times","Democrat" +1,3,9842,"turk",3,0,20,4,80,80,"New York Times","Democrat" +1,3,9843,"turk",2,0,99,4,1,1,"New York Times","Neither" +1,3,9847,"turk",4,0,99,5,1,1,"New York Times","Republican" +1,3,9849,"turk",2,0,99,2,1,50,"New York Times","Republican" +1,3,9852,"turk",2,0,75,2,25,25,"New York Times","Democrat" +1,3,9855,"turk",2,0,1,2,99,99,"New York Times","Neither" +1,3,9861,"turk",2,0,99,3,1,99,"New York Times","Neither" +1,3,9867,"turk",2,0,1,4,99,99,"New York Times","Democrat" +1,3,9870,"turk",3,0,50,2,50,25,"New York Times","Democrat" +1,3,9872,"turk",3,0,0,5,100,100,"New York Times","Republican" +1,3,9874,"turk",2,0,25,3,75,75,"New York Times","Democrat" +1,3,9875,"turk",4,0,40,2,60,50,"New York Times","Democrat" +1,3,9878,"turk",4,0,5,5,95,95,"New York Times","Republican" +1,3,9881,"turk",3,0,1,5,99,99,"New York Times","Democrat" +1,3,9884,"turk",4,0,20,2,80,50,"New York Times","Republican" +1,3,9885,"turk",4,0,80,5,20,20,"New York Times","Democrat" +1,3,9887,"turk",4,0,1,4,99,99,"New York Times","Republican" +1,3,9889,"turk",2,0,2,4,98,98,"New York Times","Neither" +1,3,9891,"turk",3,0,30,4,70,70,"New York Times","Democrat" +1,3,9892,"turk",2,0,49,4,51,50,"New York Times","Democrat" +1,3,9896,"turk",3,0,1,3,99,60,"New York Times","Neither" +1,3,9897,"turk",3,0,1,4,99,90,"New York Times","Democrat" +1,3,9900,"turk",2,0,11,2,89,1,"New York Times","Democrat" +1,3,9902,"turk",4,0,20,2,80,20,"New York Times","Democrat" +1,3,9905,"turk",3,0,99,2,1,99,"New York Times","Republican" +1,3,9910,"turk",2,0,1,3,99,99,"New York Times","Democrat" +1,3,9914,"turk",3,0,1,4,99,99,"New York Times","Republican" +1,3,9917,"turk",3,0,50,2,50,60,"New York Times","Neither" +1,3,9918,"turk",2,0,25,2,75,25,"New York Times","Democrat" +1,3,9920,"turk",3,0,0,5,100,100,"New York Times","Republican" +1,3,9921,"turk",3,0,1,5,99,99,"New York Times","Democrat" +1,3,9922,"turk",4,0,50,2,50,50,"New York Times","Democrat" +1,3,9923,"turk",4,0,99,2,1,1,"New York Times","Neither" +1,3,9925,"turk",3,0,33,5,67,67,"New York Times","Democrat" +1,3,9927,"turk",3,0,50,4,50,99,"New York Times","Republican" +1,3,9928,"turk",2,0,10,3,90,80,"New York Times","Democrat" +1,3,9931,"turk",2,0,1,5,99,99,"New York Times","Neither" +1,3,9935,"turk",4,0,5,5,95,95,"New York Times","Neither" +1,3,9937,"turk",3,0,1,2,99,99,"New York Times","Democrat" +1,3,9938,"turk",2,0,1,5,99,99,"New York Times","Democrat" +1,3,9939,"turk",2,0,0,5,100,1,"New York Times","Republican" +1,3,9940,"turk",2,0,20,3,80,75,"New York Times","Democrat" +1,3,9941,"turk",2,0,5,5,95,95,"New York Times","Republican" +1,3,9942,"turk",3,0,1,5,99,99,"New York Times","Democrat" +1,3,9946,"turk",3,0,1,5,99,90,"New York Times","Democrat" +1,3,9947,"turk",4,0,1,4,99,99,"New York Times","Democrat" +1,3,9948,"turk",2,0,1,3,99,99,"New York Times","Republican" +1,3,9953,"turk",4,0,1,3,99,50,"New York Times","Neither" +1,3,9956,"turk",4,0,1,5,99,99,"New York Times","Democrat" +1,3,9958,"turk",4,0,15,5,85,85,"New York Times","Republican" +1,3,9960,"turk",2,0,2,2,98,99,"New York Times","Democrat" +1,3,9964,"turk",3,0,35,3,65,55,"New York Times","Democrat" +1,3,9965,"turk",4,0,1,4,99,90,"New York Times","Democrat" +1,3,9966,"turk",2,0,1,5,99,99,"New York Times","Democrat" +1,3,9967,"turk",2,0,1,5,99,99,"New York Times","Neither" +1,3,9968,"turk",4,0,99,3,1,1,"New York Times","Democrat" +1,3,9970,"turk",2,0,0,3,100,100,"New York Times","Republican" +1,3,9971,"turk",3,0,3,5,97,95,"New York Times","Democrat" +1,3,9976,"turk",2,0,1,2,99,25,"New York Times","Republican" +1,3,9982,"turk",3,0,10,4,90,80,"New York Times","Republican" +1,3,9983,"turk",4,0,50,3,50,1,"New York Times","Democrat" +1,3,9986,"turk",3,0,20,4,80,20,"New York Times","Democrat" +1,3,9988,"turk",3,0,1,2,99,1,"New York Times","Democrat" +1,3,9990,"turk",3,0,39,5,61,45,"New York Times","Democrat" +1,3,9991,"turk",2,0,30,4,70,40,"New York Times","Neither" +1,3,9999,"turk",2,0,1,4,99,95,"New York Times","Democrat" +1,3,10001,"turk",4,0,99,2,1,1,"New York Times","Democrat" +1,3,10002,"turk",3,0,10,5,90,85,"New York Times","Democrat" +1,3,10007,"turk",3,0,10,3,90,90,"New York Times","Republican" +1,3,10017,"turk",3,0,2,3,98,99,"New York Times","Democrat" +1,3,10018,"turk",4,0,0,5,100,100,"New York Times","Republican" +1,3,10020,"turk",3,0,10,4,90,75,"New York Times","Democrat" +1,3,10024,"turk",2,0,60,3,40,40,"New York Times","Republican" +1,3,10028,"turk",4,0,75,4,25,25,"New York Times","Republican" +1,3,10030,"turk",3,0,30,4,70,70,"New York Times","Democrat" +1,3,10032,"turk",4,0,99,3,1,1,"New York Times","Democrat" +1,3,10033,"turk",2,0,100,2,0,100,"New York Times","Neither" +1,3,10036,"turk",3,0,40,2,60,40,"New York Times","Republican" +1,3,10037,"turk",2,0,1,5,99,99,"New York Times","Democrat" +1,3,10038,"turk",2,0,1,5,99,1,"New York Times","Democrat" +1,3,10041,"turk",4,0,1,4,99,50,"New York Times","Republican" +1,3,10042,"turk",4,0,10,2,90,70,"New York Times","Democrat" +1,3,10043,"turk",4,0,30,2,70,35,"New York Times","Democrat" +1,3,10044,"turk",2,0,65,4,35,35,"New York Times","Republican" +1,3,10047,"turk",2,0,50,3,50,80,"New York Times","Democrat" +1,3,10049,"turk",2,0,80,4,20,20,"New York Times","Democrat" +1,3,10052,"turk",4,0,1,4,99,50,"New York Times","Democrat" +1,3,10056,"turk",4,0,95,5,5,5,"New York Times","Republican" +1,3,10058,"turk",3,0,50,3,50,50,"New York Times","Republican" +1,3,10059,"turk",4,0,1,3,99,75,"New York Times","Democrat" +1,3,10062,"turk",2,0,99,2,1,1,"New York Times","Democrat" +1,3,10065,"turk",4,0,80,5,20,20,"New York Times","Democrat" +1,3,10066,"turk",3,0,10,2,90,50,"New York Times","Democrat" +1,3,10069,"turk",2,0,10,4,90,67,"New York Times","Republican" +1,3,10073,"turk",3,0,60,2,40,50,"New York Times","Neither" +1,3,10076,"turk",2,0,1,5,99,99,"New York Times","Neither" +1,3,10077,"turk",2,0,35,2,65,50,"New York Times","Democrat" +1,3,10078,"turk",3,0,50,5,50,50,"New York Times","Republican" +1,3,10080,"turk",3,0,65,5,35,15,"New York Times","Republican" +1,3,10081,"turk",4,0,1,2,99,100,"New York Times","Democrat" +1,3,10085,"turk",4,0,1,4,99,95,"New York Times","Neither" +1,3,10090,"turk",4,0,60,4,40,40,"New York Times","Democrat" +1,3,10092,"turk",4,0,1,3,99,50,"New York Times","Neither" +1,3,10093,"turk",4,0,1,5,99,99,"New York Times","Democrat" +1,3,10094,"turk",2,0,99,3,1,1,"New York Times","Democrat" +1,3,10095,"turk",4,0,1,5,99,99,"New York Times","Democrat" +1,3,10096,"turk",2,0,99,2,1,1,"New York Times","Democrat" +1,3,10097,"turk",2,0,1,2,99,75,"New York Times","Democrat" +1,3,10101,"turk",3,0,10,3,90,75,"New York Times","Democrat" +1,3,10107,"turk",4,0,15,3,85,85,"New York Times","Democrat" +1,3,10108,"turk",2,0,1,4,99,99,"New York Times","Democrat" +1,3,10111,"turk",3,0,1,2,99,75,"New York Times","Neither" +1,3,10116,"turk",3,0,100,2,0,0,"New York Times","Democrat" +1,3,10118,"turk",2,0,20,5,80,78,"New York Times","Democrat" +1,3,10120,"turk",4,0,81,2,19,19,"New York Times","Republican" +1,3,10121,"turk",2,0,20,4,80,80,"New York Times","Neither" +1,3,10126,"turk",4,0,60,4,40,60,"New York Times","Republican" +1,3,10131,"turk",3,0,1,3,99,50,"New York Times","Republican" +1,3,10133,"turk",4,0,20,3,80,75,"New York Times","Democrat" +1,3,10135,"turk",3,0,5,5,95,95,"New York Times","Democrat" +1,3,10136,"turk",2,0,1,4,99,99,"New York Times","Democrat" +1,3,10138,"turk",4,0,5,4,95,85,"New York Times","Democrat" +1,3,10140,"turk",3,0,40,3,60,60,"New York Times","Democrat" +1,3,10145,"turk",4,0,20,2,80,1,"New York Times","Democrat" +1,3,10147,"turk",3,0,15,4,85,68,"New York Times","Democrat" +1,3,10149,"turk",4,0,1,4,99,99,"New York Times","Republican" +1,3,10150,"turk",3,0,60,2,40,50,"New York Times","Democrat" +1,3,10152,"turk",2,0,50,3,50,50,"New York Times","Neither" +1,3,10153,"turk",2,0,1,2,99,99,"New York Times","Republican" +1,3,10155,"turk",2,0,99,2,1,99,"New York Times","Republican" +1,3,10160,"turk",3,0,99,5,1,1,"New York Times","Democrat" +1,3,10162,"turk",3,0,10,3,90,70,"New York Times","Democrat" +1,3,10163,"turk",3,0,99,4,1,1,"New York Times","Democrat" +1,3,10166,"turk",4,0,80,5,20,25,"New York Times","Democrat" +1,3,10167,"turk",3,0,40,5,60,36,"New York Times","Democrat" +1,3,10169,"turk",2,0,10,3,90,80,"New York Times","Republican" +1,3,10174,"turk",3,0,0,3,100,100,"New York Times","Democrat" +1,3,10175,"turk",3,0,1,2,99,40,"New York Times","Neither" +1,3,10178,"turk",4,0,1,3,99,99,"New York Times","Democrat" +1,3,10179,"turk",4,0,1,4,99,99,"New York Times","Republican" +1,3,10182,"turk",2,0,30,3,70,60,"New York Times","Democrat" +1,3,10184,"turk",2,0,50,2,50,50,"New York Times","Republican" +1,3,10186,"turk",2,0,6,3,94,75,"New York Times","Democrat" +1,3,10188,"turk",2,0,30,3,70,70,"New York Times","Democrat" +1,3,10194,"turk",3,0,1,5,99,99,"New York Times","Democrat" +1,3,10197,"turk",2,0,20,5,80,80,"New York Times","Democrat" +1,3,10202,"turk",3,0,1,4,99,1,"New York Times","Neither" +1,3,10203,"turk",2,0,40,5,60,45,"New York Times","Republican" +1,3,10204,"turk",4,0,99,4,1,50,"New York Times","Democrat" +1,3,10209,"turk",3,0,1,3,99,99,"New York Times","Democrat" +1,3,10210,"turk",4,0,1,5,99,80,"New York Times","Republican" +1,3,10211,"turk",3,0,10,2,90,50,"New York Times","Democrat" +1,3,10215,"turk",4,0,100,2,0,0,"New York Times","Democrat" +1,3,10223,"turk",3,0,1,3,99,50,"New York Times","Democrat" +1,3,10224,"turk",4,0,100,2,0,99,"New York Times","Democrat" +1,3,10227,"turk",3,0,50,5,50,50,"New York Times","Republican" +1,3,10228,"turk",2,0,50,4,50,50,"New York Times","Neither" +1,3,10235,"turk",4,0,1,4,99,99,"New York Times","Republican" +1,3,10242,"turk",4,0,99,5,1,1,"New York Times","Republican" +1,3,10245,"turk",3,0,50,4,50,1,"New York Times","Neither" +1,3,10248,"turk",2,0,5,4,95,95,"New York Times","Democrat" +1,3,10252,"turk",3,0,2,4,98,80,"New York Times","Republican" +1,3,10256,"turk",2,0,99,3,1,1,"New York Times","Neither" +1,3,10262,"turk",3,0,20,4,80,80,"New York Times","Democrat" +1,3,10271,"turk",2,0,96,4,4,4,"New York Times","Republican" +1,3,10274,"turk",4,0,1,3,99,1,"New York Times","Republican" +1,3,10275,"turk",2,0,1,3,99,99,"New York Times","Democrat" +1,3,10276,"turk",3,0,1,3,99,99,"New York Times","Neither" +1,3,10277,"turk",4,0,1,4,99,99,"New York Times","Democrat" +1,3,10279,"turk",4,0,10,4,90,80,"New York Times","Democrat" +1,3,10281,"turk",4,0,30,5,70,55,"New York Times","Democrat" +1,3,10284,"turk",3,0,99,2,1,99,"New York Times","Democrat" +1,3,10285,"turk",4,0,1,3,99,99,"New York Times","Republican" +1,3,10289,"turk",3,0,1,4,99,99,"New York Times","Republican" +1,3,10290,"turk",4,0,40,3,60,1,"New York Times","Neither" +1,3,10292,"turk",3,0,1,5,99,99,"New York Times","Democrat" +1,3,10295,"turk",4,0,5,3,95,85,"New York Times","Democrat" +1,3,10297,"turk",2,0,1,2,99,23,"New York Times","Democrat" +1,3,10307,"turk",3,0,15,2,85,75,"New York Times","Republican" +1,3,10308,"turk",3,0,1,4,99,99,"New York Times","Democrat" +1,3,10315,"turk",3,0,80,3,20,20,"New York Times","Republican" +1,3,10317,"turk",4,0,5,5,95,95,"New York Times","Democrat" +1,3,10318,"turk",3,0,1,5,99,99,"New York Times","Democrat" +1,3,10319,"turk",3,0,99,3,1,1,"New York Times","Neither" +1,3,10320,"turk",4,0,1,4,99,99,"New York Times","Republican" +1,3,10329,"turk",3,0,99,5,1,40,"New York Times","Republican" +1,3,10331,"turk",3,0,1,5,99,95,"New York Times","Democrat" +1,3,10332,"turk",2,0,40,3,60,50,"New York Times","Democrat" +1,3,10342,"turk",2,0,5,5,95,95,"New York Times","Democrat" +1,3,10346,"turk",3,0,1,2,99,80,"New York Times","Democrat" +1,3,10350,"turk",3,0,1,4,99,99,"New York Times","Democrat" +1,3,10354,"turk",4,0,75,4,25,25,"New York Times","Neither" +1,3,10355,"turk",4,0,10,4,90,70,"New York Times","Neither" +1,3,10359,"turk",2,0,1,2,99,50,"New York Times","Republican" +1,3,10360,"turk",4,0,1,3,99,1,"New York Times","Democrat" +1,3,10365,"turk",2,0,50,2,50,50,"New York Times","Republican" +1,3,10367,"turk",4,0,40,2,60,10,"New York Times","Republican" +1,3,10368,"turk",3,0,25,2,75,50,"New York Times","Democrat" +1,3,10369,"turk",4,0,1,2,99,1,"New York Times","Republican" +1,3,10374,"turk",4,0,99,4,1,1,"New York Times","Democrat" +1,3,10376,"turk",2,0,0,2,100,1,"New York Times","Republican" +1,3,10382,"turk",3,0,1,2,99,1,"New York Times","Democrat" +1,3,10385,"turk",2,0,5,4,95,90,"New York Times","Republican" +1,3,10386,"turk",2,0,1,3,99,99,"New York Times","Democrat" +1,3,10387,"turk",3,0,1,2,99,99,"New York Times","Democrat" +1,3,10389,"turk",3,0,99,4,1,90,"New York Times","Neither" +1,3,10391,"turk",2,0,50,4,50,1,"New York Times","Neither" +1,3,10392,"turk",4,0,45,5,55,34,"New York Times","Democrat" +1,3,10394,"turk",4,0,1,3,99,99,"New York Times","Democrat" +1,3,10396,"turk",3,0,55,2,45,55,"New York Times","Republican" +1,3,10398,"turk",4,0,80,4,20,20,"New York Times","Republican" +1,3,10402,"turk",2,0,40,5,60,60,"New York Times","Democrat" +1,3,10404,"turk",2,0,1,3,99,1,"New York Times","Republican" +1,3,10406,"turk",3,0,1,4,99,1,"New York Times","Democrat" +1,3,10408,"turk",2,0,50,3,50,50,"New York Times","Democrat" +1,3,10411,"turk",2,0,5,5,95,90,"New York Times","Republican" +1,3,10413,"turk",3,0,10,4,90,90,"New York Times","Republican" +1,3,10416,"turk",4,0,50,3,50,50,"New York Times","Republican" +1,3,10418,"turk",4,0,20,3,80,66,"New York Times","Democrat" +1,3,10422,"turk",2,0,25,4,75,65,"New York Times","Democrat" +1,3,10423,"turk",3,0,15,3,85,85,"New York Times","Neither" +1,3,10425,"turk",4,0,1,3,99,99,"New York Times","Democrat" +1,3,10427,"turk",3,0,1,3,99,99,"New York Times","Republican" +1,3,10429,"turk",2,0,5,3,95,85,"New York Times","Democrat" +1,3,10433,"turk",2,0,1,2,99,99,"New York Times","Democrat" +1,3,10440,"turk",3,0,54,4,46,77,"New York Times","Democrat" +1,3,10441,"turk",4,0,20,3,80,70,"New York Times","Democrat" +1,3,10442,"turk",2,0,50,4,50,50,"New York Times","Neither" +1,3,10443,"turk",2,0,25,5,75,90,"New York Times","Republican" +1,3,10454,"turk",2,0,1,4,99,99,"New York Times","Democrat" +1,3,10457,"turk",4,0,95,4,5,5,"New York Times","Republican" +1,3,10463,"turk",3,0,50,5,50,75,"New York Times","Republican" +1,3,10464,"turk",4,0,99,5,1,15,"New York Times","Democrat" +1,3,10468,"turk",4,0,30,2,70,40,"New York Times","Democrat" +1,3,10469,"turk",3,0,1,2,99,99,"New York Times","Neither" +1,3,10470,"turk",2,0,50,3,50,1,"New York Times","Democrat" +1,3,10474,"turk",2,0,78,4,22,22,"New York Times","Democrat" +1,3,10475,"turk",2,0,0,4,100,1,"New York Times","Democrat" +1,3,10476,"turk",4,0,1,3,99,95,"New York Times","Neither" +1,3,10479,"turk",4,0,1,4,99,99,"New York Times","Democrat" +1,3,10481,"turk",2,0,20,3,80,70,"New York Times","Neither" +1,3,10483,"turk",3,0,45,3,55,50,"New York Times","Democrat" +1,3,10485,"turk",3,0,10,2,90,80,"New York Times","Democrat" +1,3,10486,"turk",4,0,99,5,1,50,"New York Times","Neither" +1,3,10488,"turk",4,0,30,3,70,70,"New York Times","Republican" +1,3,10489,"turk",4,0,10,5,90,87,"New York Times","Democrat" +1,3,10493,"turk",3,0,99,3,1,99,"New York Times","Democrat" +1,3,10499,"turk",3,0,50,3,50,1,"New York Times","Democrat" +1,3,10500,"turk",2,0,1,4,99,99,"New York Times","Neither" +1,3,10501,"turk",3,0,0,5,100,100,"New York Times","Democrat" +1,3,10503,"turk",4,0,99,2,1,1,"New York Times","Democrat" +1,3,10505,"turk",4,0,10,5,90,90,"New York Times","Republican" +1,3,10508,"turk",2,0,10,4,90,90,"New York Times","Democrat" +1,3,10521,"turk",4,0,1,2,99,50,"New York Times","Democrat" +1,3,10522,"turk",3,0,40,2,60,50,"New York Times","Republican" +1,3,10523,"turk",3,0,50,3,50,1,"New York Times","Democrat" +1,3,10525,"turk",4,0,50,4,50,50,"New York Times","Neither" +1,3,10528,"turk",3,0,1,2,99,50,"New York Times","Neither" +1,3,10529,"turk",3,0,1,5,99,99,"New York Times","Republican" +1,3,10534,"turk",2,0,97,2,3,3,"New York Times","Republican" +1,3,9742,"turk",4,1,100,2,100,30,"New York Times","Neither" +1,3,9745,"turk",3,1,99,4,99,90,"New York Times","Republican" +1,3,9746,"turk",2,1,1,2,1,1,"New York Times","Neither" +1,3,9748,"turk",2,1,40,4,40,30,"New York Times","Democrat" +1,3,9749,"turk",2,1,100,3,100,100,"New York Times","Democrat" +1,3,9750,"turk",3,1,99,4,99,99,"New York Times","Republican" +1,3,9751,"turk",2,1,99,4,99,99,"New York Times","Democrat" +1,3,9753,"turk",3,1,79,3,79,75,"New York Times","Democrat" +1,3,9754,"turk",4,1,95,5,95,95,"New York Times","Republican" +1,3,9757,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,9758,"turk",4,1,100,3,100,100,"New York Times","Neither" +1,3,9759,"turk",2,1,90,3,90,80,"New York Times","Republican" +1,3,9760,"turk",3,1,90,5,90,80,"New York Times","Neither" +1,3,9765,"turk",4,1,99,2,99,99,"New York Times","Neither" +1,3,9770,"turk",3,1,85,3,85,85,"New York Times","Democrat" +1,3,9771,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,9776,"turk",3,1,99,2,99,70,"New York Times","Neither" +1,3,9778,"turk",4,1,87,3,87,78,"New York Times","Neither" +1,3,9779,"turk",3,1,99,3,99,99,"New York Times","Democrat" +1,3,9782,"turk",3,1,90,2,90,80,"New York Times","Republican" +1,3,9784,"turk",2,1,99,4,99,99,"New York Times","Republican" +1,3,9789,"turk",3,1,99,2,99,99,"New York Times","Democrat" +1,3,9790,"turk",3,1,0,2,0,0,"New York Times","Neither" +1,3,9793,"turk",2,1,99,5,99,99,"New York Times","Neither" +1,3,9796,"turk",4,1,99,4,99,5,"New York Times","Democrat" +1,3,9797,"turk",2,1,90,4,90,90,"New York Times","Republican" +1,3,9799,"turk",3,1,99,2,99,1,"New York Times","Democrat" +1,3,9800,"turk",4,1,80,2,80,90,"New York Times","Republican" +1,3,9801,"turk",2,1,99,3,99,95,"New York Times","Neither" +1,3,9811,"turk",2,1,99,4,99,95,"New York Times","Republican" +1,3,9812,"turk",4,1,99,5,99,99,"New York Times","Republican" +1,3,9816,"turk",3,1,0,4,0,99,"New York Times","Democrat" +1,3,9819,"turk",2,1,99,3,99,95,"New York Times","Republican" +1,3,9824,"turk",3,1,1,3,1,1,"New York Times","Democrat" +1,3,9834,"turk",4,1,50,2,50,50,"New York Times","Democrat" +1,3,9838,"turk",3,1,66,4,66,60,"New York Times","Democrat" +1,3,9840,"turk",4,1,50,2,50,50,"New York Times","Democrat" +1,3,9841,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,9845,"turk",4,1,40,4,40,60,"New York Times","Neither" +1,3,9846,"turk",4,1,75,2,75,70,"New York Times","Democrat" +1,3,9848,"turk",4,1,80,4,80,75,"New York Times","Neither" +1,3,9850,"turk",3,1,99,2,99,99,"New York Times","Republican" +1,3,9853,"turk",4,1,99,5,99,85,"New York Times","Neither" +1,3,9854,"turk",4,1,99,4,99,99,"New York Times","Neither" +1,3,9856,"turk",3,1,3,5,3,2,"New York Times","Republican" +1,3,9860,"turk",4,1,99,4,99,99,"New York Times","Republican" +1,3,9862,"turk",3,1,1,4,1,1,"New York Times","Democrat" +1,3,9873,"turk",3,1,90,2,90,50,"New York Times","Democrat" +1,3,9876,"turk",4,1,99,2,99,50,"New York Times","Democrat" +1,3,9877,"turk",4,1,70,3,70,60,"New York Times","Neither" +1,3,9880,"turk",4,1,100,4,100,100,"New York Times","Democrat" +1,3,9882,"turk",2,1,90,2,90,90,"New York Times","Democrat" +1,3,9888,"turk",4,1,1,3,1,1,"New York Times","Republican" +1,3,9893,"turk",2,1,90,5,90,85,"New York Times","Democrat" +1,3,9895,"turk",2,1,99,5,99,99,"New York Times","Neither" +1,3,9901,"turk",4,1,80,3,80,66,"New York Times","Republican" +1,3,9903,"turk",3,1,80,2,80,70,"New York Times","Democrat" +1,3,9904,"turk",2,1,99,5,99,95,"New York Times","Democrat" +1,3,9908,"turk",2,1,85,3,85,75,"New York Times","Democrat" +1,3,9909,"turk",3,1,90,5,90,90,"New York Times","Neither" +1,3,9911,"turk",2,1,2,5,2,7,"New York Times","Democrat" +1,3,9912,"turk",3,1,99,4,99,99,"New York Times","Democrat" +1,3,9915,"turk",3,1,99,3,99,99,"New York Times","Democrat" +1,3,9919,"turk",3,1,99,2,99,99,"New York Times","Democrat" +1,3,9924,"turk",4,1,99,4,99,99,"New York Times","Democrat" +1,3,9926,"turk",4,1,99,3,99,99,"New York Times","Republican" +1,3,9932,"turk",4,1,1,2,1,1,"New York Times","Democrat" +1,3,9934,"turk",4,1,85,5,85,85,"New York Times","Democrat" +1,3,9936,"turk",3,1,99,4,99,90,"New York Times","Republican" +1,3,9943,"turk",3,1,80,2,80,80,"New York Times","Republican" +1,3,9944,"turk",3,1,20,4,20,30,"New York Times","Democrat" +1,3,9945,"turk",2,1,99,2,99,99,"New York Times","Democrat" +1,3,9950,"turk",2,1,70,4,70,75,"New York Times","Democrat" +1,3,9952,"turk",3,1,50,3,50,1,"New York Times","Democrat" +1,3,9954,"turk",4,1,90,2,90,85,"New York Times","Democrat" +1,3,9957,"turk",4,1,1,4,1,50,"New York Times","Republican" +1,3,9962,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,9969,"turk",3,1,1,2,1,1,"New York Times","Democrat" +1,3,9973,"turk",4,1,95,4,95,90,"New York Times","Democrat" +1,3,9974,"turk",2,1,90,5,90,85,"New York Times","Democrat" +1,3,9977,"turk",3,1,100,2,100,100,"New York Times","Neither" +1,3,9979,"turk",4,1,30,4,30,20,"New York Times","Republican" +1,3,9980,"turk",2,1,99,4,99,99,"New York Times","Republican" +1,3,9981,"turk",4,1,100,3,100,90,"New York Times","Democrat" +1,3,9984,"turk",4,1,99,3,99,1,"New York Times","Democrat" +1,3,9985,"turk",3,1,30,2,30,30,"New York Times","Democrat" +1,3,9989,"turk",2,1,30,3,30,40,"New York Times","Democrat" +1,3,9992,"turk",3,1,99,5,99,99,"New York Times","Republican" +1,3,9994,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,9995,"turk",4,1,100,5,100,99,"New York Times","Republican" +1,3,9996,"turk",2,1,60,4,60,60,"New York Times","Democrat" +1,3,9997,"turk",4,1,99,5,99,99,"New York Times","Democrat" +1,3,9998,"turk",4,1,99,2,99,75,"New York Times","Democrat" +1,3,10004,"turk",3,1,99,5,99,99,"New York Times","Democrat" +1,3,10005,"turk",3,1,90,3,90,80,"New York Times","Republican" +1,3,10006,"turk",4,1,40,3,40,60,"New York Times","Democrat" +1,3,10008,"turk",4,1,98,3,98,90,"New York Times","Republican" +1,3,10009,"turk",2,1,99,2,99,98,"New York Times","Republican" +1,3,10011,"turk",3,1,80,5,80,80,"New York Times","Democrat" +1,3,10012,"turk",3,1,99,5,99,99,"New York Times","Neither" +1,3,10016,"turk",2,1,99,4,99,99,"New York Times","Neither" +1,3,10021,"turk",2,1,0,5,0,90,"New York Times","Democrat" +1,3,10022,"turk",4,1,99,3,99,80,"New York Times","Neither" +1,3,10023,"turk",3,1,0,4,0,0,"New York Times","Republican" +1,3,10025,"turk",4,1,85,4,85,75,"New York Times","Democrat" +1,3,10029,"turk",2,1,90,5,90,90,"New York Times","Democrat" +1,3,10035,"turk",3,1,60,4,60,60,"New York Times","Democrat" +1,3,10040,"turk",3,1,99,2,99,99,"New York Times","Democrat" +1,3,10045,"turk",2,1,85,5,85,85,"New York Times","Neither" +1,3,10050,"turk",4,1,85,4,85,85,"New York Times","Democrat" +1,3,10053,"turk",3,1,99,4,99,90,"New York Times","Republican" +1,3,10057,"turk",3,1,99,2,99,99,"New York Times","Republican" +1,3,10060,"turk",4,1,70,3,70,60,"New York Times","Democrat" +1,3,10063,"turk",4,1,99,4,99,99,"New York Times","Republican" +1,3,10064,"turk",2,1,1,2,1,89,"New York Times","Republican" +1,3,10068,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,10075,"turk",2,1,99,4,99,0,"New York Times","Democrat" +1,3,10079,"turk",2,1,95,5,95,90,"New York Times","Republican" +1,3,10082,"turk",2,1,1,3,1,1,"New York Times","Neither" +1,3,10086,"turk",2,1,85,4,85,85,"New York Times","Neither" +1,3,10088,"turk",3,1,80,2,80,50,"New York Times","Republican" +1,3,10091,"turk",4,1,85,3,85,70,"New York Times","Democrat" +1,3,10098,"turk",4,1,75,3,75,85,"New York Times","Neither" +1,3,10099,"turk",3,1,80,5,80,80,"New York Times","Democrat" +1,3,10100,"turk",2,1,74,3,74,55,"New York Times","Democrat" +1,3,10102,"turk",4,1,85,3,85,80,"New York Times","Democrat" +1,3,10106,"turk",4,1,99,2,99,99,"New York Times","Democrat" +1,3,10110,"turk",3,1,99,2,99,90,"New York Times","Republican" +1,3,10112,"turk",3,1,80,2,80,60,"New York Times","Democrat" +1,3,10114,"turk",3,1,99,3,99,99,"New York Times","Republican" +1,3,10117,"turk",3,1,85,2,85,75,"New York Times","Democrat" +1,3,10119,"turk",3,1,99,4,99,99,"New York Times","Neither" +1,3,10122,"turk",2,1,80,3,80,70,"New York Times","Democrat" +1,3,10123,"turk",4,1,99,3,99,99,"New York Times","Republican" +1,3,10124,"turk",2,1,99,2,99,99,"New York Times","Republican" +1,3,10127,"turk",4,1,99,2,99,50,"New York Times","Republican" +1,3,10128,"turk",3,1,99,3,99,99,"New York Times","Democrat" +1,3,10129,"turk",2,1,88,3,88,78,"New York Times","Democrat" +1,3,10132,"turk",3,1,22,5,22,22,"New York Times","Republican" +1,3,10137,"turk",2,1,60,2,60,0,"New York Times","Democrat" +1,3,10139,"turk",2,1,85,3,85,82,"New York Times","Republican" +1,3,10141,"turk",3,1,50,4,50,50,"New York Times","Republican" +1,3,10143,"turk",4,1,99,5,99,99,"New York Times","Democrat" +1,3,10144,"turk",3,1,75,2,75,50,"New York Times","Democrat" +1,3,10148,"turk",2,1,80,2,80,40,"New York Times","Republican" +1,3,10151,"turk",3,1,99,2,99,1,"New York Times","Democrat" +1,3,10156,"turk",2,1,99,4,99,95,"New York Times","Democrat" +1,3,10159,"turk",3,1,15,5,15,20,"New York Times","Republican" +1,3,10164,"turk",2,1,50,4,50,50,"New York Times","Democrat" +1,3,10165,"turk",4,1,99,4,99,99,"New York Times","Democrat" +1,3,10170,"turk",4,1,100,5,100,100,"New York Times","Neither" +1,3,10172,"turk",4,1,99,3,99,99,"New York Times","Republican" +1,3,10173,"turk",3,1,66,4,66,43,"New York Times","Democrat" +1,3,10177,"turk",3,1,99,5,99,99,"New York Times","Democrat" +1,3,10180,"turk",2,1,90,4,90,50,"New York Times","Neither" +1,3,10181,"turk",2,1,100,5,100,100,"New York Times","Democrat" +1,3,10185,"turk",3,1,1,5,1,1,"New York Times","Republican" +1,3,10187,"turk",3,1,99,3,99,99,"New York Times","Democrat" +1,3,10189,"turk",4,1,0,2,0,1,"New York Times","Democrat" +1,3,10196,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,10198,"turk",3,1,97,5,97,95,"New York Times","Democrat" +1,3,10201,"turk",3,1,80,3,80,65,"New York Times","Republican" +1,3,10205,"turk",2,1,60,4,60,40,"New York Times","Democrat" +1,3,10206,"turk",4,1,88,4,88,42,"New York Times","Democrat" +1,3,10207,"turk",2,1,99,3,99,99,"New York Times","Republican" +1,3,10208,"turk",3,1,67,3,67,89,"New York Times","Democrat" +1,3,10212,"turk",3,1,2,3,2,75,"New York Times","Democrat" +1,3,10214,"turk",3,1,65,5,65,60,"New York Times","Neither" +1,3,10216,"turk",4,1,99,4,99,99,"New York Times","Republican" +1,3,10217,"turk",4,1,1,5,1,1,"New York Times","Democrat" +1,3,10219,"turk",2,1,50,3,50,1,"New York Times","Democrat" +1,3,10222,"turk",2,1,50,4,50,1,"New York Times","Neither" +1,3,10225,"turk",2,1,50,2,50,80,"New York Times","Republican" +1,3,10233,"turk",3,1,100,3,100,100,"New York Times","Neither" +1,3,10234,"turk",2,1,99,5,99,99,"New York Times","Republican" +1,3,10237,"turk",2,1,90,4,90,80,"New York Times","Democrat" +1,3,10238,"turk",4,1,90,4,90,90,"New York Times","Democrat" +1,3,10240,"turk",4,1,50,5,50,50,"New York Times","Neither" +1,3,10243,"turk",3,1,99,5,99,99,"New York Times","Republican" +1,3,10244,"turk",2,1,99,2,99,99,"New York Times","Republican" +1,3,10246,"turk",2,1,50,2,50,1,"New York Times","Democrat" +1,3,10247,"turk",3,1,99,5,99,99,"New York Times","Democrat" +1,3,10249,"turk",3,1,80,5,80,80,"New York Times","Democrat" +1,3,10250,"turk",2,1,34,4,34,44,"New York Times","Democrat" +1,3,10251,"turk",3,1,99,3,99,99,"New York Times","Democrat" +1,3,10253,"turk",4,1,20,2,20,20,"New York Times","Democrat" +1,3,10255,"turk",3,1,50,4,50,50,"New York Times","Democrat" +1,3,10257,"turk",3,1,99,3,99,99,"New York Times","Democrat" +1,3,10259,"turk",4,1,50,3,50,99,"New York Times","Democrat" +1,3,10260,"turk",2,1,99,2,99,99,"New York Times","Neither" +1,3,10265,"turk",2,1,95,5,95,95,"New York Times","Republican" +1,3,10266,"turk",4,1,99,4,99,75,"New York Times","Republican" +1,3,10267,"turk",3,1,99,4,99,99,"New York Times","Democrat" +1,3,10269,"turk",4,1,99,4,99,1,"New York Times","Democrat" +1,3,10270,"turk",4,1,99,2,99,99,"New York Times","Republican" +1,3,10278,"turk",2,1,50,5,50,99,"New York Times","Democrat" +1,3,10282,"turk",2,1,90,3,90,90,"New York Times","Neither" +1,3,10283,"turk",3,1,70,3,70,65,"New York Times","Republican" +1,3,10286,"turk",3,1,50,3,50,50,"New York Times","Republican" +1,3,10287,"turk",4,1,99,4,99,95,"New York Times","Democrat" +1,3,10288,"turk",4,1,99,4,99,99,"New York Times","Neither" +1,3,10293,"turk",2,1,85,3,85,80,"New York Times","Democrat" +1,3,10296,"turk",2,1,100,4,100,100,"New York Times","Republican" +1,3,10300,"turk",3,1,90,2,90,80,"New York Times","Democrat" +1,3,10302,"turk",3,1,99,2,99,99,"New York Times","Republican" +1,3,10304,"turk",3,1,99,4,99,99,"New York Times","Democrat" +1,3,10310,"turk",3,1,75,3,75,75,"New York Times","Republican" +1,3,10313,"turk",2,1,65,5,65,60,"New York Times","Democrat" +1,3,10314,"turk",4,1,90,4,90,99,"New York Times","" +1,3,10321,"turk",2,1,99,4,99,99,"New York Times","Republican" +1,3,10323,"turk",3,1,100,3,100,99,"New York Times","Democrat" +1,3,10326,"turk",3,1,1,3,1,1,"New York Times","Republican" +1,3,10327,"turk",4,1,0,5,0,0,"New York Times","Democrat" +1,3,10330,"turk",4,1,70,2,70,50,"New York Times","Democrat" +1,3,10333,"turk",4,1,99,3,99,95,"New York Times","Neither" +1,3,10336,"turk",3,1,99,4,99,95,"New York Times","Neither" +1,3,10338,"turk",2,1,99,5,99,99,"New York Times","Neither" +1,3,10339,"turk",3,1,50,5,50,99,"New York Times","Democrat" +1,3,10343,"turk",3,1,30,2,30,20,"New York Times","Republican" +1,3,10347,"turk",4,1,15,2,15,20,"New York Times","Democrat" +1,3,10348,"turk",4,1,99,4,99,99,"New York Times","Democrat" +1,3,10349,"turk",4,1,99,2,99,50,"New York Times","Republican" +1,3,10351,"turk",2,1,65,2,65,35,"New York Times","Democrat" +1,3,10353,"turk",2,1,80,2,80,50,"New York Times","Democrat" +1,3,10356,"turk",4,1,99,2,99,99,"New York Times","Republican" +1,3,10358,"turk",2,1,50,2,50,50,"New York Times","Republican" +1,3,10362,"turk",3,1,99,2,99,99,"New York Times","Democrat" +1,3,10363,"turk",3,1,90,4,90,70,"New York Times","Republican" +1,3,10364,"turk",4,1,99,4,99,1,"New York Times","Democrat" +1,3,10366,"turk",3,1,80,2,80,80,"New York Times","Democrat" +1,3,10372,"turk",3,1,80,3,80,75,"New York Times","Neither" +1,3,10375,"turk",2,1,92,2,92,90,"New York Times","Democrat" +1,3,10377,"turk",2,1,1,5,1,99,"New York Times","Democrat" +1,3,10378,"turk",2,1,99,4,99,100,"New York Times","Neither" +1,3,10379,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,10380,"turk",3,1,85,4,85,85,"New York Times","Republican" +1,3,10388,"turk",3,1,100,4,100,90,"New York Times","Neither" +1,3,10393,"turk",3,1,97,4,97,98,"New York Times","Democrat" +1,3,10395,"turk",2,1,90,3,90,90,"New York Times","Neither" +1,3,10397,"turk",2,1,99,5,99,99,"New York Times","Neither" +1,3,10401,"turk",2,1,10,2,10,1,"New York Times","Republican" +1,3,10405,"turk",2,1,85,3,85,99,"New York Times","Democrat" +1,3,10407,"turk",3,1,85,3,85,80,"New York Times","Neither" +1,3,10415,"turk",3,1,99,3,99,98,"New York Times","Democrat" +1,3,10420,"turk",2,1,99,2,99,99,"New York Times","Republican" +1,3,10421,"turk",2,1,1,2,1,1,"New York Times","Democrat" +1,3,10424,"turk",3,1,99,2,99,1,"New York Times","Republican" +1,3,10428,"turk",3,1,90,2,90,90,"New York Times","Republican" +1,3,10430,"turk",2,1,99,3,99,99,"New York Times","Neither" +1,3,10432,"turk",3,1,85,2,85,80,"New York Times","Democrat" +1,3,10434,"turk",2,1,10,4,10,10,"New York Times","Democrat" +1,3,10435,"turk",2,1,60,3,60,60,"New York Times","Democrat" +1,3,10436,"turk",4,1,99,5,99,99,"New York Times","Democrat" +1,3,10437,"turk",4,1,70,3,70,70,"New York Times","Democrat" +1,3,10445,"turk",2,1,0,2,0,0,"New York Times","Democrat" +1,3,10446,"turk",3,1,30,3,30,75,"New York Times","Democrat" +1,3,10447,"turk",4,1,99,3,99,99,"New York Times","Neither" +1,3,10451,"turk",2,1,35,4,35,25,"New York Times","Republican" +1,3,10453,"turk",4,1,99,2,99,99,"New York Times","Democrat" +1,3,10455,"turk",4,1,1,4,1,50,"New York Times","Democrat" +1,3,10461,"turk",3,1,95,2,95,80,"New York Times","Democrat" +1,3,10462,"turk",2,1,99,3,99,99,"New York Times","Republican" +1,3,10465,"turk",2,1,0,4,0,0,"New York Times","Democrat" +1,3,10471,"turk",4,1,50,2,50,1,"New York Times","Democrat" +1,3,10472,"turk",3,1,99,5,99,99,"New York Times","Republican" +1,3,10477,"turk",3,1,88,3,88,72,"New York Times","Republican" +1,3,10478,"turk",2,1,95,3,95,90,"New York Times","Neither" +1,3,10480,"turk",4,1,88,4,88,88,"New York Times","Neither" +1,3,10482,"turk",3,1,99,2,99,80,"New York Times","Republican" +1,3,10484,"turk",2,1,100,5,100,100,"New York Times","Democrat" +1,3,10491,"turk",4,1,50,2,50,10,"New York Times","Democrat" +1,3,10492,"turk",4,1,90,3,90,80,"New York Times","Democrat" +1,3,10494,"turk",4,1,98,3,98,60,"New York Times","Republican" +1,3,10495,"turk",4,1,80,2,80,80,"New York Times","Neither" +1,3,10496,"turk",3,1,67,3,67,65,"New York Times","Republican" +1,3,10497,"turk",3,1,99,4,99,99,"New York Times","Democrat" +1,3,10498,"turk",2,1,80,2,80,80,"New York Times","Republican" +1,3,10511,"turk",2,1,100,5,100,99,"New York Times","Democrat" +1,3,10512,"turk",4,1,1,5,1,1,"New York Times","Democrat" +1,3,10515,"turk",2,1,1,4,1,1,"New York Times","Republican" +1,3,10516,"turk",2,1,99,2,99,1,"New York Times","Democrat" +1,3,10518,"turk",2,1,99,2,99,99,"New York Times","Republican" +1,3,10519,"turk",2,1,99,2,99,99,"New York Times","Republican" +1,3,10520,"turk",2,1,99,5,99,99,"New York Times","Democrat" +1,3,10524,"turk",3,1,10,3,10,10,"New York Times","Democrat" +1,3,10527,"turk",4,1,99,3,99,99,"New York Times","Democrat" +1,3,10531,"turk",3,1,50,3,50,50,"New York Times","Neither" +1,4,77,"tess",1,0,61,2,39,84,"USA Today","Democrat" +1,4,78,"tess",2,0,1,3,99,2,"USA Today","Democrat" +1,4,80,"tess",2,1,89,2,89,43,"USA Today","Republican" +1,4,94,"tess",1,0,99,3,1,1,"USA Today","Republican" +1,4,118,"tess",2,0,30,3,70,60,"USA Today","Democrat" +1,4,128,"tess",2,0,60,3,40,72,"USA Today","Republican" +1,4,130,"tess",1,0,18,2,82,55,"USA Today","Republican" +1,4,136,"tess",2,0,0,3,100,99,"USA Today","Democrat" +1,4,182,"tess",2,1,90,2,90,86,"USA Today","Democrat" +1,4,187,"tess",3,1,90,3,90,90,"USA Today","Republican" +1,4,196,"tess",2,0,52,2,48,31,"USA Today","Democrat" +1,4,206,"tess",4,0,20,2,80,51,"USA Today","Republican" +1,4,216,"tess",2,1,98,3,98,95,"USA Today","Democrat" +1,4,262,"tess",2,1,99,3,99,99,"USA Today","Democrat" +1,4,263,"tess",4,1,84,2,84,88,"USA Today","Neither" +1,4,299,"tess",4,0,10,2,90,20,"USA Today","Democrat" +1,4,308,"tess",3,0,83,3,17,17,"USA Today","Democrat" +1,4,315,"tess",1,1,86,3,86,47,"USA Today","Democrat" +1,4,334,"tess",3,1,98,3,98,96,"USA Today","Democrat" +1,4,379,"tess",1,0,25,3,75,75,"USA Today","Democrat" +1,4,389,"tess",1,0,10,3,90,99,"USA Today","Democrat" +1,4,397,"tess",2,0,92,3,8,0,"USA Today","Democrat" +1,4,399,"tess",2,0,59,3,41,51,"USA Today","Neither" +1,4,405,"tess",3,0,100,2,0,0,"USA Today","Republican" +1,4,421,"tess",1,1,98,3,98,95,"USA Today","Democrat" +1,4,485,"tess",2,0,69,3,31,100,"USA Today","Democrat" +1,4,493,"tess",3,1,70,3,70,50,"USA Today","Republican" +1,4,502,"tess",1,0,80,3,20,21,"USA Today","Democrat" +1,4,508,"tess",1,0,77,3,23,46,"USA Today","Republican" +1,4,512,"tess",4,0,90,2,10,10,"USA Today","Democrat" +1,4,522,"tess",1,1,51,2,51,100,"USA Today","Democrat" +1,4,530,"tess",1,0,25,3,75,23,"USA Today","Republican" +1,4,542,"tess",3,0,27,3,73,72,"USA Today","Republican" +1,4,549,"tess",2,1,50,3,50,40,"USA Today","Democrat" +1,4,550,"tess",1,1,62,2,62,79,"USA Today","Republican" +1,4,602,"tess",4,0,30,2,70,29,"USA Today","Democrat" +1,4,608,"tess",3,0,50,3,50,50,"USA Today","Democrat" +1,4,611,"tess",2,0,50,2,50,36,"USA Today","Republican" +1,4,638,"tess",3,0,57,2,43,58,"USA Today","Republican" +1,4,649,"tess",1,0,1,3,99,99,"USA Today","Democrat" +1,4,675,"tess",3,0,70,2,30,30,"USA Today","Democrat" +1,4,680,"tess",4,1,68,2,68,44,"USA Today","Republican" +1,4,689,"tess",1,0,90,2,10,80,"USA Today","Democrat" +1,4,693,"tess",1,0,90,3,10,26,"USA Today","Republican" +1,4,702,"tess",1,1,0,3,0,81,"USA Today","Democrat" +1,4,717,"tess",1,0,40,3,60,35,"USA Today","Republican" +1,4,727,"tess",1,1,NA,2,NA,2,"USA Today","Republican" +1,4,770,"tess",2,1,100,3,100,100,"USA Today","Democrat" +1,4,771,"tess",2,0,38,3,62,48,"USA Today","Democrat" +1,4,773,"tess",4,0,48,2,52,0,"USA Today","Democrat" +1,4,783,"tess",2,0,91,3,9,81,"USA Today","Democrat" +1,4,828,"tess",2,0,60,2,40,3,"USA Today","Neither" +1,4,829,"tess",2,0,89,2,11,10,"USA Today","Neither" +1,4,845,"tess",3,1,99,2,99,75,"USA Today","Republican" +1,4,847,"tess",2,0,71,3,29,63,"USA Today","Democrat" +1,4,852,"tess",3,0,97,3,3,23,"USA Today","Democrat" +1,4,857,"tess",2,1,29,3,29,70,"USA Today","Democrat" +1,4,878,"tess",1,0,81,3,19,89,"USA Today","Democrat" +1,4,890,"tess",1,0,41,2,59,96,"USA Today","Republican" +1,4,903,"tess",4,0,57,2,43,34,"USA Today","Republican" +1,4,928,"tess",1,0,91,2,9,9,"USA Today","Republican" +1,4,943,"tess",3,0,90,3,10,10,"USA Today","Republican" +1,4,961,"tess",2,1,78,3,78,86,"USA Today","Democrat" +1,4,978,"tess",1,1,55,2,55,44,"USA Today","Democrat" +1,4,1035,"tess",3,1,80,2,80,60,"USA Today","Democrat" +1,4,1046,"tess",3,0,85,3,15,3,"USA Today","Republican" +1,4,1051,"tess",1,0,80,2,20,10,"USA Today","Republican" +1,4,1055,"tess",3,0,31,3,69,60,"USA Today","Republican" +1,4,1058,"tess",1,1,99,3,99,70,"USA Today","Republican" +1,4,1062,"tess",1,0,40,3,60,60,"USA Today","Democrat" +1,4,1065,"tess",1,1,99,2,99,99,"USA Today","Republican" +1,4,1066,"tess",4,0,55,2,45,46,"USA Today","Democrat" +1,4,1068,"tess",2,0,60,3,40,30,"USA Today","Republican" +1,4,1084,"tess",1,1,91,2,91,68,"USA Today","Republican" +1,4,1097,"tess",2,1,84,2,84,69,"USA Today","Republican" +1,4,1104,"tess",2,0,57,3,43,69,"USA Today","Democrat" +1,4,1114,"tess",2,1,86,2,86,68,"USA Today","Neither" +1,4,1119,"tess",2,0,30,3,70,30,"USA Today","Republican" +1,4,1122,"tess",1,0,100,2,0,1,"USA Today","Republican" +1,4,1133,"tess",3,0,80,2,20,50,"USA Today","Republican" +1,4,1147,"tess",3,0,92,3,8,11,"USA Today","Democrat" +1,4,1149,"tess",2,1,93,3,93,91,"USA Today","Democrat" +1,4,1156,"tess",2,0,99,2,1,1,"USA Today","Democrat" +1,4,1182,"tess",3,0,80,3,20,58,"USA Today","Republican" +1,4,1208,"tess",2,1,96,2,96,93,"USA Today","Republican" +1,4,1246,"tess",1,0,45,3,55,46,"USA Today","Republican" +1,4,1259,"tess",4,0,61,2,39,14,"USA Today","Democrat" +1,4,1277,"tess",1,0,1,2,99,50,"USA Today","Republican" +1,4,1304,"tess",3,1,75,3,75,50,"USA Today","Democrat" +1,4,1307,"tess",2,0,10,3,90,80,"USA Today","Republican" +1,4,1311,"tess",1,0,83,3,17,25,"USA Today","Democrat" +1,4,1321,"tess",4,0,61,2,39,9,"USA Today","Republican" +1,4,1348,"tess",2,0,93,3,7,11,"USA Today","Democrat" +1,4,1397,"tess",2,1,0,2,0,10,"USA Today","Democrat" +1,4,1402,"tess",1,1,6,3,6,1,"USA Today","Republican" +1,4,1419,"tess",2,1,73,3,73,59,"USA Today","Republican" +1,4,1454,"tess",1,0,100,2,0,3,"USA Today","Democrat" +1,4,1468,"tess",1,0,82,3,18,70,"USA Today","Republican" +1,4,1485,"tess",3,1,67,2,67,43,"USA Today","Democrat" +1,4,1486,"tess",4,0,0,2,100,100,"USA Today","Democrat" +1,4,1507,"tess",4,1,50,2,50,70,"USA Today","Democrat" +1,4,1530,"tess",1,0,93,3,7,44,"USA Today","Republican" +1,4,1541,"tess",3,0,10,3,90,70,"USA Today","Republican" +1,4,1552,"tess",2,0,31,2,69,88,"USA Today","Republican" +1,4,1553,"tess",1,0,50,2,50,99,"USA Today","Democrat" +1,4,1565,"tess",1,0,40,3,60,10,"USA Today","Democrat" +1,4,1600,"tess",1,1,97,3,97,100,"USA Today","Republican" +1,4,1608,"tess",3,1,80,3,80,90,"USA Today","Republican" +1,4,1624,"tess",1,1,50,3,50,50,"USA Today","Republican" +1,4,1702,"tess",2,0,90,2,10,10,"USA Today","Neither" +1,4,1706,"tess",1,0,99,3,1,0,"USA Today","Democrat" +1,4,1728,"tess",2,0,80,2,20,30,"USA Today","Democrat" +1,4,1756,"tess",2,1,90,2,90,90,"USA Today","Democrat" +1,4,1767,"tess",2,0,50,2,50,50,"USA Today","Republican" +1,4,1799,"tess",2,0,60,3,40,39,"USA Today","Republican" +1,4,1815,"tess",2,0,79,2,21,17,"USA Today","Republican" +1,4,1841,"tess",3,0,79,3,21,28,"USA Today","Republican" +1,4,1850,"tess",1,0,29,2,71,20,"USA Today","Republican" +1,4,1856,"tess",3,0,49,3,51,51,"USA Today","Republican" +1,4,1857,"tess",4,1,99,2,99,97,"USA Today","Democrat" +1,4,1870,"tess",3,1,50,3,50,55,"USA Today","Republican" +1,4,1891,"tess",2,1,98,2,98,99,"USA Today","Republican" +1,4,1902,"tess",3,0,100,3,0,6,"USA Today","Democrat" +1,4,1924,"tess",2,1,88,2,88,36,"USA Today","Democrat" +1,4,1930,"tess",1,0,5,3,95,85,"USA Today","Democrat" +1,4,1939,"tess",3,1,24,3,24,53,"USA Today","Democrat" +1,4,1940,"tess",3,0,40,2,60,40,"USA Today","Democrat" +1,4,1945,"tess",3,1,40,3,40,13,"USA Today","Democrat" +1,4,1960,"tess",1,1,95,3,95,100,"USA Today","Republican" +1,4,1982,"tess",2,1,100,2,100,99,"USA Today","Democrat" +1,4,1992,"tess",2,1,99,3,99,99,"USA Today","Democrat" +1,4,2033,"tess",1,0,3,3,97,41,"USA Today","Democrat" +1,4,2056,"tess",4,1,50,2,50,50,"USA Today","Republican" +1,4,2061,"tess",1,1,81,3,81,83,"USA Today","Democrat" +1,4,2097,"tess",1,0,71,3,29,25,"USA Today","Republican" +1,4,2107,"tess",1,1,85,2,85,34,"USA Today","Republican" +1,4,2120,"tess",3,1,89,2,89,50,"USA Today","Republican" +1,4,2141,"tess",3,0,60,2,40,29,"USA Today","Democrat" +1,4,2179,"tess",2,1,50,2,50,37,"USA Today","Democrat" +1,4,2180,"tess",2,0,100,2,0,32,"USA Today","Democrat" +1,4,2197,"tess",2,0,0,3,100,89,"USA Today","Republican" +1,4,2211,"tess",2,1,72,2,72,11,"USA Today","Republican" +1,4,2215,"tess",3,0,NA,3,NA,1,"USA Today","Republican" +1,4,2218,"tess",3,0,100,3,0,2,"USA Today","Republican" +1,4,2225,"tess",1,0,1,2,99,5,"USA Today","Republican" +1,4,2235,"tess",1,1,80,3,80,80,"USA Today","Republican" +1,4,2238,"tess",1,1,92,2,92,83,"USA Today","Democrat" +1,4,2242,"tess",3,1,76,2,76,76,"USA Today","Republican" +1,4,2248,"tess",2,1,42,3,42,37,"USA Today","Democrat" +1,4,2271,"tess",3,0,41,2,59,50,"USA Today","Democrat" +1,4,2278,"tess",1,1,40,3,40,40,"USA Today","Neither" +1,4,2291,"tess",3,1,30,3,30,70,"USA Today","Republican" +1,4,2356,"tess",3,0,31,2,69,19,"USA Today","Republican" +1,4,2359,"tess",3,1,99,2,99,99,"USA Today","Democrat" +1,4,2382,"tess",2,1,62,3,62,58,"USA Today","Democrat" +1,4,2383,"tess",1,0,61,3,39,16,"USA Today","Republican" +1,4,2393,"tess",1,1,90,3,90,89,"USA Today","Democrat" +1,4,2398,"tess",2,0,0,3,100,99,"USA Today","Democrat" +1,4,2399,"tess",1,1,86,2,86,72,"USA Today","Democrat" +1,4,2412,"tess",2,1,90,3,90,80,"USA Today","Democrat" +1,4,2424,"tess",4,0,45,2,55,63,"USA Today","Republican" +1,4,2434,"tess",3,1,66,3,66,65,"USA Today","Democrat" +1,4,2445,"tess",2,1,70,2,70,98,"USA Today","Republican" +1,4,2447,"tess",1,1,20,2,20,49,"USA Today","Democrat" +1,4,2468,"tess",1,1,98,3,98,90,"USA Today","Democrat" +1,4,2484,"tess",1,0,60,2,40,39,"USA Today","Republican" +1,4,2485,"tess",3,0,60,2,40,20,"USA Today","Democrat" +1,4,2488,"tess",1,1,NA,3,NA,48,"USA Today","Democrat" +1,4,2511,"tess",2,1,98,3,98,96,"USA Today","Democrat" +1,4,2512,"tess",3,0,3,3,97,81,"USA Today","Republican" +1,4,2514,"tess",4,0,30,2,70,19,"USA Today","Democrat" +1,4,2519,"tess",1,0,50,3,50,42,"USA Today","Democrat" +1,4,2525,"tess",3,1,3,3,3,25,"USA Today","Republican" +1,4,2529,"tess",2,0,51,2,49,1,"USA Today","Democrat" +1,4,2532,"tess",3,1,10,2,10,10,"USA Today","Democrat" +1,4,2545,"tess",1,1,79,2,79,76,"USA Today","Democrat" +1,4,2547,"tess",4,1,50,2,50,50,"USA Today","Republican" +1,4,2557,"tess",3,1,22,3,22,42,"USA Today","Democrat" +1,4,2599,"tess",2,0,98,2,2,1,"USA Today","Republican" +1,4,2611,"tess",1,0,100,2,0,30,"USA Today","Neither" +1,4,2623,"tess",3,0,50,2,50,5,"USA Today","Democrat" +1,4,2644,"tess",1,1,81,3,81,90,"USA Today","Democrat" +1,4,2671,"tess",2,1,55,3,55,43,"USA Today","Republican" +1,4,2700,"tess",2,0,84,3,16,20,"USA Today","Democrat" +1,4,2709,"tess",3,1,90,3,90,68,"USA Today","Democrat" +1,4,2715,"tess",1,1,100,3,100,95,"USA Today","Republican" +1,4,2720,"tess",1,1,76,3,76,30,"USA Today","Republican" +1,4,2731,"tess",1,0,87,2,13,75,"USA Today","Democrat" +1,4,2733,"tess",2,0,3,2,97,93,"USA Today","Democrat" +1,4,2760,"tess",1,1,80,2,80,50,"USA Today","Republican" +1,4,2765,"tess",3,0,19,2,81,5,"USA Today","Republican" +1,4,2767,"tess",3,0,43,2,57,29,"USA Today","Democrat" +1,4,2773,"tess",4,1,79,2,79,78,"USA Today","Republican" +1,4,2774,"tess",2,0,5,2,95,5,"USA Today","Republican" +1,4,2779,"tess",2,0,6,2,94,50,"USA Today","Democrat" +1,4,2784,"tess",1,1,80,3,80,90,"USA Today","Republican" +1,4,2795,"tess",3,1,20,2,20,100,"USA Today","Republican" +1,4,2797,"tess",1,0,20,2,80,65,"USA Today","Democrat" +1,4,2799,"tess",3,1,8,2,8,15,"USA Today","Republican" +1,4,2804,"tess",4,0,50,2,50,49,"USA Today","Republican" +1,4,2818,"tess",1,0,80,2,20,29,"USA Today","Democrat" +1,4,2852,"tess",1,1,96,2,96,96,"USA Today","Republican" +1,4,2893,"tess",2,1,20,2,20,59,"USA Today","Republican" +1,4,2936,"tess",4,0,36,2,64,28,"USA Today","Democrat" +1,4,2938,"tess",1,0,50,2,50,0,"USA Today","Republican" +1,4,2940,"tess",2,0,98,3,2,0,"USA Today","Republican" +1,4,2945,"tess",3,0,94,2,6,83,"USA Today","Democrat" +1,4,2981,"tess",4,1,50,2,50,19,"USA Today","Democrat" +1,4,2982,"tess",1,1,60,2,60,80,"USA Today","Democrat" +1,4,2990,"tess",2,1,99,2,99,10,"USA Today","Republican" +1,4,2998,"tess",3,1,100,2,100,93,"USA Today","Republican" +1,4,3011,"tess",3,1,76,3,76,6,"USA Today","Republican" +1,4,3020,"tess",3,0,45,2,55,29,"USA Today","Democrat" +1,4,3025,"tess",3,1,1,3,1,1,"USA Today","Democrat" +1,4,3028,"tess",1,1,80,3,80,89,"USA Today","Democrat" +1,4,3051,"tess",3,0,40,2,60,20,"USA Today","Republican" +1,4,3062,"tess",1,0,94,2,6,14,"USA Today","Neither" +1,4,3072,"tess",3,0,99,3,1,1,"USA Today","Republican" +1,4,3074,"tess",2,1,41,2,41,70,"USA Today","Democrat" +1,4,3086,"tess",1,0,90,3,10,10,"USA Today","Republican" +1,4,3089,"tess",3,1,57,3,57,67,"USA Today","Democrat" +1,4,3107,"tess",3,1,98,2,98,51,"USA Today","Democrat" +1,4,3109,"tess",2,0,35,3,65,14,"USA Today","Neither" +1,4,3115,"tess",4,1,25,2,25,50,"USA Today","Neither" +1,4,3156,"tess",1,1,70,3,70,70,"USA Today","Democrat" +1,4,3176,"tess",1,1,50,2,50,50,"USA Today","Republican" +1,4,3188,"tess",3,0,25,2,75,76,"USA Today","Democrat" +1,4,3190,"tess",1,1,100,2,100,94,"USA Today","Democrat" +1,4,3192,"tess",3,0,70,3,30,30,"USA Today","Democrat" +1,4,3197,"tess",2,1,30,2,30,30,"USA Today","Democrat" +1,4,3206,"tess",4,0,50,2,50,20,"USA Today","Democrat" +1,4,3207,"tess",2,0,25,3,75,3,"USA Today","Republican" +1,4,3208,"tess",3,1,50,3,50,50,"USA Today","Democrat" +1,4,3259,"tess",2,1,100,2,100,75,"USA Today","Republican" +1,4,3288,"tess",2,0,50,2,50,50,"USA Today","Republican" +1,4,3333,"tess",2,1,60,3,60,90,"USA Today","Democrat" +1,4,3335,"tess",1,1,36,3,36,76,"USA Today","Democrat" +1,4,3342,"tess",4,1,87,2,87,100,"USA Today","Republican" +1,4,3344,"tess",2,1,87,2,87,97,"USA Today","Democrat" +1,4,3346,"tess",1,1,30,2,30,30,"USA Today","Republican" +1,4,3371,"tess",3,0,85,3,15,15,"USA Today","Democrat" +1,4,3419,"tess",2,0,99,3,1,1,"USA Today","Democrat" +1,4,3425,"tess",2,0,59,3,41,41,"USA Today","Republican" +1,4,3426,"tess",2,1,100,2,100,100,"USA Today","Democrat" +1,4,3433,"tess",1,1,80,3,80,71,"USA Today","Democrat" +1,4,3437,"tess",3,1,95,2,95,50,"USA Today","Republican" +1,4,3454,"tess",2,0,100,2,0,0,"USA Today","Democrat" +1,4,3462,"tess",1,0,60,3,40,36,"USA Today","Republican" +1,4,3488,"tess",4,0,81,2,19,92,"USA Today","Republican" +1,4,3507,"tess",2,1,59,3,59,68,"USA Today","Democrat" +1,4,3513,"tess",3,1,50,3,50,48,"USA Today","Democrat" +1,4,3515,"tess",3,0,10,3,90,87,"USA Today","Republican" +1,4,3517,"tess",2,0,49,2,51,10,"USA Today","Republican" +1,4,3523,"tess",1,1,75,3,75,75,"USA Today","Democrat" +1,4,3544,"tess",2,1,96,2,96,81,"USA Today","Neither" +1,4,3548,"tess",1,1,70,2,70,89,"USA Today","Republican" +1,4,3564,"tess",3,0,96,3,4,4,"USA Today","Republican" +1,4,3568,"tess",1,1,90,3,90,90,"USA Today","Democrat" +1,4,3573,"tess",3,0,71,3,29,61,"USA Today","Democrat" +1,4,3582,"tess",3,1,99,2,99,99,"USA Today","Republican" +1,4,3587,"tess",2,1,0,3,0,2,"USA Today","Democrat" +1,4,3607,"tess",2,1,100,2,100,97,"USA Today","Republican" +1,4,3609,"tess",2,1,100,3,100,100,"USA Today","Republican" +1,4,3612,"tess",3,0,60,3,40,60,"USA Today","Republican" +1,4,3629,"tess",2,0,40,2,60,20,"USA Today","Republican" +1,4,3632,"tess",1,0,60,3,40,39,"USA Today","Republican" +1,4,3634,"tess",3,0,66,3,34,12,"USA Today","Democrat" +1,4,3643,"tess",1,0,5,2,95,50,"USA Today","Democrat" +1,4,3653,"tess",2,0,94,3,6,30,"USA Today","Democrat" +1,4,3678,"tess",1,1,50,3,50,0,"USA Today","Republican" +1,4,3695,"tess",4,1,43,2,43,82,"USA Today","Republican" +1,4,3699,"tess",2,1,60,2,60,32,"USA Today","Republican" +1,4,3702,"tess",1,1,90,3,90,90,"USA Today","Democrat" +1,4,3704,"tess",1,0,10,2,90,8,"USA Today","Republican" +1,4,3708,"tess",3,0,1,3,99,82,"USA Today","Democrat" +1,4,3711,"tess",3,1,50,2,50,41,"USA Today","Democrat" +1,4,3728,"tess",1,0,1,2,99,20,"USA Today","Republican" +1,4,3736,"tess",3,1,50,2,50,100,"USA Today","Democrat" +1,4,3747,"tess",3,1,95,2,95,37,"USA Today","Democrat" +1,4,3774,"tess",3,0,70,2,30,19,"USA Today","Neither" +1,4,3779,"tess",3,0,40,3,60,9,"USA Today","Republican" +1,4,3782,"tess",3,0,32,3,68,39,"USA Today","Democrat" +1,4,3787,"tess",1,0,1,2,99,39,"USA Today","Democrat" +1,4,3799,"tess",1,0,83,2,17,25,"USA Today","Republican" +1,4,3801,"tess",2,1,84,3,84,66,"USA Today","Democrat" +1,4,3810,"tess",1,0,80,2,20,20,"USA Today","Democrat" +1,4,3811,"tess",4,0,84,2,16,20,"USA Today","Republican" +1,4,3813,"tess",4,1,50,2,50,86,"USA Today","Republican" +1,4,3814,"tess",2,0,50,2,50,49,"USA Today","Democrat" +1,4,3819,"tess",2,0,60,3,40,39,"USA Today","Republican" +1,4,3845,"tess",1,1,37,2,37,35,"USA Today","Democrat" +1,4,3868,"tess",3,0,99,2,1,1,"USA Today","Democrat" +1,4,3890,"tess",2,0,90,3,10,0,"USA Today","Republican" +1,4,3898,"tess",3,1,96,3,96,100,"USA Today","Democrat" +1,4,3910,"tess",2,1,58,2,58,32,"USA Today","Democrat" +1,4,3915,"tess",3,0,0,2,100,10,"USA Today","Democrat" +1,4,3918,"tess",3,1,99,3,99,99,"USA Today","Democrat" +1,4,3931,"tess",2,1,51,3,51,53,"USA Today","Democrat" +1,4,3961,"tess",3,1,92,2,92,93,"USA Today","Democrat" +1,4,3981,"tess",3,0,61,3,39,50,"USA Today","Republican" +1,4,4035,"tess",3,0,100,3,0,0,"USA Today","Republican" +1,4,4039,"tess",1,0,20,2,80,16,"USA Today","Democrat" +1,4,4043,"tess",3,0,17,3,83,8,"USA Today","Republican" +1,4,4049,"tess",2,0,5,3,95,93,"USA Today","Neither" +1,4,4079,"tess",3,1,98,2,98,98,"USA Today","Democrat" +1,4,4084,"tess",2,1,56,2,56,34,"USA Today","Republican" +1,4,4096,"tess",2,1,70,3,70,69,"USA Today","Democrat" +1,4,4139,"tess",1,1,49,3,49,21,"USA Today","Republican" +1,4,4153,"tess",3,1,60,2,60,90,"USA Today","Republican" +1,4,4175,"tess",1,1,80,2,80,80,"USA Today","Democrat" +1,4,4186,"tess",1,0,97,2,3,63,"USA Today","Democrat" +1,4,4195,"tess",1,0,90,3,10,30,"USA Today","Republican" +1,4,4197,"tess",2,0,100,3,0,100,"USA Today","Democrat" +1,4,4202,"tess",2,1,90,3,90,74,"USA Today","Democrat" +1,4,4209,"tess",1,0,50,2,50,17,"USA Today","Democrat" +1,4,4210,"tess",2,0,4,2,96,25,"USA Today","Republican" +1,4,4217,"tess",3,1,95,3,95,96,"USA Today","Democrat" +1,4,4229,"tess",1,0,24,3,76,81,"USA Today","Democrat" +1,4,4241,"tess",2,1,50,2,50,70,"USA Today","Republican" +1,4,4253,"tess",3,1,36,3,36,52,"USA Today","Democrat" +1,4,4269,"tess",1,1,80,3,80,90,"USA Today","Republican" +1,4,4277,"tess",1,1,28,3,28,85,"USA Today","Democrat" +1,4,4278,"tess",2,0,99,3,1,1,"USA Today","Republican" +1,4,4298,"tess",2,1,70,3,70,50,"USA Today","Democrat" +1,4,4325,"tess",3,0,100,3,0,0,"USA Today","Democrat" +1,4,4326,"tess",3,1,52,2,52,40,"USA Today","Democrat" +1,4,4332,"tess",1,0,98,3,2,80,"USA Today","Democrat" +1,4,4349,"tess",1,1,98,2,98,34,"USA Today","Democrat" +1,4,4357,"tess",3,1,95,3,95,99,"USA Today","Democrat" +1,4,4361,"tess",4,1,98,2,98,16,"USA Today","Democrat" +1,4,4370,"tess",2,1,44,2,44,24,"USA Today","Republican" +1,4,4380,"tess",2,1,1,2,1,99,"USA Today","Republican" +1,4,4390,"tess",4,0,6,2,94,24,"USA Today","Democrat" +1,4,4391,"tess",3,0,50,2,50,50,"USA Today","Democrat" +1,4,4412,"tess",3,0,70,3,30,20,"USA Today","Republican" +1,4,4420,"tess",3,1,60,3,60,30,"USA Today","Democrat" +1,4,4427,"tess",3,1,99,3,99,50,"USA Today","Democrat" +1,4,4431,"tess",1,0,10,2,90,1,"USA Today","Democrat" +1,4,4458,"tess",3,0,6,2,94,10,"USA Today","Republican" +1,4,4459,"tess",3,0,68,2,32,0,"USA Today","Democrat" +1,4,4475,"tess",2,1,51,3,51,50,"USA Today","Democrat" +1,4,4476,"tess",2,0,50,2,50,60,"USA Today","Democrat" +1,4,4480,"tess",2,0,71,3,29,43,"USA Today","Democrat" +1,4,4482,"tess",4,0,51,2,49,50,"USA Today","Neither" +1,4,4523,"tess",1,0,25,2,75,5,"USA Today","Republican" +1,4,4525,"tess",3,1,90,3,90,89,"USA Today","Republican" +1,4,4548,"tess",1,0,94,3,6,50,"USA Today","Republican" +1,4,4552,"tess",2,1,95,2,95,95,"USA Today","Democrat" +1,4,4557,"tess",1,1,99,3,99,96,"USA Today","Republican" +1,4,4561,"tess",2,0,87,3,13,0,"USA Today","Democrat" +1,4,4574,"tess",4,1,11,2,11,18,"USA Today","Democrat" +1,4,4606,"tess",3,0,89,2,11,50,"USA Today","Republican" +1,4,4618,"tess",4,1,92,2,92,59,"USA Today","Democrat" +1,4,4627,"tess",2,0,8,3,92,36,"USA Today","Democrat" +1,4,4632,"tess",3,1,80,2,80,76,"USA Today","Democrat" +1,4,4633,"tess",3,0,50,2,50,30,"USA Today","Democrat" +1,4,4691,"tess",1,1,100,2,100,100,"USA Today","Democrat" +1,4,4700,"tess",1,0,50,3,50,10,"USA Today","Republican" +1,4,4713,"tess",1,0,70,3,30,50,"USA Today","Neither" +1,4,4715,"tess",3,1,42,2,42,73,"USA Today","Republican" +1,4,4737,"tess",3,1,0,2,0,100,"USA Today","Democrat" +1,4,4739,"tess",3,1,97,3,97,7,"USA Today","Republican" +1,4,4740,"tess",3,1,21,3,21,20,"USA Today","Republican" +1,4,4789,"tess",2,1,62,2,62,96,"USA Today","Democrat" +1,4,4792,"tess",3,1,53,3,53,56,"USA Today","Republican" +1,4,4799,"tess",1,0,58,2,42,22,"USA Today","Republican" +1,4,4810,"tess",2,0,19,2,81,21,"USA Today","Democrat" +1,4,4813,"tess",3,0,100,3,0,9,"USA Today","Democrat" +1,4,4819,"tess",3,0,32,2,68,52,"USA Today","Democrat" +1,4,4826,"tess",3,0,50,2,50,10,"USA Today","Democrat" +1,4,4831,"tess",1,1,78,2,78,63,"USA Today","Neither" +1,4,4841,"tess",2,0,10,3,90,68,"USA Today","Democrat" +1,4,4866,"tess",2,1,78,3,78,64,"USA Today","Democrat" +1,4,4869,"tess",1,1,1,3,1,0,"USA Today","Democrat" +1,4,4875,"tess",2,0,0,2,100,100,"USA Today","Democrat" +1,4,4883,"tess",2,0,21,2,79,17,"USA Today","Democrat" +1,4,4887,"tess",4,0,67,2,33,12,"USA Today","Republican" +1,4,4899,"tess",3,0,85,2,15,2,"USA Today","Democrat" +1,4,4906,"tess",2,0,100,3,0,18,"USA Today","Republican" +1,4,4914,"tess",3,0,80,2,20,20,"USA Today","Democrat" +1,4,4921,"tess",1,0,100,3,0,0,"USA Today","Republican" +1,4,4930,"tess",2,0,97,3,3,18,"USA Today","Democrat" +1,4,4935,"tess",2,0,50,3,50,70,"USA Today","Democrat" +1,4,4940,"tess",1,0,100,3,0,10,"USA Today","Republican" +1,4,4971,"tess",4,0,30,2,70,39,"USA Today","Democrat" +1,4,4977,"tess",2,0,83,3,17,12,"USA Today","Republican" +1,4,5016,"tess",2,0,52,3,48,20,"USA Today","Democrat" +1,4,5018,"tess",2,1,74,3,74,86,"USA Today","Democrat" +1,4,5055,"tess",2,1,88,3,88,100,"USA Today","Republican" +1,4,5058,"tess",2,1,80,3,80,70,"USA Today","Republican" +1,4,5068,"tess",3,1,90,3,90,20,"USA Today","Democrat" +1,4,5073,"tess",1,1,10,2,10,33,"USA Today","Democrat" +1,4,5101,"tess",2,1,99,3,99,99,"USA Today","Democrat" +1,4,5108,"tess",1,1,85,2,85,95,"USA Today","Republican" +1,4,5116,"tess",4,1,100,2,100,19,"USA Today","Republican" +1,4,5128,"tess",2,0,80,2,20,10,"USA Today","Democrat" +1,4,5131,"tess",1,0,57,2,43,50,"USA Today","Democrat" +1,4,5132,"tess",4,1,51,2,51,44,"USA Today","Republican" +1,4,5137,"tess",1,0,50,2,50,50,"USA Today","Democrat" +1,4,5144,"tess",1,1,50,3,50,80,"USA Today","Democrat" +1,4,5147,"tess",3,1,90,3,90,95,"USA Today","Republican" +1,4,5151,"tess",2,0,88,2,12,99,"USA Today","Democrat" +1,4,5160,"tess",3,1,76,3,76,70,"USA Today","Democrat" +1,4,5172,"tess",3,0,80,3,20,10,"USA Today","Democrat" +1,4,5195,"tess",4,0,92,2,8,50,"USA Today","Democrat" +1,4,5228,"tess",1,1,23,3,23,23,"USA Today","Democrat" +1,4,5270,"tess",2,0,NA,3,NA,NA,"USA Today","Republican" +1,4,5275,"tess",3,0,100,2,0,4,"USA Today","Democrat" +1,4,5288,"tess",3,1,7,2,7,58,"USA Today","Democrat" +1,4,5289,"tess",2,1,98,3,98,97,"USA Today","Democrat" +1,4,5299,"tess",4,1,59,2,59,57,"USA Today","Democrat" +1,4,5316,"tess",1,1,86,3,86,57,"USA Today","Republican" +1,4,5319,"tess",2,0,10,2,90,75,"USA Today","Democrat" +1,4,5326,"tess",3,1,89,2,89,37,"USA Today","Democrat" +1,4,5327,"tess",1,1,10,2,10,19,"USA Today","Republican" +1,4,5363,"tess",2,1,3,2,3,50,"USA Today","Republican" +1,4,5378,"tess",3,0,32,3,68,14,"USA Today","Democrat" +1,4,5383,"tess",3,1,89,3,89,80,"USA Today","Republican" +1,4,5385,"tess",3,1,79,2,79,85,"USA Today","Democrat" +1,4,5411,"tess",2,1,81,3,81,80,"USA Today","Republican" +1,4,5428,"tess",1,0,5,2,95,23,"USA Today","Republican" +1,4,5448,"tess",2,1,93,2,93,100,"USA Today","Democrat" +1,4,5450,"tess",2,1,94,2,94,95,"USA Today","Republican" +1,4,5462,"tess",3,1,69,3,69,40,"USA Today","Republican" +1,4,5465,"tess",3,1,72,2,72,89,"USA Today","Republican" +1,4,5504,"tess",1,1,30,3,30,60,"USA Today","Republican" +1,4,5518,"tess",1,0,15,2,85,70,"USA Today","Republican" +1,4,5523,"tess",3,0,0,3,100,100,"USA Today","Democrat" +1,4,5536,"tess",2,1,51,3,51,16,"USA Today","Democrat" +1,4,5540,"tess",2,1,96,2,96,95,"USA Today","Democrat" +1,4,5544,"tess",3,0,92,3,8,10,"USA Today","Republican" +1,4,5559,"tess",1,1,51,2,51,75,"USA Today","Republican" +1,4,5567,"tess",1,0,90,2,10,10,"USA Today","Republican" +1,4,5570,"tess",1,1,70,3,70,51,"USA Today","Democrat" +1,4,5575,"tess",1,0,45,2,55,31,"USA Today","Democrat" +1,4,5581,"tess",2,1,90,2,90,11,"USA Today","Democrat" +1,4,5593,"tess",4,1,50,2,50,50,"USA Today","Republican" +1,4,5594,"tess",3,1,30,3,30,6,"USA Today","Republican" +1,4,5595,"tess",2,0,99,2,1,100,"USA Today","Republican" +1,4,5611,"tess",3,0,16,2,84,0,"USA Today","Republican" +1,4,5612,"tess",1,0,37,2,63,24,"USA Today","Democrat" +1,4,5613,"tess",2,0,15,2,85,2,"USA Today","Republican" +1,4,5614,"tess",1,0,79,2,21,29,"USA Today","Democrat" +1,4,5615,"tess",2,0,60,2,40,50,"USA Today","Democrat" +1,4,5654,"tess",1,1,41,2,41,87,"USA Today","Democrat" +1,4,5657,"tess",1,1,100,2,100,94,"USA Today","Democrat" +1,4,5660,"tess",3,0,90,2,10,80,"USA Today","Democrat" +1,4,5663,"tess",3,0,70,2,30,50,"USA Today","Democrat" +1,4,5664,"tess",2,0,3,3,97,2,"USA Today","Democrat" +1,4,5669,"tess",1,0,88,3,12,12,"USA Today","Neither" +1,4,5679,"tess",3,1,65,2,65,37,"USA Today","Democrat" +1,4,5706,"tess",3,0,47,2,53,77,"USA Today","Republican" +1,4,5729,"tess",2,0,93,2,7,25,"USA Today","Republican" +1,4,5732,"tess",3,1,70,3,70,50,"USA Today","Republican" +1,4,5743,"tess",1,0,5,3,95,10,"USA Today","Republican" +1,4,5744,"tess",3,1,90,3,90,10,"USA Today","Democrat" +1,4,5745,"tess",2,1,70,2,70,50,"USA Today","Democrat" +1,4,5752,"tess",2,1,60,3,60,30,"USA Today","Democrat" +1,4,5757,"tess",4,1,91,2,91,71,"USA Today","Republican" +1,4,5763,"tess",4,1,80,2,80,85,"USA Today","Democrat" +1,4,5772,"tess",1,0,80,3,20,0,"USA Today","Democrat" +1,4,5783,"tess",3,1,47,2,47,91,"USA Today","Democrat" +1,4,5787,"tess",4,1,93,2,93,97,"USA Today","Republican" +1,4,5802,"tess",1,0,89,2,11,20,"USA Today","Republican" +1,4,5803,"tess",3,1,79,2,79,68,"USA Today","Republican" +1,4,5825,"tess",4,1,100,2,100,100,"USA Today","Republican" +1,4,5833,"tess",2,0,89,3,11,12,"USA Today","Democrat" +1,4,5838,"tess",1,1,40,3,40,99,"USA Today","Republican" +1,4,5842,"tess",1,0,50,2,50,10,"USA Today","Democrat" +1,4,5868,"tess",3,1,91,2,91,81,"USA Today","Democrat" +1,4,5886,"tess",2,1,NA,3,NA,44,"USA Today","Republican" +1,4,5889,"tess",2,1,52,3,52,55,"USA Today","Democrat" +1,4,5896,"tess",2,1,61,2,61,50,"USA Today","Republican" +1,4,5899,"tess",4,0,NA,2,NA,21,"USA Today","Democrat" +1,4,5906,"tess",4,0,0,2,100,100,"USA Today","Democrat" +1,4,5916,"tess",4,1,70,2,70,21,"USA Today","Republican" +1,4,5918,"tess",1,0,1,2,99,29,"USA Today","Republican" +1,4,5931,"tess",3,1,4,2,4,14,"USA Today","Democrat" +1,4,5934,"tess",1,1,96,2,96,96,"USA Today","Democrat" +1,4,5937,"tess",2,0,51,2,49,50,"USA Today","Democrat" +1,4,5958,"tess",1,1,90,2,90,20,"USA Today","Democrat" +1,4,5959,"tess",1,0,80,2,20,10,"USA Today","Republican" +1,4,5963,"tess",2,1,54,3,54,98,"USA Today","Democrat" +1,4,5978,"tess",2,1,11,3,11,90,"USA Today","Democrat" +1,4,5982,"tess",3,1,50,3,50,50,"USA Today","Democrat" +1,4,5990,"tess",3,0,22,2,78,63,"USA Today","Democrat" +1,4,5996,"tess",2,0,63,2,37,6,"USA Today","Democrat" +1,4,6012,"tess",3,1,50,2,50,40,"USA Today","Republican" +1,4,6013,"tess",2,0,70,2,30,1,"USA Today","Democrat" +1,4,6039,"tess",2,0,76,2,24,64,"USA Today","Republican" +1,4,6042,"tess",2,1,99,3,99,99,"USA Today","Neither" +1,4,6045,"tess",3,1,20,2,20,29,"USA Today","Republican" +1,4,6053,"tess",1,1,29,2,29,91,"USA Today","Republican" +1,4,6074,"tess",1,1,96,3,96,88,"USA Today","Republican" +1,4,6077,"tess",1,1,69,2,69,60,"USA Today","Democrat" +1,4,6088,"tess",1,0,80,2,20,20,"USA Today","Republican" +1,4,6096,"tess",2,0,9,2,91,4,"USA Today","Republican" +1,4,6097,"tess",3,0,50,3,50,47,"USA Today","Republican" +1,4,6100,"tess",3,1,50,2,50,48,"USA Today","Democrat" +1,4,6110,"tess",1,0,28,3,72,52,"USA Today","Republican" +1,4,6116,"tess",3,1,100,3,100,100,"USA Today","Democrat" +1,4,6121,"tess",1,0,51,3,49,42,"USA Today","Democrat" +1,4,6130,"tess",2,0,10,3,90,94,"USA Today","Republican" +1,4,6131,"tess",1,0,30,3,70,50,"USA Today","Neither" +1,4,6132,"tess",1,1,20,3,20,80,"USA Today","Neither" +1,4,6138,"tess",1,0,50,3,50,70,"USA Today","Democrat" +1,4,6142,"tess",3,0,80,2,20,50,"USA Today","Neither" +1,4,6158,"tess",2,0,64,2,36,15,"USA Today","Republican" +1,4,6162,"tess",1,0,87,2,13,3,"USA Today","Democrat" +1,4,6164,"tess",2,0,25,2,75,30,"USA Today","Democrat" +1,4,6170,"tess",3,0,79,2,21,50,"USA Today","Democrat" +1,4,6179,"tess",2,1,56,2,56,38,"USA Today","Democrat" +1,4,6180,"tess",3,1,0,3,0,92,"USA Today","Republican" +1,4,6193,"tess",1,1,98,3,98,97,"USA Today","Democrat" +1,4,6195,"tess",3,1,92,2,92,95,"USA Today","Democrat" +1,4,6204,"tess",4,1,49,2,49,39,"USA Today","Republican" +1,4,6209,"tess",1,1,100,2,100,100,"USA Today","Democrat" +1,4,6227,"tess",3,1,96,2,96,65,"USA Today","Democrat" +1,4,6237,"tess",1,1,75,2,75,80,"USA Today","Democrat" +1,4,6242,"tess",1,0,89,2,11,17,"USA Today","Democrat" +1,4,6249,"tess",1,0,82,2,18,59,"USA Today","Democrat" +1,4,6259,"tess",2,0,0,3,100,67,"USA Today","Democrat" +1,4,6263,"tess",1,1,3,3,3,0,"USA Today","Democrat" +1,4,6268,"tess",2,0,97,3,3,11,"USA Today","Republican" +1,4,6271,"tess",1,0,76,3,24,38,"USA Today","Democrat" +1,4,6272,"tess",1,0,81,2,19,0,"USA Today","Democrat" +1,4,6279,"tess",2,1,NA,2,NA,0,"USA Today","Republican" +1,4,6284,"tess",2,0,30,2,70,80,"USA Today","Neither" +1,4,6294,"tess",2,0,0,2,100,0,"USA Today","Republican" +1,4,6301,"tess",3,1,80,3,80,79,"USA Today","Democrat" +1,4,6307,"tess",1,1,80,3,80,74,"USA Today","Republican" +1,4,6323,"tess",3,0,21,2,79,2,"USA Today","Democrat" +1,4,6329,"tess",1,1,51,2,51,59,"USA Today","Democrat" +1,4,6354,"tess",2,0,20,2,80,60,"USA Today","Republican" +1,4,6372,"tess",1,0,0,2,100,1,"USA Today","Democrat" +1,4,6373,"tess",1,0,50,3,50,50,"USA Today","Democrat" +1,4,6401,"tess",1,0,66,3,34,52,"USA Today","Democrat" +1,4,6402,"tess",2,1,97,3,97,100,"USA Today","Democrat" +1,4,6405,"tess",2,1,100,2,100,100,"USA Today","Republican" +1,4,6414,"tess",2,1,90,3,90,89,"USA Today","Republican" +1,4,6424,"tess",1,1,70,3,70,100,"USA Today","Republican" +1,4,6428,"tess",3,1,95,3,95,95,"USA Today","Neither" +1,4,6434,"tess",3,1,94,2,94,50,"USA Today","Democrat" +1,4,6449,"tess",4,1,70,2,70,50,"USA Today","Republican" +1,4,6452,"tess",4,1,100,2,100,97,"USA Today","Republican" +1,4,6463,"tess",3,1,29,2,29,27,"USA Today","Democrat" +1,4,6467,"tess",2,1,22,2,22,25,"USA Today","Democrat" +1,4,6468,"tess",2,1,3,2,3,91,"USA Today","Republican" +1,4,6472,"tess",4,1,83,2,83,21,"USA Today","Republican" +1,4,6488,"tess",2,0,NA,3,NA,NA,"USA Today","Republican" +1,4,6506,"tess",1,1,95,3,95,41,"USA Today","Democrat" +1,4,6513,"tess",1,1,50,3,50,98,"USA Today","Republican" +1,4,6516,"tess",1,1,40,2,40,21,"USA Today","Republican" +1,4,6519,"tess",2,1,98,2,98,99,"USA Today","Republican" +1,4,6522,"tess",1,0,35,3,65,60,"USA Today","Democrat" +1,4,6527,"tess",1,0,23,2,77,66,"USA Today","Democrat" +1,4,6538,"tess",2,0,16,3,84,93,"USA Today","Republican" +1,4,6540,"tess",2,0,0,3,100,100,"USA Today","Democrat" +1,4,6565,"tess",2,1,85,2,85,70,"USA Today","Democrat" +1,4,6593,"tess",1,0,NA,2,NA,100,"USA Today","Democrat" +1,4,6599,"tess",3,1,73,3,73,86,"USA Today","Democrat" +1,4,6607,"tess",1,0,50,3,50,50,"USA Today","Democrat" +1,4,6609,"tess",2,0,100,3,0,0,"USA Today","Democrat" +1,4,6611,"tess",2,1,26,2,26,13,"USA Today","Republican" +1,4,6615,"tess",3,1,100,3,100,100,"USA Today","Democrat" +1,4,6617,"tess",1,1,89,3,89,85,"USA Today","Democrat" +1,4,6621,"tess",1,0,75,3,25,25,"USA Today","Democrat" +1,4,6625,"tess",2,0,57,3,43,29,"USA Today","Democrat" +1,4,6626,"tess",1,1,30,2,30,20,"USA Today","Republican" +1,4,6633,"tess",3,0,65,3,35,74,"USA Today","Republican" +1,4,6635,"tess",2,1,10,3,10,93,"USA Today","Republican" +1,4,6636,"tess",1,0,91,2,9,94,"USA Today","Republican" +1,4,6640,"tess",3,0,42,2,58,60,"USA Today","Republican" +1,4,6642,"tess",2,1,70,2,70,30,"USA Today","Democrat" +1,4,6648,"tess",3,0,75,3,25,26,"USA Today","Democrat" +1,4,6656,"tess",2,1,99,3,99,99,"USA Today","Democrat" +1,4,6665,"tess",2,0,10,2,90,10,"USA Today","Democrat" +1,4,6667,"tess",4,0,27,2,73,19,"USA Today","Democrat" +1,4,6674,"tess",1,0,0,3,100,79,"USA Today","Democrat" +1,4,6676,"tess",2,1,90,2,90,77,"USA Today","Democrat" +1,4,6680,"tess",4,0,99,2,1,97,"USA Today","Republican" +1,4,6685,"tess",3,1,63,3,63,70,"USA Today","Republican" +1,4,6698,"tess",3,0,99,3,1,1,"USA Today","Democrat" +1,4,6710,"tess",4,1,100,2,100,75,"USA Today","Republican" +1,4,6712,"tess",1,1,35,2,35,49,"USA Today","Democrat" +1,4,6718,"tess",4,0,30,2,70,14,"USA Today","Republican" +1,4,6732,"tess",3,1,75,2,75,79,"USA Today","Democrat" +1,4,6755,"tess",3,1,20,2,20,50,"USA Today","Republican" +1,4,6775,"tess",3,1,92,3,92,89,"USA Today","Republican" +1,4,6777,"tess",3,1,50,2,50,50,"USA Today","Democrat" +1,4,6782,"tess",1,0,7,3,93,71,"USA Today","Republican" +1,4,6783,"tess",3,0,78,2,22,84,"USA Today","Democrat" +1,4,6788,"tess",2,1,95,3,95,94,"USA Today","Democrat" +1,4,6792,"tess",1,0,20,2,80,20,"USA Today","Democrat" +1,4,6795,"tess",2,0,1,2,99,38,"USA Today","Democrat" +1,4,6804,"tess",2,1,89,2,89,80,"USA Today","Republican" +1,4,6814,"tess",1,0,90,3,10,50,"USA Today","Democrat" +1,4,6827,"tess",3,1,50,3,50,50,"USA Today","Democrat" +1,4,6831,"tess",4,1,60,2,60,50,"USA Today","Republican" +1,4,6837,"tess",3,1,92,3,92,48,"USA Today","Democrat" +1,4,6864,"tess",3,1,50,2,50,49,"USA Today","Republican" +1,4,6868,"tess",2,0,48,2,52,48,"USA Today","Republican" +1,4,6881,"tess",1,0,51,3,49,97,"USA Today","Democrat" +1,4,6882,"tess",4,1,50,2,50,100,"USA Today","Democrat" +1,4,6883,"tess",1,1,93,3,93,94,"USA Today","Democrat" +1,4,6893,"tess",3,0,75,3,25,37,"USA Today","Republican" +1,4,6910,"tess",3,0,74,3,26,25,"USA Today","Democrat" +1,4,6912,"tess",2,1,97,3,97,90,"USA Today","Democrat" +1,4,6930,"tess",2,1,35,3,35,44,"USA Today","Republican" +1,4,6932,"tess",2,1,36,3,36,33,"USA Today","Democrat" +1,4,6935,"tess",2,0,91,2,9,15,"USA Today","Democrat" +1,4,6938,"tess",2,0,13,2,87,69,"USA Today","Democrat" +1,4,6971,"tess",3,1,89,3,89,100,"USA Today","Republican" +1,4,7022,"tess",1,1,100,2,100,4,"USA Today","Democrat" +1,4,7036,"tess",1,0,83,2,17,54,"USA Today","Republican" +1,4,7046,"tess",1,1,60,2,60,60,"USA Today","Democrat" +1,4,7055,"tess",1,1,94,3,94,99,"USA Today","Republican" +1,4,7061,"tess",2,0,78,3,22,22,"USA Today","Democrat" +1,4,7066,"tess",2,1,81,3,81,68,"USA Today","Democrat" +1,4,7087,"tess",1,1,100,3,100,70,"USA Today","Democrat" +1,4,7088,"tess",1,0,75,3,25,30,"USA Today","Democrat" +1,4,7125,"tess",1,0,100,2,0,24,"USA Today","Republican" +1,4,7133,"tess",1,1,94,3,94,91,"USA Today","Democrat" +1,4,7148,"tess",2,0,1,2,99,2,"USA Today","Democrat" +1,4,7153,"tess",1,0,55,3,45,50,"USA Today","Democrat" +1,4,7174,"tess",3,0,36,2,64,13,"USA Today","Democrat" +1,4,7186,"tess",2,1,NA,3,NA,NA,"USA Today","Democrat" +1,4,7197,"tess",2,1,98,3,98,50,"USA Today","Republican" +1,4,7199,"tess",3,0,99,3,1,1,"USA Today","Republican" +1,4,7210,"tess",2,1,95,2,95,3,"USA Today","Neither" +1,4,7216,"tess",4,1,50,2,50,100,"USA Today","Democrat" +1,4,7222,"tess",1,1,100,2,100,95,"USA Today","Democrat" +1,4,7223,"tess",1,1,1,3,1,57,"USA Today","Democrat" +1,4,7224,"tess",1,0,100,3,0,0,"USA Today","Republican" +1,4,7225,"tess",3,0,76,3,24,31,"USA Today","Democrat" +1,4,7226,"tess",4,1,59,2,59,56,"USA Today","Democrat" +1,4,7228,"tess",1,0,12,2,88,49,"USA Today","Democrat" +1,4,7235,"tess",2,1,91,2,91,31,"USA Today","Democrat" +1,4,7253,"tess",3,0,26,3,74,20,"USA Today","Neither" +1,4,7273,"tess",1,0,44,3,56,52,"USA Today","Democrat" +1,4,7287,"tess",3,0,90,2,10,0,"USA Today","Republican" +1,4,7315,"tess",1,0,78,3,22,50,"USA Today","Neither" +1,4,7323,"tess",1,0,0,2,100,50,"USA Today","Republican" +1,4,7325,"tess",3,0,90,2,10,10,"USA Today","Republican" +1,4,7373,"tess",3,1,13,3,13,4,"USA Today","Democrat" +1,4,7397,"tess",3,0,10,3,90,89,"USA Today","Democrat" +1,4,7398,"tess",3,1,100,2,100,100,"USA Today","Democrat" +1,4,7404,"tess",3,0,4,3,96,10,"USA Today","Democrat" +1,4,7425,"tess",3,0,48,2,52,17,"USA Today","Democrat" +1,4,7440,"tess",2,0,45,2,55,3,"USA Today","Republican" +1,4,7470,"tess",3,0,77,3,23,7,"USA Today","Republican" +1,4,7479,"tess",3,1,50,2,50,50,"USA Today","Democrat" +1,4,7494,"tess",3,1,43,3,43,65,"USA Today","Republican" +1,4,7504,"tess",3,0,70,3,30,61,"USA Today","Republican" +1,4,7524,"tess",2,0,48,3,52,29,"USA Today","Democrat" +1,4,7525,"tess",1,0,99,2,1,0,"USA Today","Democrat" +1,4,7543,"tess",1,1,100,3,100,97,"USA Today","Republican" +1,4,7558,"tess",1,1,99,2,99,50,"USA Today","Democrat" +1,4,7563,"tess",2,0,1,3,99,75,"USA Today","Democrat" +1,4,7580,"tess",1,0,96,3,4,17,"USA Today","Republican" +1,4,7586,"tess",3,0,98,3,2,8,"USA Today","Democrat" +1,4,7587,"tess",2,0,75,3,25,10,"USA Today","Democrat" +1,4,7593,"tess",3,0,52,3,48,45,"USA Today","Republican" +1,4,7594,"tess",1,1,90,3,90,90,"USA Today","Democrat" +1,4,7597,"tess",2,1,90,2,90,60,"USA Today","Democrat" +1,4,7603,"tess",1,0,91,3,9,3,"USA Today","Democrat" +1,4,7605,"tess",1,0,73,3,27,3,"USA Today","Republican" +1,4,7607,"tess",1,1,59,3,59,69,"USA Today","Neither" +1,4,7622,"tess",2,0,8,2,92,2,"USA Today","Democrat" +1,4,7623,"tess",4,0,60,2,40,10,"USA Today","Republican" +1,4,7630,"tess",1,1,97,2,97,97,"USA Today","Democrat" +1,4,7631,"tess",2,0,4,2,96,88,"USA Today","Democrat" +1,4,7640,"tess",2,0,40,2,60,40,"USA Today","Republican" +1,4,7641,"tess",1,1,90,2,90,50,"USA Today","Democrat" +1,4,7656,"tess",2,1,20,2,20,90,"USA Today","Republican" +1,4,7667,"tess",2,0,0,3,100,100,"USA Today","Democrat" +1,4,7668,"tess",3,1,90,2,90,50,"USA Today","Republican" +1,4,7694,"tess",2,0,10,3,90,89,"USA Today","Republican" +1,4,7702,"tess",1,0,37,3,63,82,"USA Today","Democrat" +1,4,7717,"tess",2,0,20,2,80,30,"USA Today","Democrat" +1,4,7722,"tess",3,1,100,3,100,51,"USA Today","Republican" +1,4,7741,"tess",2,0,99,3,1,1,"USA Today","Republican" +1,4,7747,"tess",3,1,40,2,40,30,"USA Today","Democrat" +1,4,7759,"tess",2,0,0,3,100,100,"USA Today","Democrat" +1,4,7783,"tess",1,1,90,2,90,80,"USA Today","Republican" +1,4,7784,"tess",1,0,10,3,90,86,"USA Today","Neither" +1,4,7789,"tess",2,0,100,2,0,59,"USA Today","Republican" +1,4,7799,"tess",1,0,15,2,85,70,"USA Today","Democrat" +1,4,7822,"tess",1,0,50,2,50,30,"USA Today","Democrat" +1,4,7826,"tess",4,1,90,2,90,91,"USA Today","Republican" +1,4,7844,"tess",3,1,90,3,90,80,"USA Today","Republican" +1,4,7856,"tess",1,0,40,2,60,41,"USA Today","Republican" +1,4,7864,"tess",3,1,67,3,67,67,"USA Today","Republican" +1,4,7884,"tess",2,1,99,3,99,90,"USA Today","Democrat" +1,4,7891,"tess",4,0,78,2,22,0,"USA Today","Republican" +1,4,7930,"tess",2,0,6,3,94,14,"USA Today","Republican" +1,4,7936,"tess",4,0,97,2,3,76,"USA Today","Democrat" +1,4,7959,"tess",1,0,15,2,85,99,"USA Today","Democrat" +1,4,7960,"tess",3,1,46,2,46,37,"USA Today","Democrat" +1,4,7967,"tess",3,0,82,2,18,38,"USA Today","Democrat" +1,4,7983,"tess",1,0,99,3,1,11,"USA Today","Democrat" +1,4,7991,"tess",3,1,50,3,50,80,"USA Today","Republican" +1,4,8000,"tess",1,1,99,3,99,80,"USA Today","Democrat" +1,4,8041,"tess",2,0,61,3,39,39,"USA Today","Republican" +1,4,8050,"tess",3,0,40,2,60,10,"USA Today","Neither" +1,4,8061,"tess",4,1,38,2,38,51,"USA Today","Republican" +1,4,8064,"tess",3,0,9,3,91,17,"USA Today","Democrat" +1,4,8065,"tess",2,1,100,3,100,84,"USA Today","Democrat" +1,4,8078,"tess",1,1,50,2,50,50,"USA Today","Republican" +1,4,8081,"tess",3,1,96,2,96,94,"USA Today","Democrat" +1,4,8104,"tess",4,0,29,2,71,18,"USA Today","Republican" +1,4,8110,"tess",1,1,70,3,70,51,"USA Today","Democrat" +1,4,8112,"tess",3,0,50,3,50,50,"USA Today","Democrat" +1,4,8127,"tess",1,1,76,3,76,33,"USA Today","Republican" +1,4,8134,"tess",1,1,0,3,0,6,"USA Today","Democrat" +1,4,8141,"tess",2,0,90,3,10,20,"USA Today","Democrat" +1,4,8142,"tess",2,1,70,3,70,30,"USA Today","Democrat" +1,4,8152,"tess",2,0,63,3,37,57,"USA Today","Democrat" +1,4,8159,"tess",3,1,NA,3,NA,60,"USA Today","Neither" +1,4,8170,"tess",1,0,9,2,91,90,"USA Today","Democrat" +1,4,8176,"tess",1,1,NA,3,NA,NA,"USA Today","Democrat" +1,4,8196,"tess",3,0,100,2,0,11,"USA Today","Democrat" +1,4,8202,"tess",1,1,61,2,61,26,"USA Today","Republican" +1,4,8221,"tess",1,0,90,3,10,47,"USA Today","Democrat" +1,4,8224,"tess",1,0,99,2,1,10,"USA Today","Republican" +1,4,8228,"tess",2,1,80,2,80,50,"USA Today","Democrat" +1,4,8247,"tess",2,1,40,2,40,90,"USA Today","Republican" +1,4,8252,"tess",1,0,85,2,15,25,"USA Today","Democrat" +1,4,8253,"tess",3,0,17,2,83,69,"USA Today","Democrat" +1,4,8260,"tess",1,1,77,2,77,83,"USA Today","Neither" +1,4,8265,"tess",3,1,49,2,49,51,"USA Today","Republican" +1,4,8276,"tess",1,0,79,3,21,20,"USA Today","Republican" +1,4,8287,"tess",1,1,95,3,95,90,"USA Today","Democrat" +1,4,8308,"tess",2,0,50,3,50,49,"USA Today","Democrat" +1,4,8317,"tess",2,1,99,3,99,99,"USA Today","Republican" +1,4,8331,"tess",1,1,90,3,90,90,"USA Today","Democrat" +1,4,8337,"tess",3,0,28,2,72,95,"USA Today","Republican" +1,4,8361,"tess",2,0,80,3,20,40,"USA Today","Republican" +1,4,8371,"tess",3,1,27,3,27,44,"USA Today","Republican" +1,4,8378,"tess",3,0,30,2,70,0,"USA Today","Republican" +1,4,8400,"tess",2,1,100,3,100,100,"USA Today","Democrat" +1,4,8435,"tess",3,1,87,3,87,71,"USA Today","Republican" +1,4,8452,"tess",1,1,97,2,97,50,"USA Today","Republican" +1,4,8455,"tess",2,0,4,2,96,50,"USA Today","Republican" +1,4,8468,"tess",1,0,99,3,1,2,"USA Today","Democrat" +1,4,8476,"tess",3,1,75,3,75,40,"USA Today","Democrat" +1,4,8503,"tess",2,1,80,3,80,80,"USA Today","Republican" +1,4,8541,"tess",2,1,83,2,83,69,"USA Today","Republican" +1,4,8544,"tess",1,1,64,3,64,77,"USA Today","Democrat" +1,4,8550,"tess",1,0,0,2,100,6,"USA Today","Democrat" +1,4,8552,"tess",1,1,20,2,20,20,"USA Today","Democrat" +1,4,8558,"tess",3,1,93,2,93,77,"USA Today","Republican" +1,4,8573,"tess",3,0,60,2,40,49,"USA Today","Democrat" +1,4,8577,"tess",1,0,15,2,85,18,"USA Today","Democrat" +1,4,8607,"tess",4,1,17,2,17,23,"USA Today","Republican" +1,4,8618,"tess",3,1,95,2,95,75,"USA Today","Republican" +1,4,8659,"tess",2,1,54,2,54,44,"USA Today","Democrat" +1,4,8686,"tess",2,0,66,3,34,62,"USA Today","Republican" +1,4,8706,"tess",2,0,36,2,64,35,"USA Today","Republican" +1,4,8709,"tess",1,1,44,2,44,41,"USA Today","Republican" +1,4,8710,"tess",2,1,80,2,80,50,"USA Today","Democrat" +1,4,8717,"tess",2,1,85,3,85,49,"USA Today","Republican" +1,4,8724,"tess",3,1,86,3,86,87,"USA Today","Democrat" +1,4,8727,"tess",2,1,80,3,80,71,"USA Today","Democrat" +1,4,8728,"tess",1,1,99,3,99,99,"USA Today","Republican" +1,4,8731,"tess",1,0,72,2,28,1,"USA Today","Democrat" +1,4,8746,"tess",3,1,50,2,50,50,"USA Today","Republican" +1,4,8763,"tess",4,0,30,2,70,50,"USA Today","Republican" +1,4,8797,"tess",1,1,70,3,70,68,"USA Today","Republican" +1,4,8810,"tess",3,1,90,2,90,80,"USA Today","Democrat" +1,4,8814,"tess",4,1,85,2,85,6,"USA Today","Democrat" +1,4,8821,"tess",3,1,67,3,67,56,"USA Today","Republican" +1,4,8826,"tess",3,1,87,2,87,68,"USA Today","Republican" +1,4,8848,"tess",2,0,3,2,97,0,"USA Today","Democrat" +1,4,8881,"tess",1,1,50,2,50,1,"USA Today","Democrat" +1,4,8890,"tess",1,1,100,3,100,97,"USA Today","Republican" +1,4,8893,"tess",2,1,100,2,100,79,"USA Today","Democrat" +1,4,8900,"tess",3,1,100,2,100,99,"USA Today","Republican" +1,4,8925,"tess",2,1,56,3,56,52,"USA Today","Democrat" +1,4,8933,"tess",4,0,84,2,16,55,"USA Today","Republican" +1,4,8956,"tess",3,1,50,2,50,50,"USA Today","Republican" +1,4,8981,"tess",4,1,50,2,50,20,"USA Today","Democrat" +1,4,8988,"tess",2,1,70,3,70,70,"USA Today","Republican" +1,4,9025,"tess",3,0,49,2,51,51,"USA Today","Republican" +1,4,9034,"tess",3,0,97,2,3,3,"USA Today","Republican" +1,4,9057,"tess",2,1,50,2,50,50,"USA Today","Republican" +1,4,9065,"tess",3,0,58,2,42,30,"USA Today","Neither" +1,4,9066,"tess",3,0,50,3,50,50,"USA Today","Republican" +1,4,9084,"tess",1,0,30,2,70,29,"USA Today","Democrat" +1,4,9106,"tess",1,0,20,3,80,20,"USA Today","Republican" +1,4,9108,"tess",3,0,76,2,24,30,"USA Today","Democrat" +1,4,9109,"tess",1,0,63,3,37,87,"USA Today","Democrat" +1,4,9148,"tess",3,1,98,2,98,97,"USA Today","Republican" +1,4,9149,"tess",2,0,70,3,30,40,"USA Today","Democrat" +1,4,9150,"tess",4,0,15,2,85,79,"USA Today","Republican" +1,4,9153,"tess",4,0,50,2,50,2,"USA Today","Democrat" +1,4,9155,"tess",3,1,61,3,61,86,"USA Today","Democrat" +1,4,9166,"tess",3,1,20,2,20,87,"USA Today","Republican" +1,4,9169,"tess",2,0,5,3,95,94,"USA Today","Republican" +1,4,9189,"tess",3,0,10,2,90,80,"USA Today","Republican" +1,4,9199,"tess",4,0,50,2,50,37,"USA Today","Republican" +1,4,9230,"tess",3,1,100,3,100,24,"USA Today","Democrat" +1,4,9247,"tess",1,0,50,2,50,0,"USA Today","Democrat" +1,4,9284,"tess",4,0,80,2,20,29,"USA Today","Republican" +1,4,9286,"tess",3,1,70,2,70,93,"USA Today","Democrat" +1,4,9302,"tess",1,1,21,2,21,80,"USA Today","Democrat" +1,4,9342,"tess",2,0,30,3,70,55,"USA Today","Republican" +1,4,9360,"tess",1,0,54,2,46,19,"USA Today","Republican" +1,4,9372,"tess",2,1,97,2,97,81,"USA Today","Democrat" +1,4,9383,"tess",2,0,75,3,25,25,"USA Today","Republican" +1,4,9412,"tess",3,0,50,2,50,1,"USA Today","Republican" +1,4,9420,"tess",2,0,100,2,0,0,"USA Today","Democrat" +1,4,9424,"tess",2,0,79,3,21,10,"USA Today","Democrat" +1,4,9431,"tess",4,1,99,2,99,99,"USA Today","Democrat" +1,4,9435,"tess",2,1,53,3,53,76,"USA Today","Democrat" +1,4,9440,"tess",3,0,12,3,88,30,"USA Today","Republican" +1,4,9443,"tess",3,0,99,2,1,99,"USA Today","Democrat" +1,4,9465,"tess",4,0,10,2,90,80,"USA Today","Republican" +1,4,9500,"tess",3,1,63,3,63,35,"USA Today","Republican" +1,4,9514,"tess",2,1,72,2,72,92,"USA Today","Republican" +1,4,9517,"tess",1,0,53,3,47,1,"USA Today","Neither" +1,4,9536,"tess",3,1,60,3,60,50,"USA Today","Democrat" +1,4,9563,"tess",1,1,93,2,93,91,"USA Today","Republican" +1,4,9570,"tess",2,1,89,2,89,77,"USA Today","Democrat" +1,4,9578,"tess",3,0,99,2,1,90,"USA Today","Republican" +1,4,9585,"tess",2,0,81,2,19,79,"USA Today","Democrat" +1,4,9627,"tess",1,0,40,2,60,11,"USA Today","Democrat" +1,4,9631,"tess",2,0,10,2,90,10,"USA Today","Democrat" +1,4,9635,"tess",2,1,10,3,10,80,"USA Today","Democrat" +1,4,9647,"tess",3,0,19,2,81,8,"USA Today","Republican" +1,4,9648,"tess",1,0,1,2,99,4,"USA Today","Democrat" +1,4,9649,"tess",3,1,13,3,13,7,"USA Today","Democrat" +1,4,9650,"tess",1,1,80,2,80,52,"USA Today","Republican" +1,4,9679,"tess",1,1,97,3,97,51,"USA Today","Republican" +1,4,9685,"tess",2,1,0,3,0,99,"USA Today","Republican" +1,4,9693,"tess",1,0,38,2,62,26,"USA Today","Neither" +1,4,9703,"tess",1,0,50,2,50,50,"USA Today","Democrat" +1,4,9717,"tess",2,0,62,2,38,5,"USA Today","Neither" +1,4,9729,"tess",1,1,100,2,100,100,"USA Today","Republican" +1,4,9743,"turk",3,0,30,5,70,70,"USA Today","Democrat" +1,4,9744,"turk",2,0,1,5,99,99,"USA Today","Democrat" +1,4,9747,"turk",3,0,20,5,80,80,"USA Today","Neither" +1,4,9762,"turk",3,0,10,4,90,70,"USA Today","Neither" +1,4,9763,"turk",2,0,95,2,5,5,"USA Today","Neither" +1,4,9764,"turk",3,0,0,3,100,30,"USA Today","Democrat" +1,4,9766,"turk",4,0,30,2,70,50,"USA Today","Democrat" +1,4,9767,"turk",4,0,80,2,20,85,"USA Today","Neither" +1,4,9769,"turk",2,0,80,2,20,20,"USA Today","Democrat" +1,4,9772,"turk",2,0,30,2,70,60,"USA Today","Democrat" +1,4,9775,"turk",2,0,15,5,85,85,"USA Today","Neither" +1,4,9777,"turk",4,0,25,4,75,75,"USA Today","Democrat" +1,4,9780,"turk",2,0,0,4,100,100,"USA Today","Republican" +1,4,9781,"turk",3,0,1,4,99,80,"USA Today","Neither" +1,4,9785,"turk",4,0,10,4,90,80,"USA Today","Democrat" +1,4,9786,"turk",4,0,20,3,80,80,"USA Today","Democrat" +1,4,9787,"turk",2,0,1,2,99,99,"USA Today","Democrat" +1,4,9791,"turk",3,0,2,5,98,98,"USA Today","Democrat" +1,4,9792,"turk",4,0,40,2,60,45,"USA Today","Republican" +1,4,9795,"turk",3,0,80,4,20,1,"USA Today","Republican" +1,4,9798,"turk",2,0,30,5,70,70,"USA Today","Democrat" +1,4,9802,"turk",2,0,70,4,30,50,"USA Today","Democrat" +1,4,9803,"turk",2,0,99,2,1,99,"USA Today","Democrat" +1,4,9807,"turk",2,0,75,3,25,40,"USA Today","Republican" +1,4,9808,"turk",3,0,10,3,90,80,"USA Today","Neither" +1,4,9810,"turk",2,0,1,4,99,99,"USA Today","Democrat" +1,4,9815,"turk",3,0,50,2,50,40,"USA Today","Democrat" +1,4,9817,"turk",2,0,1,5,99,99,"USA Today","Republican" +1,4,9821,"turk",3,0,25,5,75,70,"USA Today","Democrat" +1,4,9823,"turk",4,0,20,2,80,40,"USA Today","Neither" +1,4,9826,"turk",4,0,1,2,99,15,"USA Today","Republican" +1,4,9827,"turk",4,0,1,5,99,99,"USA Today","Republican" +1,4,9836,"turk",3,0,75,2,25,50,"USA Today","Democrat" +1,4,9839,"turk",4,0,1,5,99,99,"USA Today","Democrat" +1,4,9842,"turk",3,0,20,3,80,80,"USA Today","Democrat" +1,4,9843,"turk",2,0,99,5,1,1,"USA Today","Neither" +1,4,9847,"turk",4,0,1,2,99,1,"USA Today","Republican" +1,4,9849,"turk",2,0,0,4,100,1,"USA Today","Republican" +1,4,9852,"turk",2,0,75,4,25,25,"USA Today","Democrat" +1,4,9855,"turk",2,0,1,4,99,99,"USA Today","Neither" +1,4,9861,"turk",2,0,99,4,1,1,"USA Today","Neither" +1,4,9867,"turk",2,0,1,2,99,1,"USA Today","Democrat" +1,4,9870,"turk",3,0,20,5,80,75,"USA Today","Democrat" +1,4,9872,"turk",3,0,0,4,100,88,"USA Today","Republican" +1,4,9874,"turk",2,0,25,2,75,50,"USA Today","Democrat" +1,4,9875,"turk",4,0,20,3,80,60,"USA Today","Democrat" +1,4,9878,"turk",4,0,25,2,75,50,"USA Today","Republican" +1,4,9881,"turk",3,0,1,2,99,97,"USA Today","Democrat" +1,4,9884,"turk",4,0,20,3,80,80,"USA Today","Republican" +1,4,9885,"turk",4,0,80,4,20,20,"USA Today","Democrat" +1,4,9887,"turk",4,0,1,5,99,99,"USA Today","Republican" +1,4,9889,"turk",2,0,5,2,95,80,"USA Today","Neither" +1,4,9891,"turk",3,0,60,2,40,5,"USA Today","Democrat" +1,4,9892,"turk",2,0,50,2,50,1,"USA Today","Democrat" +1,4,9896,"turk",3,0,1,4,99,99,"USA Today","Neither" +1,4,9897,"turk",3,0,10,3,90,85,"USA Today","Democrat" +1,4,9900,"turk",2,0,1,5,99,99,"USA Today","Democrat" +1,4,9902,"turk",4,0,5,5,95,95,"USA Today","Democrat" +1,4,9905,"turk",3,0,1,3,99,1,"USA Today","Republican" +1,4,9910,"turk",2,0,1,5,99,99,"USA Today","Democrat" +1,4,9914,"turk",3,0,1,2,99,99,"USA Today","Republican" +1,4,9917,"turk",3,0,20,3,80,50,"USA Today","Neither" +1,4,9918,"turk",2,0,1,5,99,99,"USA Today","Democrat" +1,4,9920,"turk",3,0,0,3,100,100,"USA Today","Republican" +1,4,9921,"turk",3,0,1,4,99,99,"USA Today","Democrat" +1,4,9922,"turk",4,0,50,3,50,50,"USA Today","Democrat" +1,4,9923,"turk",4,0,99,5,1,1,"USA Today","Neither" +1,4,9925,"turk",3,0,33,4,67,67,"USA Today","Democrat" +1,4,9927,"turk",3,0,1,3,99,0,"USA Today","Republican" +1,4,9928,"turk",2,0,1,4,99,90,"USA Today","Democrat" +1,4,9931,"turk",2,0,1,4,99,99,"USA Today","Neither" +1,4,9935,"turk",4,0,50,3,50,50,"USA Today","Neither" +1,4,9937,"turk",3,0,1,4,99,99,"USA Today","Democrat" +1,4,9938,"turk",2,0,1,4,99,75,"USA Today","Democrat" +1,4,9939,"turk",2,0,1,2,99,99,"USA Today","Republican" +1,4,9940,"turk",2,0,5,5,95,90,"USA Today","Democrat" +1,4,9941,"turk",2,0,5,4,95,90,"USA Today","Republican" +1,4,9942,"turk",3,0,1,4,99,98,"USA Today","Democrat" +1,4,9946,"turk",3,0,20,2,80,20,"USA Today","Democrat" +1,4,9947,"turk",4,0,1,5,99,99,"USA Today","Democrat" +1,4,9948,"turk",2,0,1,4,99,99,"USA Today","Republican" +1,4,9953,"turk",4,0,1,5,99,99,"USA Today","Neither" +1,4,9956,"turk",4,0,40,3,60,50,"USA Today","Democrat" +1,4,9958,"turk",4,0,30,3,70,35,"USA Today","Republican" +1,4,9960,"turk",2,0,3,4,97,1,"USA Today","Democrat" +1,4,9964,"turk",3,0,10,4,90,65,"USA Today","Democrat" +1,4,9965,"turk",4,0,10,3,90,50,"USA Today","Democrat" +1,4,9966,"turk",2,0,1,3,99,1,"USA Today","Democrat" +1,4,9967,"turk",2,0,1,2,99,99,"USA Today","Neither" +1,4,9968,"turk",4,0,99,2,1,100,"USA Today","Democrat" +1,4,9970,"turk",2,0,0,4,100,100,"USA Today","Republican" +1,4,9971,"turk",3,0,10,3,90,70,"USA Today","Democrat" +1,4,9976,"turk",2,0,99,3,1,99,"USA Today","Republican" +1,4,9982,"turk",3,0,20,3,80,60,"USA Today","Republican" +1,4,9983,"turk",4,0,99,2,1,1,"USA Today","Democrat" +1,4,9986,"turk",3,0,20,5,80,80,"USA Today","Democrat" +1,4,9988,"turk",3,0,1,5,99,99,"USA Today","Democrat" +1,4,9990,"turk",3,0,45,2,55,1,"USA Today","Democrat" +1,4,9991,"turk",2,0,60,3,40,50,"USA Today","Neither" +1,4,9999,"turk",2,0,20,2,80,50,"USA Today","Democrat" +1,4,10001,"turk",4,0,1,3,99,1,"USA Today","Democrat" +1,4,10002,"turk",3,0,15,4,85,20,"USA Today","Democrat" +1,4,10007,"turk",3,0,10,4,90,90,"USA Today","Republican" +1,4,10017,"turk",3,0,2,4,98,98,"USA Today","Democrat" +1,4,10018,"turk",4,0,0,3,100,100,"USA Today","Republican" +1,4,10020,"turk",3,0,10,5,90,90,"USA Today","Democrat" +1,4,10024,"turk",2,0,40,4,60,40,"USA Today","Republican" +1,4,10028,"turk",4,0,75,3,25,20,"USA Today","Republican" +1,4,10030,"turk",3,0,30,5,70,70,"USA Today","Democrat" +1,4,10032,"turk",4,0,99,5,1,1,"USA Today","Democrat" +1,4,10033,"turk",2,0,0,5,100,0,"USA Today","Neither" +1,4,10036,"turk",3,0,1,3,99,60,"USA Today","Republican" +1,4,10037,"turk",2,0,1,4,99,99,"USA Today","Democrat" +1,4,10038,"turk",2,0,99,3,1,99,"USA Today","Democrat" +1,4,10041,"turk",4,0,50,2,50,1,"USA Today","Republican" +1,4,10042,"turk",4,0,10,3,90,90,"USA Today","Democrat" +1,4,10043,"turk",4,0,20,5,80,80,"USA Today","Democrat" +1,4,10044,"turk",2,0,65,3,35,30,"USA Today","Republican" +1,4,10047,"turk",2,0,50,5,50,60,"USA Today","Democrat" +1,4,10049,"turk",2,0,80,3,20,20,"USA Today","Democrat" +1,4,10052,"turk",4,0,50,3,50,99,"USA Today","Democrat" +1,4,10056,"turk",4,0,95,4,5,1,"USA Today","Republican" +1,4,10058,"turk",3,0,50,2,50,99,"USA Today","Republican" +1,4,10059,"turk",4,0,25,2,75,35,"USA Today","Democrat" +1,4,10062,"turk",2,0,99,3,1,1,"USA Today","Democrat" +1,4,10065,"turk",4,0,80,4,20,20,"USA Today","Democrat" +1,4,10066,"turk",3,0,10,3,90,90,"USA Today","Democrat" +1,4,10069,"turk",2,0,33,3,67,60,"USA Today","Republican" +1,4,10073,"turk",3,0,55,5,45,50,"USA Today","Neither" +1,4,10076,"turk",2,0,1,4,99,99,"USA Today","Neither" +1,4,10077,"turk",2,0,10,5,90,90,"USA Today","Democrat" +1,4,10078,"turk",3,0,50,4,50,0,"USA Today","Republican" +1,4,10080,"turk",3,0,65,3,35,25,"USA Today","Republican" +1,4,10081,"turk",4,0,20,3,80,99,"USA Today","Democrat" +1,4,10085,"turk",4,0,10,2,90,90,"USA Today","Neither" +1,4,10090,"turk",4,0,60,2,40,20,"USA Today","Democrat" +1,4,10092,"turk",4,0,50,2,50,50,"USA Today","Neither" +1,4,10093,"turk",4,0,35,2,65,50,"USA Today","Democrat" +1,4,10094,"turk",2,0,99,2,1,1,"USA Today","Democrat" +1,4,10095,"turk",4,0,1,4,99,99,"USA Today","Democrat" +1,4,10096,"turk",2,0,99,5,1,1,"USA Today","Democrat" +1,4,10097,"turk",2,0,1,5,99,99,"USA Today","Democrat" +1,4,10101,"turk",3,0,25,2,75,50,"USA Today","Democrat" +1,4,10107,"turk",4,0,15,2,85,80,"USA Today","Democrat" +1,4,10108,"turk",2,0,1,3,99,99,"USA Today","Democrat" +1,4,10111,"turk",3,0,1,3,99,99,"USA Today","Neither" +1,4,10116,"turk",3,0,100,4,0,0,"USA Today","Democrat" +1,4,10118,"turk",2,0,22,4,78,78,"USA Today","Democrat" +1,4,10120,"turk",4,0,81,3,19,19,"USA Today","Republican" +1,4,10121,"turk",2,0,20,5,80,80,"USA Today","Neither" +1,4,10126,"turk",4,0,60,2,40,30,"USA Today","Republican" +1,4,10131,"turk",3,0,1,5,99,50,"USA Today","Republican" +1,4,10133,"turk",4,0,25,2,75,40,"USA Today","Democrat" +1,4,10135,"turk",3,0,5,4,95,95,"USA Today","Democrat" +1,4,10136,"turk",2,0,1,5,99,99,"USA Today","Democrat" +1,4,10138,"turk",4,0,1,5,99,95,"USA Today","Democrat" +1,4,10140,"turk",3,0,40,2,60,50,"USA Today","Democrat" +1,4,10145,"turk",4,0,1,4,99,90,"USA Today","Democrat" +1,4,10147,"turk",3,0,48,2,52,31,"USA Today","Democrat" +1,4,10149,"turk",4,0,1,3,99,99,"USA Today","Republican" +1,4,10150,"turk",3,0,10,3,90,40,"USA Today","Democrat" +1,4,10152,"turk",2,0,50,5,50,50,"USA Today","Neither" +1,4,10153,"turk",2,0,1,3,99,99,"USA Today","Republican" +1,4,10155,"turk",2,0,99,5,1,1,"USA Today","Republican" +1,4,10160,"turk",3,0,1,2,99,99,"USA Today","Democrat" +1,4,10162,"turk",3,0,10,4,90,90,"USA Today","Democrat" +1,4,10163,"turk",3,0,99,2,1,99,"USA Today","Democrat" +1,4,10166,"turk",4,0,70,2,30,45,"USA Today","Democrat" +1,4,10167,"turk",3,0,64,4,36,40,"USA Today","Democrat" +1,4,10169,"turk",2,0,20,2,80,60,"USA Today","Republican" +1,4,10174,"turk",3,0,0,4,100,100,"USA Today","Democrat" +1,4,10175,"turk",3,0,1,4,99,99,"USA Today","Neither" +1,4,10178,"turk",4,0,1,4,99,99,"USA Today","Democrat" +1,4,10179,"turk",4,0,1,3,99,99,"USA Today","Republican" +1,4,10182,"turk",2,0,40,2,60,35,"USA Today","Democrat" +1,4,10184,"turk",2,0,20,3,80,50,"USA Today","Republican" +1,4,10186,"turk",2,0,2,5,98,98,"USA Today","Democrat" +1,4,10188,"turk",2,0,1,4,99,70,"USA Today","Democrat" +1,4,10194,"turk",3,0,99,2,1,99,"USA Today","Democrat" +1,4,10197,"turk",2,0,20,3,80,80,"USA Today","Democrat" +1,4,10202,"turk",3,0,50,5,50,99,"USA Today","Neither" +1,4,10203,"turk",2,0,55,2,45,50,"USA Today","Republican" +1,4,10204,"turk",4,0,50,3,50,1,"USA Today","Democrat" +1,4,10209,"turk",3,0,1,5,99,99,"USA Today","Democrat" +1,4,10210,"turk",4,0,40,3,60,30,"USA Today","Republican" +1,4,10211,"turk",3,0,10,3,90,90,"USA Today","Democrat" +1,4,10215,"turk",4,0,1,5,99,70,"USA Today","Democrat" +1,4,10223,"turk",3,0,1,5,99,99,"USA Today","Democrat" +1,4,10224,"turk",4,0,100,4,0,99,"USA Today","Democrat" +1,4,10227,"turk",3,0,50,4,50,25,"USA Today","Republican" +1,4,10228,"turk",2,0,50,3,50,50,"USA Today","Neither" +1,4,10235,"turk",4,0,1,2,99,99,"USA Today","Republican" +1,4,10242,"turk",4,0,99,2,1,1,"USA Today","Republican" +1,4,10245,"turk",3,0,99,5,1,50,"USA Today","Neither" +1,4,10248,"turk",2,0,5,5,95,95,"USA Today","Democrat" +1,4,10252,"turk",3,0,20,2,80,50,"USA Today","Republican" +1,4,10256,"turk",2,0,99,2,1,50,"USA Today","Neither" +1,4,10262,"turk",3,0,20,3,80,70,"USA Today","Democrat" +1,4,10271,"turk",2,0,96,3,4,1,"USA Today","Republican" +1,4,10274,"turk",4,0,99,2,1,1,"USA Today","Republican" +1,4,10275,"turk",2,0,1,2,99,0,"USA Today","Democrat" +1,4,10276,"turk",3,0,50,4,50,99,"USA Today","Neither" +1,4,10277,"turk",4,0,99,2,1,1,"USA Today","Democrat" +1,4,10279,"turk",4,0,30,2,70,20,"USA Today","Democrat" +1,4,10281,"turk",4,0,50,3,50,100,"USA Today","Democrat" +1,4,10284,"turk",3,0,50,4,50,1,"USA Today","Democrat" +1,4,10285,"turk",4,0,1,4,99,99,"USA Today","Republican" +1,4,10289,"turk",3,0,1,5,99,99,"USA Today","Republican" +1,4,10290,"turk",4,0,1,5,99,60,"USA Today","Neither" +1,4,10292,"turk",3,0,1,4,99,99,"USA Today","Democrat" +1,4,10295,"turk",4,0,2,5,98,98,"USA Today","Democrat" +1,4,10297,"turk",2,0,1,3,99,99,"USA Today","Democrat" +1,4,10307,"turk",3,0,15,3,85,85,"USA Today","Republican" +1,4,10308,"turk",3,0,1,5,99,99,"USA Today","Democrat" +1,4,10315,"turk",3,0,80,4,20,20,"USA Today","Republican" +1,4,10317,"turk",4,0,20,2,80,20,"USA Today","Democrat" +1,4,10318,"turk",3,0,10,2,90,50,"USA Today","Democrat" +1,4,10319,"turk",3,0,99,4,1,1,"USA Today","Neither" +1,4,10320,"turk",4,0,99,2,1,1,"USA Today","Republican" +1,4,10329,"turk",3,0,0,3,100,50,"USA Today","Republican" +1,4,10331,"turk",3,0,5,4,95,95,"USA Today","Democrat" +1,4,10332,"turk",2,0,1,5,99,99,"USA Today","Democrat" +1,4,10342,"turk",2,0,5,3,95,95,"USA Today","Democrat" +1,4,10346,"turk",3,0,1,4,99,99,"USA Today","Democrat" +1,4,10350,"turk",3,0,1,5,99,99,"USA Today","Democrat" +1,4,10354,"turk",4,0,75,3,25,25,"USA Today","Neither" +1,4,10355,"turk",4,0,40,2,60,50,"USA Today","Neither" +1,4,10359,"turk",2,0,1,3,99,99,"USA Today","Republican" +1,4,10360,"turk",4,0,99,5,1,1,"USA Today","Democrat" +1,4,10365,"turk",2,0,99,4,1,1,"USA Today","Republican" +1,4,10367,"turk",4,0,50,4,50,50,"USA Today","Republican" +1,4,10368,"turk",3,0,1,3,99,75,"USA Today","Democrat" +1,4,10369,"turk",4,0,99,5,1,1,"USA Today","Republican" +1,4,10374,"turk",4,0,99,3,1,1,"USA Today","Democrat" +1,4,10376,"turk",2,0,99,5,1,1,"USA Today","Republican" +1,4,10382,"turk",3,0,99,5,1,99,"USA Today","Democrat" +1,4,10385,"turk",2,0,5,2,95,60,"USA Today","Republican" +1,4,10386,"turk",2,0,1,2,99,1,"USA Today","Democrat" +1,4,10387,"turk",3,0,1,5,99,99,"USA Today","Democrat" +1,4,10389,"turk",3,0,99,5,1,1,"USA Today","Neither" +1,4,10391,"turk",2,0,50,2,50,1,"USA Today","Neither" +1,4,10392,"turk",4,0,60,3,40,55,"USA Today","Democrat" +1,4,10394,"turk",4,0,1,2,99,1,"USA Today","Democrat" +1,4,10396,"turk",3,0,71,5,29,59,"USA Today","Republican" +1,4,10398,"turk",4,0,80,2,20,20,"USA Today","Republican" +1,4,10402,"turk",2,0,50,3,50,25,"USA Today","Democrat" +1,4,10404,"turk",2,0,99,2,1,1,"USA Today","Republican" +1,4,10406,"turk",3,0,99,2,1,1,"USA Today","Democrat" +1,4,10408,"turk",2,0,50,5,50,1,"USA Today","Democrat" +1,4,10411,"turk",2,0,20,2,80,50,"USA Today","Republican" +1,4,10413,"turk",3,0,10,3,90,80,"USA Today","Republican" +1,4,10416,"turk",4,0,50,5,50,50,"USA Today","Republican" +1,4,10418,"turk",4,0,20,4,80,80,"USA Today","Democrat" +1,4,10422,"turk",2,0,0,2,100,65,"USA Today","Democrat" +1,4,10423,"turk",3,0,15,4,85,85,"USA Today","Neither" +1,4,10425,"turk",4,0,1,4,99,99,"USA Today","Democrat" +1,4,10427,"turk",3,0,1,4,99,99,"USA Today","Republican" +1,4,10429,"turk",2,0,2,4,98,95,"USA Today","Democrat" +1,4,10433,"turk",2,0,1,5,99,99,"USA Today","Democrat" +1,4,10440,"turk",3,0,21,2,79,13,"USA Today","Democrat" +1,4,10441,"turk",4,0,30,2,70,70,"USA Today","Democrat" +1,4,10442,"turk",2,0,50,5,50,50,"USA Today","Neither" +1,4,10443,"turk",2,0,0,2,100,15,"USA Today","Republican" +1,4,10454,"turk",2,0,1,2,99,99,"USA Today","Democrat" +1,4,10457,"turk",4,0,95,2,5,5,"USA Today","Republican" +1,4,10463,"turk",3,0,25,4,75,50,"USA Today","Republican" +1,4,10464,"turk",4,0,85,2,15,70,"USA Today","Democrat" +1,4,10468,"turk",4,0,20,3,80,70,"USA Today","Democrat" +1,4,10469,"turk",3,0,99,5,1,1,"USA Today","Neither" +1,4,10470,"turk",2,0,99,4,1,50,"USA Today","Democrat" +1,4,10474,"turk",2,0,78,3,22,22,"USA Today","Democrat" +1,4,10475,"turk",2,0,99,3,1,100,"USA Today","Democrat" +1,4,10476,"turk",4,0,5,2,95,90,"USA Today","Neither" +1,4,10479,"turk",4,0,1,3,99,99,"USA Today","Democrat" +1,4,10481,"turk",2,0,20,4,80,80,"USA Today","Neither" +1,4,10483,"turk",3,0,50,2,50,50,"USA Today","Democrat" +1,4,10485,"turk",3,0,1,5,99,99,"USA Today","Democrat" +1,4,10486,"turk",4,0,50,4,50,50,"USA Today","Neither" +1,4,10488,"turk",4,0,30,2,70,50,"USA Today","Republican" +1,4,10489,"turk",4,0,35,2,65,70,"USA Today","Democrat" +1,4,10493,"turk",3,0,99,5,1,1,"USA Today","Democrat" +1,4,10499,"turk",3,0,99,5,1,55,"USA Today","Democrat" +1,4,10500,"turk",2,0,1,5,99,99,"USA Today","Neither" +1,4,10501,"turk",3,0,20,3,80,50,"USA Today","Democrat" +1,4,10503,"turk",4,0,99,4,1,1,"USA Today","Democrat" +1,4,10505,"turk",4,0,10,3,90,90,"USA Today","Republican" +1,4,10508,"turk",2,0,0,2,100,50,"USA Today","Democrat" +1,4,10521,"turk",4,0,1,5,99,99,"USA Today","Democrat" +1,4,10522,"turk",3,0,0,5,100,95,"USA Today","Republican" +1,4,10523,"turk",3,0,99,2,1,1,"USA Today","Democrat" +1,4,10525,"turk",4,0,50,5,50,50,"USA Today","Neither" +1,4,10528,"turk",3,0,1,4,99,99,"USA Today","Neither" +1,4,10529,"turk",3,0,1,4,99,99,"USA Today","Republican" +1,4,10534,"turk",2,0,97,4,3,3,"USA Today","Republican" +1,4,9742,"turk",4,1,100,3,100,100,"USA Today","Neither" +1,4,9745,"turk",3,1,80,2,80,30,"USA Today","Republican" +1,4,9746,"turk",2,1,1,3,1,1,"USA Today","Neither" +1,4,9748,"turk",2,1,25,2,25,20,"USA Today","Democrat" +1,4,9749,"turk",2,1,100,4,100,100,"USA Today","Democrat" +1,4,9750,"turk",3,1,99,3,99,99,"USA Today","Republican" +1,4,9751,"turk",2,1,99,2,99,99,"USA Today","Democrat" +1,4,9753,"turk",3,1,85,4,85,79,"USA Today","Democrat" +1,4,9754,"turk",4,1,95,4,95,95,"USA Today","Republican" +1,4,9757,"turk",2,1,99,2,99,50,"USA Today","Democrat" +1,4,9758,"turk",4,1,100,2,100,50,"USA Today","Neither" +1,4,9759,"turk",2,1,95,4,95,90,"USA Today","Republican" +1,4,9760,"turk",3,1,50,2,50,45,"USA Today","Neither" +1,4,9765,"turk",4,1,99,4,99,99,"USA Today","Neither" +1,4,9770,"turk",3,1,85,5,85,85,"USA Today","Democrat" +1,4,9771,"turk",2,1,99,4,99,99,"USA Today","Democrat" +1,4,9776,"turk",3,1,99,3,99,99,"USA Today","Neither" +1,4,9778,"turk",4,1,90,5,90,90,"USA Today","Neither" +1,4,9779,"turk",3,1,99,2,99,95,"USA Today","Democrat" +1,4,9782,"turk",3,1,95,4,95,95,"USA Today","Republican" +1,4,9784,"turk",2,1,99,2,99,99,"USA Today","Republican" +1,4,9789,"turk",3,1,99,3,99,99,"USA Today","Democrat" +1,4,9790,"turk",3,1,99,3,99,0,"USA Today","Neither" +1,4,9793,"turk",2,1,99,4,99,99,"USA Today","Neither" +1,4,9796,"turk",4,1,11,2,11,12,"USA Today","Democrat" +1,4,9797,"turk",2,1,90,3,90,90,"USA Today","Republican" +1,4,9799,"turk",3,1,99,5,99,99,"USA Today","Democrat" +1,4,9800,"turk",4,1,85,3,85,80,"USA Today","Republican" +1,4,9801,"turk",2,1,99,4,99,99,"USA Today","Neither" +1,4,9811,"turk",2,1,99,5,99,99,"USA Today","Republican" +1,4,9812,"turk",4,1,99,3,99,96,"USA Today","Republican" +1,4,9816,"turk",3,1,99,3,99,99,"USA Today","Democrat" +1,4,9819,"turk",2,1,95,2,95,90,"USA Today","Republican" +1,4,9824,"turk",3,1,1,4,1,1,"USA Today","Democrat" +1,4,9834,"turk",4,1,75,3,75,50,"USA Today","Democrat" +1,4,9838,"turk",3,1,60,3,60,50,"USA Today","Democrat" +1,4,9840,"turk",4,1,50,4,50,0,"USA Today","Democrat" +1,4,9841,"turk",2,1,99,3,99,99,"USA Today","Democrat" +1,4,9845,"turk",4,1,60,3,60,50,"USA Today","Neither" +1,4,9846,"turk",4,1,80,5,80,80,"USA Today","Democrat" +1,4,9848,"turk",4,1,80,5,80,80,"USA Today","Neither" +1,4,9850,"turk",3,1,99,5,99,99,"USA Today","Republican" +1,4,9853,"turk",4,1,70,3,70,55,"USA Today","Neither" +1,4,9854,"turk",4,1,99,3,99,99,"USA Today","Neither" +1,4,9856,"turk",3,1,1,3,1,3,"USA Today","Republican" +1,4,9860,"turk",4,1,99,3,99,99,"USA Today","Republican" +1,4,9862,"turk",3,1,1,3,1,15,"USA Today","Democrat" +1,4,9873,"turk",3,1,99,3,99,90,"USA Today","Democrat" +1,4,9876,"turk",4,1,99,3,99,99,"USA Today","Democrat" +1,4,9877,"turk",4,1,60,2,60,50,"USA Today","Neither" +1,4,9880,"turk",4,1,100,3,100,100,"USA Today","Democrat" +1,4,9882,"turk",2,1,90,5,90,90,"USA Today","Democrat" +1,4,9888,"turk",4,1,1,5,1,1,"USA Today","Republican" +1,4,9893,"turk",2,1,85,4,85,80,"USA Today","Democrat" +1,4,9895,"turk",2,1,95,3,95,90,"USA Today","Neither" +1,4,9901,"turk",4,1,99,4,99,80,"USA Today","Republican" +1,4,9903,"turk",3,1,95,5,95,95,"USA Today","Democrat" +1,4,9904,"turk",2,1,95,4,95,80,"USA Today","Democrat" +1,4,9908,"turk",2,1,85,4,85,85,"USA Today","Democrat" +1,4,9909,"turk",3,1,80,3,80,80,"USA Today","Neither" +1,4,9911,"turk",2,1,7,4,7,10,"USA Today","Democrat" +1,4,9912,"turk",3,1,99,3,99,80,"USA Today","Democrat" +1,4,9915,"turk",3,1,99,2,99,99,"USA Today","Democrat" +1,4,9919,"turk",3,1,1,5,1,99,"USA Today","Democrat" +1,4,9924,"turk",4,1,99,3,99,99,"USA Today","Democrat" +1,4,9926,"turk",4,1,99,5,99,99,"USA Today","Republican" +1,4,9932,"turk",4,1,1,4,1,1,"USA Today","Democrat" +1,4,9934,"turk",4,1,75,3,75,70,"USA Today","Democrat" +1,4,9936,"turk",3,1,90,2,90,80,"USA Today","Republican" +1,4,9943,"turk",3,1,80,3,80,80,"USA Today","Republican" +1,4,9944,"turk",3,1,20,5,20,20,"USA Today","Democrat" +1,4,9945,"turk",2,1,99,4,99,99,"USA Today","Democrat" +1,4,9950,"turk",2,1,80,5,80,70,"USA Today","Democrat" +1,4,9952,"turk",3,1,1,5,1,99,"USA Today","Democrat" +1,4,9954,"turk",4,1,95,5,95,95,"USA Today","Democrat" +1,4,9957,"turk",4,1,99,2,99,99,"USA Today","Republican" +1,4,9962,"turk",2,1,99,3,99,99,"USA Today","Democrat" +1,4,9969,"turk",3,1,1,3,1,1,"USA Today","Democrat" +1,4,9973,"turk",4,1,90,3,90,80,"USA Today","Democrat" +1,4,9974,"turk",2,1,85,4,85,75,"USA Today","Democrat" +1,4,9977,"turk",3,1,100,5,100,100,"USA Today","Neither" +1,4,9979,"turk",4,1,20,3,20,20,"USA Today","Republican" +1,4,9980,"turk",2,1,99,5,99,99,"USA Today","Republican" +1,4,9981,"turk",4,1,90,2,90,90,"USA Today","Democrat" +1,4,9984,"turk",4,1,99,5,99,99,"USA Today","Democrat" +1,4,9985,"turk",3,1,10,4,10,80,"USA Today","Democrat" +1,4,9989,"turk",2,1,40,2,40,60,"USA Today","Democrat" +1,4,9992,"turk",3,1,99,4,99,99,"USA Today","Republican" +1,4,9994,"turk",2,1,99,3,99,99,"USA Today","Democrat" +1,4,9995,"turk",4,1,99,4,99,98,"USA Today","Republican" +1,4,9996,"turk",2,1,60,3,60,50,"USA Today","Democrat" +1,4,9997,"turk",4,1,99,4,99,99,"USA Today","Democrat" +1,4,9998,"turk",4,1,99,5,99,99,"USA Today","Democrat" +1,4,10004,"turk",3,1,99,4,99,99,"USA Today","Democrat" +1,4,10005,"turk",3,1,90,5,90,90,"USA Today","Republican" +1,4,10006,"turk",4,1,99,5,99,100,"USA Today","Democrat" +1,4,10008,"turk",4,1,99,5,99,99,"USA Today","Republican" +1,4,10009,"turk",2,1,99,4,99,99,"USA Today","Republican" +1,4,10011,"turk",3,1,80,2,80,70,"USA Today","Democrat" +1,4,10012,"turk",3,1,99,4,99,99,"USA Today","Neither" +1,4,10016,"turk",2,1,99,3,99,60,"USA Today","Neither" +1,4,10021,"turk",2,1,90,4,90,70,"USA Today","Democrat" +1,4,10022,"turk",4,1,99,4,99,99,"USA Today","Neither" +1,4,10023,"turk",3,1,0,2,0,0,"USA Today","Republican" +1,4,10025,"turk",4,1,75,3,75,60,"USA Today","Democrat" +1,4,10029,"turk",2,1,85,3,85,80,"USA Today","Democrat" +1,4,10035,"turk",3,1,60,2,60,60,"USA Today","Democrat" +1,4,10040,"turk",3,1,89,3,89,99,"USA Today","Democrat" +1,4,10045,"turk",2,1,80,2,80,50,"USA Today","Neither" +1,4,10050,"turk",4,1,80,2,80,50,"USA Today","Democrat" +1,4,10053,"turk",3,1,99,5,99,99,"USA Today","Republican" +1,4,10057,"turk",3,1,99,4,99,99,"USA Today","Republican" +1,4,10060,"turk",4,1,60,2,60,60,"USA Today","Democrat" +1,4,10063,"turk",4,1,99,5,99,99,"USA Today","Republican" +1,4,10064,"turk",2,1,1,3,1,1,"USA Today","Republican" +1,4,10068,"turk",2,1,99,2,99,99,"USA Today","Democrat" +1,4,10075,"turk",2,1,99,2,99,0,"USA Today","Democrat" +1,4,10079,"turk",2,1,90,3,90,80,"USA Today","Republican" +1,4,10082,"turk",2,1,1,2,1,99,"USA Today","Neither" +1,4,10086,"turk",2,1,80,2,80,40,"USA Today","Neither" +1,4,10088,"turk",3,1,85,3,85,80,"USA Today","Republican" +1,4,10091,"turk",4,1,70,2,70,60,"USA Today","Democrat" +1,4,10098,"turk",4,1,75,5,75,80,"USA Today","Neither" +1,4,10099,"turk",3,1,70,2,70,60,"USA Today","Democrat" +1,4,10100,"turk",2,1,55,2,55,70,"USA Today","Democrat" +1,4,10102,"turk",4,1,99,4,99,85,"USA Today","Democrat" +1,4,10106,"turk",4,1,99,3,99,99,"USA Today","Democrat" +1,4,10110,"turk",3,1,99,4,99,99,"USA Today","Republican" +1,4,10112,"turk",3,1,95,4,95,90,"USA Today","Democrat" +1,4,10114,"turk",3,1,50,5,50,99,"USA Today","Republican" +1,4,10117,"turk",3,1,99,4,99,95,"USA Today","Democrat" +1,4,10119,"turk",3,1,99,2,99,99,"USA Today","Neither" +1,4,10122,"turk",2,1,80,4,80,80,"USA Today","Democrat" +1,4,10123,"turk",4,1,99,2,99,50,"USA Today","Republican" +1,4,10124,"turk",2,1,99,3,99,99,"USA Today","Republican" +1,4,10127,"turk",4,1,99,5,99,99,"USA Today","Republican" +1,4,10128,"turk",3,1,99,2,99,2,"USA Today","Democrat" +1,4,10129,"turk",2,1,99,4,99,88,"USA Today","Democrat" +1,4,10132,"turk",3,1,22,3,22,22,"USA Today","Republican" +1,4,10137,"turk",2,1,90,5,90,90,"USA Today","Democrat" +1,4,10139,"turk",2,1,82,2,82,20,"USA Today","Republican" +1,4,10141,"turk",3,1,50,2,50,50,"USA Today","Republican" +1,4,10143,"turk",4,1,99,3,99,99,"USA Today","Democrat" +1,4,10144,"turk",3,1,88,3,88,75,"USA Today","Democrat" +1,4,10148,"turk",2,1,99,5,99,99,"USA Today","Republican" +1,4,10151,"turk",3,1,99,3,99,99,"USA Today","Democrat" +1,4,10156,"turk",2,1,95,3,95,90,"USA Today","Democrat" +1,4,10159,"turk",3,1,20,2,20,10,"USA Today","Republican" +1,4,10164,"turk",2,1,50,2,50,50,"USA Today","Democrat" +1,4,10165,"turk",4,1,99,5,99,99,"USA Today","Democrat" +1,4,10170,"turk",4,1,100,2,100,100,"USA Today","Neither" +1,4,10172,"turk",4,1,99,4,99,99,"USA Today","Republican" +1,4,10173,"turk",3,1,50,5,50,66,"USA Today","Democrat" +1,4,10177,"turk",3,1,99,4,99,90,"USA Today","Democrat" +1,4,10180,"turk",2,1,50,3,50,90,"USA Today","Neither" +1,4,10181,"turk",2,1,100,4,100,99,"USA Today","Democrat" +1,4,10185,"turk",3,1,99,2,99,0,"USA Today","Republican" +1,4,10187,"turk",3,1,99,5,99,99,"USA Today","Democrat" +1,4,10189,"turk",4,1,1,4,1,1,"USA Today","Democrat" +1,4,10196,"turk",2,1,99,3,99,1,"USA Today","Democrat" +1,4,10198,"turk",3,1,75,3,75,60,"USA Today","Democrat" +1,4,10201,"turk",3,1,83,4,83,80,"USA Today","Republican" +1,4,10205,"turk",2,1,50,2,50,30,"USA Today","Democrat" +1,4,10206,"turk",4,1,66,5,66,88,"USA Today","Democrat" +1,4,10207,"turk",2,1,100,5,100,100,"USA Today","Republican" +1,4,10208,"turk",3,1,89,2,89,33,"USA Today","Democrat" +1,4,10212,"turk",3,1,99,4,99,2,"USA Today","Democrat" +1,4,10214,"turk",3,1,60,4,60,66,"USA Today","Neither" +1,4,10216,"turk",4,1,99,5,99,99,"USA Today","Republican" +1,4,10217,"turk",4,1,1,3,1,99,"USA Today","Democrat" +1,4,10219,"turk",2,1,79,5,79,79,"USA Today","Democrat" +1,4,10222,"turk",2,1,1,3,1,1,"USA Today","Neither" +1,4,10225,"turk",2,1,2,5,2,2,"USA Today","Republican" +1,4,10233,"turk",3,1,100,4,100,100,"USA Today","Neither" +1,4,10234,"turk",2,1,99,4,99,90,"USA Today","Republican" +1,4,10237,"turk",2,1,80,3,80,80,"USA Today","Democrat" +1,4,10238,"turk",4,1,80,2,80,75,"USA Today","Democrat" +1,4,10240,"turk",4,1,50,4,50,50,"USA Today","Neither" +1,4,10243,"turk",3,1,99,2,99,1,"USA Today","Republican" +1,4,10244,"turk",2,1,99,5,99,99,"USA Today","Republican" +1,4,10246,"turk",2,1,50,5,50,100,"USA Today","Democrat" +1,4,10247,"turk",3,1,99,4,99,99,"USA Today","Democrat" +1,4,10249,"turk",3,1,80,4,80,90,"USA Today","Democrat" +1,4,10250,"turk",2,1,55,2,55,22,"USA Today","Democrat" +1,4,10251,"turk",3,1,99,2,99,50,"USA Today","Democrat" +1,4,10253,"turk",4,1,75,3,75,20,"USA Today","Democrat" +1,4,10255,"turk",3,1,50,5,50,50,"USA Today","Democrat" +1,4,10257,"turk",3,1,50,4,50,99,"USA Today","Democrat" +1,4,10259,"turk",4,1,99,4,99,50,"USA Today","Democrat" +1,4,10260,"turk",2,1,99,3,99,99,"USA Today","Neither" +1,4,10265,"turk",2,1,90,3,90,90,"USA Today","Republican" +1,4,10266,"turk",4,1,50,2,50,1,"USA Today","Republican" +1,4,10267,"turk",3,1,99,2,99,1,"USA Today","Democrat" +1,4,10269,"turk",4,1,99,5,99,99,"USA Today","Democrat" +1,4,10270,"turk",4,1,99,5,99,99,"USA Today","Republican" +1,4,10278,"turk",2,1,99,2,99,1,"USA Today","Democrat" +1,4,10282,"turk",2,1,90,4,90,90,"USA Today","Neither" +1,4,10283,"turk",3,1,75,5,75,75,"USA Today","Republican" +1,4,10286,"turk",3,1,50,2,50,50,"USA Today","Republican" +1,4,10287,"turk",4,1,80,2,80,60,"USA Today","Democrat" +1,4,10288,"turk",4,1,99,2,99,99,"USA Today","Neither" +1,4,10293,"turk",2,1,95,5,95,95,"USA Today","Democrat" +1,4,10296,"turk",2,1,100,5,100,100,"USA Today","Republican" +1,4,10300,"turk",3,1,99,3,99,90,"USA Today","Democrat" +1,4,10302,"turk",3,1,99,3,99,99,"USA Today","Republican" +1,4,10304,"turk",3,1,99,3,99,1,"USA Today","Democrat" +1,4,10310,"turk",3,1,100,5,100,100,"USA Today","Republican" +1,4,10313,"turk",2,1,30,2,30,50,"USA Today","Democrat" +1,4,10314,"turk",4,1,99,3,99,75,"USA Today","" +1,4,10321,"turk",2,1,99,3,99,99,"USA Today","Republican" +1,4,10323,"turk",3,1,99,4,99,100,"USA Today","Democrat" +1,4,10326,"turk",3,1,1,5,1,30,"USA Today","Republican" +1,4,10327,"turk",4,1,99,3,99,99,"USA Today","Democrat" +1,4,10330,"turk",4,1,85,5,85,80,"USA Today","Democrat" +1,4,10333,"turk",4,1,100,5,100,99,"USA Today","Neither" +1,4,10336,"turk",3,1,99,5,99,99,"USA Today","Neither" +1,4,10338,"turk",2,1,99,3,99,10,"USA Today","Neither" +1,4,10339,"turk",3,1,99,4,99,99,"USA Today","Democrat" +1,4,10343,"turk",3,1,60,3,60,30,"USA Today","Republican" +1,4,10347,"turk",4,1,5,4,5,10,"USA Today","Democrat" +1,4,10348,"turk",4,1,99,5,99,99,"USA Today","Democrat" +1,4,10349,"turk",4,1,99,5,99,99,"USA Today","Republican" +1,4,10351,"turk",2,1,86,5,86,82,"USA Today","Democrat" +1,4,10353,"turk",2,1,99,4,99,90,"USA Today","Democrat" +1,4,10356,"turk",4,1,99,5,99,50,"USA Today","Republican" +1,4,10358,"turk",2,1,50,4,50,50,"USA Today","Republican" +1,4,10362,"turk",3,1,100,5,100,100,"USA Today","Democrat" +1,4,10363,"turk",3,1,80,5,80,90,"USA Today","Republican" +1,4,10364,"turk",4,1,99,5,99,99,"USA Today","Democrat" +1,4,10366,"turk",3,1,75,4,75,80,"USA Today","Democrat" +1,4,10372,"turk",3,1,80,4,80,80,"USA Today","Neither" +1,4,10375,"turk",2,1,99,4,99,94,"USA Today","Democrat" +1,4,10377,"turk",2,1,99,4,99,0,"USA Today","Democrat" +1,4,10378,"turk",2,1,100,3,100,99,"USA Today","Neither" +1,4,10379,"turk",2,1,99,4,99,89,"USA Today","Democrat" +1,4,10380,"turk",3,1,85,5,85,85,"USA Today","Republican" +1,4,10388,"turk",3,1,90,3,90,80,"USA Today","Neither" +1,4,10393,"turk",3,1,99,2,99,100,"USA Today","Democrat" +1,4,10395,"turk",2,1,90,2,90,85,"USA Today","Neither" +1,4,10397,"turk",2,1,99,3,99,99,"USA Today","Neither" +1,4,10401,"turk",2,1,80,5,80,60,"USA Today","Republican" +1,4,10405,"turk",2,1,99,2,99,99,"USA Today","Democrat" +1,4,10407,"turk",3,1,86,4,86,85,"USA Today","Neither" +1,4,10415,"turk",3,1,99,5,99,99,"USA Today","Democrat" +1,4,10420,"turk",2,1,99,4,99,99,"USA Today","Republican" +1,4,10421,"turk",2,1,99,5,99,50,"USA Today","Democrat" +1,4,10424,"turk",3,1,99,5,99,1,"USA Today","Republican" +1,4,10428,"turk",3,1,90,3,90,90,"USA Today","Republican" +1,4,10430,"turk",2,1,99,2,99,50,"USA Today","Neither" +1,4,10432,"turk",3,1,90,4,90,85,"USA Today","Democrat" +1,4,10434,"turk",2,1,10,3,10,10,"USA Today","Democrat" +1,4,10435,"turk",2,1,80,4,80,60,"USA Today","Democrat" +1,4,10436,"turk",4,1,99,4,99,99,"USA Today","Democrat" +1,4,10437,"turk",4,1,70,5,70,70,"USA Today","Democrat" +1,4,10445,"turk",2,1,99,5,99,99,"USA Today","Democrat" +1,4,10446,"turk",3,1,59,5,59,20,"USA Today","Democrat" +1,4,10447,"turk",4,1,99,5,99,1,"USA Today","Neither" +1,4,10451,"turk",2,1,25,3,25,50,"USA Today","Republican" +1,4,10453,"turk",4,1,99,4,99,99,"USA Today","Democrat" +1,4,10455,"turk",4,1,99,2,99,50,"USA Today","Democrat" +1,4,10461,"turk",3,1,99,5,99,99,"USA Today","Democrat" +1,4,10462,"turk",2,1,99,5,99,99,"USA Today","Republican" +1,4,10465,"turk",2,1,0,2,0,99,"USA Today","Democrat" +1,4,10471,"turk",4,1,99,5,99,99,"USA Today","Democrat" +1,4,10472,"turk",3,1,99,4,99,90,"USA Today","Republican" +1,4,10477,"turk",3,1,96,4,96,88,"USA Today","Republican" +1,4,10478,"turk",2,1,90,2,90,80,"USA Today","Neither" +1,4,10480,"turk",4,1,88,5,88,88,"USA Today","Neither" +1,4,10482,"turk",3,1,0,4,0,67,"USA Today","Republican" +1,4,10484,"turk",2,1,100,4,100,100,"USA Today","Democrat" +1,4,10491,"turk",4,1,90,4,90,75,"USA Today","Democrat" +1,4,10492,"turk",4,1,80,2,80,40,"USA Today","Democrat" +1,4,10494,"turk",4,1,60,4,60,98,"USA Today","Republican" +1,4,10495,"turk",4,1,95,5,95,95,"USA Today","Neither" +1,4,10496,"turk",3,1,80,4,80,67,"USA Today","Republican" +1,4,10497,"turk",3,1,99,5,99,99,"USA Today","Democrat" +1,4,10498,"turk",2,1,95,4,95,90,"USA Today","Republican" +1,4,10511,"turk",2,1,99,3,99,70,"USA Today","Democrat" +1,4,10512,"turk",4,1,1,4,1,1,"USA Today","Democrat" +1,4,10515,"turk",2,1,1,3,1,1,"USA Today","Republican" +1,4,10516,"turk",2,1,99,4,99,99,"USA Today","Democrat" +1,4,10518,"turk",2,1,99,4,99,99,"USA Today","Republican" +1,4,10519,"turk",2,1,99,4,99,0,"USA Today","Republican" +1,4,10520,"turk",2,1,99,3,99,99,"USA Today","Democrat" +1,4,10524,"turk",3,1,10,2,10,10,"USA Today","Democrat" +1,4,10527,"turk",4,1,99,5,99,99,"USA Today","Democrat" +1,4,10531,"turk",3,1,50,5,50,50,"USA Today","Neither" +2,NA,51,"tess",1,0,50,1,50,NA,NA,"Neither" +2,NA,53,"tess",3,1,97,1,97,NA,NA,"Democrat" +2,NA,62,"tess",1,0,90,1,10,NA,NA,"Democrat" +2,NA,64,"tess",2,0,89,1,11,NA,NA,"Democrat" +2,NA,68,"tess",3,1,55,1,55,NA,NA,"Democrat" +2,NA,69,"tess",2,0,53,1,47,NA,NA,"Neither" +2,NA,70,"tess",3,1,68,1,68,NA,NA,"Republican" +2,NA,72,"tess",1,1,93,1,93,NA,NA,"Democrat" +2,NA,77,"tess",4,0,26,1,74,NA,NA,"Democrat" +2,NA,78,"tess",1,1,10,1,10,NA,NA,"Democrat" +2,NA,80,"tess",1,1,64,1,64,NA,NA,"Republican" +2,NA,90,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,94,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,95,"tess",4,1,33,1,33,NA,NA,"Democrat" +2,NA,96,"tess",1,0,61,1,39,NA,NA,"Democrat" +2,NA,114,"tess",4,0,99,1,1,NA,NA,"Republican" +2,NA,118,"tess",4,1,70,1,70,NA,NA,"Democrat" +2,NA,120,"tess",3,0,99,1,1,NA,NA,"Democrat" +2,NA,128,"tess",3,0,57,1,43,NA,NA,"Republican" +2,NA,130,"tess",4,1,30,1,30,NA,NA,"Republican" +2,NA,136,"tess",3,1,40,1,40,NA,NA,"Democrat" +2,NA,140,"tess",2,1,95,1,95,NA,NA,"Republican" +2,NA,151,"tess",2,0,31,1,69,NA,NA,"Republican" +2,NA,152,"tess",4,1,98,1,98,NA,NA,"Neither" +2,NA,165,"tess",3,0,16,1,84,NA,NA,"Democrat" +2,NA,182,"tess",1,0,76,1,24,NA,NA,"Democrat" +2,NA,187,"tess",4,0,79,1,21,NA,NA,"Republican" +2,NA,188,"tess",3,0,70,1,30,NA,NA,"Democrat" +2,NA,189,"tess",3,0,80,1,20,NA,NA,"Republican" +2,NA,196,"tess",3,0,84,1,16,NA,NA,"Democrat" +2,NA,206,"tess",1,1,96,1,96,NA,NA,"Republican" +2,NA,207,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,216,"tess",1,0,100,1,0,NA,NA,"Democrat" +2,NA,221,"tess",4,0,97,1,3,NA,NA,"Democrat" +2,NA,224,"tess",1,0,11,1,89,NA,NA,"Democrat" +2,NA,234,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,247,"tess",2,0,85,1,15,NA,NA,"Republican" +2,NA,262,"tess",4,1,1,1,1,NA,NA,"Democrat" +2,NA,263,"tess",1,1,24,1,24,NA,NA,"Neither" +2,NA,266,"tess",4,0,29,1,71,NA,NA,"Democrat" +2,NA,296,"tess",3,0,78,1,22,NA,NA,"Republican" +2,NA,299,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,301,"tess",1,0,10,1,90,NA,NA,"Democrat" +2,NA,308,"tess",2,0,89,1,11,NA,NA,"Democrat" +2,NA,315,"tess",3,0,81,1,19,NA,NA,"Democrat" +2,NA,334,"tess",1,0,89,1,11,NA,NA,"Democrat" +2,NA,336,"tess",2,0,95,1,5,NA,NA,"Republican" +2,NA,342,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,347,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,363,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,366,"tess",1,1,88,1,88,NA,NA,"Democrat" +2,NA,372,"tess",4,0,70,1,30,NA,NA,"Republican" +2,NA,379,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,389,"tess",3,1,20,1,20,NA,NA,"Democrat" +2,NA,397,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,399,"tess",3,0,31,1,69,NA,NA,"Neither" +2,NA,405,"tess",2,1,3,1,3,NA,NA,"Republican" +2,NA,413,"tess",2,1,87,1,87,NA,NA,"Democrat" +2,NA,421,"tess",3,0,98,1,2,NA,NA,"Democrat" +2,NA,426,"tess",4,0,70,1,30,NA,NA,"Republican" +2,NA,430,"tess",2,0,71,1,29,NA,NA,"Republican" +2,NA,431,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,440,"tess",1,1,99,1,99,NA,NA,"Democrat" +2,NA,443,"tess",1,1,93,1,93,NA,NA,"Republican" +2,NA,450,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,461,"tess",1,1,58,1,58,NA,NA,"Republican" +2,NA,478,"tess",1,1,100,1,100,NA,NA,"Democrat" +2,NA,482,"tess",1,0,99,1,1,NA,NA,"Democrat" +2,NA,485,"tess",1,1,39,1,39,NA,NA,"Democrat" +2,NA,491,"tess",2,0,50,1,50,NA,NA,"Neither" +2,NA,493,"tess",4,1,10,1,10,NA,NA,"Republican" +2,NA,502,"tess",4,0,70,1,30,NA,NA,"Democrat" +2,NA,503,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,508,"tess",3,1,49,1,49,NA,NA,"Republican" +2,NA,509,"tess",2,0,0,1,100,NA,NA,"Democrat" +2,NA,512,"tess",3,1,70,1,70,NA,NA,"Democrat" +2,NA,516,"tess",2,0,5,1,95,NA,NA,"Democrat" +2,NA,522,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,530,"tess",3,1,66,1,66,NA,NA,"Republican" +2,NA,541,"tess",1,0,91,1,9,NA,NA,"Democrat" +2,NA,542,"tess",2,0,3,1,97,NA,NA,"Republican" +2,NA,549,"tess",4,1,49,1,49,NA,NA,"Democrat" +2,NA,550,"tess",2,1,46,1,46,NA,NA,"Republican" +2,NA,567,"tess",4,0,1,1,99,NA,NA,"Democrat" +2,NA,573,"tess",4,0,2,1,98,NA,NA,"Democrat" +2,NA,574,"tess",3,1,48,1,48,NA,NA,"Democrat" +2,NA,584,"tess",4,1,45,1,45,NA,NA,"Democrat" +2,NA,589,"tess",4,0,81,1,19,NA,NA,"Republican" +2,NA,591,"tess",3,0,42,1,58,NA,NA,"Democrat" +2,NA,596,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,600,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,602,"tess",1,0,77,1,23,NA,NA,"Democrat" +2,NA,603,"tess",3,1,80,1,80,NA,NA,"Democrat" +2,NA,608,"tess",1,0,95,1,5,NA,NA,"Democrat" +2,NA,611,"tess",4,0,76,1,24,NA,NA,"Republican" +2,NA,617,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,622,"tess",1,1,20,1,20,NA,NA,"Democrat" +2,NA,627,"tess",1,1,76,1,76,NA,NA,"Democrat" +2,NA,633,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,638,"tess",4,0,46,1,54,NA,NA,"Republican" +2,NA,639,"tess",2,1,20,1,20,NA,NA,"Democrat" +2,NA,649,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,675,"tess",1,0,85,1,15,NA,NA,"Democrat" +2,NA,680,"tess",1,1,18,1,18,NA,NA,"Republican" +2,NA,684,"tess",4,0,80,1,20,NA,NA,"Republican" +2,NA,689,"tess",4,1,95,1,95,NA,NA,"Democrat" +2,NA,693,"tess",4,0,25,1,75,NA,NA,"Republican" +2,NA,702,"tess",4,0,74,1,26,NA,NA,"Democrat" +2,NA,709,"tess",1,1,83,1,83,NA,NA,"Republican" +2,NA,711,"tess",2,0,31,1,69,NA,NA,"Democrat" +2,NA,717,"tess",4,0,90,1,10,NA,NA,"Republican" +2,NA,727,"tess",2,0,98,1,2,NA,NA,"Republican" +2,NA,728,"tess",4,0,98,1,2,NA,NA,"Democrat" +2,NA,734,"tess",1,0,12,1,88,NA,NA,"Republican" +2,NA,740,"tess",1,0,42,1,58,NA,NA,"Democrat" +2,NA,752,"tess",2,1,72,1,72,NA,NA,"Democrat" +2,NA,753,"tess",1,0,95,1,5,NA,NA,"Republican" +2,NA,766,"tess",1,0,61,1,39,NA,NA,"Republican" +2,NA,770,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,771,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,772,"tess",1,1,92,1,92,NA,NA,"Republican" +2,NA,773,"tess",1,0,67,1,33,NA,NA,"Democrat" +2,NA,783,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,786,"tess",4,0,90,1,10,NA,NA,"Republican" +2,NA,794,"tess",1,1,93,1,93,NA,NA,"Democrat" +2,NA,803,"tess",2,1,60,1,60,NA,NA,"Democrat" +2,NA,804,"tess",2,0,37,1,63,NA,NA,"Democrat" +2,NA,806,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,823,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,828,"tess",4,1,20,1,20,NA,NA,"Neither" +2,NA,829,"tess",4,1,71,1,71,NA,NA,"Neither" +2,NA,836,"tess",1,0,95,1,5,NA,NA,"Democrat" +2,NA,845,"tess",2,1,75,1,75,NA,NA,"Republican" +2,NA,847,"tess",4,0,62,1,38,NA,NA,"Democrat" +2,NA,851,"tess",2,1,19,1,19,NA,NA,"Republican" +2,NA,852,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,855,"tess",3,1,60,1,60,NA,NA,"Republican" +2,NA,857,"tess",4,0,NA,1,NA,NA,NA,"Democrat" +2,NA,857,"tess",4,0,NA,2,NA,NA,NA,"Democrat" +2,NA,861,"tess",2,0,10,1,90,NA,NA,"Democrat" +2,NA,878,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,883,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,886,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,890,"tess",2,0,9,1,91,NA,NA,"Republican" +2,NA,891,"tess",2,0,29,1,71,NA,NA,"Republican" +2,NA,895,"tess",4,0,10,1,90,NA,NA,"Democrat" +2,NA,898,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,903,"tess",3,1,47,1,47,NA,NA,"Republican" +2,NA,912,"tess",2,1,51,1,51,NA,NA,"Democrat" +2,NA,918,"tess",4,0,64,1,36,NA,NA,"Republican" +2,NA,919,"tess",3,0,99,1,1,NA,NA,"Democrat" +2,NA,922,"tess",3,1,79,1,79,NA,NA,"Republican" +2,NA,928,"tess",4,1,70,1,70,NA,NA,"Republican" +2,NA,943,"tess",4,0,95,1,5,NA,NA,"Republican" +2,NA,950,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,952,"tess",4,1,7,1,7,NA,NA,"Republican" +2,NA,958,"tess",4,1,93,1,93,NA,NA,"Democrat" +2,NA,961,"tess",1,0,81,1,19,NA,NA,"Democrat" +2,NA,968,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,978,"tess",3,0,41,1,59,NA,NA,"Democrat" +2,NA,985,"tess",2,0,99,1,1,NA,NA,"Republican" +2,NA,990,"tess",3,1,75,1,75,NA,NA,"Republican" +2,NA,997,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,1018,"tess",1,1,29,1,29,NA,NA,"Republican" +2,NA,1020,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,1031,"tess",3,1,88,1,88,NA,NA,"Democrat" +2,NA,1035,"tess",4,1,70,1,70,NA,NA,"Democrat" +2,NA,1036,"tess",2,1,99,1,99,NA,NA,"Republican" +2,NA,1046,"tess",4,1,7,1,7,NA,NA,"Republican" +2,NA,1047,"tess",2,0,62,1,38,NA,NA,"Republican" +2,NA,1051,"tess",2,0,70,1,30,NA,NA,"Republican" +2,NA,1055,"tess",2,0,80,1,20,NA,NA,"Republican" +2,NA,1058,"tess",3,0,86,1,14,NA,NA,"Republican" +2,NA,1062,"tess",2,1,61,1,61,NA,NA,"Democrat" +2,NA,1064,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,1065,"tess",2,1,40,1,40,NA,NA,"Republican" +2,NA,1066,"tess",3,0,42,1,58,NA,NA,"Democrat" +2,NA,1067,"tess",1,0,100,1,0,NA,NA,"Republican" +2,NA,1068,"tess",1,0,60,1,40,NA,NA,"Republican" +2,NA,1081,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,1083,"tess",1,0,10,1,90,NA,NA,"Democrat" +2,NA,1084,"tess",4,0,62,1,38,NA,NA,"Republican" +2,NA,1087,"tess",1,1,71,1,71,NA,NA,"Democrat" +2,NA,1096,"tess",1,0,100,1,0,NA,NA,"Democrat" +2,NA,1097,"tess",3,0,32,1,68,NA,NA,"Republican" +2,NA,1100,"tess",2,1,3,1,3,NA,NA,"Republican" +2,NA,1104,"tess",4,1,93,1,93,NA,NA,"Democrat" +2,NA,1110,"tess",3,0,10,1,90,NA,NA,"Neither" +2,NA,1114,"tess",3,1,49,1,49,NA,NA,"Neither" +2,NA,1119,"tess",1,0,80,1,20,NA,NA,"Republican" +2,NA,1122,"tess",2,1,99,1,99,NA,NA,"Republican" +2,NA,1133,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,1141,"tess",2,0,90,1,10,NA,NA,"Democrat" +2,NA,1147,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,1148,"tess",3,1,10,1,10,NA,NA,"Republican" +2,NA,1149,"tess",4,0,8,1,92,NA,NA,"Democrat" +2,NA,1150,"tess",1,1,98,1,98,NA,NA,"Democrat" +2,NA,1156,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,1172,"tess",1,1,81,1,81,NA,NA,"Republican" +2,NA,1178,"tess",4,1,14,1,14,NA,NA,"Republican" +2,NA,1182,"tess",2,1,30,1,30,NA,NA,"Republican" +2,NA,1192,"tess",3,1,65,1,65,NA,NA,"Democrat" +2,NA,1193,"tess",4,0,1,1,99,NA,NA,"Democrat" +2,NA,1208,"tess",1,1,62,1,62,NA,NA,"Republican" +2,NA,1220,"tess",2,0,88,1,12,NA,NA,"Democrat" +2,NA,1235,"tess",1,1,31,1,31,NA,NA,"Republican" +2,NA,1246,"tess",3,1,47,1,47,NA,NA,"Republican" +2,NA,1256,"tess",3,1,86,1,86,NA,NA,"Democrat" +2,NA,1259,"tess",2,0,42,1,58,NA,NA,"Democrat" +2,NA,1260,"tess",3,0,69,1,31,NA,NA,"Democrat" +2,NA,1265,"tess",4,1,76,1,76,NA,NA,"Republican" +2,NA,1277,"tess",4,0,99,1,1,NA,NA,"Republican" +2,NA,1282,"tess",1,0,88,1,12,NA,NA,"Republican" +2,NA,1284,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,1285,"tess",4,1,61,1,61,NA,NA,"Neither" +2,NA,1288,"tess",1,1,30,1,30,NA,NA,"Republican" +2,NA,1304,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,1306,"tess",1,0,6,1,94,NA,NA,"Democrat" +2,NA,1307,"tess",1,1,70,1,70,NA,NA,"Republican" +2,NA,1309,"tess",1,1,97,1,97,NA,NA,"Democrat" +2,NA,1311,"tess",4,0,95,1,5,NA,NA,"Democrat" +2,NA,1314,"tess",2,0,21,1,79,NA,NA,"Democrat" +2,NA,1321,"tess",3,1,20,1,20,NA,NA,"Republican" +2,NA,1330,"tess",4,0,75,1,25,NA,NA,"Republican" +2,NA,1336,"tess",3,0,29,1,71,NA,NA,"Republican" +2,NA,1348,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,1356,"tess",4,0,80,1,20,NA,NA,"Republican" +2,NA,1366,"tess",2,0,47,1,53,NA,NA,"Democrat" +2,NA,1376,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,1382,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,1397,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,1402,"tess",3,1,0,1,0,NA,NA,"Republican" +2,NA,1408,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,1416,"tess",4,1,84,1,84,NA,NA,"Republican" +2,NA,1418,"tess",2,0,92,1,8,NA,NA,"Republican" +2,NA,1419,"tess",1,0,59,1,41,NA,NA,"Republican" +2,NA,1426,"tess",2,1,25,1,25,NA,NA,"Democrat" +2,NA,1444,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,1445,"tess",2,0,31,1,69,NA,NA,"Republican" +2,NA,1454,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,1461,"tess",1,1,37,1,37,NA,NA,"Democrat" +2,NA,1464,"tess",2,0,1,1,99,NA,NA,"Democrat" +2,NA,1468,"tess",4,1,72,1,72,NA,NA,"Republican" +2,NA,1485,"tess",1,0,98,1,2,NA,NA,"Democrat" +2,NA,1486,"tess",1,1,76,1,76,NA,NA,"Democrat" +2,NA,1491,"tess",4,0,2,1,98,NA,NA,"Republican" +2,NA,1500,"tess",3,0,60,1,40,NA,NA,"Democrat" +2,NA,1506,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,1507,"tess",2,0,90,1,10,NA,NA,"Democrat" +2,NA,1510,"tess",4,1,21,1,21,NA,NA,"Republican" +2,NA,1511,"tess",3,1,4,1,4,NA,NA,"Republican" +2,NA,1518,"tess",3,1,68,1,68,NA,NA,"Democrat" +2,NA,1523,"tess",1,0,85,1,15,NA,NA,"Republican" +2,NA,1530,"tess",3,1,16,1,16,NA,NA,"Republican" +2,NA,1532,"tess",1,1,67,1,67,NA,NA,"Republican" +2,NA,1541,"tess",2,0,60,1,40,NA,NA,"Republican" +2,NA,1551,"tess",3,1,41,1,41,NA,NA,"Republican" +2,NA,1552,"tess",4,0,58,1,42,NA,NA,"Republican" +2,NA,1553,"tess",3,0,99,1,1,NA,NA,"Democrat" +2,NA,1556,"tess",1,1,75,1,75,NA,NA,"Democrat" +2,NA,1563,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,1565,"tess",3,1,85,1,85,NA,NA,"Democrat" +2,NA,1600,"tess",4,1,1,1,1,NA,NA,"Republican" +2,NA,1605,"tess",3,1,75,1,75,NA,NA,"Republican" +2,NA,1608,"tess",4,0,20,1,80,NA,NA,"Republican" +2,NA,1618,"tess",1,1,39,1,39,NA,NA,"Republican" +2,NA,1624,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,1631,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,1634,"tess",1,0,100,1,0,NA,NA,"Democrat" +2,NA,1644,"tess",4,1,56,1,56,NA,NA,"Democrat" +2,NA,1654,"tess",1,1,82,1,82,NA,NA,"Democrat" +2,NA,1657,"tess",2,1,10,1,10,NA,NA,"Republican" +2,NA,1663,"tess",2,1,65,1,65,NA,NA,"Neither" +2,NA,1668,"tess",4,0,85,1,15,NA,NA,"Democrat" +2,NA,1669,"tess",1,1,88,1,88,NA,NA,"Democrat" +2,NA,1673,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,1674,"tess",1,1,40,1,40,NA,NA,"Republican" +2,NA,1689,"tess",3,1,98,1,98,NA,NA,"Democrat" +2,NA,1702,"tess",3,0,6,1,94,NA,NA,"Neither" +2,NA,1706,"tess",2,0,42,1,58,NA,NA,"Democrat" +2,NA,1724,"tess",4,0,85,1,15,NA,NA,"Democrat" +2,NA,1726,"tess",3,1,70,1,70,NA,NA,"Democrat" +2,NA,1728,"tess",3,1,90,1,90,NA,NA,"Democrat" +2,NA,1733,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,1739,"tess",2,1,40,1,40,NA,NA,"Republican" +2,NA,1756,"tess",3,0,29,1,71,NA,NA,"Democrat" +2,NA,1767,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,1775,"tess",3,1,85,1,85,NA,NA,"Democrat" +2,NA,1798,"tess",1,0,84,1,16,NA,NA,"Democrat" +2,NA,1799,"tess",3,0,43,1,57,NA,NA,"Republican" +2,NA,1813,"tess",3,0,48,1,52,NA,NA,"Democrat" +2,NA,1815,"tess",3,1,90,1,90,NA,NA,"Republican" +2,NA,1824,"tess",4,1,100,1,100,NA,NA,"Republican" +2,NA,1832,"tess",2,0,0,1,100,NA,NA,"Republican" +2,NA,1834,"tess",1,0,91,1,9,NA,NA,"Neither" +2,NA,1835,"tess",4,0,4,1,96,NA,NA,"Neither" +2,NA,1841,"tess",4,1,72,1,72,NA,NA,"Republican" +2,NA,1847,"tess",3,1,75,1,75,NA,NA,"Republican" +2,NA,1850,"tess",3,0,70,1,30,NA,NA,"Republican" +2,NA,1851,"tess",2,1,26,1,26,NA,NA,"Democrat" +2,NA,1856,"tess",1,1,25,1,25,NA,NA,"Republican" +2,NA,1857,"tess",3,1,89,1,89,NA,NA,"Democrat" +2,NA,1863,"tess",1,1,80,1,80,NA,NA,"Republican" +2,NA,1870,"tess",4,0,75,1,25,NA,NA,"Republican" +2,NA,1890,"tess",1,1,64,1,64,NA,NA,"Democrat" +2,NA,1891,"tess",1,1,99,1,99,NA,NA,"Republican" +2,NA,1898,"tess",3,1,51,1,51,NA,NA,"Democrat" +2,NA,1899,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,1900,"tess",4,1,95,1,95,NA,NA,"Republican" +2,NA,1902,"tess",1,1,99,1,99,NA,NA,"Democrat" +2,NA,1910,"tess",1,1,50,1,50,NA,NA,"Republican" +2,NA,1924,"tess",1,0,79,1,21,NA,NA,"Democrat" +2,NA,1928,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,1930,"tess",3,1,93,1,93,NA,NA,"Democrat" +2,NA,1933,"tess",4,1,14,1,14,NA,NA,"Democrat" +2,NA,1935,"tess",3,0,50,1,50,NA,NA,"Republican" +2,NA,1939,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,1940,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,1945,"tess",2,0,98,1,2,NA,NA,"Democrat" +2,NA,1950,"tess",1,1,99,1,99,NA,NA,"Republican" +2,NA,1952,"tess",4,1,5,1,5,NA,NA,"Democrat" +2,NA,1953,"tess",1,1,19,1,19,NA,NA,"Republican" +2,NA,1960,"tess",3,0,95,1,5,NA,NA,"Republican" +2,NA,1966,"tess",1,1,85,1,85,NA,NA,"Republican" +2,NA,1973,"tess",1,1,75,1,75,NA,NA,"Democrat" +2,NA,1976,"tess",2,0,93,1,7,NA,NA,"Republican" +2,NA,1981,"tess",4,1,96,1,96,NA,NA,"Democrat" +2,NA,1982,"tess",4,1,98,1,98,NA,NA,"Democrat" +2,NA,1992,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,1994,"tess",1,0,98,1,2,NA,NA,"Republican" +2,NA,2001,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,2017,"tess",4,0,97,1,3,NA,NA,"Democrat" +2,NA,2030,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,2033,"tess",4,0,57,1,43,NA,NA,"Democrat" +2,NA,2044,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,2049,"tess",1,0,20,1,80,NA,NA,"Democrat" +2,NA,2056,"tess",1,0,82,1,18,NA,NA,"Republican" +2,NA,2057,"tess",2,1,90,1,90,NA,NA,"Republican" +2,NA,2060,"tess",1,1,53,1,53,NA,NA,"Democrat" +2,NA,2061,"tess",3,0,97,1,3,NA,NA,"Democrat" +2,NA,2066,"tess",2,1,0,1,0,NA,NA,"Republican" +2,NA,2072,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,2080,"tess",2,1,72,1,72,NA,NA,"Democrat" +2,NA,2082,"tess",4,0,27,1,73,NA,NA,"Democrat" +2,NA,2088,"tess",4,1,91,1,91,NA,NA,"Democrat" +2,NA,2090,"tess",3,0,0,1,100,NA,NA,"Democrat" +2,NA,2097,"tess",4,1,82,1,82,NA,NA,"Republican" +2,NA,2099,"tess",2,0,90,1,10,NA,NA,"Republican" +2,NA,2100,"tess",1,1,91,1,91,NA,NA,"Democrat" +2,NA,2104,"tess",2,1,99,1,99,NA,NA,"Republican" +2,NA,2107,"tess",3,1,63,1,63,NA,NA,"Republican" +2,NA,2120,"tess",1,1,35,1,35,NA,NA,"Republican" +2,NA,2124,"tess",4,1,96,1,96,NA,NA,"Republican" +2,NA,2137,"tess",3,1,81,1,81,NA,NA,"Democrat" +2,NA,2141,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,2147,"tess",4,1,32,1,32,NA,NA,"Democrat" +2,NA,2153,"tess",2,0,56,1,44,NA,NA,"Democrat" +2,NA,2169,"tess",1,1,99,1,99,NA,NA,"Democrat" +2,NA,2179,"tess",4,0,91,1,9,NA,NA,"Democrat" +2,NA,2180,"tess",4,0,53,1,47,NA,NA,"Democrat" +2,NA,2187,"tess",2,1,53,1,53,NA,NA,"Democrat" +2,NA,2188,"tess",3,0,70,1,30,NA,NA,"Republican" +2,NA,2190,"tess",3,1,98,1,98,NA,NA,"Neither" +2,NA,2195,"tess",3,0,1,1,99,NA,NA,"Republican" +2,NA,2196,"tess",1,1,81,1,81,NA,NA,"Republican" +2,NA,2197,"tess",1,0,11,1,89,NA,NA,"Republican" +2,NA,2207,"tess",3,0,54,1,46,NA,NA,"Republican" +2,NA,2208,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,2211,"tess",1,1,90,1,90,NA,NA,"Republican" +2,NA,2213,"tess",4,1,99,1,99,NA,NA,"Neither" +2,NA,2215,"tess",1,0,99,1,1,NA,NA,"Republican" +2,NA,2218,"tess",2,0,51,1,49,NA,NA,"Republican" +2,NA,2225,"tess",4,1,98,1,98,NA,NA,"Republican" +2,NA,2228,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,2230,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,2235,"tess",4,1,90,1,90,NA,NA,"Republican" +2,NA,2238,"tess",3,1,88,1,88,NA,NA,"Democrat" +2,NA,2242,"tess",4,1,47,1,47,NA,NA,"Republican" +2,NA,2248,"tess",1,0,91,1,9,NA,NA,"Democrat" +2,NA,2253,"tess",1,0,91,1,9,NA,NA,"Democrat" +2,NA,2271,"tess",4,1,79,1,79,NA,NA,"Democrat" +2,NA,2272,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,2275,"tess",1,0,82,1,18,NA,NA,"Republican" +2,NA,2278,"tess",3,0,50,1,50,NA,NA,"Neither" +2,NA,2283,"tess",1,1,70,1,70,NA,NA,"Democrat" +2,NA,2286,"tess",1,1,87,1,87,NA,NA,"Democrat" +2,NA,2287,"tess",2,0,70,1,30,NA,NA,"Democrat" +2,NA,2291,"tess",2,0,98,1,2,NA,NA,"Republican" +2,NA,2308,"tess",1,1,47,1,47,NA,NA,"Democrat" +2,NA,2313,"tess",3,1,80,1,80,NA,NA,"Democrat" +2,NA,2315,"tess",3,1,78,1,78,NA,NA,"Democrat" +2,NA,2318,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,2322,"tess",4,0,51,1,49,NA,NA,"Republican" +2,NA,2337,"tess",2,0,10,1,90,NA,NA,"Democrat" +2,NA,2353,"tess",2,0,100,1,0,NA,NA,"Democrat" +2,NA,2356,"tess",1,1,81,1,81,NA,NA,"Republican" +2,NA,2359,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,2378,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,2379,"tess",1,0,87,1,13,NA,NA,"Republican" +2,NA,2381,"tess",1,0,18,1,82,NA,NA,"Democrat" +2,NA,2382,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,2383,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,2393,"tess",2,1,10,1,10,NA,NA,"Democrat" +2,NA,2394,"tess",2,0,75,1,25,NA,NA,"Democrat" +2,NA,2398,"tess",1,0,70,1,30,NA,NA,"Democrat" +2,NA,2399,"tess",3,0,70,1,30,NA,NA,"Democrat" +2,NA,2405,"tess",1,0,25,1,75,NA,NA,"Democrat" +2,NA,2407,"tess",2,1,74,1,74,NA,NA,"Republican" +2,NA,2412,"tess",3,0,70,1,30,NA,NA,"Democrat" +2,NA,2424,"tess",2,0,21,1,79,NA,NA,"Republican" +2,NA,2434,"tess",1,1,72,1,72,NA,NA,"Democrat" +2,NA,2435,"tess",3,0,84,1,16,NA,NA,"Democrat" +2,NA,2445,"tess",1,0,11,1,89,NA,NA,"Republican" +2,NA,2447,"tess",3,0,20,1,80,NA,NA,"Democrat" +2,NA,2459,"tess",2,1,60,1,60,NA,NA,"Democrat" +2,NA,2460,"tess",4,0,86,1,14,NA,NA,"Democrat" +2,NA,2468,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,2474,"tess",3,0,5,1,95,NA,NA,"Democrat" +2,NA,2483,"tess",1,0,20,1,80,NA,NA,"Democrat" +2,NA,2484,"tess",2,1,6,1,6,NA,NA,"Republican" +2,NA,2485,"tess",4,0,71,1,29,NA,NA,"Democrat" +2,NA,2486,"tess",1,1,23,1,23,NA,NA,"Republican" +2,NA,2488,"tess",4,1,38,1,38,NA,NA,"Democrat" +2,NA,2492,"tess",4,1,40,1,40,NA,NA,"Democrat" +2,NA,2498,"tess",3,0,90,1,10,NA,NA,"Republican" +2,NA,2508,"tess",3,0,30,1,70,NA,NA,"Democrat" +2,NA,2511,"tess",1,1,87,1,87,NA,NA,"Democrat" +2,NA,2512,"tess",2,0,81,1,19,NA,NA,"Republican" +2,NA,2514,"tess",2,1,98,1,98,NA,NA,"Democrat" +2,NA,2518,"tess",3,1,10,1,10,NA,NA,"Republican" +2,NA,2519,"tess",2,0,85,1,15,NA,NA,"Democrat" +2,NA,2520,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,2525,"tess",4,0,3,1,97,NA,NA,"Republican" +2,NA,2528,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,2529,"tess",3,1,98,1,98,NA,NA,"Democrat" +2,NA,2532,"tess",4,1,9,1,9,NA,NA,"Democrat" +2,NA,2536,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,2537,"tess",2,0,30,1,70,NA,NA,"Republican" +2,NA,2542,"tess",2,1,22,1,22,NA,NA,"Neither" +2,NA,2545,"tess",4,0,54,1,46,NA,NA,"Democrat" +2,NA,2547,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,2557,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,2578,"tess",3,0,70,1,30,NA,NA,"Republican" +2,NA,2581,"tess",2,0,100,1,0,NA,NA,"Democrat" +2,NA,2592,"tess",3,0,85,1,15,NA,NA,"Democrat" +2,NA,2599,"tess",3,0,61,1,39,NA,NA,"Republican" +2,NA,2608,"tess",2,0,0,1,100,NA,NA,"Democrat" +2,NA,2611,"tess",4,1,68,1,68,NA,NA,"Neither" +2,NA,2623,"tess",4,0,85,1,15,NA,NA,"Democrat" +2,NA,2630,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,2632,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,2644,"tess",3,1,98,1,98,NA,NA,"Democrat" +2,NA,2658,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,2659,"tess",2,1,12,1,12,NA,NA,"Republican" +2,NA,2664,"tess",1,0,89,1,11,NA,NA,"Democrat" +2,NA,2669,"tess",4,0,0,1,100,NA,NA,"Democrat" +2,NA,2670,"tess",4,1,60,1,60,NA,NA,"Neither" +2,NA,2671,"tess",4,1,51,1,51,NA,NA,"Republican" +2,NA,2695,"tess",2,0,100,1,0,NA,NA,"Republican" +2,NA,2698,"tess",2,1,80,1,80,NA,NA,"Republican" +2,NA,2700,"tess",4,0,60,1,40,NA,NA,"Democrat" +2,NA,2707,"tess",2,0,56,1,44,NA,NA,"Democrat" +2,NA,2709,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,2714,"tess",1,0,94,1,6,NA,NA,"Democrat" +2,NA,2715,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,2720,"tess",4,0,54,1,46,NA,NA,"Republican" +2,NA,2722,"tess",1,1,99,1,99,NA,NA,"Democrat" +2,NA,2731,"tess",2,0,35,1,65,NA,NA,"Democrat" +2,NA,2733,"tess",1,1,92,1,92,NA,NA,"Democrat" +2,NA,2740,"tess",2,1,0,1,0,NA,NA,"Democrat" +2,NA,2741,"tess",2,0,31,1,69,NA,NA,"Democrat" +2,NA,2745,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,2760,"tess",3,0,71,1,29,NA,NA,"Republican" +2,NA,2764,"tess",1,1,10,1,10,NA,NA,"Republican" +2,NA,2765,"tess",4,0,91,1,9,NA,NA,"Republican" +2,NA,2767,"tess",2,0,11,1,89,NA,NA,"Democrat" +2,NA,2771,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,2773,"tess",2,0,20,1,80,NA,NA,"Republican" +2,NA,2774,"tess",1,1,90,1,90,NA,NA,"Republican" +2,NA,2778,"tess",3,0,5,1,95,NA,NA,"Republican" +2,NA,2779,"tess",3,1,70,1,70,NA,NA,"Democrat" +2,NA,2784,"tess",4,0,80,1,20,NA,NA,"Republican" +2,NA,2795,"tess",4,0,85,1,15,NA,NA,"Republican" +2,NA,2797,"tess",4,1,65,1,65,NA,NA,"Democrat" +2,NA,2799,"tess",2,1,0,1,0,NA,NA,"Republican" +2,NA,2804,"tess",1,0,90,1,10,NA,NA,"Republican" +2,NA,2808,"tess",1,0,82,1,18,NA,NA,"Democrat" +2,NA,2818,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,2827,"tess",1,0,3,1,97,NA,NA,"Democrat" +2,NA,2828,"tess",3,0,86,1,14,NA,NA,"Republican" +2,NA,2829,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,2843,"tess",3,1,80,1,80,NA,NA,"Democrat" +2,NA,2852,"tess",2,1,100,1,100,NA,NA,"Republican" +2,NA,2863,"tess",1,1,95,1,95,NA,NA,"Republican" +2,NA,2885,"tess",1,0,8,1,92,NA,NA,"Republican" +2,NA,2888,"tess",1,0,10,1,90,NA,NA,"Democrat" +2,NA,2892,"tess",4,0,38,1,62,NA,NA,"Democrat" +2,NA,2893,"tess",3,0,20,1,80,NA,NA,"Republican" +2,NA,2902,"tess",3,1,70,1,70,NA,NA,"Democrat" +2,NA,2903,"tess",2,1,89,1,89,NA,NA,"Democrat" +2,NA,2905,"tess",2,1,56,1,56,NA,NA,"Democrat" +2,NA,2906,"tess",2,0,68,1,32,NA,NA,"Democrat" +2,NA,2915,"tess",3,1,95,1,95,NA,NA,"Democrat" +2,NA,2917,"tess",2,1,48,1,48,NA,NA,"Republican" +2,NA,2923,"tess",4,1,56,1,56,NA,NA,"Neither" +2,NA,2934,"tess",4,1,40,1,40,NA,NA,"Democrat" +2,NA,2936,"tess",1,1,29,1,29,NA,NA,"Democrat" +2,NA,2938,"tess",3,1,97,1,97,NA,NA,"Republican" +2,NA,2940,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,2945,"tess",1,0,95,1,5,NA,NA,"Democrat" +2,NA,2953,"tess",4,0,90,1,10,NA,NA,"Neither" +2,NA,2970,"tess",4,1,61,1,61,NA,NA,"Neither" +2,NA,2979,"tess",3,0,29,1,71,NA,NA,"Democrat" +2,NA,2981,"tess",3,1,9,1,9,NA,NA,"Democrat" +2,NA,2982,"tess",3,0,91,1,9,NA,NA,"Democrat" +2,NA,2983,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,2987,"tess",2,1,100,1,100,NA,NA,"Republican" +2,NA,2988,"tess",3,0,20,1,80,NA,NA,"Democrat" +2,NA,2990,"tess",3,0,20,1,80,NA,NA,"Republican" +2,NA,2998,"tess",2,0,78,1,22,NA,NA,"Republican" +2,NA,3006,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,3011,"tess",4,0,85,1,15,NA,NA,"Republican" +2,NA,3020,"tess",1,0,41,1,59,NA,NA,"Democrat" +2,NA,3021,"tess",1,0,30,1,70,NA,NA,"Democrat" +2,NA,3025,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,3028,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,3029,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,3039,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,3043,"tess",1,1,83,1,83,NA,NA,"Democrat" +2,NA,3047,"tess",3,1,45,1,45,NA,NA,"Democrat" +2,NA,3048,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,3051,"tess",2,1,40,1,40,NA,NA,"Republican" +2,NA,3062,"tess",2,0,94,1,6,NA,NA,"Neither" +2,NA,3068,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,3071,"tess",3,1,10,1,10,NA,NA,"Democrat" +2,NA,3072,"tess",4,1,79,1,79,NA,NA,"Republican" +2,NA,3074,"tess",3,0,80,1,20,NA,NA,"Democrat" +2,NA,3076,"tess",3,0,2,1,98,NA,NA,"Republican" +2,NA,3077,"tess",3,1,95,1,95,NA,NA,"Democrat" +2,NA,3082,"tess",4,1,50,1,50,NA,NA,"Neither" +2,NA,3086,"tess",2,1,67,1,67,NA,NA,"Republican" +2,NA,3089,"tess",2,1,44,1,44,NA,NA,"Democrat" +2,NA,3096,"tess",2,0,99,1,1,NA,NA,"Republican" +2,NA,3102,"tess",4,1,62,1,62,NA,NA,"Democrat" +2,NA,3107,"tess",1,1,66,1,66,NA,NA,"Democrat" +2,NA,3109,"tess",4,0,66,1,34,NA,NA,"Neither" +2,NA,3111,"tess",1,1,40,1,40,NA,NA,"Democrat" +2,NA,3115,"tess",2,0,51,1,49,NA,NA,"Neither" +2,NA,3123,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,3125,"tess",1,0,40,1,60,NA,NA,"Democrat" +2,NA,3128,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,3137,"tess",3,0,25,1,75,NA,NA,"Democrat" +2,NA,3155,"tess",1,0,50,1,50,NA,NA,"Neither" +2,NA,3156,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,3170,"tess",4,0,70,1,30,NA,NA,"Democrat" +2,NA,3172,"tess",2,1,75,1,75,NA,NA,"Democrat" +2,NA,3176,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,3186,"tess",2,1,0,1,0,NA,NA,"Democrat" +2,NA,3188,"tess",4,1,92,1,92,NA,NA,"Democrat" +2,NA,3190,"tess",3,0,48,1,52,NA,NA,"Democrat" +2,NA,3192,"tess",2,0,99,1,1,NA,NA,"Democrat" +2,NA,3195,"tess",2,1,79,1,79,NA,NA,"Democrat" +2,NA,3197,"tess",3,0,20,1,80,NA,NA,"Democrat" +2,NA,3201,"tess",1,1,13,1,13,NA,NA,"Republican" +2,NA,3205,"tess",1,0,52,1,48,NA,NA,"Republican" +2,NA,3206,"tess",2,0,80,1,20,NA,NA,"Democrat" +2,NA,3207,"tess",3,1,51,1,51,NA,NA,"Republican" +2,NA,3208,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,3214,"tess",2,1,53,1,53,NA,NA,"Democrat" +2,NA,3223,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,3225,"tess",3,1,28,1,28,NA,NA,"Republican" +2,NA,3226,"tess",3,1,86,1,86,NA,NA,"Republican" +2,NA,3230,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,3234,"tess",2,1,20,1,20,NA,NA,"Republican" +2,NA,3244,"tess",1,0,22,1,78,NA,NA,"Republican" +2,NA,3259,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,3262,"tess",2,1,70,1,70,NA,NA,"Republican" +2,NA,3263,"tess",4,0,69,1,31,NA,NA,"Democrat" +2,NA,3274,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,3281,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,3288,"tess",1,1,50,1,50,NA,NA,"Republican" +2,NA,3295,"tess",3,1,70,1,70,NA,NA,"Democrat" +2,NA,3304,"tess",2,1,60,1,60,NA,NA,"Republican" +2,NA,3313,"tess",1,0,89,1,11,NA,NA,"Republican" +2,NA,3320,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,3333,"tess",4,0,76,1,24,NA,NA,"Democrat" +2,NA,3335,"tess",2,0,54,1,46,NA,NA,"Democrat" +2,NA,3342,"tess",3,0,63,1,37,NA,NA,"Republican" +2,NA,3344,"tess",3,1,60,1,60,NA,NA,"Democrat" +2,NA,3346,"tess",3,0,60,1,40,NA,NA,"Republican" +2,NA,3348,"tess",2,1,20,1,20,NA,NA,"Democrat" +2,NA,3356,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,3364,"tess",1,0,64,1,36,NA,NA,"Democrat" +2,NA,3365,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,3371,"tess",1,1,88,1,88,NA,NA,"Democrat" +2,NA,3407,"tess",1,1,70,1,70,NA,NA,"Republican" +2,NA,3412,"tess",4,0,95,1,5,NA,NA,"Democrat" +2,NA,3419,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,3424,"tess",3,1,44,1,44,NA,NA,"Democrat" +2,NA,3425,"tess",4,0,82,1,18,NA,NA,"Republican" +2,NA,3426,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,3430,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,3433,"tess",2,0,90,1,10,NA,NA,"Democrat" +2,NA,3435,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,3437,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,3452,"tess",2,0,79,1,21,NA,NA,"Republican" +2,NA,3454,"tess",4,1,25,1,25,NA,NA,"Democrat" +2,NA,3462,"tess",3,0,29,1,71,NA,NA,"Republican" +2,NA,3464,"tess",1,0,40,1,60,NA,NA,"Republican" +2,NA,3468,"tess",4,0,57,1,43,NA,NA,"Democrat" +2,NA,3477,"tess",1,0,70,1,30,NA,NA,"Democrat" +2,NA,3488,"tess",1,1,89,1,89,NA,NA,"Republican" +2,NA,3494,"tess",2,0,61,1,39,NA,NA,"Democrat" +2,NA,3505,"tess",4,1,59,1,59,NA,NA,"Republican" +2,NA,3507,"tess",1,1,26,1,26,NA,NA,"Democrat" +2,NA,3508,"tess",2,0,42,1,58,NA,NA,"Republican" +2,NA,3512,"tess",3,0,3,1,97,NA,NA,"Republican" +2,NA,3513,"tess",2,1,53,1,53,NA,NA,"Democrat" +2,NA,3515,"tess",4,1,2,1,2,NA,NA,"Republican" +2,NA,3517,"tess",4,0,80,1,20,NA,NA,"Republican" +2,NA,3522,"tess",3,1,19,1,19,NA,NA,"Republican" +2,NA,3523,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,3535,"tess",3,0,70,1,30,NA,NA,"Democrat" +2,NA,3536,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,3544,"tess",3,0,34,1,66,NA,NA,"Neither" +2,NA,3545,"tess",2,0,44,1,56,NA,NA,"Democrat" +2,NA,3548,"tess",2,0,70,1,30,NA,NA,"Republican" +2,NA,3554,"tess",1,1,29,1,29,NA,NA,"Democrat" +2,NA,3562,"tess",4,0,74,1,26,NA,NA,"Democrat" +2,NA,3564,"tess",4,1,2,1,2,NA,NA,"Republican" +2,NA,3568,"tess",4,0,10,1,90,NA,NA,"Democrat" +2,NA,3573,"tess",4,1,89,1,89,NA,NA,"Democrat" +2,NA,3582,"tess",1,0,98,1,2,NA,NA,"Republican" +2,NA,3587,"tess",3,1,10,1,10,NA,NA,"Democrat" +2,NA,3589,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,3593,"tess",1,0,87,1,13,NA,NA,"Democrat" +2,NA,3607,"tess",1,0,100,1,0,NA,NA,"Republican" +2,NA,3609,"tess",4,0,69,1,31,NA,NA,"Republican" +2,NA,3610,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,3611,"tess",3,0,5,1,95,NA,NA,"Democrat" +2,NA,3612,"tess",1,1,6,1,6,NA,NA,"Republican" +2,NA,3627,"tess",3,1,90,1,90,NA,NA,"Republican" +2,NA,3629,"tess",4,0,80,1,20,NA,NA,"Republican" +2,NA,3631,"tess",4,1,97,1,97,NA,NA,"Democrat" +2,NA,3632,"tess",4,1,69,1,69,NA,NA,"Republican" +2,NA,3634,"tess",4,1,71,1,71,NA,NA,"Democrat" +2,NA,3635,"tess",4,1,0,1,0,NA,NA,"Republican" +2,NA,3643,"tess",2,1,90,1,90,NA,NA,"Democrat" +2,NA,3645,"tess",1,0,58,1,42,NA,NA,"Republican" +2,NA,3653,"tess",3,0,33,1,67,NA,NA,"Democrat" +2,NA,3656,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,3663,"tess",4,0,85,1,15,NA,NA,"Democrat" +2,NA,3673,"tess",1,1,64,1,64,NA,NA,"Republican" +2,NA,3676,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,3678,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,3681,"tess",1,1,75,1,75,NA,NA,"Democrat" +2,NA,3695,"tess",3,1,51,1,51,NA,NA,"Republican" +2,NA,3699,"tess",4,0,47,1,53,NA,NA,"Republican" +2,NA,3702,"tess",3,1,89,1,89,NA,NA,"Democrat" +2,NA,3704,"tess",4,1,93,1,93,NA,NA,"Republican" +2,NA,3708,"tess",1,0,79,1,21,NA,NA,"Democrat" +2,NA,3710,"tess",2,1,90,1,90,NA,NA,"Democrat" +2,NA,3711,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,3722,"tess",3,0,39,1,61,NA,NA,"Democrat" +2,NA,3725,"tess",4,1,68,1,68,NA,NA,"Republican" +2,NA,3726,"tess",3,1,68,1,68,NA,NA,"Democrat" +2,NA,3728,"tess",4,0,99,1,1,NA,NA,"Republican" +2,NA,3736,"tess",2,0,15,1,85,NA,NA,"Democrat" +2,NA,3745,"tess",3,1,90,1,90,NA,NA,"Democrat" +2,NA,3747,"tess",4,0,84,1,16,NA,NA,"Democrat" +2,NA,3754,"tess",2,1,96,1,96,NA,NA,"Democrat" +2,NA,3759,"tess",3,0,49,1,51,NA,NA,"Republican" +2,NA,3767,"tess",4,0,79,1,21,NA,NA,"Republican" +2,NA,3774,"tess",1,0,81,1,19,NA,NA,"Neither" +2,NA,3776,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,3779,"tess",1,0,70,1,30,NA,NA,"Republican" +2,NA,3782,"tess",2,0,35,1,65,NA,NA,"Democrat" +2,NA,3787,"tess",4,1,77,1,77,NA,NA,"Democrat" +2,NA,3793,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,3795,"tess",1,1,98,1,98,NA,NA,"Democrat" +2,NA,3799,"tess",2,0,15,1,85,NA,NA,"Republican" +2,NA,3801,"tess",4,0,87,1,13,NA,NA,"Democrat" +2,NA,3806,"tess",1,1,50,1,50,NA,NA,"Republican" +2,NA,3810,"tess",2,0,20,1,80,NA,NA,"Democrat" +2,NA,3811,"tess",3,1,87,1,87,NA,NA,"Republican" +2,NA,3813,"tess",1,0,85,1,15,NA,NA,"Republican" +2,NA,3814,"tess",3,1,58,1,58,NA,NA,"Democrat" +2,NA,3819,"tess",4,0,92,1,8,NA,NA,"Republican" +2,NA,3820,"tess",4,0,71,1,29,NA,NA,"Democrat" +2,NA,3845,"tess",4,1,84,1,84,NA,NA,"Democrat" +2,NA,3848,"tess",4,0,90,1,10,NA,NA,"Republican" +2,NA,3851,"tess",2,0,35,1,65,NA,NA,"Republican" +2,NA,3865,"tess",1,1,75,1,75,NA,NA,"Democrat" +2,NA,3868,"tess",2,1,1,1,1,NA,NA,"Democrat" +2,NA,3880,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,3890,"tess",1,0,70,1,30,NA,NA,"Republican" +2,NA,3895,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,3898,"tess",4,0,64,1,36,NA,NA,"Democrat" +2,NA,3904,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,3909,"tess",4,0,70,1,30,NA,NA,"Democrat" +2,NA,3910,"tess",1,0,87,1,13,NA,NA,"Democrat" +2,NA,3915,"tess",1,0,98,1,2,NA,NA,"Democrat" +2,NA,3918,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,3919,"tess",2,0,99,1,1,NA,NA,"Democrat" +2,NA,3920,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,3923,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,3931,"tess",3,0,59,1,41,NA,NA,"Democrat" +2,NA,3946,"tess",3,0,20,1,80,NA,NA,"Democrat" +2,NA,3958,"tess",4,0,59,1,41,NA,NA,"Republican" +2,NA,3959,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,3961,"tess",4,0,90,1,10,NA,NA,"Democrat" +2,NA,3965,"tess",4,1,94,1,94,NA,NA,"Democrat" +2,NA,3966,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,3981,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,4001,"tess",1,1,89,1,89,NA,NA,"Neither" +2,NA,4006,"tess",2,1,69,1,69,NA,NA,"Democrat" +2,NA,4007,"tess",2,0,61,1,39,NA,NA,"Republican" +2,NA,4008,"tess",2,1,100,1,100,NA,NA,"Republican" +2,NA,4015,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,4027,"tess",3,1,20,1,20,NA,NA,"Republican" +2,NA,4035,"tess",2,1,100,1,100,NA,NA,"Republican" +2,NA,4039,"tess",4,0,99,1,1,NA,NA,"Democrat" +2,NA,4043,"tess",2,0,0,1,100,NA,NA,"Republican" +2,NA,4046,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,4049,"tess",1,1,75,1,75,NA,NA,"Neither" +2,NA,4065,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,4069,"tess",4,0,49,1,51,NA,NA,"Democrat" +2,NA,4072,"tess",1,0,52,1,48,NA,NA,"Democrat" +2,NA,4075,"tess",2,0,79,1,21,NA,NA,"Democrat" +2,NA,4076,"tess",2,0,97,1,3,NA,NA,"Republican" +2,NA,4079,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,4084,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,4096,"tess",1,1,70,1,70,NA,NA,"Democrat" +2,NA,4108,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,4120,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,4139,"tess",2,1,96,1,96,NA,NA,"Republican" +2,NA,4141,"tess",3,1,28,1,28,NA,NA,"Democrat" +2,NA,4142,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,4149,"tess",1,1,50,1,50,NA,NA,"Republican" +2,NA,4153,"tess",2,1,94,1,94,NA,NA,"Republican" +2,NA,4160,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,4163,"tess",1,0,58,1,42,NA,NA,"Republican" +2,NA,4175,"tess",4,1,70,1,70,NA,NA,"Democrat" +2,NA,4178,"tess",4,1,54,1,54,NA,NA,"Democrat" +2,NA,4186,"tess",2,0,33,1,67,NA,NA,"Democrat" +2,NA,4195,"tess",2,1,20,1,20,NA,NA,"Republican" +2,NA,4197,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,4199,"tess",4,1,85,1,85,NA,NA,"Democrat" +2,NA,4200,"tess",1,0,79,1,21,NA,NA,"Democrat" +2,NA,4202,"tess",1,0,25,1,75,NA,NA,"Democrat" +2,NA,4209,"tess",4,0,83,1,17,NA,NA,"Democrat" +2,NA,4210,"tess",4,0,10,1,90,NA,NA,"Republican" +2,NA,4216,"tess",3,1,71,1,71,NA,NA,"Democrat" +2,NA,4217,"tess",2,1,64,1,64,NA,NA,"Democrat" +2,NA,4218,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,4222,"tess",2,0,81,1,19,NA,NA,"Democrat" +2,NA,4224,"tess",2,0,89,1,11,NA,NA,"Democrat" +2,NA,4227,"tess",3,1,39,1,39,NA,NA,"Democrat" +2,NA,4229,"tess",3,0,51,1,49,NA,NA,"Democrat" +2,NA,4237,"tess",2,0,99,1,1,NA,NA,"Democrat" +2,NA,4238,"tess",1,0,76,1,24,NA,NA,"Democrat" +2,NA,4241,"tess",3,0,50,1,50,NA,NA,"Republican" +2,NA,4251,"tess",1,1,11,1,11,NA,NA,"Republican" +2,NA,4252,"tess",1,0,20,1,80,NA,NA,"Republican" +2,NA,4253,"tess",4,1,85,1,85,NA,NA,"Democrat" +2,NA,4266,"tess",3,0,58,1,42,NA,NA,"Democrat" +2,NA,4269,"tess",2,1,95,1,95,NA,NA,"Republican" +2,NA,4277,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,4278,"tess",4,1,99,1,99,NA,NA,"Republican" +2,NA,4282,"tess",1,1,36,1,36,NA,NA,"Republican" +2,NA,4285,"tess",1,1,99,1,99,NA,NA,"Neither" +2,NA,4290,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,4291,"tess",1,1,49,1,49,NA,NA,"Democrat" +2,NA,4298,"tess",3,1,83,1,83,NA,NA,"Democrat" +2,NA,4302,"tess",2,0,84,1,16,NA,NA,"Democrat" +2,NA,4307,"tess",1,0,40,1,60,NA,NA,"Republican" +2,NA,4308,"tess",1,1,99,1,99,NA,NA,"Democrat" +2,NA,4311,"tess",4,0,61,1,39,NA,NA,"Democrat" +2,NA,4322,"tess",3,1,97,1,97,NA,NA,"Republican" +2,NA,4325,"tess",1,0,100,1,0,NA,NA,"Democrat" +2,NA,4326,"tess",1,1,83,1,83,NA,NA,"Democrat" +2,NA,4331,"tess",2,1,69,1,69,NA,NA,"Democrat" +2,NA,4332,"tess",3,1,99,1,99,NA,NA,"Democrat" +2,NA,4334,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,4335,"tess",4,0,70,1,30,NA,NA,"Republican" +2,NA,4349,"tess",3,0,67,1,33,NA,NA,"Democrat" +2,NA,4356,"tess",2,0,100,1,0,NA,NA,"Republican" +2,NA,4357,"tess",4,1,95,1,95,NA,NA,"Democrat" +2,NA,4361,"tess",1,1,92,1,92,NA,NA,"Democrat" +2,NA,4365,"tess",1,0,86,1,14,NA,NA,"Republican" +2,NA,4367,"tess",3,0,17,1,83,NA,NA,"Republican" +2,NA,4370,"tess",4,0,73,1,27,NA,NA,"Republican" +2,NA,4380,"tess",1,0,94,1,6,NA,NA,"Republican" +2,NA,4390,"tess",1,0,75,1,25,NA,NA,"Democrat" +2,NA,4391,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,4401,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,4403,"tess",2,1,67,1,67,NA,NA,"Republican" +2,NA,4412,"tess",4,1,20,1,20,NA,NA,"Republican" +2,NA,4416,"tess",1,0,49,1,51,NA,NA,"Republican" +2,NA,4420,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,4427,"tess",1,1,99,1,99,NA,NA,"Democrat" +2,NA,4431,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,4441,"tess",4,0,72,1,28,NA,NA,"Democrat" +2,NA,4447,"tess",3,1,91,1,91,NA,NA,"Republican" +2,NA,4451,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,4452,"tess",2,0,99,1,1,NA,NA,"Republican" +2,NA,4455,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,4457,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,4458,"tess",4,1,0,1,0,NA,NA,"Republican" +2,NA,4459,"tess",2,1,84,1,84,NA,NA,"Democrat" +2,NA,4470,"tess",1,1,79,1,79,NA,NA,"Democrat" +2,NA,4475,"tess",1,1,20,1,20,NA,NA,"Democrat" +2,NA,4476,"tess",4,0,41,1,59,NA,NA,"Democrat" +2,NA,4480,"tess",3,1,77,1,77,NA,NA,"Democrat" +2,NA,4482,"tess",2,1,51,1,51,NA,NA,"Neither" +2,NA,4484,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,4486,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,4500,"tess",2,0,20,1,80,NA,NA,"Democrat" +2,NA,4512,"tess",3,1,52,1,52,NA,NA,"Democrat" +2,NA,4516,"tess",4,1,70,1,70,NA,NA,"Democrat" +2,NA,4523,"tess",4,1,59,1,59,NA,NA,"Republican" +2,NA,4524,"tess",2,0,69,1,31,NA,NA,"Republican" +2,NA,4525,"tess",2,0,90,1,10,NA,NA,"Republican" +2,NA,4548,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,4552,"tess",4,0,77,1,23,NA,NA,"Democrat" +2,NA,4557,"tess",3,0,48,1,52,NA,NA,"Republican" +2,NA,4561,"tess",1,0,93,1,7,NA,NA,"Democrat" +2,NA,4574,"tess",1,1,69,1,69,NA,NA,"Democrat" +2,NA,4581,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,4584,"tess",2,0,99,1,1,NA,NA,"Democrat" +2,NA,4587,"tess",2,1,60,1,60,NA,NA,"Republican" +2,NA,4606,"tess",4,0,100,1,0,NA,NA,"Republican" +2,NA,4618,"tess",1,0,77,1,23,NA,NA,"Democrat" +2,NA,4624,"tess",1,0,100,1,0,NA,NA,"Republican" +2,NA,4627,"tess",4,1,4,1,4,NA,NA,"Democrat" +2,NA,4628,"tess",1,1,100,1,100,NA,NA,"Democrat" +2,NA,4632,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,4633,"tess",1,1,71,1,71,NA,NA,"Democrat" +2,NA,4642,"tess",3,1,52,1,52,NA,NA,"Democrat" +2,NA,4656,"tess",3,1,98,1,98,NA,NA,"Democrat" +2,NA,4663,"tess",2,0,80,1,20,NA,NA,"Democrat" +2,NA,4674,"tess",2,0,82,1,18,NA,NA,"Republican" +2,NA,4683,"tess",3,0,84,1,16,NA,NA,"Neither" +2,NA,4690,"tess",1,0,100,1,0,NA,NA,"Democrat" +2,NA,4691,"tess",3,1,82,1,82,NA,NA,"Democrat" +2,NA,4700,"tess",2,1,10,1,10,NA,NA,"Republican" +2,NA,4708,"tess",2,1,90,1,90,NA,NA,"Democrat" +2,NA,4713,"tess",3,1,10,1,10,NA,NA,"Neither" +2,NA,4715,"tess",1,1,81,1,81,NA,NA,"Republican" +2,NA,4722,"tess",3,0,41,1,59,NA,NA,"Democrat" +2,NA,4726,"tess",2,1,62,1,62,NA,NA,"Republican" +2,NA,4737,"tess",2,1,2,1,2,NA,NA,"Democrat" +2,NA,4739,"tess",2,1,95,1,95,NA,NA,"Republican" +2,NA,4740,"tess",1,1,80,1,80,NA,NA,"Republican" +2,NA,4742,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,4770,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,4774,"tess",1,1,60,1,60,NA,NA,"Republican" +2,NA,4780,"tess",4,1,91,1,91,NA,NA,"Republican" +2,NA,4782,"tess",4,0,51,1,49,NA,NA,"Democrat" +2,NA,4785,"tess",4,0,85,1,15,NA,NA,"Republican" +2,NA,4789,"tess",3,0,85,1,15,NA,NA,"Democrat" +2,NA,4792,"tess",2,0,66,1,34,NA,NA,"Republican" +2,NA,4793,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,4795,"tess",3,1,70,1,70,NA,NA,"Democrat" +2,NA,4799,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,4800,"tess",2,0,97,1,3,NA,NA,"Republican" +2,NA,4807,"tess",3,1,30,1,30,NA,NA,"Democrat" +2,NA,4810,"tess",4,1,90,1,90,NA,NA,"Democrat" +2,NA,4813,"tess",1,0,84,1,16,NA,NA,"Democrat" +2,NA,4816,"tess",2,0,20,1,80,NA,NA,"Democrat" +2,NA,4817,"tess",1,0,70,1,30,NA,NA,"Democrat" +2,NA,4819,"tess",4,1,52,1,52,NA,NA,"Democrat" +2,NA,4820,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,4821,"tess",3,0,22,1,78,NA,NA,"Neither" +2,NA,4823,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,4826,"tess",1,0,90,1,10,NA,NA,"Democrat" +2,NA,4831,"tess",3,1,41,1,41,NA,NA,"Neither" +2,NA,4833,"tess",3,0,6,1,94,NA,NA,"Democrat" +2,NA,4841,"tess",4,1,60,1,60,NA,NA,"Democrat" +2,NA,4863,"tess",2,1,18,1,18,NA,NA,"Republican" +2,NA,4866,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,4869,"tess",3,1,1,1,1,NA,NA,"Democrat" +2,NA,4875,"tess",1,1,91,1,91,NA,NA,"Democrat" +2,NA,4880,"tess",3,1,82,1,82,NA,NA,"Republican" +2,NA,4883,"tess",1,1,83,1,83,NA,NA,"Democrat" +2,NA,4887,"tess",2,0,86,1,14,NA,NA,"Republican" +2,NA,4897,"tess",2,0,90,1,10,NA,NA,"Democrat" +2,NA,4899,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,4903,"tess",2,1,70,1,70,NA,NA,"Democrat" +2,NA,4905,"tess",1,1,100,1,100,NA,NA,"Democrat" +2,NA,4906,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,4908,"tess",1,1,70,1,70,NA,NA,"Democrat" +2,NA,4914,"tess",1,0,26,1,74,NA,NA,"Democrat" +2,NA,4921,"tess",3,0,0,1,100,NA,NA,"Republican" +2,NA,4925,"tess",2,1,98,1,98,NA,NA,"Democrat" +2,NA,4926,"tess",3,1,98,1,98,NA,NA,"Democrat" +2,NA,4930,"tess",1,0,53,1,47,NA,NA,"Democrat" +2,NA,4932,"tess",1,1,20,1,20,NA,NA,"Republican" +2,NA,4935,"tess",4,1,93,1,93,NA,NA,"Democrat" +2,NA,4940,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,4964,"tess",1,0,90,1,10,NA,NA,"Republican" +2,NA,4966,"tess",2,1,100,1,100,NA,NA,"Republican" +2,NA,4969,"tess",4,1,52,1,52,NA,NA,"Democrat" +2,NA,4971,"tess",3,1,59,1,59,NA,NA,"Democrat" +2,NA,4977,"tess",1,0,97,1,3,NA,NA,"Republican" +2,NA,4990,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,4998,"tess",4,1,88,1,88,NA,NA,"Democrat" +2,NA,5003,"tess",3,1,74,1,74,NA,NA,"Republican" +2,NA,5004,"tess",2,0,13,1,87,NA,NA,"Democrat" +2,NA,5008,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,5016,"tess",3,1,32,1,32,NA,NA,"Democrat" +2,NA,5018,"tess",3,0,77,1,23,NA,NA,"Democrat" +2,NA,5025,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,5027,"tess",1,0,83,1,17,NA,NA,"Republican" +2,NA,5029,"tess",3,0,79,1,21,NA,NA,"Republican" +2,NA,5048,"tess",1,1,80,1,80,NA,NA,"Republican" +2,NA,5055,"tess",1,0,55,1,45,NA,NA,"Republican" +2,NA,5058,"tess",4,1,80,1,80,NA,NA,"Republican" +2,NA,5068,"tess",1,0,49,1,51,NA,NA,"Democrat" +2,NA,5073,"tess",4,0,82,1,18,NA,NA,"Democrat" +2,NA,5086,"tess",2,1,79,1,79,NA,NA,"Neither" +2,NA,5092,"tess",3,0,95,1,5,NA,NA,"Republican" +2,NA,5101,"tess",3,0,99,1,1,NA,NA,"Democrat" +2,NA,5108,"tess",3,0,49,1,51,NA,NA,"Republican" +2,NA,5114,"tess",4,0,49,1,51,NA,NA,"Democrat" +2,NA,5116,"tess",2,0,83,1,17,NA,NA,"Republican" +2,NA,5128,"tess",4,0,70,1,30,NA,NA,"Democrat" +2,NA,5131,"tess",4,1,58,1,58,NA,NA,"Democrat" +2,NA,5132,"tess",2,1,57,1,57,NA,NA,"Republican" +2,NA,5133,"tess",4,0,97,1,3,NA,NA,"Republican" +2,NA,5137,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,5143,"tess",3,0,51,1,49,NA,NA,"Republican" +2,NA,5144,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,5147,"tess",4,0,86,1,14,NA,NA,"Republican" +2,NA,5151,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,5160,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,5162,"tess",3,0,70,1,30,NA,NA,"Neither" +2,NA,5165,"tess",1,0,0,1,100,NA,NA,"Republican" +2,NA,5172,"tess",1,0,70,1,30,NA,NA,"Democrat" +2,NA,5175,"tess",2,1,79,1,79,NA,NA,"Democrat" +2,NA,5186,"tess",2,0,48,1,52,NA,NA,"Republican" +2,NA,5192,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,5195,"tess",1,1,51,1,51,NA,NA,"Democrat" +2,NA,5221,"tess",1,1,75,1,75,NA,NA,"Republican" +2,NA,5222,"tess",4,1,61,1,61,NA,NA,"Democrat" +2,NA,5224,"tess",4,0,100,1,0,NA,NA,"Republican" +2,NA,5225,"tess",2,0,73,1,27,NA,NA,"Democrat" +2,NA,5228,"tess",3,0,31,1,69,NA,NA,"Democrat" +2,NA,5268,"tess",1,1,64,1,64,NA,NA,"Democrat" +2,NA,5270,"tess",1,0,4,1,96,NA,NA,"Republican" +2,NA,5275,"tess",4,0,26,1,74,NA,NA,"Democrat" +2,NA,5279,"tess",1,0,100,1,0,NA,NA,"Democrat" +2,NA,5284,"tess",2,1,94,1,94,NA,NA,"Democrat" +2,NA,5288,"tess",2,1,91,1,91,NA,NA,"Democrat" +2,NA,5289,"tess",1,0,59,1,41,NA,NA,"Democrat" +2,NA,5290,"tess",4,1,48,1,48,NA,NA,"Republican" +2,NA,5299,"tess",1,1,85,1,85,NA,NA,"Democrat" +2,NA,5301,"tess",2,0,20,1,80,NA,NA,"Democrat" +2,NA,5308,"tess",2,1,62,1,62,NA,NA,"Democrat" +2,NA,5311,"tess",4,0,95,1,5,NA,NA,"Republican" +2,NA,5314,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,5316,"tess",2,0,39,1,61,NA,NA,"Republican" +2,NA,5318,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,5319,"tess",3,0,60,1,40,NA,NA,"Democrat" +2,NA,5325,"tess",3,1,86,1,86,NA,NA,"Democrat" +2,NA,5326,"tess",4,1,15,1,15,NA,NA,"Democrat" +2,NA,5327,"tess",3,0,87,1,13,NA,NA,"Republican" +2,NA,5331,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,5353,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,5363,"tess",1,0,3,1,97,NA,NA,"Republican" +2,NA,5378,"tess",1,1,92,1,92,NA,NA,"Democrat" +2,NA,5383,"tess",1,1,10,1,10,NA,NA,"Republican" +2,NA,5385,"tess",2,1,91,1,91,NA,NA,"Democrat" +2,NA,5386,"tess",4,0,99,1,1,NA,NA,"Republican" +2,NA,5388,"tess",4,1,71,1,71,NA,NA,"Republican" +2,NA,5389,"tess",1,0,90,1,10,NA,NA,"Republican" +2,NA,5392,"tess",4,1,1,1,1,NA,NA,"Democrat" +2,NA,5393,"tess",1,0,67,1,33,NA,NA,"Republican" +2,NA,5400,"tess",3,1,91,1,91,NA,NA,"Republican" +2,NA,5406,"tess",3,0,86,1,14,NA,NA,"Republican" +2,NA,5407,"tess",4,0,85,1,15,NA,NA,"Republican" +2,NA,5411,"tess",4,0,65,1,35,NA,NA,"Republican" +2,NA,5412,"tess",4,0,78,1,22,NA,NA,"Republican" +2,NA,5416,"tess",3,1,87,1,87,NA,NA,"Democrat" +2,NA,5419,"tess",1,0,16,1,84,NA,NA,"Republican" +2,NA,5423,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,5428,"tess",2,0,33,1,67,NA,NA,"Republican" +2,NA,5430,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,5434,"tess",1,1,76,1,76,NA,NA,"Republican" +2,NA,5438,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,5447,"tess",2,1,66,1,66,NA,NA,"Democrat" +2,NA,5448,"tess",4,1,11,1,11,NA,NA,"Democrat" +2,NA,5450,"tess",3,1,10,1,10,NA,NA,"Republican" +2,NA,5456,"tess",1,0,98,1,2,NA,NA,"Democrat" +2,NA,5462,"tess",4,0,58,1,42,NA,NA,"Republican" +2,NA,5465,"tess",2,1,72,1,72,NA,NA,"Republican" +2,NA,5470,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,5475,"tess",1,0,3,1,97,NA,NA,"Democrat" +2,NA,5480,"tess",3,0,20,1,80,NA,NA,"Republican" +2,NA,5490,"tess",2,1,29,1,29,NA,NA,"Republican" +2,NA,5500,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,5504,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,5509,"tess",4,1,51,1,51,NA,NA,"Democrat" +2,NA,5515,"tess",1,1,30,1,30,NA,NA,"Republican" +2,NA,5518,"tess",4,1,60,1,60,NA,NA,"Republican" +2,NA,5519,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,5523,"tess",1,0,99,1,1,NA,NA,"Democrat" +2,NA,5536,"tess",1,0,87,1,13,NA,NA,"Democrat" +2,NA,5540,"tess",3,1,65,1,65,NA,NA,"Democrat" +2,NA,5544,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,5551,"tess",3,1,79,1,79,NA,NA,"Republican" +2,NA,5553,"tess",1,1,74,1,74,NA,NA,"Republican" +2,NA,5559,"tess",2,0,79,1,21,NA,NA,"Republican" +2,NA,5561,"tess",1,1,25,1,25,NA,NA,"Republican" +2,NA,5567,"tess",2,0,90,1,10,NA,NA,"Republican" +2,NA,5569,"tess",3,1,33,1,33,NA,NA,"Democrat" +2,NA,5570,"tess",4,1,71,1,71,NA,NA,"Democrat" +2,NA,5575,"tess",2,0,19,1,81,NA,NA,"Democrat" +2,NA,5576,"tess",1,1,67,1,67,NA,NA,"Democrat" +2,NA,5579,"tess",3,0,37,1,63,NA,NA,"Republican" +2,NA,5581,"tess",3,0,70,1,30,NA,NA,"Democrat" +2,NA,5584,"tess",2,0,60,1,40,NA,NA,"Democrat" +2,NA,5586,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,5590,"tess",3,0,61,1,39,NA,NA,"Democrat" +2,NA,5593,"tess",1,1,11,1,11,NA,NA,"Republican" +2,NA,5594,"tess",2,0,89,1,11,NA,NA,"Republican" +2,NA,5595,"tess",4,1,0,1,0,NA,NA,"Republican" +2,NA,5597,"tess",2,0,29,1,71,NA,NA,"Republican" +2,NA,5611,"tess",1,0,55,1,45,NA,NA,"Republican" +2,NA,5612,"tess",3,0,68,1,32,NA,NA,"Democrat" +2,NA,5613,"tess",1,1,66,1,66,NA,NA,"Republican" +2,NA,5614,"tess",2,0,66,1,34,NA,NA,"Democrat" +2,NA,5615,"tess",3,0,80,1,20,NA,NA,"Democrat" +2,NA,5617,"tess",2,1,91,1,91,NA,NA,"Democrat" +2,NA,5620,"tess",1,0,48,1,52,NA,NA,"Democrat" +2,NA,5621,"tess",2,0,98,1,2,NA,NA,"Democrat" +2,NA,5626,"tess",3,0,4,1,96,NA,NA,"Democrat" +2,NA,5631,"tess",2,1,81,1,81,NA,NA,"Republican" +2,NA,5633,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,5635,"tess",1,1,98,1,98,NA,NA,"Republican" +2,NA,5646,"tess",4,1,8,1,8,NA,NA,"Republican" +2,NA,5648,"tess",3,1,65,1,65,NA,NA,"Democrat" +2,NA,5654,"tess",4,1,87,1,87,NA,NA,"Democrat" +2,NA,5657,"tess",3,0,47,1,53,NA,NA,"Democrat" +2,NA,5660,"tess",2,1,70,1,70,NA,NA,"Democrat" +2,NA,5663,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,5664,"tess",3,1,75,1,75,NA,NA,"Democrat" +2,NA,5669,"tess",3,1,80,1,80,NA,NA,"Neither" +2,NA,5676,"tess",3,1,99,1,99,NA,NA,"Democrat" +2,NA,5677,"tess",2,0,33,1,67,NA,NA,"Republican" +2,NA,5679,"tess",4,0,74,1,26,NA,NA,"Democrat" +2,NA,5681,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,5683,"tess",3,0,94,1,6,NA,NA,"Democrat" +2,NA,5684,"tess",1,0,99,1,1,NA,NA,"Democrat" +2,NA,5691,"tess",4,0,44,1,56,NA,NA,"Democrat" +2,NA,5706,"tess",2,1,52,1,52,NA,NA,"Republican" +2,NA,5715,"tess",1,1,90,1,90,NA,NA,"Republican" +2,NA,5720,"tess",3,1,58,1,58,NA,NA,"Republican" +2,NA,5721,"tess",1,1,99,1,99,NA,NA,"Republican" +2,NA,5725,"tess",4,0,87,1,13,NA,NA,"Republican" +2,NA,5726,"tess",3,0,83,1,17,NA,NA,"Democrat" +2,NA,5729,"tess",4,1,100,1,100,NA,NA,"Republican" +2,NA,5730,"tess",3,1,80,1,80,NA,NA,"Republican" +2,NA,5731,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,5732,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,5734,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,5735,"tess",2,0,25,1,75,NA,NA,"Republican" +2,NA,5740,"tess",4,0,0,1,100,NA,NA,"Democrat" +2,NA,5743,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,5744,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,5745,"tess",3,1,70,1,70,NA,NA,"Democrat" +2,NA,5746,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,5751,"tess",1,0,99,1,1,NA,NA,"Republican" +2,NA,5752,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,5757,"tess",3,1,47,1,47,NA,NA,"Republican" +2,NA,5760,"tess",1,1,39,1,39,NA,NA,"Democrat" +2,NA,5763,"tess",3,0,67,1,33,NA,NA,"Democrat" +2,NA,5772,"tess",3,0,73,1,27,NA,NA,"Democrat" +2,NA,5783,"tess",2,0,39,1,61,NA,NA,"Democrat" +2,NA,5787,"tess",2,1,98,1,98,NA,NA,"Republican" +2,NA,5802,"tess",4,0,90,1,10,NA,NA,"Republican" +2,NA,5803,"tess",4,0,88,1,12,NA,NA,"Republican" +2,NA,5804,"tess",1,1,41,1,41,NA,NA,"Republican" +2,NA,5810,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,5815,"tess",3,0,10,1,90,NA,NA,"Democrat" +2,NA,5820,"tess",2,1,89,1,89,NA,NA,"Democrat" +2,NA,5824,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,5825,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,5826,"tess",2,1,82,1,82,NA,NA,"Republican" +2,NA,5833,"tess",3,1,89,1,89,NA,NA,"Democrat" +2,NA,5838,"tess",3,0,89,1,11,NA,NA,"Republican" +2,NA,5842,"tess",3,0,94,1,6,NA,NA,"Democrat" +2,NA,5844,"tess",1,0,75,1,25,NA,NA,"Democrat" +2,NA,5854,"tess",4,1,1,1,1,NA,NA,"Democrat" +2,NA,5868,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,5873,"tess",2,0,98,1,2,NA,NA,"Democrat" +2,NA,5874,"tess",2,0,37,1,63,NA,NA,"Democrat" +2,NA,5884,"tess",1,1,10,1,10,NA,NA,"Democrat" +2,NA,5885,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,5886,"tess",3,0,46,1,54,NA,NA,"Republican" +2,NA,5889,"tess",4,0,0,1,100,NA,NA,"Democrat" +2,NA,5896,"tess",3,0,50,1,50,NA,NA,"Republican" +2,NA,5899,"tess",1,0,10,1,90,NA,NA,"Democrat" +2,NA,5901,"tess",3,1,90,1,90,NA,NA,"Democrat" +2,NA,5902,"tess",3,1,0,1,0,NA,NA,"Republican" +2,NA,5906,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,5914,"tess",2,1,47,1,47,NA,NA,"Republican" +2,NA,5916,"tess",1,1,60,1,60,NA,NA,"Republican" +2,NA,5918,"tess",3,0,60,1,40,NA,NA,"Republican" +2,NA,5920,"tess",1,1,79,1,79,NA,NA,"Republican" +2,NA,5922,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,5925,"tess",3,1,77,1,77,NA,NA,"Republican" +2,NA,5926,"tess",4,0,70,1,30,NA,NA,"Democrat" +2,NA,5931,"tess",1,0,48,1,52,NA,NA,"Democrat" +2,NA,5934,"tess",2,0,96,1,4,NA,NA,"Democrat" +2,NA,5937,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,5940,"tess",2,1,54,1,54,NA,NA,"Democrat" +2,NA,5946,"tess",4,0,97,1,3,NA,NA,"Republican" +2,NA,5951,"tess",1,1,48,1,48,NA,NA,"Democrat" +2,NA,5954,"tess",4,0,70,1,30,NA,NA,"Democrat" +2,NA,5958,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,5959,"tess",3,1,28,1,28,NA,NA,"Republican" +2,NA,5963,"tess",3,1,44,1,44,NA,NA,"Democrat" +2,NA,5964,"tess",2,0,81,1,19,NA,NA,"Democrat" +2,NA,5978,"tess",3,0,92,1,8,NA,NA,"Democrat" +2,NA,5981,"tess",2,0,76,1,24,NA,NA,"Republican" +2,NA,5982,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,5987,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,5988,"tess",4,0,62,1,38,NA,NA,"Democrat" +2,NA,5990,"tess",4,0,48,1,52,NA,NA,"Democrat" +2,NA,5994,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,5996,"tess",3,0,35,1,65,NA,NA,"Democrat" +2,NA,5998,"tess",1,1,53,1,53,NA,NA,"Democrat" +2,NA,5999,"tess",1,1,76,1,76,NA,NA,"Democrat" +2,NA,6000,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,6008,"tess",2,1,54,1,54,NA,NA,"Republican" +2,NA,6012,"tess",2,1,59,1,59,NA,NA,"Republican" +2,NA,6013,"tess",3,1,62,1,62,NA,NA,"Democrat" +2,NA,6039,"tess",4,0,67,1,33,NA,NA,"Republican" +2,NA,6041,"tess",3,1,49,1,49,NA,NA,"Democrat" +2,NA,6042,"tess",4,0,98,1,2,NA,NA,"Neither" +2,NA,6045,"tess",1,0,38,1,62,NA,NA,"Republican" +2,NA,6046,"tess",1,0,90,1,10,NA,NA,"Democrat" +2,NA,6048,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,6050,"tess",2,0,28,1,72,NA,NA,"Republican" +2,NA,6053,"tess",3,0,46,1,54,NA,NA,"Republican" +2,NA,6061,"tess",2,1,86,1,86,NA,NA,"Democrat" +2,NA,6067,"tess",2,1,81,1,81,NA,NA,"Republican" +2,NA,6068,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,6069,"tess",2,0,83,1,17,NA,NA,"Democrat" +2,NA,6070,"tess",2,1,10,1,10,NA,NA,"Republican" +2,NA,6073,"tess",1,1,99,1,99,NA,NA,"Democrat" +2,NA,6074,"tess",4,0,29,1,71,NA,NA,"Republican" +2,NA,6077,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,6084,"tess",1,0,0,1,100,NA,NA,"Democrat" +2,NA,6087,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,6088,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,6090,"tess",2,0,0,1,100,NA,NA,"Democrat" +2,NA,6095,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,6096,"tess",1,0,11,1,89,NA,NA,"Republican" +2,NA,6097,"tess",2,1,13,1,13,NA,NA,"Republican" +2,NA,6100,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,6101,"tess",4,1,76,1,76,NA,NA,"Democrat" +2,NA,6110,"tess",3,1,90,1,90,NA,NA,"Republican" +2,NA,6111,"tess",3,0,85,1,15,NA,NA,"Democrat" +2,NA,6116,"tess",2,1,20,1,20,NA,NA,"Democrat" +2,NA,6121,"tess",3,0,84,1,16,NA,NA,"Democrat" +2,NA,6130,"tess",4,0,100,1,0,NA,NA,"Republican" +2,NA,6131,"tess",3,1,50,1,50,NA,NA,"Neither" +2,NA,6132,"tess",3,1,10,1,10,NA,NA,"Neither" +2,NA,6136,"tess",2,0,58,1,42,NA,NA,"Democrat" +2,NA,6137,"tess",1,0,52,1,48,NA,NA,"Democrat" +2,NA,6138,"tess",2,0,25,1,75,NA,NA,"Democrat" +2,NA,6142,"tess",2,0,50,1,50,NA,NA,"Neither" +2,NA,6144,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,6146,"tess",1,1,61,1,61,NA,NA,"Republican" +2,NA,6151,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,6152,"tess",4,1,75,1,75,NA,NA,"Democrat" +2,NA,6155,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,6158,"tess",4,1,75,1,75,NA,NA,"Republican" +2,NA,6162,"tess",4,1,54,1,54,NA,NA,"Democrat" +2,NA,6164,"tess",4,0,61,1,39,NA,NA,"Democrat" +2,NA,6170,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,6171,"tess",2,0,1,1,99,NA,NA,"Democrat" +2,NA,6172,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,6179,"tess",1,1,46,1,46,NA,NA,"Democrat" +2,NA,6180,"tess",2,0,96,1,4,NA,NA,"Republican" +2,NA,6187,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,6188,"tess",3,0,50,1,50,NA,NA,"Republican" +2,NA,6193,"tess",3,1,80,1,80,NA,NA,"Democrat" +2,NA,6195,"tess",4,0,51,1,49,NA,NA,"Democrat" +2,NA,6196,"tess",3,0,4,1,96,NA,NA,"Democrat" +2,NA,6197,"tess",2,1,60,1,60,NA,NA,"Democrat" +2,NA,6199,"tess",1,1,95,1,95,NA,NA,"Republican" +2,NA,6204,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,6209,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,6215,"tess",2,0,90,1,10,NA,NA,"Republican" +2,NA,6220,"tess",3,1,30,1,30,NA,NA,"Democrat" +2,NA,6224,"tess",4,1,90,1,90,NA,NA,"Democrat" +2,NA,6225,"tess",4,1,62,1,62,NA,NA,"Democrat" +2,NA,6226,"tess",3,0,49,1,51,NA,NA,"Democrat" +2,NA,6227,"tess",4,1,82,1,82,NA,NA,"Democrat" +2,NA,6231,"tess",3,0,60,1,40,NA,NA,"Democrat" +2,NA,6237,"tess",3,0,60,1,40,NA,NA,"Democrat" +2,NA,6242,"tess",2,0,79,1,21,NA,NA,"Democrat" +2,NA,6244,"tess",3,0,60,1,40,NA,NA,"Democrat" +2,NA,6245,"tess",2,0,90,1,10,NA,NA,"Democrat" +2,NA,6246,"tess",2,0,77,1,23,NA,NA,"Republican" +2,NA,6248,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,6249,"tess",4,1,23,1,23,NA,NA,"Democrat" +2,NA,6251,"tess",2,1,84,1,84,NA,NA,"Democrat" +2,NA,6254,"tess",3,0,46,1,54,NA,NA,"Democrat" +2,NA,6256,"tess",2,0,99,1,1,NA,NA,"Democrat" +2,NA,6257,"tess",4,1,15,1,15,NA,NA,"Democrat" +2,NA,6258,"tess",2,0,29,1,71,NA,NA,"Republican" +2,NA,6259,"tess",1,0,0,1,100,NA,NA,"Democrat" +2,NA,6261,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,6263,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,6265,"tess",3,0,52,1,48,NA,NA,"Democrat" +2,NA,6268,"tess",4,0,59,1,41,NA,NA,"Republican" +2,NA,6269,"tess",4,0,25,1,75,NA,NA,"Democrat" +2,NA,6270,"tess",3,0,59,1,41,NA,NA,"Democrat" +2,NA,6271,"tess",3,0,51,1,49,NA,NA,"Democrat" +2,NA,6272,"tess",4,0,71,1,29,NA,NA,"Democrat" +2,NA,6279,"tess",1,1,24,1,24,NA,NA,"Republican" +2,NA,6280,"tess",3,0,95,1,5,NA,NA,"Democrat" +2,NA,6284,"tess",3,0,39,1,61,NA,NA,"Neither" +2,NA,6292,"tess",4,0,91,1,9,NA,NA,"Democrat" +2,NA,6294,"tess",4,0,100,1,0,NA,NA,"Republican" +2,NA,6298,"tess",2,0,100,1,0,NA,NA,"Neither" +2,NA,6301,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,6307,"tess",3,0,20,1,80,NA,NA,"Republican" +2,NA,6312,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,6323,"tess",4,1,94,1,94,NA,NA,"Democrat" +2,NA,6326,"tess",2,1,70,1,70,NA,NA,"Democrat" +2,NA,6329,"tess",3,1,60,1,60,NA,NA,"Democrat" +2,NA,6333,"tess",4,1,60,1,60,NA,NA,"Republican" +2,NA,6354,"tess",1,0,70,1,30,NA,NA,"Republican" +2,NA,6361,"tess",3,0,9,1,91,NA,NA,"Democrat" +2,NA,6362,"tess",4,1,97,1,97,NA,NA,"Republican" +2,NA,6366,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,6367,"tess",3,0,80,1,20,NA,NA,"Democrat" +2,NA,6372,"tess",2,0,100,1,0,NA,NA,"Democrat" +2,NA,6373,"tess",2,0,51,1,49,NA,NA,"Democrat" +2,NA,6376,"tess",3,1,75,1,75,NA,NA,"Democrat" +2,NA,6382,"tess",4,0,43,1,57,NA,NA,"Democrat" +2,NA,6383,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,6385,"tess",1,1,85,1,85,NA,NA,"Democrat" +2,NA,6388,"tess",1,1,31,1,31,NA,NA,"Democrat" +2,NA,6391,"tess",1,0,70,1,30,NA,NA,"Democrat" +2,NA,6397,"tess",2,0,0,1,100,NA,NA,"Republican" +2,NA,6401,"tess",3,0,71,1,29,NA,NA,"Democrat" +2,NA,6402,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,6405,"tess",3,1,75,1,75,NA,NA,"Republican" +2,NA,6411,"tess",3,1,99,1,99,NA,NA,"Democrat" +2,NA,6414,"tess",4,0,40,1,60,NA,NA,"Republican" +2,NA,6419,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,6424,"tess",4,1,80,1,80,NA,NA,"Republican" +2,NA,6427,"tess",2,1,98,1,98,NA,NA,"Republican" +2,NA,6428,"tess",4,0,95,1,5,NA,NA,"Neither" +2,NA,6430,"tess",1,0,20,1,80,NA,NA,"Democrat" +2,NA,6434,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,6440,"tess",4,0,60,1,40,NA,NA,"Republican" +2,NA,6449,"tess",1,1,78,1,78,NA,NA,"Republican" +2,NA,6452,"tess",1,0,94,1,6,NA,NA,"Republican" +2,NA,6458,"tess",3,0,50,1,50,NA,NA,"Republican" +2,NA,6462,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,6463,"tess",1,1,81,1,81,NA,NA,"Democrat" +2,NA,6466,"tess",1,0,20,1,80,NA,NA,"Democrat" +2,NA,6467,"tess",4,0,58,1,42,NA,NA,"Democrat" +2,NA,6468,"tess",1,1,20,1,20,NA,NA,"Republican" +2,NA,6469,"tess",1,0,31,1,69,NA,NA,"Democrat" +2,NA,6472,"tess",2,0,100,1,0,NA,NA,"Republican" +2,NA,6473,"tess",4,1,94,1,94,NA,NA,"Republican" +2,NA,6488,"tess",1,1,80,1,80,NA,NA,"Republican" +2,NA,6489,"tess",2,1,15,1,15,NA,NA,"Democrat" +2,NA,6491,"tess",1,0,69,1,31,NA,NA,"Neither" +2,NA,6496,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,6501,"tess",3,1,20,1,20,NA,NA,"Neither" +2,NA,6506,"tess",3,1,78,1,78,NA,NA,"Democrat" +2,NA,6507,"tess",1,0,93,1,7,NA,NA,"Republican" +2,NA,6508,"tess",3,0,86,1,14,NA,NA,"Republican" +2,NA,6513,"tess",2,1,99,1,99,NA,NA,"Republican" +2,NA,6516,"tess",2,0,70,1,30,NA,NA,"Republican" +2,NA,6519,"tess",3,0,98,1,2,NA,NA,"Republican" +2,NA,6521,"tess",2,0,31,1,69,NA,NA,"Democrat" +2,NA,6522,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,6524,"tess",3,1,98,1,98,NA,NA,"Democrat" +2,NA,6527,"tess",2,1,26,1,26,NA,NA,"Democrat" +2,NA,6532,"tess",1,1,51,1,51,NA,NA,"Democrat" +2,NA,6534,"tess",1,0,60,1,40,NA,NA,"Republican" +2,NA,6538,"tess",3,0,70,1,30,NA,NA,"Republican" +2,NA,6540,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,6541,"tess",4,1,10,1,10,NA,NA,"Democrat" +2,NA,6545,"tess",2,0,96,1,4,NA,NA,"Democrat" +2,NA,6547,"tess",2,0,20,1,80,NA,NA,"Republican" +2,NA,6548,"tess",1,0,55,1,45,NA,NA,"Democrat" +2,NA,6549,"tess",2,1,31,1,31,NA,NA,"Democrat" +2,NA,6551,"tess",2,1,60,1,60,NA,NA,"Democrat" +2,NA,6553,"tess",3,0,1,1,99,NA,NA,"Republican" +2,NA,6557,"tess",3,1,51,1,51,NA,NA,"Republican" +2,NA,6558,"tess",1,0,20,1,80,NA,NA,"Republican" +2,NA,6561,"tess",1,0,75,1,25,NA,NA,"Democrat" +2,NA,6562,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,6565,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,6568,"tess",3,1,60,1,60,NA,NA,"Democrat" +2,NA,6571,"tess",1,0,76,1,24,NA,NA,"Republican" +2,NA,6572,"tess",2,1,52,1,52,NA,NA,"Democrat" +2,NA,6581,"tess",3,1,32,1,32,NA,NA,"Democrat" +2,NA,6587,"tess",3,1,3,1,3,NA,NA,"Republican" +2,NA,6588,"tess",3,1,39,1,39,NA,NA,"Democrat" +2,NA,6589,"tess",2,0,64,1,36,NA,NA,"Democrat" +2,NA,6590,"tess",1,0,30,1,70,NA,NA,"Democrat" +2,NA,6592,"tess",4,0,63,1,37,NA,NA,"Democrat" +2,NA,6593,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,6596,"tess",1,0,100,1,0,NA,NA,"Democrat" +2,NA,6599,"tess",2,0,82,1,18,NA,NA,"Democrat" +2,NA,6600,"tess",4,0,59,1,41,NA,NA,"Republican" +2,NA,6607,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,6608,"tess",3,0,9,1,91,NA,NA,"Republican" +2,NA,6609,"tess",4,1,95,1,95,NA,NA,"Democrat" +2,NA,6610,"tess",3,1,80,1,80,NA,NA,"Democrat" +2,NA,6611,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,6615,"tess",2,0,30,1,70,NA,NA,"Democrat" +2,NA,6617,"tess",4,0,87,1,13,NA,NA,"Democrat" +2,NA,6619,"tess",2,1,69,1,69,NA,NA,"Republican" +2,NA,6621,"tess",2,0,75,1,25,NA,NA,"Democrat" +2,NA,6625,"tess",3,0,51,1,49,NA,NA,"Democrat" +2,NA,6626,"tess",2,1,59,1,59,NA,NA,"Republican" +2,NA,6633,"tess",1,0,10,1,90,NA,NA,"Republican" +2,NA,6634,"tess",3,0,75,1,25,NA,NA,"Republican" +2,NA,6635,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,6636,"tess",3,0,51,1,49,NA,NA,"Republican" +2,NA,6640,"tess",1,0,96,1,4,NA,NA,"Republican" +2,NA,6642,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,6646,"tess",4,1,90,1,90,NA,NA,"Republican" +2,NA,6647,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,6648,"tess",1,1,56,1,56,NA,NA,"Democrat" +2,NA,6652,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,6656,"tess",1,1,98,1,98,NA,NA,"Democrat" +2,NA,6660,"tess",1,1,18,1,18,NA,NA,"Democrat" +2,NA,6661,"tess",3,1,40,1,40,NA,NA,"Republican" +2,NA,6665,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,6666,"tess",3,1,71,1,71,NA,NA,"Democrat" +2,NA,6667,"tess",3,0,20,1,80,NA,NA,"Democrat" +2,NA,6668,"tess",2,1,98,1,98,NA,NA,"Democrat" +2,NA,6670,"tess",1,0,35,1,65,NA,NA,"Democrat" +2,NA,6674,"tess",2,1,70,1,70,NA,NA,"Democrat" +2,NA,6675,"tess",3,0,11,1,89,NA,NA,"Democrat" +2,NA,6676,"tess",1,0,29,1,71,NA,NA,"Democrat" +2,NA,6680,"tess",3,0,56,1,44,NA,NA,"Republican" +2,NA,6682,"tess",1,0,0,1,100,NA,NA,"Democrat" +2,NA,6683,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,6685,"tess",4,0,69,1,31,NA,NA,"Republican" +2,NA,6686,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,6688,"tess",3,1,88,1,88,NA,NA,"Republican" +2,NA,6696,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,6698,"tess",2,1,99,1,99,NA,NA,"Democrat" +2,NA,6702,"tess",2,0,30,1,70,NA,NA,"Democrat" +2,NA,6703,"tess",2,0,75,1,25,NA,NA,"Democrat" +2,NA,6710,"tess",2,0,29,1,71,NA,NA,"Republican" +2,NA,6712,"tess",3,1,37,1,37,NA,NA,"Democrat" +2,NA,6718,"tess",1,1,80,1,80,NA,NA,"Republican" +2,NA,6720,"tess",1,0,81,1,19,NA,NA,"Republican" +2,NA,6725,"tess",2,1,100,1,100,NA,NA,"Republican" +2,NA,6729,"tess",2,1,78,1,78,NA,NA,"Democrat" +2,NA,6730,"tess",1,0,82,1,18,NA,NA,"Democrat" +2,NA,6732,"tess",2,0,85,1,15,NA,NA,"Democrat" +2,NA,6733,"tess",2,0,86,1,14,NA,NA,"Republican" +2,NA,6741,"tess",2,0,20,1,80,NA,NA,"Democrat" +2,NA,6742,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,6748,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,6755,"tess",4,0,9,1,91,NA,NA,"Republican" +2,NA,6758,"tess",2,1,48,1,48,NA,NA,"Republican" +2,NA,6760,"tess",4,0,40,1,60,NA,NA,"Democrat" +2,NA,6775,"tess",1,1,90,1,90,NA,NA,"Republican" +2,NA,6777,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,6780,"tess",4,1,51,1,51,NA,NA,"Democrat" +2,NA,6782,"tess",2,0,89,1,11,NA,NA,"Republican" +2,NA,6783,"tess",2,0,27,1,73,NA,NA,"Democrat" +2,NA,6788,"tess",3,0,94,1,6,NA,NA,"Democrat" +2,NA,6791,"tess",3,0,91,1,9,NA,NA,"Democrat" +2,NA,6792,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,6795,"tess",4,0,70,1,30,NA,NA,"Democrat" +2,NA,6797,"tess",3,1,64,1,64,NA,NA,"Democrat" +2,NA,6802,"tess",1,0,32,1,68,NA,NA,"Democrat" +2,NA,6803,"tess",3,1,6,1,6,NA,NA,"Democrat" +2,NA,6804,"tess",1,1,20,1,20,NA,NA,"Republican" +2,NA,6805,"tess",4,1,19,1,19,NA,NA,"Republican" +2,NA,6814,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,6820,"tess",2,1,90,1,90,NA,NA,"Republican" +2,NA,6825,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,6827,"tess",4,1,89,1,89,NA,NA,"Democrat" +2,NA,6831,"tess",1,0,9,1,91,NA,NA,"Republican" +2,NA,6833,"tess",4,1,100,1,100,NA,NA,"Neither" +2,NA,6835,"tess",1,0,70,1,30,NA,NA,"Democrat" +2,NA,6837,"tess",4,0,85,1,15,NA,NA,"Democrat" +2,NA,6838,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,6842,"tess",3,1,51,1,51,NA,NA,"Republican" +2,NA,6843,"tess",4,0,45,1,55,NA,NA,"Republican" +2,NA,6844,"tess",3,0,41,1,59,NA,NA,"Democrat" +2,NA,6853,"tess",3,1,70,1,70,NA,NA,"Democrat" +2,NA,6864,"tess",2,0,83,1,17,NA,NA,"Republican" +2,NA,6865,"tess",4,1,52,1,52,NA,NA,"Democrat" +2,NA,6866,"tess",4,0,99,1,1,NA,NA,"Democrat" +2,NA,6868,"tess",1,0,51,1,49,NA,NA,"Republican" +2,NA,6869,"tess",2,0,13,1,87,NA,NA,"Democrat" +2,NA,6881,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,6882,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,6883,"tess",3,0,52,1,48,NA,NA,"Democrat" +2,NA,6891,"tess",3,1,81,1,81,NA,NA,"Democrat" +2,NA,6893,"tess",4,1,7,1,7,NA,NA,"Republican" +2,NA,6897,"tess",4,0,70,1,30,NA,NA,"Democrat" +2,NA,6908,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,6909,"tess",3,1,65,1,65,NA,NA,"Republican" +2,NA,6910,"tess",2,0,78,1,22,NA,NA,"Democrat" +2,NA,6911,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,6912,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,6913,"tess",3,1,63,1,63,NA,NA,"Democrat" +2,NA,6915,"tess",3,0,90,1,10,NA,NA,"Republican" +2,NA,6920,"tess",2,1,44,1,44,NA,NA,"Republican" +2,NA,6927,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,6930,"tess",4,0,35,1,65,NA,NA,"Republican" +2,NA,6932,"tess",1,0,53,1,47,NA,NA,"Democrat" +2,NA,6935,"tess",4,1,87,1,87,NA,NA,"Democrat" +2,NA,6936,"tess",4,1,80,1,80,NA,NA,"Republican" +2,NA,6938,"tess",4,0,82,1,18,NA,NA,"Democrat" +2,NA,6951,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,6956,"tess",2,1,93,1,93,NA,NA,"Democrat" +2,NA,6963,"tess",1,0,62,1,38,NA,NA,"Democrat" +2,NA,6971,"tess",2,1,85,1,85,NA,NA,"Republican" +2,NA,6984,"tess",2,1,30,1,30,NA,NA,"Republican" +2,NA,6997,"tess",4,0,70,1,30,NA,NA,"Republican" +2,NA,6998,"tess",4,1,91,1,91,NA,NA,"Republican" +2,NA,7003,"tess",3,1,90,1,90,NA,NA,"Republican" +2,NA,7011,"tess",3,1,99,1,99,NA,NA,"Democrat" +2,NA,7022,"tess",4,1,97,1,97,NA,NA,"Democrat" +2,NA,7023,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,7027,"tess",1,1,36,1,36,NA,NA,"Republican" +2,NA,7031,"tess",1,0,1,1,99,NA,NA,"Republican" +2,NA,7036,"tess",3,1,60,1,60,NA,NA,"Republican" +2,NA,7046,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,7048,"tess",1,1,2,1,2,NA,NA,"Democrat" +2,NA,7049,"tess",1,0,69,1,31,NA,NA,"Democrat" +2,NA,7054,"tess",2,0,8,1,92,NA,NA,"Democrat" +2,NA,7055,"tess",3,1,0,1,0,NA,NA,"Republican" +2,NA,7060,"tess",4,1,90,1,90,NA,NA,"Democrat" +2,NA,7061,"tess",3,0,87,1,13,NA,NA,"Democrat" +2,NA,7066,"tess",4,0,34,1,66,NA,NA,"Democrat" +2,NA,7073,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,7078,"tess",1,1,10,1,10,NA,NA,"Republican" +2,NA,7083,"tess",2,0,55,1,45,NA,NA,"Democrat" +2,NA,7087,"tess",3,1,0,1,0,NA,NA,"Democrat" +2,NA,7088,"tess",2,0,78,1,22,NA,NA,"Democrat" +2,NA,7094,"tess",2,1,90,1,90,NA,NA,"Republican" +2,NA,7099,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,7104,"tess",3,0,91,1,9,NA,NA,"Republican" +2,NA,7106,"tess",2,1,100,1,100,NA,NA,"Republican" +2,NA,7122,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,7124,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,7125,"tess",3,1,98,1,98,NA,NA,"Republican" +2,NA,7127,"tess",3,0,1,1,99,NA,NA,"Democrat" +2,NA,7128,"tess",4,1,100,1,100,NA,NA,"Republican" +2,NA,7133,"tess",4,1,67,1,67,NA,NA,"Democrat" +2,NA,7140,"tess",4,1,56,1,56,NA,NA,"Republican" +2,NA,7148,"tess",1,1,91,1,91,NA,NA,"Democrat" +2,NA,7153,"tess",4,1,94,1,94,NA,NA,"Democrat" +2,NA,7158,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,7161,"tess",3,0,24,1,76,NA,NA,"Democrat" +2,NA,7164,"tess",4,1,10,1,10,NA,NA,"Neither" +2,NA,7166,"tess",1,0,51,1,49,NA,NA,"Neither" +2,NA,7174,"tess",1,0,83,1,17,NA,NA,"Democrat" +2,NA,7182,"tess",1,0,70,1,30,NA,NA,"Democrat" +2,NA,7186,"tess",4,0,88,1,12,NA,NA,"Democrat" +2,NA,7190,"tess",1,1,84,1,84,NA,NA,"Democrat" +2,NA,7197,"tess",3,1,1,1,1,NA,NA,"Republican" +2,NA,7199,"tess",1,1,99,1,99,NA,NA,"Republican" +2,NA,7201,"tess",2,1,71,1,71,NA,NA,"Democrat" +2,NA,7210,"tess",1,1,90,1,90,NA,NA,"Neither" +2,NA,7216,"tess",1,1,100,1,100,NA,NA,"Democrat" +2,NA,7218,"tess",2,1,72,1,72,NA,NA,"Democrat" +2,NA,7222,"tess",3,1,10,1,10,NA,NA,"Democrat" +2,NA,7223,"tess",3,1,4,1,4,NA,NA,"Democrat" +2,NA,7224,"tess",3,1,6,1,6,NA,NA,"Republican" +2,NA,7225,"tess",2,0,97,1,3,NA,NA,"Democrat" +2,NA,7226,"tess",3,0,57,1,43,NA,NA,"Democrat" +2,NA,7228,"tess",4,1,93,1,93,NA,NA,"Democrat" +2,NA,7230,"tess",3,0,19,1,81,NA,NA,"Republican" +2,NA,7231,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,7235,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,7239,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,7240,"tess",2,0,22,1,78,NA,NA,"Democrat" +2,NA,7241,"tess",4,1,99,1,99,NA,NA,"Neither" +2,NA,7248,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,7252,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,7253,"tess",2,1,67,1,67,NA,NA,"Neither" +2,NA,7266,"tess",2,0,96,1,4,NA,NA,"Republican" +2,NA,7273,"tess",2,1,82,1,82,NA,NA,"Democrat" +2,NA,7275,"tess",2,0,95,1,5,NA,NA,"Republican" +2,NA,7276,"tess",3,1,36,1,36,NA,NA,"Republican" +2,NA,7280,"tess",1,1,88,1,88,NA,NA,"Neither" +2,NA,7286,"tess",4,0,10,1,90,NA,NA,"Republican" +2,NA,7287,"tess",4,1,80,1,80,NA,NA,"Republican" +2,NA,7289,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,7297,"tess",2,1,2,1,2,NA,NA,"Democrat" +2,NA,7303,"tess",1,0,20,1,80,NA,NA,"Republican" +2,NA,7307,"tess",3,1,96,1,96,NA,NA,"Democrat" +2,NA,7311,"tess",2,0,90,1,10,NA,NA,"Republican" +2,NA,7315,"tess",4,0,50,1,50,NA,NA,"Neither" +2,NA,7323,"tess",2,0,99,1,1,NA,NA,"Republican" +2,NA,7325,"tess",2,0,90,1,10,NA,NA,"Republican" +2,NA,7330,"tess",2,1,88,1,88,NA,NA,"Democrat" +2,NA,7338,"tess",2,1,98,1,98,NA,NA,"Democrat" +2,NA,7341,"tess",4,0,99,1,1,NA,NA,"Democrat" +2,NA,7353,"tess",3,0,92,1,8,NA,NA,"Democrat" +2,NA,7356,"tess",4,0,69,1,31,NA,NA,"Democrat" +2,NA,7360,"tess",2,0,90,1,10,NA,NA,"Democrat" +2,NA,7368,"tess",2,1,90,1,90,NA,NA,"Democrat" +2,NA,7370,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,7373,"tess",2,1,66,1,66,NA,NA,"Democrat" +2,NA,7381,"tess",2,0,100,1,0,NA,NA,"Republican" +2,NA,7388,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,7395,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,7397,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,7398,"tess",2,0,0,1,100,NA,NA,"Democrat" +2,NA,7404,"tess",1,0,95,1,5,NA,NA,"Democrat" +2,NA,7407,"tess",4,0,80,1,20,NA,NA,"Republican" +2,NA,7409,"tess",4,1,47,1,47,NA,NA,"Democrat" +2,NA,7412,"tess",1,0,99,1,1,NA,NA,"Republican" +2,NA,7418,"tess",2,1,51,1,51,NA,NA,"Democrat" +2,NA,7425,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,7427,"tess",3,1,10,1,10,NA,NA,"Democrat" +2,NA,7432,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,7437,"tess",1,0,67,1,33,NA,NA,"Democrat" +2,NA,7440,"tess",3,0,92,1,8,NA,NA,"Republican" +2,NA,7441,"tess",1,1,89,1,89,NA,NA,"Democrat" +2,NA,7446,"tess",3,1,24,1,24,NA,NA,"Democrat" +2,NA,7448,"tess",2,1,1,1,1,NA,NA,"Democrat" +2,NA,7450,"tess",2,1,36,1,36,NA,NA,"Democrat" +2,NA,7452,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,7453,"tess",4,0,60,1,40,NA,NA,"Republican" +2,NA,7466,"tess",1,1,30,1,30,NA,NA,"Republican" +2,NA,7470,"tess",1,0,88,1,12,NA,NA,"Republican" +2,NA,7472,"tess",4,0,10,1,90,NA,NA,"Republican" +2,NA,7475,"tess",1,0,3,1,97,NA,NA,"Neither" +2,NA,7477,"tess",4,1,0,1,0,NA,NA,"Republican" +2,NA,7479,"tess",4,0,0,1,100,NA,NA,"Democrat" +2,NA,7486,"tess",3,0,35,1,65,NA,NA,"Democrat" +2,NA,7494,"tess",4,1,53,1,53,NA,NA,"Republican" +2,NA,7497,"tess",1,0,11,1,89,NA,NA,"Democrat" +2,NA,7498,"tess",2,0,83,1,17,NA,NA,"Republican" +2,NA,7501,"tess",3,1,69,1,69,NA,NA,"Republican" +2,NA,7504,"tess",2,0,80,1,20,NA,NA,"Republican" +2,NA,7506,"tess",2,1,83,1,83,NA,NA,"Democrat" +2,NA,7524,"tess",1,1,61,1,61,NA,NA,"Democrat" +2,NA,7525,"tess",3,0,5,1,95,NA,NA,"Democrat" +2,NA,7528,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,7534,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,7539,"tess",1,1,75,1,75,NA,NA,"Republican" +2,NA,7542,"tess",4,1,95,1,95,NA,NA,"Republican" +2,NA,7543,"tess",3,1,93,1,93,NA,NA,"Republican" +2,NA,7546,"tess",2,0,60,1,40,NA,NA,"Republican" +2,NA,7556,"tess",2,0,91,1,9,NA,NA,"Democrat" +2,NA,7558,"tess",2,0,1,1,99,NA,NA,"Democrat" +2,NA,7563,"tess",3,0,60,1,40,NA,NA,"Democrat" +2,NA,7564,"tess",1,1,99,1,99,NA,NA,"Democrat" +2,NA,7569,"tess",4,0,56,1,44,NA,NA,"Republican" +2,NA,7573,"tess",2,1,90,1,90,NA,NA,"Democrat" +2,NA,7577,"tess",1,1,74,1,74,NA,NA,"Democrat" +2,NA,7580,"tess",2,1,73,1,73,NA,NA,"Republican" +2,NA,7584,"tess",1,1,90,1,90,NA,NA,"Republican" +2,NA,7586,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,7587,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,7588,"tess",4,1,98,1,98,NA,NA,"Republican" +2,NA,7590,"tess",1,1,64,1,64,NA,NA,"Republican" +2,NA,7593,"tess",2,1,26,1,26,NA,NA,"Republican" +2,NA,7594,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,7597,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,7600,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,7603,"tess",3,1,99,1,99,NA,NA,"Democrat" +2,NA,7605,"tess",4,0,100,1,0,NA,NA,"Republican" +2,NA,7607,"tess",2,1,70,1,70,NA,NA,"Neither" +2,NA,7608,"tess",3,1,65,1,65,NA,NA,"Republican" +2,NA,7615,"tess",4,1,100,1,100,NA,NA,"Republican" +2,NA,7622,"tess",3,0,99,1,1,NA,NA,"Democrat" +2,NA,7623,"tess",1,1,50,1,50,NA,NA,"Republican" +2,NA,7630,"tess",2,0,95,1,5,NA,NA,"Democrat" +2,NA,7631,"tess",4,0,57,1,43,NA,NA,"Democrat" +2,NA,7634,"tess",3,0,40,1,60,NA,NA,"Republican" +2,NA,7640,"tess",3,1,10,1,10,NA,NA,"Republican" +2,NA,7641,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,7656,"tess",3,1,10,1,10,NA,NA,"Republican" +2,NA,7659,"tess",1,0,95,1,5,NA,NA,"Republican" +2,NA,7662,"tess",2,0,23,1,77,NA,NA,"Democrat" +2,NA,7667,"tess",1,0,13,1,87,NA,NA,"Democrat" +2,NA,7668,"tess",4,0,80,1,20,NA,NA,"Republican" +2,NA,7688,"tess",3,1,30,1,30,NA,NA,"Democrat" +2,NA,7694,"tess",1,0,90,1,10,NA,NA,"Republican" +2,NA,7696,"tess",1,1,20,1,20,NA,NA,"Democrat" +2,NA,7699,"tess",2,1,77,1,77,NA,NA,"Democrat" +2,NA,7702,"tess",4,1,12,1,12,NA,NA,"Democrat" +2,NA,7711,"tess",4,0,95,1,5,NA,NA,"Republican" +2,NA,7712,"tess",2,0,51,1,49,NA,NA,"Democrat" +2,NA,7717,"tess",4,0,9,1,91,NA,NA,"Democrat" +2,NA,7722,"tess",2,0,50,1,50,NA,NA,"Republican" +2,NA,7739,"tess",1,1,21,1,21,NA,NA,"Republican" +2,NA,7741,"tess",4,0,99,1,1,NA,NA,"Republican" +2,NA,7747,"tess",1,1,100,1,100,NA,NA,"Democrat" +2,NA,7754,"tess",4,0,40,1,60,NA,NA,"Neither" +2,NA,7759,"tess",4,1,95,1,95,NA,NA,"Democrat" +2,NA,7778,"tess",1,1,100,1,100,NA,NA,"Democrat" +2,NA,7783,"tess",4,0,90,1,10,NA,NA,"Republican" +2,NA,7784,"tess",3,0,90,1,10,NA,NA,"Neither" +2,NA,7786,"tess",4,0,46,1,54,NA,NA,"Democrat" +2,NA,7789,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,7792,"tess",3,0,80,1,20,NA,NA,"Neither" +2,NA,7793,"tess",4,1,70,1,70,NA,NA,"Republican" +2,NA,7799,"tess",2,0,74,1,26,NA,NA,"Democrat" +2,NA,7819,"tess",1,1,66,1,66,NA,NA,"Democrat" +2,NA,7820,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,7822,"tess",4,0,30,1,70,NA,NA,"Democrat" +2,NA,7826,"tess",1,0,90,1,10,NA,NA,"Republican" +2,NA,7837,"tess",3,1,100,1,100,NA,NA,"Democrat" +2,NA,7844,"tess",1,0,20,1,80,NA,NA,"Republican" +2,NA,7854,"tess",3,1,62,1,62,NA,NA,"Democrat" +2,NA,7856,"tess",3,0,10,1,90,NA,NA,"Republican" +2,NA,7861,"tess",3,0,59,1,41,NA,NA,"Republican" +2,NA,7864,"tess",1,0,66,1,34,NA,NA,"Republican" +2,NA,7872,"tess",3,0,79,1,21,NA,NA,"Democrat" +2,NA,7880,"tess",3,1,79,1,79,NA,NA,"Democrat" +2,NA,7884,"tess",4,0,90,1,10,NA,NA,"Democrat" +2,NA,7891,"tess",3,0,82,1,18,NA,NA,"Republican" +2,NA,7906,"tess",4,1,0,1,0,NA,NA,"Republican" +2,NA,7908,"tess",4,0,99,1,1,NA,NA,"Republican" +2,NA,7910,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,7918,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,7922,"tess",4,0,57,1,43,NA,NA,"Democrat" +2,NA,7930,"tess",3,1,2,1,2,NA,NA,"Republican" +2,NA,7936,"tess",2,1,44,1,44,NA,NA,"Democrat" +2,NA,7942,"tess",2,1,8,1,8,NA,NA,"Republican" +2,NA,7946,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,7951,"tess",1,1,94,1,94,NA,NA,"Republican" +2,NA,7957,"tess",3,1,45,1,45,NA,NA,"Democrat" +2,NA,7959,"tess",2,1,42,1,42,NA,NA,"Democrat" +2,NA,7960,"tess",1,1,43,1,43,NA,NA,"Democrat" +2,NA,7965,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,7967,"tess",1,0,100,1,0,NA,NA,"Democrat" +2,NA,7968,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,7973,"tess",2,1,91,1,91,NA,NA,"Republican" +2,NA,7982,"tess",2,0,35,1,65,NA,NA,"Democrat" +2,NA,7983,"tess",4,0,54,1,46,NA,NA,"Democrat" +2,NA,7987,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,7988,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,7991,"tess",2,0,90,1,10,NA,NA,"Republican" +2,NA,7995,"tess",3,0,50,1,50,NA,NA,"Republican" +2,NA,7998,"tess",1,0,10,1,90,NA,NA,"Democrat" +2,NA,8000,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,8001,"tess",1,0,79,1,21,NA,NA,"Republican" +2,NA,8010,"tess",2,0,79,1,21,NA,NA,"Republican" +2,NA,8011,"tess",1,1,84,1,84,NA,NA,"Republican" +2,NA,8019,"tess",3,0,17,1,83,NA,NA,"Republican" +2,NA,8023,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,8041,"tess",3,0,60,1,40,NA,NA,"Republican" +2,NA,8042,"tess",2,0,85,1,15,NA,NA,"Republican" +2,NA,8049,"tess",1,0,70,1,30,NA,NA,"Republican" +2,NA,8050,"tess",1,0,0,1,100,NA,NA,"Neither" +2,NA,8055,"tess",1,1,85,1,85,NA,NA,"Democrat" +2,NA,8061,"tess",1,1,90,1,90,NA,NA,"Republican" +2,NA,8062,"tess",1,0,60,1,40,NA,NA,"Democrat" +2,NA,8063,"tess",2,0,70,1,30,NA,NA,"Republican" +2,NA,8064,"tess",2,1,18,1,18,NA,NA,"Democrat" +2,NA,8065,"tess",3,0,87,1,13,NA,NA,"Democrat" +2,NA,8069,"tess",1,0,25,1,75,NA,NA,"Democrat" +2,NA,8078,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,8079,"tess",4,1,75,1,75,NA,NA,"Democrat" +2,NA,8081,"tess",1,1,85,1,85,NA,NA,"Democrat" +2,NA,8095,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,8096,"tess",3,0,99,1,1,NA,NA,"Republican" +2,NA,8097,"tess",4,0,90,1,10,NA,NA,"Republican" +2,NA,8101,"tess",2,1,77,1,77,NA,NA,"Republican" +2,NA,8104,"tess",1,1,92,1,92,NA,NA,"Republican" +2,NA,8110,"tess",4,1,81,1,81,NA,NA,"Democrat" +2,NA,8112,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,8116,"tess",2,0,70,1,30,NA,NA,"Democrat" +2,NA,8127,"tess",3,0,75,1,25,NA,NA,"Republican" +2,NA,8134,"tess",4,1,49,1,49,NA,NA,"Democrat" +2,NA,8141,"tess",1,1,94,1,94,NA,NA,"Democrat" +2,NA,8142,"tess",4,1,99,1,99,NA,NA,"Democrat" +2,NA,8146,"tess",3,1,1,1,1,NA,NA,"Republican" +2,NA,8152,"tess",1,0,49,1,51,NA,NA,"Democrat" +2,NA,8159,"tess",1,1,90,1,90,NA,NA,"Neither" +2,NA,8160,"tess",3,1,90,1,90,NA,NA,"Democrat" +2,NA,8170,"tess",3,1,82,1,82,NA,NA,"Democrat" +2,NA,8176,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,8181,"tess",1,0,30,1,70,NA,NA,"Republican" +2,NA,8190,"tess",4,0,49,1,51,NA,NA,"Democrat" +2,NA,8191,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,8196,"tess",2,1,100,1,100,NA,NA,"Democrat" +2,NA,8197,"tess",1,1,NA,1,NA,NA,NA,"Republican" +2,NA,8199,"tess",2,0,90,1,10,NA,NA,"Democrat" +2,NA,8201,"tess",2,1,75,1,75,NA,NA,"Democrat" +2,NA,8202,"tess",4,1,65,1,65,NA,NA,"Republican" +2,NA,8203,"tess",3,1,93,1,93,NA,NA,"Republican" +2,NA,8207,"tess",2,1,63,1,63,NA,NA,"Democrat" +2,NA,8218,"tess",4,0,75,1,25,NA,NA,"Democrat" +2,NA,8221,"tess",4,1,90,1,90,NA,NA,"Democrat" +2,NA,8224,"tess",4,0,0,1,100,NA,NA,"Republican" +2,NA,8228,"tess",3,0,40,1,60,NA,NA,"Democrat" +2,NA,8232,"tess",1,1,90,1,90,NA,NA,"Democrat" +2,NA,8244,"tess",4,0,99,1,1,NA,NA,"Republican" +2,NA,8247,"tess",1,0,90,1,10,NA,NA,"Republican" +2,NA,8249,"tess",1,0,0,1,100,NA,NA,"Democrat" +2,NA,8250,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,8252,"tess",3,0,0,1,100,NA,NA,"Democrat" +2,NA,8253,"tess",2,1,71,1,71,NA,NA,"Democrat" +2,NA,8260,"tess",3,1,100,1,100,NA,NA,"Neither" +2,NA,8265,"tess",2,0,97,1,3,NA,NA,"Republican" +2,NA,8267,"tess",1,1,84,1,84,NA,NA,"Republican" +2,NA,8272,"tess",1,1,10,1,10,NA,NA,"Democrat" +2,NA,8274,"tess",4,0,99,1,1,NA,NA,"Republican" +2,NA,8276,"tess",4,1,79,1,79,NA,NA,"Republican" +2,NA,8280,"tess",4,0,71,1,29,NA,NA,"Democrat" +2,NA,8285,"tess",1,1,11,1,11,NA,NA,"Democrat" +2,NA,8287,"tess",2,0,25,1,75,NA,NA,"Democrat" +2,NA,8308,"tess",1,0,91,1,9,NA,NA,"Democrat" +2,NA,8317,"tess",4,1,90,1,90,NA,NA,"Republican" +2,NA,8324,"tess",2,0,22,1,78,NA,NA,"Republican" +2,NA,8327,"tess",1,0,49,1,51,NA,NA,"Democrat" +2,NA,8331,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,8333,"tess",3,0,19,1,81,NA,NA,"Democrat" +2,NA,8335,"tess",1,1,94,1,94,NA,NA,"Republican" +2,NA,8337,"tess",2,1,95,1,95,NA,NA,"Republican" +2,NA,8344,"tess",1,0,93,1,7,NA,NA,"Democrat" +2,NA,8345,"tess",1,0,71,1,29,NA,NA,"Democrat" +2,NA,8347,"tess",3,0,48,1,52,NA,NA,"Republican" +2,NA,8356,"tess",3,1,0,1,0,NA,NA,"Neither" +2,NA,8360,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,8361,"tess",4,1,61,1,61,NA,NA,"Republican" +2,NA,8371,"tess",2,1,0,1,0,NA,NA,"Republican" +2,NA,8374,"tess",1,0,99,1,1,NA,NA,"Republican" +2,NA,8378,"tess",1,1,100,1,100,NA,NA,"Republican" +2,NA,8386,"tess",3,0,49,1,51,NA,NA,"Republican" +2,NA,8397,"tess",3,1,10,1,10,NA,NA,"Republican" +2,NA,8400,"tess",1,1,48,1,48,NA,NA,"Democrat" +2,NA,8405,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,8406,"tess",1,1,60,1,60,NA,NA,"Democrat" +2,NA,8425,"tess",1,0,77,1,23,NA,NA,"Democrat" +2,NA,8432,"tess",4,1,95,1,95,NA,NA,"Democrat" +2,NA,8435,"tess",2,0,82,1,18,NA,NA,"Republican" +2,NA,8449,"tess",3,1,73,1,73,NA,NA,"Democrat" +2,NA,8452,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,8455,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,8466,"tess",2,1,80,1,80,NA,NA,"Democrat" +2,NA,8468,"tess",2,1,74,1,74,NA,NA,"Democrat" +2,NA,8476,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,8489,"tess",3,1,3,1,3,NA,NA,"Democrat" +2,NA,8503,"tess",1,1,30,1,30,NA,NA,"Republican" +2,NA,8507,"tess",2,1,60,1,60,NA,NA,"Democrat" +2,NA,8522,"tess",4,1,80,1,80,NA,NA,"Democrat" +2,NA,8541,"tess",3,1,35,1,35,NA,NA,"Republican" +2,NA,8544,"tess",3,0,61,1,39,NA,NA,"Democrat" +2,NA,8545,"tess",4,0,65,1,35,NA,NA,"Republican" +2,NA,8550,"tess",2,0,71,1,29,NA,NA,"Democrat" +2,NA,8552,"tess",3,0,30,1,70,NA,NA,"Democrat" +2,NA,8556,"tess",1,0,66,1,34,NA,NA,"Democrat" +2,NA,8558,"tess",1,0,39,1,61,NA,NA,"Republican" +2,NA,8564,"tess",3,1,58,1,58,NA,NA,"Republican" +2,NA,8568,"tess",2,1,91,1,91,NA,NA,"Democrat" +2,NA,8573,"tess",4,1,51,1,51,NA,NA,"Democrat" +2,NA,8577,"tess",3,0,39,1,61,NA,NA,"Democrat" +2,NA,8579,"tess",1,0,75,1,25,NA,NA,"Democrat" +2,NA,8583,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,8589,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,8590,"tess",1,0,48,1,52,NA,NA,"Republican" +2,NA,8600,"tess",4,1,90,1,90,NA,NA,"Democrat" +2,NA,8607,"tess",1,1,78,1,78,NA,NA,"Republican" +2,NA,8608,"tess",1,0,60,1,40,NA,NA,"Republican" +2,NA,8618,"tess",2,0,97,1,3,NA,NA,"Republican" +2,NA,8619,"tess",4,1,50,1,50,NA,NA,"Republican" +2,NA,8638,"tess",1,1,10,1,10,NA,NA,"Neither" +2,NA,8640,"tess",2,1,50,1,50,NA,NA,"Democrat" +2,NA,8651,"tess",4,0,86,1,14,NA,NA,"Republican" +2,NA,8659,"tess",1,0,42,1,58,NA,NA,"Democrat" +2,NA,8669,"tess",1,0,6,1,94,NA,NA,"Democrat" +2,NA,8680,"tess",2,0,20,1,80,NA,NA,"Republican" +2,NA,8685,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,8686,"tess",1,1,54,1,54,NA,NA,"Republican" +2,NA,8706,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,8707,"tess",3,0,97,1,3,NA,NA,"Republican" +2,NA,8709,"tess",4,1,52,1,52,NA,NA,"Republican" +2,NA,8710,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,8713,"tess",3,0,100,1,0,NA,NA,"Republican" +2,NA,8714,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,8717,"tess",4,1,35,1,35,NA,NA,"Republican" +2,NA,8719,"tess",3,1,40,1,40,NA,NA,"Republican" +2,NA,8724,"tess",1,1,80,1,80,NA,NA,"Democrat" +2,NA,8727,"tess",3,1,72,1,72,NA,NA,"Democrat" +2,NA,8728,"tess",3,0,51,1,49,NA,NA,"Republican" +2,NA,8731,"tess",2,1,72,1,72,NA,NA,"Democrat" +2,NA,8739,"tess",1,1,86,1,86,NA,NA,"Republican" +2,NA,8746,"tess",1,1,95,1,95,NA,NA,"Republican" +2,NA,8755,"tess",3,0,75,1,25,NA,NA,"Democrat" +2,NA,8763,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,8765,"tess",1,1,10,1,10,NA,NA,"Democrat" +2,NA,8768,"tess",4,0,1,1,99,NA,NA,"Democrat" +2,NA,8777,"tess",1,0,80,1,20,NA,NA,"Democrat" +2,NA,8779,"tess",3,1,0,1,0,NA,NA,"Republican" +2,NA,8782,"tess",1,0,49,1,51,NA,NA,"Republican" +2,NA,8790,"tess",1,1,60,1,60,NA,NA,"Republican" +2,NA,8797,"tess",3,0,11,1,89,NA,NA,"Republican" +2,NA,8806,"tess",2,1,39,1,39,NA,NA,"Neither" +2,NA,8810,"tess",2,1,70,1,70,NA,NA,"Democrat" +2,NA,8814,"tess",3,0,68,1,32,NA,NA,"Democrat" +2,NA,8816,"tess",1,1,52,1,52,NA,NA,"Democrat" +2,NA,8819,"tess",1,0,1,1,99,NA,NA,"Republican" +2,NA,8821,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,8826,"tess",4,1,94,1,94,NA,NA,"Republican" +2,NA,8836,"tess",2,0,71,1,29,NA,NA,"Democrat" +2,NA,8837,"tess",3,0,100,1,0,NA,NA,"Democrat" +2,NA,8848,"tess",3,1,99,1,99,NA,NA,"Democrat" +2,NA,8853,"tess",2,0,99,1,1,NA,NA,"Democrat" +2,NA,8866,"tess",2,0,84,1,16,NA,NA,"Democrat" +2,NA,8877,"tess",1,1,95,1,95,NA,NA,"Republican" +2,NA,8881,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,8888,"tess",4,0,95,1,5,NA,NA,"Republican" +2,NA,8890,"tess",4,1,91,1,91,NA,NA,"Republican" +2,NA,8892,"tess",3,1,80,1,80,NA,NA,"Democrat" +2,NA,8893,"tess",1,0,30,1,70,NA,NA,"Democrat" +2,NA,8894,"tess",1,1,58,1,58,NA,NA,"Democrat" +2,NA,8900,"tess",1,0,100,1,0,NA,NA,"Republican" +2,NA,8903,"tess",2,0,90,1,10,NA,NA,"Republican" +2,NA,8925,"tess",1,0,55,1,45,NA,NA,"Democrat" +2,NA,8932,"tess",4,1,75,1,75,NA,NA,"Democrat" +2,NA,8933,"tess",3,1,86,1,86,NA,NA,"Republican" +2,NA,8934,"tess",1,0,99,1,1,NA,NA,"Democrat" +2,NA,8939,"tess",2,0,70,1,30,NA,NA,"Democrat" +2,NA,8941,"tess",1,0,60,1,40,NA,NA,"Neither" +2,NA,8946,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,8953,"tess",4,1,51,1,51,NA,NA,"Republican" +2,NA,8956,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,8970,"tess",1,1,21,1,21,NA,NA,"Republican" +2,NA,8973,"tess",1,0,10,1,90,NA,NA,"Republican" +2,NA,8981,"tess",1,0,70,1,30,NA,NA,"Democrat" +2,NA,8983,"tess",3,0,76,1,24,NA,NA,"Democrat" +2,NA,8988,"tess",4,0,10,1,90,NA,NA,"Republican" +2,NA,8990,"tess",3,1,100,1,100,NA,NA,"Republican" +2,NA,8995,"tess",1,0,80,1,20,NA,NA,"Republican" +2,NA,8999,"tess",3,1,50,1,50,NA,NA,"Democrat" +2,NA,9007,"tess",2,0,71,1,29,NA,NA,"Democrat" +2,NA,9018,"tess",3,1,95,1,95,NA,NA,"Democrat" +2,NA,9024,"tess",2,1,40,1,40,NA,NA,"Democrat" +2,NA,9025,"tess",1,1,10,1,10,NA,NA,"Republican" +2,NA,9029,"tess",2,1,97,1,97,NA,NA,"Neither" +2,NA,9034,"tess",2,1,98,1,98,NA,NA,"Republican" +2,NA,9038,"tess",3,1,80,1,80,NA,NA,"Neither" +2,NA,9050,"tess",1,0,86,1,14,NA,NA,"Republican" +2,NA,9057,"tess",3,0,99,1,1,NA,NA,"Republican" +2,NA,9065,"tess",4,1,77,1,77,NA,NA,"Neither" +2,NA,9066,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,9068,"tess",1,1,96,1,96,NA,NA,"Democrat" +2,NA,9070,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,9074,"tess",4,0,70,1,30,NA,NA,"Republican" +2,NA,9075,"tess",3,1,99,1,99,NA,NA,"Democrat" +2,NA,9081,"tess",4,1,21,1,21,NA,NA,"Republican" +2,NA,9083,"tess",2,0,94,1,6,NA,NA,"Neither" +2,NA,9084,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,9101,"tess",2,1,64,1,64,NA,NA,"Democrat" +2,NA,9105,"tess",3,1,98,1,98,NA,NA,"Democrat" +2,NA,9106,"tess",2,1,71,1,71,NA,NA,"Republican" +2,NA,9108,"tess",4,0,80,1,20,NA,NA,"Democrat" +2,NA,9109,"tess",4,1,91,1,91,NA,NA,"Democrat" +2,NA,9119,"tess",3,0,30,1,70,NA,NA,"Democrat" +2,NA,9120,"tess",2,0,50,1,50,NA,NA,"Democrat" +2,NA,9135,"tess",2,0,85,1,15,NA,NA,"Democrat" +2,NA,9146,"tess",4,0,50,1,50,NA,NA,"Republican" +2,NA,9148,"tess",1,0,89,1,11,NA,NA,"Republican" +2,NA,9149,"tess",3,0,50,1,50,NA,NA,"Democrat" +2,NA,9150,"tess",3,0,0,1,100,NA,NA,"Republican" +2,NA,9152,"tess",2,0,32,1,68,NA,NA,"Democrat" +2,NA,9153,"tess",1,1,98,1,98,NA,NA,"Democrat" +2,NA,9154,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,9155,"tess",4,1,76,1,76,NA,NA,"Democrat" +2,NA,9166,"tess",1,0,85,1,15,NA,NA,"Republican" +2,NA,9169,"tess",1,1,94,1,94,NA,NA,"Republican" +2,NA,9184,"tess",3,1,89,1,89,NA,NA,"Democrat" +2,NA,9189,"tess",2,1,70,1,70,NA,NA,"Republican" +2,NA,9193,"tess",1,0,99,1,1,NA,NA,"Democrat" +2,NA,9198,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,9199,"tess",1,0,55,1,45,NA,NA,"Republican" +2,NA,9210,"tess",3,1,99,1,99,NA,NA,"Democrat" +2,NA,9211,"tess",4,0,19,1,81,NA,NA,"Republican" +2,NA,9230,"tess",4,0,78,1,22,NA,NA,"Democrat" +2,NA,9235,"tess",2,0,88,1,12,NA,NA,"Democrat" +2,NA,9236,"tess",1,0,41,1,59,NA,NA,"Republican" +2,NA,9239,"tess",3,0,5,1,95,NA,NA,"Democrat" +2,NA,9245,"tess",4,1,91,1,91,NA,NA,"Republican" +2,NA,9247,"tess",4,0,94,1,6,NA,NA,"Democrat" +2,NA,9260,"tess",1,0,70,1,30,NA,NA,"Republican" +2,NA,9267,"tess",4,0,53,1,47,NA,NA,"Democrat" +2,NA,9269,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,9279,"tess",3,1,71,1,71,NA,NA,"Democrat" +2,NA,9281,"tess",1,1,50,1,50,NA,NA,"Republican" +2,NA,9284,"tess",2,0,70,1,30,NA,NA,"Republican" +2,NA,9286,"tess",1,1,88,1,88,NA,NA,"Democrat" +2,NA,9292,"tess",1,1,9,1,9,NA,NA,"Republican" +2,NA,9295,"tess",3,0,90,1,10,NA,NA,"Republican" +2,NA,9297,"tess",1,0,30,1,70,NA,NA,"Republican" +2,NA,9298,"tess",4,1,89,1,89,NA,NA,"Democrat" +2,NA,9301,"tess",3,0,80,1,20,NA,NA,"Democrat" +2,NA,9302,"tess",2,1,79,1,79,NA,NA,"Democrat" +2,NA,9314,"tess",2,0,42,1,58,NA,NA,"Republican" +2,NA,9316,"tess",1,1,53,1,53,NA,NA,"Republican" +2,NA,9319,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,9332,"tess",1,0,30,1,70,NA,NA,"Democrat" +2,NA,9337,"tess",1,0,80,1,20,NA,NA,"Republican" +2,NA,9340,"tess",4,0,90,1,10,NA,NA,"Democrat" +2,NA,9342,"tess",4,0,84,1,16,NA,NA,"Republican" +2,NA,9346,"tess",4,0,90,1,10,NA,NA,"Democrat" +2,NA,9352,"tess",4,0,56,1,44,NA,NA,"Democrat" +2,NA,9360,"tess",2,0,24,1,76,NA,NA,"Republican" +2,NA,9366,"tess",2,1,25,1,25,NA,NA,"Republican" +2,NA,9372,"tess",1,0,69,1,31,NA,NA,"Democrat" +2,NA,9383,"tess",4,0,0,1,100,NA,NA,"Republican" +2,NA,9395,"tess",2,0,58,1,42,NA,NA,"Democrat" +2,NA,9398,"tess",2,1,32,1,32,NA,NA,"Republican" +2,NA,9412,"tess",2,0,99,1,1,NA,NA,"Republican" +2,NA,9419,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,9420,"tess",3,1,88,1,88,NA,NA,"Democrat" +2,NA,9422,"tess",1,0,79,1,21,NA,NA,"Democrat" +2,NA,9424,"tess",1,1,30,1,30,NA,NA,"Democrat" +2,NA,9425,"tess",4,1,50,1,50,NA,NA,"Democrat" +2,NA,9431,"tess",1,1,75,1,75,NA,NA,"Democrat" +2,NA,9435,"tess",4,0,100,1,0,NA,NA,"Democrat" +2,NA,9440,"tess",2,1,10,1,10,NA,NA,"Republican" +2,NA,9443,"tess",4,0,50,1,50,NA,NA,"Democrat" +2,NA,9458,"tess",3,1,37,1,37,NA,NA,"Republican" +2,NA,9465,"tess",1,0,71,1,29,NA,NA,"Republican" +2,NA,9471,"tess",2,0,61,1,39,NA,NA,"Democrat" +2,NA,9475,"tess",1,1,50,1,50,NA,NA,"Republican" +2,NA,9479,"tess",1,0,50,1,50,NA,NA,"Democrat" +2,NA,9490,"tess",3,1,50,1,50,NA,NA,"Republican" +2,NA,9493,"tess",3,1,94,1,94,NA,NA,"Democrat" +2,NA,9499,"tess",4,0,61,1,39,NA,NA,"Democrat" +2,NA,9500,"tess",2,0,53,1,47,NA,NA,"Republican" +2,NA,9510,"tess",3,1,90,1,90,NA,NA,"Democrat" +2,NA,9512,"tess",2,0,96,1,4,NA,NA,"Democrat" +2,NA,9514,"tess",4,0,69,1,31,NA,NA,"Republican" +2,NA,9517,"tess",4,0,54,1,46,NA,NA,"Neither" +2,NA,9532,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,9534,"tess",3,0,97,1,3,NA,NA,"Democrat" +2,NA,9536,"tess",1,0,84,1,16,NA,NA,"Democrat" +2,NA,9538,"tess",4,0,70,1,30,NA,NA,"Republican" +2,NA,9551,"tess",2,1,98,1,98,NA,NA,"Democrat" +2,NA,9563,"tess",2,0,98,1,2,NA,NA,"Republican" +2,NA,9570,"tess",1,1,54,1,54,NA,NA,"Democrat" +2,NA,9572,"tess",2,1,75,1,75,NA,NA,"Republican" +2,NA,9578,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,9585,"tess",4,1,77,1,77,NA,NA,"Democrat" +2,NA,9590,"tess",2,1,92,1,92,NA,NA,"Republican" +2,NA,9601,"tess",2,1,50,1,50,NA,NA,"Republican" +2,NA,9603,"tess",2,1,51,1,51,NA,NA,"Democrat" +2,NA,9608,"tess",3,0,99,1,1,NA,NA,"Democrat" +2,NA,9626,"tess",2,0,85,1,15,NA,NA,"Democrat" +2,NA,9627,"tess",3,0,90,1,10,NA,NA,"Democrat" +2,NA,9631,"tess",4,0,90,1,10,NA,NA,"Democrat" +2,NA,9635,"tess",3,1,3,1,3,NA,NA,"Democrat" +2,NA,9642,"tess",1,0,50,1,50,NA,NA,"Republican" +2,NA,9645,"tess",3,1,37,1,37,NA,NA,"Democrat" +2,NA,9647,"tess",2,0,91,1,9,NA,NA,"Republican" +2,NA,9648,"tess",4,1,100,1,100,NA,NA,"Democrat" +2,NA,9649,"tess",4,0,75,1,25,NA,NA,"Democrat" +2,NA,9650,"tess",4,1,51,1,51,NA,NA,"Republican" +2,NA,9663,"tess",1,1,86,1,86,NA,NA,"Democrat" +2,NA,9664,"tess",1,0,63,1,37,NA,NA,"Republican" +2,NA,9666,"tess",3,0,97,1,3,NA,NA,"Republican" +2,NA,9671,"tess",1,0,85,1,15,NA,NA,"Democrat" +2,NA,9676,"tess",1,1,49,1,49,NA,NA,"Democrat" +2,NA,9679,"tess",4,0,98,1,2,NA,NA,"Republican" +2,NA,9681,"tess",1,0,78,1,22,NA,NA,"Democrat" +2,NA,9684,"tess",3,0,8,1,92,NA,NA,"Democrat" +2,NA,9685,"tess",1,1,99,1,99,NA,NA,"Republican" +2,NA,9686,"tess",4,1,20,1,20,NA,NA,"Democrat" +2,NA,9689,"tess",1,1,50,1,50,NA,NA,"Democrat" +2,NA,9692,"tess",1,1,71,1,71,NA,NA,"Democrat" +2,NA,9693,"tess",3,0,100,1,0,NA,NA,"Neither" +2,NA,9701,"tess",3,0,45,1,55,NA,NA,"Democrat" +2,NA,9703,"tess",2,1,70,1,70,NA,NA,"Democrat" +2,NA,9711,"tess",2,0,30,1,70,NA,NA,"Neither" +2,NA,9716,"tess",3,0,46,1,54,NA,NA,"Democrat" +2,NA,9717,"tess",3,1,32,1,32,NA,NA,"Neither" +2,NA,9729,"tess",4,1,2,1,2,NA,NA,"Republican" +2,NA,9731,"tess",2,0,57,1,43,NA,NA,"Democrat" +2,NA,9741,"tess",3,1,99,1,99,NA,NA,"Republican" +2,1,51,"tess",1,0,49,3,51,50,"CNN","Neither" +2,1,53,"tess",3,1,97,3,97,97,"CNN","Democrat" +2,1,72,"tess",1,1,100,3,100,76,"CNN","Democrat" +2,1,77,"tess",4,0,100,2,0,74,"CNN","Democrat" +2,1,90,"tess",2,0,3,2,97,50,"CNN","Democrat" +2,1,96,"tess",1,0,88,2,12,39,"CNN","Democrat" +2,1,128,"tess",3,0,54,2,46,43,"CNN","Republican" +2,1,136,"tess",3,1,66,2,66,40,"CNN","Democrat" +2,1,140,"tess",2,1,90,3,90,99,"CNN","Republican" +2,1,188,"tess",3,0,57,2,43,30,"CNN","Democrat" +2,1,189,"tess",3,0,10,3,90,20,"CNN","Republican" +2,1,207,"tess",1,1,71,2,71,100,"CNN","Republican" +2,1,216,"tess",1,0,100,2,0,0,"CNN","Democrat" +2,1,224,"tess",1,0,58,2,42,89,"CNN","Democrat" +2,1,234,"tess",2,1,0,2,0,99,"CNN","Democrat" +2,1,247,"tess",2,0,18,2,82,15,"CNN","Republican" +2,1,262,"tess",4,1,1,2,1,1,"CNN","Democrat" +2,1,266,"tess",4,0,79,2,21,71,"CNN","Democrat" +2,1,296,"tess",3,0,88,3,12,3,"CNN","Republican" +2,1,299,"tess",2,0,10,2,90,50,"CNN","Democrat" +2,1,301,"tess",1,0,10,3,90,5,"CNN","Democrat" +2,1,308,"tess",2,0,89,3,11,21,"CNN","Democrat" +2,1,315,"tess",3,0,52,3,48,64,"CNN","Democrat" +2,1,334,"tess",1,0,90,3,10,64,"CNN","Democrat" +2,1,336,"tess",2,0,11,3,89,80,"CNN","Republican" +2,1,363,"tess",2,0,98,2,2,50,"CNN","Republican" +2,1,366,"tess",1,1,51,2,51,88,"CNN","Democrat" +2,1,379,"tess",3,0,90,2,10,10,"CNN","Democrat" +2,1,389,"tess",3,1,50,2,50,20,"CNN","Democrat" +2,1,397,"tess",3,0,78,2,22,0,"CNN","Democrat" +2,1,399,"tess",3,0,48,3,52,54,"CNN","Neither" +2,1,421,"tess",3,0,7,2,93,2,"CNN","Democrat" +2,1,430,"tess",2,0,20,2,80,29,"CNN","Republican" +2,1,461,"tess",1,1,86,3,86,32,"CNN","Republican" +2,1,491,"tess",2,0,48,3,52,25,"CNN","Neither" +2,1,502,"tess",4,0,60,2,40,30,"CNN","Democrat" +2,1,508,"tess",3,1,47,2,47,49,"CNN","Republican" +2,1,509,"tess",2,0,50,2,50,100,"CNN","Democrat" +2,1,512,"tess",3,1,80,2,80,70,"CNN","Democrat" +2,1,522,"tess",3,1,0,2,0,100,"CNN","Democrat" +2,1,541,"tess",1,0,40,3,60,20,"CNN","Democrat" +2,1,542,"tess",2,0,85,3,15,13,"CNN","Republican" +2,1,573,"tess",4,0,1,2,99,98,"CNN","Democrat" +2,1,591,"tess",3,0,54,3,46,48,"CNN","Democrat" +2,1,600,"tess",3,1,100,2,100,100,"CNN","Republican" +2,1,602,"tess",1,0,95,2,5,23,"CNN","Democrat" +2,1,603,"tess",3,1,90,2,90,80,"CNN","Democrat" +2,1,627,"tess",1,1,91,3,91,85,"CNN","Democrat" +2,1,633,"tess",2,0,59,2,41,50,"CNN","Democrat" +2,1,638,"tess",4,0,48,2,52,54,"CNN","Republican" +2,1,639,"tess",2,1,0,2,0,20,"CNN","Democrat" +2,1,675,"tess",1,0,87,2,13,15,"CNN","Democrat" +2,1,680,"tess",1,1,59,3,59,53,"CNN","Republican" +2,1,689,"tess",4,1,86,2,86,95,"CNN","Democrat" +2,1,702,"tess",4,0,92,2,8,26,"CNN","Democrat" +2,1,711,"tess",2,0,30,2,70,69,"CNN","Democrat" +2,1,717,"tess",4,0,83,2,17,10,"CNN","Republican" +2,1,727,"tess",2,0,1,3,99,98,"CNN","Republican" +2,1,734,"tess",1,0,9,3,91,94,"CNN","Republican" +2,1,752,"tess",2,1,31,3,31,81,"CNN","Democrat" +2,1,766,"tess",1,0,36,2,64,39,"CNN","Republican" +2,1,770,"tess",3,1,100,3,100,100,"CNN","Democrat" +2,1,771,"tess",3,1,100,2,100,100,"CNN","Democrat" +2,1,772,"tess",1,1,73,3,73,95,"CNN","Republican" +2,1,773,"tess",1,0,55,3,45,48,"CNN","Democrat" +2,1,783,"tess",1,0,50,2,50,20,"CNN","Democrat" +2,1,786,"tess",4,0,89,2,11,10,"CNN","Republican" +2,1,823,"tess",3,1,8,2,8,100,"CNN","Democrat" +2,1,851,"tess",2,1,59,3,59,40,"CNN","Republican" +2,1,852,"tess",4,0,73,2,27,20,"CNN","Democrat" +2,1,855,"tess",3,1,19,3,19,60,"CNN","Republican" +2,1,861,"tess",2,0,0,2,100,90,"CNN","Democrat" +2,1,878,"tess",3,0,90,2,10,10,"CNN","Democrat" +2,1,886,"tess",3,1,50,2,50,50,"CNN","Republican" +2,1,890,"tess",2,0,48,3,52,16,"CNN","Republican" +2,1,891,"tess",2,0,28,2,72,71,"CNN","Republican" +2,1,895,"tess",4,0,85,2,15,90,"CNN","Democrat" +2,1,912,"tess",2,1,70,2,70,51,"CNN","Democrat" +2,1,922,"tess",3,1,89,3,89,100,"CNN","Republican" +2,1,958,"tess",4,1,100,2,100,93,"CNN","Democrat" +2,1,968,"tess",3,0,0,2,100,0,"CNN","Democrat" +2,1,997,"tess",1,1,10,3,10,99,"CNN","Democrat" +2,1,1018,"tess",1,1,30,2,30,29,"CNN","Republican" +2,1,1020,"tess",4,1,70,2,70,50,"CNN","Republican" +2,1,1031,"tess",3,1,95,3,95,93,"CNN","Democrat" +2,1,1035,"tess",4,1,97,2,97,70,"CNN","Democrat" +2,1,1036,"tess",2,1,1,2,1,99,"CNN","Republican" +2,1,1047,"tess",2,0,36,3,64,38,"CNN","Republican" +2,1,1051,"tess",2,0,71,2,29,30,"CNN","Republican" +2,1,1062,"tess",2,1,62,2,62,61,"CNN","Democrat" +2,1,1064,"tess",3,0,NA,3,NA,NA,"CNN","Democrat" +2,1,1065,"tess",2,1,11,2,11,40,"CNN","Republican" +2,1,1067,"tess",1,0,100,3,0,0,"CNN","Republican" +2,1,1068,"tess",1,0,1,3,99,40,"CNN","Republican" +2,1,1081,"tess",2,1,90,2,90,50,"CNN","Democrat" +2,1,1096,"tess",1,0,0,2,100,0,"CNN","Democrat" +2,1,1097,"tess",3,0,10,2,90,68,"CNN","Republican" +2,1,1100,"tess",2,1,2,3,2,25,"CNN","Republican" +2,1,1119,"tess",1,0,10,2,90,20,"CNN","Republican" +2,1,1122,"tess",2,1,99,3,99,98,"CNN","Republican" +2,1,1148,"tess",3,1,0,3,0,71,"CNN","Republican" +2,1,1149,"tess",4,0,96,2,4,92,"CNN","Democrat" +2,1,1150,"tess",1,1,0,2,0,98,"CNN","Democrat" +2,1,1156,"tess",1,0,70,2,30,50,"CNN","Democrat" +2,1,1172,"tess",1,1,85,3,85,81,"CNN","Republican" +2,1,1182,"tess",2,1,31,2,31,30,"CNN","Republican" +2,1,1192,"tess",3,1,95,3,95,75,"CNN","Democrat" +2,1,1208,"tess",1,1,47,2,47,62,"CNN","Republican" +2,1,1235,"tess",1,1,50,3,50,70,"CNN","Republican" +2,1,1265,"tess",4,1,73,2,73,76,"CNN","Republican" +2,1,1277,"tess",4,0,3,2,97,1,"CNN","Republican" +2,1,1282,"tess",1,0,97,2,3,12,"CNN","Republican" +2,1,1284,"tess",2,0,3,3,97,94,"CNN","Democrat" +2,1,1285,"tess",4,1,52,2,52,61,"CNN","Neither" +2,1,1304,"tess",4,0,20,2,80,50,"CNN","Democrat" +2,1,1314,"tess",2,0,60,2,40,79,"CNN","Democrat" +2,1,1321,"tess",3,1,21,2,21,20,"CNN","Republican" +2,1,1348,"tess",1,0,94,2,6,20,"CNN","Democrat" +2,1,1397,"tess",4,0,0,2,100,0,"CNN","Democrat" +2,1,1402,"tess",3,1,100,3,100,100,"CNN","Republican" +2,1,1408,"tess",4,0,50,2,50,0,"CNN","Democrat" +2,1,1419,"tess",1,0,61,3,39,44,"CNN","Republican" +2,1,1445,"tess",2,0,90,3,10,25,"CNN","Republican" +2,1,1464,"tess",2,0,38,2,62,99,"CNN","Democrat" +2,1,1486,"tess",1,1,6,3,6,58,"CNN","Democrat" +2,1,1510,"tess",4,1,31,2,31,21,"CNN","Republican" +2,1,1518,"tess",3,1,73,2,73,68,"CNN","Democrat" +2,1,1552,"tess",4,0,20,2,80,42,"CNN","Republican" +2,1,1563,"tess",3,0,99,2,1,0,"CNN","Republican" +2,1,1631,"tess",1,0,32,2,68,50,"CNN","Democrat" +2,1,1657,"tess",2,1,95,3,95,90,"CNN","Republican" +2,1,1663,"tess",2,1,66,3,66,59,"CNN","Neither" +2,1,1669,"tess",1,1,0,3,0,100,"CNN","Democrat" +2,1,1673,"tess",1,1,50,3,50,90,"CNN","Democrat" +2,1,1674,"tess",1,1,50,2,50,40,"CNN","Republican" +2,1,1689,"tess",3,1,97,2,97,98,"CNN","Democrat" +2,1,1726,"tess",3,1,80,2,80,70,"CNN","Democrat" +2,1,1728,"tess",3,1,50,2,50,90,"CNN","Democrat" +2,1,1739,"tess",2,1,30,3,30,36,"CNN","Republican" +2,1,1756,"tess",3,0,94,2,6,71,"CNN","Democrat" +2,1,1798,"tess",1,0,100,2,0,16,"CNN","Democrat" +2,1,1815,"tess",3,1,95,2,95,90,"CNN","Republican" +2,1,1832,"tess",2,0,10,2,90,100,"CNN","Republican" +2,1,1835,"tess",4,0,0,2,100,96,"CNN","Neither" +2,1,1841,"tess",4,1,70,2,70,72,"CNN","Republican" +2,1,1856,"tess",1,1,50,2,50,25,"CNN","Republican" +2,1,1857,"tess",3,1,99,3,99,99,"CNN","Democrat" +2,1,1898,"tess",3,1,11,2,11,51,"CNN","Democrat" +2,1,1902,"tess",1,1,100,3,100,0,"CNN","Democrat" +2,1,1924,"tess",1,0,40,2,60,21,"CNN","Democrat" +2,1,1928,"tess",4,0,48,2,52,0,"CNN","Democrat" +2,1,1933,"tess",4,1,21,2,21,14,"CNN","Democrat" +2,1,1935,"tess",3,0,100,3,0,0,"CNN","Republican" +2,1,1950,"tess",1,1,100,2,100,99,"CNN","Republican" +2,1,1952,"tess",4,1,NA,2,NA,5,"CNN","Democrat" +2,1,1960,"tess",3,0,100,3,0,100,"CNN","Republican" +2,1,1966,"tess",1,1,89,3,89,82,"CNN","Republican" +2,1,1973,"tess",1,1,70,2,70,75,"CNN","Democrat" +2,1,1981,"tess",4,1,97,2,97,96,"CNN","Democrat" +2,1,1992,"tess",3,0,80,2,20,10,"CNN","Democrat" +2,1,2001,"tess",1,1,100,2,100,100,"CNN","Republican" +2,1,2017,"tess",4,0,70,2,30,3,"CNN","Democrat" +2,1,2049,"tess",1,0,50,2,50,80,"CNN","Democrat" +2,1,2056,"tess",1,0,42,3,58,28,"CNN","Republican" +2,1,2066,"tess",2,1,0,3,0,0,"CNN","Republican" +2,1,2100,"tess",1,1,91,3,91,93,"CNN","Democrat" +2,1,2137,"tess",3,1,93,2,93,81,"CNN","Democrat" +2,1,2153,"tess",2,0,93,2,7,44,"CNN","Democrat" +2,1,2179,"tess",4,0,91,2,9,9,"CNN","Democrat" +2,1,2180,"tess",4,0,56,2,44,47,"CNN","Democrat" +2,1,2190,"tess",3,1,98,2,98,98,"CNN","Neither" +2,1,2195,"tess",3,0,0,3,100,98,"CNN","Republican" +2,1,2196,"tess",1,1,0,2,0,81,"CNN","Republican" +2,1,2197,"tess",1,0,100,3,0,2,"CNN","Republican" +2,1,2211,"tess",1,1,90,2,90,90,"CNN","Republican" +2,1,2213,"tess",4,1,98,2,98,99,"CNN","Neither" +2,1,2215,"tess",1,0,100,3,0,40,"CNN","Republican" +2,1,2238,"tess",3,1,81,3,81,89,"CNN","Democrat" +2,1,2253,"tess",1,0,97,2,3,9,"CNN","Democrat" +2,1,2278,"tess",3,0,60,2,40,50,"CNN","Neither" +2,1,2287,"tess",2,0,70,2,30,30,"CNN","Democrat" +2,1,2313,"tess",3,1,90,3,90,80,"CNN","Democrat" +2,1,2318,"tess",1,0,10,2,90,20,"CNN","Democrat" +2,1,2322,"tess",4,0,52,2,48,49,"CNN","Republican" +2,1,2359,"tess",2,1,99,2,99,99,"CNN","Democrat" +2,1,2378,"tess",2,1,90,3,90,20,"CNN","Democrat" +2,1,2382,"tess",4,0,84,2,16,50,"CNN","Democrat" +2,1,2398,"tess",1,0,80,2,20,30,"CNN","Democrat" +2,1,2405,"tess",1,0,47,3,53,23,"CNN","Democrat" +2,1,2407,"tess",2,1,4,3,4,51,"CNN","Republican" +2,1,2434,"tess",1,1,67,2,67,72,"CNN","Democrat" +2,1,2435,"tess",3,0,86,2,14,16,"CNN","Democrat" +2,1,2459,"tess",2,1,54,3,54,30,"CNN","Democrat" +2,1,2474,"tess",3,0,99,3,1,0,"CNN","Democrat" +2,1,2484,"tess",2,1,0,2,0,6,"CNN","Republican" +2,1,2485,"tess",4,0,81,2,19,29,"CNN","Democrat" +2,1,2519,"tess",2,0,44,3,56,78,"CNN","Democrat" +2,1,2532,"tess",4,1,10,2,10,9,"CNN","Democrat" +2,1,2542,"tess",2,1,100,2,100,22,"CNN","Neither" +2,1,2547,"tess",3,1,80,2,80,50,"CNN","Republican" +2,1,2581,"tess",2,0,40,2,60,0,"CNN","Democrat" +2,1,2592,"tess",3,0,70,2,30,15,"CNN","Democrat" +2,1,2623,"tess",4,0,24,2,76,15,"CNN","Democrat" +2,1,2630,"tess",3,0,100,2,0,0,"CNN","Republican" +2,1,2632,"tess",4,0,60,2,40,50,"CNN","Democrat" +2,1,2644,"tess",3,1,1,2,1,98,"CNN","Democrat" +2,1,2658,"tess",1,1,100,2,100,100,"CNN","Republican" +2,1,2664,"tess",1,0,90,2,10,11,"CNN","Democrat" +2,1,2670,"tess",4,1,75,2,75,60,"CNN","Neither" +2,1,2695,"tess",2,0,30,3,70,20,"CNN","Republican" +2,1,2700,"tess",4,0,80,2,20,40,"CNN","Democrat" +2,1,2707,"tess",2,0,45,3,55,38,"CNN","Democrat" +2,1,2720,"tess",4,0,84,2,16,46,"CNN","Republican" +2,1,2722,"tess",1,1,99,2,99,99,"CNN","Democrat" +2,1,2733,"tess",1,1,98,2,98,92,"CNN","Democrat" +2,1,2740,"tess",2,1,0,3,0,0,"CNN","Democrat" +2,1,2741,"tess",2,0,0,2,100,69,"CNN","Democrat" +2,1,2764,"tess",1,1,40,3,40,75,"CNN","Republican" +2,1,2767,"tess",2,0,66,3,34,19,"CNN","Democrat" +2,1,2771,"tess",3,0,64,3,36,83,"CNN","Democrat" +2,1,2778,"tess",3,0,0,3,100,89,"CNN","Republican" +2,1,2797,"tess",4,1,82,2,82,65,"CNN","Democrat" +2,1,2804,"tess",1,0,10,3,90,40,"CNN","Republican" +2,1,2808,"tess",1,0,100,2,0,18,"CNN","Democrat" +2,1,2818,"tess",2,1,71,3,71,70,"CNN","Democrat" +2,1,2828,"tess",3,0,92,3,8,8,"CNN","Republican" +2,1,2843,"tess",3,1,80,3,80,96,"CNN","Democrat" +2,1,2863,"tess",1,1,95,2,95,95,"CNN","Republican" +2,1,2888,"tess",1,0,80,2,20,90,"CNN","Democrat" +2,1,2893,"tess",3,0,79,2,21,80,"CNN","Republican" +2,1,2915,"tess",3,1,95,3,95,95,"CNN","Democrat" +2,1,2936,"tess",1,1,24,2,24,29,"CNN","Democrat" +2,1,2938,"tess",3,1,95,3,95,99,"CNN","Republican" +2,1,2940,"tess",3,0,100,3,0,2,"CNN","Republican" +2,1,2979,"tess",3,0,93,3,7,3,"CNN","Democrat" +2,1,2981,"tess",3,1,50,2,50,9,"CNN","Democrat" +2,1,2982,"tess",3,0,0,3,100,30,"CNN","Democrat" +2,1,2983,"tess",1,0,89,2,11,50,"CNN","Democrat" +2,1,2987,"tess",2,1,100,3,100,100,"CNN","Republican" +2,1,2988,"tess",3,0,47,2,53,80,"CNN","Democrat" +2,1,3006,"tess",1,0,50,3,50,50,"CNN","Democrat" +2,1,3011,"tess",4,0,25,2,75,15,"CNN","Republican" +2,1,3025,"tess",4,1,99,2,99,99,"CNN","Democrat" +2,1,3029,"tess",2,0,74,3,26,60,"CNN","Democrat" +2,1,3039,"tess",2,0,50,3,50,60,"CNN","Republican" +2,1,3043,"tess",1,1,99,2,99,83,"CNN","Democrat" +2,1,3047,"tess",3,1,46,3,46,44,"CNN","Democrat" +2,1,3051,"tess",2,1,70,3,70,70,"CNN","Republican" +2,1,3062,"tess",2,0,86,2,14,6,"CNN","Neither" +2,1,3074,"tess",3,0,19,3,81,10,"CNN","Democrat" +2,1,3076,"tess",3,0,99,3,1,1,"CNN","Republican" +2,1,3077,"tess",3,1,65,2,65,95,"CNN","Democrat" +2,1,3086,"tess",2,1,89,3,89,78,"CNN","Republican" +2,1,3089,"tess",2,1,44,2,44,44,"CNN","Democrat" +2,1,3107,"tess",1,1,100,3,100,76,"CNN","Democrat" +2,1,3125,"tess",1,0,71,2,29,60,"CNN","Democrat" +2,1,3137,"tess",3,0,24,3,76,64,"CNN","Democrat" +2,1,3155,"tess",1,0,21,3,79,47,"CNN","Neither" +2,1,3170,"tess",4,0,70,2,30,30,"CNN","Democrat" +2,1,3188,"tess",4,1,95,2,95,92,"CNN","Democrat" +2,1,3195,"tess",2,1,80,2,80,79,"CNN","Democrat" +2,1,3197,"tess",3,0,0,2,100,80,"CNN","Democrat" +2,1,3208,"tess",4,1,50,2,50,50,"CNN","Democrat" +2,1,3223,"tess",2,1,100,3,100,100,"CNN","Democrat" +2,1,3259,"tess",3,0,57,3,43,8,"CNN","Republican" +2,1,3263,"tess",4,0,34,2,66,31,"CNN","Democrat" +2,1,3274,"tess",1,1,100,2,100,90,"CNN","Democrat" +2,1,3281,"tess",4,1,99,2,99,99,"CNN","Democrat" +2,1,3288,"tess",1,1,50,2,50,50,"CNN","Republican" +2,1,3313,"tess",1,0,8,3,92,50,"CNN","Republican" +2,1,3333,"tess",4,0,33,2,67,24,"CNN","Democrat" +2,1,3335,"tess",2,0,70,2,30,46,"CNN","Democrat" +2,1,3342,"tess",3,0,73,2,27,37,"CNN","Republican" +2,1,3344,"tess",3,1,60,3,60,46,"CNN","Democrat" +2,1,3356,"tess",4,0,0,2,100,0,"CNN","Democrat" +2,1,3364,"tess",1,0,50,3,50,24,"CNN","Democrat" +2,1,3407,"tess",1,1,69,3,69,80,"CNN","Republican" +2,1,3412,"tess",4,0,69,2,31,5,"CNN","Democrat" +2,1,3426,"tess",4,1,91,2,91,99,"CNN","Democrat" +2,1,3430,"tess",2,1,100,3,100,100,"CNN","Democrat" +2,1,3435,"tess",4,1,60,2,60,50,"CNN","Republican" +2,1,3452,"tess",2,0,63,3,37,65,"CNN","Republican" +2,1,3454,"tess",4,1,99,2,99,25,"CNN","Democrat" +2,1,3462,"tess",3,0,19,2,81,71,"CNN","Republican" +2,1,3464,"tess",1,0,71,2,29,60,"CNN","Republican" +2,1,3468,"tess",4,0,94,2,6,43,"CNN","Democrat" +2,1,3488,"tess",1,1,0,2,0,89,"CNN","Republican" +2,1,3494,"tess",2,0,60,3,40,40,"CNN","Democrat" +2,1,3507,"tess",1,1,15,2,15,26,"CNN","Democrat" +2,1,3512,"tess",3,0,50,3,50,1,"CNN","Republican" +2,1,3513,"tess",2,1,21,3,21,62,"CNN","Democrat" +2,1,3522,"tess",3,1,80,2,80,19,"CNN","Republican" +2,1,3523,"tess",3,0,50,3,50,50,"CNN","Democrat" +2,1,3536,"tess",1,1,100,3,100,100,"CNN","Republican" +2,1,3545,"tess",2,0,20,3,80,80,"CNN","Democrat" +2,1,3554,"tess",1,1,39,3,39,76,"CNN","Democrat" +2,1,3568,"tess",4,0,10,2,90,90,"CNN","Democrat" +2,1,3573,"tess",4,1,85,2,85,89,"CNN","Democrat" +2,1,3582,"tess",1,0,98,2,2,2,"CNN","Republican" +2,1,3587,"tess",3,1,10,2,10,10,"CNN","Democrat" +2,1,3593,"tess",1,0,80,3,20,10,"CNN","Democrat" +2,1,3609,"tess",4,0,52,2,48,31,"CNN","Republican" +2,1,3612,"tess",1,1,6,2,6,6,"CNN","Republican" +2,1,3627,"tess",3,1,10,2,10,90,"CNN","Republican" +2,1,3629,"tess",4,0,40,2,60,20,"CNN","Republican" +2,1,3645,"tess",1,0,60,3,40,30,"CNN","Republican" +2,1,3653,"tess",3,0,85,3,15,17,"CNN","Democrat" +2,1,3656,"tess",2,1,96,2,96,100,"CNN","Democrat" +2,1,3673,"tess",1,1,41,3,41,69,"CNN","Republican" +2,1,3678,"tess",2,0,50,2,50,50,"CNN","Republican" +2,1,3695,"tess",3,1,20,2,20,51,"CNN","Republican" +2,1,3702,"tess",3,1,10,2,10,89,"CNN","Democrat" +2,1,3704,"tess",4,1,89,2,89,93,"CNN","Republican" +2,1,3711,"tess",2,1,99,3,99,50,"CNN","Democrat" +2,1,3722,"tess",3,0,73,3,27,82,"CNN","Democrat" +2,1,3736,"tess",2,0,100,2,0,85,"CNN","Democrat" +2,1,3767,"tess",4,0,95,2,5,21,"CNN","Republican" +2,1,3776,"tess",4,1,100,2,100,99,"CNN","Democrat" +2,1,3793,"tess",2,1,66,3,66,69,"CNN","Republican" +2,1,3795,"tess",1,1,94,2,94,98,"CNN","Democrat" +2,1,3801,"tess",4,0,90,2,10,13,"CNN","Democrat" +2,1,3806,"tess",1,1,89,3,89,85,"CNN","Republican" +2,1,3810,"tess",2,0,21,2,79,80,"CNN","Democrat" +2,1,3819,"tess",4,0,75,2,25,8,"CNN","Republican" +2,1,3851,"tess",2,0,34,3,66,2,"CNN","Republican" +2,1,3865,"tess",1,1,94,3,94,100,"CNN","Democrat" +2,1,3868,"tess",2,1,1,3,1,1,"CNN","Democrat" +2,1,3895,"tess",2,0,50,3,50,51,"CNN","Republican" +2,1,3915,"tess",1,0,50,3,50,18,"CNN","Democrat" +2,1,3919,"tess",2,0,90,2,10,1,"CNN","Democrat" +2,1,3923,"tess",2,1,100,3,100,50,"CNN","Democrat" +2,1,3958,"tess",4,0,50,2,50,41,"CNN","Republican" +2,1,3961,"tess",4,0,95,2,5,10,"CNN","Democrat" +2,1,3966,"tess",3,1,100,2,100,100,"CNN","Democrat" +2,1,4006,"tess",2,1,30,3,30,85,"CNN","Democrat" +2,1,4007,"tess",2,0,40,2,60,39,"CNN","Republican" +2,1,4008,"tess",2,1,27,3,27,16,"CNN","Republican" +2,1,4035,"tess",2,1,100,3,100,0,"CNN","Republican" +2,1,4065,"tess",2,1,90,3,90,20,"CNN","Democrat" +2,1,4072,"tess",1,0,87,3,13,13,"CNN","Democrat" +2,1,4076,"tess",2,0,36,2,64,3,"CNN","Republican" +2,1,4084,"tess",3,1,100,3,100,94,"CNN","Republican" +2,1,4096,"tess",1,1,80,3,80,70,"CNN","Democrat" +2,1,4120,"tess",2,1,59,2,59,50,"CNN","Republican" +2,1,4139,"tess",2,1,96,2,96,96,"CNN","Republican" +2,1,4141,"tess",3,1,97,2,97,28,"CNN","Democrat" +2,1,4142,"tess",4,1,100,2,100,100,"CNN","Democrat" +2,1,4149,"tess",1,1,92,2,92,50,"CNN","Republican" +2,1,4160,"tess",1,1,90,2,90,50,"CNN","Democrat" +2,1,4186,"tess",2,0,91,3,9,7,"CNN","Democrat" +2,1,4195,"tess",2,1,20,2,20,20,"CNN","Republican" +2,1,4199,"tess",4,1,48,2,48,85,"CNN","Democrat" +2,1,4202,"tess",1,0,75,3,25,25,"CNN","Democrat" +2,1,4229,"tess",3,0,53,3,47,32,"CNN","Democrat" +2,1,4237,"tess",2,0,1,2,99,1,"CNN","Democrat" +2,1,4238,"tess",1,0,44,3,56,25,"CNN","Democrat" +2,1,4266,"tess",3,0,70,2,30,42,"CNN","Democrat" +2,1,4282,"tess",1,1,34,3,34,79,"CNN","Republican" +2,1,4285,"tess",1,1,99,3,99,99,"CNN","Neither" +2,1,4291,"tess",1,1,80,3,80,80,"CNN","Democrat" +2,1,4302,"tess",2,0,6,3,94,83,"CNN","Democrat" +2,1,4308,"tess",1,1,99,3,99,100,"CNN","Democrat" +2,1,4322,"tess",3,1,13,2,13,97,"CNN","Republican" +2,1,4334,"tess",2,1,100,2,100,50,"CNN","Republican" +2,1,4356,"tess",2,0,0,2,100,0,"CNN","Republican" +2,1,4380,"tess",1,0,10,2,90,6,"CNN","Republican" +2,1,4390,"tess",1,0,91,2,9,25,"CNN","Democrat" +2,1,4401,"tess",2,1,100,3,100,97,"CNN","Democrat" +2,1,4403,"tess",2,1,83,2,83,67,"CNN","Republican" +2,1,4427,"tess",1,1,1,3,1,49,"CNN","Democrat" +2,1,4452,"tess",2,0,10,3,90,81,"CNN","Republican" +2,1,4455,"tess",4,0,90,2,10,20,"CNN","Democrat" +2,1,4457,"tess",4,0,100,2,0,0,"CNN","Democrat" +2,1,4458,"tess",4,1,83,2,83,0,"CNN","Republican" +2,1,4459,"tess",2,1,46,3,46,95,"CNN","Democrat" +2,1,4470,"tess",1,1,78,3,78,87,"CNN","Democrat" +2,1,4500,"tess",2,0,62,3,38,20,"CNN","Democrat" +2,1,4524,"tess",2,0,NA,3,NA,30,"CNN","Republican" +2,1,4581,"tess",3,1,50,2,50,50,"CNN","Democrat" +2,1,4587,"tess",2,1,91,3,91,90,"CNN","Republican" +2,1,4618,"tess",1,0,4,3,96,75,"CNN","Democrat" +2,1,4627,"tess",4,1,47,2,47,4,"CNN","Democrat" +2,1,4632,"tess",4,0,75,2,25,20,"CNN","Democrat" +2,1,4642,"tess",3,1,58,3,58,27,"CNN","Democrat" +2,1,4656,"tess",3,1,95,2,95,98,"CNN","Democrat" +2,1,4683,"tess",3,0,100,3,0,18,"CNN","Neither" +2,1,4690,"tess",1,0,0,2,100,0,"CNN","Democrat" +2,1,4713,"tess",3,1,0,3,0,50,"CNN","Neither" +2,1,4715,"tess",1,1,36,3,36,85,"CNN","Republican" +2,1,4722,"tess",3,0,20,3,80,69,"CNN","Democrat" +2,1,4726,"tess",2,1,75,2,75,62,"CNN","Republican" +2,1,4770,"tess",1,0,80,3,20,20,"CNN","Democrat" +2,1,4789,"tess",3,0,0,2,100,15,"CNN","Democrat" +2,1,4792,"tess",2,0,NA,3,NA,11,"CNN","Republican" +2,1,4793,"tess",4,0,85,2,15,50,"CNN","Democrat" +2,1,4795,"tess",3,1,98,3,98,90,"CNN","Democrat" +2,1,4813,"tess",1,0,96,3,4,0,"CNN","Democrat" +2,1,4816,"tess",2,0,48,3,52,20,"CNN","Democrat" +2,1,4817,"tess",1,0,10,3,90,10,"CNN","Democrat" +2,1,4819,"tess",4,1,91,2,91,52,"CNN","Democrat" +2,1,4833,"tess",3,0,94,2,6,94,"CNN","Democrat" +2,1,4863,"tess",2,1,77,2,77,18,"CNN","Republican" +2,1,4866,"tess",3,1,100,2,100,100,"CNN","Democrat" +2,1,4897,"tess",2,0,40,2,60,10,"CNN","Democrat" +2,1,4899,"tess",1,1,86,2,86,50,"CNN","Democrat" +2,1,4903,"tess",2,1,70,3,70,70,"CNN","Democrat" +2,1,4914,"tess",1,0,20,3,80,20,"CNN","Democrat" +2,1,4921,"tess",3,0,100,3,0,0,"CNN","Republican" +2,1,4926,"tess",3,1,99,3,99,100,"CNN","Democrat" +2,1,4932,"tess",1,1,100,3,100,80,"CNN","Republican" +2,1,4935,"tess",4,1,96,2,96,93,"CNN","Democrat" +2,1,4940,"tess",3,1,0,2,0,100,"CNN","Republican" +2,1,4966,"tess",2,1,4,3,4,5,"CNN","Republican" +2,1,4971,"tess",3,1,39,3,39,51,"CNN","Democrat" +2,1,5008,"tess",1,1,94,2,94,100,"CNN","Republican" +2,1,5016,"tess",3,1,68,2,68,32,"CNN","Democrat" +2,1,5025,"tess",2,1,98,3,98,96,"CNN","Democrat" +2,1,5027,"tess",1,0,87,2,13,17,"CNN","Republican" +2,1,5048,"tess",1,1,81,2,81,80,"CNN","Republican" +2,1,5058,"tess",4,1,89,2,89,80,"CNN","Republican" +2,1,5092,"tess",3,0,26,2,74,5,"CNN","Republican" +2,1,5101,"tess",3,0,95,3,5,81,"CNN","Democrat" +2,1,5108,"tess",3,0,3,3,97,0,"CNN","Republican" +2,1,5114,"tess",4,0,58,2,42,51,"CNN","Democrat" +2,1,5128,"tess",4,0,50,2,50,30,"CNN","Democrat" +2,1,5132,"tess",2,1,51,2,51,57,"CNN","Republican" +2,1,5137,"tess",3,1,100,3,100,100,"CNN","Democrat" +2,1,5143,"tess",3,0,70,2,30,49,"CNN","Republican" +2,1,5147,"tess",4,0,63,2,37,14,"CNN","Republican" +2,1,5160,"tess",1,0,10,3,90,80,"CNN","Democrat" +2,1,5192,"tess",2,1,88,3,88,73,"CNN","Democrat" +2,1,5221,"tess",1,1,74,2,74,75,"CNN","Republican" +2,1,5222,"tess",4,1,79,2,79,61,"CNN","Democrat" +2,1,5225,"tess",2,0,63,3,37,42,"CNN","Democrat" +2,1,5268,"tess",1,1,40,3,40,30,"CNN","Democrat" +2,1,5270,"tess",1,0,10,2,90,96,"CNN","Republican" +2,1,5279,"tess",1,0,0,2,100,0,"CNN","Democrat" +2,1,5284,"tess",2,1,94,3,94,94,"CNN","Democrat" +2,1,5288,"tess",2,1,13,2,13,91,"CNN","Democrat" +2,1,5290,"tess",4,1,55,2,55,48,"CNN","Republican" +2,1,5299,"tess",1,1,63,3,63,58,"CNN","Democrat" +2,1,5301,"tess",2,0,0,3,100,89,"CNN","Democrat" +2,1,5308,"tess",2,1,100,2,100,62,"CNN","Democrat" +2,1,5314,"tess",2,1,100,3,100,100,"CNN","Republican" +2,1,5318,"tess",1,0,80,3,20,60,"CNN","Democrat" +2,1,5319,"tess",3,0,55,2,45,40,"CNN","Democrat" +2,1,5325,"tess",3,1,90,3,90,42,"CNN","Democrat" +2,1,5326,"tess",4,1,38,2,38,15,"CNN","Democrat" +2,1,5327,"tess",3,0,18,3,82,91,"CNN","Republican" +2,1,5378,"tess",1,1,0,3,0,95,"CNN","Democrat" +2,1,5393,"tess",1,0,25,3,75,61,"CNN","Republican" +2,1,5406,"tess",3,0,59,2,41,14,"CNN","Republican" +2,1,5416,"tess",3,1,50,3,50,50,"CNN","Democrat" +2,1,5428,"tess",2,0,100,3,0,2,"CNN","Republican" +2,1,5430,"tess",3,0,0,3,100,100,"CNN","Democrat" +2,1,5434,"tess",1,1,25,2,25,76,"CNN","Republican" +2,1,5438,"tess",2,1,51,2,51,50,"CNN","Democrat" +2,1,5448,"tess",4,1,100,2,100,11,"CNN","Democrat" +2,1,5465,"tess",2,1,83,2,83,72,"CNN","Republican" +2,1,5504,"tess",2,1,90,3,90,50,"CNN","Republican" +2,1,5519,"tess",3,1,100,2,100,100,"CNN","Democrat" +2,1,5523,"tess",1,0,99,3,1,100,"CNN","Democrat" +2,1,5536,"tess",1,0,91,2,9,13,"CNN","Democrat" +2,1,5540,"tess",3,1,95,3,95,87,"CNN","Democrat" +2,1,5544,"tess",1,0,93,2,7,50,"CNN","Republican" +2,1,5559,"tess",2,0,65,3,35,46,"CNN","Republican" +2,1,5567,"tess",2,0,90,3,10,10,"CNN","Republican" +2,1,5569,"tess",3,1,63,2,63,33,"CNN","Democrat" +2,1,5570,"tess",4,1,75,2,75,71,"CNN","Democrat" +2,1,5579,"tess",3,0,99,3,1,6,"CNN","Republican" +2,1,5581,"tess",3,0,10,2,90,30,"CNN","Democrat" +2,1,5584,"tess",2,0,50,2,50,40,"CNN","Democrat" +2,1,5586,"tess",2,1,100,3,100,100,"CNN","Democrat" +2,1,5590,"tess",3,0,89,3,11,27,"CNN","Democrat" +2,1,5593,"tess",1,1,0,3,0,49,"CNN","Republican" +2,1,5597,"tess",2,0,91,3,9,13,"CNN","Republican" +2,1,5613,"tess",1,1,37,3,37,19,"CNN","Republican" +2,1,5620,"tess",1,0,90,3,10,12,"CNN","Democrat" +2,1,5626,"tess",3,0,98,2,2,96,"CNN","Democrat" +2,1,5633,"tess",3,0,100,2,0,50,"CNN","Democrat" +2,1,5654,"tess",4,1,75,2,75,87,"CNN","Democrat" +2,1,5664,"tess",3,1,5,3,5,91,"CNN","Democrat" +2,1,5676,"tess",3,1,91,2,91,99,"CNN","Democrat" +2,1,5677,"tess",2,0,10,3,90,100,"CNN","Republican" +2,1,5679,"tess",4,0,34,2,66,26,"CNN","Democrat" +2,1,5681,"tess",1,1,91,2,91,50,"CNN","Democrat" +2,1,5683,"tess",3,0,87,3,13,72,"CNN","Democrat" +2,1,5684,"tess",1,0,1,2,99,1,"CNN","Democrat" +2,1,5691,"tess",4,0,72,2,28,56,"CNN","Democrat" +2,1,5706,"tess",2,1,13,3,13,63,"CNN","Republican" +2,1,5720,"tess",3,1,74,3,74,75,"CNN","Republican" +2,1,5721,"tess",1,1,90,3,90,98,"CNN","Republican" +2,1,5726,"tess",3,0,3,2,97,17,"CNN","Democrat" +2,1,5730,"tess",3,1,54,2,54,80,"CNN","Republican" +2,1,5743,"tess",2,0,10,2,90,50,"CNN","Republican" +2,1,5744,"tess",4,1,80,2,80,80,"CNN","Democrat" +2,1,5745,"tess",3,1,80,2,80,70,"CNN","Democrat" +2,1,5751,"tess",1,0,31,3,69,35,"CNN","Republican" +2,1,5757,"tess",3,1,93,3,93,69,"CNN","Republican" +2,1,5787,"tess",2,1,91,3,91,91,"CNN","Republican" +2,1,5810,"tess",1,1,60,3,60,90,"CNN","Democrat" +2,1,5815,"tess",3,0,0,2,100,90,"CNN","Democrat" +2,1,5824,"tess",4,1,0,2,0,100,"CNN","Democrat" +2,1,5825,"tess",1,1,100,3,100,100,"CNN","Republican" +2,1,5844,"tess",1,0,75,3,25,25,"CNN","Democrat" +2,1,5854,"tess",4,1,2,2,2,1,"CNN","Democrat" +2,1,5868,"tess",4,0,89,2,11,20,"CNN","Democrat" +2,1,5873,"tess",2,0,12,2,88,2,"CNN","Democrat" +2,1,5874,"tess",2,0,33,3,67,56,"CNN","Democrat" +2,1,5884,"tess",1,1,60,2,60,10,"CNN","Democrat" +2,1,5896,"tess",3,0,40,2,60,50,"CNN","Republican" +2,1,5899,"tess",1,0,89,3,11,96,"CNN","Democrat" +2,1,5902,"tess",3,1,95,3,95,96,"CNN","Republican" +2,1,5914,"tess",2,1,57,2,57,47,"CNN","Republican" +2,1,5922,"tess",1,0,0,3,100,98,"CNN","Republican" +2,1,5931,"tess",1,0,5,2,95,52,"CNN","Democrat" +2,1,5934,"tess",2,0,94,2,6,4,"CNN","Democrat" +2,1,5937,"tess",4,0,90,2,10,0,"CNN","Democrat" +2,1,5940,"tess",2,1,80,2,80,54,"CNN","Democrat" +2,1,5951,"tess",1,1,100,3,100,94,"CNN","Democrat" +2,1,5958,"tess",2,1,90,2,90,80,"CNN","Democrat" +2,1,5959,"tess",3,1,79,2,79,28,"CNN","Republican" +2,1,5963,"tess",3,1,85,3,85,63,"CNN","Democrat" +2,1,5981,"tess",2,0,76,3,24,78,"CNN","Republican" +2,1,5982,"tess",1,1,NA,3,NA,98,"CNN","Democrat" +2,1,5990,"tess",4,0,88,2,12,52,"CNN","Democrat" +2,1,6000,"tess",1,0,20,3,80,60,"CNN","Democrat" +2,1,6041,"tess",3,1,20,3,20,70,"CNN","Democrat" +2,1,6042,"tess",4,0,99,2,1,2,"CNN","Neither" +2,1,6046,"tess",1,0,45,3,55,36,"CNN","Democrat" +2,1,6061,"tess",2,1,85,3,85,84,"CNN","Democrat" +2,1,6069,"tess",2,0,47,3,53,42,"CNN","Democrat" +2,1,6070,"tess",2,1,90,3,90,90,"CNN","Republican" +2,1,6077,"tess",2,1,80,3,80,70,"CNN","Democrat" +2,1,6084,"tess",1,0,10,3,90,50,"CNN","Democrat" +2,1,6087,"tess",4,0,58,2,42,0,"CNN","Democrat" +2,1,6088,"tess",3,0,71,3,29,9,"CNN","Republican" +2,1,6090,"tess",2,0,100,2,0,100,"CNN","Democrat" +2,1,6097,"tess",2,1,60,3,60,30,"CNN","Republican" +2,1,6100,"tess",2,1,50,3,50,63,"CNN","Democrat" +2,1,6101,"tess",4,1,66,2,66,76,"CNN","Democrat" +2,1,6121,"tess",3,0,80,3,20,31,"CNN","Democrat" +2,1,6138,"tess",2,0,85,2,15,75,"CNN","Democrat" +2,1,6142,"tess",2,0,25,2,75,50,"CNN","Neither" +2,1,6158,"tess",4,1,56,2,56,75,"CNN","Republican" +2,1,6162,"tess",4,1,50,2,50,54,"CNN","Democrat" +2,1,6164,"tess",4,0,52,2,48,39,"CNN","Democrat" +2,1,6179,"tess",1,1,40,3,40,44,"CNN","Democrat" +2,1,6180,"tess",2,0,0,3,100,100,"CNN","Republican" +2,1,6188,"tess",3,0,50,3,50,50,"CNN","Republican" +2,1,6197,"tess",2,1,90,2,90,60,"CNN","Democrat" +2,1,6209,"tess",4,1,0,2,0,100,"CNN","Democrat" +2,1,6215,"tess",2,0,50,3,50,50,"CNN","Republican" +2,1,6225,"tess",4,1,63,2,63,62,"CNN","Democrat" +2,1,6227,"tess",4,1,100,2,100,82,"CNN","Democrat" +2,1,6231,"tess",3,0,40,2,60,40,"CNN","Democrat" +2,1,6242,"tess",2,0,81,2,19,21,"CNN","Democrat" +2,1,6244,"tess",3,0,60,3,40,40,"CNN","Democrat" +2,1,6246,"tess",2,0,59,2,41,23,"CNN","Republican" +2,1,6248,"tess",1,0,1,2,99,50,"CNN","Republican" +2,1,6249,"tess",4,1,92,2,92,23,"CNN","Democrat" +2,1,6251,"tess",2,1,89,2,89,84,"CNN","Democrat" +2,1,6257,"tess",4,1,57,2,57,15,"CNN","Democrat" +2,1,6258,"tess",2,0,NA,3,NA,NA,"CNN","Republican" +2,1,6268,"tess",4,0,50,2,50,41,"CNN","Republican" +2,1,6270,"tess",3,0,63,3,37,28,"CNN","Democrat" +2,1,6271,"tess",3,0,59,3,41,47,"CNN","Democrat" +2,1,6272,"tess",4,0,21,2,79,29,"CNN","Democrat" +2,1,6279,"tess",1,1,100,3,100,37,"CNN","Republican" +2,1,6284,"tess",3,0,31,2,69,61,"CNN","Neither" +2,1,6292,"tess",4,0,50,2,50,9,"CNN","Democrat" +2,1,6326,"tess",2,1,90,2,90,70,"CNN","Democrat" +2,1,6354,"tess",1,0,80,3,20,40,"CNN","Republican" +2,1,6366,"tess",3,1,60,3,60,50,"CNN","Democrat" +2,1,6372,"tess",2,0,0,3,100,100,"CNN","Democrat" +2,1,6382,"tess",4,0,66,2,34,57,"CNN","Democrat" +2,1,6385,"tess",1,1,70,2,70,85,"CNN","Democrat" +2,1,6391,"tess",1,0,30,2,70,30,"CNN","Democrat" +2,1,6397,"tess",2,0,99,2,1,100,"CNN","Republican" +2,1,6411,"tess",3,1,99,3,99,99,"CNN","Democrat" +2,1,6424,"tess",4,1,81,2,81,80,"CNN","Republican" +2,1,6427,"tess",2,1,98,2,98,98,"CNN","Republican" +2,1,6430,"tess",1,0,0,3,100,100,"CNN","Democrat" +2,1,6434,"tess",4,1,97,2,97,50,"CNN","Democrat" +2,1,6449,"tess",1,1,7,3,7,31,"CNN","Republican" +2,1,6452,"tess",1,0,12,2,88,6,"CNN","Republican" +2,1,6458,"tess",3,0,92,3,8,5,"CNN","Republican" +2,1,6462,"tess",3,0,50,2,50,50,"CNN","Democrat" +2,1,6468,"tess",1,1,69,2,69,20,"CNN","Republican" +2,1,6472,"tess",2,0,32,2,68,0,"CNN","Republican" +2,1,6488,"tess",1,1,80,2,80,80,"CNN","Republican" +2,1,6489,"tess",2,1,12,2,12,15,"CNN","Democrat" +2,1,6496,"tess",2,1,60,2,60,50,"CNN","Democrat" +2,1,6507,"tess",1,0,7,2,93,7,"CNN","Republican" +2,1,6519,"tess",3,0,1,3,99,99,"CNN","Republican" +2,1,6527,"tess",2,1,81,3,81,77,"CNN","Democrat" +2,1,6532,"tess",1,1,99,2,99,51,"CNN","Democrat" +2,1,6534,"tess",1,0,10,3,90,60,"CNN","Republican" +2,1,6541,"tess",4,1,88,2,88,10,"CNN","Democrat" +2,1,6549,"tess",2,1,71,3,71,51,"CNN","Democrat" +2,1,6551,"tess",2,1,2,2,2,60,"CNN","Democrat" +2,1,6557,"tess",3,1,75,3,75,81,"CNN","Republican" +2,1,6558,"tess",1,0,99,3,1,90,"CNN","Republican" +2,1,6561,"tess",1,0,68,2,32,25,"CNN","Democrat" +2,1,6562,"tess",3,0,94,3,6,0,"CNN","Republican" +2,1,6588,"tess",3,1,91,2,91,39,"CNN","Democrat" +2,1,6590,"tess",1,0,39,3,61,50,"CNN","Democrat" +2,1,6592,"tess",4,0,60,2,40,37,"CNN","Democrat" +2,1,6607,"tess",4,1,99,2,99,50,"CNN","Democrat" +2,1,6608,"tess",3,0,1,2,99,91,"CNN","Republican" +2,1,6611,"tess",3,0,11,2,89,0,"CNN","Republican" +2,1,6621,"tess",2,0,75,2,25,25,"CNN","Democrat" +2,1,6625,"tess",3,0,85,3,15,15,"CNN","Democrat" +2,1,6634,"tess",3,0,22,2,78,25,"CNN","Republican" +2,1,6635,"tess",3,1,100,2,100,100,"CNN","Republican" +2,1,6640,"tess",1,0,11,2,89,4,"CNN","Republican" +2,1,6642,"tess",1,0,80,2,20,20,"CNN","Democrat" +2,1,6646,"tess",4,1,80,2,80,90,"CNN","Republican" +2,1,6647,"tess",2,0,15,2,85,50,"CNN","Democrat" +2,1,6648,"tess",1,1,75,2,75,56,"CNN","Democrat" +2,1,6652,"tess",2,0,10,3,90,60,"CNN","Republican" +2,1,6660,"tess",1,1,74,2,74,18,"CNN","Democrat" +2,1,6668,"tess",2,1,62,3,62,98,"CNN","Democrat" +2,1,6674,"tess",2,1,90,3,90,90,"CNN","Democrat" +2,1,6676,"tess",1,0,20,2,80,71,"CNN","Democrat" +2,1,6680,"tess",3,0,66,3,34,86,"CNN","Republican" +2,1,6682,"tess",1,0,0,2,100,100,"CNN","Democrat" +2,1,6683,"tess",3,1,100,3,100,99,"CNN","Democrat" +2,1,6688,"tess",3,1,34,2,34,88,"CNN","Republican" +2,1,6712,"tess",3,1,53,2,53,37,"CNN","Democrat" +2,1,6729,"tess",2,1,95,2,95,78,"CNN","Democrat" +2,1,6732,"tess",2,0,39,3,61,27,"CNN","Democrat" +2,1,6733,"tess",2,0,50,3,50,92,"CNN","Republican" +2,1,6742,"tess",3,0,50,3,50,11,"CNN","Democrat" +2,1,6748,"tess",2,0,6,3,94,75,"CNN","Democrat" +2,1,6758,"tess",2,1,66,2,66,48,"CNN","Republican" +2,1,6783,"tess",2,0,0,3,100,10,"CNN","Democrat" +2,1,6788,"tess",3,0,95,2,5,6,"CNN","Democrat" +2,1,6791,"tess",3,0,49,3,51,60,"CNN","Democrat" +2,1,6792,"tess",4,0,0,2,100,20,"CNN","Democrat" +2,1,6795,"tess",4,0,10,2,90,30,"CNN","Democrat" +2,1,6802,"tess",1,0,32,3,68,17,"CNN","Democrat" +2,1,6803,"tess",3,1,100,2,100,6,"CNN","Democrat" +2,1,6820,"tess",2,1,2,3,2,90,"CNN","Republican" +2,1,6825,"tess",4,1,99,2,99,99,"CNN","Democrat" +2,1,6827,"tess",4,1,100,2,100,89,"CNN","Democrat" +2,1,6835,"tess",1,0,83,2,17,30,"CNN","Democrat" +2,1,6842,"tess",3,1,95,2,95,51,"CNN","Republican" +2,1,6853,"tess",3,1,30,3,30,79,"CNN","Democrat" +2,1,6864,"tess",2,0,20,2,80,17,"CNN","Republican" +2,1,6865,"tess",4,1,93,2,93,52,"CNN","Democrat" +2,1,6869,"tess",2,0,6,2,94,87,"CNN","Democrat" +2,1,6881,"tess",2,1,98,3,98,99,"CNN","Democrat" +2,1,6882,"tess",1,1,98,3,98,89,"CNN","Democrat" +2,1,6891,"tess",3,1,57,3,57,64,"CNN","Democrat" +2,1,6909,"tess",3,1,39,2,39,65,"CNN","Republican" +2,1,6915,"tess",3,0,39,2,61,10,"CNN","Republican" +2,1,6920,"tess",2,1,55,2,55,44,"CNN","Republican" +2,1,6930,"tess",4,0,41,2,59,65,"CNN","Republican" +2,1,6951,"tess",1,0,14,3,86,75,"CNN","Democrat" +2,1,7003,"tess",3,1,19,2,19,90,"CNN","Republican" +2,1,7022,"tess",4,1,98,2,98,97,"CNN","Democrat" +2,1,7023,"tess",2,1,100,3,100,100,"CNN","Democrat" +2,1,7031,"tess",1,0,64,2,36,99,"CNN","Republican" +2,1,7055,"tess",3,1,68,3,68,34,"CNN","Republican" +2,1,7060,"tess",4,1,99,2,99,90,"CNN","Democrat" +2,1,7061,"tess",3,0,90,3,10,19,"CNN","Democrat" +2,1,7087,"tess",3,1,0,2,0,0,"CNN","Democrat" +2,1,7094,"tess",2,1,0,2,0,90,"CNN","Republican" +2,1,7099,"tess",3,0,13,2,87,10,"CNN","Democrat" +2,1,7104,"tess",3,0,94,2,6,9,"CNN","Republican" +2,1,7106,"tess",2,1,100,3,100,100,"CNN","Republican" +2,1,7124,"tess",1,1,73,3,73,52,"CNN","Democrat" +2,1,7125,"tess",3,1,100,3,100,85,"CNN","Republican" +2,1,7140,"tess",4,1,59,2,59,56,"CNN","Republican" +2,1,7166,"tess",1,0,98,2,2,49,"CNN","Neither" +2,1,7186,"tess",4,0,49,2,51,12,"CNN","Democrat" +2,1,7190,"tess",1,1,82,3,82,84,"CNN","Democrat" +2,1,7197,"tess",3,1,50,3,50,98,"CNN","Republican" +2,1,7210,"tess",1,1,93,2,93,90,"CNN","Neither" +2,1,7222,"tess",3,1,10,3,10,11,"CNN","Democrat" +2,1,7224,"tess",3,1,0,2,0,6,"CNN","Republican" +2,1,7225,"tess",2,0,0,2,100,3,"CNN","Democrat" +2,1,7230,"tess",3,0,78,3,22,23,"CNN","Republican" +2,1,7235,"tess",3,0,4,3,96,80,"CNN","Democrat" +2,1,7252,"tess",3,1,100,3,100,100,"CNN","Republican" +2,1,7253,"tess",2,1,82,2,82,67,"CNN","Neither" +2,1,7275,"tess",2,0,7,2,93,5,"CNN","Republican" +2,1,7297,"tess",2,1,99,2,99,2,"CNN","Democrat" +2,1,7311,"tess",2,0,95,2,5,10,"CNN","Republican" +2,1,7315,"tess",4,0,79,2,21,50,"CNN","Neither" +2,1,7323,"tess",2,0,99,3,1,100,"CNN","Republican" +2,1,7325,"tess",2,0,10,3,90,90,"CNN","Republican" +2,1,7338,"tess",2,1,98,2,98,98,"CNN","Democrat" +2,1,7341,"tess",4,0,99,2,1,1,"CNN","Democrat" +2,1,7353,"tess",3,0,42,2,58,8,"CNN","Democrat" +2,1,7360,"tess",2,0,80,2,20,10,"CNN","Democrat" +2,1,7370,"tess",3,0,100,3,0,38,"CNN","Republican" +2,1,7373,"tess",2,1,81,2,81,66,"CNN","Democrat" +2,1,7381,"tess",2,0,98,2,2,0,"CNN","Republican" +2,1,7395,"tess",3,1,4,3,4,11,"CNN","Republican" +2,1,7397,"tess",1,1,95,3,95,90,"CNN","Democrat" +2,1,7412,"tess",1,0,0,3,100,32,"CNN","Republican" +2,1,7418,"tess",2,1,84,2,84,51,"CNN","Democrat" +2,1,7432,"tess",1,1,80,3,80,80,"CNN","Democrat" +2,1,7437,"tess",1,0,81,2,19,33,"CNN","Democrat" +2,1,7440,"tess",3,0,30,2,70,8,"CNN","Republican" +2,1,7441,"tess",1,1,60,3,60,91,"CNN","Democrat" +2,1,7446,"tess",3,1,39,3,39,71,"CNN","Democrat" +2,1,7448,"tess",2,1,50,2,50,1,"CNN","Democrat" +2,1,7479,"tess",4,0,0,2,100,100,"CNN","Democrat" +2,1,7486,"tess",3,0,75,3,25,33,"CNN","Democrat" +2,1,7497,"tess",1,0,32,2,68,89,"CNN","Democrat" +2,1,7498,"tess",2,0,75,2,25,17,"CNN","Republican" +2,1,7501,"tess",3,1,82,2,82,69,"CNN","Republican" +2,1,7504,"tess",2,0,39,3,61,29,"CNN","Republican" +2,1,7506,"tess",2,1,76,3,76,100,"CNN","Democrat" +2,1,7525,"tess",3,0,68,2,32,95,"CNN","Democrat" +2,1,7534,"tess",4,0,60,2,40,50,"CNN","Democrat" +2,1,7556,"tess",2,0,20,3,80,50,"CNN","Democrat" +2,1,7558,"tess",2,0,1,3,99,99,"CNN","Democrat" +2,1,7573,"tess",2,1,89,3,89,89,"CNN","Democrat" +2,1,7580,"tess",2,1,50,2,50,73,"CNN","Republican" +2,1,7584,"tess",1,1,4,3,4,70,"CNN","Republican" +2,1,7586,"tess",2,1,100,2,100,100,"CNN","Democrat" +2,1,7587,"tess",3,0,1,3,99,70,"CNN","Democrat" +2,1,7605,"tess",4,0,94,2,6,0,"CNN","Republican" +2,1,7608,"tess",3,1,80,3,80,75,"CNN","Republican" +2,1,7623,"tess",1,1,75,3,75,74,"CNN","Republican" +2,1,7630,"tess",2,0,37,3,63,16,"CNN","Democrat" +2,1,7631,"tess",4,0,23,2,77,43,"CNN","Democrat" +2,1,7634,"tess",3,0,20,3,80,70,"CNN","Republican" +2,1,7656,"tess",3,1,0,3,0,20,"CNN","Republican" +2,1,7667,"tess",1,0,3,2,97,87,"CNN","Democrat" +2,1,7722,"tess",2,0,10,2,90,50,"CNN","Republican" +2,1,7739,"tess",1,1,NA,3,NA,NA,"CNN","Republican" +2,1,7741,"tess",4,0,50,2,50,1,"CNN","Republican" +2,1,7747,"tess",1,1,95,3,95,95,"CNN","Democrat" +2,1,7759,"tess",4,1,100,2,100,95,"CNN","Democrat" +2,1,7784,"tess",3,0,75,3,25,25,"CNN","Neither" +2,1,7792,"tess",3,0,20,3,80,20,"CNN","Neither" +2,1,7799,"tess",2,0,70,3,30,25,"CNN","Democrat" +2,1,7826,"tess",1,0,69,2,31,10,"CNN","Republican" +2,1,7837,"tess",3,1,89,2,89,100,"CNN","Democrat" +2,1,7844,"tess",1,0,80,2,20,80,"CNN","Republican" +2,1,7861,"tess",3,0,56,2,44,41,"CNN","Republican" +2,1,7872,"tess",3,0,59,2,41,21,"CNN","Democrat" +2,1,7884,"tess",4,0,80,2,20,10,"CNN","Democrat" +2,1,7922,"tess",4,0,90,2,10,43,"CNN","Democrat" +2,1,7936,"tess",2,1,53,3,53,6,"CNN","Democrat" +2,1,7942,"tess",2,1,50,3,50,50,"CNN","Republican" +2,1,7960,"tess",1,1,89,2,89,43,"CNN","Democrat" +2,1,7967,"tess",1,0,100,2,0,0,"CNN","Democrat" +2,1,7968,"tess",4,0,50,2,50,50,"CNN","Democrat" +2,1,7987,"tess",1,0,20,2,80,20,"CNN","Democrat" +2,1,7988,"tess",1,1,90,3,90,89,"CNN","Democrat" +2,1,7995,"tess",3,0,90,3,10,28,"CNN","Republican" +2,1,8010,"tess",2,0,70,2,30,21,"CNN","Republican" +2,1,8019,"tess",3,0,24,3,76,49,"CNN","Republican" +2,1,8049,"tess",1,0,81,2,19,30,"CNN","Republican" +2,1,8061,"tess",1,1,49,3,49,89,"CNN","Republican" +2,1,8064,"tess",2,1,3,3,3,0,"CNN","Democrat" +2,1,8065,"tess",3,0,43,3,57,47,"CNN","Democrat" +2,1,8079,"tess",4,1,25,2,25,75,"CNN","Democrat" +2,1,8097,"tess",4,0,80,2,20,10,"CNN","Republican" +2,1,8104,"tess",1,1,49,3,49,93,"CNN","Republican" +2,1,8110,"tess",4,1,50,2,50,81,"CNN","Democrat" +2,1,8112,"tess",4,1,50,2,50,80,"CNN","Democrat" +2,1,8116,"tess",2,0,0,3,100,81,"CNN","Democrat" +2,1,8127,"tess",3,0,39,2,61,25,"CNN","Republican" +2,1,8152,"tess",1,0,83,2,17,51,"CNN","Democrat" +2,1,8176,"tess",3,0,50,3,50,50,"CNN","Democrat" +2,1,8196,"tess",2,1,90,2,90,100,"CNN","Democrat" +2,1,8201,"tess",2,1,50,3,50,75,"CNN","Democrat" +2,1,8202,"tess",4,1,62,2,62,65,"CNN","Republican" +2,1,8203,"tess",3,1,59,2,59,93,"CNN","Republican" +2,1,8207,"tess",2,1,50,3,50,97,"CNN","Democrat" +2,1,8224,"tess",4,0,0,2,100,100,"CNN","Republican" +2,1,8247,"tess",1,0,50,3,50,10,"CNN","Republican" +2,1,8265,"tess",2,0,51,3,49,50,"CNN","Republican" +2,1,8272,"tess",1,1,NA,3,NA,60,"CNN","Democrat" +2,1,8285,"tess",1,1,11,3,11,89,"CNN","Democrat" +2,1,8287,"tess",2,0,5,2,95,75,"CNN","Democrat" +2,1,8308,"tess",1,0,0,2,100,9,"CNN","Democrat" +2,1,8324,"tess",2,0,100,2,0,78,"CNN","Republican" +2,1,8327,"tess",1,0,68,3,32,51,"CNN","Democrat" +2,1,8333,"tess",3,0,17,3,83,55,"CNN","Democrat" +2,1,8344,"tess",1,0,0,2,100,7,"CNN","Democrat" +2,1,8345,"tess",1,0,74,2,26,29,"CNN","Democrat" +2,1,8347,"tess",3,0,39,2,61,52,"CNN","Republican" +2,1,8356,"tess",3,1,0,2,0,0,"CNN","Neither" +2,1,8371,"tess",2,1,74,3,74,1,"CNN","Republican" +2,1,8400,"tess",1,1,12,2,12,48,"CNN","Democrat" +2,1,8405,"tess",3,0,50,3,50,50,"CNN","Democrat" +2,1,8425,"tess",1,0,77,2,23,23,"CNN","Democrat" +2,1,8435,"tess",2,0,75,2,25,18,"CNN","Republican" +2,1,8449,"tess",3,1,77,2,77,73,"CNN","Democrat" +2,1,8503,"tess",1,1,50,3,50,50,"CNN","Republican" +2,1,8522,"tess",4,1,80,2,80,80,"CNN","Democrat" +2,1,8541,"tess",3,1,92,3,92,78,"CNN","Republican" +2,1,8545,"tess",4,0,90,2,10,35,"CNN","Republican" +2,1,8550,"tess",2,0,6,2,94,29,"CNN","Democrat" +2,1,8552,"tess",3,0,50,2,50,70,"CNN","Democrat" +2,1,8556,"tess",1,0,63,2,37,34,"CNN","Democrat" +2,1,8568,"tess",2,1,58,3,58,40,"CNN","Democrat" +2,1,8573,"tess",4,1,48,2,48,51,"CNN","Democrat" +2,1,8589,"tess",2,1,50,3,50,50,"CNN","Democrat" +2,1,8590,"tess",1,0,95,3,5,5,"CNN","Republican" +2,1,8608,"tess",1,0,70,3,30,20,"CNN","Republican" +2,1,8618,"tess",2,0,85,3,15,50,"CNN","Republican" +2,1,8619,"tess",4,1,95,2,95,50,"CNN","Republican" +2,1,8640,"tess",2,1,20,2,20,50,"CNN","Democrat" +2,1,8659,"tess",1,0,8,3,92,93,"CNN","Democrat" +2,1,8669,"tess",1,0,89,3,11,42,"CNN","Democrat" +2,1,8680,"tess",2,0,91,2,9,80,"CNN","Republican" +2,1,8686,"tess",1,1,NA,2,NA,54,"CNN","Republican" +2,1,8707,"tess",3,0,97,3,3,12,"CNN","Republican" +2,1,8710,"tess",3,0,54,3,46,0,"CNN","Democrat" +2,1,8713,"tess",3,0,100,3,0,0,"CNN","Republican" +2,1,8717,"tess",4,1,39,2,39,35,"CNN","Republican" +2,1,8719,"tess",3,1,40,2,40,40,"CNN","Republican" +2,1,8728,"tess",3,0,0,3,100,99,"CNN","Republican" +2,1,8768,"tess",4,0,98,2,2,99,"CNN","Democrat" +2,1,8777,"tess",1,0,10,2,90,20,"CNN","Democrat" +2,1,8790,"tess",1,1,95,2,95,60,"CNN","Republican" +2,1,8806,"tess",2,1,90,3,90,71,"CNN","Neither" +2,1,8810,"tess",2,1,90,3,90,90,"CNN","Democrat" +2,1,8816,"tess",1,1,80,3,80,68,"CNN","Democrat" +2,1,8819,"tess",1,0,93,2,7,99,"CNN","Republican" +2,1,8837,"tess",3,0,18,3,82,40,"CNN","Democrat" +2,1,8848,"tess",3,1,1,2,1,99,"CNN","Democrat" +2,1,8866,"tess",2,0,24,3,76,30,"CNN","Democrat" +2,1,8881,"tess",4,1,100,2,100,100,"CNN","Democrat" +2,1,8892,"tess",3,1,90,2,90,80,"CNN","Democrat" +2,1,8893,"tess",1,0,0,2,100,70,"CNN","Democrat" +2,1,8894,"tess",1,1,80,2,80,58,"CNN","Democrat" +2,1,8925,"tess",1,0,65,2,35,45,"CNN","Democrat" +2,1,8932,"tess",4,1,51,2,51,75,"CNN","Democrat" +2,1,8933,"tess",3,1,80,2,80,86,"CNN","Republican" +2,1,8939,"tess",2,0,10,2,90,30,"CNN","Democrat" +2,1,8946,"tess",3,0,50,2,50,50,"CNN","Democrat" +2,1,8953,"tess",4,1,51,2,51,51,"CNN","Republican" +2,1,8970,"tess",1,1,100,2,100,21,"CNN","Republican" +2,1,8973,"tess",1,0,99,2,1,90,"CNN","Republican" +2,1,8983,"tess",3,0,7,3,93,74,"CNN","Democrat" +2,1,8995,"tess",1,0,6,3,94,81,"CNN","Republican" +2,1,8999,"tess",3,1,60,2,60,50,"CNN","Democrat" +2,1,9007,"tess",2,0,39,3,61,30,"CNN","Democrat" +2,1,9018,"tess",3,1,99,2,99,95,"CNN","Democrat" +2,1,9025,"tess",1,1,2,2,2,10,"CNN","Republican" +2,1,9029,"tess",2,1,98,3,98,98,"CNN","Neither" +2,1,9034,"tess",2,1,94,3,94,97,"CNN","Republican" +2,1,9057,"tess",3,0,0,2,100,1,"CNN","Republican" +2,1,9065,"tess",4,1,63,2,63,77,"CNN","Neither" +2,1,9075,"tess",3,1,99,3,99,99,"CNN","Democrat" +2,1,9101,"tess",2,1,65,3,65,43,"CNN","Democrat" +2,1,9105,"tess",3,1,99,2,99,98,"CNN","Democrat" +2,1,9106,"tess",2,1,71,3,71,52,"CNN","Republican" +2,1,9108,"tess",4,0,91,2,9,20,"CNN","Democrat" +2,1,9109,"tess",4,1,90,2,90,91,"CNN","Democrat" +2,1,9119,"tess",3,0,12,3,88,50,"CNN","Democrat" +2,1,9149,"tess",3,0,60,3,40,49,"CNN","Democrat" +2,1,9154,"tess",1,0,44,3,56,74,"CNN","Democrat" +2,1,9166,"tess",1,0,48,3,52,1,"CNN","Republican" +2,1,9184,"tess",3,1,100,2,100,89,"CNN","Democrat" +2,1,9193,"tess",1,0,80,2,20,1,"CNN","Democrat" +2,1,9198,"tess",4,0,14,2,86,0,"CNN","Democrat" +2,1,9210,"tess",3,1,47,3,47,1,"CNN","Democrat" +2,1,9269,"tess",4,0,92,2,8,50,"CNN","Democrat" +2,1,9279,"tess",3,1,90,3,90,70,"CNN","Democrat" +2,1,9286,"tess",1,1,6,3,6,13,"CNN","Democrat" +2,1,9295,"tess",3,0,0,3,100,95,"CNN","Republican" +2,1,9337,"tess",1,0,80,3,20,20,"CNN","Republican" +2,1,9342,"tess",4,0,63,2,37,16,"CNN","Republican" +2,1,9352,"tess",4,0,57,2,43,44,"CNN","Democrat" +2,1,9360,"tess",2,0,95,2,5,76,"CNN","Republican" +2,1,9372,"tess",1,0,0,2,100,31,"CNN","Democrat" +2,1,9395,"tess",2,0,42,3,58,69,"CNN","Democrat" +2,1,9420,"tess",3,1,17,2,17,88,"CNN","Democrat" +2,1,9422,"tess",1,0,80,2,20,21,"CNN","Democrat" +2,1,9424,"tess",1,1,19,2,19,30,"CNN","Democrat" +2,1,9425,"tess",4,1,98,2,98,50,"CNN","Democrat" +2,1,9431,"tess",1,1,20,3,20,99,"CNN","Democrat" +2,1,9435,"tess",4,0,88,2,12,0,"CNN","Democrat" +2,1,9443,"tess",4,0,99,2,1,50,"CNN","Democrat" +2,1,9471,"tess",2,0,NA,3,NA,NA,"CNN","Democrat" +2,1,9475,"tess",1,1,NA,3,NA,10,"CNN","Republican" +2,1,9493,"tess",3,1,96,3,96,5,"CNN","Democrat" +2,1,9510,"tess",3,1,65,2,65,90,"CNN","Democrat" +2,1,9512,"tess",2,0,91,2,9,4,"CNN","Democrat" +2,1,9517,"tess",4,0,99,2,1,46,"CNN","Neither" +2,1,9536,"tess",1,0,52,2,48,16,"CNN","Democrat" +2,1,9601,"tess",2,1,99,2,99,50,"CNN","Republican" +2,1,9627,"tess",3,0,100,2,0,10,"CNN","Democrat" +2,1,9642,"tess",1,0,10,2,90,50,"CNN","Republican" +2,1,9648,"tess",4,1,9,2,9,100,"CNN","Democrat" +2,1,9649,"tess",4,0,20,2,80,25,"CNN","Democrat" +2,1,9650,"tess",4,1,58,2,58,51,"CNN","Republican" +2,1,9666,"tess",3,0,3,2,97,3,"CNN","Republican" +2,1,9681,"tess",1,0,92,2,8,22,"CNN","Democrat" +2,1,9684,"tess",3,0,92,2,8,92,"CNN","Democrat" +2,1,9686,"tess",4,1,74,2,74,20,"CNN","Democrat" +2,1,9692,"tess",1,1,49,2,49,71,"CNN","Democrat" +2,1,9703,"tess",2,1,80,2,80,70,"CNN","Democrat" +2,1,9716,"tess",3,0,87,3,13,14,"CNN","Democrat" +2,1,9717,"tess",3,1,67,2,67,32,"CNN","Neither" +2,1,9731,"tess",2,0,14,3,86,81,"CNN","Democrat" +2,2,68,"tess",3,1,86,3,86,55,"Fox News","Democrat" +2,2,70,"tess",3,1,82,3,82,78,"Fox News","Republican" +2,2,78,"tess",1,1,100,3,100,100,"Fox News","Democrat" +2,2,90,"tess",2,0,3,3,97,97,"Fox News","Democrat" +2,2,94,"tess",4,1,60,2,60,50,"Fox News","Republican" +2,2,95,"tess",4,1,89,2,89,33,"Fox News","Democrat" +2,2,114,"tess",4,0,99,2,1,1,"Fox News","Republican" +2,2,118,"tess",4,1,81,2,81,70,"Fox News","Democrat" +2,2,120,"tess",3,0,100,2,0,1,"Fox News","Democrat" +2,2,130,"tess",4,1,56,2,56,30,"Fox News","Republican" +2,2,136,"tess",3,1,77,3,77,66,"Fox News","Democrat" +2,2,140,"tess",2,1,99,2,99,95,"Fox News","Republican" +2,2,151,"tess",2,0,50,2,50,69,"Fox News","Republican" +2,2,152,"tess",4,1,100,2,100,98,"Fox News","Neither" +2,2,165,"tess",3,0,79,3,21,16,"Fox News","Democrat" +2,2,182,"tess",1,0,70,2,30,24,"Fox News","Democrat" +2,2,187,"tess",4,0,60,2,40,21,"Fox News","Republican" +2,2,189,"tess",3,0,80,2,20,20,"Fox News","Republican" +2,2,206,"tess",1,1,50,2,50,96,"Fox News","Republican" +2,2,263,"tess",1,1,70,3,70,29,"Fox News","Neither" +2,2,301,"tess",1,0,95,2,5,90,"Fox News","Democrat" +2,2,334,"tess",1,0,36,2,64,11,"Fox News","Democrat" +2,2,342,"tess",2,1,70,2,70,80,"Fox News","Democrat" +2,2,372,"tess",4,0,50,2,50,30,"Fox News","Republican" +2,2,399,"tess",3,0,46,2,54,69,"Fox News","Neither" +2,2,405,"tess",2,1,100,3,100,2,"Fox News","Republican" +2,2,413,"tess",2,1,34,3,34,83,"Fox News","Democrat" +2,2,426,"tess",4,0,80,2,20,30,"Fox News","Republican" +2,2,440,"tess",1,1,99,3,99,50,"Fox News","Democrat" +2,2,443,"tess",1,1,100,3,100,98,"Fox News","Republican" +2,2,461,"tess",1,1,32,2,32,58,"Fox News","Republican" +2,2,478,"tess",1,1,0,3,0,100,"Fox News","Democrat" +2,2,482,"tess",1,0,81,3,19,29,"Fox News","Democrat" +2,2,485,"tess",1,1,65,2,65,39,"Fox News","Democrat" +2,2,491,"tess",2,0,75,2,25,50,"Fox News","Neither" +2,2,503,"tess",1,1,100,2,100,100,"Fox News","Republican" +2,2,516,"tess",2,0,5,3,95,91,"Fox News","Democrat" +2,2,522,"tess",3,1,100,3,100,0,"Fox News","Democrat" +2,2,530,"tess",3,1,90,3,90,67,"Fox News","Republican" +2,2,550,"tess",2,1,95,3,95,84,"Fox News","Republican" +2,2,574,"tess",3,1,58,3,58,68,"Fox News","Democrat" +2,2,589,"tess",4,0,32,2,68,19,"Fox News","Republican" +2,2,602,"tess",1,0,86,3,14,5,"Fox News","Democrat" +2,2,603,"tess",3,1,80,3,80,90,"Fox News","Democrat" +2,2,608,"tess",1,0,87,2,13,5,"Fox News","Democrat" +2,2,611,"tess",4,0,76,2,24,24,"Fox News","Republican" +2,2,622,"tess",1,1,26,2,26,20,"Fox News","Democrat" +2,2,649,"tess",4,1,100,2,100,100,"Fox News","Democrat" +2,2,684,"tess",4,0,50,2,50,20,"Fox News","Republican" +2,2,693,"tess",4,0,82,2,18,75,"Fox News","Republican" +2,2,709,"tess",1,1,43,3,43,94,"Fox News","Republican" +2,2,711,"tess",2,0,14,3,86,70,"Fox News","Democrat" +2,2,734,"tess",1,0,6,2,94,88,"Fox News","Republican" +2,2,783,"tess",1,0,80,3,20,50,"Fox News","Democrat" +2,2,804,"tess",2,0,59,2,41,63,"Fox News","Democrat" +2,2,806,"tess",4,0,51,2,49,50,"Fox News","Democrat" +2,2,836,"tess",1,0,16,3,84,7,"Fox News","Democrat" +2,2,855,"tess",3,1,60,2,60,60,"Fox News","Republican" +2,2,883,"tess",3,0,50,2,50,50,"Fox News","Democrat" +2,2,890,"tess",2,0,84,2,16,91,"Fox News","Republican" +2,2,898,"tess",1,0,50,2,50,50,"Fox News","Republican" +2,2,912,"tess",2,1,80,3,80,70,"Fox News","Democrat" +2,2,919,"tess",3,0,0,2,100,1,"Fox News","Democrat" +2,2,943,"tess",4,0,10,2,90,5,"Fox News","Republican" +2,2,950,"tess",1,0,80,3,20,20,"Fox News","Democrat" +2,2,952,"tess",4,1,50,2,50,7,"Fox News","Republican" +2,2,961,"tess",1,0,12,3,88,16,"Fox News","Democrat" +2,2,978,"tess",3,0,57,2,43,59,"Fox News","Democrat" +2,2,985,"tess",2,0,50,3,50,1,"Fox News","Republican" +2,2,990,"tess",3,1,100,3,100,54,"Fox News","Republican" +2,2,997,"tess",1,1,99,2,99,90,"Fox News","Democrat" +2,2,1046,"tess",4,1,85,2,85,7,"Fox News","Republican" +2,2,1047,"tess",2,0,62,2,38,38,"Fox News","Republican" +2,2,1051,"tess",2,0,80,3,20,29,"Fox News","Republican" +2,2,1055,"tess",2,0,51,2,49,20,"Fox News","Republican" +2,2,1058,"tess",3,0,72,2,28,14,"Fox News","Republican" +2,2,1066,"tess",3,0,46,3,54,50,"Fox News","Democrat" +2,2,1084,"tess",4,0,83,2,17,38,"Fox News","Republican" +2,2,1087,"tess",1,1,10,2,10,71,"Fox News","Democrat" +2,2,1114,"tess",3,1,63,2,63,49,"Fox News","Neither" +2,2,1119,"tess",1,0,50,3,50,90,"Fox News","Republican" +2,2,1133,"tess",1,0,80,2,20,50,"Fox News","Republican" +2,2,1141,"tess",2,0,80,3,20,21,"Fox News","Democrat" +2,2,1148,"tess",3,1,71,2,71,10,"Fox News","Republican" +2,2,1172,"tess",1,1,81,2,81,81,"Fox News","Republican" +2,2,1192,"tess",3,1,75,2,75,65,"Fox News","Democrat" +2,2,1246,"tess",3,1,42,2,42,47,"Fox News","Republican" +2,2,1259,"tess",2,0,47,3,53,48,"Fox News","Democrat" +2,2,1260,"tess",3,0,82,2,18,31,"Fox News","Democrat" +2,2,1288,"tess",1,1,15,2,15,30,"Fox News","Republican" +2,2,1309,"tess",1,1,100,3,100,100,"Fox News","Democrat" +2,2,1311,"tess",4,0,91,2,9,5,"Fox News","Democrat" +2,2,1321,"tess",3,1,20,3,20,21,"Fox News","Republican" +2,2,1348,"tess",1,0,80,3,20,6,"Fox News","Democrat" +2,2,1356,"tess",4,0,90,2,10,20,"Fox News","Republican" +2,2,1366,"tess",2,0,37,3,63,10,"Fox News","Democrat" +2,2,1382,"tess",4,1,52,2,52,50,"Fox News","Republican" +2,2,1416,"tess",4,1,90,2,90,84,"Fox News","Republican" +2,2,1444,"tess",1,0,49,3,51,50,"Fox News","Democrat" +2,2,1445,"tess",2,0,75,2,25,69,"Fox News","Republican" +2,2,1454,"tess",4,0,97,2,3,0,"Fox News","Democrat" +2,2,1461,"tess",1,1,79,3,79,48,"Fox News","Democrat" +2,2,1464,"tess",2,0,76,3,24,62,"Fox News","Democrat" +2,2,1485,"tess",1,0,17,3,83,45,"Fox News","Democrat" +2,2,1491,"tess",4,0,100,2,0,98,"Fox News","Republican" +2,2,1500,"tess",3,0,60,3,40,60,"Fox News","Democrat" +2,2,1506,"tess",3,0,73,2,27,0,"Fox News","Democrat" +2,2,1507,"tess",2,0,90,3,10,10,"Fox News","Democrat" +2,2,1523,"tess",1,0,15,2,85,15,"Fox News","Republican" +2,2,1530,"tess",3,1,44,2,44,16,"Fox News","Republican" +2,2,1532,"tess",1,1,40,2,40,67,"Fox News","Republican" +2,2,1553,"tess",3,0,73,2,27,1,"Fox News","Democrat" +2,2,1556,"tess",1,1,75,2,75,75,"Fox News","Democrat" +2,2,1563,"tess",3,0,NA,3,NA,1,"Fox News","Republican" +2,2,1565,"tess",3,1,90,2,90,85,"Fox News","Democrat" +2,2,1600,"tess",4,1,98,2,98,1,"Fox News","Republican" +2,2,1608,"tess",4,0,80,2,20,80,"Fox News","Republican" +2,2,1618,"tess",1,1,95,2,95,39,"Fox News","Republican" +2,2,1624,"tess",4,0,60,2,40,50,"Fox News","Republican" +2,2,1631,"tess",1,0,67,3,33,68,"Fox News","Democrat" +2,2,1644,"tess",4,1,47,2,47,56,"Fox News","Democrat" +2,2,1669,"tess",1,1,100,2,100,88,"Fox News","Democrat" +2,2,1689,"tess",3,1,88,3,88,97,"Fox News","Democrat" +2,2,1702,"tess",3,0,50,2,50,94,"Fox News","Neither" +2,2,1726,"tess",3,1,50,3,50,80,"Fox News","Democrat" +2,2,1733,"tess",2,0,50,3,50,1,"Fox News","Democrat" +2,2,1756,"tess",3,0,95,3,5,6,"Fox News","Democrat" +2,2,1798,"tess",1,0,6,3,94,0,"Fox News","Democrat" +2,2,1799,"tess",3,0,62,3,38,29,"Fox News","Republican" +2,2,1813,"tess",3,0,62,2,38,52,"Fox News","Democrat" +2,2,1824,"tess",4,1,95,2,95,100,"Fox News","Republican" +2,2,1847,"tess",3,1,90,2,90,75,"Fox News","Republican" +2,2,1851,"tess",2,1,74,3,74,50,"Fox News","Democrat" +2,2,1856,"tess",1,1,70,3,70,50,"Fox News","Republican" +2,2,1870,"tess",4,0,70,2,30,25,"Fox News","Republican" +2,2,1890,"tess",1,1,69,3,69,68,"Fox News","Democrat" +2,2,1891,"tess",1,1,0,2,0,99,"Fox News","Republican" +2,2,1900,"tess",4,1,95,2,95,95,"Fox News","Republican" +2,2,1910,"tess",1,1,99,3,99,99,"Fox News","Republican" +2,2,1930,"tess",3,1,97,2,97,93,"Fox News","Democrat" +2,2,1935,"tess",3,0,100,2,0,50,"Fox News","Republican" +2,2,1939,"tess",2,1,97,3,97,46,"Fox News","Democrat" +2,2,1940,"tess",1,1,50,2,50,50,"Fox News","Democrat" +2,2,1950,"tess",1,1,49,3,49,100,"Fox News","Republican" +2,2,1960,"tess",3,0,0,2,100,5,"Fox News","Republican" +2,2,1976,"tess",2,0,93,3,7,3,"Fox News","Republican" +2,2,1982,"tess",4,1,100,2,100,98,"Fox News","Democrat" +2,2,1992,"tess",3,0,80,3,20,20,"Fox News","Democrat" +2,2,1994,"tess",1,0,30,2,70,2,"Fox News","Republican" +2,2,2049,"tess",1,0,75,3,25,50,"Fox News","Democrat" +2,2,2060,"tess",1,1,52,3,52,74,"Fox News","Democrat" +2,2,2061,"tess",3,0,92,3,8,9,"Fox News","Democrat" +2,2,2080,"tess",2,1,80,2,80,72,"Fox News","Democrat" +2,2,2082,"tess",4,0,88,2,12,73,"Fox News","Democrat" +2,2,2097,"tess",4,1,91,2,91,82,"Fox News","Republican" +2,2,2099,"tess",2,0,30,2,70,10,"Fox News","Republican" +2,2,2104,"tess",2,1,74,3,74,95,"Fox News","Republican" +2,2,2120,"tess",1,1,35,2,35,35,"Fox News","Republican" +2,2,2137,"tess",3,1,86,3,86,93,"Fox News","Democrat" +2,2,2147,"tess",4,1,23,2,23,32,"Fox News","Democrat" +2,2,2169,"tess",1,1,50,2,50,99,"Fox News","Democrat" +2,2,2195,"tess",3,0,2,2,98,99,"Fox News","Republican" +2,2,2207,"tess",3,0,38,2,62,46,"Fox News","Republican" +2,2,2208,"tess",4,1,3,2,3,100,"Fox News","Democrat" +2,2,2215,"tess",1,0,60,2,40,1,"Fox News","Republican" +2,2,2228,"tess",4,0,77,2,23,50,"Fox News","Democrat" +2,2,2230,"tess",3,1,93,2,93,100,"Fox News","Republican" +2,2,2242,"tess",4,1,69,2,69,47,"Fox News","Republican" +2,2,2248,"tess",1,0,67,3,33,50,"Fox News","Democrat" +2,2,2278,"tess",3,0,80,3,20,40,"Fox News","Neither" +2,2,2283,"tess",1,1,90,3,90,85,"Fox News","Democrat" +2,2,2286,"tess",1,1,36,3,36,93,"Fox News","Democrat" +2,2,2291,"tess",2,0,90,2,10,2,"Fox News","Republican" +2,2,2308,"tess",1,1,97,2,97,47,"Fox News","Democrat" +2,2,2313,"tess",3,1,80,2,80,80,"Fox News","Democrat" +2,2,2315,"tess",3,1,75,2,75,78,"Fox News","Democrat" +2,2,2337,"tess",2,0,90,2,10,90,"Fox News","Democrat" +2,2,2353,"tess",2,0,20,2,80,0,"Fox News","Democrat" +2,2,2379,"tess",1,0,58,3,42,31,"Fox News","Republican" +2,2,2381,"tess",1,0,77,2,23,82,"Fox News","Democrat" +2,2,2394,"tess",2,0,90,2,10,25,"Fox News","Democrat" +2,2,2405,"tess",1,0,77,2,23,75,"Fox News","Democrat" +2,2,2407,"tess",2,1,51,2,51,74,"Fox News","Republican" +2,2,2412,"tess",3,0,60,2,40,30,"Fox News","Democrat" +2,2,2445,"tess",1,0,63,3,37,10,"Fox News","Republican" +2,2,2459,"tess",2,1,30,2,30,60,"Fox News","Democrat" +2,2,2468,"tess",3,1,90,3,90,90,"Fox News","Democrat" +2,2,2483,"tess",1,0,10,2,90,80,"Fox News","Democrat" +2,2,2498,"tess",3,0,6,3,94,91,"Fox News","Republican" +2,2,2508,"tess",3,0,95,3,5,10,"Fox News","Democrat" +2,2,2511,"tess",1,1,100,2,100,87,"Fox News","Democrat" +2,2,2512,"tess",2,0,23,3,77,13,"Fox News","Republican" +2,2,2514,"tess",2,1,40,2,40,98,"Fox News","Democrat" +2,2,2518,"tess",3,1,81,2,81,10,"Fox News","Republican" +2,2,2519,"tess",2,0,22,2,78,15,"Fox News","Democrat" +2,2,2525,"tess",4,0,61,2,39,97,"Fox News","Republican" +2,2,2528,"tess",2,0,6,3,94,92,"Fox News","Democrat" +2,2,2529,"tess",3,1,96,2,96,98,"Fox News","Democrat" +2,2,2536,"tess",3,0,50,2,50,10,"Fox News","Democrat" +2,2,2537,"tess",2,0,89,3,11,16,"Fox News","Republican" +2,2,2578,"tess",3,0,50,3,50,64,"Fox News","Republican" +2,2,2581,"tess",2,0,30,3,70,60,"Fox News","Democrat" +2,2,2659,"tess",2,1,43,2,43,12,"Fox News","Republican" +2,2,2664,"tess",1,0,81,3,19,10,"Fox News","Democrat" +2,2,2671,"tess",4,1,54,2,54,51,"Fox News","Republican" +2,2,2714,"tess",1,0,27,3,73,91,"Fox News","Democrat" +2,2,2715,"tess",4,1,74,2,74,50,"Fox News","Republican" +2,2,2731,"tess",2,0,45,2,55,65,"Fox News","Democrat" +2,2,2733,"tess",1,1,95,3,95,98,"Fox News","Democrat" +2,2,2740,"tess",2,1,0,2,0,0,"Fox News","Democrat" +2,2,2741,"tess",2,0,2,3,98,100,"Fox News","Democrat" +2,2,2745,"tess",2,1,60,3,60,90,"Fox News","Republican" +2,2,2760,"tess",3,0,40,2,60,29,"Fox News","Republican" +2,2,2765,"tess",4,0,0,2,100,9,"Fox News","Republican" +2,2,2767,"tess",2,0,81,2,19,89,"Fox News","Democrat" +2,2,2771,"tess",3,0,17,2,83,10,"Fox News","Democrat" +2,2,2773,"tess",2,0,68,3,32,20,"Fox News","Republican" +2,2,2778,"tess",3,0,11,2,89,95,"Fox News","Republican" +2,2,2784,"tess",4,0,90,2,10,20,"Fox News","Republican" +2,2,2795,"tess",4,0,90,2,10,15,"Fox News","Republican" +2,2,2799,"tess",2,1,100,2,100,0,"Fox News","Republican" +2,2,2804,"tess",1,0,60,2,40,10,"Fox News","Republican" +2,2,2828,"tess",3,0,92,2,8,14,"Fox News","Republican" +2,2,2829,"tess",1,1,90,3,90,79,"Fox News","Democrat" +2,2,2885,"tess",1,0,39,3,61,4,"Fox News","Republican" +2,2,2902,"tess",3,1,75,3,75,75,"Fox News","Democrat" +2,2,2903,"tess",2,1,69,3,69,88,"Fox News","Democrat" +2,2,2905,"tess",2,1,62,2,62,56,"Fox News","Democrat" +2,2,2906,"tess",2,0,95,2,5,32,"Fox News","Democrat" +2,2,2917,"tess",2,1,89,2,89,48,"Fox News","Republican" +2,2,2990,"tess",3,0,90,3,10,10,"Fox News","Republican" +2,2,3029,"tess",2,0,40,2,60,50,"Fox News","Democrat" +2,2,3039,"tess",2,0,40,2,60,50,"Fox News","Republican" +2,2,3043,"tess",1,1,94,3,94,99,"Fox News","Democrat" +2,2,3047,"tess",3,1,44,2,44,45,"Fox News","Democrat" +2,2,3062,"tess",2,0,21,3,79,14,"Fox News","Neither" +2,2,3068,"tess",1,1,99,3,99,98,"Fox News","Democrat" +2,2,3074,"tess",3,0,90,2,10,20,"Fox News","Democrat" +2,2,3082,"tess",4,1,47,2,47,50,"Fox News","Neither" +2,2,3096,"tess",2,0,99,3,1,1,"Fox News","Republican" +2,2,3102,"tess",4,1,51,2,51,62,"Fox News","Democrat" +2,2,3107,"tess",1,1,76,2,76,66,"Fox News","Democrat" +2,2,3115,"tess",2,0,51,2,49,49,"Fox News","Neither" +2,2,3128,"tess",1,0,80,2,20,50,"Fox News","Republican" +2,2,3156,"tess",2,0,40,2,60,50,"Fox News","Democrat" +2,2,3172,"tess",2,1,70,2,70,75,"Fox News","Democrat" +2,2,3176,"tess",3,1,50,2,50,50,"Fox News","Republican" +2,2,3186,"tess",2,1,79,2,79,0,"Fox News","Democrat" +2,2,3190,"tess",3,0,71,2,29,52,"Fox News","Democrat" +2,2,3192,"tess",2,0,5,2,95,1,"Fox News","Democrat" +2,2,3206,"tess",2,0,61,3,39,61,"Fox News","Democrat" +2,2,3207,"tess",3,1,50,2,50,51,"Fox News","Republican" +2,2,3214,"tess",2,1,72,3,72,54,"Fox News","Democrat" +2,2,3225,"tess",3,1,85,3,85,26,"Fox News","Republican" +2,2,3234,"tess",2,1,80,3,80,30,"Fox News","Republican" +2,2,3244,"tess",1,0,85,3,15,1,"Fox News","Republican" +2,2,3259,"tess",3,0,92,2,8,0,"Fox News","Republican" +2,2,3262,"tess",2,1,65,3,65,90,"Fox News","Republican" +2,2,3288,"tess",1,1,50,3,50,50,"Fox News","Republican" +2,2,3295,"tess",3,1,81,3,81,79,"Fox News","Democrat" +2,2,3346,"tess",3,0,80,3,20,30,"Fox News","Republican" +2,2,3348,"tess",2,1,0,2,0,20,"Fox News","Democrat" +2,2,3365,"tess",2,1,80,3,80,80,"Fox News","Democrat" +2,2,3371,"tess",1,1,90,2,90,88,"Fox News","Democrat" +2,2,3425,"tess",4,0,83,2,17,18,"Fox News","Republican" +2,2,3433,"tess",2,0,60,3,40,13,"Fox News","Democrat" +2,2,3437,"tess",2,0,25,2,75,50,"Fox News","Republican" +2,2,3477,"tess",1,0,83,3,17,19,"Fox News","Democrat" +2,2,3505,"tess",4,1,80,2,80,59,"Fox News","Republican" +2,2,3517,"tess",4,0,10,2,90,20,"Fox News","Republican" +2,2,3522,"tess",3,1,80,3,80,80,"Fox News","Republican" +2,2,3535,"tess",3,0,60,3,40,50,"Fox News","Democrat" +2,2,3544,"tess",3,0,90,2,10,66,"Fox News","Neither" +2,2,3564,"tess",4,1,3,2,3,2,"Fox News","Republican" +2,2,3589,"tess",2,1,99,2,99,99,"Fox News","Democrat" +2,2,3593,"tess",1,0,90,2,10,13,"Fox News","Democrat" +2,2,3607,"tess",1,0,100,3,0,0,"Fox News","Republican" +2,2,3610,"tess",1,1,50,3,50,80,"Fox News","Democrat" +2,2,3611,"tess",3,0,5,2,95,95,"Fox News","Democrat" +2,2,3627,"tess",3,1,50,3,50,10,"Fox News","Republican" +2,2,3645,"tess",1,0,70,2,30,42,"Fox News","Republican" +2,2,3656,"tess",2,1,100,3,100,96,"Fox News","Democrat" +2,2,3663,"tess",4,0,57,2,43,15,"Fox News","Democrat" +2,2,3676,"tess",4,1,61,2,61,50,"Fox News","Republican" +2,2,3678,"tess",2,0,50,3,50,50,"Fox News","Republican" +2,2,3681,"tess",1,1,97,2,97,75,"Fox News","Democrat" +2,2,3699,"tess",4,0,65,2,35,53,"Fox News","Republican" +2,2,3708,"tess",1,0,88,3,12,29,"Fox News","Democrat" +2,2,3710,"tess",2,1,60,2,60,90,"Fox News","Democrat" +2,2,3711,"tess",2,1,50,2,50,50,"Fox News","Democrat" +2,2,3722,"tess",3,0,18,2,82,61,"Fox News","Democrat" +2,2,3725,"tess",4,1,80,2,80,68,"Fox News","Republican" +2,2,3726,"tess",3,1,49,2,49,68,"Fox News","Democrat" +2,2,3728,"tess",4,0,99,2,1,1,"Fox News","Republican" +2,2,3745,"tess",3,1,96,3,96,100,"Fox News","Democrat" +2,2,3747,"tess",4,0,72,2,28,16,"Fox News","Democrat" +2,2,3759,"tess",3,0,66,3,34,23,"Fox News","Republican" +2,2,3774,"tess",1,0,60,2,40,19,"Fox News","Neither" +2,2,3779,"tess",1,0,70,2,30,30,"Fox News","Republican" +2,2,3782,"tess",2,0,45,3,55,33,"Fox News","Democrat" +2,2,3799,"tess",2,0,90,2,10,85,"Fox News","Republican" +2,2,3810,"tess",2,0,20,3,80,79,"Fox News","Democrat" +2,2,3811,"tess",3,1,96,3,96,89,"Fox News","Republican" +2,2,3814,"tess",3,1,99,2,99,58,"Fox News","Democrat" +2,2,3848,"tess",4,0,10,2,90,10,"Fox News","Republican" +2,2,3898,"tess",4,0,50,2,50,36,"Fox News","Democrat" +2,2,3904,"tess",4,1,50,2,50,50,"Fox News","Democrat" +2,2,3909,"tess",4,0,20,2,80,30,"Fox News","Democrat" +2,2,3910,"tess",1,0,98,3,2,7,"Fox News","Democrat" +2,2,3915,"tess",1,0,82,2,18,2,"Fox News","Democrat" +2,2,3919,"tess",2,0,75,3,25,10,"Fox News","Democrat" +2,2,3920,"tess",3,0,28,3,72,44,"Fox News","Democrat" +2,2,3931,"tess",3,0,38,2,62,41,"Fox News","Democrat" +2,2,3946,"tess",3,0,70,3,30,90,"Fox News","Democrat" +2,2,3959,"tess",1,0,50,2,50,50,"Fox News","Democrat" +2,2,3981,"tess",2,1,51,2,51,50,"Fox News","Republican" +2,2,4001,"tess",1,1,90,3,90,90,"Fox News","Neither" +2,2,4006,"tess",2,1,85,2,85,69,"Fox News","Democrat" +2,2,4008,"tess",2,1,16,2,16,100,"Fox News","Republican" +2,2,4035,"tess",2,1,0,2,0,100,"Fox News","Republican" +2,2,4043,"tess",2,0,76,3,24,0,"Fox News","Republican" +2,2,4046,"tess",1,1,61,3,61,90,"Fox News","Democrat" +2,2,4065,"tess",2,1,20,2,20,80,"Fox News","Democrat" +2,2,4075,"tess",2,0,20,2,80,21,"Fox News","Democrat" +2,2,4084,"tess",3,1,94,2,94,100,"Fox News","Republican" +2,2,4096,"tess",1,1,70,2,70,70,"Fox News","Democrat" +2,2,4160,"tess",1,1,90,3,90,90,"Fox News","Democrat" +2,2,4195,"tess",2,1,30,3,30,20,"Fox News","Republican" +2,2,4197,"tess",3,0,0,3,100,0,"Fox News","Democrat" +2,2,4200,"tess",1,0,70,2,30,21,"Fox News","Democrat" +2,2,4209,"tess",4,0,50,2,50,17,"Fox News","Democrat" +2,2,4210,"tess",4,0,5,2,95,90,"Fox News","Republican" +2,2,4216,"tess",3,1,77,2,77,71,"Fox News","Democrat" +2,2,4217,"tess",2,1,98,3,98,99,"Fox News","Democrat" +2,2,4222,"tess",2,0,85,3,15,19,"Fox News","Democrat" +2,2,4224,"tess",2,0,80,3,20,9,"Fox News","Democrat" +2,2,4251,"tess",1,1,81,3,81,76,"Fox News","Republican" +2,2,4252,"tess",1,0,20,3,80,80,"Fox News","Republican" +2,2,4277,"tess",2,1,31,3,31,98,"Fox News","Democrat" +2,2,4282,"tess",1,1,79,2,79,36,"Fox News","Republican" +2,2,4290,"tess",2,1,70,2,70,80,"Fox News","Democrat" +2,2,4298,"tess",3,1,65,2,65,83,"Fox News","Democrat" +2,2,4307,"tess",1,0,29,3,71,49,"Fox News","Republican" +2,2,4311,"tess",4,0,38,2,62,39,"Fox News","Democrat" +2,2,4322,"tess",3,1,97,3,97,13,"Fox News","Republican" +2,2,4325,"tess",1,0,98,2,2,0,"Fox News","Democrat" +2,2,4326,"tess",1,1,55,2,55,83,"Fox News","Democrat" +2,2,4331,"tess",2,1,50,3,50,70,"Fox News","Democrat" +2,2,4332,"tess",3,1,99,3,99,99,"Fox News","Democrat" +2,2,4334,"tess",2,1,100,3,100,100,"Fox News","Republican" +2,2,4335,"tess",4,0,40,2,60,30,"Fox News","Republican" +2,2,4349,"tess",3,0,25,3,75,39,"Fox News","Democrat" +2,2,4367,"tess",3,0,53,2,47,83,"Fox News","Republican" +2,2,4370,"tess",4,0,76,2,24,27,"Fox News","Republican" +2,2,4380,"tess",1,0,10,3,90,90,"Fox News","Republican" +2,2,4403,"tess",2,1,60,3,60,83,"Fox News","Republican" +2,2,4412,"tess",4,1,60,2,60,20,"Fox News","Republican" +2,2,4431,"tess",2,1,10,2,10,99,"Fox News","Democrat" +2,2,4451,"tess",3,1,59,2,59,50,"Fox News","Republican" +2,2,4459,"tess",2,1,95,2,95,84,"Fox News","Democrat" +2,2,4470,"tess",1,1,87,2,87,79,"Fox News","Democrat" +2,2,4475,"tess",1,1,100,3,100,96,"Fox News","Democrat" +2,2,4476,"tess",4,0,41,2,59,59,"Fox News","Democrat" +2,2,4484,"tess",2,0,91,3,9,9,"Fox News","Democrat" +2,2,4500,"tess",2,0,80,2,20,80,"Fox News","Democrat" +2,2,4523,"tess",4,1,45,2,45,59,"Fox News","Republican" +2,2,4548,"tess",2,0,0,2,100,50,"Fox News","Republican" +2,2,4552,"tess",4,0,92,2,8,23,"Fox News","Democrat" +2,2,4557,"tess",3,0,34,3,66,54,"Fox News","Republican" +2,2,4561,"tess",1,0,39,3,61,5,"Fox News","Democrat" +2,2,4587,"tess",2,1,90,2,90,60,"Fox News","Republican" +2,2,4606,"tess",4,0,100,2,0,0,"Fox News","Republican" +2,2,4624,"tess",1,0,80,2,20,0,"Fox News","Republican" +2,2,4663,"tess",2,0,20,3,80,6,"Fox News","Democrat" +2,2,4674,"tess",2,0,83,2,17,18,"Fox News","Republican" +2,2,4691,"tess",3,1,100,2,100,82,"Fox News","Democrat" +2,2,4700,"tess",2,1,90,2,90,10,"Fox News","Republican" +2,2,4708,"tess",2,1,80,2,80,90,"Fox News","Democrat" +2,2,4715,"tess",1,1,85,2,85,81,"Fox News","Republican" +2,2,4737,"tess",2,1,7,2,7,2,"Fox News","Democrat" +2,2,4739,"tess",2,1,0,3,0,98,"Fox News","Republican" +2,2,4774,"tess",1,1,30,2,30,60,"Fox News","Republican" +2,2,4780,"tess",4,1,93,2,93,91,"Fox News","Republican" +2,2,4792,"tess",2,0,89,2,11,34,"Fox News","Republican" +2,2,4799,"tess",2,1,67,3,67,50,"Fox News","Republican" +2,2,4807,"tess",3,1,45,2,45,30,"Fox News","Democrat" +2,2,4816,"tess",2,0,80,2,20,80,"Fox News","Democrat" +2,2,4817,"tess",1,0,90,2,10,30,"Fox News","Democrat" +2,2,4821,"tess",3,0,33,2,67,78,"Fox News","Neither" +2,2,4823,"tess",4,1,80,2,80,50,"Fox News","Democrat" +2,2,4863,"tess",2,1,100,3,100,77,"Fox News","Republican" +2,2,4866,"tess",3,1,100,3,100,100,"Fox News","Democrat" +2,2,4869,"tess",3,1,99,3,99,1,"Fox News","Democrat" +2,2,4875,"tess",1,1,0,2,0,91,"Fox News","Democrat" +2,2,4897,"tess",2,0,50,3,50,60,"Fox News","Democrat" +2,2,4899,"tess",1,1,91,3,91,86,"Fox News","Democrat" +2,2,4903,"tess",2,1,70,2,70,70,"Fox News","Democrat" +2,2,4905,"tess",1,1,99,2,99,100,"Fox News","Democrat" +2,2,4906,"tess",1,1,100,3,100,100,"Fox News","Republican" +2,2,4921,"tess",3,0,100,2,0,100,"Fox News","Republican" +2,2,4926,"tess",3,1,100,2,100,98,"Fox News","Democrat" +2,2,4930,"tess",1,0,64,3,36,55,"Fox News","Democrat" +2,2,4940,"tess",3,1,0,3,0,0,"Fox News","Republican" +2,2,4966,"tess",2,1,5,2,5,100,"Fox News","Republican" +2,2,4977,"tess",1,0,24,3,76,58,"Fox News","Republican" +2,2,4998,"tess",4,1,97,2,97,88,"Fox News","Democrat" +2,2,5003,"tess",3,1,85,2,85,74,"Fox News","Republican" +2,2,5004,"tess",2,0,80,2,20,87,"Fox News","Democrat" +2,2,5008,"tess",1,1,100,3,100,94,"Fox News","Republican" +2,2,5018,"tess",3,0,66,2,34,23,"Fox News","Democrat" +2,2,5027,"tess",1,0,41,3,59,13,"Fox News","Republican" +2,2,5029,"tess",3,0,60,2,40,21,"Fox News","Republican" +2,2,5048,"tess",1,1,81,3,81,81,"Fox News","Republican" +2,2,5055,"tess",1,0,75,3,25,51,"Fox News","Republican" +2,2,5068,"tess",1,0,NA,3,NA,NA,"Fox News","Democrat" +2,2,5092,"tess",3,0,70,3,30,74,"Fox News","Republican" +2,2,5101,"tess",3,0,19,2,81,1,"Fox News","Democrat" +2,2,5116,"tess",2,0,12,2,88,17,"Fox News","Republican" +2,2,5132,"tess",2,1,46,3,46,51,"Fox News","Republican" +2,2,5133,"tess",4,0,71,2,29,3,"Fox News","Republican" +2,2,5137,"tess",3,1,100,2,100,50,"Fox News","Democrat" +2,2,5144,"tess",4,0,82,2,18,50,"Fox News","Democrat" +2,2,5151,"tess",1,1,50,3,50,97,"Fox News","Democrat" +2,2,5162,"tess",3,0,50,2,50,30,"Fox News","Neither" +2,2,5172,"tess",1,0,99,3,1,2,"Fox News","Democrat" +2,2,5175,"tess",2,1,51,3,51,80,"Fox News","Democrat" +2,2,5192,"tess",2,1,73,2,73,80,"Fox News","Democrat" +2,2,5228,"tess",3,0,71,2,29,69,"Fox News","Democrat" +2,2,5268,"tess",1,1,30,2,30,64,"Fox News","Democrat" +2,2,5288,"tess",2,1,100,3,100,13,"Fox News","Democrat" +2,2,5311,"tess",4,0,78,2,22,5,"Fox News","Republican" +2,2,5316,"tess",2,0,74,3,26,15,"Fox News","Republican" +2,2,5318,"tess",1,0,40,2,60,50,"Fox News","Democrat" +2,2,5319,"tess",3,0,50,3,50,45,"Fox News","Democrat" +2,2,5325,"tess",3,1,42,2,42,86,"Fox News","Democrat" +2,2,5331,"tess",3,1,40,3,40,90,"Fox News","Democrat" +2,2,5353,"tess",2,1,3,3,3,93,"Fox News","Democrat" +2,2,5363,"tess",1,0,3,3,97,2,"Fox News","Republican" +2,2,5383,"tess",1,1,30,2,30,10,"Fox News","Republican" +2,2,5386,"tess",4,0,99,2,1,1,"Fox News","Republican" +2,2,5388,"tess",4,1,77,2,77,71,"Fox News","Republican" +2,2,5389,"tess",1,0,90,3,10,90,"Fox News","Republican" +2,2,5392,"tess",4,1,99,2,99,1,"Fox News","Democrat" +2,2,5400,"tess",3,1,99,2,99,91,"Fox News","Republican" +2,2,5407,"tess",4,0,95,2,5,15,"Fox News","Republican" +2,2,5411,"tess",4,0,50,2,50,35,"Fox News","Republican" +2,2,5419,"tess",1,0,72,3,28,2,"Fox News","Republican" +2,2,5423,"tess",1,0,93,2,7,20,"Fox News","Democrat" +2,2,5434,"tess",1,1,91,3,91,25,"Fox News","Republican" +2,2,5438,"tess",2,1,10,3,10,51,"Fox News","Democrat" +2,2,5447,"tess",2,1,24,2,24,66,"Fox News","Democrat" +2,2,5450,"tess",3,1,32,3,32,30,"Fox News","Republican" +2,2,5456,"tess",1,0,99,3,1,1,"Fox News","Democrat" +2,2,5462,"tess",4,0,69,2,31,42,"Fox News","Republican" +2,2,5465,"tess",2,1,88,3,88,83,"Fox News","Republican" +2,2,5470,"tess",1,0,100,2,0,50,"Fox News","Democrat" +2,2,5475,"tess",1,0,97,2,3,97,"Fox News","Democrat" +2,2,5515,"tess",1,1,80,2,80,30,"Fox News","Republican" +2,2,5518,"tess",4,1,50,2,50,60,"Fox News","Republican" +2,2,5523,"tess",1,0,0,2,100,1,"Fox News","Democrat" +2,2,5544,"tess",1,0,86,3,14,7,"Fox News","Republican" +2,2,5551,"tess",3,1,78,3,78,81,"Fox News","Republican" +2,2,5553,"tess",1,1,90,2,90,74,"Fox News","Republican" +2,2,5567,"tess",2,0,90,2,10,10,"Fox News","Republican" +2,2,5569,"tess",3,1,89,3,89,63,"Fox News","Democrat" +2,2,5576,"tess",1,1,80,3,80,100,"Fox News","Democrat" +2,2,5581,"tess",3,0,10,3,90,90,"Fox News","Democrat" +2,2,5584,"tess",2,0,59,3,41,50,"Fox News","Democrat" +2,2,5594,"tess",2,0,100,2,0,11,"Fox News","Republican" +2,2,5595,"tess",4,1,2,2,2,0,"Fox News","Republican" +2,2,5611,"tess",1,0,73,2,27,45,"Fox News","Republican" +2,2,5612,"tess",3,0,70,3,30,57,"Fox News","Democrat" +2,2,5613,"tess",1,1,19,2,19,66,"Fox News","Republican" +2,2,5614,"tess",2,0,86,2,14,34,"Fox News","Democrat" +2,2,5615,"tess",3,0,80,3,20,50,"Fox News","Democrat" +2,2,5635,"tess",1,1,99,3,99,99,"Fox News","Republican" +2,2,5657,"tess",3,0,73,3,27,13,"Fox News","Democrat" +2,2,5660,"tess",2,1,10,2,10,70,"Fox News","Democrat" +2,2,5669,"tess",3,1,83,2,83,80,"Fox News","Neither" +2,2,5683,"tess",3,0,28,2,72,6,"Fox News","Democrat" +2,2,5684,"tess",1,0,6,3,94,99,"Fox News","Democrat" +2,2,5715,"tess",1,1,50,2,50,90,"Fox News","Republican" +2,2,5725,"tess",4,0,13,2,87,13,"Fox News","Republican" +2,2,5731,"tess",4,1,85,2,85,50,"Fox News","Democrat" +2,2,5734,"tess",1,1,98,3,98,98,"Fox News","Democrat" +2,2,5735,"tess",2,0,0,3,100,100,"Fox News","Republican" +2,2,5740,"tess",4,0,20,2,80,100,"Fox News","Democrat" +2,2,5743,"tess",2,0,5,3,95,90,"Fox News","Republican" +2,2,5745,"tess",3,1,60,3,60,80,"Fox News","Democrat" +2,2,5751,"tess",1,0,65,2,35,1,"Fox News","Republican" +2,2,5772,"tess",3,0,40,3,60,30,"Fox News","Democrat" +2,2,5803,"tess",4,0,35,2,65,12,"Fox News","Republican" +2,2,5804,"tess",1,1,40,3,40,70,"Fox News","Republican" +2,2,5815,"tess",3,0,3,3,97,100,"Fox News","Democrat" +2,2,5826,"tess",2,1,58,2,58,82,"Fox News","Republican" +2,2,5838,"tess",3,0,10,3,90,60,"Fox News","Republican" +2,2,5842,"tess",3,0,70,3,30,20,"Fox News","Democrat" +2,2,5844,"tess",1,0,75,2,25,25,"Fox News","Democrat" +2,2,5873,"tess",2,0,6,3,94,88,"Fox News","Democrat" +2,2,5884,"tess",1,1,60,3,60,60,"Fox News","Democrat" +2,2,5889,"tess",4,0,54,2,46,100,"Fox News","Democrat" +2,2,5901,"tess",3,1,90,3,90,90,"Fox News","Democrat" +2,2,5902,"tess",3,1,96,2,96,0,"Fox News","Republican" +2,2,5906,"tess",2,1,50,2,50,50,"Fox News","Democrat" +2,2,5916,"tess",1,1,80,2,80,60,"Fox News","Republican" +2,2,5918,"tess",3,0,97,3,3,0,"Fox News","Republican" +2,2,5920,"tess",1,1,77,3,77,75,"Fox News","Republican" +2,2,5925,"tess",3,1,20,3,20,86,"Fox News","Republican" +2,2,5926,"tess",4,0,82,2,18,30,"Fox News","Democrat" +2,2,5940,"tess",2,1,20,3,20,80,"Fox News","Democrat" +2,2,5946,"tess",4,0,97,2,3,3,"Fox News","Republican" +2,2,5951,"tess",1,1,94,2,94,48,"Fox News","Democrat" +2,2,5959,"tess",3,1,75,3,75,79,"Fox News","Republican" +2,2,5963,"tess",3,1,63,2,63,44,"Fox News","Democrat" +2,2,5964,"tess",2,0,80,2,20,19,"Fox News","Democrat" +2,2,5978,"tess",3,0,52,2,48,8,"Fox News","Democrat" +2,2,5987,"tess",1,1,90,2,90,80,"Fox News","Democrat" +2,2,5996,"tess",3,0,55,2,45,65,"Fox News","Democrat" +2,2,5998,"tess",1,1,63,2,63,53,"Fox News","Democrat" +2,2,6000,"tess",1,0,40,2,60,20,"Fox News","Democrat" +2,2,6008,"tess",2,1,99,2,99,54,"Fox News","Republican" +2,2,6045,"tess",1,0,16,3,84,82,"Fox News","Republican" +2,2,6048,"tess",4,1,50,2,50,50,"Fox News","Republican" +2,2,6050,"tess",2,0,29,3,71,22,"Fox News","Republican" +2,2,6067,"tess",2,1,82,2,82,81,"Fox News","Republican" +2,2,6068,"tess",2,1,31,2,31,80,"Fox News","Democrat" +2,2,6069,"tess",2,0,58,2,42,17,"Fox News","Democrat" +2,2,6073,"tess",1,1,91,3,91,70,"Fox News","Democrat" +2,2,6074,"tess",4,0,50,2,50,71,"Fox News","Republican" +2,2,6077,"tess",2,1,70,2,70,50,"Fox News","Democrat" +2,2,6095,"tess",3,0,1,3,99,51,"Fox News","Democrat" +2,2,6096,"tess",1,0,96,2,4,89,"Fox News","Republican" +2,2,6097,"tess",2,1,30,2,30,13,"Fox News","Republican" +2,2,6110,"tess",3,1,67,3,67,90,"Fox News","Republican" +2,2,6111,"tess",3,0,64,2,36,15,"Fox News","Democrat" +2,2,6121,"tess",3,0,69,2,31,16,"Fox News","Democrat" +2,2,6130,"tess",4,0,0,2,100,0,"Fox News","Republican" +2,2,6132,"tess",3,1,40,3,40,40,"Fox News","Neither" +2,2,6136,"tess",2,0,61,3,39,71,"Fox News","Democrat" +2,2,6137,"tess",1,0,99,3,1,51,"Fox News","Democrat" +2,2,6138,"tess",2,0,30,3,70,15,"Fox News","Democrat" +2,2,6146,"tess",1,1,89,3,89,88,"Fox News","Republican" +2,2,6170,"tess",2,1,49,3,49,80,"Fox News","Democrat" +2,2,6171,"tess",2,0,51,2,49,99,"Fox News","Democrat" +2,2,6179,"tess",1,1,44,2,44,46,"Fox News","Democrat" +2,2,6187,"tess",1,1,98,3,98,70,"Fox News","Democrat" +2,2,6193,"tess",3,1,92,2,92,80,"Fox News","Democrat" +2,2,6195,"tess",4,0,79,2,21,49,"Fox News","Democrat" +2,2,6196,"tess",3,0,99,2,1,96,"Fox News","Democrat" +2,2,6197,"tess",2,1,95,3,95,90,"Fox News","Democrat" +2,2,6199,"tess",1,1,96,2,96,95,"Fox News","Republican" +2,2,6204,"tess",1,0,70,2,30,50,"Fox News","Republican" +2,2,6215,"tess",2,0,50,2,50,10,"Fox News","Republican" +2,2,6220,"tess",3,1,90,3,90,80,"Fox News","Democrat" +2,2,6226,"tess",3,0,19,3,81,74,"Fox News","Democrat" +2,2,6231,"tess",3,0,49,3,51,60,"Fox News","Democrat" +2,2,6245,"tess",2,0,80,2,20,10,"Fox News","Democrat" +2,2,6251,"tess",2,1,92,3,92,89,"Fox News","Democrat" +2,2,6254,"tess",3,0,82,3,18,55,"Fox News","Democrat" +2,2,6259,"tess",1,0,86,2,14,100,"Fox News","Democrat" +2,2,6265,"tess",3,0,90,2,10,48,"Fox News","Democrat" +2,2,6280,"tess",3,0,50,3,50,30,"Fox News","Democrat" +2,2,6294,"tess",4,0,99,2,1,0,"Fox News","Republican" +2,2,6298,"tess",2,0,100,2,0,0,"Fox News","Neither" +2,2,6301,"tess",2,1,5,3,5,80,"Fox News","Democrat" +2,2,6307,"tess",3,0,91,2,9,80,"Fox News","Republican" +2,2,6312,"tess",3,1,94,3,94,90,"Fox News","Republican" +2,2,6323,"tess",4,1,100,2,100,94,"Fox News","Democrat" +2,2,6354,"tess",1,0,60,2,40,30,"Fox News","Republican" +2,2,6361,"tess",3,0,80,2,20,91,"Fox News","Democrat" +2,2,6366,"tess",3,1,50,2,50,50,"Fox News","Democrat" +2,2,6373,"tess",2,0,45,3,55,37,"Fox News","Democrat" +2,2,6401,"tess",3,0,69,3,31,28,"Fox News","Democrat" +2,2,6405,"tess",3,1,50,2,50,75,"Fox News","Republican" +2,2,6414,"tess",4,0,20,2,80,60,"Fox News","Republican" +2,2,6427,"tess",2,1,50,3,50,98,"Fox News","Republican" +2,2,6428,"tess",4,0,18,2,82,5,"Fox News","Neither" +2,2,6440,"tess",4,0,77,2,23,40,"Fox News","Republican" +2,2,6449,"tess",1,1,31,2,31,78,"Fox News","Republican" +2,2,6452,"tess",1,0,93,3,7,88,"Fox News","Republican" +2,2,6462,"tess",3,0,20,3,80,50,"Fox News","Democrat" +2,2,6463,"tess",1,1,71,2,71,81,"Fox News","Democrat" +2,2,6466,"tess",1,0,10,2,90,80,"Fox News","Democrat" +2,2,6469,"tess",1,0,34,3,66,43,"Fox News","Democrat" +2,2,6473,"tess",4,1,87,2,87,94,"Fox News","Republican" +2,2,6491,"tess",1,0,80,2,20,31,"Fox News","Neither" +2,2,6501,"tess",3,1,50,2,50,20,"Fox News","Neither" +2,2,6513,"tess",2,1,90,2,90,99,"Fox News","Republican" +2,2,6516,"tess",2,0,60,3,40,31,"Fox News","Republican" +2,2,6524,"tess",3,1,87,2,87,98,"Fox News","Democrat" +2,2,6527,"tess",2,1,77,2,77,26,"Fox News","Democrat" +2,2,6532,"tess",1,1,91,3,91,99,"Fox News","Democrat" +2,2,6534,"tess",1,0,40,2,60,40,"Fox News","Republican" +2,2,6538,"tess",3,0,7,2,93,30,"Fox News","Republican" +2,2,6549,"tess",2,1,51,2,51,31,"Fox News","Democrat" +2,2,6551,"tess",2,1,3,3,3,2,"Fox News","Democrat" +2,2,6553,"tess",3,0,1,3,99,99,"Fox News","Republican" +2,2,6557,"tess",3,1,81,2,81,51,"Fox News","Republican" +2,2,6558,"tess",1,0,10,2,90,80,"Fox News","Republican" +2,2,6571,"tess",1,0,97,2,3,24,"Fox News","Republican" +2,2,6572,"tess",2,1,60,2,60,52,"Fox News","Democrat" +2,2,6581,"tess",3,1,70,3,70,31,"Fox News","Democrat" +2,2,6588,"tess",3,1,4,3,4,91,"Fox News","Democrat" +2,2,6596,"tess",1,0,100,3,0,0,"Fox News","Democrat" +2,2,6599,"tess",2,0,59,2,41,18,"Fox News","Democrat" +2,2,6619,"tess",2,1,69,2,69,69,"Fox News","Republican" +2,2,6626,"tess",2,1,40,2,40,59,"Fox News","Republican" +2,2,6633,"tess",1,0,75,3,25,1,"Fox News","Republican" +2,2,6636,"tess",3,0,49,2,51,49,"Fox News","Republican" +2,2,6640,"tess",1,0,93,3,7,89,"Fox News","Republican" +2,2,6647,"tess",2,0,10,3,90,85,"Fox News","Democrat" +2,2,6648,"tess",1,1,75,3,75,75,"Fox News","Democrat" +2,2,6661,"tess",3,1,78,2,78,40,"Fox News","Republican" +2,2,6665,"tess",1,1,90,3,90,90,"Fox News","Democrat" +2,2,6666,"tess",3,1,80,2,80,71,"Fox News","Democrat" +2,2,6667,"tess",3,0,60,2,40,80,"Fox News","Democrat" +2,2,6675,"tess",3,0,21,3,79,1,"Fox News","Democrat" +2,2,6676,"tess",1,0,29,3,71,80,"Fox News","Democrat" +2,2,6683,"tess",3,1,99,2,99,100,"Fox News","Democrat" +2,2,6685,"tess",4,0,50,2,50,31,"Fox News","Republican" +2,2,6686,"tess",3,1,83,3,83,98,"Fox News","Republican" +2,2,6698,"tess",2,1,99,3,99,99,"Fox News","Democrat" +2,2,6702,"tess",2,0,1,2,99,70,"Fox News","Democrat" +2,2,6703,"tess",2,0,25,3,75,99,"Fox News","Democrat" +2,2,6712,"tess",3,1,68,3,68,53,"Fox News","Democrat" +2,2,6720,"tess",1,0,89,2,11,19,"Fox News","Republican" +2,2,6725,"tess",2,1,76,3,76,100,"Fox News","Republican" +2,2,6730,"tess",1,0,90,2,10,18,"Fox News","Democrat" +2,2,6741,"tess",2,0,80,3,20,40,"Fox News","Democrat" +2,2,6748,"tess",2,0,25,2,75,50,"Fox News","Democrat" +2,2,6755,"tess",4,0,20,2,80,91,"Fox News","Republican" +2,2,6775,"tess",1,1,88,3,88,87,"Fox News","Republican" +2,2,6777,"tess",1,1,90,3,90,80,"Fox News","Democrat" +2,2,6782,"tess",2,0,26,3,74,81,"Fox News","Republican" +2,2,6783,"tess",2,0,90,2,10,73,"Fox News","Democrat" +2,2,6791,"tess",3,0,40,2,60,9,"Fox News","Democrat" +2,2,6797,"tess",3,1,65,2,65,64,"Fox News","Democrat" +2,2,6805,"tess",4,1,51,2,51,19,"Fox News","Republican" +2,2,6820,"tess",2,1,90,2,90,90,"Fox News","Republican" +2,2,6831,"tess",1,0,22,3,78,12,"Fox News","Republican" +2,2,6835,"tess",1,0,79,3,21,17,"Fox News","Democrat" +2,2,6838,"tess",1,1,99,2,99,90,"Fox News","Democrat" +2,2,6843,"tess",4,0,20,2,80,55,"Fox News","Republican" +2,2,6844,"tess",3,0,39,3,61,57,"Fox News","Democrat" +2,2,6868,"tess",1,0,74,2,26,49,"Fox News","Republican" +2,2,6869,"tess",2,0,3,3,97,94,"Fox News","Democrat" +2,2,6881,"tess",2,1,99,2,99,50,"Fox News","Democrat" +2,2,6883,"tess",3,0,23,3,77,14,"Fox News","Democrat" +2,2,6891,"tess",3,1,64,2,64,81,"Fox News","Democrat" +2,2,6893,"tess",4,1,89,2,89,7,"Fox News","Republican" +2,2,6908,"tess",2,0,24,2,76,50,"Fox News","Democrat" +2,2,6909,"tess",3,1,39,3,39,39,"Fox News","Republican" +2,2,6911,"tess",3,1,60,3,60,60,"Fox News","Democrat" +2,2,6912,"tess",3,1,82,3,82,74,"Fox News","Democrat" +2,2,6927,"tess",1,1,100,3,100,100,"Fox News","Democrat" +2,2,6932,"tess",1,0,63,2,37,47,"Fox News","Democrat" +2,2,6936,"tess",4,1,92,2,92,80,"Fox News","Republican" +2,2,6963,"tess",1,0,63,2,37,38,"Fox News","Democrat" +2,2,6971,"tess",2,1,100,3,100,76,"Fox News","Republican" +2,2,6998,"tess",4,1,90,2,90,91,"Fox News","Republican" +2,2,7011,"tess",3,1,30,3,30,90,"Fox News","Democrat" +2,2,7027,"tess",1,1,49,3,49,53,"Fox News","Republican" +2,2,7031,"tess",1,0,61,3,39,36,"Fox News","Republican" +2,2,7048,"tess",1,1,95,3,95,97,"Fox News","Democrat" +2,2,7073,"tess",4,1,100,2,100,50,"Fox News","Republican" +2,2,7078,"tess",1,1,11,2,11,10,"Fox News","Republican" +2,2,7099,"tess",3,0,78,3,22,87,"Fox News","Democrat" +2,2,7122,"tess",4,1,80,2,80,50,"Fox News","Democrat" +2,2,7127,"tess",3,0,0,2,100,99,"Fox News","Democrat" +2,2,7128,"tess",4,1,100,2,100,100,"Fox News","Republican" +2,2,7148,"tess",1,1,90,3,90,98,"Fox News","Democrat" +2,2,7153,"tess",4,1,95,2,95,94,"Fox News","Democrat" +2,2,7158,"tess",3,1,50,2,50,50,"Fox News","Democrat" +2,2,7164,"tess",4,1,9,2,9,10,"Fox News","Neither" +2,2,7174,"tess",1,0,93,3,7,6,"Fox News","Democrat" +2,2,7182,"tess",1,0,1,3,99,99,"Fox News","Democrat" +2,2,7197,"tess",3,1,98,2,98,1,"Fox News","Republican" +2,2,7201,"tess",2,1,100,3,100,1,"Fox News","Democrat" +2,2,7218,"tess",2,1,62,2,62,72,"Fox News","Democrat" +2,2,7223,"tess",3,1,53,3,53,1,"Fox News","Democrat" +2,2,7228,"tess",4,1,NA,2,NA,93,"Fox News","Democrat" +2,2,7231,"tess",2,1,50,3,50,100,"Fox News","Democrat" +2,2,7235,"tess",3,0,20,2,80,50,"Fox News","Democrat" +2,2,7240,"tess",2,0,10,2,90,78,"Fox News","Democrat" +2,2,7253,"tess",2,1,25,3,25,82,"Fox News","Neither" +2,2,7266,"tess",2,0,80,3,20,20,"Fox News","Republican" +2,2,7275,"tess",2,0,99,3,1,93,"Fox News","Republican" +2,2,7280,"tess",1,1,96,3,96,91,"Fox News","Neither" +2,2,7286,"tess",4,0,5,2,95,90,"Fox News","Republican" +2,2,7287,"tess",4,1,100,2,100,80,"Fox News","Republican" +2,2,7289,"tess",2,1,71,3,71,80,"Fox News","Democrat" +2,2,7297,"tess",2,1,2,3,2,99,"Fox News","Democrat" +2,2,7303,"tess",1,0,3,3,97,97,"Fox News","Republican" +2,2,7323,"tess",2,0,0,2,100,1,"Fox News","Republican" +2,2,7353,"tess",3,0,18,3,82,58,"Fox News","Democrat" +2,2,7356,"tess",4,0,60,2,40,31,"Fox News","Democrat" +2,2,7360,"tess",2,0,85,3,15,20,"Fox News","Democrat" +2,2,7370,"tess",3,0,62,2,38,0,"Fox News","Republican" +2,2,7388,"tess",1,1,80,3,80,80,"Fox News","Democrat" +2,2,7398,"tess",2,0,50,3,50,2,"Fox News","Democrat" +2,2,7407,"tess",4,0,10,2,90,20,"Fox News","Republican" +2,2,7412,"tess",1,0,68,2,32,1,"Fox News","Republican" +2,2,7425,"tess",2,1,16,2,16,50,"Fox News","Democrat" +2,2,7427,"tess",3,1,40,3,40,90,"Fox News","Democrat" +2,2,7441,"tess",1,1,91,2,91,89,"Fox News","Democrat" +2,2,7446,"tess",3,1,71,2,71,24,"Fox News","Democrat" +2,2,7448,"tess",2,1,100,3,100,50,"Fox News","Democrat" +2,2,7453,"tess",4,0,80,2,20,40,"Fox News","Republican" +2,2,7466,"tess",1,1,90,3,90,80,"Fox News","Republican" +2,2,7475,"tess",1,0,0,2,100,97,"Fox News","Neither" +2,2,7477,"tess",4,1,0,2,0,0,"Fox News","Republican" +2,2,7494,"tess",4,1,100,2,100,53,"Fox News","Republican" +2,2,7497,"tess",1,0,100,3,0,68,"Fox News","Democrat" +2,2,7498,"tess",2,0,72,3,28,25,"Fox News","Republican" +2,2,7501,"tess",3,1,86,3,86,82,"Fox News","Republican" +2,2,7504,"tess",2,0,71,2,29,20,"Fox News","Republican" +2,2,7506,"tess",2,1,100,2,100,83,"Fox News","Democrat" +2,2,7524,"tess",1,1,82,3,82,79,"Fox News","Democrat" +2,2,7539,"tess",1,1,90,3,90,86,"Fox News","Republican" +2,2,7542,"tess",4,1,97,2,97,95,"Fox News","Republican" +2,2,7543,"tess",3,1,62,3,62,99,"Fox News","Republican" +2,2,7546,"tess",2,0,95,3,5,1,"Fox News","Republican" +2,2,7563,"tess",3,0,4,2,96,40,"Fox News","Democrat" +2,2,7569,"tess",4,0,76,2,24,44,"Fox News","Republican" +2,2,7573,"tess",2,1,89,2,89,90,"Fox News","Democrat" +2,2,7577,"tess",1,1,49,3,49,74,"Fox News","Democrat" +2,2,7580,"tess",2,1,80,3,80,50,"Fox News","Republican" +2,2,7586,"tess",2,1,90,3,90,100,"Fox News","Democrat" +2,2,7588,"tess",4,1,95,2,95,98,"Fox News","Republican" +2,2,7600,"tess",2,1,50,2,50,50,"Fox News","Republican" +2,2,7603,"tess",3,1,88,3,88,18,"Fox News","Democrat" +2,2,7607,"tess",2,1,60,2,60,70,"Fox News","Neither" +2,2,7622,"tess",3,0,99,2,1,1,"Fox News","Democrat" +2,2,7640,"tess",3,1,49,2,49,10,"Fox News","Republican" +2,2,7641,"tess",3,0,50,3,50,20,"Fox News","Democrat" +2,2,7659,"tess",1,0,95,2,5,5,"Fox News","Republican" +2,2,7662,"tess",2,0,81,3,19,29,"Fox News","Democrat" +2,2,7667,"tess",1,0,3,3,97,97,"Fox News","Democrat" +2,2,7688,"tess",3,1,88,2,88,30,"Fox News","Democrat" +2,2,7696,"tess",1,1,60,2,60,20,"Fox News","Democrat" +2,2,7699,"tess",2,1,1,3,1,69,"Fox News","Democrat" +2,2,7712,"tess",2,0,40,2,60,49,"Fox News","Democrat" +2,2,7739,"tess",1,1,NA,2,NA,21,"Fox News","Republican" +2,2,7778,"tess",1,1,86,3,86,95,"Fox News","Democrat" +2,2,7783,"tess",4,0,50,2,50,10,"Fox News","Republican" +2,2,7789,"tess",1,0,82,2,18,50,"Fox News","Republican" +2,2,7820,"tess",4,0,75,2,25,50,"Fox News","Republican" +2,2,7837,"tess",3,1,99,3,99,89,"Fox News","Democrat" +2,2,7844,"tess",1,0,50,3,50,20,"Fox News","Republican" +2,2,7854,"tess",3,1,100,3,100,64,"Fox News","Democrat" +2,2,7856,"tess",3,0,59,3,41,20,"Fox News","Republican" +2,2,7864,"tess",1,0,38,3,62,63,"Fox News","Republican" +2,2,7872,"tess",3,0,40,3,60,41,"Fox News","Democrat" +2,2,7906,"tess",4,1,20,2,20,0,"Fox News","Republican" +2,2,7908,"tess",4,0,100,2,0,1,"Fox News","Republican" +2,2,7936,"tess",2,1,6,2,6,44,"Fox News","Democrat" +2,2,7951,"tess",1,1,84,2,84,94,"Fox News","Republican" +2,2,7965,"tess",3,1,60,3,60,50,"Fox News","Democrat" +2,2,7967,"tess",1,0,78,3,22,0,"Fox News","Democrat" +2,2,7973,"tess",2,1,97,2,97,91,"Fox News","Republican" +2,2,7982,"tess",2,0,35,2,65,65,"Fox News","Democrat" +2,2,7987,"tess",1,0,10,3,90,80,"Fox News","Democrat" +2,2,7998,"tess",1,0,90,2,10,90,"Fox News","Democrat" +2,2,8001,"tess",1,0,60,3,40,26,"Fox News","Republican" +2,2,8011,"tess",1,1,91,3,91,85,"Fox News","Republican" +2,2,8023,"tess",2,1,96,3,96,7,"Fox News","Democrat" +2,2,8041,"tess",3,0,60,2,40,40,"Fox News","Republican" +2,2,8050,"tess",1,0,100,3,0,50,"Fox News","Neither" +2,2,8055,"tess",1,1,70,2,70,85,"Fox News","Democrat" +2,2,8061,"tess",1,1,89,2,89,90,"Fox News","Republican" +2,2,8062,"tess",1,0,20,3,80,20,"Fox News","Democrat" +2,2,8063,"tess",2,0,92,3,8,19,"Fox News","Republican" +2,2,8065,"tess",3,0,53,2,47,13,"Fox News","Democrat" +2,2,8069,"tess",1,0,21,3,79,27,"Fox News","Democrat" +2,2,8081,"tess",1,1,93,2,93,85,"Fox News","Democrat" +2,2,8095,"tess",2,1,99,2,99,100,"Fox News","Democrat" +2,2,8096,"tess",3,0,99,3,1,2,"Fox News","Republican" +2,2,8101,"tess",2,1,83,3,83,50,"Fox News","Republican" +2,2,8127,"tess",3,0,25,3,75,61,"Fox News","Republican" +2,2,8141,"tess",1,1,11,2,11,94,"Fox News","Democrat" +2,2,8146,"tess",3,1,100,3,100,99,"Fox News","Republican" +2,2,8159,"tess",1,1,5,2,5,90,"Fox News","Neither" +2,2,8170,"tess",3,1,85,2,85,82,"Fox News","Democrat" +2,2,8176,"tess",3,0,50,2,50,50,"Fox News","Democrat" +2,2,8197,"tess",1,1,NA,3,NA,NA,"Fox News","Republican" +2,2,8232,"tess",1,1,100,2,100,90,"Fox News","Democrat" +2,2,8247,"tess",1,0,90,2,10,10,"Fox News","Republican" +2,2,8249,"tess",1,0,0,2,100,100,"Fox News","Democrat" +2,2,8252,"tess",3,0,74,3,26,53,"Fox News","Democrat" +2,2,8253,"tess",2,1,100,2,100,71,"Fox News","Democrat" +2,2,8265,"tess",2,0,50,2,50,3,"Fox News","Republican" +2,2,8317,"tess",4,1,96,2,96,90,"Fox News","Republican" +2,2,8335,"tess",1,1,93,2,93,94,"Fox News","Republican" +2,2,8344,"tess",1,0,0,3,100,100,"Fox News","Democrat" +2,2,8356,"tess",3,1,0,3,0,0,"Fox News","Neither" +2,2,8360,"tess",3,0,51,3,49,36,"Fox News","Democrat" +2,2,8374,"tess",1,0,100,2,0,1,"Fox News","Republican" +2,2,8378,"tess",1,1,100,3,100,98,"Fox News","Republican" +2,2,8386,"tess",3,0,66,2,34,51,"Fox News","Republican" +2,2,8397,"tess",3,1,50,2,50,10,"Fox News","Republican" +2,2,8400,"tess",1,1,37,3,37,12,"Fox News","Democrat" +2,2,8405,"tess",3,0,50,2,50,50,"Fox News","Democrat" +2,2,8406,"tess",1,1,90,3,90,80,"Fox News","Democrat" +2,2,8435,"tess",2,0,100,3,0,25,"Fox News","Republican" +2,2,8452,"tess",4,0,0,2,100,50,"Fox News","Republican" +2,2,8455,"tess",4,0,1,2,99,50,"Fox News","Republican" +2,2,8466,"tess",2,1,30,3,30,79,"Fox News","Democrat" +2,2,8503,"tess",1,1,50,2,50,30,"Fox News","Republican" +2,2,8507,"tess",2,1,69,2,69,60,"Fox News","Democrat" +2,2,8564,"tess",3,1,100,2,100,58,"Fox News","Republican" +2,2,8568,"tess",2,1,40,2,40,91,"Fox News","Democrat" +2,2,8577,"tess",3,0,95,3,5,5,"Fox News","Democrat" +2,2,8589,"tess",2,1,50,2,50,50,"Fox News","Democrat" +2,2,8590,"tess",1,0,95,2,5,52,"Fox News","Republican" +2,2,8608,"tess",1,0,80,2,20,40,"Fox News","Republican" +2,2,8638,"tess",1,1,10,3,10,90,"Fox News","Neither" +2,2,8680,"tess",2,0,91,3,9,9,"Fox News","Republican" +2,2,8685,"tess",1,0,63,2,37,50,"Fox News","Democrat" +2,2,8709,"tess",4,1,49,2,49,52,"Fox News","Republican" +2,2,8713,"tess",3,0,100,2,0,0,"Fox News","Republican" +2,2,8714,"tess",1,0,69,2,31,20,"Fox News","Democrat" +2,2,8727,"tess",3,1,72,3,72,72,"Fox News","Democrat" +2,2,8728,"tess",3,0,1,2,99,49,"Fox News","Republican" +2,2,8731,"tess",2,1,86,3,86,72,"Fox News","Democrat" +2,2,8755,"tess",3,0,12,3,88,60,"Fox News","Democrat" +2,2,8777,"tess",1,0,70,3,30,90,"Fox News","Democrat" +2,2,8779,"tess",3,1,0,2,0,0,"Fox News","Republican" +2,2,8782,"tess",1,0,50,2,50,51,"Fox News","Republican" +2,2,8797,"tess",3,0,38,3,62,49,"Fox News","Republican" +2,2,8806,"tess",2,1,71,2,71,39,"Fox News","Neither" +2,2,8814,"tess",3,0,30,2,70,32,"Fox News","Democrat" +2,2,8816,"tess",1,1,68,2,68,52,"Fox News","Democrat" +2,2,8826,"tess",4,1,97,2,97,94,"Fox News","Republican" +2,2,8837,"tess",3,0,60,2,40,0,"Fox News","Democrat" +2,2,8877,"tess",1,1,96,3,96,95,"Fox News","Republican" +2,2,8888,"tess",4,0,96,2,4,5,"Fox News","Republican" +2,2,8890,"tess",4,1,100,2,100,91,"Fox News","Republican" +2,2,8894,"tess",1,1,89,3,89,80,"Fox News","Democrat" +2,2,8900,"tess",1,0,96,2,4,0,"Fox News","Republican" +2,2,8903,"tess",2,0,80,2,20,10,"Fox News","Republican" +2,2,8934,"tess",1,0,1,3,99,53,"Fox News","Democrat" +2,2,8941,"tess",1,0,11,2,89,40,"Fox News","Neither" +2,2,8946,"tess",3,0,100,3,0,50,"Fox News","Democrat" +2,2,8983,"tess",3,0,26,2,74,24,"Fox News","Democrat" +2,2,8988,"tess",4,0,80,2,20,90,"Fox News","Republican" +2,2,8990,"tess",3,1,100,3,100,100,"Fox News","Republican" +2,2,8999,"tess",3,1,93,3,93,60,"Fox News","Democrat" +2,2,9018,"tess",3,1,99,3,99,99,"Fox News","Democrat" +2,2,9024,"tess",2,1,50,3,50,60,"Fox News","Democrat" +2,2,9038,"tess",3,1,60,3,60,81,"Fox News","Neither" +2,2,9068,"tess",1,1,99,3,99,96,"Fox News","Democrat" +2,2,9074,"tess",4,0,70,2,30,30,"Fox News","Republican" +2,2,9075,"tess",3,1,99,2,99,99,"Fox News","Democrat" +2,2,9084,"tess",2,0,1,3,99,90,"Fox News","Democrat" +2,2,9101,"tess",2,1,43,2,43,64,"Fox News","Democrat" +2,2,9119,"tess",3,0,50,2,50,70,"Fox News","Democrat" +2,2,9135,"tess",2,0,53,2,47,15,"Fox News","Democrat" +2,2,9146,"tess",4,0,90,2,10,50,"Fox News","Republican" +2,2,9148,"tess",1,0,100,3,0,23,"Fox News","Republican" +2,2,9150,"tess",3,0,18,3,82,0,"Fox News","Republican" +2,2,9154,"tess",1,0,26,2,74,50,"Fox News","Democrat" +2,2,9155,"tess",4,1,86,2,86,76,"Fox News","Democrat" +2,2,9189,"tess",2,1,92,2,92,70,"Fox News","Republican" +2,2,9230,"tess",4,0,100,2,0,22,"Fox News","Democrat" +2,2,9235,"tess",2,0,NA,2,NA,12,"Fox News","Democrat" +2,2,9236,"tess",1,0,100,2,0,59,"Fox News","Republican" +2,2,9260,"tess",1,0,90,3,10,50,"Fox News","Republican" +2,2,9267,"tess",4,0,58,2,42,47,"Fox News","Democrat" +2,2,9279,"tess",3,1,70,2,70,71,"Fox News","Democrat" +2,2,9284,"tess",2,0,71,2,29,30,"Fox News","Republican" +2,2,9286,"tess",1,1,13,2,13,88,"Fox News","Democrat" +2,2,9292,"tess",1,1,28,3,28,9,"Fox News","Republican" +2,2,9295,"tess",3,0,5,2,95,10,"Fox News","Republican" +2,2,9301,"tess",3,0,73,3,27,13,"Fox News","Democrat" +2,2,9316,"tess",1,1,79,2,79,53,"Fox News","Republican" +2,2,9319,"tess",1,1,99,2,99,50,"Fox News","Democrat" +2,2,9337,"tess",1,0,80,2,20,20,"Fox News","Republican" +2,2,9340,"tess",4,0,43,2,57,10,"Fox News","Democrat" +2,2,9366,"tess",2,1,79,2,79,25,"Fox News","Republican" +2,2,9372,"tess",1,0,5,3,95,100,"Fox News","Democrat" +2,2,9383,"tess",4,0,93,2,7,100,"Fox News","Republican" +2,2,9398,"tess",2,1,31,3,31,29,"Fox News","Republican" +2,2,9412,"tess",2,0,1,2,99,1,"Fox News","Republican" +2,2,9419,"tess",4,1,50,2,50,50,"Fox News","Democrat" +2,2,9458,"tess",3,1,57,2,57,37,"Fox News","Republican" +2,2,9479,"tess",1,0,97,3,3,50,"Fox News","Democrat" +2,2,9490,"tess",3,1,47,3,47,10,"Fox News","Republican" +2,2,9493,"tess",3,1,5,2,5,94,"Fox News","Democrat" +2,2,9499,"tess",4,0,100,2,0,39,"Fox News","Democrat" +2,2,9532,"tess",1,0,99,2,1,50,"Fox News","Republican" +2,2,9534,"tess",3,0,100,2,0,3,"Fox News","Democrat" +2,2,9536,"tess",1,0,75,3,25,48,"Fox News","Democrat" +2,2,9538,"tess",4,0,79,2,21,30,"Fox News","Republican" +2,2,9551,"tess",2,1,39,3,39,73,"Fox News","Democrat" +2,2,9563,"tess",2,0,93,2,7,2,"Fox News","Republican" +2,2,9590,"tess",2,1,95,2,95,92,"Fox News","Republican" +2,2,9603,"tess",2,1,82,3,82,50,"Fox News","Democrat" +2,2,9608,"tess",3,0,99,3,1,1,"Fox News","Democrat" +2,2,9645,"tess",3,1,57,3,57,55,"Fox News","Democrat" +2,2,9647,"tess",2,0,92,3,8,73,"Fox News","Republican" +2,2,9663,"tess",1,1,40,3,40,90,"Fox News","Democrat" +2,2,9664,"tess",1,0,61,3,39,27,"Fox News","Republican" +2,2,9666,"tess",3,0,98,3,2,97,"Fox News","Republican" +2,2,9671,"tess",1,0,70,3,30,30,"Fox News","Democrat" +2,2,9676,"tess",1,1,80,2,80,49,"Fox News","Democrat" +2,2,9689,"tess",1,1,75,3,75,70,"Fox News","Democrat" +2,2,9692,"tess",1,1,34,3,34,49,"Fox News","Democrat" +2,2,9693,"tess",3,0,64,2,36,0,"Fox News","Neither" +2,2,9716,"tess",3,0,86,2,14,54,"Fox News","Democrat" +2,2,9729,"tess",4,1,99,2,99,2,"Fox News","Republican" +2,2,9741,"tess",3,1,99,2,99,99,"Fox News","Republican" +2,3,62,"tess",1,0,30,2,70,10,"New York Times","Democrat" +2,3,64,"tess",2,0,50,2,50,11,"New York Times","Democrat" +2,3,69,"tess",2,0,50,2,50,47,"New York Times","Neither" +2,3,70,"tess",3,1,78,2,78,68,"New York Times","Republican" +2,3,72,"tess",1,1,76,2,76,93,"New York Times","Democrat" +2,3,78,"tess",1,1,100,2,100,10,"New York Times","Democrat" +2,3,80,"tess",1,1,60,2,60,64,"New York Times","Republican" +2,3,120,"tess",3,0,100,3,0,0,"New York Times","Democrat" +2,3,128,"tess",3,0,59,3,41,46,"New York Times","Republican" +2,3,151,"tess",2,0,90,3,10,50,"New York Times","Republican" +2,3,165,"tess",3,0,84,2,16,84,"New York Times","Democrat" +2,3,196,"tess",3,0,53,2,47,16,"New York Times","Democrat" +2,3,207,"tess",1,1,50,3,50,71,"New York Times","Republican" +2,3,221,"tess",4,0,48,2,52,3,"New York Times","Democrat" +2,3,224,"tess",1,0,67,3,33,42,"New York Times","Democrat" +2,3,263,"tess",1,1,29,2,29,24,"New York Times","Neither" +2,3,296,"tess",3,0,97,2,3,22,"New York Times","Republican" +2,3,299,"tess",2,0,20,3,80,90,"New York Times","Democrat" +2,3,308,"tess",2,0,79,2,21,11,"New York Times","Democrat" +2,3,336,"tess",2,0,20,2,80,5,"New York Times","Republican" +2,3,342,"tess",2,1,99,3,99,70,"New York Times","Democrat" +2,3,379,"tess",3,0,10,3,90,10,"New York Times","Democrat" +2,3,389,"tess",3,1,80,3,80,50,"New York Times","Democrat" +2,3,397,"tess",3,0,85,3,15,22,"New York Times","Democrat" +2,3,413,"tess",2,1,83,2,83,87,"New York Times","Democrat" +2,3,430,"tess",2,0,60,3,40,80,"New York Times","Republican" +2,3,431,"tess",1,0,57,2,43,50,"New York Times","Democrat" +2,3,450,"tess",4,1,71,2,71,50,"New York Times","Republican" +2,3,485,"tess",1,1,65,3,65,65,"New York Times","Democrat" +2,3,508,"tess",3,1,43,3,43,47,"New York Times","Republican" +2,3,542,"tess",2,0,87,2,13,97,"New York Times","Republican" +2,3,549,"tess",4,1,54,2,54,49,"New York Times","Democrat" +2,3,574,"tess",3,1,68,2,68,48,"New York Times","Democrat" +2,3,596,"tess",3,1,98,2,98,100,"New York Times","Democrat" +2,3,617,"tess",3,0,39,3,61,93,"New York Times","Republican" +2,3,627,"tess",1,1,85,2,85,76,"New York Times","Democrat" +2,3,639,"tess",2,1,9,3,9,0,"New York Times","Democrat" +2,3,675,"tess",1,0,33,3,67,13,"New York Times","Democrat" +2,3,709,"tess",1,1,94,2,94,83,"New York Times","Republican" +2,3,728,"tess",4,0,50,2,50,2,"New York Times","Democrat" +2,3,740,"tess",1,0,60,3,40,50,"New York Times","Democrat" +2,3,753,"tess",1,0,93,3,7,5,"New York Times","Republican" +2,3,766,"tess",1,0,4,3,96,64,"New York Times","Republican" +2,3,773,"tess",1,0,52,2,48,33,"New York Times","Democrat" +2,3,794,"tess",1,1,85,2,85,93,"New York Times","Democrat" +2,3,803,"tess",2,1,69,3,69,61,"New York Times","Democrat" +2,3,823,"tess",3,1,95,3,95,8,"New York Times","Democrat" +2,3,828,"tess",4,1,59,2,59,20,"New York Times","Neither" +2,3,836,"tess",1,0,93,2,7,5,"New York Times","Democrat" +2,3,845,"tess",2,1,99,2,99,75,"New York Times","Republican" +2,3,861,"tess",2,0,0,3,100,100,"New York Times","Democrat" +2,3,878,"tess",3,0,90,3,10,10,"New York Times","Democrat" +2,3,883,"tess",3,0,65,3,35,50,"New York Times","Democrat" +2,3,886,"tess",3,1,96,3,96,50,"New York Times","Republican" +2,3,898,"tess",1,0,53,3,47,50,"New York Times","Republican" +2,3,903,"tess",3,1,53,2,53,47,"New York Times","Republican" +2,3,918,"tess",4,0,48,2,52,36,"New York Times","Republican" +2,3,950,"tess",1,0,80,2,20,20,"New York Times","Democrat" +2,3,978,"tess",3,0,54,3,46,43,"New York Times","Democrat" +2,3,985,"tess",2,0,99,2,1,1,"New York Times","Republican" +2,3,990,"tess",3,1,54,2,54,75,"New York Times","Republican" +2,3,1031,"tess",3,1,93,2,93,88,"New York Times","Democrat" +2,3,1036,"tess",2,1,1,3,1,1,"New York Times","Republican" +2,3,1058,"tess",3,0,19,3,81,28,"New York Times","Republican" +2,3,1062,"tess",2,1,52,3,52,62,"New York Times","Democrat" +2,3,1065,"tess",2,1,50,3,50,11,"New York Times","Republican" +2,3,1083,"tess",1,0,0,3,100,40,"New York Times","Democrat" +2,3,1110,"tess",3,0,90,2,10,90,"New York Times","Neither" +2,3,1133,"tess",1,0,50,3,50,20,"New York Times","Republican" +2,3,1147,"tess",4,0,81,2,19,50,"New York Times","Democrat" +2,3,1156,"tess",1,0,100,3,0,30,"New York Times","Democrat" +2,3,1193,"tess",4,0,1,2,99,99,"New York Times","Democrat" +2,3,1220,"tess",2,0,15,3,85,82,"New York Times","Democrat" +2,3,1235,"tess",1,1,70,2,70,31,"New York Times","Republican" +2,3,1246,"tess",3,1,0,3,0,42,"New York Times","Republican" +2,3,1256,"tess",3,1,88,3,88,91,"New York Times","Democrat" +2,3,1282,"tess",1,0,69,3,31,3,"New York Times","Republican" +2,3,1288,"tess",1,1,55,3,55,15,"New York Times","Republican" +2,3,1306,"tess",1,0,0,2,100,94,"New York Times","Democrat" +2,3,1307,"tess",1,1,98,2,98,70,"New York Times","Republican" +2,3,1309,"tess",1,1,100,2,100,97,"New York Times","Democrat" +2,3,1330,"tess",4,0,100,2,0,25,"New York Times","Republican" +2,3,1336,"tess",3,0,60,2,40,71,"New York Times","Republican" +2,3,1376,"tess",1,0,0,3,100,0,"New York Times","Democrat" +2,3,1402,"tess",3,1,100,2,100,0,"New York Times","Republican" +2,3,1418,"tess",2,0,83,3,17,16,"New York Times","Republican" +2,3,1419,"tess",1,0,56,2,44,41,"New York Times","Republican" +2,3,1426,"tess",2,1,80,3,80,33,"New York Times","Democrat" +2,3,1444,"tess",1,0,50,2,50,50,"New York Times","Democrat" +2,3,1461,"tess",1,1,48,2,48,37,"New York Times","Democrat" +2,3,1468,"tess",4,1,71,2,71,72,"New York Times","Republican" +2,3,1500,"tess",3,0,40,2,60,40,"New York Times","Democrat" +2,3,1511,"tess",3,1,5,3,5,5,"New York Times","Republican" +2,3,1518,"tess",3,1,67,3,67,73,"New York Times","Democrat" +2,3,1523,"tess",1,0,16,3,84,85,"New York Times","Republican" +2,3,1530,"tess",3,1,50,3,50,44,"New York Times","Republican" +2,3,1541,"tess",2,0,29,2,71,40,"New York Times","Republican" +2,3,1551,"tess",3,1,63,2,63,41,"New York Times","Republican" +2,3,1556,"tess",1,1,75,3,75,75,"New York Times","Democrat" +2,3,1565,"tess",3,1,30,3,30,90,"New York Times","Democrat" +2,3,1605,"tess",3,1,65,3,65,83,"New York Times","Republican" +2,3,1634,"tess",1,0,77,2,23,0,"New York Times","Democrat" +2,3,1654,"tess",1,1,100,3,100,98,"New York Times","Democrat" +2,3,1663,"tess",2,1,59,2,59,65,"New York Times","Neither" +2,3,1668,"tess",4,0,36,2,64,15,"New York Times","Democrat" +2,3,1674,"tess",1,1,19,3,19,50,"New York Times","Republican" +2,3,1702,"tess",3,0,94,3,6,50,"New York Times","Neither" +2,3,1706,"tess",2,0,64,3,36,39,"New York Times","Democrat" +2,3,1724,"tess",4,0,50,2,50,15,"New York Times","Democrat" +2,3,1733,"tess",2,0,99,2,1,50,"New York Times","Democrat" +2,3,1739,"tess",2,1,36,2,36,40,"New York Times","Republican" +2,3,1767,"tess",4,1,49,2,49,50,"New York Times","Republican" +2,3,1775,"tess",3,1,50,3,50,57,"New York Times","Democrat" +2,3,1813,"tess",3,0,48,3,52,38,"New York Times","Democrat" +2,3,1832,"tess",2,0,50,3,50,90,"New York Times","Republican" +2,3,1834,"tess",1,0,79,2,21,9,"New York Times","Neither" +2,3,1847,"tess",3,1,95,3,95,90,"New York Times","Republican" +2,3,1850,"tess",3,0,70,2,30,30,"New York Times","Republican" +2,3,1863,"tess",1,1,85,3,85,90,"New York Times","Republican" +2,3,1899,"tess",2,1,100,2,100,100,"New York Times","Democrat" +2,3,1924,"tess",1,0,84,3,16,60,"New York Times","Democrat" +2,3,1945,"tess",2,0,50,2,50,2,"New York Times","Democrat" +2,3,1953,"tess",1,1,70,2,70,19,"New York Times","Republican" +2,3,1973,"tess",1,1,60,3,60,70,"New York Times","Democrat" +2,3,1976,"tess",2,0,97,2,3,7,"New York Times","Republican" +2,3,2001,"tess",1,1,98,3,98,100,"New York Times","Republican" +2,3,2030,"tess",3,1,57,3,57,100,"New York Times","Democrat" +2,3,2033,"tess",4,0,100,2,0,43,"New York Times","Democrat" +2,3,2044,"tess",2,0,56,3,44,29,"New York Times","Republican" +2,3,2057,"tess",2,1,91,3,91,90,"New York Times","Republican" +2,3,2061,"tess",3,0,91,2,9,3,"New York Times","Democrat" +2,3,2072,"tess",4,0,89,2,11,0,"New York Times","Democrat" +2,3,2088,"tess",4,1,92,2,92,91,"New York Times","Democrat" +2,3,2090,"tess",3,0,100,2,0,100,"New York Times","Democrat" +2,3,2099,"tess",2,0,11,3,89,70,"New York Times","Republican" +2,3,2100,"tess",1,1,93,2,93,91,"New York Times","Democrat" +2,3,2107,"tess",3,1,68,2,68,63,"New York Times","Republican" +2,3,2141,"tess",2,1,99,3,99,91,"New York Times","Democrat" +2,3,2153,"tess",2,0,100,3,0,7,"New York Times","Democrat" +2,3,2169,"tess",1,1,44,3,44,50,"New York Times","Democrat" +2,3,2187,"tess",2,1,54,3,54,50,"New York Times","Democrat" +2,3,2188,"tess",3,0,0,3,100,30,"New York Times","Republican" +2,3,2207,"tess",3,0,51,3,49,62,"New York Times","Republican" +2,3,2211,"tess",1,1,89,3,89,90,"New York Times","Republican" +2,3,2218,"tess",2,0,53,2,47,49,"New York Times","Republican" +2,3,2253,"tess",1,0,20,3,80,3,"New York Times","Democrat" +2,3,2272,"tess",3,1,96,2,96,50,"New York Times","Democrat" +2,3,2275,"tess",1,0,NA,3,NA,80,"New York Times","Republican" +2,3,2283,"tess",1,1,85,2,85,70,"New York Times","Democrat" +2,3,2287,"tess",2,0,70,3,30,30,"New York Times","Democrat" +2,3,2308,"tess",1,1,50,3,50,97,"New York Times","Democrat" +2,3,2315,"tess",3,1,74,3,74,75,"New York Times","Democrat" +2,3,2318,"tess",1,0,5,3,95,90,"New York Times","Democrat" +2,3,2356,"tess",1,1,99,3,99,95,"New York Times","Republican" +2,3,2381,"tess",1,0,85,3,15,23,"New York Times","Democrat" +2,3,2383,"tess",3,1,90,3,90,75,"New York Times","Republican" +2,3,2393,"tess",2,1,50,3,50,10,"New York Times","Democrat" +2,3,2399,"tess",3,0,100,2,0,30,"New York Times","Democrat" +2,3,2424,"tess",2,0,73,3,27,56,"New York Times","Republican" +2,3,2435,"tess",3,0,92,3,8,14,"New York Times","Democrat" +2,3,2445,"tess",1,0,90,2,10,89,"New York Times","Republican" +2,3,2447,"tess",3,0,87,2,13,80,"New York Times","Democrat" +2,3,2460,"tess",4,0,6,2,94,14,"New York Times","Democrat" +2,3,2468,"tess",3,1,90,2,90,50,"New York Times","Democrat" +2,3,2474,"tess",3,0,100,2,0,95,"New York Times","Democrat" +2,3,2483,"tess",1,0,0,3,100,90,"New York Times","Democrat" +2,3,2484,"tess",2,1,6,3,6,0,"New York Times","Republican" +2,3,2486,"tess",1,1,21,3,21,44,"New York Times","Republican" +2,3,2492,"tess",4,1,90,2,90,40,"New York Times","Democrat" +2,3,2498,"tess",3,0,9,2,91,10,"New York Times","Republican" +2,3,2508,"tess",3,0,90,2,10,70,"New York Times","Democrat" +2,3,2511,"tess",1,1,100,3,100,100,"New York Times","Democrat" +2,3,2514,"tess",2,1,40,3,40,40,"New York Times","Democrat" +2,3,2518,"tess",3,1,29,3,29,81,"New York Times","Republican" +2,3,2520,"tess",2,1,100,3,100,99,"New York Times","Democrat" +2,3,2547,"tess",3,1,79,3,79,80,"New York Times","Republican" +2,3,2557,"tess",4,1,100,2,100,80,"New York Times","Democrat" +2,3,2599,"tess",3,0,99,3,1,2,"New York Times","Republican" +2,3,2608,"tess",2,0,100,2,0,100,"New York Times","Democrat" +2,3,2644,"tess",3,1,99,3,99,1,"New York Times","Democrat" +2,3,2658,"tess",1,1,100,3,100,100,"New York Times","Republican" +2,3,2669,"tess",4,0,100,2,0,100,"New York Times","Democrat" +2,3,2698,"tess",2,1,50,3,50,80,"New York Times","Republican" +2,3,2709,"tess",4,1,100,2,100,100,"New York Times","Democrat" +2,3,2714,"tess",1,0,9,2,91,6,"New York Times","Democrat" +2,3,2722,"tess",1,1,47,3,47,99,"New York Times","Democrat" +2,3,2745,"tess",2,1,90,2,90,50,"New York Times","Republican" +2,3,2764,"tess",1,1,75,2,75,10,"New York Times","Republican" +2,3,2774,"tess",1,1,90,3,90,90,"New York Times","Republican" +2,3,2779,"tess",3,1,90,2,90,70,"New York Times","Democrat" +2,3,2808,"tess",1,0,70,3,30,0,"New York Times","Democrat" +2,3,2818,"tess",2,1,70,2,70,50,"New York Times","Democrat" +2,3,2827,"tess",1,0,98,2,2,97,"New York Times","Democrat" +2,3,2829,"tess",1,1,79,2,79,50,"New York Times","Democrat" +2,3,2852,"tess",2,1,100,2,100,100,"New York Times","Republican" +2,3,2888,"tess",1,0,97,3,3,20,"New York Times","Democrat" +2,3,2892,"tess",4,0,36,2,64,62,"New York Times","Democrat" +2,3,2902,"tess",3,1,75,2,75,70,"New York Times","Democrat" +2,3,2903,"tess",2,1,88,2,88,89,"New York Times","Democrat" +2,3,2906,"tess",2,0,21,3,79,5,"New York Times","Democrat" +2,3,2936,"tess",1,1,75,3,75,24,"New York Times","Democrat" +2,3,2945,"tess",1,0,0,3,100,11,"New York Times","Democrat" +2,3,2982,"tess",3,0,70,2,30,9,"New York Times","Democrat" +2,3,2987,"tess",2,1,100,2,100,100,"New York Times","Republican" +2,3,2990,"tess",3,0,90,2,10,80,"New York Times","Republican" +2,3,2998,"tess",2,0,98,3,2,6,"New York Times","Republican" +2,3,3020,"tess",1,0,48,3,52,45,"New York Times","Democrat" +2,3,3021,"tess",1,0,85,2,15,70,"New York Times","Democrat" +2,3,3028,"tess",4,0,70,2,30,50,"New York Times","Democrat" +2,3,3048,"tess",3,1,45,3,45,60,"New York Times","Democrat" +2,3,3068,"tess",1,1,98,2,98,90,"New York Times","Democrat" +2,3,3071,"tess",3,1,50,2,50,10,"New York Times","Democrat" +2,3,3076,"tess",3,0,99,2,1,98,"New York Times","Republican" +2,3,3077,"tess",3,1,75,3,75,65,"New York Times","Democrat" +2,3,3086,"tess",2,1,78,2,78,67,"New York Times","Republican" +2,3,3089,"tess",2,1,57,3,57,44,"New York Times","Democrat" +2,3,3111,"tess",1,1,49,3,49,50,"New York Times","Democrat" +2,3,3123,"tess",1,1,94,3,94,90,"New York Times","Democrat" +2,3,3125,"tess",1,0,50,3,50,29,"New York Times","Democrat" +2,3,3155,"tess",1,0,53,2,47,50,"New York Times","Neither" +2,3,3176,"tess",3,1,50,3,50,50,"New York Times","Republican" +2,3,3186,"tess",2,1,51,3,51,79,"New York Times","Democrat" +2,3,3190,"tess",3,0,5,3,95,29,"New York Times","Democrat" +2,3,3195,"tess",2,1,79,3,79,80,"New York Times","Democrat" +2,3,3201,"tess",1,1,24,2,24,13,"New York Times","Republican" +2,3,3205,"tess",1,0,51,2,49,48,"New York Times","Republican" +2,3,3207,"tess",3,1,93,3,93,50,"New York Times","Republican" +2,3,3214,"tess",2,1,54,2,54,53,"New York Times","Democrat" +2,3,3225,"tess",3,1,26,2,26,28,"New York Times","Republican" +2,3,3226,"tess",3,1,92,2,92,86,"New York Times","Republican" +2,3,3230,"tess",3,1,97,2,97,100,"New York Times","Republican" +2,3,3234,"tess",2,1,30,2,30,20,"New York Times","Republican" +2,3,3244,"tess",1,0,99,2,1,78,"New York Times","Republican" +2,3,3262,"tess",2,1,90,2,90,70,"New York Times","Republican" +2,3,3304,"tess",2,1,70,2,70,60,"New York Times","Republican" +2,3,3320,"tess",4,1,92,2,92,80,"New York Times","Democrat" +2,3,3335,"tess",2,0,83,3,17,30,"New York Times","Democrat" +2,3,3342,"tess",3,0,76,3,24,27,"New York Times","Republican" +2,3,3346,"tess",3,0,70,2,30,40,"New York Times","Republican" +2,3,3348,"tess",2,1,50,3,50,0,"New York Times","Democrat" +2,3,3364,"tess",1,0,76,2,24,36,"New York Times","Democrat" +2,3,3365,"tess",2,1,80,2,80,50,"New York Times","Democrat" +2,3,3371,"tess",1,1,92,3,92,90,"New York Times","Democrat" +2,3,3407,"tess",1,1,80,2,80,70,"New York Times","Republican" +2,3,3419,"tess",3,0,50,2,50,50,"New York Times","Democrat" +2,3,3424,"tess",3,1,34,3,34,16,"New York Times","Democrat" +2,3,3437,"tess",2,0,10,3,90,75,"New York Times","Republican" +2,3,3477,"tess",1,0,81,2,19,30,"New York Times","Democrat" +2,3,3494,"tess",2,0,60,2,40,39,"New York Times","Democrat" +2,3,3508,"tess",2,0,82,2,18,58,"New York Times","Republican" +2,3,3523,"tess",3,0,50,2,50,50,"New York Times","Democrat" +2,3,3535,"tess",3,0,50,2,50,30,"New York Times","Democrat" +2,3,3545,"tess",2,0,20,2,80,56,"New York Times","Democrat" +2,3,3548,"tess",2,0,60,3,40,70,"New York Times","Republican" +2,3,3562,"tess",4,0,58,2,42,26,"New York Times","Democrat" +2,3,3582,"tess",1,0,98,3,2,2,"New York Times","Republican" +2,3,3607,"tess",1,0,100,2,0,0,"New York Times","Republican" +2,3,3610,"tess",1,1,80,2,80,80,"New York Times","Democrat" +2,3,3611,"tess",3,0,5,3,95,95,"New York Times","Democrat" +2,3,3612,"tess",1,1,50,3,50,6,"New York Times","Republican" +2,3,3631,"tess",4,1,95,2,95,97,"New York Times","Democrat" +2,3,3632,"tess",4,1,81,2,81,69,"New York Times","Republican" +2,3,3635,"tess",4,1,0,2,0,0,"New York Times","Republican" +2,3,3643,"tess",2,1,99,3,99,95,"New York Times","Democrat" +2,3,3653,"tess",3,0,83,2,17,67,"New York Times","Democrat" +2,3,3681,"tess",1,1,44,3,44,97,"New York Times","Democrat" +2,3,3695,"tess",3,1,75,3,75,20,"New York Times","Republican" +2,3,3702,"tess",3,1,90,3,90,10,"New York Times","Democrat" +2,3,3708,"tess",1,0,71,2,29,21,"New York Times","Democrat" +2,3,3710,"tess",2,1,70,3,70,60,"New York Times","Democrat" +2,3,3736,"tess",2,0,100,3,0,0,"New York Times","Democrat" +2,3,3745,"tess",3,1,100,2,100,90,"New York Times","Democrat" +2,3,3754,"tess",2,1,95,3,95,97,"New York Times","Democrat" +2,3,3759,"tess",3,0,77,2,23,51,"New York Times","Republican" +2,3,3782,"tess",2,0,67,2,33,65,"New York Times","Democrat" +2,3,3787,"tess",4,1,100,2,100,77,"New York Times","Democrat" +2,3,3793,"tess",2,1,69,2,69,50,"New York Times","Republican" +2,3,3795,"tess",1,1,88,3,88,94,"New York Times","Democrat" +2,3,3813,"tess",1,0,50,3,50,10,"New York Times","Republican" +2,3,3845,"tess",4,1,80,2,80,84,"New York Times","Democrat" +2,3,3890,"tess",1,0,90,2,10,30,"New York Times","Republican" +2,3,3910,"tess",1,0,93,2,7,13,"New York Times","Democrat" +2,3,3918,"tess",4,1,99,2,99,99,"New York Times","Democrat" +2,3,3920,"tess",3,0,56,2,44,10,"New York Times","Democrat" +2,3,3923,"tess",2,1,50,2,50,100,"New York Times","Democrat" +2,3,3946,"tess",3,0,10,2,90,80,"New York Times","Democrat" +2,3,3965,"tess",4,1,96,2,96,94,"New York Times","Democrat" +2,3,3981,"tess",2,1,51,3,51,51,"New York Times","Republican" +2,3,4001,"tess",1,1,90,2,90,89,"New York Times","Neither" +2,3,4007,"tess",2,0,80,3,20,60,"New York Times","Republican" +2,3,4027,"tess",3,1,39,2,39,20,"New York Times","Republican" +2,3,4039,"tess",4,0,11,2,89,1,"New York Times","Democrat" +2,3,4046,"tess",1,1,90,2,90,90,"New York Times","Democrat" +2,3,4049,"tess",1,1,98,2,98,75,"New York Times","Neither" +2,3,4076,"tess",2,0,26,3,74,64,"New York Times","Republican" +2,3,4079,"tess",4,0,45,2,55,0,"New York Times","Democrat" +2,3,4108,"tess",4,1,99,2,99,99,"New York Times","Democrat" +2,3,4153,"tess",2,1,97,2,97,94,"New York Times","Republican" +2,3,4163,"tess",1,0,62,2,38,42,"New York Times","Republican" +2,3,4175,"tess",4,1,65,2,65,70,"New York Times","Democrat" +2,3,4216,"tess",3,1,79,3,79,77,"New York Times","Democrat" +2,3,4217,"tess",2,1,99,2,99,64,"New York Times","Democrat" +2,3,4218,"tess",4,1,100,2,100,100,"New York Times","Democrat" +2,3,4222,"tess",2,0,81,2,19,19,"New York Times","Democrat" +2,3,4227,"tess",3,1,100,3,100,91,"New York Times","Democrat" +2,3,4237,"tess",2,0,99,3,1,99,"New York Times","Democrat" +2,3,4238,"tess",1,0,75,2,25,24,"New York Times","Democrat" +2,3,4241,"tess",3,0,40,3,60,60,"New York Times","Republican" +2,3,4253,"tess",4,1,89,2,89,85,"New York Times","Democrat" +2,3,4266,"tess",3,0,80,3,20,30,"New York Times","Democrat" +2,3,4269,"tess",2,1,70,2,70,95,"New York Times","Republican" +2,3,4285,"tess",1,1,99,2,99,99,"New York Times","Neither" +2,3,4290,"tess",2,1,94,3,94,70,"New York Times","Democrat" +2,3,4291,"tess",1,1,80,2,80,49,"New York Times","Democrat" +2,3,4302,"tess",2,0,17,2,83,16,"New York Times","Democrat" +2,3,4326,"tess",1,1,81,3,81,55,"New York Times","Democrat" +2,3,4331,"tess",2,1,70,2,70,69,"New York Times","Democrat" +2,3,4357,"tess",4,1,98,2,98,95,"New York Times","Democrat" +2,3,4361,"tess",1,1,95,2,95,92,"New York Times","Democrat" +2,3,4365,"tess",1,0,27,3,73,31,"New York Times","Republican" +2,3,4367,"tess",3,0,4,3,96,47,"New York Times","Republican" +2,3,4390,"tess",1,0,100,3,0,9,"New York Times","Democrat" +2,3,4391,"tess",1,0,81,3,19,10,"New York Times","Democrat" +2,3,4401,"tess",2,1,97,2,97,50,"New York Times","Democrat" +2,3,4416,"tess",1,0,60,2,40,51,"New York Times","Republican" +2,3,4420,"tess",2,0,34,3,66,64,"New York Times","Democrat" +2,3,4431,"tess",2,1,90,3,90,10,"New York Times","Democrat" +2,3,4441,"tess",4,0,100,2,0,28,"New York Times","Democrat" +2,3,4447,"tess",3,1,96,2,96,91,"New York Times","Republican" +2,3,4475,"tess",1,1,96,2,96,20,"New York Times","Democrat" +2,3,4480,"tess",3,1,90,3,90,86,"New York Times","Democrat" +2,3,4482,"tess",2,1,50,3,50,50,"New York Times","Neither" +2,3,4486,"tess",4,1,79,2,79,50,"New York Times","Republican" +2,3,4512,"tess",3,1,55,2,55,52,"New York Times","Democrat" +2,3,4516,"tess",4,1,96,2,96,70,"New York Times","Democrat" +2,3,4525,"tess",2,0,10,3,90,90,"New York Times","Republican" +2,3,4548,"tess",2,0,2,3,98,100,"New York Times","Republican" +2,3,4557,"tess",3,0,46,2,54,52,"New York Times","Republican" +2,3,4574,"tess",1,1,86,2,86,69,"New York Times","Democrat" +2,3,4581,"tess",3,1,94,3,94,50,"New York Times","Democrat" +2,3,4584,"tess",2,0,50,3,50,99,"New York Times","Democrat" +2,3,4618,"tess",1,0,25,2,75,23,"New York Times","Democrat" +2,3,4628,"tess",1,1,50,2,50,100,"New York Times","Democrat" +2,3,4633,"tess",1,1,60,3,60,80,"New York Times","Democrat" +2,3,4642,"tess",3,1,27,2,27,52,"New York Times","Democrat" +2,3,4656,"tess",3,1,76,3,76,95,"New York Times","Democrat" +2,3,4663,"tess",2,0,94,2,6,20,"New York Times","Democrat" +2,3,4674,"tess",2,0,100,3,0,17,"New York Times","Republican" +2,3,4690,"tess",1,0,1,3,99,100,"New York Times","Democrat" +2,3,4691,"tess",3,1,100,3,100,100,"New York Times","Democrat" +2,3,4700,"tess",2,1,60,3,60,90,"New York Times","Republican" +2,3,4713,"tess",3,1,50,2,50,10,"New York Times","Neither" +2,3,4722,"tess",3,0,31,2,69,59,"New York Times","Democrat" +2,3,4737,"tess",2,1,50,3,50,7,"New York Times","Democrat" +2,3,4740,"tess",1,1,80,3,80,70,"New York Times","Republican" +2,3,4742,"tess",4,1,90,2,90,50,"New York Times","Democrat" +2,3,4770,"tess",1,0,80,2,20,20,"New York Times","Democrat" +2,3,4785,"tess",4,0,100,2,0,15,"New York Times","Republican" +2,3,4789,"tess",3,0,37,3,63,100,"New York Times","Democrat" +2,3,4799,"tess",2,1,50,2,50,50,"New York Times","Republican" +2,3,4800,"tess",2,0,70,2,30,3,"New York Times","Republican" +2,3,4810,"tess",4,1,97,2,97,90,"New York Times","Democrat" +2,3,4820,"tess",1,0,40,2,60,50,"New York Times","Republican" +2,3,4826,"tess",1,0,90,2,10,10,"New York Times","Democrat" +2,3,4831,"tess",3,1,0,2,0,41,"New York Times","Neither" +2,3,4833,"tess",3,0,92,3,8,6,"New York Times","Democrat" +2,3,4841,"tess",4,1,90,2,90,60,"New York Times","Democrat" +2,3,4880,"tess",3,1,77,2,77,82,"New York Times","Republican" +2,3,4883,"tess",1,1,86,3,86,91,"New York Times","Democrat" +2,3,4887,"tess",2,0,77,2,23,14,"New York Times","Republican" +2,3,4905,"tess",1,1,99,3,99,99,"New York Times","Democrat" +2,3,4906,"tess",1,1,100,2,100,100,"New York Times","Republican" +2,3,4908,"tess",1,1,95,2,95,70,"New York Times","Democrat" +2,3,4914,"tess",1,0,80,2,20,74,"New York Times","Democrat" +2,3,4925,"tess",2,1,100,3,100,79,"New York Times","Democrat" +2,3,4932,"tess",1,1,80,2,80,20,"New York Times","Republican" +2,3,4964,"tess",1,0,10,2,90,10,"New York Times","Republican" +2,3,4969,"tess",4,1,NA,2,NA,52,"New York Times","Democrat" +2,3,5016,"tess",3,1,54,3,54,68,"New York Times","Democrat" +2,3,5018,"tess",3,0,92,3,8,34,"New York Times","Democrat" +2,3,5055,"tess",1,0,49,2,51,45,"New York Times","Republican" +2,3,5086,"tess",2,1,60,2,60,79,"New York Times","Neither" +2,3,5108,"tess",3,0,100,2,0,51,"New York Times","Republican" +2,3,5131,"tess",4,1,66,2,66,58,"New York Times","Democrat" +2,3,5162,"tess",3,0,60,3,40,50,"New York Times","Neither" +2,3,5165,"tess",1,0,98,2,2,100,"New York Times","Republican" +2,3,5186,"tess",2,0,5,2,95,52,"New York Times","Republican" +2,3,5195,"tess",1,1,98,3,98,98,"New York Times","Democrat" +2,3,5224,"tess",4,0,16,2,84,0,"New York Times","Republican" +2,3,5270,"tess",1,0,90,3,10,90,"New York Times","Republican" +2,3,5275,"tess",4,0,100,2,0,74,"New York Times","Democrat" +2,3,5279,"tess",1,0,40,3,60,100,"New York Times","Democrat" +2,3,5289,"tess",1,0,9,2,91,41,"New York Times","Democrat" +2,3,5299,"tess",1,1,58,2,58,85,"New York Times","Democrat" +2,3,5301,"tess",2,0,11,2,89,80,"New York Times","Democrat" +2,3,5316,"tess",2,0,85,2,15,61,"New York Times","Republican" +2,3,5327,"tess",3,0,9,2,91,13,"New York Times","Republican" +2,3,5363,"tess",1,0,98,2,2,97,"New York Times","Republican" +2,3,5385,"tess",2,1,84,2,84,91,"New York Times","Democrat" +2,3,5389,"tess",1,0,10,2,90,10,"New York Times","Republican" +2,3,5412,"tess",4,0,78,2,22,22,"New York Times","Republican" +2,3,5419,"tess",1,0,98,2,2,84,"New York Times","Republican" +2,3,5423,"tess",1,0,4,3,96,7,"New York Times","Democrat" +2,3,5428,"tess",2,0,98,2,2,67,"New York Times","Republican" +2,3,5470,"tess",1,0,70,3,30,0,"New York Times","Democrat" +2,3,5480,"tess",3,0,NA,2,NA,80,"New York Times","Republican" +2,3,5490,"tess",2,1,77,3,77,87,"New York Times","Republican" +2,3,5500,"tess",4,0,39,2,61,50,"New York Times","Democrat" +2,3,5504,"tess",2,1,50,2,50,50,"New York Times","Republican" +2,3,5509,"tess",4,1,95,2,95,51,"New York Times","Democrat" +2,3,5536,"tess",1,0,50,3,50,9,"New York Times","Democrat" +2,3,5540,"tess",3,1,87,2,87,65,"New York Times","Democrat" +2,3,5551,"tess",3,1,81,2,81,79,"New York Times","Republican" +2,3,5561,"tess",1,1,51,3,51,98,"New York Times","Republican" +2,3,5575,"tess",2,0,100,2,0,81,"New York Times","Democrat" +2,3,5579,"tess",3,0,94,2,6,63,"New York Times","Republican" +2,3,5586,"tess",2,1,100,2,100,99,"New York Times","Democrat" +2,3,5590,"tess",3,0,73,2,27,39,"New York Times","Democrat" +2,3,5611,"tess",1,0,26,3,74,27,"New York Times","Republican" +2,3,5612,"tess",3,0,43,2,57,32,"New York Times","Democrat" +2,3,5615,"tess",3,0,50,2,50,20,"New York Times","Democrat" +2,3,5617,"tess",2,1,99,2,99,91,"New York Times","Democrat" +2,3,5621,"tess",2,0,100,2,0,2,"New York Times","Democrat" +2,3,5626,"tess",3,0,97,3,3,2,"New York Times","Democrat" +2,3,5631,"tess",2,1,99,3,99,99,"New York Times","Republican" +2,3,5635,"tess",1,1,99,2,99,98,"New York Times","Republican" +2,3,5648,"tess",3,1,87,3,87,99,"New York Times","Democrat" +2,3,5657,"tess",3,0,87,2,13,53,"New York Times","Democrat" +2,3,5663,"tess",4,1,80,2,80,80,"New York Times","Democrat" +2,3,5669,"tess",3,1,90,3,90,83,"New York Times","Neither" +2,3,5676,"tess",3,1,88,3,88,91,"New York Times","Democrat" +2,3,5677,"tess",2,0,0,2,100,67,"New York Times","Republican" +2,3,5720,"tess",3,1,75,2,75,58,"New York Times","Republican" +2,3,5726,"tess",3,0,7,3,93,97,"New York Times","Democrat" +2,3,5730,"tess",3,1,79,3,79,54,"New York Times","Republican" +2,3,5732,"tess",2,1,90,2,90,50,"New York Times","Republican" +2,3,5734,"tess",1,1,98,2,98,90,"New York Times","Democrat" +2,3,5735,"tess",2,0,0,2,100,75,"New York Times","Republican" +2,3,5752,"tess",3,1,50,2,50,50,"New York Times","Democrat" +2,3,5757,"tess",3,1,69,2,69,47,"New York Times","Republican" +2,3,5760,"tess",1,1,38,3,38,38,"New York Times","Democrat" +2,3,5763,"tess",3,0,48,3,52,54,"New York Times","Democrat" +2,3,5783,"tess",2,0,86,2,14,61,"New York Times","Democrat" +2,3,5787,"tess",2,1,91,2,91,98,"New York Times","Republican" +2,3,5802,"tess",4,0,50,2,50,10,"New York Times","Republican" +2,3,5804,"tess",1,1,70,2,70,41,"New York Times","Republican" +2,3,5820,"tess",2,1,62,2,62,89,"New York Times","Democrat" +2,3,5833,"tess",3,1,93,2,93,89,"New York Times","Democrat" +2,3,5838,"tess",3,0,40,2,60,11,"New York Times","Republican" +2,3,5885,"tess",1,0,51,3,49,29,"New York Times","Republican" +2,3,5886,"tess",3,0,NA,3,NA,NA,"New York Times","Republican" +2,3,5918,"tess",3,0,100,2,0,40,"New York Times","Republican" +2,3,5920,"tess",1,1,75,2,75,79,"New York Times","Republican" +2,3,5958,"tess",2,1,90,3,90,90,"New York Times","Democrat" +2,3,5978,"tess",3,0,51,3,49,48,"New York Times","Democrat" +2,3,5994,"tess",1,0,96,2,4,20,"New York Times","Democrat" +2,3,5998,"tess",1,1,66,3,66,63,"New York Times","Democrat" +2,3,5999,"tess",1,1,80,2,80,76,"New York Times","Democrat" +2,3,6012,"tess",2,1,60,3,60,80,"New York Times","Republican" +2,3,6013,"tess",3,1,40,2,40,62,"New York Times","Democrat" +2,3,6045,"tess",1,0,18,2,82,62,"New York Times","Republican" +2,3,6046,"tess",1,0,64,2,36,10,"New York Times","Democrat" +2,3,6050,"tess",2,0,78,2,22,72,"New York Times","Republican" +2,3,6053,"tess",3,0,71,2,29,54,"New York Times","Republican" +2,3,6084,"tess",1,0,50,2,50,100,"New York Times","Democrat" +2,3,6088,"tess",3,0,91,2,9,0,"New York Times","Republican" +2,3,6090,"tess",2,0,100,3,0,0,"New York Times","Democrat" +2,3,6110,"tess",3,1,90,2,90,90,"New York Times","Republican" +2,3,6111,"tess",3,0,99,3,1,36,"New York Times","Democrat" +2,3,6116,"tess",2,1,20,3,20,21,"New York Times","Democrat" +2,3,6131,"tess",3,1,70,2,70,50,"New York Times","Neither" +2,3,6132,"tess",3,1,40,2,40,10,"New York Times","Neither" +2,3,6142,"tess",2,0,9,3,91,75,"New York Times","Neither" +2,3,6144,"tess",1,0,69,3,31,37,"New York Times","Democrat" +2,3,6146,"tess",1,1,88,2,88,61,"New York Times","Republican" +2,3,6151,"tess",4,1,79,2,79,80,"New York Times","Democrat" +2,3,6152,"tess",4,1,90,2,90,75,"New York Times","Democrat" +2,3,6155,"tess",4,1,100,2,100,100,"New York Times","Democrat" +2,3,6180,"tess",2,0,0,2,100,4,"New York Times","Republican" +2,3,6187,"tess",1,1,70,2,70,50,"New York Times","Democrat" +2,3,6193,"tess",3,1,94,3,94,92,"New York Times","Democrat" +2,3,6196,"tess",3,0,99,3,1,1,"New York Times","Democrat" +2,3,6204,"tess",1,0,96,3,4,30,"New York Times","Republican" +2,3,6220,"tess",3,1,80,2,80,30,"New York Times","Democrat" +2,3,6224,"tess",4,1,90,2,90,90,"New York Times","Democrat" +2,3,6237,"tess",3,0,90,2,10,40,"New York Times","Democrat" +2,3,6245,"tess",2,0,10,3,90,20,"New York Times","Democrat" +2,3,6254,"tess",3,0,45,2,55,54,"New York Times","Democrat" +2,3,6256,"tess",2,0,99,2,1,1,"New York Times","Democrat" +2,3,6259,"tess",1,0,100,3,0,14,"New York Times","Democrat" +2,3,6261,"tess",2,1,98,3,98,90,"New York Times","Democrat" +2,3,6263,"tess",2,0,80,3,20,50,"New York Times","Democrat" +2,3,6269,"tess",4,0,0,2,100,75,"New York Times","Democrat" +2,3,6270,"tess",3,0,72,2,28,41,"New York Times","Democrat" +2,3,6271,"tess",3,0,53,2,47,49,"New York Times","Democrat" +2,3,6280,"tess",3,0,70,2,30,5,"New York Times","Democrat" +2,3,6298,"tess",2,0,97,3,3,0,"New York Times","Neither" +2,3,6301,"tess",2,1,80,2,80,50,"New York Times","Democrat" +2,3,6312,"tess",3,1,90,2,90,100,"New York Times","Republican" +2,3,6326,"tess",2,1,95,3,95,90,"New York Times","Democrat" +2,3,6329,"tess",3,1,69,2,69,60,"New York Times","Democrat" +2,3,6333,"tess",4,1,70,2,70,60,"New York Times","Republican" +2,3,6367,"tess",3,0,10,2,90,20,"New York Times","Democrat" +2,3,6372,"tess",2,0,0,2,100,0,"New York Times","Democrat" +2,3,6376,"tess",3,1,90,3,90,80,"New York Times","Democrat" +2,3,6383,"tess",2,1,81,2,81,100,"New York Times","Democrat" +2,3,6388,"tess",1,1,49,2,49,31,"New York Times","Democrat" +2,3,6401,"tess",3,0,72,2,28,29,"New York Times","Democrat" +2,3,6402,"tess",4,1,100,2,100,99,"New York Times","Democrat" +2,3,6405,"tess",3,1,75,3,75,50,"New York Times","Republican" +2,3,6411,"tess",3,1,99,2,99,99,"New York Times","Democrat" +2,3,6430,"tess",1,0,0,2,100,80,"New York Times","Democrat" +2,3,6458,"tess",3,0,95,2,5,50,"New York Times","Republican" +2,3,6463,"tess",1,1,47,3,47,71,"New York Times","Democrat" +2,3,6466,"tess",1,0,10,3,90,90,"New York Times","Democrat" +2,3,6467,"tess",4,0,16,2,84,42,"New York Times","Democrat" +2,3,6469,"tess",1,0,57,2,43,69,"New York Times","Democrat" +2,3,6488,"tess",1,1,90,3,90,80,"New York Times","Republican" +2,3,6491,"tess",1,0,90,3,10,20,"New York Times","Neither" +2,3,6496,"tess",2,1,80,3,80,60,"New York Times","Democrat" +2,3,6501,"tess",3,1,51,3,51,50,"New York Times","Neither" +2,3,6506,"tess",3,1,48,2,48,78,"New York Times","Democrat" +2,3,6508,"tess",3,0,40,3,60,29,"New York Times","Republican" +2,3,6513,"tess",2,1,90,3,90,90,"New York Times","Republican" +2,3,6516,"tess",2,0,69,2,31,30,"New York Times","Republican" +2,3,6519,"tess",3,0,1,2,99,2,"New York Times","Republican" +2,3,6521,"tess",2,0,70,2,30,69,"New York Times","Democrat" +2,3,6522,"tess",2,0,30,2,70,50,"New York Times","Democrat" +2,3,6524,"tess",3,1,100,3,100,87,"New York Times","Democrat" +2,3,6538,"tess",3,0,10,3,90,93,"New York Times","Republican" +2,3,6540,"tess",3,0,50,3,50,0,"New York Times","Democrat" +2,3,6545,"tess",2,0,100,2,0,4,"New York Times","Democrat" +2,3,6547,"tess",2,0,80,3,20,30,"New York Times","Republican" +2,3,6548,"tess",1,0,5,3,95,56,"New York Times","Democrat" +2,3,6565,"tess",4,1,85,2,85,80,"New York Times","Democrat" +2,3,6568,"tess",3,1,50,2,50,60,"New York Times","Democrat" +2,3,6571,"tess",1,0,85,3,15,3,"New York Times","Republican" +2,3,6587,"tess",3,1,3,3,3,3,"New York Times","Republican" +2,3,6589,"tess",2,0,62,3,38,40,"New York Times","Democrat" +2,3,6590,"tess",1,0,50,2,50,70,"New York Times","Democrat" +2,3,6593,"tess",4,0,90,2,10,50,"New York Times","Democrat" +2,3,6596,"tess",1,0,100,2,0,0,"New York Times","Democrat" +2,3,6600,"tess",4,0,72,2,28,41,"New York Times","Republican" +2,3,6608,"tess",3,0,98,3,2,99,"New York Times","Republican" +2,3,6609,"tess",4,1,66,2,66,95,"New York Times","Democrat" +2,3,6610,"tess",3,1,85,3,85,80,"New York Times","Democrat" +2,3,6611,"tess",3,0,16,3,84,89,"New York Times","Republican" +2,3,6615,"tess",2,0,10,2,90,70,"New York Times","Democrat" +2,3,6617,"tess",4,0,99,2,1,13,"New York Times","Democrat" +2,3,6633,"tess",1,0,99,2,1,90,"New York Times","Republican" +2,3,6634,"tess",3,0,2,3,98,78,"New York Times","Republican" +2,3,6635,"tess",3,1,100,3,100,100,"New York Times","Republican" +2,3,6656,"tess",1,1,99,3,99,99,"New York Times","Democrat" +2,3,6661,"tess",3,1,60,3,60,78,"New York Times","Republican" +2,3,6665,"tess",1,1,90,2,90,50,"New York Times","Democrat" +2,3,6670,"tess",1,0,81,2,19,65,"New York Times","Democrat" +2,3,6675,"tess",3,0,99,2,1,89,"New York Times","Democrat" +2,3,6686,"tess",3,1,98,2,98,50,"New York Times","Republican" +2,3,6688,"tess",3,1,78,3,78,34,"New York Times","Republican" +2,3,6696,"tess",4,1,98,2,98,99,"New York Times","Democrat" +2,3,6698,"tess",2,1,99,2,99,99,"New York Times","Democrat" +2,3,6702,"tess",2,0,99,3,1,99,"New York Times","Democrat" +2,3,6710,"tess",2,0,5,2,95,71,"New York Times","Republican" +2,3,6718,"tess",1,1,70,3,70,80,"New York Times","Republican" +2,3,6720,"tess",1,0,81,3,19,11,"New York Times","Republican" +2,3,6725,"tess",2,1,100,2,100,100,"New York Times","Republican" +2,3,6732,"tess",2,0,73,2,27,15,"New York Times","Democrat" +2,3,6733,"tess",2,0,8,2,92,14,"New York Times","Republican" +2,3,6741,"tess",2,0,60,2,40,80,"New York Times","Democrat" +2,3,6760,"tess",4,0,15,2,85,60,"New York Times","Democrat" +2,3,6777,"tess",1,1,80,2,80,90,"New York Times","Democrat" +2,3,6788,"tess",3,0,93,3,7,5,"New York Times","Democrat" +2,3,6804,"tess",1,1,50,3,50,70,"New York Times","Republican" +2,3,6814,"tess",4,1,80,2,80,80,"New York Times","Democrat" +2,3,6833,"tess",4,1,100,2,100,100,"New York Times","Neither" +2,3,6838,"tess",1,1,95,3,95,99,"New York Times","Democrat" +2,3,6868,"tess",1,0,44,3,56,26,"New York Times","Republican" +2,3,6897,"tess",4,0,70,2,30,30,"New York Times","Democrat" +2,3,6908,"tess",2,0,50,3,50,76,"New York Times","Democrat" +2,3,6910,"tess",2,0,66,3,34,31,"New York Times","Democrat" +2,3,6912,"tess",3,1,74,2,74,50,"New York Times","Democrat" +2,3,6913,"tess",3,1,83,3,83,44,"New York Times","Democrat" +2,3,6920,"tess",2,1,42,3,42,55,"New York Times","Republican" +2,3,6932,"tess",1,0,31,3,69,37,"New York Times","Democrat" +2,3,6935,"tess",4,1,92,2,92,87,"New York Times","Democrat" +2,3,6938,"tess",4,0,16,2,84,18,"New York Times","Democrat" +2,3,6951,"tess",1,0,25,2,75,50,"New York Times","Democrat" +2,3,6956,"tess",2,1,95,3,95,100,"New York Times","Democrat" +2,3,6963,"tess",1,0,51,3,49,37,"New York Times","Democrat" +2,3,6984,"tess",2,1,20,2,20,30,"New York Times","Republican" +2,3,6997,"tess",4,0,77,2,23,30,"New York Times","Republican" +2,3,7003,"tess",3,1,29,3,29,19,"New York Times","Republican" +2,3,7011,"tess",3,1,90,2,90,99,"New York Times","Democrat" +2,3,7036,"tess",3,1,90,2,90,60,"New York Times","Republican" +2,3,7046,"tess",4,0,79,2,21,20,"New York Times","Democrat" +2,3,7048,"tess",1,1,97,2,97,2,"New York Times","Democrat" +2,3,7049,"tess",1,0,32,2,68,31,"New York Times","Democrat" +2,3,7054,"tess",2,0,9,3,91,4,"New York Times","Democrat" +2,3,7055,"tess",3,1,34,2,34,0,"New York Times","Republican" +2,3,7066,"tess",4,0,48,2,52,66,"New York Times","Democrat" +2,3,7078,"tess",1,1,11,3,11,11,"New York Times","Republican" +2,3,7083,"tess",2,0,97,3,3,94,"New York Times","Democrat" +2,3,7087,"tess",3,1,1,3,1,0,"New York Times","Democrat" +2,3,7088,"tess",2,0,70,2,30,22,"New York Times","Democrat" +2,3,7104,"tess",3,0,92,3,8,6,"New York Times","Republican" +2,3,7106,"tess",2,1,100,2,100,100,"New York Times","Republican" +2,3,7125,"tess",3,1,85,2,85,98,"New York Times","Republican" +2,3,7127,"tess",3,0,0,3,100,100,"New York Times","Democrat" +2,3,7133,"tess",4,1,92,2,92,67,"New York Times","Democrat" +2,3,7148,"tess",1,1,98,2,98,91,"New York Times","Democrat" +2,3,7158,"tess",3,1,90,3,90,50,"New York Times","Democrat" +2,3,7161,"tess",3,0,64,3,36,46,"New York Times","Democrat" +2,3,7174,"tess",1,0,94,2,6,17,"New York Times","Democrat" +2,3,7182,"tess",1,0,1,2,99,30,"New York Times","Democrat" +2,3,7199,"tess",1,1,99,2,99,99,"New York Times","Republican" +2,3,7201,"tess",2,1,1,2,1,71,"New York Times","Democrat" +2,3,7210,"tess",1,1,99,3,99,93,"New York Times","Neither" +2,3,7216,"tess",1,1,92,3,92,100,"New York Times","Democrat" +2,3,7222,"tess",3,1,11,2,11,10,"New York Times","Democrat" +2,3,7226,"tess",3,0,54,2,46,43,"New York Times","Democrat" +2,3,7231,"tess",2,1,100,2,100,80,"New York Times","Democrat" +2,3,7239,"tess",2,0,94,2,6,50,"New York Times","Republican" +2,3,7240,"tess",2,0,4,3,96,90,"New York Times","Democrat" +2,3,7241,"tess",4,1,100,2,100,99,"New York Times","Neither" +2,3,7248,"tess",4,0,100,2,0,0,"New York Times","Democrat" +2,3,7252,"tess",3,1,100,2,100,100,"New York Times","Republican" +2,3,7266,"tess",2,0,80,2,20,4,"New York Times","Republican" +2,3,7273,"tess",2,1,73,3,73,76,"New York Times","Democrat" +2,3,7276,"tess",3,1,87,2,87,36,"New York Times","Republican" +2,3,7289,"tess",2,1,80,2,80,80,"New York Times","Democrat" +2,3,7303,"tess",1,0,3,2,97,80,"New York Times","Republican" +2,3,7307,"tess",3,1,100,3,100,100,"New York Times","Democrat" +2,3,7325,"tess",2,0,10,2,90,10,"New York Times","Republican" +2,3,7330,"tess",2,1,100,3,100,89,"New York Times","Democrat" +2,3,7338,"tess",2,1,97,3,97,98,"New York Times","Democrat" +2,3,7368,"tess",2,1,99,2,99,90,"New York Times","Democrat" +2,3,7373,"tess",2,1,46,3,46,81,"New York Times","Democrat" +2,3,7381,"tess",2,0,96,3,4,2,"New York Times","Republican" +2,3,7388,"tess",1,1,80,2,80,50,"New York Times","Democrat" +2,3,7395,"tess",3,1,11,2,11,50,"New York Times","Republican" +2,3,7398,"tess",2,0,98,2,2,100,"New York Times","Democrat" +2,3,7404,"tess",1,0,3,3,97,97,"New York Times","Democrat" +2,3,7418,"tess",2,1,78,3,78,84,"New York Times","Democrat" +2,3,7425,"tess",2,1,74,3,74,16,"New York Times","Democrat" +2,3,7432,"tess",1,1,80,2,80,80,"New York Times","Democrat" +2,3,7437,"tess",1,0,90,3,10,19,"New York Times","Democrat" +2,3,7440,"tess",3,0,49,3,51,70,"New York Times","Republican" +2,3,7450,"tess",2,1,40,3,40,64,"New York Times","Democrat" +2,3,7452,"tess",4,0,59,2,41,50,"New York Times","Democrat" +2,3,7466,"tess",1,1,80,2,80,30,"New York Times","Republican" +2,3,7470,"tess",1,0,21,3,79,46,"New York Times","Republican" +2,3,7525,"tess",3,0,83,3,17,32,"New York Times","Democrat" +2,3,7528,"tess",4,1,74,2,74,50,"New York Times","Republican" +2,3,7539,"tess",1,1,86,2,86,75,"New York Times","Republican" +2,3,7546,"tess",2,0,99,2,1,40,"New York Times","Republican" +2,3,7556,"tess",2,0,50,2,50,9,"New York Times","Democrat" +2,3,7564,"tess",1,1,49,3,49,50,"New York Times","Democrat" +2,3,7590,"tess",1,1,80,3,80,77,"New York Times","Republican" +2,3,7593,"tess",2,1,73,3,73,71,"New York Times","Republican" +2,3,7594,"tess",2,1,80,2,80,50,"New York Times","Democrat" +2,3,7597,"tess",3,0,7,3,93,81,"New York Times","Democrat" +2,3,7603,"tess",3,1,18,2,18,99,"New York Times","Democrat" +2,3,7615,"tess",4,1,100,2,100,100,"New York Times","Republican" +2,3,7623,"tess",1,1,74,2,74,50,"New York Times","Republican" +2,3,7630,"tess",2,0,84,2,16,5,"New York Times","Democrat" +2,3,7634,"tess",3,0,30,2,70,60,"New York Times","Republican" +2,3,7640,"tess",3,1,69,3,69,49,"New York Times","Republican" +2,3,7641,"tess",3,0,80,2,20,10,"New York Times","Democrat" +2,3,7656,"tess",3,1,20,2,20,10,"New York Times","Republican" +2,3,7659,"tess",1,0,50,3,50,5,"New York Times","Republican" +2,3,7662,"tess",2,0,71,2,29,77,"New York Times","Democrat" +2,3,7688,"tess",3,1,35,3,35,88,"New York Times","Democrat" +2,3,7694,"tess",1,0,90,2,10,10,"New York Times","Republican" +2,3,7696,"tess",1,1,60,3,60,60,"New York Times","Democrat" +2,3,7699,"tess",2,1,69,2,69,77,"New York Times","Democrat" +2,3,7717,"tess",4,0,9,2,91,91,"New York Times","Democrat" +2,3,7722,"tess",2,0,50,3,50,90,"New York Times","Republican" +2,3,7747,"tess",1,1,95,2,95,100,"New York Times","Democrat" +2,3,7754,"tess",4,0,50,2,50,60,"New York Times","Neither" +2,3,7778,"tess",1,1,95,2,95,100,"New York Times","Democrat" +2,3,7789,"tess",1,0,91,3,9,18,"New York Times","Republican" +2,3,7799,"tess",2,0,75,2,25,26,"New York Times","Democrat" +2,3,7819,"tess",1,1,85,3,85,48,"New York Times","Democrat" +2,3,7822,"tess",4,0,20,2,80,70,"New York Times","Democrat" +2,3,7826,"tess",1,0,30,3,70,31,"New York Times","Republican" +2,3,7854,"tess",3,1,64,2,64,62,"New York Times","Democrat" +2,3,7856,"tess",3,0,80,2,20,90,"New York Times","Republican" +2,3,7864,"tess",1,0,37,2,63,34,"New York Times","Republican" +2,3,7880,"tess",3,1,100,2,100,79,"New York Times","Democrat" +2,3,7891,"tess",3,0,33,3,67,49,"New York Times","Republican" +2,3,7918,"tess",4,0,95,2,5,0,"New York Times","Democrat" +2,3,7930,"tess",3,1,17,2,17,2,"New York Times","Republican" +2,3,7946,"tess",2,0,50,2,50,50,"New York Times","Democrat" +2,3,7957,"tess",3,1,90,3,90,78,"New York Times","Democrat" +2,3,7959,"tess",2,1,44,3,44,15,"New York Times","Democrat" +2,3,7960,"tess",1,1,100,3,100,89,"New York Times","Democrat" +2,3,7965,"tess",3,1,50,2,50,50,"New York Times","Democrat" +2,3,7982,"tess",2,0,75,3,25,65,"New York Times","Democrat" +2,3,7983,"tess",4,0,63,2,37,46,"New York Times","Democrat" +2,3,7988,"tess",1,1,89,2,89,80,"New York Times","Democrat" +2,3,7991,"tess",2,0,100,3,0,31,"New York Times","Republican" +2,3,7998,"tess",1,0,100,3,0,10,"New York Times","Democrat" +2,3,8000,"tess",2,1,90,2,90,50,"New York Times","Democrat" +2,3,8001,"tess",1,0,74,2,26,21,"New York Times","Republican" +2,3,8011,"tess",1,1,85,2,85,84,"New York Times","Republican" +2,3,8023,"tess",2,1,7,2,7,100,"New York Times","Democrat" +2,3,8042,"tess",2,0,85,3,15,15,"New York Times","Republican" +2,3,8063,"tess",2,0,81,2,19,30,"New York Times","Republican" +2,3,8081,"tess",1,1,100,3,100,93,"New York Times","Democrat" +2,3,8095,"tess",2,1,99,3,99,99,"New York Times","Democrat" +2,3,8096,"tess",3,0,98,2,2,1,"New York Times","Republican" +2,3,8101,"tess",2,1,50,2,50,77,"New York Times","Republican" +2,3,8104,"tess",1,1,93,2,93,92,"New York Times","Republican" +2,3,8116,"tess",2,0,19,2,81,30,"New York Times","Democrat" +2,3,8134,"tess",4,1,0,2,0,49,"New York Times","Democrat" +2,3,8141,"tess",1,1,81,3,81,11,"New York Times","Democrat" +2,3,8142,"tess",4,1,98,2,98,99,"New York Times","Democrat" +2,3,8146,"tess",3,1,99,2,99,1,"New York Times","Republican" +2,3,8160,"tess",3,1,90,2,90,90,"New York Times","Democrat" +2,3,8170,"tess",3,1,93,3,93,85,"New York Times","Democrat" +2,3,8181,"tess",1,0,99,3,1,0,"New York Times","Republican" +2,3,8191,"tess",4,1,98,2,98,80,"New York Times","Democrat" +2,3,8196,"tess",2,1,89,3,89,90,"New York Times","Democrat" +2,3,8199,"tess",2,0,90,3,10,10,"New York Times","Democrat" +2,3,8203,"tess",3,1,87,3,87,59,"New York Times","Republican" +2,3,8207,"tess",2,1,97,2,97,63,"New York Times","Democrat" +2,3,8218,"tess",4,0,85,2,15,25,"New York Times","Democrat" +2,3,8228,"tess",3,0,89,2,11,60,"New York Times","Democrat" +2,3,8249,"tess",1,0,0,3,100,100,"New York Times","Democrat" +2,3,8250,"tess",1,1,99,3,99,99,"New York Times","Democrat" +2,3,8253,"tess",2,1,84,3,84,100,"New York Times","Democrat" +2,3,8260,"tess",3,1,85,3,85,33,"New York Times","Neither" +2,3,8267,"tess",1,1,99,3,99,94,"New York Times","Republican" +2,3,8272,"tess",1,1,60,2,60,10,"New York Times","Democrat" +2,3,8285,"tess",1,1,89,2,89,11,"New York Times","Democrat" +2,3,8287,"tess",2,0,5,3,95,95,"New York Times","Democrat" +2,3,8331,"tess",3,0,10,3,90,70,"New York Times","Democrat" +2,3,8335,"tess",1,1,25,3,25,93,"New York Times","Republican" +2,3,8337,"tess",2,1,100,3,100,100,"New York Times","Republican" +2,3,8345,"tess",1,0,75,3,25,26,"New York Times","Democrat" +2,3,8347,"tess",3,0,43,3,57,61,"New York Times","Republican" +2,3,8360,"tess",3,0,64,2,36,0,"New York Times","Democrat" +2,3,8371,"tess",2,1,1,2,1,0,"New York Times","Republican" +2,3,8386,"tess",3,0,87,3,13,34,"New York Times","Republican" +2,3,8397,"tess",3,1,50,3,50,50,"New York Times","Republican" +2,3,8432,"tess",4,1,99,2,99,95,"New York Times","Democrat" +2,3,8449,"tess",3,1,56,3,56,77,"New York Times","Democrat" +2,3,8468,"tess",2,1,97,3,97,95,"New York Times","Democrat" +2,3,8476,"tess",4,0,80,2,20,20,"New York Times","Democrat" +2,3,8489,"tess",3,1,10,2,10,3,"New York Times","Democrat" +2,3,8544,"tess",3,0,NA,2,NA,39,"New York Times","Democrat" +2,3,8550,"tess",2,0,0,3,100,94,"New York Times","Democrat" +2,3,8558,"tess",1,0,39,2,61,61,"New York Times","Republican" +2,3,8564,"tess",3,1,100,3,100,100,"New York Times","Republican" +2,3,8577,"tess",3,0,95,2,5,61,"New York Times","Democrat" +2,3,8579,"tess",1,0,40,2,60,25,"New York Times","Democrat" +2,3,8583,"tess",3,0,7,3,93,95,"New York Times","Democrat" +2,3,8600,"tess",4,1,90,2,90,90,"New York Times","Democrat" +2,3,8607,"tess",1,1,72,2,72,78,"New York Times","Republican" +2,3,8618,"tess",2,0,50,2,50,3,"New York Times","Republican" +2,3,8638,"tess",1,1,90,2,90,10,"New York Times","Neither" +2,3,8640,"tess",2,1,10,3,10,20,"New York Times","Democrat" +2,3,8651,"tess",4,0,84,2,16,14,"New York Times","Republican" +2,3,8659,"tess",1,0,7,2,93,58,"New York Times","Democrat" +2,3,8669,"tess",1,0,58,2,42,94,"New York Times","Democrat" +2,3,8685,"tess",1,0,87,3,13,37,"New York Times","Democrat" +2,3,8706,"tess",1,0,100,3,0,10,"New York Times","Republican" +2,3,8710,"tess",3,0,100,2,0,50,"New York Times","Democrat" +2,3,8719,"tess",3,1,40,3,40,40,"New York Times","Republican" +2,3,8724,"tess",1,1,91,3,91,84,"New York Times","Democrat" +2,3,8727,"tess",3,1,72,2,72,72,"New York Times","Democrat" +2,3,8731,"tess",2,1,72,2,72,72,"New York Times","Democrat" +2,3,8739,"tess",1,1,81,2,81,86,"New York Times","Republican" +2,3,8746,"tess",1,1,95,2,95,95,"New York Times","Republican" +2,3,8755,"tess",3,0,40,2,60,25,"New York Times","Democrat" +2,3,8763,"tess",3,1,90,2,90,50,"New York Times","Republican" +2,3,8765,"tess",1,1,NA,2,NA,10,"New York Times","Democrat" +2,3,8782,"tess",1,0,56,3,44,50,"New York Times","Republican" +2,3,8797,"tess",3,0,51,2,49,89,"New York Times","Republican" +2,3,8810,"tess",2,1,90,2,90,70,"New York Times","Democrat" +2,3,8821,"tess",4,0,71,2,29,50,"New York Times","Republican" +2,3,8836,"tess",2,0,96,2,4,29,"New York Times","Democrat" +2,3,8848,"tess",3,1,1,3,1,1,"New York Times","Democrat" +2,3,8853,"tess",2,0,95,3,5,7,"New York Times","Democrat" +2,3,8877,"tess",1,1,95,2,95,95,"New York Times","Republican" +2,3,8900,"tess",1,0,60,3,40,4,"New York Times","Republican" +2,3,8925,"tess",1,0,51,3,49,35,"New York Times","Democrat" +2,3,8933,"tess",3,1,93,3,93,80,"New York Times","Republican" +2,3,8934,"tess",1,0,47,2,53,1,"New York Times","Democrat" +2,3,8970,"tess",1,1,100,3,100,100,"New York Times","Republican" +2,3,8973,"tess",1,0,99,3,1,1,"New York Times","Republican" +2,3,8981,"tess",1,0,50,2,50,30,"New York Times","Democrat" +2,3,8990,"tess",3,1,100,2,100,100,"New York Times","Republican" +2,3,9025,"tess",1,1,10,3,10,2,"New York Times","Republican" +2,3,9038,"tess",3,1,81,2,81,80,"New York Times","Neither" +2,3,9050,"tess",1,0,98,2,2,14,"New York Times","Republican" +2,3,9066,"tess",1,0,50,2,50,50,"New York Times","Republican" +2,3,9068,"tess",1,1,96,2,96,96,"New York Times","Democrat" +2,3,9083,"tess",2,0,20,2,80,6,"New York Times","Neither" +2,3,9120,"tess",2,0,25,3,75,50,"New York Times","Democrat" +2,3,9149,"tess",3,0,51,2,49,50,"New York Times","Democrat" +2,3,9152,"tess",2,0,61,2,39,68,"New York Times","Democrat" +2,3,9153,"tess",1,1,98,3,98,96,"New York Times","Democrat" +2,3,9169,"tess",1,1,95,2,95,94,"New York Times","Republican" +2,3,9184,"tess",3,1,100,3,100,100,"New York Times","Democrat" +2,3,9189,"tess",2,1,99,3,99,92,"New York Times","Republican" +2,3,9199,"tess",1,0,70,3,30,32,"New York Times","Republican" +2,3,9210,"tess",3,1,1,2,1,99,"New York Times","Democrat" +2,3,9211,"tess",4,0,85,2,15,81,"New York Times","Republican" +2,3,9236,"tess",1,0,96,3,4,0,"New York Times","Republican" +2,3,9239,"tess",3,0,97,3,3,5,"New York Times","Democrat" +2,3,9247,"tess",4,0,97,2,3,6,"New York Times","Democrat" +2,3,9281,"tess",1,1,80,2,80,50,"New York Times","Republican" +2,3,9284,"tess",2,0,71,3,29,29,"New York Times","Republican" +2,3,9297,"tess",1,0,NA,2,NA,70,"New York Times","Republican" +2,3,9298,"tess",4,1,93,2,93,89,"New York Times","Democrat" +2,3,9301,"tess",3,0,87,2,13,20,"New York Times","Democrat" +2,3,9302,"tess",2,1,70,2,70,79,"New York Times","Democrat" +2,3,9314,"tess",2,0,80,2,20,58,"New York Times","Republican" +2,3,9332,"tess",1,0,81,3,19,30,"New York Times","Democrat" +2,3,9346,"tess",4,0,50,2,50,10,"New York Times","Democrat" +2,3,9360,"tess",2,0,63,3,37,5,"New York Times","Republican" +2,3,9366,"tess",2,1,81,3,81,79,"New York Times","Republican" +2,3,9395,"tess",2,0,31,2,69,42,"New York Times","Democrat" +2,3,9398,"tess",2,1,29,2,29,32,"New York Times","Republican" +2,3,9412,"tess",2,0,99,3,1,99,"New York Times","Republican" +2,3,9422,"tess",1,0,60,3,40,20,"New York Times","Democrat" +2,3,9424,"tess",1,1,69,3,69,19,"New York Times","Democrat" +2,3,9431,"tess",1,1,99,2,99,75,"New York Times","Democrat" +2,3,9440,"tess",2,1,90,3,90,92,"New York Times","Republican" +2,3,9458,"tess",3,1,99,3,99,57,"New York Times","Republican" +2,3,9465,"tess",1,0,99,3,1,9,"New York Times","Republican" +2,3,9500,"tess",2,0,60,3,40,35,"New York Times","Republican" +2,3,9510,"tess",3,1,100,3,100,65,"New York Times","Democrat" +2,3,9570,"tess",1,1,87,3,87,81,"New York Times","Democrat" +2,3,9572,"tess",2,1,90,3,90,80,"New York Times","Republican" +2,3,9578,"tess",1,0,53,2,47,50,"New York Times","Republican" +2,3,9590,"tess",2,1,98,3,98,95,"New York Times","Republican" +2,3,9603,"tess",2,1,50,2,50,51,"New York Times","Democrat" +2,3,9608,"tess",3,0,99,2,1,1,"New York Times","Democrat" +2,3,9626,"tess",2,0,50,2,50,15,"New York Times","Democrat" +2,3,9627,"tess",3,0,100,3,0,0,"New York Times","Democrat" +2,3,9631,"tess",4,0,10,2,90,10,"New York Times","Democrat" +2,3,9635,"tess",3,1,80,2,80,3,"New York Times","Democrat" +2,3,9645,"tess",3,1,55,2,55,37,"New York Times","Democrat" +2,3,9664,"tess",1,0,73,2,27,37,"New York Times","Republican" +2,3,9671,"tess",1,0,70,2,30,15,"New York Times","Democrat" +2,3,9685,"tess",1,1,99,3,99,11,"New York Times","Republican" +2,3,9689,"tess",1,1,70,2,70,50,"New York Times","Democrat" +2,3,9701,"tess",3,0,57,3,43,0,"New York Times","Democrat" +2,3,9711,"tess",2,0,90,3,10,10,"New York Times","Neither" +2,3,9717,"tess",3,1,37,3,37,67,"New York Times","Neither" +2,4,51,"tess",1,0,50,2,50,50,"USA Today","Neither" +2,4,53,"tess",3,1,97,2,97,97,"USA Today","Democrat" +2,4,62,"tess",1,0,NA,3,NA,70,"USA Today","Democrat" +2,4,64,"tess",2,0,68,3,32,50,"USA Today","Democrat" +2,4,68,"tess",3,1,55,2,55,55,"USA Today","Democrat" +2,4,69,"tess",2,0,44,3,56,50,"USA Today","Neither" +2,4,80,"tess",1,1,100,3,100,60,"USA Today","Republican" +2,4,96,"tess",1,0,86,3,14,12,"USA Today","Democrat" +2,4,182,"tess",1,0,80,3,20,30,"USA Today","Democrat" +2,4,188,"tess",3,0,81,3,19,43,"USA Today","Democrat" +2,4,196,"tess",3,0,68,3,32,47,"USA Today","Democrat" +2,4,206,"tess",1,1,99,3,99,50,"USA Today","Republican" +2,4,216,"tess",1,0,0,3,100,0,"USA Today","Democrat" +2,4,234,"tess",2,1,99,3,99,0,"USA Today","Democrat" +2,4,247,"tess",2,0,0,3,100,82,"USA Today","Republican" +2,4,315,"tess",3,0,36,2,64,19,"USA Today","Democrat" +2,4,347,"tess",4,1,11,2,11,50,"USA Today","Democrat" +2,4,363,"tess",2,0,98,3,2,2,"USA Today","Republican" +2,4,366,"tess",1,1,50,3,50,51,"USA Today","Democrat" +2,4,405,"tess",2,1,2,2,2,3,"USA Today","Republican" +2,4,421,"tess",3,0,11,3,89,93,"USA Today","Democrat" +2,4,431,"tess",1,0,76,3,24,43,"USA Today","Democrat" +2,4,440,"tess",1,1,50,2,50,99,"USA Today","Democrat" +2,4,443,"tess",1,1,98,2,98,93,"USA Today","Republican" +2,4,478,"tess",1,1,100,2,100,100,"USA Today","Democrat" +2,4,482,"tess",1,0,71,2,29,1,"USA Today","Democrat" +2,4,493,"tess",4,1,49,2,49,10,"USA Today","Republican" +2,4,503,"tess",1,1,95,3,95,100,"USA Today","Republican" +2,4,509,"tess",2,0,50,3,50,50,"USA Today","Democrat" +2,4,512,"tess",3,1,40,3,40,80,"USA Today","Democrat" +2,4,516,"tess",2,0,9,2,91,95,"USA Today","Democrat" +2,4,530,"tess",3,1,67,2,67,66,"USA Today","Republican" +2,4,541,"tess",1,0,80,2,20,9,"USA Today","Democrat" +2,4,550,"tess",2,1,84,2,84,46,"USA Today","Republican" +2,4,567,"tess",4,0,99,2,1,99,"USA Today","Democrat" +2,4,584,"tess",4,1,57,2,57,45,"USA Today","Democrat" +2,4,591,"tess",3,0,52,2,48,58,"USA Today","Democrat" +2,4,596,"tess",3,1,100,3,100,98,"USA Today","Democrat" +2,4,600,"tess",3,1,100,3,100,100,"USA Today","Republican" +2,4,608,"tess",1,0,79,3,21,13,"USA Today","Democrat" +2,4,617,"tess",3,0,7,2,93,0,"USA Today","Republican" +2,4,622,"tess",1,1,22,3,22,26,"USA Today","Democrat" +2,4,633,"tess",2,0,50,3,50,41,"USA Today","Democrat" +2,4,680,"tess",1,1,53,2,53,18,"USA Today","Republican" +2,4,727,"tess",2,0,2,2,98,2,"USA Today","Republican" +2,4,740,"tess",1,0,50,2,50,58,"USA Today","Democrat" +2,4,752,"tess",2,1,81,2,81,72,"USA Today","Democrat" +2,4,753,"tess",1,0,95,2,5,5,"USA Today","Republican" +2,4,770,"tess",3,1,100,2,100,100,"USA Today","Democrat" +2,4,771,"tess",3,1,99,3,99,100,"USA Today","Democrat" +2,4,772,"tess",1,1,95,2,95,92,"USA Today","Republican" +2,4,794,"tess",1,1,80,3,80,85,"USA Today","Democrat" +2,4,803,"tess",2,1,61,2,61,60,"USA Today","Democrat" +2,4,804,"tess",2,0,82,3,18,41,"USA Today","Democrat" +2,4,829,"tess",4,1,90,2,90,71,"USA Today","Neither" +2,4,845,"tess",2,1,99,3,99,99,"USA Today","Republican" +2,4,847,"tess",4,0,61,2,39,38,"USA Today","Democrat" +2,4,851,"tess",2,1,40,2,40,19,"USA Today","Republican" +2,4,891,"tess",2,0,7,3,93,72,"USA Today","Republican" +2,4,903,"tess",3,1,63,3,63,53,"USA Today","Republican" +2,4,919,"tess",3,0,48,3,52,100,"USA Today","Democrat" +2,4,922,"tess",3,1,100,2,100,79,"USA Today","Republican" +2,4,928,"tess",4,1,90,2,90,70,"USA Today","Republican" +2,4,961,"tess",1,0,84,2,16,19,"USA Today","Democrat" +2,4,968,"tess",3,0,0,3,100,100,"USA Today","Democrat" +2,4,1018,"tess",1,1,90,3,90,30,"USA Today","Republican" +2,4,1055,"tess",2,0,21,3,79,49,"USA Today","Republican" +2,4,1064,"tess",3,0,NA,2,NA,50,"USA Today","Democrat" +2,4,1066,"tess",3,0,50,2,50,58,"USA Today","Democrat" +2,4,1067,"tess",1,0,100,2,0,0,"USA Today","Republican" +2,4,1068,"tess",1,0,60,2,40,40,"USA Today","Republican" +2,4,1081,"tess",2,1,52,3,52,90,"USA Today","Democrat" +2,4,1083,"tess",1,0,60,2,40,90,"USA Today","Democrat" +2,4,1087,"tess",1,1,41,3,41,10,"USA Today","Democrat" +2,4,1096,"tess",1,0,100,3,0,100,"USA Today","Democrat" +2,4,1097,"tess",3,0,51,3,49,90,"USA Today","Republican" +2,4,1100,"tess",2,1,25,2,25,3,"USA Today","Republican" +2,4,1104,"tess",4,1,92,2,92,93,"USA Today","Democrat" +2,4,1110,"tess",3,0,85,3,15,10,"USA Today","Neither" +2,4,1114,"tess",3,1,77,3,77,63,"USA Today","Neither" +2,4,1122,"tess",2,1,98,2,98,99,"USA Today","Republican" +2,4,1141,"tess",2,0,79,2,21,10,"USA Today","Democrat" +2,4,1150,"tess",1,1,32,3,32,0,"USA Today","Democrat" +2,4,1178,"tess",4,1,42,2,42,14,"USA Today","Republican" +2,4,1182,"tess",2,1,67,3,67,31,"USA Today","Republican" +2,4,1208,"tess",1,1,86,3,86,47,"USA Today","Republican" +2,4,1220,"tess",2,0,18,2,82,12,"USA Today","Democrat" +2,4,1256,"tess",3,1,91,2,91,86,"USA Today","Democrat" +2,4,1259,"tess",2,0,52,2,48,58,"USA Today","Democrat" +2,4,1260,"tess",3,0,28,3,72,18,"USA Today","Democrat" +2,4,1284,"tess",2,0,6,2,94,50,"USA Today","Democrat" +2,4,1306,"tess",1,0,0,3,100,100,"USA Today","Democrat" +2,4,1307,"tess",1,1,100,3,100,98,"USA Today","Republican" +2,4,1314,"tess",2,0,70,3,30,40,"USA Today","Democrat" +2,4,1336,"tess",3,0,59,3,41,40,"USA Today","Republican" +2,4,1366,"tess",2,0,90,2,10,53,"USA Today","Democrat" +2,4,1376,"tess",1,0,100,2,0,50,"USA Today","Democrat" +2,4,1418,"tess",2,0,84,2,16,8,"USA Today","Republican" +2,4,1426,"tess",2,1,33,2,33,25,"USA Today","Democrat" +2,4,1485,"tess",1,0,55,2,45,2,"USA Today","Democrat" +2,4,1486,"tess",1,1,58,2,58,76,"USA Today","Democrat" +2,4,1506,"tess",3,0,50,3,50,27,"USA Today","Democrat" +2,4,1507,"tess",2,0,90,2,10,10,"USA Today","Democrat" +2,4,1511,"tess",3,1,5,2,5,4,"USA Today","Republican" +2,4,1532,"tess",1,1,70,3,70,40,"USA Today","Republican" +2,4,1541,"tess",2,0,20,3,80,71,"USA Today","Republican" +2,4,1551,"tess",3,1,42,3,42,63,"USA Today","Republican" +2,4,1553,"tess",3,0,40,3,60,27,"USA Today","Democrat" +2,4,1605,"tess",3,1,83,2,83,75,"USA Today","Republican" +2,4,1618,"tess",1,1,41,3,41,95,"USA Today","Republican" +2,4,1634,"tess",1,0,50,3,50,23,"USA Today","Democrat" +2,4,1654,"tess",1,1,98,2,98,82,"USA Today","Democrat" +2,4,1657,"tess",2,1,90,2,90,10,"USA Today","Republican" +2,4,1673,"tess",1,1,90,2,90,50,"USA Today","Democrat" +2,4,1706,"tess",2,0,61,2,39,58,"USA Today","Democrat" +2,4,1728,"tess",3,1,40,3,40,50,"USA Today","Democrat" +2,4,1775,"tess",3,1,57,2,57,85,"USA Today","Democrat" +2,4,1799,"tess",3,0,71,2,29,57,"USA Today","Republican" +2,4,1815,"tess",3,1,100,3,100,95,"USA Today","Republican" +2,4,1834,"tess",1,0,100,3,0,21,"USA Today","Neither" +2,4,1850,"tess",3,0,19,3,81,30,"USA Today","Republican" +2,4,1851,"tess",2,1,50,2,50,26,"USA Today","Democrat" +2,4,1857,"tess",3,1,99,2,99,89,"USA Today","Democrat" +2,4,1863,"tess",1,1,90,2,90,80,"USA Today","Republican" +2,4,1890,"tess",1,1,68,2,68,64,"USA Today","Democrat" +2,4,1891,"tess",1,1,99,3,99,0,"USA Today","Republican" +2,4,1898,"tess",3,1,50,3,50,11,"USA Today","Democrat" +2,4,1899,"tess",2,1,100,3,100,100,"USA Today","Democrat" +2,4,1902,"tess",1,1,0,2,0,99,"USA Today","Democrat" +2,4,1910,"tess",1,1,99,2,99,50,"USA Today","Republican" +2,4,1930,"tess",3,1,100,3,100,97,"USA Today","Democrat" +2,4,1939,"tess",2,1,46,2,46,50,"USA Today","Democrat" +2,4,1940,"tess",1,1,50,3,50,50,"USA Today","Democrat" +2,4,1945,"tess",2,0,47,3,53,50,"USA Today","Democrat" +2,4,1953,"tess",1,1,77,3,77,70,"USA Today","Republican" +2,4,1966,"tess",1,1,82,2,82,85,"USA Today","Republican" +2,4,1994,"tess",1,0,30,3,70,70,"USA Today","Republican" +2,4,2030,"tess",3,1,100,2,100,100,"USA Today","Democrat" +2,4,2044,"tess",2,0,71,2,29,50,"USA Today","Republican" +2,4,2056,"tess",1,0,72,2,28,18,"USA Today","Republican" +2,4,2057,"tess",2,1,90,2,90,90,"USA Today","Republican" +2,4,2060,"tess",1,1,74,2,74,53,"USA Today","Democrat" +2,4,2066,"tess",2,1,0,2,0,0,"USA Today","Republican" +2,4,2080,"tess",2,1,80,3,80,80,"USA Today","Democrat" +2,4,2090,"tess",3,0,93,3,7,0,"USA Today","Democrat" +2,4,2104,"tess",2,1,95,2,95,99,"USA Today","Republican" +2,4,2107,"tess",3,1,63,3,63,68,"USA Today","Republican" +2,4,2120,"tess",1,1,76,3,76,35,"USA Today","Republican" +2,4,2124,"tess",4,1,100,2,100,96,"USA Today","Republican" +2,4,2141,"tess",2,1,91,2,91,80,"USA Today","Democrat" +2,4,2187,"tess",2,1,50,2,50,53,"USA Today","Democrat" +2,4,2188,"tess",3,0,70,2,30,30,"USA Today","Republican" +2,4,2190,"tess",3,1,97,3,97,98,"USA Today","Neither" +2,4,2196,"tess",1,1,100,3,100,0,"USA Today","Republican" +2,4,2197,"tess",1,0,98,2,2,89,"USA Today","Republican" +2,4,2218,"tess",2,0,51,3,49,47,"USA Today","Republican" +2,4,2225,"tess",4,1,99,2,99,98,"USA Today","Republican" +2,4,2230,"tess",3,1,50,3,50,93,"USA Today","Republican" +2,4,2235,"tess",4,1,90,2,90,90,"USA Today","Republican" +2,4,2238,"tess",3,1,89,2,89,88,"USA Today","Democrat" +2,4,2248,"tess",1,0,50,2,50,9,"USA Today","Democrat" +2,4,2271,"tess",4,1,78,2,78,79,"USA Today","Democrat" +2,4,2272,"tess",3,1,97,3,97,96,"USA Today","Democrat" +2,4,2275,"tess",1,0,20,2,80,18,"USA Today","Republican" +2,4,2286,"tess",1,1,93,2,93,87,"USA Today","Democrat" +2,4,2291,"tess",2,0,50,3,50,10,"USA Today","Republican" +2,4,2337,"tess",2,0,90,3,10,10,"USA Today","Democrat" +2,4,2353,"tess",2,0,80,3,20,80,"USA Today","Democrat" +2,4,2356,"tess",1,1,95,2,95,81,"USA Today","Republican" +2,4,2359,"tess",2,1,1,3,1,99,"USA Today","Democrat" +2,4,2378,"tess",2,1,20,2,20,50,"USA Today","Democrat" +2,4,2379,"tess",1,0,69,2,31,13,"USA Today","Republican" +2,4,2383,"tess",3,1,75,2,75,50,"USA Today","Republican" +2,4,2393,"tess",2,1,10,2,10,10,"USA Today","Democrat" +2,4,2394,"tess",2,0,75,3,25,10,"USA Today","Democrat" +2,4,2398,"tess",1,0,80,3,20,20,"USA Today","Democrat" +2,4,2399,"tess",3,0,100,3,0,0,"USA Today","Democrat" +2,4,2412,"tess",3,0,71,3,29,40,"USA Today","Democrat" +2,4,2424,"tess",2,0,44,2,56,79,"USA Today","Republican" +2,4,2434,"tess",1,1,79,3,79,67,"USA Today","Democrat" +2,4,2447,"tess",3,0,85,3,15,13,"USA Today","Democrat" +2,4,2486,"tess",1,1,44,2,44,23,"USA Today","Republican" +2,4,2488,"tess",4,1,NA,2,NA,38,"USA Today","Democrat" +2,4,2512,"tess",2,0,87,2,13,19,"USA Today","Republican" +2,4,2520,"tess",2,1,99,2,99,99,"USA Today","Democrat" +2,4,2528,"tess",2,0,8,2,92,50,"USA Today","Democrat" +2,4,2529,"tess",3,1,98,3,98,96,"USA Today","Democrat" +2,4,2536,"tess",3,0,50,3,50,50,"USA Today","Democrat" +2,4,2537,"tess",2,0,84,2,16,70,"USA Today","Republican" +2,4,2542,"tess",2,1,74,3,74,100,"USA Today","Neither" +2,4,2545,"tess",4,0,46,2,54,46,"USA Today","Democrat" +2,4,2578,"tess",3,0,36,2,64,30,"USA Today","Republican" +2,4,2592,"tess",3,0,42,3,58,30,"USA Today","Democrat" +2,4,2599,"tess",3,0,98,2,2,39,"USA Today","Republican" +2,4,2608,"tess",2,0,12,3,88,0,"USA Today","Democrat" +2,4,2611,"tess",4,1,69,2,69,68,"USA Today","Neither" +2,4,2630,"tess",3,0,95,3,5,0,"USA Today","Republican" +2,4,2659,"tess",2,1,1,3,1,43,"USA Today","Republican" +2,4,2695,"tess",2,0,80,2,20,0,"USA Today","Republican" +2,4,2698,"tess",2,1,80,2,80,80,"USA Today","Republican" +2,4,2707,"tess",2,0,62,2,38,44,"USA Today","Democrat" +2,4,2731,"tess",2,0,90,3,10,55,"USA Today","Democrat" +2,4,2760,"tess",3,0,91,3,9,60,"USA Today","Republican" +2,4,2773,"tess",2,0,80,2,20,80,"USA Today","Republican" +2,4,2774,"tess",1,1,90,2,90,90,"USA Today","Republican" +2,4,2779,"tess",3,1,96,3,96,90,"USA Today","Democrat" +2,4,2799,"tess",2,1,75,3,75,100,"USA Today","Republican" +2,4,2827,"tess",1,0,99,3,1,2,"USA Today","Democrat" +2,4,2843,"tess",3,1,96,2,96,80,"USA Today","Democrat" +2,4,2852,"tess",2,1,100,3,100,100,"USA Today","Republican" +2,4,2863,"tess",1,1,95,3,95,95,"USA Today","Republican" +2,4,2885,"tess",1,0,96,2,4,92,"USA Today","Republican" +2,4,2893,"tess",3,0,70,3,30,21,"USA Today","Republican" +2,4,2905,"tess",2,1,60,3,60,62,"USA Today","Democrat" +2,4,2915,"tess",3,1,95,2,95,95,"USA Today","Democrat" +2,4,2917,"tess",2,1,86,3,86,89,"USA Today","Republican" +2,4,2923,"tess",4,1,68,2,68,56,"USA Today","Neither" +2,4,2934,"tess",4,1,50,2,50,40,"USA Today","Democrat" +2,4,2938,"tess",3,1,99,2,99,97,"USA Today","Republican" +2,4,2940,"tess",3,0,98,2,2,0,"USA Today","Republican" +2,4,2945,"tess",1,0,89,2,11,5,"USA Today","Democrat" +2,4,2953,"tess",4,0,96,2,4,10,"USA Today","Neither" +2,4,2970,"tess",4,1,31,2,31,61,"USA Today","Neither" +2,4,2979,"tess",3,0,97,2,3,71,"USA Today","Democrat" +2,4,2981,"tess",3,1,50,3,50,50,"USA Today","Democrat" +2,4,2983,"tess",1,0,91,3,9,11,"USA Today","Democrat" +2,4,2988,"tess",3,0,93,3,7,53,"USA Today","Democrat" +2,4,2998,"tess",2,0,94,2,6,22,"USA Today","Republican" +2,4,3006,"tess",1,0,50,2,50,50,"USA Today","Democrat" +2,4,3020,"tess",1,0,55,2,45,59,"USA Today","Democrat" +2,4,3021,"tess",1,0,94,3,6,15,"USA Today","Democrat" +2,4,3048,"tess",3,1,60,2,60,50,"USA Today","Democrat" +2,4,3051,"tess",2,1,70,2,70,40,"USA Today","Republican" +2,4,3071,"tess",3,1,42,3,42,50,"USA Today","Democrat" +2,4,3072,"tess",4,1,99,2,99,79,"USA Today","Republican" +2,4,3096,"tess",2,0,99,2,1,1,"USA Today","Republican" +2,4,3109,"tess",4,0,57,2,43,34,"USA Today","Neither" +2,4,3111,"tess",1,1,50,2,50,40,"USA Today","Democrat" +2,4,3115,"tess",2,0,16,3,84,49,"USA Today","Neither" +2,4,3123,"tess",1,1,90,2,90,80,"USA Today","Democrat" +2,4,3128,"tess",1,0,20,3,80,20,"USA Today","Republican" +2,4,3137,"tess",3,0,36,2,64,75,"USA Today","Democrat" +2,4,3156,"tess",2,0,20,3,80,60,"USA Today","Democrat" +2,4,3172,"tess",2,1,80,3,80,70,"USA Today","Democrat" +2,4,3192,"tess",2,0,71,3,29,95,"USA Today","Democrat" +2,4,3197,"tess",3,0,30,3,70,100,"USA Today","Democrat" +2,4,3201,"tess",1,1,17,3,17,24,"USA Today","Republican" +2,4,3205,"tess",1,0,52,3,48,49,"USA Today","Republican" +2,4,3206,"tess",2,0,39,2,61,20,"USA Today","Democrat" +2,4,3223,"tess",2,1,100,2,100,100,"USA Today","Democrat" +2,4,3226,"tess",3,1,89,3,89,92,"USA Today","Republican" +2,4,3230,"tess",3,1,100,3,100,97,"USA Today","Republican" +2,4,3274,"tess",1,1,100,3,100,100,"USA Today","Democrat" +2,4,3295,"tess",3,1,79,2,79,70,"USA Today","Democrat" +2,4,3304,"tess",2,1,71,3,71,70,"USA Today","Republican" +2,4,3313,"tess",1,0,50,2,50,11,"USA Today","Republican" +2,4,3344,"tess",3,1,46,2,46,60,"USA Today","Democrat" +2,4,3419,"tess",3,0,1,3,99,50,"USA Today","Democrat" +2,4,3424,"tess",3,1,16,2,16,44,"USA Today","Democrat" +2,4,3430,"tess",2,1,100,2,100,99,"USA Today","Democrat" +2,4,3433,"tess",2,0,87,2,13,10,"USA Today","Democrat" +2,4,3452,"tess",2,0,35,2,65,21,"USA Today","Republican" +2,4,3462,"tess",3,0,59,3,41,81,"USA Today","Republican" +2,4,3464,"tess",1,0,70,3,30,29,"USA Today","Republican" +2,4,3488,"tess",1,1,80,3,80,0,"USA Today","Republican" +2,4,3507,"tess",1,1,72,3,72,15,"USA Today","Democrat" +2,4,3508,"tess",2,0,94,3,6,18,"USA Today","Republican" +2,4,3512,"tess",3,0,99,2,1,97,"USA Today","Republican" +2,4,3513,"tess",2,1,62,2,62,53,"USA Today","Democrat" +2,4,3515,"tess",4,1,0,2,0,2,"USA Today","Republican" +2,4,3536,"tess",1,1,100,2,100,100,"USA Today","Republican" +2,4,3544,"tess",3,0,62,3,38,10,"USA Today","Neither" +2,4,3548,"tess",2,0,30,2,70,30,"USA Today","Republican" +2,4,3554,"tess",1,1,76,2,76,29,"USA Today","Democrat" +2,4,3587,"tess",3,1,10,3,10,10,"USA Today","Democrat" +2,4,3589,"tess",2,1,98,3,98,99,"USA Today","Democrat" +2,4,3634,"tess",4,1,81,2,81,71,"USA Today","Democrat" +2,4,3643,"tess",2,1,95,2,95,90,"USA Today","Democrat" +2,4,3673,"tess",1,1,69,2,69,64,"USA Today","Republican" +2,4,3726,"tess",3,1,23,3,23,49,"USA Today","Democrat" +2,4,3754,"tess",2,1,97,2,97,96,"USA Today","Democrat" +2,4,3774,"tess",1,0,40,3,60,40,"USA Today","Neither" +2,4,3779,"tess",1,0,80,3,20,30,"USA Today","Republican" +2,4,3799,"tess",2,0,85,3,15,10,"USA Today","Republican" +2,4,3806,"tess",1,1,85,2,85,50,"USA Today","Republican" +2,4,3811,"tess",3,1,89,2,89,87,"USA Today","Republican" +2,4,3813,"tess",1,0,90,2,10,15,"USA Today","Republican" +2,4,3814,"tess",3,1,100,3,100,99,"USA Today","Democrat" +2,4,3820,"tess",4,0,70,2,30,29,"USA Today","Democrat" +2,4,3851,"tess",2,0,98,2,2,65,"USA Today","Republican" +2,4,3865,"tess",1,1,100,2,100,75,"USA Today","Democrat" +2,4,3868,"tess",2,1,1,2,1,1,"USA Today","Democrat" +2,4,3880,"tess",4,0,90,2,10,50,"USA Today","Republican" +2,4,3890,"tess",1,0,100,3,0,10,"USA Today","Republican" +2,4,3895,"tess",2,0,49,2,51,50,"USA Today","Republican" +2,4,3931,"tess",3,0,61,3,39,62,"USA Today","Democrat" +2,4,3959,"tess",1,0,11,3,89,50,"USA Today","Democrat" +2,4,3966,"tess",3,1,100,3,100,100,"USA Today","Democrat" +2,4,4015,"tess",4,0,97,2,3,20,"USA Today","Democrat" +2,4,4027,"tess",3,1,38,3,38,39,"USA Today","Republican" +2,4,4043,"tess",2,0,100,2,0,100,"USA Today","Republican" +2,4,4049,"tess",1,1,98,3,98,98,"USA Today","Neither" +2,4,4069,"tess",4,0,52,2,48,51,"USA Today","Democrat" +2,4,4072,"tess",1,0,87,2,13,48,"USA Today","Democrat" +2,4,4075,"tess",2,0,80,3,20,80,"USA Today","Democrat" +2,4,4120,"tess",2,1,60,3,60,59,"USA Today","Republican" +2,4,4139,"tess",2,1,93,3,93,96,"USA Today","Republican" +2,4,4141,"tess",3,1,92,3,92,97,"USA Today","Democrat" +2,4,4149,"tess",1,1,53,3,53,92,"USA Today","Republican" +2,4,4153,"tess",2,1,97,3,97,97,"USA Today","Republican" +2,4,4163,"tess",1,0,64,3,36,38,"USA Today","Republican" +2,4,4178,"tess",4,1,100,2,100,54,"USA Today","Democrat" +2,4,4186,"tess",2,0,93,2,7,67,"USA Today","Democrat" +2,4,4197,"tess",3,0,100,2,0,0,"USA Today","Democrat" +2,4,4200,"tess",1,0,70,3,30,30,"USA Today","Democrat" +2,4,4202,"tess",1,0,75,2,25,75,"USA Today","Democrat" +2,4,4224,"tess",2,0,91,2,9,11,"USA Today","Democrat" +2,4,4227,"tess",3,1,91,2,91,39,"USA Today","Democrat" +2,4,4229,"tess",3,0,68,2,32,49,"USA Today","Democrat" +2,4,4241,"tess",3,0,40,2,60,50,"USA Today","Republican" +2,4,4251,"tess",1,1,76,2,76,11,"USA Today","Republican" +2,4,4252,"tess",1,0,20,2,80,80,"USA Today","Republican" +2,4,4269,"tess",2,1,90,3,90,70,"USA Today","Republican" +2,4,4277,"tess",2,1,98,2,98,80,"USA Today","Democrat" +2,4,4278,"tess",4,1,98,2,98,99,"USA Today","Republican" +2,4,4298,"tess",3,1,45,3,45,65,"USA Today","Democrat" +2,4,4307,"tess",1,0,51,2,49,60,"USA Today","Republican" +2,4,4308,"tess",1,1,100,2,100,99,"USA Today","Democrat" +2,4,4325,"tess",1,0,100,3,0,2,"USA Today","Democrat" +2,4,4332,"tess",3,1,99,2,99,99,"USA Today","Democrat" +2,4,4349,"tess",3,0,61,2,39,33,"USA Today","Democrat" +2,4,4356,"tess",2,0,0,3,100,100,"USA Today","Republican" +2,4,4361,"tess",1,1,85,3,85,95,"USA Today","Democrat" +2,4,4365,"tess",1,0,69,2,31,14,"USA Today","Republican" +2,4,4391,"tess",1,0,90,2,10,50,"USA Today","Democrat" +2,4,4416,"tess",1,0,50,3,50,40,"USA Today","Republican" +2,4,4420,"tess",2,0,36,2,64,50,"USA Today","Democrat" +2,4,4427,"tess",1,1,49,2,49,99,"USA Today","Democrat" +2,4,4447,"tess",3,1,99,3,99,96,"USA Today","Republican" +2,4,4451,"tess",3,1,69,3,69,59,"USA Today","Republican" +2,4,4452,"tess",2,0,19,2,81,1,"USA Today","Republican" +2,4,4480,"tess",3,1,86,2,86,77,"USA Today","Democrat" +2,4,4482,"tess",2,1,50,2,50,51,"USA Today","Neither" +2,4,4484,"tess",2,0,91,2,9,50,"USA Today","Democrat" +2,4,4512,"tess",3,1,54,3,54,55,"USA Today","Democrat" +2,4,4524,"tess",2,0,70,2,30,31,"USA Today","Republican" +2,4,4525,"tess",2,0,10,2,90,10,"USA Today","Republican" +2,4,4561,"tess",1,0,95,2,5,7,"USA Today","Democrat" +2,4,4574,"tess",1,1,98,3,98,86,"USA Today","Democrat" +2,4,4584,"tess",2,0,1,2,99,1,"USA Today","Democrat" +2,4,4624,"tess",1,0,90,3,10,20,"USA Today","Republican" +2,4,4628,"tess",1,1,50,3,50,50,"USA Today","Democrat" +2,4,4633,"tess",1,1,80,2,80,71,"USA Today","Democrat" +2,4,4683,"tess",3,0,82,2,18,16,"USA Today","Neither" +2,4,4708,"tess",2,1,51,3,51,80,"USA Today","Democrat" +2,4,4726,"tess",2,1,80,3,80,75,"USA Today","Republican" +2,4,4739,"tess",2,1,98,2,98,95,"USA Today","Republican" +2,4,4740,"tess",1,1,70,2,70,80,"USA Today","Republican" +2,4,4774,"tess",1,1,60,3,60,30,"USA Today","Republican" +2,4,4782,"tess",4,0,65,2,35,49,"USA Today","Democrat" +2,4,4795,"tess",3,1,90,2,90,70,"USA Today","Democrat" +2,4,4800,"tess",2,0,83,3,17,30,"USA Today","Republican" +2,4,4807,"tess",3,1,39,3,39,45,"USA Today","Democrat" +2,4,4813,"tess",1,0,100,2,0,16,"USA Today","Democrat" +2,4,4820,"tess",1,0,50,3,50,60,"USA Today","Republican" +2,4,4821,"tess",3,0,40,3,60,67,"USA Today","Neither" +2,4,4826,"tess",1,0,80,3,20,10,"USA Today","Democrat" +2,4,4831,"tess",3,1,100,3,100,0,"USA Today","Neither" +2,4,4869,"tess",3,1,1,2,1,1,"USA Today","Democrat" +2,4,4875,"tess",1,1,100,3,100,0,"USA Today","Democrat" +2,4,4880,"tess",3,1,74,3,74,77,"USA Today","Republican" +2,4,4883,"tess",1,1,91,2,91,83,"USA Today","Democrat" +2,4,4887,"tess",2,0,77,3,23,23,"USA Today","Republican" +2,4,4908,"tess",1,1,93,3,93,95,"USA Today","Democrat" +2,4,4925,"tess",2,1,79,2,79,98,"USA Today","Democrat" +2,4,4930,"tess",1,0,45,2,55,47,"USA Today","Democrat" +2,4,4964,"tess",1,0,10,3,90,90,"USA Today","Republican" +2,4,4971,"tess",3,1,51,2,51,59,"USA Today","Democrat" +2,4,4977,"tess",1,0,42,2,58,3,"USA Today","Republican" +2,4,4990,"tess",4,0,70,2,30,50,"USA Today","Republican" +2,4,5003,"tess",3,1,90,3,90,85,"USA Today","Republican" +2,4,5004,"tess",2,0,89,3,11,20,"USA Today","Democrat" +2,4,5025,"tess",2,1,96,2,96,100,"USA Today","Democrat" +2,4,5029,"tess",3,0,66,3,34,40,"USA Today","Republican" +2,4,5068,"tess",1,0,NA,2,NA,51,"USA Today","Democrat" +2,4,5073,"tess",4,0,28,2,72,18,"USA Today","Democrat" +2,4,5086,"tess",2,1,30,3,30,60,"USA Today","Neither" +2,4,5116,"tess",2,0,11,3,89,88,"USA Today","Republican" +2,4,5143,"tess",3,0,1,3,99,30,"USA Today","Republican" +2,4,5151,"tess",1,1,97,2,97,80,"USA Today","Democrat" +2,4,5160,"tess",1,0,20,2,80,20,"USA Today","Democrat" +2,4,5165,"tess",1,0,100,3,0,2,"USA Today","Republican" +2,4,5172,"tess",1,0,98,2,2,30,"USA Today","Democrat" +2,4,5175,"tess",2,1,80,2,80,79,"USA Today","Democrat" +2,4,5186,"tess",2,0,97,3,3,95,"USA Today","Republican" +2,4,5195,"tess",1,1,98,2,98,51,"USA Today","Democrat" +2,4,5221,"tess",1,1,86,3,86,74,"USA Today","Republican" +2,4,5225,"tess",2,0,58,2,42,27,"USA Today","Democrat" +2,4,5228,"tess",3,0,73,3,27,29,"USA Today","Democrat" +2,4,5284,"tess",2,1,94,2,94,94,"USA Today","Democrat" +2,4,5289,"tess",1,0,9,3,91,91,"USA Today","Democrat" +2,4,5308,"tess",2,1,100,3,100,100,"USA Today","Democrat" +2,4,5314,"tess",2,1,100,2,100,50,"USA Today","Republican" +2,4,5331,"tess",3,1,90,2,90,50,"USA Today","Democrat" +2,4,5353,"tess",2,1,93,2,93,99,"USA Today","Democrat" +2,4,5378,"tess",1,1,95,2,95,92,"USA Today","Democrat" +2,4,5383,"tess",1,1,33,3,33,30,"USA Today","Republican" +2,4,5385,"tess",2,1,85,3,85,84,"USA Today","Democrat" +2,4,5393,"tess",1,0,39,2,61,33,"USA Today","Republican" +2,4,5400,"tess",3,1,50,3,50,99,"USA Today","Republican" +2,4,5406,"tess",3,0,51,3,49,41,"USA Today","Republican" +2,4,5416,"tess",3,1,50,2,50,87,"USA Today","Democrat" +2,4,5430,"tess",3,0,0,2,100,0,"USA Today","Democrat" +2,4,5447,"tess",2,1,65,3,65,24,"USA Today","Democrat" +2,4,5450,"tess",3,1,30,2,30,10,"USA Today","Republican" +2,4,5456,"tess",1,0,99,2,1,2,"USA Today","Democrat" +2,4,5475,"tess",1,0,97,3,3,3,"USA Today","Democrat" +2,4,5480,"tess",3,0,NA,3,NA,NA,"USA Today","Republican" +2,4,5490,"tess",2,1,87,2,87,29,"USA Today","Republican" +2,4,5515,"tess",1,1,90,3,90,80,"USA Today","Republican" +2,4,5519,"tess",3,1,94,3,94,100,"USA Today","Democrat" +2,4,5553,"tess",1,1,99,3,99,90,"USA Today","Republican" +2,4,5559,"tess",2,0,54,2,46,21,"USA Today","Republican" +2,4,5561,"tess",1,1,98,2,98,25,"USA Today","Republican" +2,4,5575,"tess",2,0,94,3,6,0,"USA Today","Democrat" +2,4,5576,"tess",1,1,100,2,100,67,"USA Today","Democrat" +2,4,5593,"tess",1,1,49,2,49,11,"USA Today","Republican" +2,4,5594,"tess",2,0,32,3,68,0,"USA Today","Republican" +2,4,5597,"tess",2,0,87,2,13,71,"USA Today","Republican" +2,4,5614,"tess",2,0,74,3,26,14,"USA Today","Democrat" +2,4,5617,"tess",2,1,100,3,100,99,"USA Today","Democrat" +2,4,5620,"tess",1,0,88,2,12,52,"USA Today","Democrat" +2,4,5621,"tess",2,0,49,3,51,0,"USA Today","Democrat" +2,4,5631,"tess",2,1,99,2,99,81,"USA Today","Republican" +2,4,5633,"tess",3,0,97,3,3,0,"USA Today","Democrat" +2,4,5646,"tess",4,1,3,2,3,8,"USA Today","Republican" +2,4,5648,"tess",3,1,99,2,99,65,"USA Today","Democrat" +2,4,5660,"tess",2,1,80,3,80,10,"USA Today","Democrat" +2,4,5664,"tess",3,1,91,2,91,75,"USA Today","Democrat" +2,4,5681,"tess",1,1,90,3,90,91,"USA Today","Democrat" +2,4,5706,"tess",2,1,63,2,63,52,"USA Today","Republican" +2,4,5715,"tess",1,1,81,3,81,50,"USA Today","Republican" +2,4,5721,"tess",1,1,98,2,98,99,"USA Today","Republican" +2,4,5729,"tess",4,1,100,2,100,100,"USA Today","Republican" +2,4,5732,"tess",2,1,80,3,80,90,"USA Today","Republican" +2,4,5746,"tess",4,0,90,2,10,50,"USA Today","Democrat" +2,4,5752,"tess",3,1,60,3,60,50,"USA Today","Democrat" +2,4,5760,"tess",1,1,38,2,38,39,"USA Today","Democrat" +2,4,5763,"tess",3,0,46,2,54,33,"USA Today","Democrat" +2,4,5772,"tess",3,0,70,2,30,27,"USA Today","Democrat" +2,4,5783,"tess",2,0,85,3,15,14,"USA Today","Democrat" +2,4,5810,"tess",1,1,90,2,90,80,"USA Today","Democrat" +2,4,5820,"tess",2,1,100,3,100,62,"USA Today","Democrat" +2,4,5825,"tess",1,1,100,2,100,100,"USA Today","Republican" +2,4,5826,"tess",2,1,100,3,100,58,"USA Today","Republican" +2,4,5833,"tess",3,1,100,3,100,93,"USA Today","Democrat" +2,4,5842,"tess",3,0,80,2,20,6,"USA Today","Democrat" +2,4,5874,"tess",2,0,44,2,56,63,"USA Today","Democrat" +2,4,5885,"tess",1,0,71,2,29,50,"USA Today","Republican" +2,4,5886,"tess",3,0,NA,2,NA,54,"USA Today","Republican" +2,4,5896,"tess",3,0,60,3,40,60,"USA Today","Republican" +2,4,5899,"tess",1,0,4,2,96,90,"USA Today","Democrat" +2,4,5901,"tess",3,1,90,2,90,90,"USA Today","Democrat" +2,4,5906,"tess",2,1,99,3,99,50,"USA Today","Democrat" +2,4,5914,"tess",2,1,77,3,77,57,"USA Today","Republican" +2,4,5916,"tess",1,1,80,3,80,80,"USA Today","Republican" +2,4,5922,"tess",1,0,2,2,98,50,"USA Today","Republican" +2,4,5925,"tess",3,1,86,2,86,77,"USA Today","Republican" +2,4,5931,"tess",1,0,7,3,93,95,"USA Today","Democrat" +2,4,5934,"tess",2,0,91,3,9,6,"USA Today","Democrat" +2,4,5954,"tess",4,0,80,2,20,30,"USA Today","Democrat" +2,4,5964,"tess",2,0,49,3,51,20,"USA Today","Democrat" +2,4,5981,"tess",2,0,22,2,78,24,"USA Today","Republican" +2,4,5982,"tess",1,1,98,2,98,90,"USA Today","Democrat" +2,4,5987,"tess",1,1,95,3,95,90,"USA Today","Democrat" +2,4,5988,"tess",4,0,64,2,36,38,"USA Today","Democrat" +2,4,5994,"tess",1,0,90,3,10,4,"USA Today","Democrat" +2,4,5996,"tess",3,0,52,3,48,45,"USA Today","Democrat" +2,4,5999,"tess",1,1,60,3,60,80,"USA Today","Democrat" +2,4,6008,"tess",2,1,99,3,99,99,"USA Today","Republican" +2,4,6012,"tess",2,1,80,2,80,59,"USA Today","Republican" +2,4,6013,"tess",3,1,61,3,61,40,"USA Today","Democrat" +2,4,6039,"tess",4,0,92,2,8,33,"USA Today","Republican" +2,4,6041,"tess",3,1,70,2,70,49,"USA Today","Democrat" +2,4,6053,"tess",3,0,84,3,16,29,"USA Today","Republican" +2,4,6061,"tess",2,1,84,2,84,86,"USA Today","Democrat" +2,4,6067,"tess",2,1,91,3,91,82,"USA Today","Republican" +2,4,6068,"tess",2,1,80,3,80,31,"USA Today","Democrat" +2,4,6070,"tess",2,1,90,2,90,10,"USA Today","Republican" +2,4,6073,"tess",1,1,70,2,70,99,"USA Today","Democrat" +2,4,6095,"tess",3,0,49,2,51,0,"USA Today","Democrat" +2,4,6096,"tess",1,0,97,3,3,4,"USA Today","Republican" +2,4,6100,"tess",2,1,63,2,63,50,"USA Today","Democrat" +2,4,6116,"tess",2,1,21,2,21,20,"USA Today","Democrat" +2,4,6131,"tess",3,1,70,3,70,70,"USA Today","Neither" +2,4,6136,"tess",2,0,29,2,71,42,"USA Today","Democrat" +2,4,6137,"tess",1,0,49,2,51,48,"USA Today","Democrat" +2,4,6144,"tess",1,0,63,2,37,50,"USA Today","Democrat" +2,4,6170,"tess",2,1,80,2,80,50,"USA Today","Democrat" +2,4,6171,"tess",2,0,100,3,0,49,"USA Today","Democrat" +2,4,6172,"tess",4,1,100,2,100,99,"USA Today","Democrat" +2,4,6188,"tess",3,0,50,2,50,50,"USA Today","Republican" +2,4,6199,"tess",1,1,97,3,97,96,"USA Today","Republican" +2,4,6226,"tess",3,0,26,2,74,51,"USA Today","Democrat" +2,4,6237,"tess",3,0,70,3,30,10,"USA Today","Democrat" +2,4,6242,"tess",2,0,80,3,20,19,"USA Today","Democrat" +2,4,6244,"tess",3,0,60,2,40,40,"USA Today","Democrat" +2,4,6246,"tess",2,0,69,3,31,41,"USA Today","Republican" +2,4,6248,"tess",1,0,52,3,48,99,"USA Today","Republican" +2,4,6256,"tess",2,0,99,3,1,1,"USA Today","Democrat" +2,4,6258,"tess",2,0,NA,2,NA,71,"USA Today","Republican" +2,4,6261,"tess",2,1,90,2,90,50,"USA Today","Democrat" +2,4,6263,"tess",2,0,50,2,50,50,"USA Today","Democrat" +2,4,6265,"tess",3,0,91,3,9,10,"USA Today","Democrat" +2,4,6279,"tess",1,1,37,2,37,24,"USA Today","Republican" +2,4,6284,"tess",3,0,50,3,50,69,"USA Today","Neither" +2,4,6307,"tess",3,0,65,3,35,9,"USA Today","Republican" +2,4,6329,"tess",3,1,50,3,50,69,"USA Today","Democrat" +2,4,6361,"tess",3,0,90,3,10,20,"USA Today","Democrat" +2,4,6362,"tess",4,1,95,2,95,97,"USA Today","Republican" +2,4,6367,"tess",3,0,0,3,100,90,"USA Today","Democrat" +2,4,6373,"tess",2,0,63,2,37,49,"USA Today","Democrat" +2,4,6376,"tess",3,1,80,2,80,75,"USA Today","Democrat" +2,4,6383,"tess",2,1,84,3,84,81,"USA Today","Democrat" +2,4,6385,"tess",1,1,73,3,73,70,"USA Today","Democrat" +2,4,6388,"tess",1,1,69,3,69,49,"USA Today","Democrat" +2,4,6391,"tess",1,0,30,3,70,70,"USA Today","Democrat" +2,4,6397,"tess",2,0,99,3,1,1,"USA Today","Republican" +2,4,6419,"tess",4,1,80,2,80,50,"USA Today","Democrat" +2,4,6468,"tess",1,1,60,3,60,69,"USA Today","Republican" +2,4,6472,"tess",2,0,44,3,56,68,"USA Today","Republican" +2,4,6489,"tess",2,1,14,3,14,12,"USA Today","Democrat" +2,4,6506,"tess",3,1,75,3,75,48,"USA Today","Democrat" +2,4,6507,"tess",1,0,67,3,33,93,"USA Today","Republican" +2,4,6508,"tess",3,0,71,2,29,14,"USA Today","Republican" +2,4,6521,"tess",2,0,90,3,10,30,"USA Today","Democrat" +2,4,6522,"tess",2,0,25,3,75,70,"USA Today","Democrat" +2,4,6540,"tess",3,0,100,2,0,0,"USA Today","Democrat" +2,4,6545,"tess",2,0,100,3,0,0,"USA Today","Democrat" +2,4,6547,"tess",2,0,70,2,30,80,"USA Today","Republican" +2,4,6548,"tess",1,0,44,2,56,45,"USA Today","Democrat" +2,4,6553,"tess",3,0,1,2,99,99,"USA Today","Republican" +2,4,6561,"tess",1,0,57,3,43,32,"USA Today","Democrat" +2,4,6562,"tess",3,0,100,2,0,0,"USA Today","Republican" +2,4,6568,"tess",3,1,66,3,66,50,"USA Today","Democrat" +2,4,6572,"tess",2,1,71,3,71,60,"USA Today","Democrat" +2,4,6581,"tess",3,1,31,2,31,32,"USA Today","Democrat" +2,4,6587,"tess",3,1,3,2,3,3,"USA Today","Republican" +2,4,6589,"tess",2,0,60,2,40,36,"USA Today","Democrat" +2,4,6599,"tess",2,0,72,3,28,41,"USA Today","Democrat" +2,4,6610,"tess",3,1,80,2,80,80,"USA Today","Democrat" +2,4,6615,"tess",2,0,0,3,100,90,"USA Today","Democrat" +2,4,6619,"tess",2,1,89,3,89,69,"USA Today","Republican" +2,4,6621,"tess",2,0,75,3,25,25,"USA Today","Democrat" +2,4,6625,"tess",3,0,85,2,15,49,"USA Today","Democrat" +2,4,6626,"tess",2,1,3,3,3,40,"USA Today","Republican" +2,4,6636,"tess",3,0,49,3,51,51,"USA Today","Republican" +2,4,6642,"tess",1,0,50,3,50,20,"USA Today","Democrat" +2,4,6652,"tess",2,0,40,2,60,50,"USA Today","Republican" +2,4,6656,"tess",1,1,99,2,99,98,"USA Today","Democrat" +2,4,6660,"tess",1,1,26,3,26,74,"USA Today","Democrat" +2,4,6666,"tess",3,1,72,3,72,80,"USA Today","Democrat" +2,4,6667,"tess",3,0,84,3,16,40,"USA Today","Democrat" +2,4,6668,"tess",2,1,98,2,98,98,"USA Today","Democrat" +2,4,6670,"tess",1,0,78,3,22,19,"USA Today","Democrat" +2,4,6674,"tess",2,1,90,2,90,70,"USA Today","Democrat" +2,4,6680,"tess",3,0,14,2,86,44,"USA Today","Republican" +2,4,6682,"tess",1,0,0,3,100,100,"USA Today","Democrat" +2,4,6703,"tess",2,0,1,2,99,25,"USA Today","Democrat" +2,4,6710,"tess",2,0,0,3,100,95,"USA Today","Republican" +2,4,6718,"tess",1,1,80,2,80,80,"USA Today","Republican" +2,4,6729,"tess",2,1,98,3,98,95,"USA Today","Democrat" +2,4,6730,"tess",1,0,18,3,82,10,"USA Today","Democrat" +2,4,6742,"tess",3,0,89,2,11,50,"USA Today","Democrat" +2,4,6758,"tess",2,1,73,3,73,66,"USA Today","Republican" +2,4,6775,"tess",1,1,87,2,87,90,"USA Today","Republican" +2,4,6780,"tess",4,1,82,2,82,51,"USA Today","Democrat" +2,4,6782,"tess",2,0,19,2,81,11,"USA Today","Republican" +2,4,6797,"tess",3,1,80,3,80,65,"USA Today","Democrat" +2,4,6802,"tess",1,0,83,2,17,68,"USA Today","Democrat" +2,4,6803,"tess",3,1,58,3,58,100,"USA Today","Democrat" +2,4,6804,"tess",1,1,70,2,70,20,"USA Today","Republican" +2,4,6831,"tess",1,0,88,2,12,91,"USA Today","Republican" +2,4,6837,"tess",4,0,56,2,44,15,"USA Today","Democrat" +2,4,6842,"tess",3,1,96,3,96,95,"USA Today","Republican" +2,4,6844,"tess",3,0,43,2,57,59,"USA Today","Democrat" +2,4,6853,"tess",3,1,79,2,79,70,"USA Today","Democrat" +2,4,6864,"tess",2,0,20,3,80,80,"USA Today","Republican" +2,4,6866,"tess",4,0,99,2,1,1,"USA Today","Democrat" +2,4,6882,"tess",1,1,89,2,89,50,"USA Today","Democrat" +2,4,6883,"tess",3,0,86,2,14,48,"USA Today","Democrat" +2,4,6910,"tess",2,0,69,2,31,22,"USA Today","Democrat" +2,4,6911,"tess",3,1,60,2,60,50,"USA Today","Democrat" +2,4,6913,"tess",3,1,44,2,44,63,"USA Today","Democrat" +2,4,6915,"tess",3,0,61,3,39,61,"USA Today","Republican" +2,4,6927,"tess",1,1,100,2,100,50,"USA Today","Democrat" +2,4,6956,"tess",2,1,100,2,100,93,"USA Today","Democrat" +2,4,6971,"tess",2,1,76,2,76,85,"USA Today","Republican" +2,4,6984,"tess",2,1,51,3,51,20,"USA Today","Republican" +2,4,7023,"tess",2,1,100,2,100,50,"USA Today","Democrat" +2,4,7027,"tess",1,1,53,2,53,36,"USA Today","Republican" +2,4,7036,"tess",3,1,96,3,96,90,"USA Today","Republican" +2,4,7049,"tess",1,0,13,3,87,68,"USA Today","Democrat" +2,4,7054,"tess",2,0,96,2,4,92,"USA Today","Democrat" +2,4,7061,"tess",3,0,81,2,19,13,"USA Today","Democrat" +2,4,7083,"tess",2,0,6,2,94,45,"USA Today","Democrat" +2,4,7088,"tess",2,0,87,3,13,30,"USA Today","Democrat" +2,4,7094,"tess",2,1,70,3,70,0,"USA Today","Republican" +2,4,7124,"tess",1,1,52,2,52,50,"USA Today","Democrat" +2,4,7161,"tess",3,0,54,2,46,76,"USA Today","Democrat" +2,4,7166,"tess",1,0,50,3,50,2,"USA Today","Neither" +2,4,7190,"tess",1,1,84,2,84,84,"USA Today","Democrat" +2,4,7199,"tess",1,1,99,3,99,99,"USA Today","Republican" +2,4,7216,"tess",1,1,100,2,100,100,"USA Today","Democrat" +2,4,7218,"tess",2,1,85,3,85,62,"USA Today","Democrat" +2,4,7223,"tess",3,1,1,2,1,4,"USA Today","Democrat" +2,4,7224,"tess",3,1,15,3,15,0,"USA Today","Republican" +2,4,7225,"tess",2,0,99,3,1,100,"USA Today","Democrat" +2,4,7226,"tess",3,0,67,3,33,46,"USA Today","Democrat" +2,4,7230,"tess",3,0,77,2,23,81,"USA Today","Republican" +2,4,7239,"tess",2,0,98,3,2,6,"USA Today","Republican" +2,4,7273,"tess",2,1,76,2,76,82,"USA Today","Democrat" +2,4,7276,"tess",3,1,73,3,73,87,"USA Today","Republican" +2,4,7280,"tess",1,1,91,2,91,88,"USA Today","Neither" +2,4,7307,"tess",3,1,100,2,100,96,"USA Today","Democrat" +2,4,7311,"tess",2,0,93,3,7,5,"USA Today","Republican" +2,4,7330,"tess",2,1,89,2,89,88,"USA Today","Democrat" +2,4,7368,"tess",2,1,98,3,98,99,"USA Today","Democrat" +2,4,7397,"tess",1,1,90,2,90,90,"USA Today","Democrat" +2,4,7404,"tess",1,0,3,2,97,5,"USA Today","Democrat" +2,4,7409,"tess",4,1,70,2,70,47,"USA Today","Democrat" +2,4,7427,"tess",3,1,90,2,90,10,"USA Today","Democrat" +2,4,7450,"tess",2,1,64,2,64,36,"USA Today","Democrat" +2,4,7470,"tess",1,0,54,2,46,12,"USA Today","Republican" +2,4,7472,"tess",4,0,0,2,100,90,"USA Today","Republican" +2,4,7475,"tess",1,0,91,3,9,100,"USA Today","Neither" +2,4,7486,"tess",3,0,67,2,33,65,"USA Today","Democrat" +2,4,7524,"tess",1,1,79,2,79,61,"USA Today","Democrat" +2,4,7543,"tess",3,1,99,2,99,93,"USA Today","Republican" +2,4,7558,"tess",2,0,1,2,99,99,"USA Today","Democrat" +2,4,7563,"tess",3,0,1,3,99,96,"USA Today","Democrat" +2,4,7564,"tess",1,1,50,2,50,99,"USA Today","Democrat" +2,4,7577,"tess",1,1,74,2,74,74,"USA Today","Democrat" +2,4,7584,"tess",1,1,70,2,70,90,"USA Today","Republican" +2,4,7587,"tess",3,0,30,2,70,50,"USA Today","Democrat" +2,4,7590,"tess",1,1,77,2,77,64,"USA Today","Republican" +2,4,7593,"tess",2,1,71,2,71,26,"USA Today","Republican" +2,4,7594,"tess",2,1,85,3,85,80,"USA Today","Democrat" +2,4,7597,"tess",3,0,19,2,81,50,"USA Today","Democrat" +2,4,7600,"tess",2,1,74,3,74,50,"USA Today","Republican" +2,4,7607,"tess",2,1,59,3,59,60,"USA Today","Neither" +2,4,7608,"tess",3,1,75,2,75,65,"USA Today","Republican" +2,4,7622,"tess",3,0,100,3,0,1,"USA Today","Democrat" +2,4,7668,"tess",4,0,0,2,100,20,"USA Today","Republican" +2,4,7694,"tess",1,0,90,3,10,10,"USA Today","Republican" +2,4,7702,"tess",4,1,82,2,82,12,"USA Today","Democrat" +2,4,7711,"tess",4,0,78,2,22,5,"USA Today","Republican" +2,4,7712,"tess",2,0,60,3,40,60,"USA Today","Democrat" +2,4,7784,"tess",3,0,75,2,25,10,"USA Today","Neither" +2,4,7786,"tess",4,0,4,2,96,54,"USA Today","Democrat" +2,4,7792,"tess",3,0,80,2,20,20,"USA Today","Neither" +2,4,7793,"tess",4,1,80,2,80,70,"USA Today","Republican" +2,4,7819,"tess",1,1,48,2,48,66,"USA Today","Democrat" +2,4,7861,"tess",3,0,99,3,1,44,"USA Today","Republican" +2,4,7880,"tess",3,1,88,3,88,100,"USA Today","Democrat" +2,4,7891,"tess",3,0,51,2,49,18,"USA Today","Republican" +2,4,7910,"tess",4,1,100,2,100,100,"USA Today","Democrat" +2,4,7930,"tess",3,1,27,3,27,17,"USA Today","Republican" +2,4,7942,"tess",2,1,50,2,50,8,"USA Today","Republican" +2,4,7946,"tess",2,0,50,3,50,50,"USA Today","Democrat" +2,4,7951,"tess",1,1,6,3,6,84,"USA Today","Republican" +2,4,7957,"tess",3,1,78,2,78,45,"USA Today","Democrat" +2,4,7959,"tess",2,1,15,2,15,42,"USA Today","Democrat" +2,4,7973,"tess",2,1,96,3,96,97,"USA Today","Republican" +2,4,7991,"tess",2,0,69,2,31,10,"USA Today","Republican" +2,4,7995,"tess",3,0,72,2,28,50,"USA Today","Republican" +2,4,8000,"tess",2,1,96,3,96,90,"USA Today","Democrat" +2,4,8010,"tess",2,0,91,3,9,30,"USA Today","Republican" +2,4,8019,"tess",3,0,51,2,49,83,"USA Today","Republican" +2,4,8041,"tess",3,0,49,3,51,40,"USA Today","Republican" +2,4,8042,"tess",2,0,85,2,15,15,"USA Today","Republican" +2,4,8049,"tess",1,0,62,3,38,19,"USA Today","Republican" +2,4,8050,"tess",1,0,50,2,50,100,"USA Today","Neither" +2,4,8055,"tess",1,1,80,3,80,70,"USA Today","Democrat" +2,4,8062,"tess",1,0,80,2,20,40,"USA Today","Democrat" +2,4,8064,"tess",2,1,0,2,0,18,"USA Today","Democrat" +2,4,8069,"tess",1,0,73,2,27,75,"USA Today","Democrat" +2,4,8078,"tess",4,0,61,2,39,50,"USA Today","Republican" +2,4,8152,"tess",1,0,69,3,31,17,"USA Today","Democrat" +2,4,8159,"tess",1,1,NA,3,NA,5,"USA Today","Neither" +2,4,8160,"tess",3,1,83,3,83,90,"USA Today","Democrat" +2,4,8181,"tess",1,0,100,2,0,70,"USA Today","Republican" +2,4,8190,"tess",4,0,56,2,44,51,"USA Today","Democrat" +2,4,8197,"tess",1,1,NA,2,NA,NA,"USA Today","Republican" +2,4,8199,"tess",2,0,90,2,10,10,"USA Today","Democrat" +2,4,8201,"tess",2,1,75,2,75,75,"USA Today","Democrat" +2,4,8221,"tess",4,1,90,2,90,90,"USA Today","Democrat" +2,4,8228,"tess",3,0,71,3,29,11,"USA Today","Democrat" +2,4,8232,"tess",1,1,90,3,90,100,"USA Today","Democrat" +2,4,8244,"tess",4,0,50,2,50,1,"USA Today","Republican" +2,4,8250,"tess",1,1,99,2,99,80,"USA Today","Democrat" +2,4,8252,"tess",3,0,47,2,53,100,"USA Today","Democrat" +2,4,8260,"tess",3,1,33,2,33,100,"USA Today","Neither" +2,4,8267,"tess",1,1,94,2,94,84,"USA Today","Republican" +2,4,8274,"tess",4,0,99,2,1,1,"USA Today","Republican" +2,4,8276,"tess",4,1,79,2,79,79,"USA Today","Republican" +2,4,8280,"tess",4,0,55,2,45,29,"USA Today","Democrat" +2,4,8308,"tess",1,0,10,3,90,100,"USA Today","Democrat" +2,4,8324,"tess",2,0,100,3,0,0,"USA Today","Republican" +2,4,8327,"tess",1,0,49,2,51,51,"USA Today","Democrat" +2,4,8331,"tess",3,0,30,2,70,10,"USA Today","Democrat" +2,4,8333,"tess",3,0,45,2,55,81,"USA Today","Democrat" +2,4,8337,"tess",2,1,100,2,100,95,"USA Today","Republican" +2,4,8361,"tess",4,1,60,2,60,61,"USA Today","Republican" +2,4,8374,"tess",1,0,100,3,0,0,"USA Today","Republican" +2,4,8378,"tess",1,1,98,2,98,100,"USA Today","Republican" +2,4,8406,"tess",1,1,80,2,80,60,"USA Today","Democrat" +2,4,8425,"tess",1,0,77,3,23,23,"USA Today","Democrat" +2,4,8466,"tess",2,1,79,2,79,80,"USA Today","Democrat" +2,4,8468,"tess",2,1,95,2,95,74,"USA Today","Democrat" +2,4,8489,"tess",3,1,90,3,90,10,"USA Today","Democrat" +2,4,8507,"tess",2,1,40,3,40,69,"USA Today","Democrat" +2,4,8541,"tess",3,1,78,2,78,35,"USA Today","Republican" +2,4,8544,"tess",3,0,NA,3,NA,NA,"USA Today","Democrat" +2,4,8552,"tess",3,0,50,3,50,50,"USA Today","Democrat" +2,4,8556,"tess",1,0,69,3,31,37,"USA Today","Democrat" +2,4,8558,"tess",1,0,50,3,50,61,"USA Today","Republican" +2,4,8579,"tess",1,0,10,3,90,60,"USA Today","Democrat" +2,4,8583,"tess",3,0,5,2,95,50,"USA Today","Democrat" +2,4,8607,"tess",1,1,75,3,75,72,"USA Today","Republican" +2,4,8686,"tess",1,1,NA,3,NA,NA,"USA Today","Republican" +2,4,8706,"tess",1,0,90,2,10,50,"USA Today","Republican" +2,4,8707,"tess",3,0,88,2,12,3,"USA Today","Republican" +2,4,8714,"tess",1,0,50,3,50,31,"USA Today","Democrat" +2,4,8724,"tess",1,1,84,2,84,80,"USA Today","Democrat" +2,4,8739,"tess",1,1,74,3,74,81,"USA Today","Republican" +2,4,8746,"tess",1,1,94,3,94,95,"USA Today","Republican" +2,4,8763,"tess",3,1,90,3,90,90,"USA Today","Republican" +2,4,8765,"tess",1,1,NA,3,NA,NA,"USA Today","Democrat" +2,4,8779,"tess",3,1,0,3,0,0,"USA Today","Republican" +2,4,8790,"tess",1,1,95,3,95,95,"USA Today","Republican" +2,4,8814,"tess",3,0,70,3,30,70,"USA Today","Democrat" +2,4,8819,"tess",1,0,99,3,1,7,"USA Today","Republican" +2,4,8836,"tess",2,0,88,3,12,4,"USA Today","Democrat" +2,4,8853,"tess",2,0,93,2,7,1,"USA Today","Democrat" +2,4,8866,"tess",2,0,70,2,30,16,"USA Today","Democrat" +2,4,8892,"tess",3,1,98,3,98,90,"USA Today","Democrat" +2,4,8893,"tess",1,0,0,3,100,100,"USA Today","Democrat" +2,4,8903,"tess",2,0,45,3,55,20,"USA Today","Republican" +2,4,8939,"tess",2,0,51,3,49,90,"USA Today","Democrat" +2,4,8941,"tess",1,0,71,3,29,89,"USA Today","Neither" +2,4,8956,"tess",4,0,50,2,50,50,"USA Today","Republican" +2,4,8981,"tess",1,0,80,3,20,50,"USA Today","Democrat" +2,4,8995,"tess",1,0,19,2,81,20,"USA Today","Republican" +2,4,9007,"tess",2,0,70,2,30,29,"USA Today","Democrat" +2,4,9024,"tess",2,1,60,2,60,40,"USA Today","Democrat" +2,4,9029,"tess",2,1,98,2,98,97,"USA Today","Neither" +2,4,9034,"tess",2,1,97,2,97,98,"USA Today","Republican" +2,4,9050,"tess",1,0,100,3,0,2,"USA Today","Republican" +2,4,9057,"tess",3,0,50,3,50,100,"USA Today","Republican" +2,4,9066,"tess",1,0,50,3,50,50,"USA Today","Republican" +2,4,9070,"tess",4,0,88,2,12,50,"USA Today","Democrat" +2,4,9081,"tess",4,1,80,2,80,21,"USA Today","Republican" +2,4,9083,"tess",2,0,12,3,88,80,"USA Today","Neither" +2,4,9084,"tess",2,0,10,2,90,50,"USA Today","Democrat" +2,4,9105,"tess",3,1,99,3,99,99,"USA Today","Democrat" +2,4,9106,"tess",2,1,52,2,52,71,"USA Today","Republican" +2,4,9120,"tess",2,0,50,2,50,50,"USA Today","Democrat" +2,4,9135,"tess",2,0,85,3,15,47,"USA Today","Democrat" +2,4,9148,"tess",1,0,77,2,23,11,"USA Today","Republican" +2,4,9150,"tess",3,0,100,2,0,100,"USA Today","Republican" +2,4,9152,"tess",2,0,47,3,53,39,"USA Today","Democrat" +2,4,9153,"tess",1,1,96,2,96,98,"USA Today","Democrat" +2,4,9166,"tess",1,0,99,2,1,15,"USA Today","Republican" +2,4,9169,"tess",1,1,98,3,98,95,"USA Today","Republican" +2,4,9193,"tess",1,0,91,3,9,20,"USA Today","Democrat" +2,4,9199,"tess",1,0,68,2,32,45,"USA Today","Republican" +2,4,9235,"tess",2,0,NA,3,NA,NA,"USA Today","Democrat" +2,4,9239,"tess",3,0,95,2,5,95,"USA Today","Democrat" +2,4,9245,"tess",4,1,92,2,92,91,"USA Today","Republican" +2,4,9260,"tess",1,0,50,2,50,30,"USA Today","Republican" +2,4,9281,"tess",1,1,69,3,69,80,"USA Today","Republican" +2,4,9292,"tess",1,1,9,2,9,9,"USA Today","Republican" +2,4,9297,"tess",1,0,NA,3,NA,NA,"USA Today","Republican" +2,4,9302,"tess",2,1,60,3,60,70,"USA Today","Democrat" +2,4,9314,"tess",2,0,60,3,40,20,"USA Today","Republican" +2,4,9316,"tess",1,1,94,3,94,79,"USA Today","Republican" +2,4,9319,"tess",1,1,99,3,99,99,"USA Today","Democrat" +2,4,9332,"tess",1,0,70,2,30,70,"USA Today","Democrat" +2,4,9420,"tess",3,1,24,3,24,17,"USA Today","Democrat" +2,4,9440,"tess",2,1,92,2,92,10,"USA Today","Republican" +2,4,9465,"tess",1,0,91,2,9,29,"USA Today","Republican" +2,4,9471,"tess",2,0,NA,2,NA,39,"USA Today","Democrat" +2,4,9475,"tess",1,1,10,2,10,50,"USA Today","Republican" +2,4,9479,"tess",1,0,50,2,50,50,"USA Today","Democrat" +2,4,9490,"tess",3,1,10,2,10,50,"USA Today","Republican" +2,4,9500,"tess",2,0,65,2,35,47,"USA Today","Republican" +2,4,9512,"tess",2,0,99,3,1,9,"USA Today","Democrat" +2,4,9514,"tess",4,0,77,2,23,31,"USA Today","Republican" +2,4,9532,"tess",1,0,1,3,99,1,"USA Today","Republican" +2,4,9534,"tess",3,0,50,3,50,0,"USA Today","Democrat" +2,4,9551,"tess",2,1,73,2,73,98,"USA Today","Democrat" +2,4,9563,"tess",2,0,97,3,3,7,"USA Today","Republican" +2,4,9570,"tess",1,1,81,2,81,54,"USA Today","Democrat" +2,4,9572,"tess",2,1,80,2,80,75,"USA Today","Republican" +2,4,9578,"tess",1,0,48,3,52,47,"USA Today","Republican" +2,4,9585,"tess",4,1,90,2,90,77,"USA Today","Democrat" +2,4,9601,"tess",2,1,100,3,100,99,"USA Today","Republican" +2,4,9626,"tess",2,0,10,3,90,50,"USA Today","Democrat" +2,4,9635,"tess",3,1,80,3,80,80,"USA Today","Democrat" +2,4,9642,"tess",1,0,9,3,91,90,"USA Today","Republican" +2,4,9647,"tess",2,0,27,2,73,9,"USA Today","Republican" +2,4,9663,"tess",1,1,90,2,90,86,"USA Today","Democrat" +2,4,9676,"tess",1,1,87,3,87,80,"USA Today","Democrat" +2,4,9679,"tess",4,0,50,2,50,2,"USA Today","Republican" +2,4,9681,"tess",1,0,90,3,10,8,"USA Today","Democrat" +2,4,9684,"tess",3,0,91,3,9,8,"USA Today","Democrat" +2,4,9685,"tess",1,1,11,2,11,99,"USA Today","Republican" +2,4,9693,"tess",3,0,61,3,39,36,"USA Today","Neither" +2,4,9701,"tess",3,0,100,2,0,55,"USA Today","Democrat" +2,4,9703,"tess",2,1,80,3,80,80,"USA Today","Democrat" +2,4,9711,"tess",2,0,90,2,10,70,"USA Today","Neither" +2,4,9731,"tess",2,0,19,2,81,43,"USA Today","Democrat" +2,4,9741,"tess",3,1,99,3,99,99,"USA Today","Republican" +3,NA,51,"tess",4,1,50,1,50,NA,NA,"Neither" +3,NA,53,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,62,"tess",3,1,3,1,3,NA,NA,"Democrat" +3,NA,64,"tess",1,1,30,1,30,NA,NA,"Democrat" +3,NA,68,"tess",1,0,34,1,66,NA,NA,"Democrat" +3,NA,69,"tess",1,0,50,1,50,NA,NA,"Neither" +3,NA,70,"tess",2,0,57,1,43,NA,NA,"Republican" +3,NA,72,"tess",4,1,23,1,23,NA,NA,"Democrat" +3,NA,77,"tess",2,1,28,1,28,NA,NA,"Democrat" +3,NA,78,"tess",3,1,9,1,9,NA,NA,"Democrat" +3,NA,80,"tess",4,1,70,1,70,NA,NA,"Republican" +3,NA,90,"tess",4,1,61,1,61,NA,NA,"Democrat" +3,NA,94,"tess",3,1,90,1,90,NA,NA,"Republican" +3,NA,95,"tess",2,1,92,1,92,NA,NA,"Democrat" +3,NA,96,"tess",2,1,97,1,97,NA,NA,"Democrat" +3,NA,114,"tess",3,1,99,1,99,NA,NA,"Republican" +3,NA,118,"tess",3,0,60,1,40,NA,NA,"Democrat" +3,NA,120,"tess",2,0,70,1,30,NA,NA,"Democrat" +3,NA,128,"tess",1,1,70,1,70,NA,NA,"Republican" +3,NA,130,"tess",3,1,78,1,78,NA,NA,"Republican" +3,NA,136,"tess",1,0,60,1,40,NA,NA,"Democrat" +3,NA,140,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,151,"tess",3,0,93,1,7,NA,NA,"Republican" +3,NA,152,"tess",2,1,95,1,95,NA,NA,"Neither" +3,NA,165,"tess",1,1,30,1,30,NA,NA,"Democrat" +3,NA,182,"tess",3,0,80,1,20,NA,NA,"Democrat" +3,NA,187,"tess",1,0,40,1,60,NA,NA,"Republican" +3,NA,188,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,189,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,196,"tess",4,0,93,1,7,NA,NA,"Democrat" +3,NA,206,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,207,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,216,"tess",3,1,51,1,51,NA,NA,"Democrat" +3,NA,221,"tess",3,0,99,1,1,NA,NA,"Democrat" +3,NA,224,"tess",2,0,71,1,29,NA,NA,"Democrat" +3,NA,234,"tess",3,0,99,1,1,NA,NA,"Democrat" +3,NA,247,"tess",3,0,43,1,57,NA,NA,"Republican" +3,NA,262,"tess",3,0,1,1,99,NA,NA,"Democrat" +3,NA,263,"tess",3,1,76,1,76,NA,NA,"Neither" +3,NA,266,"tess",3,0,30,1,70,NA,NA,"Democrat" +3,NA,296,"tess",4,1,81,1,81,NA,NA,"Republican" +3,NA,299,"tess",1,1,10,1,10,NA,NA,"Democrat" +3,NA,301,"tess",3,1,40,1,40,NA,NA,"Democrat" +3,NA,308,"tess",4,1,95,1,95,NA,NA,"Democrat" +3,NA,315,"tess",2,1,89,1,89,NA,NA,"Democrat" +3,NA,334,"tess",2,0,85,1,15,NA,NA,"Democrat" +3,NA,336,"tess",4,1,90,1,90,NA,NA,"Republican" +3,NA,342,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,347,"tess",1,0,76,1,24,NA,NA,"Democrat" +3,NA,363,"tess",1,1,97,1,97,NA,NA,"Republican" +3,NA,366,"tess",2,1,85,1,85,NA,NA,"Democrat" +3,NA,372,"tess",1,0,70,1,30,NA,NA,"Republican" +3,NA,379,"tess",4,0,10,1,90,NA,NA,"Democrat" +3,NA,389,"tess",4,1,80,1,80,NA,NA,"Democrat" +3,NA,397,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,399,"tess",1,0,13,1,87,NA,NA,"Neither" +3,NA,405,"tess",1,0,100,1,0,NA,NA,"Republican" +3,NA,413,"tess",1,0,52,1,48,NA,NA,"Democrat" +3,NA,421,"tess",2,0,91,1,9,NA,NA,"Democrat" +3,NA,426,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,430,"tess",3,1,60,1,60,NA,NA,"Republican" +3,NA,431,"tess",3,0,58,1,42,NA,NA,"Democrat" +3,NA,440,"tess",4,0,99,1,1,NA,NA,"Democrat" +3,NA,443,"tess",3,0,100,1,0,NA,NA,"Republican" +3,NA,450,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,461,"tess",4,1,13,1,13,NA,NA,"Republican" +3,NA,478,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,482,"tess",4,0,72,1,28,NA,NA,"Democrat" +3,NA,485,"tess",3,0,83,1,17,NA,NA,"Democrat" +3,NA,491,"tess",3,0,90,1,10,NA,NA,"Neither" +3,NA,493,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,502,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,503,"tess",4,1,100,1,100,NA,NA,"Republican" +3,NA,508,"tess",2,0,12,1,88,NA,NA,"Republican" +3,NA,509,"tess",1,0,50,1,50,NA,NA,"Democrat" +3,NA,512,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,516,"tess",4,0,5,1,95,NA,NA,"Democrat" +3,NA,522,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,530,"tess",2,0,94,1,6,NA,NA,"Republican" +3,NA,541,"tess",4,0,69,1,31,NA,NA,"Democrat" +3,NA,542,"tess",1,0,98,1,2,NA,NA,"Republican" +3,NA,549,"tess",1,0,50,1,50,NA,NA,"Democrat" +3,NA,550,"tess",3,0,93,1,7,NA,NA,"Republican" +3,NA,567,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,573,"tess",2,0,70,1,30,NA,NA,"Democrat" +3,NA,574,"tess",2,1,39,1,39,NA,NA,"Democrat" +3,NA,584,"tess",3,1,34,1,34,NA,NA,"Democrat" +3,NA,589,"tess",1,1,100,1,100,NA,NA,"Republican" +3,NA,591,"tess",2,0,21,1,79,NA,NA,"Democrat" +3,NA,596,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,600,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,602,"tess",2,1,16,1,16,NA,NA,"Democrat" +3,NA,603,"tess",4,0,80,1,20,NA,NA,"Democrat" +3,NA,608,"tess",2,1,90,1,90,NA,NA,"Democrat" +3,NA,611,"tess",3,0,97,1,3,NA,NA,"Republican" +3,NA,617,"tess",2,0,1,1,99,NA,NA,"Republican" +3,NA,622,"tess",4,1,24,1,24,NA,NA,"Democrat" +3,NA,627,"tess",4,0,86,1,14,NA,NA,"Democrat" +3,NA,633,"tess",3,0,39,1,61,NA,NA,"Democrat" +3,NA,638,"tess",1,1,36,1,36,NA,NA,"Republican" +3,NA,639,"tess",1,1,20,1,20,NA,NA,"Democrat" +3,NA,649,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,675,"tess",2,1,5,1,5,NA,NA,"Democrat" +3,NA,680,"tess",3,1,13,1,13,NA,NA,"Republican" +3,NA,684,"tess",2,0,50,1,50,NA,NA,"Republican" +3,NA,689,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,693,"tess",2,1,30,1,30,NA,NA,"Republican" +3,NA,702,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,709,"tess",4,1,100,1,100,NA,NA,"Republican" +3,NA,711,"tess",4,1,91,1,91,NA,NA,"Democrat" +3,NA,717,"tess",3,0,100,1,0,NA,NA,"Republican" +3,NA,727,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,728,"tess",1,0,97,1,3,NA,NA,"Democrat" +3,NA,734,"tess",2,0,94,1,6,NA,NA,"Republican" +3,NA,740,"tess",2,0,90,1,10,NA,NA,"Democrat" +3,NA,752,"tess",3,1,18,1,18,NA,NA,"Democrat" +3,NA,753,"tess",3,0,90,1,10,NA,NA,"Republican" +3,NA,766,"tess",2,1,57,1,57,NA,NA,"Republican" +3,NA,770,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,771,"tess",4,0,77,1,23,NA,NA,"Democrat" +3,NA,772,"tess",3,0,72,1,28,NA,NA,"Republican" +3,NA,773,"tess",2,1,77,1,77,NA,NA,"Democrat" +3,NA,783,"tess",4,1,16,1,16,NA,NA,"Democrat" +3,NA,786,"tess",1,0,20,1,80,NA,NA,"Republican" +3,NA,794,"tess",2,1,56,1,56,NA,NA,"Democrat" +3,NA,803,"tess",3,0,40,1,60,NA,NA,"Democrat" +3,NA,804,"tess",4,0,84,1,16,NA,NA,"Democrat" +3,NA,806,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,823,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,828,"tess",1,1,80,1,80,NA,NA,"Neither" +3,NA,829,"tess",1,1,50,1,50,NA,NA,"Neither" +3,NA,836,"tess",2,0,67,1,33,NA,NA,"Democrat" +3,NA,845,"tess",1,1,78,1,78,NA,NA,"Republican" +3,NA,847,"tess",3,0,70,1,30,NA,NA,"Democrat" +3,NA,851,"tess",3,1,51,1,51,NA,NA,"Republican" +3,NA,852,"tess",2,1,64,1,64,NA,NA,"Democrat" +3,NA,855,"tess",4,1,10,1,10,NA,NA,"Republican" +3,NA,857,"tess",3,0,11,1,89,NA,NA,"Democrat" +3,NA,861,"tess",3,0,97,1,3,NA,NA,"Democrat" +3,NA,878,"tess",2,0,90,1,10,NA,NA,"Democrat" +3,NA,883,"tess",1,0,85,1,15,NA,NA,"Democrat" +3,NA,886,"tess",1,1,96,1,96,NA,NA,"Republican" +3,NA,890,"tess",4,0,58,1,42,NA,NA,"Republican" +3,NA,891,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,895,"tess",1,1,10,1,10,NA,NA,"Democrat" +3,NA,898,"tess",2,0,50,1,50,NA,NA,"Republican" +3,NA,903,"tess",2,1,86,1,86,NA,NA,"Republican" +3,NA,912,"tess",1,1,0,1,0,NA,NA,"Democrat" +3,NA,918,"tess",3,0,71,1,29,NA,NA,"Republican" +3,NA,919,"tess",1,1,97,1,97,NA,NA,"Democrat" +3,NA,922,"tess",1,0,74,1,26,NA,NA,"Republican" +3,NA,928,"tess",3,0,50,1,50,NA,NA,"Republican" +3,NA,943,"tess",1,1,97,1,97,NA,NA,"Republican" +3,NA,950,"tess",3,1,70,1,70,NA,NA,"Democrat" +3,NA,952,"tess",3,0,79,1,21,NA,NA,"Republican" +3,NA,958,"tess",1,1,3,1,3,NA,NA,"Democrat" +3,NA,961,"tess",3,0,61,1,39,NA,NA,"Democrat" +3,NA,968,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,978,"tess",4,0,57,1,43,NA,NA,"Democrat" +3,NA,985,"tess",4,0,20,1,80,NA,NA,"Republican" +3,NA,990,"tess",4,1,22,1,22,NA,NA,"Republican" +3,NA,997,"tess",3,1,79,1,79,NA,NA,"Democrat" +3,NA,1018,"tess",2,1,70,1,70,NA,NA,"Republican" +3,NA,1020,"tess",2,1,51,1,51,NA,NA,"Republican" +3,NA,1031,"tess",2,1,10,1,10,NA,NA,"Democrat" +3,NA,1035,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,1036,"tess",1,1,99,1,99,NA,NA,"Republican" +3,NA,1046,"tess",2,1,90,1,90,NA,NA,"Republican" +3,NA,1047,"tess",1,1,34,1,34,NA,NA,"Republican" +3,NA,1051,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,1055,"tess",4,0,80,1,20,NA,NA,"Republican" +3,NA,1058,"tess",2,1,60,1,60,NA,NA,"Republican" +3,NA,1062,"tess",4,1,38,1,38,NA,NA,"Democrat" +3,NA,1064,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,1065,"tess",3,0,16,1,84,NA,NA,"Republican" +3,NA,1066,"tess",1,0,58,1,42,NA,NA,"Democrat" +3,NA,1067,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,1068,"tess",4,0,97,1,3,NA,NA,"Republican" +3,NA,1081,"tess",3,1,9,1,9,NA,NA,"Democrat" +3,NA,1083,"tess",3,0,30,1,70,NA,NA,"Democrat" +3,NA,1084,"tess",3,0,42,1,58,NA,NA,"Republican" +3,NA,1087,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,1096,"tess",2,0,0,1,100,NA,NA,"Democrat" +3,NA,1097,"tess",4,1,82,1,82,NA,NA,"Republican" +3,NA,1100,"tess",1,1,24,1,24,NA,NA,"Republican" +3,NA,1104,"tess",3,1,80,1,80,NA,NA,"Democrat" +3,NA,1110,"tess",1,0,98,1,2,NA,NA,"Neither" +3,NA,1114,"tess",4,0,89,1,11,NA,NA,"Neither" +3,NA,1119,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,1122,"tess",3,0,99,1,1,NA,NA,"Republican" +3,NA,1133,"tess",2,0,95,1,5,NA,NA,"Republican" +3,NA,1141,"tess",3,0,20,1,80,NA,NA,"Democrat" +3,NA,1147,"tess",1,0,97,1,3,NA,NA,"Democrat" +3,NA,1148,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,1149,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,1150,"tess",2,1,42,1,42,NA,NA,"Democrat" +3,NA,1156,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,1172,"tess",2,1,96,1,96,NA,NA,"Republican" +3,NA,1178,"tess",2,1,23,1,23,NA,NA,"Republican" +3,NA,1182,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,1192,"tess",1,1,40,1,40,NA,NA,"Democrat" +3,NA,1193,"tess",3,1,1,1,1,NA,NA,"Democrat" +3,NA,1208,"tess",4,1,66,1,66,NA,NA,"Republican" +3,NA,1220,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,1235,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,1246,"tess",4,0,90,1,10,NA,NA,"Republican" +3,NA,1256,"tess",1,0,94,1,6,NA,NA,"Democrat" +3,NA,1259,"tess",1,1,71,1,71,NA,NA,"Democrat" +3,NA,1260,"tess",4,0,62,1,38,NA,NA,"Democrat" +3,NA,1265,"tess",2,1,85,1,85,NA,NA,"Republican" +3,NA,1277,"tess",2,0,99,1,1,NA,NA,"Republican" +3,NA,1282,"tess",2,1,64,1,64,NA,NA,"Republican" +3,NA,1284,"tess",3,0,61,1,39,NA,NA,"Democrat" +3,NA,1285,"tess",1,0,51,1,49,NA,NA,"Neither" +3,NA,1288,"tess",4,0,70,1,30,NA,NA,"Republican" +3,NA,1304,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,1306,"tess",2,0,95,1,5,NA,NA,"Democrat" +3,NA,1307,"tess",4,1,30,1,30,NA,NA,"Republican" +3,NA,1309,"tess",2,1,70,1,70,NA,NA,"Democrat" +3,NA,1311,"tess",3,1,10,1,10,NA,NA,"Democrat" +3,NA,1314,"tess",3,1,71,1,71,NA,NA,"Democrat" +3,NA,1321,"tess",1,0,85,1,15,NA,NA,"Republican" +3,NA,1330,"tess",3,1,52,1,52,NA,NA,"Republican" +3,NA,1336,"tess",1,1,60,1,60,NA,NA,"Republican" +3,NA,1348,"tess",3,1,79,1,79,NA,NA,"Democrat" +3,NA,1356,"tess",2,1,83,1,83,NA,NA,"Republican" +3,NA,1366,"tess",3,0,80,1,20,NA,NA,"Democrat" +3,NA,1376,"tess",3,1,80,1,80,NA,NA,"Democrat" +3,NA,1382,"tess",1,1,100,1,100,NA,NA,"Republican" +3,NA,1397,"tess",1,1,0,1,0,NA,NA,"Democrat" +3,NA,1402,"tess",4,1,0,1,0,NA,NA,"Republican" +3,NA,1408,"tess",3,0,10,1,90,NA,NA,"Democrat" +3,NA,1416,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,1418,"tess",3,0,91,1,9,NA,NA,"Republican" +3,NA,1419,"tess",3,0,58,1,42,NA,NA,"Republican" +3,NA,1426,"tess",1,0,40,1,60,NA,NA,"Democrat" +3,NA,1444,"tess",4,0,60,1,40,NA,NA,"Democrat" +3,NA,1445,"tess",1,0,85,1,15,NA,NA,"Republican" +3,NA,1454,"tess",3,1,89,1,89,NA,NA,"Democrat" +3,NA,1461,"tess",2,1,72,1,72,NA,NA,"Democrat" +3,NA,1464,"tess",1,0,42,1,58,NA,NA,"Democrat" +3,NA,1468,"tess",3,1,65,1,65,NA,NA,"Republican" +3,NA,1485,"tess",2,0,69,1,31,NA,NA,"Democrat" +3,NA,1486,"tess",3,1,26,1,26,NA,NA,"Democrat" +3,NA,1491,"tess",1,0,100,1,0,NA,NA,"Republican" +3,NA,1500,"tess",1,1,0,1,0,NA,NA,"Democrat" +3,NA,1506,"tess",1,0,71,1,29,NA,NA,"Democrat" +3,NA,1507,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,1510,"tess",2,1,70,1,70,NA,NA,"Republican" +3,NA,1511,"tess",2,0,25,1,75,NA,NA,"Republican" +3,NA,1518,"tess",2,1,74,1,74,NA,NA,"Democrat" +3,NA,1523,"tess",2,0,50,1,50,NA,NA,"Republican" +3,NA,1530,"tess",4,0,49,1,51,NA,NA,"Republican" +3,NA,1532,"tess",2,0,64,1,36,NA,NA,"Republican" +3,NA,1541,"tess",1,0,30,1,70,NA,NA,"Republican" +3,NA,1551,"tess",2,0,93,1,7,NA,NA,"Republican" +3,NA,1552,"tess",3,0,52,1,48,NA,NA,"Republican" +3,NA,1553,"tess",2,1,85,1,85,NA,NA,"Democrat" +3,NA,1556,"tess",2,0,75,1,25,NA,NA,"Democrat" +3,NA,1563,"tess",2,1,91,1,91,NA,NA,"Republican" +3,NA,1565,"tess",2,1,90,1,90,NA,NA,"Democrat" +3,NA,1600,"tess",3,1,98,1,98,NA,NA,"Republican" +3,NA,1605,"tess",2,0,73,1,27,NA,NA,"Republican" +3,NA,1608,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,1618,"tess",2,0,33,1,67,NA,NA,"Republican" +3,NA,1624,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,1631,"tess",3,0,57,1,43,NA,NA,"Democrat" +3,NA,1634,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,1644,"tess",1,1,14,1,14,NA,NA,"Democrat" +3,NA,1654,"tess",2,0,67,1,33,NA,NA,"Democrat" +3,NA,1657,"tess",4,1,90,1,90,NA,NA,"Republican" +3,NA,1663,"tess",3,0,66,1,34,NA,NA,"Neither" +3,NA,1668,"tess",1,1,82,1,82,NA,NA,"Democrat" +3,NA,1669,"tess",3,1,84,1,84,NA,NA,"Democrat" +3,NA,1673,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,1674,"tess",2,0,93,1,7,NA,NA,"Republican" +3,NA,1689,"tess",4,1,97,1,97,NA,NA,"Democrat" +3,NA,1702,"tess",4,0,94,1,6,NA,NA,"Neither" +3,NA,1706,"tess",3,1,20,1,20,NA,NA,"Democrat" +3,NA,1724,"tess",3,0,70,1,30,NA,NA,"Democrat" +3,NA,1726,"tess",4,0,60,1,40,NA,NA,"Democrat" +3,NA,1728,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,1733,"tess",1,1,99,1,99,NA,NA,"Democrat" +3,NA,1739,"tess",3,0,45,1,55,NA,NA,"Republican" +3,NA,1756,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,1767,"tess",1,1,49,1,49,NA,NA,"Republican" +3,NA,1775,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,1798,"tess",2,0,95,1,5,NA,NA,"Democrat" +3,NA,1799,"tess",4,1,NA,1,NA,NA,NA,"Republican" +3,NA,1799,"tess",4,1,NA,2,NA,NA,NA,"Republican" +3,NA,1813,"tess",2,1,61,1,61,NA,NA,"Democrat" +3,NA,1815,"tess",4,0,81,1,19,NA,NA,"Republican" +3,NA,1824,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,1832,"tess",4,1,90,1,90,NA,NA,"Republican" +3,NA,1834,"tess",3,0,12,1,88,NA,NA,"Neither" +3,NA,1835,"tess",1,0,0,1,100,NA,NA,"Neither" +3,NA,1841,"tess",1,1,79,1,79,NA,NA,"Republican" +3,NA,1847,"tess",2,1,80,1,80,NA,NA,"Republican" +3,NA,1850,"tess",2,0,30,1,70,NA,NA,"Republican" +3,NA,1851,"tess",3,0,79,1,21,NA,NA,"Democrat" +3,NA,1856,"tess",2,1,76,1,76,NA,NA,"Republican" +3,NA,1857,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,1863,"tess",3,1,70,1,70,NA,NA,"Republican" +3,NA,1870,"tess",1,1,71,1,71,NA,NA,"Republican" +3,NA,1890,"tess",4,0,85,1,15,NA,NA,"Democrat" +3,NA,1891,"tess",3,0,0,1,100,NA,NA,"Republican" +3,NA,1898,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,1899,"tess",1,0,99,1,1,NA,NA,"Democrat" +3,NA,1900,"tess",2,0,91,1,9,NA,NA,"Republican" +3,NA,1902,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,1910,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,1924,"tess",3,0,93,1,7,NA,NA,"Democrat" +3,NA,1928,"tess",1,1,47,1,47,NA,NA,"Democrat" +3,NA,1930,"tess",2,1,74,1,74,NA,NA,"Democrat" +3,NA,1933,"tess",2,0,72,1,28,NA,NA,"Democrat" +3,NA,1935,"tess",1,0,76,1,24,NA,NA,"Republican" +3,NA,1939,"tess",4,0,30,1,70,NA,NA,"Democrat" +3,NA,1940,"tess",2,1,40,1,40,NA,NA,"Democrat" +3,NA,1945,"tess",4,0,15,1,85,NA,NA,"Democrat" +3,NA,1950,"tess",2,1,16,1,16,NA,NA,"Republican" +3,NA,1952,"tess",1,1,9,1,9,NA,NA,"Democrat" +3,NA,1953,"tess",3,0,11,1,89,NA,NA,"Republican" +3,NA,1960,"tess",4,1,59,1,59,NA,NA,"Republican" +3,NA,1966,"tess",2,0,85,1,15,NA,NA,"Republican" +3,NA,1973,"tess",3,1,70,1,70,NA,NA,"Democrat" +3,NA,1976,"tess",4,1,97,1,97,NA,NA,"Republican" +3,NA,1981,"tess",2,0,35,1,65,NA,NA,"Democrat" +3,NA,1982,"tess",3,0,71,1,29,NA,NA,"Democrat" +3,NA,1992,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,1994,"tess",3,0,50,1,50,NA,NA,"Republican" +3,NA,2001,"tess",3,1,23,1,23,NA,NA,"Republican" +3,NA,2017,"tess",2,0,25,1,75,NA,NA,"Democrat" +3,NA,2030,"tess",4,0,91,1,9,NA,NA,"Democrat" +3,NA,2033,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,2044,"tess",1,1,68,1,68,NA,NA,"Republican" +3,NA,2049,"tess",2,1,33,1,33,NA,NA,"Democrat" +3,NA,2056,"tess",2,0,35,1,65,NA,NA,"Republican" +3,NA,2057,"tess",3,0,20,1,80,NA,NA,"Republican" +3,NA,2060,"tess",4,0,40,1,60,NA,NA,"Democrat" +3,NA,2061,"tess",2,1,94,1,94,NA,NA,"Democrat" +3,NA,2066,"tess",1,0,3,1,97,NA,NA,"Republican" +3,NA,2072,"tess",1,0,96,1,4,NA,NA,"Democrat" +3,NA,2080,"tess",1,1,53,1,53,NA,NA,"Democrat" +3,NA,2082,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,2088,"tess",1,0,91,1,9,NA,NA,"Democrat" +3,NA,2090,"tess",2,0,98,1,2,NA,NA,"Democrat" +3,NA,2097,"tess",2,0,81,1,19,NA,NA,"Republican" +3,NA,2099,"tess",3,1,81,1,81,NA,NA,"Republican" +3,NA,2100,"tess",3,1,59,1,59,NA,NA,"Democrat" +3,NA,2104,"tess",4,0,1,1,99,NA,NA,"Republican" +3,NA,2107,"tess",2,0,79,1,21,NA,NA,"Republican" +3,NA,2120,"tess",2,0,80,1,20,NA,NA,"Republican" +3,NA,2124,"tess",1,0,87,1,13,NA,NA,"Republican" +3,NA,2137,"tess",4,1,86,1,86,NA,NA,"Democrat" +3,NA,2141,"tess",1,1,81,1,81,NA,NA,"Democrat" +3,NA,2147,"tess",1,0,89,1,11,NA,NA,"Democrat" +3,NA,2153,"tess",3,0,96,1,4,NA,NA,"Democrat" +3,NA,2169,"tess",4,1,84,1,84,NA,NA,"Democrat" +3,NA,2179,"tess",3,0,9,1,91,NA,NA,"Democrat" +3,NA,2180,"tess",1,1,63,1,63,NA,NA,"Democrat" +3,NA,2187,"tess",1,0,56,1,44,NA,NA,"Democrat" +3,NA,2188,"tess",1,0,99,1,1,NA,NA,"Republican" +3,NA,2190,"tess",1,0,99,1,1,NA,NA,"Neither" +3,NA,2195,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,2196,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,2197,"tess",4,0,78,1,22,NA,NA,"Republican" +3,NA,2207,"tess",2,1,62,1,62,NA,NA,"Republican" +3,NA,2208,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,2211,"tess",4,1,80,1,80,NA,NA,"Republican" +3,NA,2213,"tess",3,1,50,1,50,NA,NA,"Neither" +3,NA,2215,"tess",4,0,61,1,39,NA,NA,"Republican" +3,NA,2218,"tess",4,0,97,1,3,NA,NA,"Republican" +3,NA,2225,"tess",3,1,99,1,99,NA,NA,"Republican" +3,NA,2228,"tess",2,1,17,1,17,NA,NA,"Democrat" +3,NA,2230,"tess",1,1,96,1,96,NA,NA,"Republican" +3,NA,2235,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,2238,"tess",2,1,22,1,22,NA,NA,"Democrat" +3,NA,2242,"tess",1,0,20,1,80,NA,NA,"Republican" +3,NA,2248,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,2253,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,2271,"tess",1,0,81,1,19,NA,NA,"Democrat" +3,NA,2272,"tess",1,0,40,1,60,NA,NA,"Democrat" +3,NA,2275,"tess",3,1,77,1,77,NA,NA,"Republican" +3,NA,2278,"tess",4,1,50,1,50,NA,NA,"Neither" +3,NA,2283,"tess",4,0,60,1,40,NA,NA,"Democrat" +3,NA,2286,"tess",3,0,11,1,89,NA,NA,"Democrat" +3,NA,2287,"tess",3,1,30,1,30,NA,NA,"Democrat" +3,NA,2291,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,2308,"tess",2,0,4,1,96,NA,NA,"Democrat" +3,NA,2313,"tess",1,0,5,1,95,NA,NA,"Democrat" +3,NA,2315,"tess",2,1,54,1,54,NA,NA,"Democrat" +3,NA,2318,"tess",3,0,60,1,40,NA,NA,"Democrat" +3,NA,2322,"tess",2,0,56,1,44,NA,NA,"Republican" +3,NA,2337,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,2353,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,2356,"tess",2,0,80,1,20,NA,NA,"Republican" +3,NA,2359,"tess",4,0,1,1,99,NA,NA,"Democrat" +3,NA,2378,"tess",3,0,96,1,4,NA,NA,"Democrat" +3,NA,2379,"tess",3,0,69,1,31,NA,NA,"Republican" +3,NA,2381,"tess",2,0,78,1,22,NA,NA,"Democrat" +3,NA,2382,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,2383,"tess",4,0,90,1,10,NA,NA,"Republican" +3,NA,2393,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,2394,"tess",4,1,70,1,70,NA,NA,"Democrat" +3,NA,2398,"tess",3,1,25,1,25,NA,NA,"Democrat" +3,NA,2399,"tess",2,0,81,1,19,NA,NA,"Democrat" +3,NA,2405,"tess",3,1,0,1,0,NA,NA,"Democrat" +3,NA,2407,"tess",3,1,81,1,81,NA,NA,"Republican" +3,NA,2412,"tess",1,1,70,1,70,NA,NA,"Democrat" +3,NA,2424,"tess",3,1,85,1,85,NA,NA,"Republican" +3,NA,2434,"tess",2,0,84,1,16,NA,NA,"Democrat" +3,NA,2435,"tess",1,1,23,1,23,NA,NA,"Democrat" +3,NA,2445,"tess",4,1,88,1,88,NA,NA,"Republican" +3,NA,2447,"tess",2,0,94,1,6,NA,NA,"Democrat" +3,NA,2459,"tess",3,0,70,1,30,NA,NA,"Democrat" +3,NA,2460,"tess",3,1,33,1,33,NA,NA,"Democrat" +3,NA,2468,"tess",2,0,75,1,25,NA,NA,"Democrat" +3,NA,2474,"tess",1,0,99,1,1,NA,NA,"Democrat" +3,NA,2483,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,2484,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,2485,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,2486,"tess",4,0,27,1,73,NA,NA,"Republican" +3,NA,2488,"tess",2,0,70,1,30,NA,NA,"Democrat" +3,NA,2492,"tess",2,1,91,1,91,NA,NA,"Democrat" +3,NA,2498,"tess",1,0,51,1,49,NA,NA,"Republican" +3,NA,2508,"tess",1,1,89,1,89,NA,NA,"Democrat" +3,NA,2511,"tess",4,0,81,1,19,NA,NA,"Democrat" +3,NA,2512,"tess",1,1,71,1,71,NA,NA,"Republican" +3,NA,2514,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,2518,"tess",1,1,97,1,97,NA,NA,"Republican" +3,NA,2519,"tess",3,0,64,1,36,NA,NA,"Democrat" +3,NA,2520,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,2525,"tess",2,1,20,1,20,NA,NA,"Republican" +3,NA,2528,"tess",3,0,75,1,25,NA,NA,"Democrat" +3,NA,2529,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,2532,"tess",1,0,6,1,94,NA,NA,"Democrat" +3,NA,2536,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,2537,"tess",3,0,56,1,44,NA,NA,"Republican" +3,NA,2542,"tess",1,0,50,1,50,NA,NA,"Neither" +3,NA,2545,"tess",3,1,81,1,81,NA,NA,"Democrat" +3,NA,2547,"tess",2,1,10,1,10,NA,NA,"Republican" +3,NA,2557,"tess",1,0,50,1,50,NA,NA,"Democrat" +3,NA,2578,"tess",2,0,15,1,85,NA,NA,"Republican" +3,NA,2581,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,2592,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,2599,"tess",4,1,80,1,80,NA,NA,"Republican" +3,NA,2608,"tess",1,0,97,1,3,NA,NA,"Democrat" +3,NA,2611,"tess",3,1,69,1,69,NA,NA,"Neither" +3,NA,2623,"tess",2,1,68,1,68,NA,NA,"Democrat" +3,NA,2630,"tess",1,0,81,1,19,NA,NA,"Republican" +3,NA,2632,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,2644,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,2658,"tess",2,1,1,1,1,NA,NA,"Republican" +3,NA,2659,"tess",3,0,2,1,98,NA,NA,"Republican" +3,NA,2664,"tess",3,0,82,1,18,NA,NA,"Democrat" +3,NA,2669,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,2670,"tess",1,1,70,1,70,NA,NA,"Neither" +3,NA,2671,"tess",3,0,72,1,28,NA,NA,"Republican" +3,NA,2695,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,2698,"tess",1,0,25,1,75,NA,NA,"Republican" +3,NA,2700,"tess",3,1,40,1,40,NA,NA,"Democrat" +3,NA,2707,"tess",3,1,26,1,26,NA,NA,"Democrat" +3,NA,2709,"tess",2,1,61,1,61,NA,NA,"Democrat" +3,NA,2714,"tess",3,1,91,1,91,NA,NA,"Democrat" +3,NA,2715,"tess",3,0,35,1,65,NA,NA,"Republican" +3,NA,2720,"tess",2,0,85,1,15,NA,NA,"Republican" +3,NA,2722,"tess",2,0,0,1,100,NA,NA,"Democrat" +3,NA,2731,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,2733,"tess",3,1,2,1,2,NA,NA,"Democrat" +3,NA,2740,"tess",1,0,0,1,100,NA,NA,"Democrat" +3,NA,2741,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,2745,"tess",3,0,79,1,21,NA,NA,"Republican" +3,NA,2760,"tess",4,0,31,1,69,NA,NA,"Republican" +3,NA,2764,"tess",3,0,67,1,33,NA,NA,"Republican" +3,NA,2765,"tess",1,0,85,1,15,NA,NA,"Republican" +3,NA,2767,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,2771,"tess",2,0,51,1,49,NA,NA,"Democrat" +3,NA,2773,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,2774,"tess",4,1,95,1,95,NA,NA,"Republican" +3,NA,2778,"tess",2,1,74,1,74,NA,NA,"Republican" +3,NA,2779,"tess",4,0,80,1,20,NA,NA,"Democrat" +3,NA,2784,"tess",3,0,90,1,10,NA,NA,"Republican" +3,NA,2795,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,2797,"tess",3,1,15,1,15,NA,NA,"Democrat" +3,NA,2799,"tess",4,1,45,1,45,NA,NA,"Republican" +3,NA,2804,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,2808,"tess",2,0,92,1,8,NA,NA,"Democrat" +3,NA,2818,"tess",4,1,21,1,21,NA,NA,"Democrat" +3,NA,2827,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,2828,"tess",2,0,81,1,19,NA,NA,"Republican" +3,NA,2829,"tess",2,1,40,1,40,NA,NA,"Democrat" +3,NA,2843,"tess",1,1,4,1,4,NA,NA,"Democrat" +3,NA,2852,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,2863,"tess",3,1,95,1,95,NA,NA,"Republican" +3,NA,2885,"tess",3,0,50,1,50,NA,NA,"Republican" +3,NA,2888,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,2892,"tess",2,1,60,1,60,NA,NA,"Democrat" +3,NA,2893,"tess",1,0,10,1,90,NA,NA,"Republican" +3,NA,2902,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,2903,"tess",3,0,87,1,13,NA,NA,"Democrat" +3,NA,2905,"tess",4,0,61,1,39,NA,NA,"Democrat" +3,NA,2906,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,2915,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,2917,"tess",1,0,86,1,14,NA,NA,"Republican" +3,NA,2923,"tess",2,0,45,1,55,NA,NA,"Neither" +3,NA,2934,"tess",1,0,51,1,49,NA,NA,"Democrat" +3,NA,2936,"tess",3,1,43,1,43,NA,NA,"Democrat" +3,NA,2938,"tess",2,1,100,1,100,NA,NA,"Republican" +3,NA,2940,"tess",1,1,99,1,99,NA,NA,"Republican" +3,NA,2945,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,2953,"tess",3,1,90,1,90,NA,NA,"Neither" +3,NA,2970,"tess",2,1,100,1,100,NA,NA,"Neither" +3,NA,2979,"tess",1,1,25,1,25,NA,NA,"Democrat" +3,NA,2981,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,2982,"tess",4,0,30,1,70,NA,NA,"Democrat" +3,NA,2983,"tess",2,0,82,1,18,NA,NA,"Democrat" +3,NA,2987,"tess",4,1,100,1,100,NA,NA,"Republican" +3,NA,2988,"tess",4,0,99,1,1,NA,NA,"Democrat" +3,NA,2990,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,2998,"tess",1,1,26,1,26,NA,NA,"Republican" +3,NA,3006,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,3011,"tess",2,0,62,1,38,NA,NA,"Republican" +3,NA,3020,"tess",4,0,82,1,18,NA,NA,"Democrat" +3,NA,3021,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,3025,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,3028,"tess",3,0,81,1,19,NA,NA,"Democrat" +3,NA,3029,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,3039,"tess",1,1,81,1,81,NA,NA,"Republican" +3,NA,3043,"tess",2,1,47,1,47,NA,NA,"Democrat" +3,NA,3047,"tess",1,0,49,1,51,NA,NA,"Democrat" +3,NA,3048,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,3051,"tess",1,0,40,1,60,NA,NA,"Republican" +3,NA,3062,"tess",3,1,72,1,72,NA,NA,"Neither" +3,NA,3068,"tess",2,1,10,1,10,NA,NA,"Democrat" +3,NA,3071,"tess",2,1,63,1,63,NA,NA,"Democrat" +3,NA,3072,"tess",1,0,99,1,1,NA,NA,"Republican" +3,NA,3074,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,3076,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,3077,"tess",1,1,40,1,40,NA,NA,"Democrat" +3,NA,3082,"tess",3,0,48,1,52,NA,NA,"Neither" +3,NA,3086,"tess",3,1,39,1,39,NA,NA,"Republican" +3,NA,3089,"tess",4,0,38,1,62,NA,NA,"Democrat" +3,NA,3096,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,3102,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,3107,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,3109,"tess",3,0,86,1,14,NA,NA,"Neither" +3,NA,3111,"tess",4,0,59,1,41,NA,NA,"Democrat" +3,NA,3115,"tess",3,1,89,1,89,NA,NA,"Neither" +3,NA,3123,"tess",4,0,70,1,30,NA,NA,"Democrat" +3,NA,3125,"tess",4,1,97,1,97,NA,NA,"Democrat" +3,NA,3128,"tess",2,1,20,1,20,NA,NA,"Republican" +3,NA,3137,"tess",4,1,90,1,90,NA,NA,"Democrat" +3,NA,3155,"tess",3,1,15,1,15,NA,NA,"Neither" +3,NA,3156,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,3170,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,3172,"tess",1,1,20,1,20,NA,NA,"Democrat" +3,NA,3176,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,3186,"tess",1,1,51,1,51,NA,NA,"Democrat" +3,NA,3188,"tess",2,0,20,1,80,NA,NA,"Democrat" +3,NA,3190,"tess",2,0,93,1,7,NA,NA,"Democrat" +3,NA,3192,"tess",1,1,99,1,99,NA,NA,"Democrat" +3,NA,3195,"tess",3,1,41,1,41,NA,NA,"Democrat" +3,NA,3197,"tess",4,1,0,1,0,NA,NA,"Democrat" +3,NA,3201,"tess",2,0,41,1,59,NA,NA,"Republican" +3,NA,3205,"tess",2,0,57,1,43,NA,NA,"Republican" +3,NA,3206,"tess",1,1,59,1,59,NA,NA,"Democrat" +3,NA,3207,"tess",4,0,83,1,17,NA,NA,"Republican" +3,NA,3208,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,3214,"tess",3,1,55,1,55,NA,NA,"Democrat" +3,NA,3223,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,3225,"tess",4,1,55,1,55,NA,NA,"Republican" +3,NA,3226,"tess",4,1,95,1,95,NA,NA,"Republican" +3,NA,3230,"tess",1,0,100,1,0,NA,NA,"Republican" +3,NA,3234,"tess",4,1,89,1,89,NA,NA,"Republican" +3,NA,3244,"tess",4,1,65,1,65,NA,NA,"Republican" +3,NA,3259,"tess",4,0,51,1,49,NA,NA,"Republican" +3,NA,3262,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,3263,"tess",3,1,33,1,33,NA,NA,"Democrat" +3,NA,3274,"tess",2,1,0,1,0,NA,NA,"Democrat" +3,NA,3281,"tess",3,1,98,1,98,NA,NA,"Democrat" +3,NA,3288,"tess",4,0,50,1,50,NA,NA,"Republican" +3,NA,3295,"tess",4,0,81,1,19,NA,NA,"Democrat" +3,NA,3304,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,3313,"tess",2,0,41,1,59,NA,NA,"Republican" +3,NA,3320,"tess",2,1,80,1,80,NA,NA,"Democrat" +3,NA,3333,"tess",1,0,46,1,54,NA,NA,"Democrat" +3,NA,3335,"tess",3,0,78,1,22,NA,NA,"Democrat" +3,NA,3342,"tess",2,1,74,1,74,NA,NA,"Republican" +3,NA,3344,"tess",1,0,90,1,10,NA,NA,"Democrat" +3,NA,3346,"tess",4,0,50,1,50,NA,NA,"Republican" +3,NA,3348,"tess",3,0,98,1,2,NA,NA,"Democrat" +3,NA,3356,"tess",1,0,50,1,50,NA,NA,"Democrat" +3,NA,3364,"tess",3,1,7,1,7,NA,NA,"Democrat" +3,NA,3365,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,3371,"tess",4,0,91,1,9,NA,NA,"Democrat" +3,NA,3407,"tess",2,0,60,1,40,NA,NA,"Republican" +3,NA,3412,"tess",3,1,46,1,46,NA,NA,"Democrat" +3,NA,3419,"tess",4,0,50,1,50,NA,NA,"Democrat" +3,NA,3424,"tess",1,1,85,1,85,NA,NA,"Democrat" +3,NA,3425,"tess",3,0,60,1,40,NA,NA,"Republican" +3,NA,3426,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,3430,"tess",1,1,94,1,94,NA,NA,"Democrat" +3,NA,3433,"tess",3,0,30,1,70,NA,NA,"Democrat" +3,NA,3435,"tess",3,0,40,1,60,NA,NA,"Republican" +3,NA,3437,"tess",1,1,10,1,10,NA,NA,"Republican" +3,NA,3452,"tess",3,1,91,1,91,NA,NA,"Republican" +3,NA,3454,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,3462,"tess",2,0,59,1,41,NA,NA,"Republican" +3,NA,3464,"tess",4,1,39,1,39,NA,NA,"Republican" +3,NA,3468,"tess",1,0,76,1,24,NA,NA,"Democrat" +3,NA,3477,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,3488,"tess",2,0,10,1,90,NA,NA,"Republican" +3,NA,3494,"tess",3,0,51,1,49,NA,NA,"Democrat" +3,NA,3505,"tess",1,1,70,1,70,NA,NA,"Republican" +3,NA,3507,"tess",4,1,87,1,87,NA,NA,"Democrat" +3,NA,3508,"tess",4,0,93,1,7,NA,NA,"Republican" +3,NA,3512,"tess",2,1,3,1,3,NA,NA,"Republican" +3,NA,3513,"tess",4,0,98,1,2,NA,NA,"Democrat" +3,NA,3515,"tess",1,0,98,1,2,NA,NA,"Republican" +3,NA,3517,"tess",3,1,40,1,40,NA,NA,"Republican" +3,NA,3522,"tess",1,1,90,1,90,NA,NA,"Republican" +3,NA,3523,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,3535,"tess",4,0,40,1,60,NA,NA,"Democrat" +3,NA,3536,"tess",2,1,100,1,100,NA,NA,"Republican" +3,NA,3544,"tess",1,1,39,1,39,NA,NA,"Neither" +3,NA,3545,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,3548,"tess",4,0,89,1,11,NA,NA,"Republican" +3,NA,3554,"tess",3,0,79,1,21,NA,NA,"Democrat" +3,NA,3562,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,3564,"tess",2,1,97,1,97,NA,NA,"Republican" +3,NA,3568,"tess",3,1,40,1,40,NA,NA,"Democrat" +3,NA,3573,"tess",1,1,98,1,98,NA,NA,"Democrat" +3,NA,3582,"tess",2,1,99,1,99,NA,NA,"Republican" +3,NA,3587,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,3589,"tess",3,1,97,1,97,NA,NA,"Democrat" +3,NA,3593,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,3607,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,3609,"tess",3,1,91,1,91,NA,NA,"Republican" +3,NA,3610,"tess",2,1,40,1,40,NA,NA,"Democrat" +3,NA,3611,"tess",1,0,99,1,1,NA,NA,"Democrat" +3,NA,3612,"tess",2,1,21,1,21,NA,NA,"Republican" +3,NA,3627,"tess",1,1,100,1,100,NA,NA,"Republican" +3,NA,3629,"tess",1,1,10,1,10,NA,NA,"Republican" +3,NA,3631,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,3632,"tess",2,0,61,1,39,NA,NA,"Republican" +3,NA,3634,"tess",1,1,27,1,27,NA,NA,"Democrat" +3,NA,3635,"tess",2,0,99,1,1,NA,NA,"Republican" +3,NA,3643,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,3645,"tess",4,1,98,1,98,NA,NA,"Republican" +3,NA,3653,"tess",1,1,27,1,27,NA,NA,"Democrat" +3,NA,3656,"tess",3,0,64,1,36,NA,NA,"Democrat" +3,NA,3663,"tess",1,0,85,1,15,NA,NA,"Democrat" +3,NA,3673,"tess",2,0,85,1,15,NA,NA,"Republican" +3,NA,3676,"tess",3,0,98,1,2,NA,NA,"Republican" +3,NA,3678,"tess",3,1,70,1,70,NA,NA,"Republican" +3,NA,3681,"tess",2,0,23,1,77,NA,NA,"Democrat" +3,NA,3695,"tess",1,0,81,1,19,NA,NA,"Republican" +3,NA,3699,"tess",3,0,29,1,71,NA,NA,"Republican" +3,NA,3702,"tess",2,0,91,1,9,NA,NA,"Democrat" +3,NA,3704,"tess",2,0,64,1,36,NA,NA,"Republican" +3,NA,3708,"tess",2,1,27,1,27,NA,NA,"Democrat" +3,NA,3710,"tess",4,1,75,1,75,NA,NA,"Democrat" +3,NA,3711,"tess",1,0,59,1,41,NA,NA,"Democrat" +3,NA,3722,"tess",1,1,70,1,70,NA,NA,"Democrat" +3,NA,3725,"tess",2,0,79,1,21,NA,NA,"Republican" +3,NA,3726,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,3728,"tess",3,1,1,1,1,NA,NA,"Republican" +3,NA,3736,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,3745,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,3747,"tess",1,0,85,1,15,NA,NA,"Democrat" +3,NA,3754,"tess",1,1,99,1,99,NA,NA,"Democrat" +3,NA,3759,"tess",1,1,35,1,35,NA,NA,"Republican" +3,NA,3767,"tess",1,0,82,1,18,NA,NA,"Republican" +3,NA,3774,"tess",2,0,40,1,60,NA,NA,"Neither" +3,NA,3776,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,3779,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,3782,"tess",1,1,44,1,44,NA,NA,"Democrat" +3,NA,3787,"tess",3,0,81,1,19,NA,NA,"Democrat" +3,NA,3793,"tess",3,1,81,1,81,NA,NA,"Republican" +3,NA,3795,"tess",3,1,16,1,16,NA,NA,"Democrat" +3,NA,3799,"tess",3,0,88,1,12,NA,NA,"Republican" +3,NA,3801,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,3806,"tess",3,0,68,1,32,NA,NA,"Republican" +3,NA,3810,"tess",3,1,20,1,20,NA,NA,"Democrat" +3,NA,3811,"tess",1,0,91,1,9,NA,NA,"Republican" +3,NA,3813,"tess",3,1,87,1,87,NA,NA,"Republican" +3,NA,3814,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,3819,"tess",3,0,95,1,5,NA,NA,"Republican" +3,NA,3820,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,3845,"tess",3,1,30,1,30,NA,NA,"Democrat" +3,NA,3848,"tess",3,0,80,1,20,NA,NA,"Republican" +3,NA,3851,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,3865,"tess",3,1,46,1,46,NA,NA,"Democrat" +3,NA,3868,"tess",4,0,99,1,1,NA,NA,"Democrat" +3,NA,3880,"tess",3,1,21,1,21,NA,NA,"Republican" +3,NA,3890,"tess",3,1,10,1,10,NA,NA,"Republican" +3,NA,3895,"tess",1,0,40,1,60,NA,NA,"Republican" +3,NA,3898,"tess",1,1,86,1,86,NA,NA,"Democrat" +3,NA,3904,"tess",2,0,49,1,51,NA,NA,"Democrat" +3,NA,3909,"tess",2,0,30,1,70,NA,NA,"Democrat" +3,NA,3910,"tess",3,0,82,1,18,NA,NA,"Democrat" +3,NA,3915,"tess",2,1,90,1,90,NA,NA,"Democrat" +3,NA,3918,"tess",2,0,1,1,99,NA,NA,"Democrat" +3,NA,3919,"tess",1,0,90,1,10,NA,NA,"Democrat" +3,NA,3920,"tess",4,0,75,1,25,NA,NA,"Democrat" +3,NA,3923,"tess",3,0,0,1,100,NA,NA,"Democrat" +3,NA,3931,"tess",1,1,15,1,15,NA,NA,"Democrat" +3,NA,3946,"tess",2,1,79,1,79,NA,NA,"Democrat" +3,NA,3958,"tess",3,0,100,1,0,NA,NA,"Republican" +3,NA,3959,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,3961,"tess",1,1,6,1,6,NA,NA,"Democrat" +3,NA,3965,"tess",2,1,4,1,4,NA,NA,"Democrat" +3,NA,3966,"tess",2,1,30,1,30,NA,NA,"Democrat" +3,NA,3981,"tess",1,0,60,1,40,NA,NA,"Republican" +3,NA,4001,"tess",3,1,20,1,20,NA,NA,"Neither" +3,NA,4006,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,4007,"tess",1,0,81,1,19,NA,NA,"Republican" +3,NA,4008,"tess",3,1,31,1,31,NA,NA,"Republican" +3,NA,4015,"tess",1,1,60,1,60,NA,NA,"Democrat" +3,NA,4027,"tess",2,1,68,1,68,NA,NA,"Republican" +3,NA,4035,"tess",1,0,100,1,0,NA,NA,"Republican" +3,NA,4039,"tess",3,0,80,1,20,NA,NA,"Democrat" +3,NA,4043,"tess",4,1,3,1,3,NA,NA,"Republican" +3,NA,4046,"tess",4,1,85,1,85,NA,NA,"Democrat" +3,NA,4049,"tess",3,0,99,1,1,NA,NA,"Neither" +3,NA,4065,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,4069,"tess",3,0,60,1,40,NA,NA,"Democrat" +3,NA,4072,"tess",2,0,76,1,24,NA,NA,"Democrat" +3,NA,4075,"tess",1,0,90,1,10,NA,NA,"Democrat" +3,NA,4076,"tess",3,0,97,1,3,NA,NA,"Republican" +3,NA,4079,"tess",1,0,50,1,50,NA,NA,"Democrat" +3,NA,4084,"tess",1,1,26,1,26,NA,NA,"Republican" +3,NA,4096,"tess",4,1,70,1,70,NA,NA,"Democrat" +3,NA,4108,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,4120,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,4139,"tess",3,0,4,1,96,NA,NA,"Republican" +3,NA,4141,"tess",2,1,17,1,17,NA,NA,"Democrat" +3,NA,4142,"tess",1,1,0,1,0,NA,NA,"Democrat" +3,NA,4149,"tess",3,1,2,1,2,NA,NA,"Republican" +3,NA,4153,"tess",4,1,94,1,94,NA,NA,"Republican" +3,NA,4160,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,4163,"tess",3,1,71,1,71,NA,NA,"Republican" +3,NA,4175,"tess",2,1,30,1,30,NA,NA,"Democrat" +3,NA,4178,"tess",3,1,43,1,43,NA,NA,"Democrat" +3,NA,4186,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,4195,"tess",3,1,70,1,70,NA,NA,"Republican" +3,NA,4197,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,4199,"tess",1,1,5,1,5,NA,NA,"Democrat" +3,NA,4200,"tess",3,0,60,1,40,NA,NA,"Democrat" +3,NA,4202,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,4209,"tess",3,1,62,1,62,NA,NA,"Democrat" +3,NA,4210,"tess",3,0,95,1,5,NA,NA,"Republican" +3,NA,4216,"tess",1,1,95,1,95,NA,NA,"Democrat" +3,NA,4217,"tess",4,0,91,1,9,NA,NA,"Democrat" +3,NA,4218,"tess",2,0,98,1,2,NA,NA,"Democrat" +3,NA,4222,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,4224,"tess",3,1,85,1,85,NA,NA,"Democrat" +3,NA,4227,"tess",1,1,52,1,52,NA,NA,"Democrat" +3,NA,4229,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,4237,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,4238,"tess",4,1,92,1,92,NA,NA,"Democrat" +3,NA,4241,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,4251,"tess",3,0,77,1,23,NA,NA,"Republican" +3,NA,4252,"tess",2,0,81,1,19,NA,NA,"Republican" +3,NA,4253,"tess",2,1,35,1,35,NA,NA,"Democrat" +3,NA,4266,"tess",2,1,70,1,70,NA,NA,"Democrat" +3,NA,4269,"tess",3,1,80,1,80,NA,NA,"Republican" +3,NA,4277,"tess",4,1,94,1,94,NA,NA,"Democrat" +3,NA,4278,"tess",1,1,70,1,70,NA,NA,"Republican" +3,NA,4282,"tess",3,1,8,1,8,NA,NA,"Republican" +3,NA,4285,"tess",3,1,99,1,99,NA,NA,"Neither" +3,NA,4290,"tess",1,1,36,1,36,NA,NA,"Democrat" +3,NA,4291,"tess",4,1,89,1,89,NA,NA,"Democrat" +3,NA,4298,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,4302,"tess",1,1,34,1,34,NA,NA,"Democrat" +3,NA,4307,"tess",3,0,70,1,30,NA,NA,"Republican" +3,NA,4308,"tess",2,0,98,1,2,NA,NA,"Democrat" +3,NA,4311,"tess",2,0,84,1,16,NA,NA,"Democrat" +3,NA,4322,"tess",2,0,98,1,2,NA,NA,"Republican" +3,NA,4325,"tess",4,1,100,1,100,NA,NA,"Democrat" +3,NA,4326,"tess",2,0,53,1,47,NA,NA,"Democrat" +3,NA,4331,"tess",3,1,30,1,30,NA,NA,"Democrat" +3,NA,4332,"tess",4,1,80,1,80,NA,NA,"Democrat" +3,NA,4334,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,4335,"tess",3,1,60,1,60,NA,NA,"Republican" +3,NA,4349,"tess",2,0,94,1,6,NA,NA,"Democrat" +3,NA,4356,"tess",4,0,50,1,50,NA,NA,"Republican" +3,NA,4357,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,4361,"tess",3,1,10,1,10,NA,NA,"Democrat" +3,NA,4365,"tess",4,0,40,1,60,NA,NA,"Republican" +3,NA,4367,"tess",1,1,98,1,98,NA,NA,"Republican" +3,NA,4370,"tess",1,0,40,1,60,NA,NA,"Republican" +3,NA,4380,"tess",3,0,98,1,2,NA,NA,"Republican" +3,NA,4390,"tess",3,1,26,1,26,NA,NA,"Democrat" +3,NA,4391,"tess",4,0,59,1,41,NA,NA,"Democrat" +3,NA,4401,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,4403,"tess",3,1,48,1,48,NA,NA,"Republican" +3,NA,4412,"tess",1,1,100,1,100,NA,NA,"Republican" +3,NA,4416,"tess",2,0,80,1,20,NA,NA,"Republican" +3,NA,4420,"tess",4,0,59,1,41,NA,NA,"Democrat" +3,NA,4427,"tess",4,1,99,1,99,NA,NA,"Democrat" +3,NA,4431,"tess",3,1,95,1,95,NA,NA,"Democrat" +3,NA,4441,"tess",2,1,51,1,51,NA,NA,"Democrat" +3,NA,4447,"tess",1,1,90,1,90,NA,NA,"Republican" +3,NA,4451,"tess",2,0,35,1,65,NA,NA,"Republican" +3,NA,4452,"tess",1,1,92,1,92,NA,NA,"Republican" +3,NA,4455,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,4457,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,4458,"tess",1,0,52,1,48,NA,NA,"Republican" +3,NA,4459,"tess",1,1,86,1,86,NA,NA,"Democrat" +3,NA,4470,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,4475,"tess",4,0,60,1,40,NA,NA,"Democrat" +3,NA,4476,"tess",3,0,30,1,70,NA,NA,"Democrat" +3,NA,4480,"tess",4,1,81,1,81,NA,NA,"Democrat" +3,NA,4482,"tess",1,0,51,1,49,NA,NA,"Neither" +3,NA,4484,"tess",1,0,90,1,10,NA,NA,"Democrat" +3,NA,4486,"tess",2,0,0,1,100,NA,NA,"Republican" +3,NA,4500,"tess",4,0,39,1,61,NA,NA,"Democrat" +3,NA,4512,"tess",1,1,85,1,85,NA,NA,"Democrat" +3,NA,4516,"tess",3,1,57,1,57,NA,NA,"Democrat" +3,NA,4523,"tess",3,1,75,1,75,NA,NA,"Republican" +3,NA,4524,"tess",4,0,70,1,30,NA,NA,"Republican" +3,NA,4525,"tess",1,0,98,1,2,NA,NA,"Republican" +3,NA,4548,"tess",4,0,90,1,10,NA,NA,"Republican" +3,NA,4552,"tess",1,0,90,1,10,NA,NA,"Democrat" +3,NA,4557,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,4561,"tess",3,1,32,1,32,NA,NA,"Democrat" +3,NA,4574,"tess",2,1,22,1,22,NA,NA,"Democrat" +3,NA,4581,"tess",1,0,81,1,19,NA,NA,"Democrat" +3,NA,4584,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,4587,"tess",1,1,32,1,32,NA,NA,"Republican" +3,NA,4606,"tess",1,1,100,1,100,NA,NA,"Republican" +3,NA,4618,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,4624,"tess",3,0,50,1,50,NA,NA,"Republican" +3,NA,4627,"tess",3,0,13,1,87,NA,NA,"Democrat" +3,NA,4628,"tess",4,1,51,1,51,NA,NA,"Democrat" +3,NA,4632,"tess",1,1,75,1,75,NA,NA,"Democrat" +3,NA,4633,"tess",2,1,10,1,10,NA,NA,"Democrat" +3,NA,4642,"tess",4,1,71,1,71,NA,NA,"Democrat" +3,NA,4656,"tess",1,1,49,1,49,NA,NA,"Democrat" +3,NA,4663,"tess",1,0,10,1,90,NA,NA,"Democrat" +3,NA,4674,"tess",3,0,31,1,69,NA,NA,"Republican" +3,NA,4683,"tess",2,0,81,1,19,NA,NA,"Neither" +3,NA,4690,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,4691,"tess",4,0,79,1,21,NA,NA,"Democrat" +3,NA,4700,"tess",3,0,10,1,90,NA,NA,"Republican" +3,NA,4708,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,4713,"tess",2,0,20,1,80,NA,NA,"Neither" +3,NA,4715,"tess",2,0,69,1,31,NA,NA,"Republican" +3,NA,4722,"tess",2,1,80,1,80,NA,NA,"Democrat" +3,NA,4726,"tess",3,0,76,1,24,NA,NA,"Republican" +3,NA,4737,"tess",1,1,1,1,1,NA,NA,"Democrat" +3,NA,4739,"tess",4,0,4,1,96,NA,NA,"Republican" +3,NA,4740,"tess",4,1,98,1,98,NA,NA,"Republican" +3,NA,4742,"tess",1,0,89,1,11,NA,NA,"Democrat" +3,NA,4770,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,4774,"tess",3,0,90,1,10,NA,NA,"Republican" +3,NA,4780,"tess",1,1,20,1,20,NA,NA,"Republican" +3,NA,4782,"tess",1,1,59,1,59,NA,NA,"Democrat" +3,NA,4785,"tess",3,1,26,1,26,NA,NA,"Republican" +3,NA,4789,"tess",1,0,98,1,2,NA,NA,"Democrat" +3,NA,4792,"tess",1,0,97,1,3,NA,NA,"Republican" +3,NA,4793,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,4795,"tess",2,1,80,1,80,NA,NA,"Democrat" +3,NA,4799,"tess",3,1,69,1,69,NA,NA,"Republican" +3,NA,4800,"tess",1,1,79,1,79,NA,NA,"Republican" +3,NA,4807,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,4810,"tess",3,1,48,1,48,NA,NA,"Democrat" +3,NA,4813,"tess",4,1,91,1,91,NA,NA,"Democrat" +3,NA,4816,"tess",1,0,91,1,9,NA,NA,"Democrat" +3,NA,4817,"tess",2,1,70,1,70,NA,NA,"Democrat" +3,NA,4819,"tess",2,1,53,1,53,NA,NA,"Democrat" +3,NA,4820,"tess",2,1,49,1,49,NA,NA,"Republican" +3,NA,4821,"tess",1,0,48,1,52,NA,NA,"Neither" +3,NA,4823,"tess",1,1,49,1,49,NA,NA,"Democrat" +3,NA,4826,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,4831,"tess",4,0,100,1,0,NA,NA,"Neither" +3,NA,4833,"tess",2,0,10,1,90,NA,NA,"Democrat" +3,NA,4841,"tess",1,1,93,1,93,NA,NA,"Democrat" +3,NA,4863,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,4866,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,4869,"tess",4,0,99,1,1,NA,NA,"Democrat" +3,NA,4875,"tess",4,1,100,1,100,NA,NA,"Democrat" +3,NA,4880,"tess",2,1,40,1,40,NA,NA,"Republican" +3,NA,4883,"tess",3,0,82,1,18,NA,NA,"Democrat" +3,NA,4887,"tess",3,0,87,1,13,NA,NA,"Republican" +3,NA,4897,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,4899,"tess",2,1,90,1,90,NA,NA,"Democrat" +3,NA,4903,"tess",3,0,70,1,30,NA,NA,"Democrat" +3,NA,4905,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,4906,"tess",3,1,92,1,92,NA,NA,"Republican" +3,NA,4908,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,4914,"tess",4,1,30,1,30,NA,NA,"Democrat" +3,NA,4921,"tess",2,0,57,1,43,NA,NA,"Republican" +3,NA,4925,"tess",3,0,98,1,2,NA,NA,"Democrat" +3,NA,4926,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,4930,"tess",4,0,40,1,60,NA,NA,"Democrat" +3,NA,4932,"tess",4,1,90,1,90,NA,NA,"Republican" +3,NA,4935,"tess",1,0,79,1,21,NA,NA,"Democrat" +3,NA,4940,"tess",4,1,100,1,100,NA,NA,"Republican" +3,NA,4964,"tess",4,1,92,1,92,NA,NA,"Republican" +3,NA,4966,"tess",1,0,4,1,96,NA,NA,"Republican" +3,NA,4969,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,4971,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,4977,"tess",3,0,100,1,0,NA,NA,"Republican" +3,NA,4990,"tess",2,0,50,1,50,NA,NA,"Republican" +3,NA,4998,"tess",2,1,14,1,14,NA,NA,"Democrat" +3,NA,5003,"tess",1,1,25,1,25,NA,NA,"Republican" +3,NA,5004,"tess",3,1,82,1,82,NA,NA,"Democrat" +3,NA,5008,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,5016,"tess",4,0,80,1,20,NA,NA,"Democrat" +3,NA,5018,"tess",1,1,69,1,69,NA,NA,"Democrat" +3,NA,5025,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,5027,"tess",4,1,28,1,28,NA,NA,"Republican" +3,NA,5029,"tess",2,1,14,1,14,NA,NA,"Republican" +3,NA,5048,"tess",4,1,80,1,80,NA,NA,"Republican" +3,NA,5055,"tess",4,1,51,1,51,NA,NA,"Republican" +3,NA,5058,"tess",3,0,80,1,20,NA,NA,"Republican" +3,NA,5068,"tess",4,0,40,1,60,NA,NA,"Democrat" +3,NA,5073,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,5086,"tess",3,1,99,1,99,NA,NA,"Neither" +3,NA,5092,"tess",2,0,60,1,40,NA,NA,"Republican" +3,NA,5101,"tess",4,1,99,1,99,NA,NA,"Democrat" +3,NA,5108,"tess",4,1,72,1,72,NA,NA,"Republican" +3,NA,5114,"tess",2,1,48,1,48,NA,NA,"Democrat" +3,NA,5116,"tess",1,1,20,1,20,NA,NA,"Republican" +3,NA,5128,"tess",1,0,79,1,21,NA,NA,"Democrat" +3,NA,5131,"tess",3,0,48,1,52,NA,NA,"Democrat" +3,NA,5132,"tess",3,0,66,1,34,NA,NA,"Republican" +3,NA,5133,"tess",2,0,50,1,50,NA,NA,"Republican" +3,NA,5137,"tess",4,0,0,1,100,NA,NA,"Democrat" +3,NA,5143,"tess",2,1,62,1,62,NA,NA,"Republican" +3,NA,5144,"tess",2,1,13,1,13,NA,NA,"Democrat" +3,NA,5147,"tess",1,1,86,1,86,NA,NA,"Republican" +3,NA,5151,"tess",3,1,1,1,1,NA,NA,"Democrat" +3,NA,5160,"tess",4,1,14,1,14,NA,NA,"Democrat" +3,NA,5162,"tess",2,0,50,1,50,NA,NA,"Neither" +3,NA,5165,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,5172,"tess",4,0,80,1,20,NA,NA,"Democrat" +3,NA,5175,"tess",4,0,40,1,60,NA,NA,"Democrat" +3,NA,5186,"tess",3,1,96,1,96,NA,NA,"Republican" +3,NA,5192,"tess",3,0,70,1,30,NA,NA,"Democrat" +3,NA,5195,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,5221,"tess",2,0,81,1,19,NA,NA,"Republican" +3,NA,5222,"tess",1,1,48,1,48,NA,NA,"Democrat" +3,NA,5224,"tess",2,0,84,1,16,NA,NA,"Republican" +3,NA,5225,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,5228,"tess",4,1,0,1,0,NA,NA,"Democrat" +3,NA,5268,"tess",4,0,29,1,71,NA,NA,"Democrat" +3,NA,5270,"tess",3,1,11,1,11,NA,NA,"Republican" +3,NA,5275,"tess",1,1,2,1,2,NA,NA,"Democrat" +3,NA,5279,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,5284,"tess",1,1,6,1,6,NA,NA,"Democrat" +3,NA,5288,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,5289,"tess",3,0,59,1,41,NA,NA,"Democrat" +3,NA,5290,"tess",2,0,98,1,2,NA,NA,"Republican" +3,NA,5299,"tess",3,0,54,1,46,NA,NA,"Democrat" +3,NA,5301,"tess",3,0,91,1,9,NA,NA,"Democrat" +3,NA,5308,"tess",3,0,79,1,21,NA,NA,"Democrat" +3,NA,5311,"tess",3,1,90,1,90,NA,NA,"Republican" +3,NA,5314,"tess",1,0,97,1,3,NA,NA,"Republican" +3,NA,5316,"tess",4,0,70,1,30,NA,NA,"Republican" +3,NA,5318,"tess",4,0,0,1,100,NA,NA,"Democrat" +3,NA,5319,"tess",1,0,40,1,60,NA,NA,"Democrat" +3,NA,5325,"tess",4,1,83,1,83,NA,NA,"Democrat" +3,NA,5326,"tess",2,0,47,1,53,NA,NA,"Democrat" +3,NA,5327,"tess",4,1,81,1,81,NA,NA,"Republican" +3,NA,5331,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,5353,"tess",4,1,1,1,1,NA,NA,"Democrat" +3,NA,5363,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,5378,"tess",4,1,0,1,0,NA,NA,"Democrat" +3,NA,5383,"tess",2,1,75,1,75,NA,NA,"Republican" +3,NA,5385,"tess",1,0,62,1,38,NA,NA,"Democrat" +3,NA,5386,"tess",3,1,0,1,0,NA,NA,"Republican" +3,NA,5388,"tess",3,0,72,1,28,NA,NA,"Republican" +3,NA,5389,"tess",2,0,80,1,20,NA,NA,"Republican" +3,NA,5392,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,5393,"tess",4,0,33,1,67,NA,NA,"Republican" +3,NA,5400,"tess",4,1,98,1,98,NA,NA,"Republican" +3,NA,5406,"tess",1,1,59,1,59,NA,NA,"Republican" +3,NA,5407,"tess",3,0,90,1,10,NA,NA,"Republican" +3,NA,5411,"tess",1,1,30,1,30,NA,NA,"Republican" +3,NA,5412,"tess",1,1,88,1,88,NA,NA,"Republican" +3,NA,5416,"tess",1,1,52,1,52,NA,NA,"Democrat" +3,NA,5419,"tess",4,0,80,1,20,NA,NA,"Republican" +3,NA,5423,"tess",4,0,94,1,6,NA,NA,"Democrat" +3,NA,5428,"tess",4,1,82,1,82,NA,NA,"Republican" +3,NA,5430,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,5434,"tess",2,1,80,1,80,NA,NA,"Republican" +3,NA,5438,"tess",1,0,32,1,68,NA,NA,"Democrat" +3,NA,5447,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,5448,"tess",1,1,19,1,19,NA,NA,"Democrat" +3,NA,5450,"tess",1,1,11,1,11,NA,NA,"Republican" +3,NA,5456,"tess",3,0,98,1,2,NA,NA,"Democrat" +3,NA,5462,"tess",2,0,70,1,30,NA,NA,"Republican" +3,NA,5465,"tess",4,0,82,1,18,NA,NA,"Republican" +3,NA,5470,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,5475,"tess",2,1,1,1,1,NA,NA,"Democrat" +3,NA,5480,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,5490,"tess",3,0,4,1,96,NA,NA,"Republican" +3,NA,5500,"tess",1,1,40,1,40,NA,NA,"Democrat" +3,NA,5504,"tess",3,0,90,1,10,NA,NA,"Republican" +3,NA,5509,"tess",2,1,47,1,47,NA,NA,"Democrat" +3,NA,5515,"tess",4,1,80,1,80,NA,NA,"Republican" +3,NA,5518,"tess",2,1,70,1,70,NA,NA,"Republican" +3,NA,5519,"tess",2,1,90,1,90,NA,NA,"Democrat" +3,NA,5523,"tess",4,0,2,1,98,NA,NA,"Democrat" +3,NA,5536,"tess",4,0,55,1,45,NA,NA,"Democrat" +3,NA,5540,"tess",1,1,1,1,1,NA,NA,"Democrat" +3,NA,5544,"tess",2,1,94,1,94,NA,NA,"Republican" +3,NA,5551,"tess",2,1,39,1,39,NA,NA,"Republican" +3,NA,5553,"tess",3,1,86,1,86,NA,NA,"Republican" +3,NA,5559,"tess",3,0,58,1,42,NA,NA,"Republican" +3,NA,5561,"tess",2,1,100,1,100,NA,NA,"Republican" +3,NA,5567,"tess",4,1,20,1,20,NA,NA,"Republican" +3,NA,5569,"tess",2,0,98,1,2,NA,NA,"Democrat" +3,NA,5570,"tess",3,1,70,1,70,NA,NA,"Democrat" +3,NA,5575,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,5576,"tess",3,1,18,1,18,NA,NA,"Democrat" +3,NA,5579,"tess",4,1,97,1,97,NA,NA,"Republican" +3,NA,5581,"tess",4,1,20,1,20,NA,NA,"Democrat" +3,NA,5584,"tess",1,1,9,1,9,NA,NA,"Democrat" +3,NA,5586,"tess",4,1,91,1,91,NA,NA,"Democrat" +3,NA,5590,"tess",2,1,75,1,75,NA,NA,"Democrat" +3,NA,5593,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,5594,"tess",4,1,88,1,88,NA,NA,"Republican" +3,NA,5595,"tess",3,1,99,1,99,NA,NA,"Republican" +3,NA,5597,"tess",1,1,6,1,6,NA,NA,"Republican" +3,NA,5611,"tess",2,1,88,1,88,NA,NA,"Republican" +3,NA,5612,"tess",2,0,43,1,57,NA,NA,"Democrat" +3,NA,5613,"tess",4,0,97,1,3,NA,NA,"Republican" +3,NA,5614,"tess",3,0,63,1,37,NA,NA,"Democrat" +3,NA,5615,"tess",4,0,30,1,70,NA,NA,"Democrat" +3,NA,5617,"tess",4,1,5,1,5,NA,NA,"Democrat" +3,NA,5620,"tess",4,1,79,1,79,NA,NA,"Democrat" +3,NA,5621,"tess",1,0,99,1,1,NA,NA,"Democrat" +3,NA,5626,"tess",2,0,90,1,10,NA,NA,"Democrat" +3,NA,5631,"tess",4,0,20,1,80,NA,NA,"Republican" +3,NA,5633,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,5635,"tess",3,0,99,1,1,NA,NA,"Republican" +3,NA,5646,"tess",3,1,12,1,12,NA,NA,"Republican" +3,NA,5648,"tess",2,1,92,1,92,NA,NA,"Democrat" +3,NA,5654,"tess",3,0,95,1,5,NA,NA,"Democrat" +3,NA,5657,"tess",4,1,96,1,96,NA,NA,"Democrat" +3,NA,5660,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,5663,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,5664,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,5669,"tess",4,0,97,1,3,NA,NA,"Neither" +3,NA,5676,"tess",1,1,11,1,11,NA,NA,"Democrat" +3,NA,5677,"tess",4,0,93,1,7,NA,NA,"Republican" +3,NA,5679,"tess",1,1,26,1,26,NA,NA,"Democrat" +3,NA,5681,"tess",3,0,91,1,9,NA,NA,"Democrat" +3,NA,5683,"tess",2,0,49,1,51,NA,NA,"Democrat" +3,NA,5684,"tess",3,0,8,1,92,NA,NA,"Democrat" +3,NA,5691,"tess",1,0,88,1,12,NA,NA,"Democrat" +3,NA,5706,"tess",4,1,61,1,61,NA,NA,"Republican" +3,NA,5715,"tess",3,0,91,1,9,NA,NA,"Republican" +3,NA,5720,"tess",2,1,80,1,80,NA,NA,"Republican" +3,NA,5721,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,5725,"tess",1,0,93,1,7,NA,NA,"Republican" +3,NA,5726,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,5729,"tess",1,1,100,1,100,NA,NA,"Republican" +3,NA,5730,"tess",4,1,79,1,79,NA,NA,"Republican" +3,NA,5731,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,5732,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,5734,"tess",2,0,98,1,2,NA,NA,"Democrat" +3,NA,5735,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,5740,"tess",3,1,10,1,10,NA,NA,"Democrat" +3,NA,5743,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,5744,"tess",2,1,73,1,73,NA,NA,"Democrat" +3,NA,5745,"tess",1,1,69,1,69,NA,NA,"Democrat" +3,NA,5746,"tess",3,0,5,1,95,NA,NA,"Democrat" +3,NA,5751,"tess",4,0,88,1,12,NA,NA,"Republican" +3,NA,5752,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,5757,"tess",2,1,97,1,97,NA,NA,"Republican" +3,NA,5760,"tess",4,1,80,1,80,NA,NA,"Democrat" +3,NA,5763,"tess",1,1,41,1,41,NA,NA,"Democrat" +3,NA,5772,"tess",4,1,49,1,49,NA,NA,"Democrat" +3,NA,5783,"tess",1,1,40,1,40,NA,NA,"Democrat" +3,NA,5787,"tess",3,0,87,1,13,NA,NA,"Republican" +3,NA,5802,"tess",2,1,79,1,79,NA,NA,"Republican" +3,NA,5803,"tess",2,1,29,1,29,NA,NA,"Republican" +3,NA,5804,"tess",4,0,51,1,49,NA,NA,"Republican" +3,NA,5810,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,5815,"tess",4,0,40,1,60,NA,NA,"Democrat" +3,NA,5820,"tess",4,1,84,1,84,NA,NA,"Democrat" +3,NA,5824,"tess",3,1,0,1,0,NA,NA,"Democrat" +3,NA,5825,"tess",3,0,100,1,0,NA,NA,"Republican" +3,NA,5826,"tess",4,1,57,1,57,NA,NA,"Republican" +3,NA,5833,"tess",4,0,88,1,12,NA,NA,"Democrat" +3,NA,5838,"tess",2,1,20,1,20,NA,NA,"Republican" +3,NA,5842,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,5844,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,5854,"tess",2,1,94,1,94,NA,NA,"Democrat" +3,NA,5868,"tess",2,0,70,1,30,NA,NA,"Democrat" +3,NA,5873,"tess",3,0,96,1,4,NA,NA,"Democrat" +3,NA,5874,"tess",1,1,29,1,29,NA,NA,"Democrat" +3,NA,5884,"tess",4,1,48,1,48,NA,NA,"Democrat" +3,NA,5885,"tess",3,1,49,1,49,NA,NA,"Republican" +3,NA,5886,"tess",4,0,81,1,19,NA,NA,"Republican" +3,NA,5889,"tess",3,0,59,1,41,NA,NA,"Democrat" +3,NA,5896,"tess",4,1,85,1,85,NA,NA,"Republican" +3,NA,5899,"tess",3,1,10,1,10,NA,NA,"Democrat" +3,NA,5901,"tess",2,0,90,1,10,NA,NA,"Democrat" +3,NA,5902,"tess",1,0,6,1,94,NA,NA,"Republican" +3,NA,5906,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,5914,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,5916,"tess",3,0,80,1,20,NA,NA,"Republican" +3,NA,5918,"tess",2,0,80,1,20,NA,NA,"Republican" +3,NA,5920,"tess",2,1,41,1,41,NA,NA,"Republican" +3,NA,5922,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,5925,"tess",2,1,35,1,35,NA,NA,"Republican" +3,NA,5926,"tess",1,1,93,1,93,NA,NA,"Democrat" +3,NA,5931,"tess",2,0,7,1,93,NA,NA,"Democrat" +3,NA,5934,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,5937,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,5940,"tess",3,0,60,1,40,NA,NA,"Democrat" +3,NA,5946,"tess",2,1,10,1,10,NA,NA,"Republican" +3,NA,5951,"tess",3,0,48,1,52,NA,NA,"Democrat" +3,NA,5954,"tess",3,0,70,1,30,NA,NA,"Democrat" +3,NA,5958,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,5959,"tess",4,1,99,1,99,NA,NA,"Republican" +3,NA,5963,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,5964,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,5978,"tess",1,0,90,1,10,NA,NA,"Democrat" +3,NA,5981,"tess",1,0,25,1,75,NA,NA,"Republican" +3,NA,5982,"tess",4,0,98,1,2,NA,NA,"Democrat" +3,NA,5987,"tess",2,0,30,1,70,NA,NA,"Democrat" +3,NA,5988,"tess",3,1,91,1,91,NA,NA,"Democrat" +3,NA,5990,"tess",1,1,81,1,81,NA,NA,"Democrat" +3,NA,5994,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,5996,"tess",1,0,15,1,85,NA,NA,"Democrat" +3,NA,5998,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,5999,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,6000,"tess",3,0,60,1,40,NA,NA,"Democrat" +3,NA,6008,"tess",4,1,99,1,99,NA,NA,"Republican" +3,NA,6012,"tess",1,1,30,1,30,NA,NA,"Republican" +3,NA,6013,"tess",4,0,98,1,2,NA,NA,"Democrat" +3,NA,6039,"tess",3,0,48,1,52,NA,NA,"Republican" +3,NA,6041,"tess",4,1,89,1,89,NA,NA,"Democrat" +3,NA,6042,"tess",3,0,99,1,1,NA,NA,"Neither" +3,NA,6045,"tess",2,0,65,1,35,NA,NA,"Republican" +3,NA,6046,"tess",3,0,34,1,66,NA,NA,"Democrat" +3,NA,6048,"tess",2,0,31,1,69,NA,NA,"Republican" +3,NA,6050,"tess",4,1,83,1,83,NA,NA,"Republican" +3,NA,6053,"tess",2,1,93,1,93,NA,NA,"Republican" +3,NA,6061,"tess",3,0,79,1,21,NA,NA,"Democrat" +3,NA,6067,"tess",3,1,34,1,34,NA,NA,"Republican" +3,NA,6068,"tess",4,1,49,1,49,NA,NA,"Democrat" +3,NA,6069,"tess",3,1,89,1,89,NA,NA,"Democrat" +3,NA,6070,"tess",1,1,10,1,10,NA,NA,"Republican" +3,NA,6073,"tess",4,1,99,1,99,NA,NA,"Democrat" +3,NA,6074,"tess",2,0,82,1,18,NA,NA,"Republican" +3,NA,6077,"tess",4,0,60,1,40,NA,NA,"Democrat" +3,NA,6084,"tess",3,1,98,1,98,NA,NA,"Democrat" +3,NA,6087,"tess",2,0,2,1,98,NA,NA,"Democrat" +3,NA,6088,"tess",4,1,90,1,90,NA,NA,"Republican" +3,NA,6090,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,6095,"tess",1,0,98,1,2,NA,NA,"Democrat" +3,NA,6096,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,6097,"tess",4,0,53,1,47,NA,NA,"Republican" +3,NA,6100,"tess",4,1,61,1,61,NA,NA,"Democrat" +3,NA,6101,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,6110,"tess",4,0,49,1,51,NA,NA,"Republican" +3,NA,6111,"tess",2,0,78,1,22,NA,NA,"Democrat" +3,NA,6116,"tess",1,1,95,1,95,NA,NA,"Democrat" +3,NA,6121,"tess",2,1,97,1,97,NA,NA,"Democrat" +3,NA,6130,"tess",3,1,86,1,86,NA,NA,"Republican" +3,NA,6131,"tess",4,1,80,1,80,NA,NA,"Neither" +3,NA,6132,"tess",2,0,100,1,0,NA,NA,"Neither" +3,NA,6136,"tess",1,1,76,1,76,NA,NA,"Democrat" +3,NA,6137,"tess",3,1,97,1,97,NA,NA,"Democrat" +3,NA,6138,"tess",4,0,85,1,15,NA,NA,"Democrat" +3,NA,6142,"tess",4,1,99,1,99,NA,NA,"Neither" +3,NA,6144,"tess",4,0,66,1,34,NA,NA,"Democrat" +3,NA,6146,"tess",3,1,86,1,86,NA,NA,"Republican" +3,NA,6151,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,6152,"tess",1,1,70,1,70,NA,NA,"Democrat" +3,NA,6155,"tess",3,1,12,1,12,NA,NA,"Democrat" +3,NA,6158,"tess",1,1,85,1,85,NA,NA,"Republican" +3,NA,6162,"tess",2,0,33,1,67,NA,NA,"Democrat" +3,NA,6164,"tess",3,1,39,1,39,NA,NA,"Democrat" +3,NA,6170,"tess",4,0,76,1,24,NA,NA,"Democrat" +3,NA,6171,"tess",3,1,0,1,0,NA,NA,"Democrat" +3,NA,6172,"tess",3,0,1,1,99,NA,NA,"Democrat" +3,NA,6179,"tess",4,1,73,1,73,NA,NA,"Democrat" +3,NA,6180,"tess",4,0,30,1,70,NA,NA,"Republican" +3,NA,6187,"tess",3,0,97,1,3,NA,NA,"Democrat" +3,NA,6188,"tess",4,1,90,1,90,NA,NA,"Republican" +3,NA,6193,"tess",2,0,98,1,2,NA,NA,"Democrat" +3,NA,6195,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,6196,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,6197,"tess",4,0,60,1,40,NA,NA,"Democrat" +3,NA,6199,"tess",4,1,93,1,93,NA,NA,"Republican" +3,NA,6204,"tess",3,0,70,1,30,NA,NA,"Republican" +3,NA,6209,"tess",3,0,0,1,100,NA,NA,"Democrat" +3,NA,6215,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,6220,"tess",1,0,60,1,40,NA,NA,"Democrat" +3,NA,6224,"tess",3,1,90,1,90,NA,NA,"Democrat" +3,NA,6225,"tess",3,1,30,1,30,NA,NA,"Democrat" +3,NA,6226,"tess",4,1,55,1,55,NA,NA,"Democrat" +3,NA,6227,"tess",1,0,74,1,26,NA,NA,"Democrat" +3,NA,6231,"tess",1,0,56,1,44,NA,NA,"Democrat" +3,NA,6237,"tess",2,0,70,1,30,NA,NA,"Democrat" +3,NA,6242,"tess",4,1,82,1,82,NA,NA,"Democrat" +3,NA,6244,"tess",2,0,90,1,10,NA,NA,"Democrat" +3,NA,6245,"tess",4,1,47,1,47,NA,NA,"Democrat" +3,NA,6246,"tess",3,1,69,1,69,NA,NA,"Republican" +3,NA,6248,"tess",2,1,99,1,99,NA,NA,"Republican" +3,NA,6249,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,6251,"tess",1,0,77,1,23,NA,NA,"Democrat" +3,NA,6254,"tess",4,1,58,1,58,NA,NA,"Democrat" +3,NA,6256,"tess",4,1,97,1,97,NA,NA,"Democrat" +3,NA,6257,"tess",3,1,84,1,84,NA,NA,"Democrat" +3,NA,6258,"tess",3,1,80,1,80,NA,NA,"Republican" +3,NA,6259,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,6261,"tess",1,0,50,1,50,NA,NA,"Democrat" +3,NA,6263,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,6265,"tess",1,1,20,1,20,NA,NA,"Democrat" +3,NA,6268,"tess",1,1,50,1,50,NA,NA,"Republican" +3,NA,6269,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,6270,"tess",1,0,62,1,38,NA,NA,"Democrat" +3,NA,6271,"tess",4,0,44,1,56,NA,NA,"Democrat" +3,NA,6272,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,6279,"tess",3,0,69,1,31,NA,NA,"Republican" +3,NA,6280,"tess",4,1,97,1,97,NA,NA,"Democrat" +3,NA,6284,"tess",4,1,20,1,20,NA,NA,"Neither" +3,NA,6292,"tess",2,0,97,1,3,NA,NA,"Democrat" +3,NA,6294,"tess",1,0,100,1,0,NA,NA,"Republican" +3,NA,6298,"tess",1,1,0,1,0,NA,NA,"Neither" +3,NA,6301,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,6307,"tess",4,0,75,1,25,NA,NA,"Republican" +3,NA,6312,"tess",4,1,5,1,5,NA,NA,"Republican" +3,NA,6323,"tess",1,0,73,1,27,NA,NA,"Democrat" +3,NA,6326,"tess",3,1,70,1,70,NA,NA,"Democrat" +3,NA,6329,"tess",4,0,80,1,20,NA,NA,"Democrat" +3,NA,6333,"tess",2,1,74,1,74,NA,NA,"Republican" +3,NA,6354,"tess",3,0,50,1,50,NA,NA,"Republican" +3,NA,6361,"tess",1,1,99,1,99,NA,NA,"Democrat" +3,NA,6362,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,6366,"tess",4,1,90,1,90,NA,NA,"Democrat" +3,NA,6367,"tess",2,1,60,1,60,NA,NA,"Democrat" +3,NA,6372,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,6373,"tess",4,1,62,1,62,NA,NA,"Democrat" +3,NA,6376,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,6382,"tess",1,1,10,1,10,NA,NA,"Democrat" +3,NA,6383,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,6385,"tess",2,0,67,1,33,NA,NA,"Democrat" +3,NA,6388,"tess",4,1,31,1,31,NA,NA,"Democrat" +3,NA,6391,"tess",3,1,91,1,91,NA,NA,"Democrat" +3,NA,6397,"tess",4,0,0,1,100,NA,NA,"Republican" +3,NA,6401,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,6402,"tess",1,1,1,1,1,NA,NA,"Democrat" +3,NA,6405,"tess",1,0,100,1,0,NA,NA,"Republican" +3,NA,6411,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,6414,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,6419,"tess",3,1,97,1,97,NA,NA,"Democrat" +3,NA,6424,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,6427,"tess",1,1,97,1,97,NA,NA,"Republican" +3,NA,6428,"tess",2,1,95,1,95,NA,NA,"Neither" +3,NA,6430,"tess",2,0,90,1,10,NA,NA,"Democrat" +3,NA,6434,"tess",1,1,3,1,3,NA,NA,"Democrat" +3,NA,6440,"tess",2,1,7,1,7,NA,NA,"Republican" +3,NA,6449,"tess",3,1,18,1,18,NA,NA,"Republican" +3,NA,6452,"tess",2,1,98,1,98,NA,NA,"Republican" +3,NA,6458,"tess",1,1,10,1,10,NA,NA,"Republican" +3,NA,6462,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,6463,"tess",2,0,0,1,100,NA,NA,"Democrat" +3,NA,6466,"tess",2,0,90,1,10,NA,NA,"Democrat" +3,NA,6467,"tess",3,0,91,1,9,NA,NA,"Democrat" +3,NA,6468,"tess",3,0,9,1,91,NA,NA,"Republican" +3,NA,6469,"tess",2,1,74,1,74,NA,NA,"Democrat" +3,NA,6472,"tess",1,0,98,1,2,NA,NA,"Republican" +3,NA,6473,"tess",3,1,96,1,96,NA,NA,"Republican" +3,NA,6488,"tess",4,1,0,1,0,NA,NA,"Republican" +3,NA,6489,"tess",3,0,96,1,4,NA,NA,"Democrat" +3,NA,6491,"tess",2,1,100,1,100,NA,NA,"Neither" +3,NA,6496,"tess",3,1,70,1,70,NA,NA,"Democrat" +3,NA,6501,"tess",4,1,99,1,99,NA,NA,"Neither" +3,NA,6506,"tess",2,1,6,1,6,NA,NA,"Democrat" +3,NA,6507,"tess",2,0,84,1,16,NA,NA,"Republican" +3,NA,6508,"tess",2,1,72,1,72,NA,NA,"Republican" +3,NA,6513,"tess",3,0,90,1,10,NA,NA,"Republican" +3,NA,6516,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,6519,"tess",1,0,51,1,49,NA,NA,"Republican" +3,NA,6521,"tess",3,0,30,1,70,NA,NA,"Democrat" +3,NA,6522,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,6524,"tess",2,1,96,1,96,NA,NA,"Democrat" +3,NA,6527,"tess",4,0,61,1,39,NA,NA,"Democrat" +3,NA,6532,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,6534,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,6538,"tess",1,1,50,1,50,NA,NA,"Republican" +3,NA,6540,"tess",4,1,0,1,0,NA,NA,"Democrat" +3,NA,6541,"tess",1,1,67,1,67,NA,NA,"Democrat" +3,NA,6545,"tess",4,0,91,1,9,NA,NA,"Democrat" +3,NA,6547,"tess",3,1,10,1,10,NA,NA,"Republican" +3,NA,6548,"tess",4,0,50,1,50,NA,NA,"Democrat" +3,NA,6549,"tess",4,0,58,1,42,NA,NA,"Democrat" +3,NA,6551,"tess",1,1,60,1,60,NA,NA,"Democrat" +3,NA,6553,"tess",4,1,98,1,98,NA,NA,"Republican" +3,NA,6557,"tess",1,1,90,1,90,NA,NA,"Republican" +3,NA,6558,"tess",3,0,99,1,1,NA,NA,"Republican" +3,NA,6561,"tess",2,1,69,1,69,NA,NA,"Democrat" +3,NA,6562,"tess",1,0,88,1,12,NA,NA,"Republican" +3,NA,6565,"tess",3,0,85,1,15,NA,NA,"Democrat" +3,NA,6568,"tess",2,0,66,1,34,NA,NA,"Democrat" +3,NA,6571,"tess",4,1,21,1,21,NA,NA,"Republican" +3,NA,6572,"tess",3,0,71,1,29,NA,NA,"Democrat" +3,NA,6581,"tess",1,1,88,1,88,NA,NA,"Democrat" +3,NA,6587,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,6588,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,6589,"tess",3,0,62,1,38,NA,NA,"Democrat" +3,NA,6590,"tess",3,1,70,1,70,NA,NA,"Democrat" +3,NA,6592,"tess",3,1,75,1,75,NA,NA,"Democrat" +3,NA,6593,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,6596,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,6599,"tess",1,0,60,1,40,NA,NA,"Democrat" +3,NA,6600,"tess",1,0,60,1,40,NA,NA,"Republican" +3,NA,6607,"tess",3,0,1,1,99,NA,NA,"Democrat" +3,NA,6608,"tess",1,1,1,1,1,NA,NA,"Republican" +3,NA,6609,"tess",1,1,3,1,3,NA,NA,"Democrat" +3,NA,6610,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,6611,"tess",1,0,23,1,77,NA,NA,"Republican" +3,NA,6615,"tess",4,0,90,1,10,NA,NA,"Democrat" +3,NA,6617,"tess",2,0,94,1,6,NA,NA,"Democrat" +3,NA,6619,"tess",3,0,40,1,60,NA,NA,"Republican" +3,NA,6621,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,6625,"tess",1,0,96,1,4,NA,NA,"Democrat" +3,NA,6626,"tess",3,0,40,1,60,NA,NA,"Republican" +3,NA,6633,"tess",4,0,92,1,8,NA,NA,"Republican" +3,NA,6634,"tess",1,1,99,1,99,NA,NA,"Republican" +3,NA,6635,"tess",4,0,31,1,69,NA,NA,"Republican" +3,NA,6636,"tess",4,0,51,1,49,NA,NA,"Republican" +3,NA,6640,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,6642,"tess",3,1,100,1,100,NA,NA,"Democrat" +3,NA,6646,"tess",2,0,70,1,30,NA,NA,"Republican" +3,NA,6647,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,6648,"tess",4,0,78,1,22,NA,NA,"Democrat" +3,NA,6652,"tess",1,1,50,1,50,NA,NA,"Republican" +3,NA,6656,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,6660,"tess",2,1,71,1,71,NA,NA,"Democrat" +3,NA,6661,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,6665,"tess",4,0,97,1,3,NA,NA,"Democrat" +3,NA,6666,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,6667,"tess",2,1,17,1,17,NA,NA,"Democrat" +3,NA,6668,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,6670,"tess",2,1,27,1,27,NA,NA,"Democrat" +3,NA,6674,"tess",4,0,80,1,20,NA,NA,"Democrat" +3,NA,6675,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,6676,"tess",4,0,86,1,14,NA,NA,"Democrat" +3,NA,6680,"tess",1,1,10,1,10,NA,NA,"Republican" +3,NA,6682,"tess",3,1,0,1,0,NA,NA,"Democrat" +3,NA,6683,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,6685,"tess",2,1,84,1,84,NA,NA,"Republican" +3,NA,6686,"tess",4,1,58,1,58,NA,NA,"Republican" +3,NA,6688,"tess",2,0,50,1,50,NA,NA,"Republican" +3,NA,6696,"tess",3,1,99,1,99,NA,NA,"Democrat" +3,NA,6698,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,6702,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,6703,"tess",4,0,75,1,25,NA,NA,"Democrat" +3,NA,6710,"tess",1,1,81,1,81,NA,NA,"Republican" +3,NA,6712,"tess",2,0,21,1,79,NA,NA,"Democrat" +3,NA,6718,"tess",3,1,70,1,70,NA,NA,"Republican" +3,NA,6720,"tess",4,1,84,1,84,NA,NA,"Republican" +3,NA,6725,"tess",1,0,100,1,0,NA,NA,"Republican" +3,NA,6729,"tess",3,1,42,1,42,NA,NA,"Democrat" +3,NA,6730,"tess",4,0,95,1,5,NA,NA,"Democrat" +3,NA,6732,"tess",1,0,67,1,33,NA,NA,"Democrat" +3,NA,6733,"tess",1,0,89,1,11,NA,NA,"Republican" +3,NA,6741,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,6742,"tess",2,1,70,1,70,NA,NA,"Democrat" +3,NA,6748,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,6755,"tess",1,0,31,1,69,NA,NA,"Republican" +3,NA,6758,"tess",3,1,77,1,77,NA,NA,"Republican" +3,NA,6760,"tess",1,1,25,1,25,NA,NA,"Democrat" +3,NA,6775,"tess",4,0,89,1,11,NA,NA,"Republican" +3,NA,6777,"tess",2,0,95,1,5,NA,NA,"Democrat" +3,NA,6780,"tess",1,0,38,1,62,NA,NA,"Democrat" +3,NA,6782,"tess",3,0,91,1,9,NA,NA,"Republican" +3,NA,6783,"tess",4,1,15,1,15,NA,NA,"Democrat" +3,NA,6788,"tess",1,1,94,1,94,NA,NA,"Democrat" +3,NA,6791,"tess",1,0,50,1,50,NA,NA,"Democrat" +3,NA,6792,"tess",2,1,70,1,70,NA,NA,"Democrat" +3,NA,6795,"tess",1,0,71,1,29,NA,NA,"Democrat" +3,NA,6797,"tess",2,0,81,1,19,NA,NA,"Democrat" +3,NA,6802,"tess",2,0,88,1,12,NA,NA,"Democrat" +3,NA,6803,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,6804,"tess",3,0,70,1,30,NA,NA,"Republican" +3,NA,6805,"tess",2,1,20,1,20,NA,NA,"Republican" +3,NA,6814,"tess",3,0,70,1,30,NA,NA,"Democrat" +3,NA,6820,"tess",1,0,70,1,30,NA,NA,"Republican" +3,NA,6825,"tess",2,1,99,1,99,NA,NA,"Democrat" +3,NA,6827,"tess",2,0,72,1,28,NA,NA,"Democrat" +3,NA,6831,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,6833,"tess",1,1,99,1,99,NA,NA,"Neither" +3,NA,6835,"tess",2,1,91,1,91,NA,NA,"Democrat" +3,NA,6837,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,6838,"tess",3,1,20,1,20,NA,NA,"Democrat" +3,NA,6842,"tess",4,0,95,1,5,NA,NA,"Republican" +3,NA,6843,"tess",1,0,30,1,70,NA,NA,"Republican" +3,NA,6844,"tess",4,0,52,1,48,NA,NA,"Democrat" +3,NA,6853,"tess",1,1,20,1,20,NA,NA,"Democrat" +3,NA,6864,"tess",1,1,4,1,4,NA,NA,"Republican" +3,NA,6865,"tess",1,1,53,1,53,NA,NA,"Democrat" +3,NA,6866,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,6868,"tess",4,0,45,1,55,NA,NA,"Republican" +3,NA,6869,"tess",1,1,20,1,20,NA,NA,"Democrat" +3,NA,6881,"tess",4,0,3,1,97,NA,NA,"Democrat" +3,NA,6882,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,6883,"tess",2,1,69,1,69,NA,NA,"Democrat" +3,NA,6891,"tess",1,1,82,1,82,NA,NA,"Democrat" +3,NA,6893,"tess",1,1,10,1,10,NA,NA,"Republican" +3,NA,6897,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,6908,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,6909,"tess",4,1,80,1,80,NA,NA,"Republican" +3,NA,6910,"tess",4,1,91,1,91,NA,NA,"Democrat" +3,NA,6911,"tess",4,1,60,1,60,NA,NA,"Democrat" +3,NA,6912,"tess",4,0,61,1,39,NA,NA,"Democrat" +3,NA,6913,"tess",1,0,48,1,52,NA,NA,"Democrat" +3,NA,6915,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,6920,"tess",1,0,37,1,63,NA,NA,"Republican" +3,NA,6927,"tess",2,1,61,1,61,NA,NA,"Democrat" +3,NA,6930,"tess",1,1,33,1,33,NA,NA,"Republican" +3,NA,6932,"tess",4,0,74,1,26,NA,NA,"Democrat" +3,NA,6935,"tess",3,1,32,1,32,NA,NA,"Democrat" +3,NA,6936,"tess",2,1,97,1,97,NA,NA,"Republican" +3,NA,6938,"tess",3,0,92,1,8,NA,NA,"Democrat" +3,NA,6951,"tess",3,0,86,1,14,NA,NA,"Democrat" +3,NA,6956,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,6963,"tess",3,0,52,1,48,NA,NA,"Democrat" +3,NA,6971,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,6984,"tess",4,0,90,1,10,NA,NA,"Republican" +3,NA,6997,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,6998,"tess",3,0,99,1,1,NA,NA,"Republican" +3,NA,7003,"tess",4,1,69,1,69,NA,NA,"Republican" +3,NA,7011,"tess",4,1,80,1,80,NA,NA,"Democrat" +3,NA,7022,"tess",3,0,85,1,15,NA,NA,"Democrat" +3,NA,7023,"tess",4,0,50,1,50,NA,NA,"Democrat" +3,NA,7027,"tess",3,0,74,1,26,NA,NA,"Republican" +3,NA,7031,"tess",2,0,80,1,20,NA,NA,"Republican" +3,NA,7036,"tess",4,0,54,1,46,NA,NA,"Republican" +3,NA,7046,"tess",2,0,60,1,40,NA,NA,"Democrat" +3,NA,7048,"tess",4,1,98,1,98,NA,NA,"Democrat" +3,NA,7049,"tess",2,0,85,1,15,NA,NA,"Democrat" +3,NA,7054,"tess",4,1,95,1,95,NA,NA,"Democrat" +3,NA,7055,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,7060,"tess",2,1,90,1,90,NA,NA,"Democrat" +3,NA,7061,"tess",4,0,73,1,27,NA,NA,"Democrat" +3,NA,7066,"tess",1,0,41,1,59,NA,NA,"Democrat" +3,NA,7073,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,7078,"tess",3,1,80,1,80,NA,NA,"Republican" +3,NA,7083,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,7087,"tess",2,1,5,1,5,NA,NA,"Democrat" +3,NA,7088,"tess",4,0,42,1,58,NA,NA,"Democrat" +3,NA,7094,"tess",1,1,9,1,9,NA,NA,"Republican" +3,NA,7099,"tess",1,0,22,1,78,NA,NA,"Democrat" +3,NA,7104,"tess",1,0,97,1,3,NA,NA,"Republican" +3,NA,7106,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,7122,"tess",3,1,68,1,68,NA,NA,"Democrat" +3,NA,7124,"tess",2,0,52,1,48,NA,NA,"Democrat" +3,NA,7125,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,7127,"tess",1,0,97,1,3,NA,NA,"Democrat" +3,NA,7128,"tess",1,0,40,1,60,NA,NA,"Republican" +3,NA,7133,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,7140,"tess",2,0,74,1,26,NA,NA,"Republican" +3,NA,7148,"tess",3,0,98,1,2,NA,NA,"Democrat" +3,NA,7153,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,7158,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,7161,"tess",1,0,71,1,29,NA,NA,"Democrat" +3,NA,7164,"tess",1,0,96,1,4,NA,NA,"Neither" +3,NA,7166,"tess",4,1,0,1,0,NA,NA,"Neither" +3,NA,7174,"tess",4,1,53,1,53,NA,NA,"Democrat" +3,NA,7182,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,7186,"tess",3,1,40,1,40,NA,NA,"Democrat" +3,NA,7190,"tess",3,0,65,1,35,NA,NA,"Democrat" +3,NA,7197,"tess",1,0,2,1,98,NA,NA,"Republican" +3,NA,7199,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,7201,"tess",1,0,0,1,100,NA,NA,"Democrat" +3,NA,7210,"tess",4,1,5,1,5,NA,NA,"Neither" +3,NA,7216,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,7218,"tess",1,1,49,1,49,NA,NA,"Democrat" +3,NA,7222,"tess",2,0,92,1,8,NA,NA,"Democrat" +3,NA,7223,"tess",2,0,62,1,38,NA,NA,"Democrat" +3,NA,7224,"tess",4,1,13,1,13,NA,NA,"Republican" +3,NA,7225,"tess",4,1,90,1,90,NA,NA,"Democrat" +3,NA,7226,"tess",2,0,61,1,39,NA,NA,"Democrat" +3,NA,7228,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,7230,"tess",1,0,96,1,4,NA,NA,"Republican" +3,NA,7231,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,7235,"tess",4,0,99,1,1,NA,NA,"Democrat" +3,NA,7239,"tess",3,1,99,1,99,NA,NA,"Republican" +3,NA,7240,"tess",4,1,22,1,22,NA,NA,"Democrat" +3,NA,7241,"tess",3,0,100,1,0,NA,NA,"Neither" +3,NA,7248,"tess",3,1,90,1,90,NA,NA,"Democrat" +3,NA,7252,"tess",2,1,100,1,100,NA,NA,"Republican" +3,NA,7253,"tess",1,0,56,1,44,NA,NA,"Neither" +3,NA,7266,"tess",1,1,20,1,20,NA,NA,"Republican" +3,NA,7273,"tess",3,1,71,1,71,NA,NA,"Democrat" +3,NA,7275,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,7276,"tess",2,0,89,1,11,NA,NA,"Republican" +3,NA,7280,"tess",3,0,89,1,11,NA,NA,"Neither" +3,NA,7286,"tess",2,0,0,1,100,NA,NA,"Republican" +3,NA,7287,"tess",1,1,0,1,0,NA,NA,"Republican" +3,NA,7289,"tess",4,0,71,1,29,NA,NA,"Democrat" +3,NA,7297,"tess",1,1,99,1,99,NA,NA,"Democrat" +3,NA,7303,"tess",2,0,70,1,30,NA,NA,"Republican" +3,NA,7307,"tess",1,0,99,1,1,NA,NA,"Democrat" +3,NA,7311,"tess",3,1,95,1,95,NA,NA,"Republican" +3,NA,7315,"tess",3,0,86,1,14,NA,NA,"Neither" +3,NA,7323,"tess",4,1,99,1,99,NA,NA,"Republican" +3,NA,7325,"tess",1,1,90,1,90,NA,NA,"Republican" +3,NA,7330,"tess",4,1,44,1,44,NA,NA,"Democrat" +3,NA,7338,"tess",3,0,97,1,3,NA,NA,"Democrat" +3,NA,7341,"tess",3,1,99,1,99,NA,NA,"Democrat" +3,NA,7353,"tess",2,0,72,1,28,NA,NA,"Democrat" +3,NA,7356,"tess",1,1,75,1,75,NA,NA,"Democrat" +3,NA,7360,"tess",3,1,10,1,10,NA,NA,"Democrat" +3,NA,7368,"tess",4,1,64,1,64,NA,NA,"Democrat" +3,NA,7370,"tess",2,1,5,1,5,NA,NA,"Republican" +3,NA,7373,"tess",4,0,87,1,13,NA,NA,"Democrat" +3,NA,7381,"tess",1,0,98,1,2,NA,NA,"Republican" +3,NA,7388,"tess",2,0,60,1,40,NA,NA,"Democrat" +3,NA,7395,"tess",1,0,10,1,90,NA,NA,"Republican" +3,NA,7397,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,7398,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,7404,"tess",4,1,91,1,91,NA,NA,"Democrat" +3,NA,7407,"tess",3,0,80,1,20,NA,NA,"Republican" +3,NA,7409,"tess",2,1,75,1,75,NA,NA,"Democrat" +3,NA,7412,"tess",2,0,99,1,1,NA,NA,"Republican" +3,NA,7418,"tess",1,0,76,1,24,NA,NA,"Democrat" +3,NA,7425,"tess",4,1,63,1,63,NA,NA,"Democrat" +3,NA,7427,"tess",4,1,80,1,80,NA,NA,"Democrat" +3,NA,7432,"tess",2,1,20,1,20,NA,NA,"Democrat" +3,NA,7437,"tess",3,0,91,1,9,NA,NA,"Democrat" +3,NA,7440,"tess",4,0,98,1,2,NA,NA,"Republican" +3,NA,7441,"tess",4,1,21,1,21,NA,NA,"Democrat" +3,NA,7446,"tess",1,0,78,1,22,NA,NA,"Democrat" +3,NA,7448,"tess",3,1,51,1,51,NA,NA,"Democrat" +3,NA,7450,"tess",3,1,36,1,36,NA,NA,"Democrat" +3,NA,7452,"tess",2,0,51,1,49,NA,NA,"Democrat" +3,NA,7453,"tess",1,1,30,1,30,NA,NA,"Republican" +3,NA,7466,"tess",3,1,50,1,50,NA,NA,"Republican" +3,NA,7470,"tess",2,0,85,1,15,NA,NA,"Republican" +3,NA,7472,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,7475,"tess",4,1,100,1,100,NA,NA,"Neither" +3,NA,7477,"tess",1,1,5,1,5,NA,NA,"Republican" +3,NA,7479,"tess",2,1,9,1,9,NA,NA,"Democrat" +3,NA,7486,"tess",1,1,70,1,70,NA,NA,"Democrat" +3,NA,7494,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,7497,"tess",4,1,5,1,5,NA,NA,"Democrat" +3,NA,7498,"tess",3,1,75,1,75,NA,NA,"Republican" +3,NA,7501,"tess",2,0,81,1,19,NA,NA,"Republican" +3,NA,7504,"tess",4,1,79,1,79,NA,NA,"Republican" +3,NA,7506,"tess",3,1,67,1,67,NA,NA,"Democrat" +3,NA,7524,"tess",3,1,63,1,63,NA,NA,"Democrat" +3,NA,7525,"tess",4,1,80,1,80,NA,NA,"Democrat" +3,NA,7528,"tess",3,0,89,1,11,NA,NA,"Republican" +3,NA,7534,"tess",1,0,40,1,60,NA,NA,"Democrat" +3,NA,7539,"tess",3,1,13,1,13,NA,NA,"Republican" +3,NA,7542,"tess",3,1,9,1,9,NA,NA,"Republican" +3,NA,7543,"tess",2,1,100,1,100,NA,NA,"Republican" +3,NA,7546,"tess",1,0,90,1,10,NA,NA,"Republican" +3,NA,7556,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,7558,"tess",4,1,0,1,0,NA,NA,"Democrat" +3,NA,7563,"tess",4,0,80,1,20,NA,NA,"Democrat" +3,NA,7564,"tess",3,0,83,1,17,NA,NA,"Democrat" +3,NA,7569,"tess",3,1,58,1,58,NA,NA,"Republican" +3,NA,7573,"tess",4,1,1,1,1,NA,NA,"Democrat" +3,NA,7577,"tess",2,1,31,1,31,NA,NA,"Democrat" +3,NA,7580,"tess",4,0,60,1,40,NA,NA,"Republican" +3,NA,7584,"tess",4,0,10,1,90,NA,NA,"Republican" +3,NA,7586,"tess",4,1,100,1,100,NA,NA,"Democrat" +3,NA,7587,"tess",4,0,66,1,34,NA,NA,"Democrat" +3,NA,7588,"tess",3,1,55,1,55,NA,NA,"Republican" +3,NA,7590,"tess",3,0,36,1,64,NA,NA,"Republican" +3,NA,7593,"tess",4,0,86,1,14,NA,NA,"Republican" +3,NA,7594,"tess",3,0,60,1,40,NA,NA,"Democrat" +3,NA,7597,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,7600,"tess",3,0,70,1,30,NA,NA,"Republican" +3,NA,7603,"tess",4,1,8,1,8,NA,NA,"Democrat" +3,NA,7605,"tess",2,0,94,1,6,NA,NA,"Republican" +3,NA,7607,"tess",3,1,40,1,40,NA,NA,"Neither" +3,NA,7608,"tess",4,0,75,1,25,NA,NA,"Republican" +3,NA,7615,"tess",3,1,42,1,42,NA,NA,"Republican" +3,NA,7622,"tess",4,1,70,1,70,NA,NA,"Democrat" +3,NA,7623,"tess",2,1,10,1,10,NA,NA,"Republican" +3,NA,7630,"tess",4,1,100,1,100,NA,NA,"Democrat" +3,NA,7631,"tess",1,1,0,1,0,NA,NA,"Democrat" +3,NA,7634,"tess",1,0,60,1,40,NA,NA,"Republican" +3,NA,7640,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,7641,"tess",4,0,96,1,4,NA,NA,"Democrat" +3,NA,7656,"tess",4,1,10,1,10,NA,NA,"Republican" +3,NA,7659,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,7662,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,7667,"tess",4,1,10,1,10,NA,NA,"Democrat" +3,NA,7668,"tess",2,0,70,1,30,NA,NA,"Republican" +3,NA,7688,"tess",4,0,99,1,1,NA,NA,"Democrat" +3,NA,7694,"tess",3,1,99,1,99,NA,NA,"Republican" +3,NA,7696,"tess",3,0,64,1,36,NA,NA,"Democrat" +3,NA,7699,"tess",4,0,94,1,6,NA,NA,"Democrat" +3,NA,7702,"tess",3,1,81,1,81,NA,NA,"Democrat" +3,NA,7711,"tess",3,0,31,1,69,NA,NA,"Republican" +3,NA,7712,"tess",3,1,10,1,10,NA,NA,"Democrat" +3,NA,7717,"tess",3,1,79,1,79,NA,NA,"Democrat" +3,NA,7722,"tess",4,1,41,1,41,NA,NA,"Republican" +3,NA,7739,"tess",3,1,30,1,30,NA,NA,"Republican" +3,NA,7741,"tess",3,0,99,1,1,NA,NA,"Republican" +3,NA,7747,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,7754,"tess",2,0,41,1,59,NA,NA,"Neither" +3,NA,7759,"tess",3,1,75,1,75,NA,NA,"Democrat" +3,NA,7778,"tess",2,1,0,1,0,NA,NA,"Democrat" +3,NA,7783,"tess",3,0,70,1,30,NA,NA,"Republican" +3,NA,7784,"tess",2,1,25,1,25,NA,NA,"Neither" +3,NA,7786,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,7789,"tess",4,0,73,1,27,NA,NA,"Republican" +3,NA,7792,"tess",1,1,80,1,80,NA,NA,"Neither" +3,NA,7793,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,7799,"tess",3,1,90,1,90,NA,NA,"Democrat" +3,NA,7819,"tess",4,1,52,1,52,NA,NA,"Democrat" +3,NA,7820,"tess",3,1,10,1,10,NA,NA,"Republican" +3,NA,7822,"tess",3,1,30,1,30,NA,NA,"Democrat" +3,NA,7826,"tess",3,0,69,1,31,NA,NA,"Republican" +3,NA,7837,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,7844,"tess",2,1,20,1,20,NA,NA,"Republican" +3,NA,7854,"tess",2,0,95,1,5,NA,NA,"Democrat" +3,NA,7856,"tess",4,0,53,1,47,NA,NA,"Republican" +3,NA,7861,"tess",2,0,53,1,47,NA,NA,"Republican" +3,NA,7864,"tess",2,1,19,1,19,NA,NA,"Republican" +3,NA,7872,"tess",1,0,47,1,53,NA,NA,"Democrat" +3,NA,7880,"tess",1,1,88,1,88,NA,NA,"Democrat" +3,NA,7884,"tess",3,0,10,1,90,NA,NA,"Democrat" +3,NA,7891,"tess",2,1,100,1,100,NA,NA,"Republican" +3,NA,7906,"tess",1,1,90,1,90,NA,NA,"Republican" +3,NA,7908,"tess",2,0,99,1,1,NA,NA,"Republican" +3,NA,7910,"tess",2,1,19,1,19,NA,NA,"Democrat" +3,NA,7918,"tess",2,1,75,1,75,NA,NA,"Democrat" +3,NA,7922,"tess",3,1,81,1,81,NA,NA,"Democrat" +3,NA,7930,"tess",1,1,6,1,6,NA,NA,"Republican" +3,NA,7936,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,7942,"tess",3,1,35,1,35,NA,NA,"Republican" +3,NA,7946,"tess",4,1,60,1,60,NA,NA,"Democrat" +3,NA,7951,"tess",4,1,77,1,77,NA,NA,"Republican" +3,NA,7957,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,7959,"tess",4,1,83,1,83,NA,NA,"Democrat" +3,NA,7960,"tess",2,0,88,1,12,NA,NA,"Democrat" +3,NA,7965,"tess",2,0,74,1,26,NA,NA,"Democrat" +3,NA,7967,"tess",4,1,96,1,96,NA,NA,"Democrat" +3,NA,7968,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,7973,"tess",1,1,92,1,92,NA,NA,"Republican" +3,NA,7982,"tess",4,0,85,1,15,NA,NA,"Democrat" +3,NA,7983,"tess",2,0,84,1,16,NA,NA,"Democrat" +3,NA,7987,"tess",2,1,4,1,4,NA,NA,"Democrat" +3,NA,7988,"tess",2,0,58,1,42,NA,NA,"Democrat" +3,NA,7991,"tess",1,0,40,1,60,NA,NA,"Republican" +3,NA,7995,"tess",1,1,92,1,92,NA,NA,"Republican" +3,NA,7998,"tess",2,1,21,1,21,NA,NA,"Democrat" +3,NA,8000,"tess",4,1,61,1,61,NA,NA,"Democrat" +3,NA,8001,"tess",2,1,10,1,10,NA,NA,"Republican" +3,NA,8010,"tess",1,1,50,1,50,NA,NA,"Republican" +3,NA,8011,"tess",2,0,71,1,29,NA,NA,"Republican" +3,NA,8019,"tess",2,0,20,1,80,NA,NA,"Republican" +3,NA,8023,"tess",3,0,25,1,75,NA,NA,"Democrat" +3,NA,8041,"tess",1,0,60,1,40,NA,NA,"Republican" +3,NA,8042,"tess",1,0,45,1,55,NA,NA,"Republican" +3,NA,8049,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,8050,"tess",2,0,30,1,70,NA,NA,"Neither" +3,NA,8055,"tess",3,0,94,1,6,NA,NA,"Democrat" +3,NA,8061,"tess",3,0,89,1,11,NA,NA,"Republican" +3,NA,8062,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,8063,"tess",1,1,78,1,78,NA,NA,"Republican" +3,NA,8064,"tess",1,0,0,1,100,NA,NA,"Democrat" +3,NA,8065,"tess",1,1,95,1,95,NA,NA,"Democrat" +3,NA,8069,"tess",2,0,40,1,60,NA,NA,"Democrat" +3,NA,8078,"tess",3,0,60,1,40,NA,NA,"Republican" +3,NA,8079,"tess",3,1,99,1,99,NA,NA,"Democrat" +3,NA,8081,"tess",4,1,59,1,59,NA,NA,"Democrat" +3,NA,8095,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,8096,"tess",2,0,97,1,3,NA,NA,"Republican" +3,NA,8097,"tess",1,0,57,1,43,NA,NA,"Republican" +3,NA,8101,"tess",3,1,65,1,65,NA,NA,"Republican" +3,NA,8104,"tess",3,1,22,1,22,NA,NA,"Republican" +3,NA,8110,"tess",3,0,26,1,74,NA,NA,"Democrat" +3,NA,8112,"tess",1,0,51,1,49,NA,NA,"Democrat" +3,NA,8116,"tess",3,0,82,1,18,NA,NA,"Democrat" +3,NA,8127,"tess",2,0,67,1,33,NA,NA,"Republican" +3,NA,8134,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,8141,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,8142,"tess",3,0,10,1,90,NA,NA,"Democrat" +3,NA,8146,"tess",4,1,0,1,0,NA,NA,"Republican" +3,NA,8152,"tess",3,0,59,1,41,NA,NA,"Democrat" +3,NA,8159,"tess",2,1,40,1,40,NA,NA,"Neither" +3,NA,8160,"tess",2,0,97,1,3,NA,NA,"Democrat" +3,NA,8170,"tess",4,0,44,1,56,NA,NA,"Democrat" +3,NA,8176,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,8181,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,8190,"tess",3,1,45,1,45,NA,NA,"Democrat" +3,NA,8191,"tess",1,0,80,1,20,NA,NA,"Democrat" +3,NA,8196,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,8197,"tess",2,1,80,1,80,NA,NA,"Republican" +3,NA,8199,"tess",4,1,69,1,69,NA,NA,"Democrat" +3,NA,8201,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,8202,"tess",3,0,70,1,30,NA,NA,"Republican" +3,NA,8203,"tess",4,1,79,1,79,NA,NA,"Republican" +3,NA,8207,"tess",3,0,98,1,2,NA,NA,"Democrat" +3,NA,8218,"tess",3,0,84,1,16,NA,NA,"Democrat" +3,NA,8221,"tess",2,0,72,1,28,NA,NA,"Democrat" +3,NA,8224,"tess",3,0,100,1,0,NA,NA,"Republican" +3,NA,8228,"tess",4,1,44,1,44,NA,NA,"Democrat" +3,NA,8232,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,8244,"tess",1,0,50,1,50,NA,NA,"Republican" +3,NA,8247,"tess",3,0,19,1,81,NA,NA,"Republican" +3,NA,8249,"tess",3,1,5,1,5,NA,NA,"Democrat" +3,NA,8250,"tess",2,1,30,1,30,NA,NA,"Democrat" +3,NA,8252,"tess",2,0,10,1,90,NA,NA,"Democrat" +3,NA,8253,"tess",1,0,56,1,44,NA,NA,"Democrat" +3,NA,8260,"tess",4,0,100,1,0,NA,NA,"Neither" +3,NA,8265,"tess",1,0,50,1,50,NA,NA,"Republican" +3,NA,8267,"tess",2,0,75,1,25,NA,NA,"Republican" +3,NA,8272,"tess",3,1,74,1,74,NA,NA,"Democrat" +3,NA,8274,"tess",1,1,1,1,1,NA,NA,"Republican" +3,NA,8276,"tess",2,0,80,1,20,NA,NA,"Republican" +3,NA,8280,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,8285,"tess",4,0,0,1,100,NA,NA,"Democrat" +3,NA,8287,"tess",3,1,85,1,85,NA,NA,"Democrat" +3,NA,8308,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,8317,"tess",1,0,98,1,2,NA,NA,"Republican" +3,NA,8324,"tess",1,1,93,1,93,NA,NA,"Republican" +3,NA,8327,"tess",3,1,86,1,86,NA,NA,"Democrat" +3,NA,8331,"tess",2,1,10,1,10,NA,NA,"Democrat" +3,NA,8333,"tess",2,1,64,1,64,NA,NA,"Democrat" +3,NA,8335,"tess",2,0,98,1,2,NA,NA,"Republican" +3,NA,8337,"tess",1,0,100,1,0,NA,NA,"Republican" +3,NA,8344,"tess",2,0,96,1,4,NA,NA,"Democrat" +3,NA,8345,"tess",2,1,91,1,91,NA,NA,"Democrat" +3,NA,8347,"tess",1,1,77,1,77,NA,NA,"Republican" +3,NA,8356,"tess",4,0,0,1,100,NA,NA,"Neither" +3,NA,8360,"tess",1,0,98,1,2,NA,NA,"Democrat" +3,NA,8361,"tess",3,1,51,1,51,NA,NA,"Republican" +3,NA,8371,"tess",4,0,92,1,8,NA,NA,"Republican" +3,NA,8374,"tess",2,0,99,1,1,NA,NA,"Republican" +3,NA,8378,"tess",4,1,0,1,0,NA,NA,"Republican" +3,NA,8386,"tess",4,0,50,1,50,NA,NA,"Republican" +3,NA,8397,"tess",2,0,10,1,90,NA,NA,"Republican" +3,NA,8400,"tess",3,1,8,1,8,NA,NA,"Democrat" +3,NA,8405,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,8406,"tess",3,0,85,1,15,NA,NA,"Democrat" +3,NA,8425,"tess",3,0,91,1,9,NA,NA,"Democrat" +3,NA,8432,"tess",3,1,38,1,38,NA,NA,"Democrat" +3,NA,8435,"tess",4,0,42,1,58,NA,NA,"Republican" +3,NA,8449,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,8452,"tess",3,0,98,1,2,NA,NA,"Republican" +3,NA,8455,"tess",3,0,1,1,99,NA,NA,"Republican" +3,NA,8466,"tess",3,1,20,1,20,NA,NA,"Democrat" +3,NA,8468,"tess",4,0,92,1,8,NA,NA,"Democrat" +3,NA,8476,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,8489,"tess",1,0,90,1,10,NA,NA,"Democrat" +3,NA,8503,"tess",3,1,80,1,80,NA,NA,"Republican" +3,NA,8507,"tess",3,0,80,1,20,NA,NA,"Democrat" +3,NA,8522,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,8541,"tess",1,0,14,1,86,NA,NA,"Republican" +3,NA,8544,"tess",4,1,97,1,97,NA,NA,"Democrat" +3,NA,8545,"tess",2,0,50,1,50,NA,NA,"Republican" +3,NA,8550,"tess",3,1,98,1,98,NA,NA,"Democrat" +3,NA,8552,"tess",4,0,10,1,90,NA,NA,"Democrat" +3,NA,8556,"tess",4,1,36,1,36,NA,NA,"Democrat" +3,NA,8558,"tess",2,0,96,1,4,NA,NA,"Republican" +3,NA,8564,"tess",4,1,52,1,52,NA,NA,"Republican" +3,NA,8568,"tess",1,1,59,1,59,NA,NA,"Democrat" +3,NA,8573,"tess",2,0,49,1,51,NA,NA,"Democrat" +3,NA,8577,"tess",4,1,51,1,51,NA,NA,"Democrat" +3,NA,8579,"tess",4,0,50,1,50,NA,NA,"Democrat" +3,NA,8583,"tess",1,1,7,1,7,NA,NA,"Democrat" +3,NA,8589,"tess",3,0,70,1,30,NA,NA,"Democrat" +3,NA,8590,"tess",2,1,2,1,2,NA,NA,"Republican" +3,NA,8600,"tess",3,0,80,1,20,NA,NA,"Democrat" +3,NA,8607,"tess",3,1,80,1,80,NA,NA,"Republican" +3,NA,8608,"tess",4,0,80,1,20,NA,NA,"Republican" +3,NA,8618,"tess",1,0,89,1,11,NA,NA,"Republican" +3,NA,8619,"tess",1,0,99,1,1,NA,NA,"Republican" +3,NA,8638,"tess",2,1,70,1,70,NA,NA,"Neither" +3,NA,8640,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,8651,"tess",3,1,66,1,66,NA,NA,"Republican" +3,NA,8659,"tess",3,0,5,1,95,NA,NA,"Democrat" +3,NA,8669,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,8680,"tess",3,1,20,1,20,NA,NA,"Republican" +3,NA,8685,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,8686,"tess",3,1,100,1,100,NA,NA,"Republican" +3,NA,8706,"tess",3,0,87,1,13,NA,NA,"Republican" +3,NA,8707,"tess",4,0,98,1,2,NA,NA,"Republican" +3,NA,8709,"tess",3,1,59,1,59,NA,NA,"Republican" +3,NA,8710,"tess",4,1,86,1,86,NA,NA,"Democrat" +3,NA,8713,"tess",4,0,0,1,100,NA,NA,"Republican" +3,NA,8714,"tess",4,1,70,1,70,NA,NA,"Democrat" +3,NA,8717,"tess",3,1,33,1,33,NA,NA,"Republican" +3,NA,8719,"tess",4,0,50,1,50,NA,NA,"Republican" +3,NA,8724,"tess",2,0,19,1,81,NA,NA,"Democrat" +3,NA,8727,"tess",1,0,65,1,35,NA,NA,"Democrat" +3,NA,8728,"tess",2,1,25,1,25,NA,NA,"Republican" +3,NA,8731,"tess",3,0,96,1,4,NA,NA,"Democrat" +3,NA,8739,"tess",4,1,80,1,80,NA,NA,"Republican" +3,NA,8746,"tess",4,1,92,1,92,NA,NA,"Republican" +3,NA,8755,"tess",4,1,57,1,57,NA,NA,"Democrat" +3,NA,8763,"tess",1,0,80,1,20,NA,NA,"Republican" +3,NA,8765,"tess",4,0,79,1,21,NA,NA,"Democrat" +3,NA,8768,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,8777,"tess",4,1,10,1,10,NA,NA,"Democrat" +3,NA,8779,"tess",2,1,100,1,100,NA,NA,"Republican" +3,NA,8782,"tess",4,0,53,1,47,NA,NA,"Republican" +3,NA,8790,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,8797,"tess",4,0,81,1,19,NA,NA,"Republican" +3,NA,8806,"tess",1,0,84,1,16,NA,NA,"Neither" +3,NA,8810,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,8814,"tess",1,0,71,1,29,NA,NA,"Democrat" +3,NA,8816,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,8819,"tess",4,1,23,1,23,NA,NA,"Republican" +3,NA,8821,"tess",2,0,81,1,19,NA,NA,"Republican" +3,NA,8826,"tess",1,1,95,1,95,NA,NA,"Republican" +3,NA,8836,"tess",1,1,61,1,61,NA,NA,"Democrat" +3,NA,8837,"tess",4,1,100,1,100,NA,NA,"Democrat" +3,NA,8848,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,8853,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,8866,"tess",3,1,10,1,10,NA,NA,"Democrat" +3,NA,8877,"tess",4,0,13,1,87,NA,NA,"Republican" +3,NA,8881,"tess",3,1,4,1,4,NA,NA,"Democrat" +3,NA,8888,"tess",2,0,84,1,16,NA,NA,"Republican" +3,NA,8890,"tess",2,0,86,1,14,NA,NA,"Republican" +3,NA,8892,"tess",2,1,20,1,20,NA,NA,"Democrat" +3,NA,8893,"tess",3,0,89,1,11,NA,NA,"Democrat" +3,NA,8894,"tess",2,0,82,1,18,NA,NA,"Democrat" +3,NA,8900,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,8903,"tess",1,1,85,1,85,NA,NA,"Republican" +3,NA,8925,"tess",3,1,58,1,58,NA,NA,"Democrat" +3,NA,8932,"tess",2,0,59,1,41,NA,NA,"Democrat" +3,NA,8933,"tess",2,0,43,1,57,NA,NA,"Republican" +3,NA,8934,"tess",2,0,56,1,44,NA,NA,"Democrat" +3,NA,8939,"tess",1,1,10,1,10,NA,NA,"Democrat" +3,NA,8941,"tess",3,1,25,1,25,NA,NA,"Neither" +3,NA,8946,"tess",1,1,80,1,80,NA,NA,"Democrat" +3,NA,8953,"tess",1,0,5,1,95,NA,NA,"Republican" +3,NA,8956,"tess",1,0,57,1,43,NA,NA,"Republican" +3,NA,8970,"tess",4,1,92,1,92,NA,NA,"Republican" +3,NA,8973,"tess",2,1,5,1,5,NA,NA,"Republican" +3,NA,8981,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,8983,"tess",1,0,91,1,9,NA,NA,"Democrat" +3,NA,8988,"tess",3,0,70,1,30,NA,NA,"Republican" +3,NA,8990,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,8995,"tess",3,1,90,1,90,NA,NA,"Republican" +3,NA,8999,"tess",4,0,4,1,96,NA,NA,"Democrat" +3,NA,9007,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,9018,"tess",2,1,30,1,30,NA,NA,"Democrat" +3,NA,9024,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,9025,"tess",4,0,8,1,92,NA,NA,"Republican" +3,NA,9029,"tess",1,1,3,1,3,NA,NA,"Neither" +3,NA,9034,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,9038,"tess",4,1,71,1,71,NA,NA,"Neither" +3,NA,9050,"tess",3,0,90,1,10,NA,NA,"Republican" +3,NA,9057,"tess",4,1,99,1,99,NA,NA,"Republican" +3,NA,9065,"tess",2,1,92,1,92,NA,NA,"Neither" +3,NA,9066,"tess",4,0,50,1,50,NA,NA,"Republican" +3,NA,9068,"tess",2,1,25,1,25,NA,NA,"Democrat" +3,NA,9070,"tess",2,0,70,1,30,NA,NA,"Democrat" +3,NA,9074,"tess",1,1,80,1,80,NA,NA,"Republican" +3,NA,9075,"tess",2,1,99,1,99,NA,NA,"Democrat" +3,NA,9081,"tess",1,0,50,1,50,NA,NA,"Republican" +3,NA,9083,"tess",1,1,36,1,36,NA,NA,"Neither" +3,NA,9084,"tess",4,1,90,1,90,NA,NA,"Democrat" +3,NA,9101,"tess",4,1,75,1,75,NA,NA,"Democrat" +3,NA,9105,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,9106,"tess",3,1,30,1,30,NA,NA,"Republican" +3,NA,9108,"tess",1,1,21,1,21,NA,NA,"Democrat" +3,NA,9109,"tess",3,0,77,1,23,NA,NA,"Democrat" +3,NA,9119,"tess",2,1,20,1,20,NA,NA,"Democrat" +3,NA,9120,"tess",1,1,6,1,6,NA,NA,"Democrat" +3,NA,9135,"tess",3,1,96,1,96,NA,NA,"Democrat" +3,NA,9146,"tess",2,0,90,1,10,NA,NA,"Republican" +3,NA,9148,"tess",2,0,98,1,2,NA,NA,"Republican" +3,NA,9149,"tess",4,0,59,1,41,NA,NA,"Democrat" +3,NA,9150,"tess",2,0,89,1,11,NA,NA,"Republican" +3,NA,9152,"tess",3,0,77,1,23,NA,NA,"Democrat" +3,NA,9153,"tess",3,0,98,1,2,NA,NA,"Democrat" +3,NA,9154,"tess",2,0,70,1,30,NA,NA,"Democrat" +3,NA,9155,"tess",2,1,78,1,78,NA,NA,"Democrat" +3,NA,9166,"tess",4,0,100,1,0,NA,NA,"Republican" +3,NA,9169,"tess",4,0,20,1,80,NA,NA,"Republican" +3,NA,9184,"tess",4,1,50,1,50,NA,NA,"Democrat" +3,NA,9189,"tess",1,0,81,1,19,NA,NA,"Republican" +3,NA,9193,"tess",2,1,69,1,69,NA,NA,"Democrat" +3,NA,9198,"tess",1,1,84,1,84,NA,NA,"Democrat" +3,NA,9199,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,9210,"tess",1,0,51,1,49,NA,NA,"Democrat" +3,NA,9211,"tess",1,1,100,1,100,NA,NA,"Republican" +3,NA,9230,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,9235,"tess",1,0,94,1,6,NA,NA,"Democrat" +3,NA,9236,"tess",2,1,50,1,50,NA,NA,"Republican" +3,NA,9239,"tess",2,0,91,1,9,NA,NA,"Democrat" +3,NA,9245,"tess",1,1,90,1,90,NA,NA,"Republican" +3,NA,9247,"tess",3,1,8,1,8,NA,NA,"Democrat" +3,NA,9260,"tess",4,0,80,1,20,NA,NA,"Republican" +3,NA,9267,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,9269,"tess",2,0,76,1,24,NA,NA,"Democrat" +3,NA,9279,"tess",1,1,48,1,48,NA,NA,"Democrat" +3,NA,9281,"tess",3,1,97,1,97,NA,NA,"Republican" +3,NA,9284,"tess",3,1,30,1,30,NA,NA,"Republican" +3,NA,9286,"tess",4,0,97,1,3,NA,NA,"Democrat" +3,NA,9292,"tess",3,1,70,1,70,NA,NA,"Republican" +3,NA,9295,"tess",2,1,90,1,90,NA,NA,"Republican" +3,NA,9297,"tess",2,0,50,1,50,NA,NA,"Republican" +3,NA,9298,"tess",1,0,90,1,10,NA,NA,"Democrat" +3,NA,9301,"tess",1,1,52,1,52,NA,NA,"Democrat" +3,NA,9302,"tess",3,0,80,1,20,NA,NA,"Democrat" +3,NA,9314,"tess",3,1,98,1,98,NA,NA,"Republican" +3,NA,9316,"tess",4,1,56,1,56,NA,NA,"Republican" +3,NA,9319,"tess",2,1,50,1,50,NA,NA,"Democrat" +3,NA,9332,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,9337,"tess",4,1,79,1,79,NA,NA,"Republican" +3,NA,9340,"tess",3,1,42,1,42,NA,NA,"Democrat" +3,NA,9342,"tess",1,1,76,1,76,NA,NA,"Republican" +3,NA,9346,"tess",3,1,10,1,10,NA,NA,"Democrat" +3,NA,9352,"tess",3,0,56,1,44,NA,NA,"Democrat" +3,NA,9360,"tess",3,0,95,1,5,NA,NA,"Republican" +3,NA,9366,"tess",3,0,19,1,81,NA,NA,"Republican" +3,NA,9372,"tess",4,0,83,1,17,NA,NA,"Democrat" +3,NA,9383,"tess",3,0,74,1,26,NA,NA,"Republican" +3,NA,9395,"tess",4,0,40,1,60,NA,NA,"Democrat" +3,NA,9398,"tess",4,1,29,1,29,NA,NA,"Republican" +3,NA,9412,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,9419,"tess",2,1,49,1,49,NA,NA,"Democrat" +3,NA,9420,"tess",1,0,100,1,0,NA,NA,"Democrat" +3,NA,9422,"tess",2,1,100,1,100,NA,NA,"Democrat" +3,NA,9424,"tess",4,0,100,1,0,NA,NA,"Democrat" +3,NA,9425,"tess",3,1,51,1,51,NA,NA,"Democrat" +3,NA,9431,"tess",2,0,80,1,20,NA,NA,"Democrat" +3,NA,9435,"tess",3,0,50,1,50,NA,NA,"Democrat" +3,NA,9440,"tess",4,0,99,1,1,NA,NA,"Republican" +3,NA,9443,"tess",2,1,0,1,0,NA,NA,"Democrat" +3,NA,9458,"tess",4,1,81,1,81,NA,NA,"Republican" +3,NA,9465,"tess",2,0,60,1,40,NA,NA,"Republican" +3,NA,9471,"tess",4,0,96,1,4,NA,NA,"Democrat" +3,NA,9475,"tess",4,1,60,1,60,NA,NA,"Republican" +3,NA,9479,"tess",4,1,99,1,99,NA,NA,"Democrat" +3,NA,9490,"tess",1,0,50,1,50,NA,NA,"Republican" +3,NA,9493,"tess",1,1,1,1,1,NA,NA,"Democrat" +3,NA,9499,"tess",2,1,49,1,49,NA,NA,"Democrat" +3,NA,9500,"tess",1,0,93,1,7,NA,NA,"Republican" +3,NA,9510,"tess",2,0,68,1,32,NA,NA,"Democrat" +3,NA,9512,"tess",3,1,99,1,99,NA,NA,"Democrat" +3,NA,9514,"tess",3,1,28,1,28,NA,NA,"Republican" +3,NA,9517,"tess",2,1,1,1,1,NA,NA,"Neither" +3,NA,9532,"tess",4,0,2,1,98,NA,NA,"Republican" +3,NA,9534,"tess",4,1,48,1,48,NA,NA,"Democrat" +3,NA,9536,"tess",2,1,31,1,31,NA,NA,"Democrat" +3,NA,9538,"tess",2,1,41,1,41,NA,NA,"Republican" +3,NA,9551,"tess",1,1,100,1,100,NA,NA,"Democrat" +3,NA,9563,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,9570,"tess",3,0,83,1,17,NA,NA,"Democrat" +3,NA,9572,"tess",4,0,75,1,25,NA,NA,"Republican" +3,NA,9578,"tess",2,0,100,1,0,NA,NA,"Republican" +3,NA,9585,"tess",1,0,70,1,30,NA,NA,"Democrat" +3,NA,9590,"tess",4,1,31,1,31,NA,NA,"Republican" +3,NA,9601,"tess",1,0,70,1,30,NA,NA,"Republican" +3,NA,9603,"tess",3,0,11,1,89,NA,NA,"Democrat" +3,NA,9608,"tess",2,0,99,1,1,NA,NA,"Democrat" +3,NA,9626,"tess",3,1,50,1,50,NA,NA,"Democrat" +3,NA,9627,"tess",2,0,100,1,0,NA,NA,"Democrat" +3,NA,9631,"tess",3,0,90,1,10,NA,NA,"Democrat" +3,NA,9635,"tess",1,1,90,1,90,NA,NA,"Democrat" +3,NA,9642,"tess",4,1,50,1,50,NA,NA,"Republican" +3,NA,9645,"tess",4,1,62,1,62,NA,NA,"Democrat" +3,NA,9647,"tess",1,1,83,1,83,NA,NA,"Republican" +3,NA,9648,"tess",3,0,100,1,0,NA,NA,"Democrat" +3,NA,9649,"tess",1,0,98,1,2,NA,NA,"Democrat" +3,NA,9650,"tess",2,0,88,1,12,NA,NA,"Republican" +3,NA,9663,"tess",3,1,32,1,32,NA,NA,"Democrat" +3,NA,9664,"tess",4,1,82,1,82,NA,NA,"Republican" +3,NA,9666,"tess",4,1,76,1,76,NA,NA,"Republican" +3,NA,9671,"tess",2,1,80,1,80,NA,NA,"Democrat" +3,NA,9676,"tess",2,0,55,1,45,NA,NA,"Democrat" +3,NA,9679,"tess",2,0,99,1,1,NA,NA,"Republican" +3,NA,9681,"tess",3,0,77,1,23,NA,NA,"Democrat" +3,NA,9684,"tess",1,1,3,1,3,NA,NA,"Democrat" +3,NA,9685,"tess",3,1,99,1,99,NA,NA,"Republican" +3,NA,9686,"tess",3,0,95,1,5,NA,NA,"Democrat" +3,NA,9689,"tess",2,0,50,1,50,NA,NA,"Democrat" +3,NA,9692,"tess",3,1,47,1,47,NA,NA,"Democrat" +3,NA,9693,"tess",2,0,89,1,11,NA,NA,"Neither" +3,NA,9701,"tess",1,1,37,1,37,NA,NA,"Democrat" +3,NA,9703,"tess",4,1,30,1,30,NA,NA,"Democrat" +3,NA,9711,"tess",4,0,30,1,70,NA,NA,"Neither" +3,NA,9716,"tess",1,1,50,1,50,NA,NA,"Democrat" +3,NA,9717,"tess",1,0,40,1,60,NA,NA,"Neither" +3,NA,9729,"tess",2,1,0,1,0,NA,NA,"Republican" +3,NA,9731,"tess",3,1,38,1,38,NA,NA,"Democrat" +3,NA,9741,"tess",4,1,98,1,98,NA,NA,"Republican" +3,NA,9744,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,9752,"turk",3,0,50,1,50,NA,NA,"Democrat" +3,NA,9753,"turk",2,0,85,1,15,NA,NA,"Democrat" +3,NA,9756,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,9763,"turk",3,0,50,1,50,NA,NA,"Neither" +3,NA,9764,"turk",5,0,55,1,45,NA,NA,"Democrat" +3,NA,9764,"turk",5,0,35,2,65,45,NA,"Democrat" +3,NA,9764,"turk",5,0,30,3,70,65,NA,"Democrat" +3,NA,9764,"turk",5,0,30,4,70,70,NA,"Democrat" +3,NA,9764,"turk",5,0,30,5,70,70,NA,"Democrat" +3,NA,9769,"turk",5,0,35,1,65,NA,NA,"Democrat" +3,NA,9769,"turk",5,0,30,2,70,65,NA,"Democrat" +3,NA,9769,"turk",5,0,20,3,80,70,NA,"Democrat" +3,NA,9769,"turk",5,0,1,4,99,80,NA,"Democrat" +3,NA,9769,"turk",5,0,1,5,99,99,NA,"Democrat" +3,NA,9771,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,9774,"turk",3,0,50,1,50,NA,NA,"Democrat" +3,NA,9777,"turk",3,0,56,1,44,NA,NA,"Democrat" +3,NA,9778,"turk",3,0,55,1,45,NA,NA,"Neither" +3,NA,9779,"turk",2,0,55,1,45,NA,NA,"Democrat" +3,NA,9782,"turk",4,0,50,1,50,NA,NA,"Republican" +3,NA,9783,"turk",2,0,60,1,40,NA,NA,"Neither" +3,NA,9785,"turk",3,0,75,1,25,NA,NA,"Democrat" +3,NA,9788,"turk",2,0,88,1,12,NA,NA,"Democrat" +3,NA,9791,"turk",2,0,1,1,99,NA,NA,"Democrat" +3,NA,9796,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,9798,"turk",3,0,80,1,20,NA,NA,"Democrat" +3,NA,9802,"turk",3,0,90,1,10,NA,NA,"Democrat" +3,NA,9805,"turk",2,0,80,1,20,NA,NA,"Democrat" +3,NA,9808,"turk",2,0,80,1,20,NA,NA,"Neither" +3,NA,9809,"turk",2,0,75,1,25,NA,NA,"Neither" +3,NA,9810,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,9811,"turk",3,0,75,1,25,NA,NA,"Republican" +3,NA,9813,"turk",3,0,20,1,80,NA,NA,"Republican" +3,NA,9814,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,9815,"turk",4,0,55,1,45,NA,NA,"Democrat" +3,NA,9816,"turk",4,0,50,1,50,NA,NA,"Democrat" +3,NA,9817,"turk",3,0,1,1,99,NA,NA,"Republican" +3,NA,9818,"turk",4,0,99,1,1,NA,NA,"Republican" +3,NA,9820,"turk",3,0,50,1,50,NA,NA,"Republican" +3,NA,9821,"turk",2,0,75,1,25,NA,NA,"Democrat" +3,NA,9823,"turk",3,0,32,1,68,NA,NA,"Neither" +3,NA,9828,"turk",3,0,70,1,30,NA,NA,"Democrat" +3,NA,9829,"turk",3,0,95,1,5,NA,NA,"Republican" +3,NA,9831,"turk",3,0,75,1,25,NA,NA,"Democrat" +3,NA,9844,"turk",2,0,50,1,50,NA,NA,"Democrat" +3,NA,9845,"turk",2,0,99,1,1,NA,NA,"Neither" +3,NA,9846,"turk",2,0,50,1,50,NA,NA,"Democrat" +3,NA,9847,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,9849,"turk",3,0,99,1,1,NA,NA,"Republican" +3,NA,9857,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,9858,"turk",4,0,0,1,100,NA,NA,"Republican" +3,NA,9859,"turk",4,0,80,1,20,NA,NA,"Democrat" +3,NA,9866,"turk",2,0,70,1,30,NA,NA,"Republican" +3,NA,9867,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,9868,"turk",4,0,60,1,40,NA,NA,"Democrat" +3,NA,9872,"turk",4,0,1,1,99,NA,NA,"Republican" +3,NA,9875,"turk",2,0,60,1,40,NA,NA,"Democrat" +3,NA,9876,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,9879,"turk",3,0,30,1,70,NA,NA,"Democrat" +3,NA,9881,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,9882,"turk",4,0,69,1,31,NA,NA,"Democrat" +3,NA,9883,"turk",3,0,99,1,1,NA,NA,"Republican" +3,NA,9885,"turk",2,0,100,1,0,NA,NA,"Democrat" +3,NA,9889,"turk",5,0,92,1,8,NA,NA,"Neither" +3,NA,9889,"turk",5,0,50,2,50,8,NA,"Neither" +3,NA,9889,"turk",5,0,50,3,50,50,NA,"Neither" +3,NA,9889,"turk",5,0,5,4,95,50,NA,"Neither" +3,NA,9889,"turk",5,0,2,5,98,95,NA,"Neither" +3,NA,9891,"turk",2,0,25,1,75,NA,NA,"Democrat" +3,NA,9894,"turk",4,0,80,1,20,NA,NA,"Democrat" +3,NA,9895,"turk",4,0,99,1,1,NA,NA,"Neither" +3,NA,9897,"turk",4,0,85,1,15,NA,NA,"Democrat" +3,NA,9899,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,9905,"turk",4,0,99,1,1,NA,NA,"Republican" +3,NA,9907,"turk",4,0,70,1,30,NA,NA,"Democrat" +3,NA,9908,"turk",3,0,65,1,35,NA,NA,"Democrat" +3,NA,9909,"turk",4,0,25,1,75,NA,NA,"Neither" +3,NA,9913,"turk",2,0,1,1,99,NA,NA,"Neither" +3,NA,9914,"turk",1,0,50,1,50,NA,NA,"Republican" +3,NA,9914,"turk",1,0,30,2,70,50,NA,"Republican" +3,NA,9914,"turk",1,0,30,3,70,70,NA,"Republican" +3,NA,9914,"turk",1,0,30,4,70,70,NA,"Republican" +3,NA,9914,"turk",1,0,30,5,70,70,NA,"Republican" +3,NA,9915,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,9918,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,9920,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,9921,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,9925,"turk",1,0,70,1,30,NA,NA,"Democrat" +3,NA,9925,"turk",1,0,70,2,30,30,NA,"Democrat" +3,NA,9925,"turk",1,0,2,3,98,30,NA,"Democrat" +3,NA,9925,"turk",1,0,2,4,98,98,NA,"Democrat" +3,NA,9925,"turk",1,0,5,5,95,98,NA,"Democrat" +3,NA,9928,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,9931,"turk",3,0,99,1,1,NA,NA,"Neither" +3,NA,9936,"turk",2,0,50,1,50,NA,NA,"Republican" +3,NA,9938,"turk",3,0,75,1,25,NA,NA,"Democrat" +3,NA,9939,"turk",4,0,75,1,25,NA,NA,"Republican" +3,NA,9943,"turk",2,0,25,1,75,NA,NA,"Republican" +3,NA,9944,"turk",2,0,50,1,50,NA,NA,"Democrat" +3,NA,9946,"turk",2,0,45,1,55,NA,NA,"Democrat" +3,NA,9948,"turk",4,0,50,1,50,NA,NA,"Republican" +3,NA,9949,"turk",2,0,75,1,25,NA,NA,"Neither" +3,NA,9952,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,9954,"turk",3,0,30,1,70,NA,NA,"Democrat" +3,NA,9956,"turk",2,0,50,1,50,NA,NA,"Democrat" +3,NA,9957,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,9958,"turk",3,0,20,1,80,NA,NA,"Republican" +3,NA,9961,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,9963,"turk",4,0,90,1,10,NA,NA,"Republican" +3,NA,9966,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,9967,"turk",3,0,99,1,1,NA,NA,"Neither" +3,NA,9968,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,9969,"turk",2,0,1,1,99,NA,NA,"Democrat" +3,NA,9970,"turk",4,0,0,1,100,NA,NA,"Republican" +3,NA,9972,"turk",2,0,75,1,25,NA,NA,"Democrat" +3,NA,9973,"turk",5,0,75,1,25,NA,NA,"Democrat" +3,NA,9973,"turk",5,0,25,2,75,25,NA,"Democrat" +3,NA,9973,"turk",5,0,10,3,90,75,NA,"Democrat" +3,NA,9973,"turk",5,0,1,4,99,90,NA,"Democrat" +3,NA,9973,"turk",5,0,1,5,99,99,NA,"Democrat" +3,NA,9974,"turk",3,0,75,1,25,NA,NA,"Democrat" +3,NA,9976,"turk",4,0,99,1,1,NA,NA,"Republican" +3,NA,9977,"turk",5,0,100,1,0,NA,NA,"Neither" +3,NA,9977,"turk",5,0,100,2,0,0,NA,"Neither" +3,NA,9977,"turk",5,0,1,3,99,0,NA,"Neither" +3,NA,9977,"turk",5,0,1,4,99,99,NA,"Neither" +3,NA,9977,"turk",5,0,1,5,99,99,NA,"Neither" +3,NA,9978,"turk",3,0,99,1,1,NA,NA,"Republican" +3,NA,9985,"turk",5,0,10,1,90,NA,NA,"Democrat" +3,NA,9985,"turk",5,0,30,2,70,90,NA,"Democrat" +3,NA,9985,"turk",5,0,20,3,80,70,NA,"Democrat" +3,NA,9985,"turk",5,0,40,4,60,80,NA,"Democrat" +3,NA,9985,"turk",5,0,40,5,60,60,NA,"Democrat" +3,NA,9987,"turk",3,0,85,1,15,NA,NA,"Democrat" +3,NA,9990,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10000,"turk",3,0,5,1,95,NA,NA,"Democrat" +3,NA,10003,"turk",3,0,50,1,50,NA,NA,"Democrat" +3,NA,10010,"turk",2,0,80,1,20,NA,NA,"Democrat" +3,NA,10012,"turk",2,0,69,1,31,NA,NA,"Neither" +3,NA,10015,"turk",4,0,30,1,70,NA,NA,"Neither" +3,NA,10016,"turk",3,0,1,1,99,NA,NA,"Neither" +3,NA,10017,"turk",5,0,99,1,1,NA,NA,"Democrat" +3,NA,10017,"turk",5,0,99,2,1,1,NA,"Democrat" +3,NA,10017,"turk",5,0,2,3,98,1,NA,"Democrat" +3,NA,10017,"turk",5,0,2,4,98,98,NA,"Democrat" +3,NA,10017,"turk",5,0,2,5,98,98,NA,"Democrat" +3,NA,10018,"turk",3,0,80,1,20,NA,NA,"Republican" +3,NA,10019,"turk",4,0,99,1,1,NA,NA,"Neither" +3,NA,10021,"turk",4,0,30,1,70,NA,NA,"Democrat" +3,NA,10022,"turk",2,0,75,1,25,NA,NA,"Neither" +3,NA,10024,"turk",3,0,50,1,50,NA,NA,"Republican" +3,NA,10025,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10026,"turk",3,0,70,1,30,NA,NA,"Neither" +3,NA,10029,"turk",3,0,0,1,100,NA,NA,"Democrat" +3,NA,10031,"turk",3,0,25,1,75,NA,NA,"Neither" +3,NA,10032,"turk",3,0,50,1,50,NA,NA,"Democrat" +3,NA,10033,"turk",3,0,100,1,0,NA,NA,"Neither" +3,NA,10036,"turk",2,0,50,1,50,NA,NA,"Republican" +3,NA,10037,"turk",4,0,80,1,20,NA,NA,"Democrat" +3,NA,10039,"turk",3,0,70,1,30,NA,NA,"Democrat" +3,NA,10045,"turk",3,0,75,1,25,NA,NA,"Neither" +3,NA,10047,"turk",4,0,60,1,40,NA,NA,"Democrat" +3,NA,10051,"turk",2,0,89,1,11,NA,NA,"Democrat" +3,NA,10052,"turk",3,0,100,1,0,NA,NA,"Democrat" +3,NA,10053,"turk",1,0,15,1,85,NA,NA,"Republican" +3,NA,10053,"turk",1,0,1,2,99,85,NA,"Republican" +3,NA,10053,"turk",1,0,1,3,99,99,NA,"Republican" +3,NA,10053,"turk",1,0,1,4,99,99,NA,"Republican" +3,NA,10053,"turk",1,0,1,5,99,99,NA,"Republican" +3,NA,10054,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,10056,"turk",1,0,75,1,25,NA,NA,"Republican" +3,NA,10056,"turk",1,0,65,2,35,25,NA,"Republican" +3,NA,10056,"turk",1,0,45,3,55,35,NA,"Republican" +3,NA,10056,"turk",1,0,75,4,25,55,NA,"Republican" +3,NA,10056,"turk",1,0,13,5,87,25,NA,"Republican" +3,NA,10057,"turk",5,0,99,1,1,NA,NA,"Republican" +3,NA,10057,"turk",5,0,50,2,50,1,NA,"Republican" +3,NA,10057,"turk",5,0,1,3,99,50,NA,"Republican" +3,NA,10057,"turk",5,0,1,4,99,99,NA,"Republican" +3,NA,10057,"turk",5,0,1,5,99,99,NA,"Republican" +3,NA,10058,"turk",1,0,50,1,50,NA,NA,"Republican" +3,NA,10058,"turk",1,0,1,2,99,50,NA,"Republican" +3,NA,10058,"turk",1,0,99,3,1,99,NA,"Republican" +3,NA,10058,"turk",1,0,1,4,99,1,NA,"Republican" +3,NA,10058,"turk",1,0,1,5,99,99,NA,"Republican" +3,NA,10059,"turk",5,0,99,1,1,NA,NA,"Democrat" +3,NA,10059,"turk",5,0,85,2,15,1,NA,"Democrat" +3,NA,10059,"turk",5,0,1,3,99,15,NA,"Democrat" +3,NA,10059,"turk",5,0,1,4,99,99,NA,"Democrat" +3,NA,10059,"turk",5,0,1,5,99,99,NA,"Democrat" +3,NA,10061,"turk",2,0,2,1,98,NA,NA,"Democrat" +3,NA,10063,"turk",2,0,50,1,50,NA,NA,"Republican" +3,NA,10064,"turk",1,0,99,1,1,NA,NA,"Republican" +3,NA,10064,"turk",1,0,1,2,99,1,NA,"Republican" +3,NA,10064,"turk",1,0,1,3,99,99,NA,"Republican" +3,NA,10064,"turk",1,0,1,4,99,99,NA,"Republican" +3,NA,10064,"turk",1,0,99,5,1,99,NA,"Republican" +3,NA,10069,"turk",4,0,65,1,35,NA,NA,"Republican" +3,NA,10071,"turk",2,0,50,1,50,NA,NA,"Republican" +3,NA,10073,"turk",4,0,99,1,1,NA,NA,"Neither" +3,NA,10080,"turk",4,0,71,1,29,NA,NA,"Republican" +3,NA,10081,"turk",3,0,1,1,99,NA,NA,"Democrat" +3,NA,10083,"turk",4,0,99,1,1,NA,NA,"Republican" +3,NA,10086,"turk",5,0,0,1,100,NA,NA,"Neither" +3,NA,10086,"turk",5,0,20,2,80,100,NA,"Neither" +3,NA,10086,"turk",5,0,20,3,80,80,NA,"Neither" +3,NA,10086,"turk",5,0,20,4,80,80,NA,"Neither" +3,NA,10086,"turk",5,0,20,5,80,80,NA,"Neither" +3,NA,10087,"turk",4,0,76,1,24,NA,NA,"Neither" +3,NA,10089,"turk",2,0,99,1,1,NA,NA,"Neither" +3,NA,10091,"turk",1,0,75,1,25,NA,NA,"Democrat" +3,NA,10091,"turk",1,0,30,2,70,25,NA,"Democrat" +3,NA,10091,"turk",1,0,85,3,15,70,NA,"Democrat" +3,NA,10091,"turk",1,0,95,4,5,15,NA,"Democrat" +3,NA,10091,"turk",1,0,85,5,15,5,NA,"Democrat" +3,NA,10092,"turk",3,0,1,1,99,NA,NA,"Neither" +3,NA,10093,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10094,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10097,"turk",4,0,35,1,65,NA,NA,"Democrat" +3,NA,10100,"turk",3,0,55,1,45,NA,NA,"Democrat" +3,NA,10101,"turk",4,0,50,1,50,NA,NA,"Democrat" +3,NA,10102,"turk",1,0,80,1,20,NA,NA,"Democrat" +3,NA,10102,"turk",1,0,99,2,1,20,NA,"Democrat" +3,NA,10102,"turk",1,0,1,3,99,1,NA,"Democrat" +3,NA,10102,"turk",1,0,99,4,1,99,NA,"Democrat" +3,NA,10102,"turk",1,0,1,5,99,1,NA,"Democrat" +3,NA,10106,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10107,"turk",1,0,90,1,10,NA,NA,"Democrat" +3,NA,10107,"turk",1,0,95,2,5,10,NA,"Democrat" +3,NA,10107,"turk",1,0,95,3,5,5,NA,"Democrat" +3,NA,10107,"turk",1,0,95,4,5,5,NA,"Democrat" +3,NA,10107,"turk",1,0,95,5,5,5,NA,"Democrat" +3,NA,10108,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10109,"turk",4,0,1,1,99,NA,NA,"Democrat" +3,NA,10110,"turk",4,0,80,1,20,NA,NA,"Republican" +3,NA,10111,"turk",4,0,99,1,1,NA,NA,"Neither" +3,NA,10114,"turk",4,0,99,1,1,NA,NA,"Republican" +3,NA,10115,"turk",3,0,51,1,49,NA,NA,"Republican" +3,NA,10122,"turk",4,0,40,1,60,NA,NA,"Democrat" +3,NA,10123,"turk",3,0,30,1,70,NA,NA,"Republican" +3,NA,10125,"turk",2,0,50,1,50,NA,NA,"Democrat" +3,NA,10126,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,10130,"turk",4,0,20,1,80,NA,NA,"Neither" +3,NA,10132,"turk",2,0,22,1,78,NA,NA,"Republican" +3,NA,10133,"turk",2,0,10,1,90,NA,NA,"Democrat" +3,NA,10135,"turk",4,0,80,1,20,NA,NA,"Democrat" +3,NA,10138,"turk",2,0,85,1,15,NA,NA,"Democrat" +3,NA,10139,"turk",3,0,88,1,12,NA,NA,"Republican" +3,NA,10141,"turk",4,0,1,1,99,NA,NA,"Republican" +3,NA,10142,"turk",2,0,80,1,20,NA,NA,"Republican" +3,NA,10149,"turk",2,0,50,1,50,NA,NA,"Republican" +3,NA,10151,"turk",4,0,50,1,50,NA,NA,"Democrat" +3,NA,10152,"turk",4,0,50,1,50,NA,NA,"Neither" +3,NA,10153,"turk",3,0,80,1,20,NA,NA,"Republican" +3,NA,10161,"turk",4,0,10,1,90,NA,NA,"Republican" +3,NA,10162,"turk",1,0,50,1,50,NA,NA,"Democrat" +3,NA,10162,"turk",1,0,50,2,50,50,NA,"Democrat" +3,NA,10162,"turk",1,0,50,3,50,50,NA,"Democrat" +3,NA,10162,"turk",1,0,50,4,50,50,NA,"Democrat" +3,NA,10162,"turk",1,0,20,5,80,50,NA,"Democrat" +3,NA,10164,"turk",4,0,50,1,50,NA,NA,"Democrat" +3,NA,10165,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10169,"turk",3,0,80,1,20,NA,NA,"Republican" +3,NA,10170,"turk",2,0,100,1,0,NA,NA,"Neither" +3,NA,10174,"turk",2,0,100,1,0,NA,NA,"Democrat" +3,NA,10175,"turk",4,0,90,1,10,NA,NA,"Neither" +3,NA,10178,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10183,"turk",3,0,50,1,50,NA,NA,"" +3,NA,10184,"turk",4,0,50,1,50,NA,NA,"Republican" +3,NA,10187,"turk",4,0,95,1,5,NA,NA,"Democrat" +3,NA,10190,"turk",4,0,89,1,11,NA,NA,"Democrat" +3,NA,10192,"turk",3,0,25,1,75,NA,NA,"Republican" +3,NA,10193,"turk",3,0,35,1,65,NA,NA,"Democrat" +3,NA,10195,"turk",3,0,75,1,25,NA,NA,"Republican" +3,NA,10199,"turk",3,0,99,1,1,NA,NA,"Republican" +3,NA,10200,"turk",3,0,90,1,10,NA,NA,"Democrat" +3,NA,10201,"turk",5,0,20,1,80,NA,NA,"Republican" +3,NA,10201,"turk",5,0,19,2,81,80,NA,"Republican" +3,NA,10201,"turk",5,0,19,3,81,81,NA,"Republican" +3,NA,10201,"turk",5,0,19,4,81,81,NA,"Republican" +3,NA,10201,"turk",5,0,16,5,84,81,NA,"Republican" +3,NA,10204,"turk",2,0,1,1,99,NA,NA,"Democrat" +3,NA,10209,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10211,"turk",5,0,90,1,10,NA,NA,"Democrat" +3,NA,10211,"turk",5,0,90,2,10,10,NA,"Democrat" +3,NA,10211,"turk",5,0,90,3,10,10,NA,"Democrat" +3,NA,10211,"turk",5,0,90,4,10,10,NA,"Democrat" +3,NA,10211,"turk",5,0,90,5,10,10,NA,"Democrat" +3,NA,10212,"turk",1,0,25,1,75,NA,NA,"Democrat" +3,NA,10212,"turk",1,0,5,2,95,75,NA,"Democrat" +3,NA,10212,"turk",1,0,5,3,95,95,NA,"Democrat" +3,NA,10212,"turk",1,0,5,4,95,95,NA,"Democrat" +3,NA,10212,"turk",1,0,25,5,75,95,NA,"Democrat" +3,NA,10215,"turk",3,0,60,1,40,NA,NA,"Democrat" +3,NA,10216,"turk",3,0,99,1,1,NA,NA,"Republican" +3,NA,10218,"turk",2,0,0,1,100,NA,NA,"Democrat" +3,NA,10222,"turk",4,0,1,1,99,NA,NA,"Neither" +3,NA,10223,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,10225,"turk",4,0,5,1,95,NA,NA,"Republican" +3,NA,10232,"turk",2,0,70,1,30,NA,NA,"Democrat" +3,NA,10233,"turk",1,0,50,1,50,NA,NA,"Neither" +3,NA,10233,"turk",1,0,100,2,0,50,NA,"Neither" +3,NA,10233,"turk",1,0,50,3,50,0,NA,"Neither" +3,NA,10233,"turk",1,0,0,4,100,50,NA,"Neither" +3,NA,10233,"turk",1,0,0,5,100,100,NA,"Neither" +3,NA,10235,"turk",3,0,50,1,50,NA,NA,"Republican" +3,NA,10237,"turk",4,0,90,1,10,NA,NA,"Democrat" +3,NA,10239,"turk",2,0,90,1,10,NA,NA,"Republican" +3,NA,10241,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10242,"turk",2,0,80,1,20,NA,NA,"Republican" +3,NA,10243,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,10245,"turk",2,0,99,1,1,NA,NA,"Neither" +3,NA,10246,"turk",3,0,100,1,0,NA,NA,"Democrat" +3,NA,10247,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10257,"turk",2,0,1,1,99,NA,NA,"Democrat" +3,NA,10259,"turk",5,0,90,1,10,NA,NA,"Democrat" +3,NA,10259,"turk",5,0,99,2,1,10,NA,"Democrat" +3,NA,10259,"turk",5,0,99,3,1,1,NA,"Democrat" +3,NA,10259,"turk",5,0,1,4,99,1,NA,"Democrat" +3,NA,10259,"turk",5,0,1,5,99,99,NA,"Democrat" +3,NA,10260,"turk",3,0,99,1,1,NA,NA,"Neither" +3,NA,10261,"turk",3,0,1,1,99,NA,NA,"Neither" +3,NA,10264,"turk",4,0,99,1,1,NA,NA,"Neither" +3,NA,10268,"turk",2,0,50,1,50,NA,NA,"Democrat" +3,NA,10270,"turk",3,0,99,1,1,NA,NA,"Republican" +3,NA,10275,"turk",3,0,50,1,50,NA,NA,"Democrat" +3,NA,10276,"turk",5,0,99,1,1,NA,NA,"Neither" +3,NA,10276,"turk",5,0,1,2,99,1,NA,"Neither" +3,NA,10276,"turk",5,0,1,3,99,99,NA,"Neither" +3,NA,10276,"turk",5,0,1,4,99,99,NA,"Neither" +3,NA,10276,"turk",5,0,50,5,50,99,NA,"Neither" +3,NA,10277,"turk",5,0,99,1,1,NA,NA,"Democrat" +3,NA,10277,"turk",5,0,1,2,99,1,NA,"Democrat" +3,NA,10277,"turk",5,0,1,3,99,99,NA,"Democrat" +3,NA,10277,"turk",5,0,1,4,99,99,NA,"Democrat" +3,NA,10277,"turk",5,0,1,5,99,99,NA,"Democrat" +3,NA,10283,"turk",4,0,50,1,50,NA,NA,"Republican" +3,NA,10284,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,10288,"turk",1,0,1,1,99,NA,NA,"Neither" +3,NA,10288,"turk",1,0,99,2,1,99,NA,"Neither" +3,NA,10288,"turk",1,0,50,3,50,1,NA,"Neither" +3,NA,10288,"turk",1,0,99,4,1,50,NA,"Neither" +3,NA,10288,"turk",1,0,100,5,0,1,NA,"Neither" +3,NA,10289,"turk",4,0,1,1,99,NA,NA,"Republican" +3,NA,10295,"turk",3,0,95,1,5,NA,NA,"Democrat" +3,NA,10297,"turk",4,0,90,1,10,NA,NA,"Democrat" +3,NA,10298,"turk",2,0,10,1,90,NA,NA,"Neither" +3,NA,10299,"turk",3,0,0,1,100,NA,NA,"Republican" +3,NA,10300,"turk",2,0,80,1,20,NA,NA,"Democrat" +3,NA,10301,"turk",4,0,65,1,35,NA,NA,"Democrat" +3,NA,10302,"turk",2,0,75,1,25,NA,NA,"Republican" +3,NA,10303,"turk",2,0,70,1,30,NA,NA,"Democrat" +3,NA,10309,"turk",4,0,80,1,20,NA,NA,"Republican" +3,NA,10311,"turk",4,0,100,1,0,NA,NA,"Democrat" +3,NA,10312,"turk",2,0,66,1,34,NA,NA,"Democrat" +3,NA,10313,"turk",4,0,50,1,50,NA,NA,"Democrat" +3,NA,10319,"turk",2,0,99,1,1,NA,NA,"Neither" +3,NA,10322,"turk",4,0,80,1,20,NA,NA,"Republican" +3,NA,10324,"turk",2,0,75,1,25,NA,NA,"Neither" +3,NA,10327,"turk",3,0,75,1,25,NA,NA,"Democrat" +3,NA,10328,"turk",4,0,1,1,99,NA,NA,"Neither" +3,NA,10329,"turk",2,0,1,1,99,NA,NA,"Republican" +3,NA,10330,"turk",3,0,40,1,60,NA,NA,"Democrat" +3,NA,10332,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10334,"turk",3,0,15,1,85,NA,NA,"Neither" +3,NA,10335,"turk",3,0,50,1,50,NA,NA,"Democrat" +3,NA,10336,"turk",4,0,70,1,30,NA,NA,"Neither" +3,NA,10345,"turk",4,0,99,1,1,NA,NA,"Republican" +3,NA,10347,"turk",1,0,75,1,25,NA,NA,"Democrat" +3,NA,10347,"turk",1,0,45,2,55,25,NA,"Democrat" +3,NA,10347,"turk",1,0,80,3,20,55,NA,"Democrat" +3,NA,10347,"turk",1,0,0,4,100,20,NA,"Democrat" +3,NA,10347,"turk",1,0,50,5,50,100,NA,"Democrat" +3,NA,10348,"turk",3,0,50,1,50,NA,NA,"Democrat" +3,NA,10349,"turk",3,0,65,1,35,NA,NA,"Republican" +3,NA,10355,"turk",2,0,80,1,20,NA,NA,"Neither" +3,NA,10359,"turk",5,0,99,1,1,NA,NA,"Republican" +3,NA,10359,"turk",5,0,99,2,1,1,NA,"Republican" +3,NA,10359,"turk",5,0,99,3,1,1,NA,"Republican" +3,NA,10359,"turk",5,0,99,4,1,1,NA,"Republican" +3,NA,10359,"turk",5,0,99,5,1,1,NA,"Republican" +3,NA,10370,"turk",3,0,75,1,25,NA,NA,"Neither" +3,NA,10371,"turk",2,0,1,1,99,NA,NA,"Democrat" +3,NA,10372,"turk",2,0,75,1,25,NA,NA,"Neither" +3,NA,10373,"turk",4,0,80,1,20,NA,NA,"Neither" +3,NA,10378,"turk",4,0,50,1,50,NA,NA,"Neither" +3,NA,10379,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10381,"turk",3,0,85,1,15,NA,NA,"Democrat" +3,NA,10382,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10383,"turk",3,0,58,1,42,NA,NA,"Democrat" +3,NA,10384,"turk",4,0,90,1,10,NA,NA,"Democrat" +3,NA,10386,"turk",1,0,99,1,1,NA,NA,"Democrat" +3,NA,10386,"turk",1,0,50,2,50,1,NA,"Democrat" +3,NA,10386,"turk",1,0,99,3,1,50,NA,"Democrat" +3,NA,10386,"turk",1,0,99,4,1,1,NA,"Democrat" +3,NA,10386,"turk",1,0,50,5,50,1,NA,"Democrat" +3,NA,10387,"turk",4,0,10,1,90,NA,NA,"Democrat" +3,NA,10390,"turk",3,0,87,1,13,NA,NA,"Democrat" +3,NA,10394,"turk",5,0,99,1,1,NA,NA,"Democrat" +3,NA,10394,"turk",5,0,1,2,99,1,NA,"Democrat" +3,NA,10394,"turk",5,0,1,3,99,99,NA,"Democrat" +3,NA,10394,"turk",5,0,1,4,99,99,NA,"Democrat" +3,NA,10394,"turk",5,0,1,5,99,99,NA,"Democrat" +3,NA,10395,"turk",3,0,1,1,99,NA,NA,"Neither" +3,NA,10397,"turk",4,0,50,1,50,NA,NA,"Neither" +3,NA,10398,"turk",2,0,60,1,40,NA,NA,"Republican" +3,NA,10399,"turk",4,0,1,1,99,NA,NA,"Democrat" +3,NA,10400,"turk",2,0,1,1,99,NA,NA,"Neither" +3,NA,10403,"turk",2,0,70,1,30,NA,NA,"Republican" +3,NA,10404,"turk",5,0,50,1,50,NA,NA,"Republican" +3,NA,10404,"turk",5,0,1,2,99,50,NA,"Republican" +3,NA,10404,"turk",5,0,1,3,99,99,NA,"Republican" +3,NA,10404,"turk",5,0,1,4,99,99,NA,"Republican" +3,NA,10404,"turk",5,0,1,5,99,99,NA,"Republican" +3,NA,10405,"turk",3,0,60,1,40,NA,NA,"Democrat" +3,NA,10409,"turk",4,0,50,1,50,NA,NA,"Republican" +3,NA,10410,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,10411,"turk",3,0,75,1,25,NA,NA,"Republican" +3,NA,10420,"turk",3,0,1,1,99,NA,NA,"Republican" +3,NA,10423,"turk",2,0,75,1,25,NA,NA,"Neither" +3,NA,10424,"turk",4,0,1,1,99,NA,NA,"Republican" +3,NA,10426,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,10427,"turk",2,0,88,1,12,NA,NA,"Republican" +3,NA,10431,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,10437,"turk",2,0,70,1,30,NA,NA,"Democrat" +3,NA,10438,"turk",3,0,60,1,40,NA,NA,"Republican" +3,NA,10439,"turk",3,0,40,1,60,NA,NA,"Neither" +3,NA,10440,"turk",4,0,47,1,53,NA,NA,"Democrat" +3,NA,10442,"turk",3,0,50,1,50,NA,NA,"Neither" +3,NA,10443,"turk",1,0,94,1,6,NA,NA,"Republican" +3,NA,10443,"turk",1,0,0,2,100,6,NA,"Republican" +3,NA,10443,"turk",1,0,50,3,50,100,NA,"Republican" +3,NA,10443,"turk",1,0,20,4,80,50,NA,"Republican" +3,NA,10443,"turk",1,0,10,5,90,80,NA,"Republican" +3,NA,10444,"turk",3,0,1,1,99,NA,NA,"Republican" +3,NA,10445,"turk",3,0,70,1,30,NA,NA,"Democrat" +3,NA,10447,"turk",2,0,99,1,1,NA,NA,"Neither" +3,NA,10450,"turk",4,0,85,1,15,NA,NA,"Democrat" +3,NA,10452,"turk",4,0,99,1,1,NA,NA,"Neither" +3,NA,10459,"turk",2,0,89,1,11,NA,NA,"Democrat" +3,NA,10460,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10461,"turk",1,0,95,1,5,NA,NA,"Democrat" +3,NA,10461,"turk",1,0,10,2,90,5,NA,"Democrat" +3,NA,10461,"turk",1,0,10,3,90,90,NA,"Democrat" +3,NA,10461,"turk",1,0,10,4,90,90,NA,"Democrat" +3,NA,10461,"turk",1,0,10,5,90,90,NA,"Democrat" +3,NA,10462,"turk",4,0,1,1,99,NA,NA,"Republican" +3,NA,10463,"turk",2,0,50,1,50,NA,NA,"Republican" +3,NA,10465,"turk",4,0,0,1,100,NA,NA,"Democrat" +3,NA,10469,"turk",2,0,99,1,1,NA,NA,"Neither" +3,NA,10470,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10471,"turk",2,0,10,1,90,NA,NA,"Democrat" +3,NA,10472,"turk",2,0,50,1,50,NA,NA,"Republican" +3,NA,10481,"turk",4,0,70,1,30,NA,NA,"Neither" +3,NA,10482,"turk",2,0,99,1,1,NA,NA,"Republican" +3,NA,10484,"turk",3,0,50,1,50,NA,NA,"Democrat" +3,NA,10485,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10487,"turk",2,0,70,1,30,NA,NA,"Democrat" +3,NA,10490,"turk",3,0,80,1,20,NA,NA,"Democrat" +3,NA,10492,"turk",2,0,99,1,1,NA,NA,"Democrat" +3,NA,10493,"turk",1,0,99,1,1,NA,NA,"Democrat" +3,NA,10493,"turk",1,0,50,2,50,1,NA,"Democrat" +3,NA,10493,"turk",1,0,99,3,1,50,NA,"Democrat" +3,NA,10493,"turk",1,0,99,4,1,1,NA,"Democrat" +3,NA,10493,"turk",1,0,50,5,50,1,NA,"Democrat" +3,NA,10494,"turk",2,0,60,1,40,NA,NA,"Republican" +3,NA,10496,"turk",4,0,95,1,5,NA,NA,"Republican" +3,NA,10498,"turk",3,0,75,1,25,NA,NA,"Republican" +3,NA,10500,"turk",3,0,99,1,1,NA,NA,"Neither" +3,NA,10501,"turk",4,0,0,1,100,NA,NA,"Democrat" +3,NA,10504,"turk",4,0,10,1,90,NA,NA,"Democrat" +3,NA,10508,"turk",3,0,77,1,23,NA,NA,"Democrat" +3,NA,10509,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10510,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,10513,"turk",4,0,99,1,1,NA,NA,"Republican" +3,NA,10514,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10515,"turk",5,0,99,1,1,NA,NA,"Republican" +3,NA,10515,"turk",5,0,99,2,1,1,NA,"Republican" +3,NA,10515,"turk",5,0,99,3,1,1,NA,"Republican" +3,NA,10515,"turk",5,0,1,4,99,1,NA,"Republican" +3,NA,10515,"turk",5,0,1,5,99,99,NA,"Republican" +3,NA,10516,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10518,"turk",4,0,1,1,99,NA,NA,"Republican" +3,NA,10521,"turk",1,0,70,1,30,NA,NA,"Democrat" +3,NA,10521,"turk",1,0,89,2,11,30,NA,"Democrat" +3,NA,10521,"turk",1,0,99,3,1,11,NA,"Democrat" +3,NA,10521,"turk",1,0,1,4,99,1,NA,"Democrat" +3,NA,10521,"turk",1,0,12,5,88,99,NA,"Democrat" +3,NA,10523,"turk",4,0,99,1,1,NA,NA,"Democrat" +3,NA,10524,"turk",1,0,0,1,100,NA,NA,"Democrat" +3,NA,10524,"turk",1,0,0,2,100,100,NA,"Democrat" +3,NA,10524,"turk",1,0,50,3,50,100,NA,"Democrat" +3,NA,10524,"turk",1,0,60,4,40,50,NA,"Democrat" +3,NA,10524,"turk",1,0,50,5,50,40,NA,"Democrat" +3,NA,10527,"turk",2,0,40,1,60,NA,NA,"Democrat" +3,NA,10530,"turk",3,0,99,1,1,NA,NA,"Democrat" +3,NA,10531,"turk",2,0,88,1,12,NA,NA,"Neither" +3,NA,9745,"turk",4,1,80,1,80,NA,NA,"Republican" +3,NA,9746,"turk",4,1,1,1,1,NA,NA,"Neither" +3,NA,9747,"turk",4,1,90,1,90,NA,NA,"Neither" +3,NA,9748,"turk",4,1,75,1,75,NA,NA,"Democrat" +3,NA,9749,"turk",4,1,100,1,100,NA,NA,"Democrat" +3,NA,9751,"turk",4,1,99,1,99,NA,NA,"Democrat" +3,NA,9755,"turk",2,1,80,1,80,NA,NA,"Republican" +3,NA,9758,"turk",3,1,50,1,50,NA,NA,"Neither" +3,NA,9759,"turk",4,1,75,1,75,NA,NA,"Republican" +3,NA,9760,"turk",4,1,25,1,25,NA,NA,"Neither" +3,NA,9761,"turk",4,1,76,1,76,NA,NA,"Democrat" +3,NA,9762,"turk",4,1,40,1,40,NA,NA,"Neither" +3,NA,9765,"turk",5,1,50,1,50,NA,NA,"Neither" +3,NA,9765,"turk",5,1,99,2,99,50,NA,"Neither" +3,NA,9765,"turk",5,1,99,3,99,99,NA,"Neither" +3,NA,9765,"turk",5,1,99,4,99,99,NA,"Neither" +3,NA,9765,"turk",5,1,99,5,99,99,NA,"Neither" +3,NA,9766,"turk",2,1,45,1,45,NA,NA,"Democrat" +3,NA,9768,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,9770,"turk",2,1,35,1,35,NA,NA,"Democrat" +3,NA,9772,"turk",1,1,45,1,45,NA,NA,"Democrat" +3,NA,9772,"turk",1,1,70,2,70,45,NA,"Democrat" +3,NA,9772,"turk",1,1,50,3,50,70,NA,"Democrat" +3,NA,9772,"turk",1,1,55,4,55,50,NA,"Democrat" +3,NA,9772,"turk",1,1,80,5,80,55,NA,"Democrat" +3,NA,9773,"turk",3,1,99,1,99,NA,NA,"Democrat" +3,NA,9775,"turk",4,1,20,1,20,NA,NA,"Neither" +3,NA,9776,"turk",2,1,50,1,50,NA,NA,"Neither" +3,NA,9780,"turk",3,1,50,1,50,NA,NA,"Republican" +3,NA,9781,"turk",4,1,50,1,50,NA,NA,"Neither" +3,NA,9786,"turk",2,1,10,1,10,NA,NA,"Democrat" +3,NA,9787,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,9790,"turk",2,1,99,1,99,NA,NA,"Neither" +3,NA,9792,"turk",3,1,60,1,60,NA,NA,"Republican" +3,NA,9793,"turk",4,1,1,1,1,NA,NA,"Neither" +3,NA,9794,"turk",3,1,20,1,20,NA,NA,"Democrat" +3,NA,9795,"turk",4,1,80,1,80,NA,NA,"Republican" +3,NA,9797,"turk",4,1,60,1,60,NA,NA,"Republican" +3,NA,9799,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,9800,"turk",1,1,10,1,10,NA,NA,"Republican" +3,NA,9800,"turk",1,1,30,2,30,10,NA,"Republican" +3,NA,9800,"turk",1,1,50,3,50,30,NA,"Republican" +3,NA,9800,"turk",1,1,50,4,50,50,NA,"Republican" +3,NA,9800,"turk",1,1,40,5,40,50,NA,"Republican" +3,NA,9803,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,9804,"turk",4,1,51,1,51,NA,NA,"Republican" +3,NA,9806,"turk",3,1,2,1,2,NA,NA,"Neither" +3,NA,9812,"turk",5,1,25,1,25,NA,NA,"Republican" +3,NA,9812,"turk",5,1,50,2,50,25,NA,"Republican" +3,NA,9812,"turk",5,1,67,3,67,50,NA,"Republican" +3,NA,9812,"turk",5,1,78,4,78,67,NA,"Republican" +3,NA,9812,"turk",5,1,95,5,95,78,NA,"Republican" +3,NA,9822,"turk",4,1,70,1,70,NA,NA,"Democrat" +3,NA,9824,"turk",1,1,70,1,70,NA,NA,"Democrat" +3,NA,9824,"turk",1,1,10,2,10,70,NA,"Democrat" +3,NA,9824,"turk",1,1,1,3,1,10,NA,"Democrat" +3,NA,9824,"turk",1,1,1,4,1,1,NA,"Democrat" +3,NA,9824,"turk",1,1,1,5,1,1,NA,"Democrat" +3,NA,9825,"turk",2,1,1,1,1,NA,NA,"Neither" +3,NA,9830,"turk",2,1,50,1,50,NA,NA,"Republican" +3,NA,9832,"turk",4,1,90,1,90,NA,NA,"Republican" +3,NA,9833,"turk",2,1,80,1,80,NA,NA,"Democrat" +3,NA,9835,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,9836,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,9837,"turk",3,1,1,1,1,NA,NA,"Republican" +3,NA,9838,"turk",4,1,78,1,78,NA,NA,"Democrat" +3,NA,9839,"turk",2,1,50,1,50,NA,NA,"Democrat" +3,NA,9840,"turk",3,1,25,1,25,NA,NA,"Democrat" +3,NA,9842,"turk",4,1,60,1,60,NA,NA,"Democrat" +3,NA,9843,"turk",4,1,99,1,99,NA,NA,"Neither" +3,NA,9848,"turk",1,1,54,1,54,NA,NA,"Neither" +3,NA,9848,"turk",1,1,54,2,54,54,NA,"Neither" +3,NA,9848,"turk",1,1,44,3,44,54,NA,"Neither" +3,NA,9848,"turk",1,1,54,4,54,44,NA,"Neither" +3,NA,9848,"turk",1,1,54,5,54,54,NA,"Neither" +3,NA,9851,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,9852,"turk",4,1,75,1,75,NA,NA,"Democrat" +3,NA,9853,"turk",2,1,50,1,50,NA,NA,"Neither" +3,NA,9855,"turk",3,1,1,1,1,NA,NA,"Neither" +3,NA,9856,"turk",4,1,2,1,2,NA,NA,"Republican" +3,NA,9861,"turk",4,1,1,1,1,NA,NA,"Neither" +3,NA,9862,"turk",4,1,85,1,85,NA,NA,"Democrat" +3,NA,9863,"turk",2,1,30,1,30,NA,NA,"Neither" +3,NA,9864,"turk",4,1,99,1,99,NA,NA,"Republican" +3,NA,9865,"turk",4,1,50,1,50,NA,NA,"Neither" +3,NA,9869,"turk",3,1,50,1,50,NA,NA,"Republican" +3,NA,9870,"turk",4,1,66,1,66,NA,NA,"Democrat" +3,NA,9871,"turk",2,1,99,1,99,NA,NA,"Republican" +3,NA,9873,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,9874,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,9877,"turk",3,1,25,1,25,NA,NA,"Neither" +3,NA,9878,"turk",1,1,15,1,15,NA,NA,"Republican" +3,NA,9878,"turk",1,1,75,2,75,15,NA,"Republican" +3,NA,9878,"turk",1,1,75,3,75,75,NA,"Republican" +3,NA,9878,"turk",1,1,80,4,80,75,NA,"Republican" +3,NA,9878,"turk",1,1,90,5,90,80,NA,"Republican" +3,NA,9884,"turk",2,1,20,1,20,NA,NA,"Republican" +3,NA,9886,"turk",3,1,99,1,99,NA,NA,"Republican" +3,NA,9888,"turk",2,1,99,1,99,NA,NA,"Republican" +3,NA,9890,"turk",2,1,45,1,45,NA,NA,"Republican" +3,NA,9892,"turk",3,1,45,1,45,NA,NA,"Democrat" +3,NA,9893,"turk",4,1,99,1,99,NA,NA,"Democrat" +3,NA,9898,"turk",3,1,1,1,1,NA,NA,"Republican" +3,NA,9900,"turk",4,1,2,1,2,NA,NA,"Democrat" +3,NA,9901,"turk",3,1,75,1,75,NA,NA,"Republican" +3,NA,9902,"turk",2,1,30,1,30,NA,NA,"Democrat" +3,NA,9903,"turk",2,1,50,1,50,NA,NA,"Democrat" +3,NA,9904,"turk",3,1,80,1,80,NA,NA,"Democrat" +3,NA,9906,"turk",2,1,0,1,0,NA,NA,"Democrat" +3,NA,9910,"turk",5,1,99,1,99,NA,NA,"Democrat" +3,NA,9910,"turk",5,1,99,2,99,99,NA,"Democrat" +3,NA,9910,"turk",5,1,99,3,99,99,NA,"Democrat" +3,NA,9910,"turk",5,1,99,4,99,99,NA,"Democrat" +3,NA,9910,"turk",5,1,99,5,99,99,NA,"Democrat" +3,NA,9911,"turk",4,1,30,1,30,NA,NA,"Democrat" +3,NA,9912,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,9916,"turk",3,1,60,1,60,NA,NA,"Republican" +3,NA,9917,"turk",4,1,60,1,60,NA,NA,"Neither" +3,NA,9919,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,9923,"turk",2,1,75,1,75,NA,NA,"Neither" +3,NA,9924,"turk",5,1,99,1,99,NA,NA,"Democrat" +3,NA,9924,"turk",5,1,99,2,99,99,NA,"Democrat" +3,NA,9924,"turk",5,1,99,3,99,99,NA,"Democrat" +3,NA,9924,"turk",5,1,99,4,99,99,NA,"Democrat" +3,NA,9924,"turk",5,1,99,5,99,99,NA,"Democrat" +3,NA,9926,"turk",2,1,85,1,85,NA,NA,"Republican" +3,NA,9927,"turk",2,1,75,1,75,NA,NA,"Republican" +3,NA,9929,"turk",3,1,10,1,10,NA,NA,"Neither" +3,NA,9930,"turk",3,1,60,1,60,NA,NA,"Democrat" +3,NA,9933,"turk",2,1,99,1,99,NA,NA,"Republican" +3,NA,9935,"turk",3,1,85,1,85,NA,NA,"Neither" +3,NA,9937,"turk",4,1,99,1,99,NA,NA,"Democrat" +3,NA,9940,"turk",4,1,5,1,5,NA,NA,"Democrat" +3,NA,9941,"turk",4,1,90,1,90,NA,NA,"Republican" +3,NA,9942,"turk",2,1,1,1,1,NA,NA,"Democrat" +3,NA,9945,"turk",4,1,99,1,99,NA,NA,"Democrat" +3,NA,9947,"turk",5,1,1,1,1,NA,NA,"Democrat" +3,NA,9947,"turk",5,1,99,2,99,1,NA,"Democrat" +3,NA,9947,"turk",5,1,99,3,99,99,NA,"Democrat" +3,NA,9947,"turk",5,1,99,4,99,99,NA,"Democrat" +3,NA,9947,"turk",5,1,99,5,99,99,NA,"Democrat" +3,NA,9950,"turk",4,1,2,1,2,NA,NA,"Democrat" +3,NA,9951,"turk",3,1,1,1,1,NA,NA,"Republican" +3,NA,9955,"turk",3,1,1,1,1,NA,NA,"Republican" +3,NA,9959,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,9960,"turk",4,1,30,1,30,NA,NA,"Democrat" +3,NA,9962,"turk",3,1,99,1,99,NA,NA,"Democrat" +3,NA,9965,"turk",2,1,1,1,1,NA,NA,"Democrat" +3,NA,9971,"turk",1,1,70,1,70,NA,NA,"Democrat" +3,NA,9971,"turk",1,1,35,2,35,70,NA,"Democrat" +3,NA,9971,"turk",1,1,50,3,50,35,NA,"Democrat" +3,NA,9971,"turk",1,1,88,4,88,50,NA,"Democrat" +3,NA,9971,"turk",1,1,85,5,85,88,NA,"Democrat" +3,NA,9975,"turk",3,1,5,1,5,NA,NA,"Democrat" +3,NA,9980,"turk",5,1,80,1,80,NA,NA,"Republican" +3,NA,9980,"turk",5,1,90,2,90,80,NA,"Republican" +3,NA,9980,"turk",5,1,100,3,100,90,NA,"Republican" +3,NA,9980,"turk",5,1,100,4,100,100,NA,"Republican" +3,NA,9980,"turk",5,1,100,5,100,100,NA,"Republican" +3,NA,9981,"turk",5,1,90,1,90,NA,NA,"Democrat" +3,NA,9981,"turk",5,1,90,2,90,90,NA,"Democrat" +3,NA,9981,"turk",5,1,96,3,96,90,NA,"Democrat" +3,NA,9981,"turk",5,1,90,4,90,96,NA,"Democrat" +3,NA,9981,"turk",5,1,100,5,100,90,NA,"Democrat" +3,NA,9984,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,9986,"turk",4,1,20,1,20,NA,NA,"Democrat" +3,NA,9988,"turk",2,1,0,1,0,NA,NA,"Democrat" +3,NA,9989,"turk",3,1,70,1,70,NA,NA,"Democrat" +3,NA,9992,"turk",5,1,99,1,99,NA,NA,"Republican" +3,NA,9992,"turk",5,1,99,2,99,99,NA,"Republican" +3,NA,9992,"turk",5,1,99,3,99,99,NA,"Republican" +3,NA,9992,"turk",5,1,99,4,99,99,NA,"Republican" +3,NA,9992,"turk",5,1,99,5,99,99,NA,"Republican" +3,NA,9993,"turk",4,1,20,1,20,NA,NA,"Neither" +3,NA,9995,"turk",3,1,10,1,10,NA,NA,"Republican" +3,NA,9996,"turk",4,1,80,1,80,NA,NA,"Democrat" +3,NA,9998,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,9999,"turk",1,1,70,1,70,NA,NA,"Democrat" +3,NA,9999,"turk",1,1,70,2,70,70,NA,"Democrat" +3,NA,9999,"turk",1,1,80,3,80,70,NA,"Democrat" +3,NA,9999,"turk",1,1,99,4,99,80,NA,"Democrat" +3,NA,9999,"turk",1,1,99,5,99,99,NA,"Democrat" +3,NA,10002,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,10004,"turk",4,1,99,1,99,NA,NA,"Democrat" +3,NA,10005,"turk",4,1,70,1,70,NA,NA,"Republican" +3,NA,10007,"turk",4,1,40,1,40,NA,NA,"Republican" +3,NA,10009,"turk",4,1,99,1,99,NA,NA,"Republican" +3,NA,10011,"turk",4,1,10,1,10,NA,NA,"Democrat" +3,NA,10013,"turk",3,1,99,1,99,NA,NA,"Democrat" +3,NA,10014,"turk",4,1,50,1,50,NA,NA,"Republican" +3,NA,10020,"turk",2,1,50,1,50,NA,NA,"Democrat" +3,NA,10027,"turk",4,1,99,1,99,NA,NA,"Republican" +3,NA,10034,"turk",2,1,33,1,33,NA,NA,"Neither" +3,NA,10035,"turk",2,1,30,1,30,NA,NA,"Democrat" +3,NA,10038,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10041,"turk",3,1,99,1,99,NA,NA,"Republican" +3,NA,10042,"turk",5,1,20,1,20,NA,NA,"Democrat" +3,NA,10042,"turk",5,1,70,2,70,20,NA,"Democrat" +3,NA,10042,"turk",5,1,50,3,50,70,NA,"Democrat" +3,NA,10042,"turk",5,1,50,4,50,50,NA,"Democrat" +3,NA,10042,"turk",5,1,50,5,50,50,NA,"Democrat" +3,NA,10046,"turk",4,1,50,1,50,NA,NA,"Neither" +3,NA,10048,"turk",2,1,80,1,80,NA,NA,"Democrat" +3,NA,10050,"turk",5,1,50,1,50,NA,NA,"Democrat" +3,NA,10050,"turk",5,1,90,2,90,50,NA,"Democrat" +3,NA,10050,"turk",5,1,90,3,90,90,NA,"Democrat" +3,NA,10050,"turk",5,1,90,4,90,90,NA,"Democrat" +3,NA,10050,"turk",5,1,50,5,50,90,NA,"Democrat" +3,NA,10055,"turk",3,1,99,1,99,NA,NA,"Republican" +3,NA,10060,"turk",2,1,30,1,30,NA,NA,"Democrat" +3,NA,10066,"turk",1,1,85,1,85,NA,NA,"Democrat" +3,NA,10066,"turk",1,1,90,2,90,85,NA,"Democrat" +3,NA,10066,"turk",1,1,90,3,90,90,NA,"Democrat" +3,NA,10066,"turk",1,1,90,4,90,90,NA,"Democrat" +3,NA,10066,"turk",1,1,1,5,1,90,NA,"Democrat" +3,NA,10067,"turk",3,1,99,1,99,NA,NA,"Democrat" +3,NA,10068,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10070,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10072,"turk",3,1,0,1,0,NA,NA,"Democrat" +3,NA,10074,"turk",2,1,50,1,50,NA,NA,"Democrat" +3,NA,10075,"turk",4,1,0,1,0,NA,NA,"Democrat" +3,NA,10076,"turk",3,1,50,1,50,NA,NA,"Neither" +3,NA,10077,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10079,"turk",3,1,70,1,70,NA,NA,"Republican" +3,NA,10082,"turk",1,1,1,1,1,NA,NA,"Neither" +3,NA,10082,"turk",1,1,1,2,1,1,NA,"Neither" +3,NA,10082,"turk",1,1,99,3,99,1,NA,"Neither" +3,NA,10082,"turk",1,1,99,4,99,99,NA,"Neither" +3,NA,10082,"turk",1,1,99,5,99,99,NA,"Neither" +3,NA,10084,"turk",3,1,25,1,25,NA,NA,"Neither" +3,NA,10085,"turk",2,1,50,1,50,NA,NA,"Neither" +3,NA,10090,"turk",2,1,75,1,75,NA,NA,"Democrat" +3,NA,10095,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10096,"turk",4,1,99,1,99,NA,NA,"Democrat" +3,NA,10098,"turk",2,1,5,1,5,NA,NA,"Neither" +3,NA,10099,"turk",2,1,20,1,20,NA,NA,"Democrat" +3,NA,10103,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10104,"turk",3,1,65,1,65,NA,NA,"Democrat" +3,NA,10105,"turk",3,1,70,1,70,NA,NA,"Democrat" +3,NA,10112,"turk",2,1,20,1,20,NA,NA,"Democrat" +3,NA,10113,"turk",4,1,99,1,99,NA,NA,"Republican" +3,NA,10116,"turk",4,1,20,1,20,NA,NA,"Democrat" +3,NA,10117,"turk",2,1,50,1,50,NA,NA,"Democrat" +3,NA,10119,"turk",2,1,1,1,1,NA,NA,"Neither" +3,NA,10120,"turk",3,1,75,1,75,NA,NA,"Republican" +3,NA,10121,"turk",4,1,20,1,20,NA,NA,"Neither" +3,NA,10124,"turk",4,1,99,1,99,NA,NA,"Republican" +3,NA,10127,"turk",3,1,70,1,70,NA,NA,"Republican" +3,NA,10131,"turk",2,1,50,1,50,NA,NA,"Republican" +3,NA,10134,"turk",4,1,90,1,90,NA,NA,"Republican" +3,NA,10136,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10140,"turk",4,1,30,1,30,NA,NA,"Democrat" +3,NA,10144,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10145,"turk",2,1,80,1,80,NA,NA,"Democrat" +3,NA,10146,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,10147,"turk",5,1,62,1,62,NA,NA,"Democrat" +3,NA,10147,"turk",5,1,77,2,77,62,NA,"Democrat" +3,NA,10147,"turk",5,1,85,3,85,77,NA,"Democrat" +3,NA,10147,"turk",5,1,85,4,85,85,NA,"Democrat" +3,NA,10147,"turk",5,1,85,5,85,85,NA,"Democrat" +3,NA,10150,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10154,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10155,"turk",3,1,99,1,99,NA,NA,"Republican" +3,NA,10157,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10158,"turk",2,1,50,1,50,NA,NA,"Democrat" +3,NA,10159,"turk",2,1,5,1,5,NA,NA,"Republican" +3,NA,10160,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10168,"turk",2,1,90,1,90,NA,NA,"Democrat" +3,NA,10171,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10172,"turk",3,1,50,1,50,NA,NA,"Republican" +3,NA,10173,"turk",1,1,5,1,5,NA,NA,"Democrat" +3,NA,10173,"turk",1,1,5,2,5,5,NA,"Democrat" +3,NA,10173,"turk",1,1,5,3,5,5,NA,"Democrat" +3,NA,10173,"turk",1,1,0,4,0,5,NA,"Democrat" +3,NA,10173,"turk",1,1,90,5,90,0,NA,"Democrat" +3,NA,10176,"turk",4,1,15,1,15,NA,NA,"Democrat" +3,NA,10177,"turk",2,1,90,1,90,NA,NA,"Democrat" +3,NA,10179,"turk",5,1,50,1,50,NA,NA,"Republican" +3,NA,10179,"turk",5,1,50,2,50,50,NA,"Republican" +3,NA,10179,"turk",5,1,50,3,50,50,NA,"Republican" +3,NA,10179,"turk",5,1,50,4,50,50,NA,"Republican" +3,NA,10179,"turk",5,1,50,5,50,50,NA,"Republican" +3,NA,10180,"turk",5,1,50,1,50,NA,NA,"Neither" +3,NA,10180,"turk",5,1,30,2,30,50,NA,"Neither" +3,NA,10180,"turk",5,1,50,3,50,30,NA,"Neither" +3,NA,10180,"turk",5,1,50,4,50,50,NA,"Neither" +3,NA,10180,"turk",5,1,90,5,90,50,NA,"Neither" +3,NA,10182,"turk",1,1,60,1,60,NA,NA,"Democrat" +3,NA,10182,"turk",1,1,0,2,0,60,NA,"Democrat" +3,NA,10182,"turk",1,1,80,3,80,0,NA,"Democrat" +3,NA,10182,"turk",1,1,80,4,80,80,NA,"Democrat" +3,NA,10182,"turk",1,1,80,5,80,80,NA,"Democrat" +3,NA,10185,"turk",2,1,99,1,99,NA,NA,"Republican" +3,NA,10186,"turk",1,1,1,1,1,NA,NA,"Democrat" +3,NA,10186,"turk",1,1,16,2,16,1,NA,"Democrat" +3,NA,10186,"turk",1,1,14,3,14,16,NA,"Democrat" +3,NA,10186,"turk",1,1,14,4,14,14,NA,"Democrat" +3,NA,10186,"turk",1,1,15,5,15,14,NA,"Democrat" +3,NA,10188,"turk",5,1,99,1,99,NA,NA,"Democrat" +3,NA,10188,"turk",5,1,99,2,99,99,NA,"Democrat" +3,NA,10188,"turk",5,1,99,3,99,99,NA,"Democrat" +3,NA,10188,"turk",5,1,99,4,99,99,NA,"Democrat" +3,NA,10188,"turk",5,1,99,5,99,99,NA,"Democrat" +3,NA,10189,"turk",3,1,99,1,99,NA,NA,"Democrat" +3,NA,10191,"turk",4,1,30,1,30,NA,NA,"Democrat" +3,NA,10194,"turk",4,1,99,1,99,NA,NA,"Democrat" +3,NA,10196,"turk",5,1,99,1,99,NA,NA,"Democrat" +3,NA,10196,"turk",5,1,99,2,99,99,NA,"Democrat" +3,NA,10196,"turk",5,1,1,3,1,99,NA,"Democrat" +3,NA,10196,"turk",5,1,99,4,99,1,NA,"Democrat" +3,NA,10196,"turk",5,1,99,5,99,99,NA,"Democrat" +3,NA,10197,"turk",4,1,90,1,90,NA,NA,"Democrat" +3,NA,10198,"turk",1,1,60,1,60,NA,NA,"Democrat" +3,NA,10198,"turk",1,1,75,2,75,60,NA,"Democrat" +3,NA,10198,"turk",1,1,75,3,75,75,NA,"Democrat" +3,NA,10198,"turk",1,1,80,4,80,75,NA,"Democrat" +3,NA,10198,"turk",1,1,90,5,90,80,NA,"Democrat" +3,NA,10202,"turk",4,1,99,1,99,NA,NA,"Neither" +3,NA,10203,"turk",3,1,75,1,75,NA,NA,"Republican" +3,NA,10205,"turk",4,1,40,1,40,NA,NA,"Democrat" +3,NA,10206,"turk",2,1,22,1,22,NA,NA,"Democrat" +3,NA,10207,"turk",3,1,40,1,40,NA,NA,"Republican" +3,NA,10210,"turk",3,1,50,1,50,NA,NA,"Republican" +3,NA,10213,"turk",4,1,50,1,50,NA,NA,"Republican" +3,NA,10219,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10220,"turk",3,1,50,1,50,NA,NA,"Republican" +3,NA,10221,"turk",2,1,80,1,80,NA,NA,"Democrat" +3,NA,10224,"turk",2,1,0,1,0,NA,NA,"Democrat" +3,NA,10226,"turk",4,1,99,1,99,NA,NA,"Republican" +3,NA,10227,"turk",2,1,50,1,50,NA,NA,"Republican" +3,NA,10229,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10230,"turk",3,1,1,1,1,NA,NA,"Neither" +3,NA,10231,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10234,"turk",4,1,25,1,25,NA,NA,"Republican" +3,NA,10236,"turk",2,1,60,1,60,NA,NA,"Democrat" +3,NA,10238,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10240,"turk",1,1,50,1,50,NA,NA,"Neither" +3,NA,10240,"turk",1,1,99,2,99,50,NA,"Neither" +3,NA,10240,"turk",1,1,70,3,70,99,NA,"Neither" +3,NA,10240,"turk",1,1,50,4,50,70,NA,"Neither" +3,NA,10240,"turk",1,1,1,5,1,50,NA,"Neither" +3,NA,10248,"turk",5,1,5,1,5,NA,NA,"Democrat" +3,NA,10248,"turk",5,1,15,2,15,5,NA,"Democrat" +3,NA,10248,"turk",5,1,35,3,35,15,NA,"Democrat" +3,NA,10248,"turk",5,1,35,4,35,35,NA,"Democrat" +3,NA,10248,"turk",5,1,35,5,35,35,NA,"Democrat" +3,NA,10249,"turk",1,1,80,1,80,NA,NA,"Democrat" +3,NA,10249,"turk",1,1,80,2,80,80,NA,"Democrat" +3,NA,10249,"turk",1,1,75,3,75,80,NA,"Democrat" +3,NA,10249,"turk",1,1,80,4,80,75,NA,"Democrat" +3,NA,10249,"turk",1,1,80,5,80,80,NA,"Democrat" +3,NA,10250,"turk",3,1,22,1,22,NA,NA,"Democrat" +3,NA,10251,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10252,"turk",2,1,80,1,80,NA,NA,"Republican" +3,NA,10253,"turk",2,1,10,1,10,NA,NA,"Democrat" +3,NA,10254,"turk",2,1,95,1,95,NA,NA,"Democrat" +3,NA,10255,"turk",4,1,20,1,20,NA,NA,"Democrat" +3,NA,10256,"turk",3,1,1,1,1,NA,NA,"Neither" +3,NA,10258,"turk",3,1,15,1,15,NA,NA,"Neither" +3,NA,10262,"turk",4,1,90,1,90,NA,NA,"Democrat" +3,NA,10263,"turk",2,1,90,1,90,NA,NA,"Republican" +3,NA,10265,"turk",3,1,99,1,99,NA,NA,"Republican" +3,NA,10266,"turk",3,1,90,1,90,NA,NA,"Republican" +3,NA,10267,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,10269,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10272,"turk",4,1,45,1,45,NA,NA,"Democrat" +3,NA,10273,"turk",3,1,70,1,70,NA,NA,"Democrat" +3,NA,10274,"turk",2,1,99,1,99,NA,NA,"Republican" +3,NA,10278,"turk",5,1,25,1,25,NA,NA,"Democrat" +3,NA,10278,"turk",5,1,99,2,99,25,NA,"Democrat" +3,NA,10278,"turk",5,1,50,3,50,99,NA,"Democrat" +3,NA,10278,"turk",5,1,99,4,99,50,NA,"Democrat" +3,NA,10278,"turk",5,1,99,5,99,99,NA,"Democrat" +3,NA,10279,"turk",3,1,65,1,65,NA,NA,"Democrat" +3,NA,10280,"turk",3,1,99,1,99,NA,NA,"Republican" +3,NA,10281,"turk",5,1,67,1,67,NA,NA,"Democrat" +3,NA,10281,"turk",5,1,50,2,50,67,NA,"Democrat" +3,NA,10281,"turk",5,1,60,3,60,50,NA,"Democrat" +3,NA,10281,"turk",5,1,75,4,75,60,NA,"Democrat" +3,NA,10281,"turk",5,1,77,5,77,75,NA,"Democrat" +3,NA,10282,"turk",3,1,65,1,65,NA,NA,"Neither" +3,NA,10285,"turk",3,1,75,1,75,NA,NA,"Republican" +3,NA,10286,"turk",2,1,50,1,50,NA,NA,"Republican" +3,NA,10290,"turk",3,1,70,1,70,NA,NA,"Neither" +3,NA,10291,"turk",4,1,10,1,10,NA,NA,"Neither" +3,NA,10292,"turk",2,1,33,1,33,NA,NA,"Democrat" +3,NA,10293,"turk",1,1,40,1,40,NA,NA,"Democrat" +3,NA,10293,"turk",1,1,70,2,70,40,NA,"Democrat" +3,NA,10293,"turk",1,1,80,3,80,70,NA,"Democrat" +3,NA,10293,"turk",1,1,84,4,84,80,NA,"Democrat" +3,NA,10293,"turk",1,1,65,5,65,84,NA,"Democrat" +3,NA,10294,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10305,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10306,"turk",3,1,30,1,30,NA,NA,"Democrat" +3,NA,10308,"turk",2,1,100,1,100,NA,NA,"Democrat" +3,NA,10310,"turk",2,1,50,1,50,NA,NA,"Republican" +3,NA,10315,"turk",4,1,1,1,1,NA,NA,"Republican" +3,NA,10316,"turk",3,1,99,1,99,NA,NA,"Neither" +3,NA,10317,"turk",2,1,80,1,80,NA,NA,"Democrat" +3,NA,10320,"turk",2,1,1,1,1,NA,NA,"Republican" +3,NA,10321,"turk",5,1,50,1,50,NA,NA,"Republican" +3,NA,10321,"turk",5,1,99,2,99,50,NA,"Republican" +3,NA,10321,"turk",5,1,99,3,99,99,NA,"Republican" +3,NA,10321,"turk",5,1,99,4,99,99,NA,"Republican" +3,NA,10321,"turk",5,1,99,5,99,99,NA,"Republican" +3,NA,10325,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10326,"turk",4,1,1,1,1,NA,NA,"Republican" +3,NA,10331,"turk",2,1,1,1,1,NA,NA,"Democrat" +3,NA,10333,"turk",2,1,25,1,25,NA,NA,"Neither" +3,NA,10337,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,10339,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10340,"turk",3,1,60,1,60,NA,NA,"Neither" +3,NA,10341,"turk",2,1,20,1,20,NA,NA,"Democrat" +3,NA,10342,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10343,"turk",2,1,60,1,60,NA,NA,"Republican" +3,NA,10344,"turk",4,1,50,1,50,NA,NA,"Neither" +3,NA,10350,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10352,"turk",2,1,40,1,40,NA,NA,"Democrat" +3,NA,10353,"turk",5,1,50,1,50,NA,NA,"Democrat" +3,NA,10353,"turk",5,1,60,2,60,50,NA,"Democrat" +3,NA,10353,"turk",5,1,70,3,70,60,NA,"Democrat" +3,NA,10353,"turk",5,1,90,4,90,70,NA,"Democrat" +3,NA,10353,"turk",5,1,90,5,90,90,NA,"Democrat" +3,NA,10356,"turk",1,1,50,1,50,NA,NA,"Republican" +3,NA,10356,"turk",1,1,99,2,99,50,NA,"Republican" +3,NA,10356,"turk",1,1,1,3,1,99,NA,"Republican" +3,NA,10356,"turk",1,1,40,4,40,1,NA,"Republican" +3,NA,10356,"turk",1,1,50,5,50,40,NA,"Republican" +3,NA,10357,"turk",4,1,30,1,30,NA,NA,"Democrat" +3,NA,10358,"turk",4,1,50,1,50,NA,NA,"Republican" +3,NA,10360,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10361,"turk",4,1,25,1,25,NA,NA,"Neither" +3,NA,10363,"turk",2,1,90,1,90,NA,NA,"Republican" +3,NA,10364,"turk",2,1,20,1,20,NA,NA,"Democrat" +3,NA,10367,"turk",3,1,50,1,50,NA,NA,"Republican" +3,NA,10369,"turk",2,1,50,1,50,NA,NA,"Republican" +3,NA,10374,"turk",2,1,77,1,77,NA,NA,"Democrat" +3,NA,10375,"turk",4,1,0,1,0,NA,NA,"Democrat" +3,NA,10376,"turk",4,1,99,1,99,NA,NA,"Republican" +3,NA,10377,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10380,"turk",2,1,50,1,50,NA,NA,"Republican" +3,NA,10385,"turk",1,1,85,1,85,NA,NA,"Republican" +3,NA,10385,"turk",1,1,90,2,90,85,NA,"Republican" +3,NA,10385,"turk",1,1,80,3,80,90,NA,"Republican" +3,NA,10385,"turk",1,1,90,4,90,80,NA,"Republican" +3,NA,10385,"turk",1,1,95,5,95,90,NA,"Republican" +3,NA,10388,"turk",4,1,50,1,50,NA,NA,"Neither" +3,NA,10389,"turk",4,1,99,1,99,NA,NA,"Neither" +3,NA,10392,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10393,"turk",2,1,85,1,85,NA,NA,"Democrat" +3,NA,10396,"turk",2,1,25,1,25,NA,NA,"Republican" +3,NA,10401,"turk",4,1,80,1,80,NA,NA,"Republican" +3,NA,10406,"turk",2,1,1,1,1,NA,NA,"Democrat" +3,NA,10408,"turk",5,1,50,1,50,NA,NA,"Democrat" +3,NA,10408,"turk",5,1,99,2,99,50,NA,"Democrat" +3,NA,10408,"turk",5,1,0,3,0,99,NA,"Democrat" +3,NA,10408,"turk",5,1,50,4,50,0,NA,"Democrat" +3,NA,10408,"turk",5,1,50,5,50,50,NA,"Democrat" +3,NA,10412,"turk",2,1,24,1,24,NA,NA,"Democrat" +3,NA,10413,"turk",4,1,80,1,80,NA,NA,"Republican" +3,NA,10414,"turk",3,1,55,1,55,NA,NA,"Neither" +3,NA,10415,"turk",4,1,90,1,90,NA,NA,"Democrat" +3,NA,10416,"turk",1,1,40,1,40,NA,NA,"Republican" +3,NA,10416,"turk",1,1,40,2,40,40,NA,"Republican" +3,NA,10416,"turk",1,1,50,3,50,40,NA,"Republican" +3,NA,10416,"turk",1,1,50,4,50,50,NA,"Republican" +3,NA,10416,"turk",1,1,100,5,100,50,NA,"Republican" +3,NA,10417,"turk",4,1,30,1,30,NA,NA,"Neither" +3,NA,10418,"turk",3,1,14,1,14,NA,NA,"Democrat" +3,NA,10419,"turk",2,1,99,1,99,NA,NA,"Neither" +3,NA,10421,"turk",4,1,1,1,1,NA,NA,"Democrat" +3,NA,10422,"turk",3,1,10,1,10,NA,NA,"Democrat" +3,NA,10425,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10428,"turk",2,1,65,1,65,NA,NA,"Republican" +3,NA,10429,"turk",4,1,75,1,75,NA,NA,"Democrat" +3,NA,10430,"turk",1,1,70,1,70,NA,NA,"Neither" +3,NA,10430,"turk",1,1,99,2,99,70,NA,"Neither" +3,NA,10430,"turk",1,1,99,3,99,99,NA,"Neither" +3,NA,10430,"turk",1,1,100,4,100,99,NA,"Neither" +3,NA,10430,"turk",1,1,100,5,100,100,NA,"Neither" +3,NA,10432,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10433,"turk",3,1,50,1,50,NA,NA,"Democrat" +3,NA,10435,"turk",3,1,0,1,0,NA,NA,"Democrat" +3,NA,10436,"turk",3,1,99,1,99,NA,NA,"Democrat" +3,NA,10441,"turk",3,1,30,1,30,NA,NA,"Democrat" +3,NA,10446,"turk",4,1,65,1,65,NA,NA,"Democrat" +3,NA,10448,"turk",3,1,99,1,99,NA,NA,"Republican" +3,NA,10449,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10451,"turk",4,1,10,1,10,NA,NA,"Republican" +3,NA,10453,"turk",5,1,1,1,1,NA,NA,"Democrat" +3,NA,10453,"turk",5,1,99,2,99,1,NA,"Democrat" +3,NA,10453,"turk",5,1,99,3,99,99,NA,"Democrat" +3,NA,10453,"turk",5,1,99,4,99,99,NA,"Democrat" +3,NA,10453,"turk",5,1,99,5,99,99,NA,"Democrat" +3,NA,10454,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10455,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10456,"turk",2,1,1,1,1,NA,NA,"Democrat" +3,NA,10457,"turk",3,1,90,1,90,NA,NA,"Republican" +3,NA,10458,"turk",2,1,55,1,55,NA,NA,"Republican" +3,NA,10464,"turk",5,1,1,1,1,NA,NA,"Democrat" +3,NA,10464,"turk",5,1,30,2,30,1,NA,"Democrat" +3,NA,10464,"turk",5,1,85,3,85,30,NA,"Democrat" +3,NA,10464,"turk",5,1,99,4,99,85,NA,"Democrat" +3,NA,10464,"turk",5,1,50,5,50,99,NA,"Democrat" +3,NA,10466,"turk",4,1,60,1,60,NA,NA,"Neither" +3,NA,10467,"turk",2,1,99,1,99,NA,NA,"Neither" +3,NA,10468,"turk",2,1,30,1,30,NA,NA,"Democrat" +3,NA,10473,"turk",3,1,99,1,99,NA,NA,"Democrat" +3,NA,10474,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10475,"turk",4,1,0,1,0,NA,NA,"Democrat" +3,NA,10478,"turk",3,1,50,1,50,NA,NA,"Neither" +3,NA,10489,"turk",3,1,30,1,30,NA,NA,"Democrat" +3,NA,10495,"turk",2,1,10,1,10,NA,NA,"Neither" +3,NA,10497,"turk",4,1,99,1,99,NA,NA,"Democrat" +3,NA,10502,"turk",3,1,10,1,10,NA,NA,"Democrat" +3,NA,10503,"turk",3,1,1,1,1,NA,NA,"Democrat" +3,NA,10505,"turk",3,1,40,1,40,NA,NA,"Republican" +3,NA,10506,"turk",2,1,99,1,99,NA,NA,"Democrat" +3,NA,10507,"turk",2,1,40,1,40,NA,NA,"Democrat" +3,NA,10511,"turk",4,1,50,1,50,NA,NA,"Democrat" +3,NA,10512,"turk",3,1,25,1,25,NA,NA,"Democrat" +3,NA,10517,"turk",2,1,50,1,50,NA,NA,"Republican" +3,NA,10522,"turk",2,1,5,1,5,NA,NA,"Republican" +3,NA,10525,"turk",1,1,50,1,50,NA,NA,"Neither" +3,NA,10525,"turk",1,1,10,2,10,50,NA,"Neither" +3,NA,10525,"turk",1,1,1,3,1,10,NA,"Neither" +3,NA,10525,"turk",1,1,1,4,1,1,NA,"Neither" +3,NA,10525,"turk",1,1,1,5,1,1,NA,"Neither" +3,NA,10526,"turk",2,1,50,1,50,NA,NA,"Neither" +3,NA,10528,"turk",2,1,99,1,99,NA,NA,"Neither" +3,NA,10532,"turk",4,1,25,1,25,NA,NA,"Democrat" +3,NA,10533,"turk",3,1,90,1,90,NA,NA,"Democrat" +3,NA,10534,"turk",4,1,90,1,90,NA,NA,"Republican" +3,NA,10535,"turk",3,1,50,1,50,NA,NA,"Republican" +3,1,62,"tess",3,1,4,3,4,99,"CNN","Democrat" +3,1,64,"tess",1,1,82,3,82,17,"CNN","Democrat" +3,1,69,"tess",1,0,47,3,53,50,"CNN","Neither" +3,1,72,"tess",4,1,89,2,89,23,"CNN","Democrat" +3,1,78,"tess",3,1,87,3,87,50,"CNN","Democrat" +3,1,96,"tess",2,1,71,2,71,97,"CNN","Democrat" +3,1,118,"tess",3,0,40,3,60,60,"CNN","Democrat" +3,1,128,"tess",1,1,40,3,40,19,"CNN","Republican" +3,1,136,"tess",1,0,40,2,60,40,"CNN","Democrat" +3,1,152,"tess",2,1,51,2,51,95,"CNN","Neither" +3,1,182,"tess",3,0,70,3,30,40,"CNN","Democrat" +3,1,187,"tess",1,0,40,2,60,60,"CNN","Republican" +3,1,189,"tess",2,1,20,2,20,50,"CNN","Republican" +3,1,207,"tess",3,1,87,2,87,50,"CNN","Republican" +3,1,262,"tess",3,0,1,3,99,99,"CNN","Democrat" +3,1,263,"tess",3,1,27,3,27,26,"CNN","Neither" +3,1,266,"tess",3,0,60,2,40,70,"CNN","Democrat" +3,1,296,"tess",4,1,98,2,98,81,"CNN","Republican" +3,1,301,"tess",3,1,80,3,80,80,"CNN","Democrat" +3,1,334,"tess",2,0,77,3,23,76,"CNN","Democrat" +3,1,347,"tess",1,0,49,2,51,24,"CNN","Democrat" +3,1,363,"tess",1,1,94,2,94,97,"CNN","Republican" +3,1,379,"tess",4,0,90,2,10,90,"CNN","Democrat" +3,1,389,"tess",4,1,30,2,30,80,"CNN","Democrat" +3,1,399,"tess",1,0,10,2,90,87,"CNN","Neither" +3,1,430,"tess",3,1,50,3,50,40,"CNN","Republican" +3,1,431,"tess",3,0,NA,3,NA,NA,"CNN","Democrat" +3,1,440,"tess",4,0,99,2,1,1,"CNN","Democrat" +3,1,443,"tess",3,0,51,3,49,73,"CNN","Republican" +3,1,482,"tess",4,0,70,2,30,28,"CNN","Democrat" +3,1,485,"tess",3,0,86,3,14,65,"CNN","Democrat" +3,1,491,"tess",3,0,53,3,47,61,"CNN","Neither" +3,1,512,"tess",1,1,20,3,20,60,"CNN","Democrat" +3,1,522,"tess",2,1,98,3,98,100,"CNN","Democrat" +3,1,530,"tess",2,0,21,2,79,6,"CNN","Republican" +3,1,542,"tess",1,0,100,3,0,100,"CNN","Republican" +3,1,550,"tess",3,0,99,2,1,7,"CNN","Republican" +3,1,573,"tess",2,0,74,3,26,29,"CNN","Democrat" +3,1,584,"tess",3,1,45,3,45,63,"CNN","Democrat" +3,1,589,"tess",1,1,100,3,100,63,"CNN","Republican" +3,1,600,"tess",2,0,100,2,0,0,"CNN","Republican" +3,1,622,"tess",4,1,95,2,95,24,"CNN","Democrat" +3,1,633,"tess",3,0,50,3,50,60,"CNN","Democrat" +3,1,680,"tess",3,1,57,2,57,13,"CNN","Republican" +3,1,689,"tess",2,0,71,2,29,20,"CNN","Democrat" +3,1,702,"tess",2,1,96,3,96,54,"CNN","Democrat" +3,1,728,"tess",1,0,99,3,1,90,"CNN","Democrat" +3,1,734,"tess",2,0,19,2,81,6,"CNN","Republican" +3,1,740,"tess",2,0,50,3,50,60,"CNN","Democrat" +3,1,752,"tess",3,1,62,2,62,18,"CNN","Democrat" +3,1,753,"tess",3,0,85,3,15,10,"CNN","Republican" +3,1,794,"tess",2,1,55,3,55,77,"CNN","Democrat" +3,1,803,"tess",3,0,30,2,70,60,"CNN","Democrat" +3,1,804,"tess",4,0,52,2,48,16,"CNN","Democrat" +3,1,806,"tess",3,0,49,3,51,49,"CNN","Democrat" +3,1,828,"tess",1,1,91,2,91,80,"CNN","Neither" +3,1,836,"tess",2,0,97,2,3,33,"CNN","Democrat" +3,1,847,"tess",3,0,35,3,65,78,"CNN","Democrat" +3,1,857,"tess",3,0,11,2,89,89,"CNN","Democrat" +3,1,861,"tess",3,0,97,2,3,3,"CNN","Democrat" +3,1,883,"tess",1,0,35,3,65,40,"CNN","Democrat" +3,1,886,"tess",1,1,50,3,50,94,"CNN","Republican" +3,1,895,"tess",1,1,91,2,91,10,"CNN","Democrat" +3,1,898,"tess",2,0,53,2,47,50,"CNN","Republican" +3,1,903,"tess",2,1,42,2,42,86,"CNN","Republican" +3,1,918,"tess",3,0,59,3,41,41,"CNN","Republican" +3,1,952,"tess",3,0,89,2,11,21,"CNN","Republican" +3,1,961,"tess",3,0,6,2,94,39,"CNN","Democrat" +3,1,968,"tess",4,0,100,2,0,0,"CNN","Democrat" +3,1,990,"tess",4,1,82,2,82,22,"CNN","Republican" +3,1,997,"tess",3,1,0,3,0,90,"CNN","Democrat" +3,1,1018,"tess",2,1,89,2,89,70,"CNN","Republican" +3,1,1035,"tess",2,0,60,2,40,50,"CNN","Democrat" +3,1,1036,"tess",1,1,1,3,1,99,"CNN","Republican" +3,1,1058,"tess",2,1,88,2,88,60,"CNN","Republican" +3,1,1062,"tess",4,1,60,2,60,38,"CNN","Democrat" +3,1,1067,"tess",4,0,100,2,0,0,"CNN","Republican" +3,1,1083,"tess",3,0,60,2,40,70,"CNN","Democrat" +3,1,1087,"tess",3,1,50,2,50,50,"CNN","Democrat" +3,1,1114,"tess",4,0,52,2,48,11,"CNN","Neither" +3,1,1119,"tess",3,1,20,2,20,50,"CNN","Republican" +3,1,1141,"tess",3,0,51,3,49,51,"CNN","Democrat" +3,1,1147,"tess",1,0,50,3,50,3,"CNN","Democrat" +3,1,1148,"tess",1,0,7,3,93,69,"CNN","Republican" +3,1,1182,"tess",1,0,92,2,8,20,"CNN","Republican" +3,1,1192,"tess",1,1,78,2,78,40,"CNN","Democrat" +3,1,1256,"tess",1,0,74,3,26,15,"CNN","Democrat" +3,1,1259,"tess",1,1,74,2,74,71,"CNN","Democrat" +3,1,1277,"tess",2,0,NA,2,NA,1,"CNN","Republican" +3,1,1282,"tess",2,1,39,3,39,28,"CNN","Republican" +3,1,1284,"tess",3,0,94,2,6,39,"CNN","Democrat" +3,1,1306,"tess",2,0,97,3,3,4,"CNN","Democrat" +3,1,1311,"tess",3,1,75,3,75,82,"CNN","Democrat" +3,1,1314,"tess",3,1,70,2,70,71,"CNN","Democrat" +3,1,1321,"tess",1,0,35,3,65,23,"CNN","Republican" +3,1,1330,"tess",3,1,59,2,59,52,"CNN","Republican" +3,1,1348,"tess",3,1,91,2,91,79,"CNN","Democrat" +3,1,1366,"tess",3,0,80,3,20,71,"CNN","Democrat" +3,1,1376,"tess",3,1,21,2,21,80,"CNN","Democrat" +3,1,1408,"tess",3,0,50,3,50,50,"CNN","Democrat" +3,1,1426,"tess",1,0,70,3,30,50,"CNN","Democrat" +3,1,1445,"tess",1,0,50,3,50,50,"CNN","Republican" +3,1,1491,"tess",1,0,NA,2,NA,0,"CNN","Republican" +3,1,1506,"tess",1,0,71,2,29,29,"CNN","Democrat" +3,1,1507,"tess",1,1,90,2,90,90,"CNN","Democrat" +3,1,1510,"tess",2,1,79,2,79,70,"CNN","Republican" +3,1,1523,"tess",2,0,11,3,89,96,"CNN","Republican" +3,1,1551,"tess",2,0,41,2,59,7,"CNN","Republican" +3,1,1556,"tess",2,0,75,3,25,60,"CNN","Democrat" +3,1,1563,"tess",2,1,98,3,98,3,"CNN","Republican" +3,1,1624,"tess",2,1,60,3,60,50,"CNN","Republican" +3,1,1634,"tess",3,0,81,3,19,5,"CNN","Democrat" +3,1,1644,"tess",1,1,61,2,61,14,"CNN","Democrat" +3,1,1669,"tess",3,1,0,3,0,50,"CNN","Democrat" +3,1,1689,"tess",4,1,86,2,86,97,"CNN","Democrat" +3,1,1724,"tess",3,0,30,3,70,30,"CNN","Democrat" +3,1,1726,"tess",4,0,20,2,80,40,"CNN","Democrat" +3,1,1733,"tess",1,1,99,3,99,50,"CNN","Democrat" +3,1,1756,"tess",1,1,60,3,60,40,"CNN","Democrat" +3,1,1775,"tess",1,0,41,2,59,30,"CNN","Democrat" +3,1,1798,"tess",2,0,100,2,0,5,"CNN","Democrat" +3,1,1813,"tess",2,1,100,3,100,50,"CNN","Democrat" +3,1,1815,"tess",4,0,72,2,28,19,"CNN","Republican" +3,1,1824,"tess",3,1,100,2,100,100,"CNN","Republican" +3,1,1834,"tess",3,0,88,3,12,90,"CNN","Neither" +3,1,1835,"tess",1,0,0,3,100,97,"CNN","Neither" +3,1,1841,"tess",1,1,66,3,66,58,"CNN","Republican" +3,1,1847,"tess",2,1,65,3,65,28,"CNN","Republican" +3,1,1857,"tess",2,1,1,2,1,50,"CNN","Democrat" +3,1,1863,"tess",3,1,50,3,50,75,"CNN","Republican" +3,1,1870,"tess",1,1,70,2,70,71,"CNN","Republican" +3,1,1890,"tess",4,0,86,2,14,15,"CNN","Democrat" +3,1,1899,"tess",1,0,100,2,0,1,"CNN","Democrat" +3,1,1900,"tess",2,0,75,3,25,25,"CNN","Republican" +3,1,1902,"tess",2,1,0,3,0,93,"CNN","Democrat" +3,1,1910,"tess",2,0,0,2,100,0,"CNN","Republican" +3,1,1924,"tess",3,0,89,3,11,58,"CNN","Democrat" +3,1,1933,"tess",2,0,88,2,12,28,"CNN","Democrat" +3,1,1935,"tess",1,0,1,2,99,24,"CNN","Republican" +3,1,1945,"tess",4,0,16,2,84,85,"CNN","Democrat" +3,1,1950,"tess",2,1,12,3,12,23,"CNN","Republican" +3,1,1952,"tess",1,1,NA,3,NA,NA,"CNN","Democrat" +3,1,1960,"tess",4,1,100,2,100,59,"CNN","Republican" +3,1,1981,"tess",2,0,87,2,13,65,"CNN","Democrat" +3,1,1994,"tess",3,0,80,2,20,50,"CNN","Republican" +3,1,2001,"tess",3,1,79,3,79,33,"CNN","Republican" +3,1,2033,"tess",3,0,34,3,66,59,"CNN","Democrat" +3,1,2044,"tess",1,1,50,3,50,81,"CNN","Republican" +3,1,2056,"tess",2,0,25,3,75,22,"CNN","Republican" +3,1,2057,"tess",3,0,0,3,100,100,"CNN","Republican" +3,1,2060,"tess",4,0,53,2,47,60,"CNN","Democrat" +3,1,2061,"tess",2,1,47,3,47,100,"CNN","Democrat" +3,1,2066,"tess",1,0,3,3,97,98,"CNN","Republican" +3,1,2082,"tess",1,0,87,2,13,0,"CNN","Democrat" +3,1,2088,"tess",1,0,92,2,8,9,"CNN","Democrat" +3,1,2090,"tess",2,0,0,3,100,0,"CNN","Democrat" +3,1,2124,"tess",1,0,79,2,21,13,"CNN","Republican" +3,1,2147,"tess",1,0,50,3,50,9,"CNN","Democrat" +3,1,2153,"tess",3,0,96,2,4,4,"CNN","Democrat" +3,1,2179,"tess",3,0,NA,3,NA,NA,"CNN","Democrat" +3,1,2187,"tess",1,0,52,2,48,44,"CNN","Democrat" +3,1,2188,"tess",1,0,80,2,20,1,"CNN","Republican" +3,1,2197,"tess",4,0,89,2,11,22,"CNN","Republican" +3,1,2213,"tess",3,1,78,3,78,80,"CNN","Neither" +3,1,2218,"tess",4,0,100,2,0,3,"CNN","Republican" +3,1,2230,"tess",1,1,11,2,11,96,"CNN","Republican" +3,1,2238,"tess",2,1,51,2,51,22,"CNN","Democrat" +3,1,2242,"tess",1,0,38,2,62,80,"CNN","Republican" +3,1,2272,"tess",1,0,50,3,50,16,"CNN","Democrat" +3,1,2283,"tess",4,0,60,2,40,40,"CNN","Democrat" +3,1,2287,"tess",3,1,70,2,70,30,"CNN","Democrat" +3,1,2308,"tess",2,0,31,2,69,96,"CNN","Democrat" +3,1,2313,"tess",1,0,5,2,95,95,"CNN","Democrat" +3,1,2322,"tess",2,0,53,3,47,78,"CNN","Republican" +3,1,2356,"tess",2,0,40,3,60,60,"CNN","Republican" +3,1,2359,"tess",4,0,99,2,1,99,"CNN","Democrat" +3,1,2381,"tess",2,0,50,3,50,68,"CNN","Democrat" +3,1,2394,"tess",4,1,69,2,69,70,"CNN","Democrat" +3,1,2399,"tess",2,0,53,2,47,19,"CNN","Democrat" +3,1,2405,"tess",3,1,24,3,24,76,"CNN","Democrat" +3,1,2412,"tess",1,1,79,3,79,96,"CNN","Democrat" +3,1,2424,"tess",3,1,40,3,40,54,"CNN","Republican" +3,1,2435,"tess",1,1,35,3,35,37,"CNN","Democrat" +3,1,2447,"tess",2,0,87,2,13,6,"CNN","Democrat" +3,1,2459,"tess",3,0,60,3,40,15,"CNN","Democrat" +3,1,2460,"tess",3,1,NA,3,NA,NA,"CNN","Democrat" +3,1,2483,"tess",2,1,70,2,70,50,"CNN","Democrat" +3,1,2484,"tess",3,1,100,2,100,100,"CNN","Republican" +3,1,2508,"tess",1,1,95,3,95,95,"CNN","Democrat" +3,1,2512,"tess",1,1,79,3,79,81,"CNN","Republican" +3,1,2519,"tess",3,0,50,2,50,36,"CNN","Democrat" +3,1,2525,"tess",2,1,99,3,99,38,"CNN","Republican" +3,1,2536,"tess",1,0,30,2,70,20,"CNN","Democrat" +3,1,2537,"tess",3,0,78,2,22,44,"CNN","Republican" +3,1,2545,"tess",3,1,86,3,86,78,"CNN","Democrat" +3,1,2578,"tess",2,0,31,2,69,85,"CNN","Republican" +3,1,2592,"tess",1,1,7,3,7,88,"CNN","Democrat" +3,1,2608,"tess",1,0,40,2,60,3,"CNN","Democrat" +3,1,2611,"tess",3,1,55,2,55,69,"CNN","Neither" +3,1,2623,"tess",2,1,39,3,39,45,"CNN","Democrat" +3,1,2630,"tess",1,0,21,3,79,36,"CNN","Republican" +3,1,2632,"tess",3,0,50,3,50,50,"CNN","Democrat" +3,1,2658,"tess",2,1,20,3,20,1,"CNN","Republican" +3,1,2659,"tess",3,0,3,2,97,98,"CNN","Republican" +3,1,2695,"tess",1,1,74,3,74,100,"CNN","Republican" +3,1,2698,"tess",1,0,23,2,77,75,"CNN","Republican" +3,1,2707,"tess",3,1,57,2,57,26,"CNN","Democrat" +3,1,2714,"tess",3,1,26,3,26,84,"CNN","Democrat" +3,1,2720,"tess",2,0,25,3,75,53,"CNN","Republican" +3,1,2722,"tess",2,0,44,3,56,69,"CNN","Democrat" +3,1,2764,"tess",3,0,28,2,72,33,"CNN","Republican" +3,1,2765,"tess",1,0,45,2,55,15,"CNN","Republican" +3,1,2767,"tess",1,0,66,2,34,20,"CNN","Democrat" +3,1,2771,"tess",2,0,83,2,17,49,"CNN","Democrat" +3,1,2773,"tess",1,1,19,2,19,80,"CNN","Republican" +3,1,2784,"tess",3,0,22,3,78,20,"CNN","Republican" +3,1,2797,"tess",3,1,55,2,55,15,"CNN","Democrat" +3,1,2804,"tess",3,1,30,2,30,50,"CNN","Republican" +3,1,2808,"tess",2,0,69,3,31,54,"CNN","Democrat" +3,1,2829,"tess",2,1,30,3,30,80,"CNN","Democrat" +3,1,2843,"tess",1,1,98,3,98,0,"CNN","Democrat" +3,1,2885,"tess",3,0,98,2,2,50,"CNN","Republican" +3,1,2893,"tess",1,0,70,3,30,20,"CNN","Republican" +3,1,2903,"tess",3,0,78,3,22,12,"CNN","Democrat" +3,1,2905,"tess",4,0,48,2,52,39,"CNN","Democrat" +3,1,2915,"tess",4,1,99,2,99,50,"CNN","Democrat" +3,1,2917,"tess",1,0,86,2,14,14,"CNN","Republican" +3,1,2934,"tess",1,0,50,2,50,49,"CNN","Democrat" +3,1,2936,"tess",3,1,73,3,73,38,"CNN","Democrat" +3,1,2938,"tess",2,1,100,3,100,100,"CNN","Republican" +3,1,2940,"tess",1,1,100,3,100,99,"CNN","Republican" +3,1,2945,"tess",2,0,12,3,88,91,"CNN","Democrat" +3,1,2953,"tess",3,1,50,3,50,90,"CNN","Neither" +3,1,2979,"tess",1,1,97,2,97,25,"CNN","Democrat" +3,1,2981,"tess",1,1,91,2,91,80,"CNN","Democrat" +3,1,2982,"tess",4,0,50,2,50,70,"CNN","Democrat" +3,1,2983,"tess",2,0,35,3,65,19,"CNN","Democrat" +3,1,2990,"tess",1,0,10,3,90,90,"CNN","Republican" +3,1,2998,"tess",1,1,28,3,28,71,"CNN","Republican" +3,1,3025,"tess",2,0,50,3,50,99,"CNN","Democrat" +3,1,3039,"tess",1,1,80,3,80,80,"CNN","Republican" +3,1,3043,"tess",2,1,76,3,76,92,"CNN","Democrat" +3,1,3047,"tess",1,0,45,2,55,51,"CNN","Democrat" +3,1,3048,"tess",4,1,80,2,80,98,"CNN","Democrat" +3,1,3051,"tess",1,0,50,3,50,40,"CNN","Republican" +3,1,3062,"tess",3,1,11,3,11,84,"CNN","Neither" +3,1,3068,"tess",2,1,69,2,69,10,"CNN","Democrat" +3,1,3071,"tess",2,1,70,2,70,63,"CNN","Democrat" +3,1,3072,"tess",1,0,50,3,50,1,"CNN","Republican" +3,1,3077,"tess",1,1,35,3,35,20,"CNN","Democrat" +3,1,3109,"tess",3,0,88,3,12,86,"CNN","Neither" +3,1,3111,"tess",4,0,50,2,50,41,"CNN","Democrat" +3,1,3115,"tess",3,1,10,2,10,89,"CNN","Neither" +3,1,3125,"tess",4,1,48,2,48,97,"CNN","Democrat" +3,1,3170,"tess",2,1,50,3,50,80,"CNN","Democrat" +3,1,3172,"tess",1,1,10,2,10,20,"CNN","Democrat" +3,1,3188,"tess",2,0,88,2,12,80,"CNN","Democrat" +3,1,3190,"tess",2,0,93,3,7,48,"CNN","Democrat" +3,1,3192,"tess",1,1,70,3,70,70,"CNN","Democrat" +3,1,3195,"tess",3,1,90,3,90,79,"CNN","Democrat" +3,1,3201,"tess",2,0,50,3,50,33,"CNN","Republican" +3,1,3205,"tess",2,0,51,3,49,50,"CNN","Republican" +3,1,3206,"tess",1,1,60,3,60,91,"CNN","Democrat" +3,1,3207,"tess",4,0,69,2,31,17,"CNN","Republican" +3,1,3214,"tess",3,1,50,2,50,55,"CNN","Democrat" +3,1,3223,"tess",4,0,100,2,0,0,"CNN","Democrat" +3,1,3226,"tess",4,1,77,2,77,95,"CNN","Republican" +3,1,3262,"tess",3,1,75,2,75,50,"CNN","Republican" +3,1,3274,"tess",2,1,50,3,50,100,"CNN","Democrat" +3,1,3281,"tess",3,1,98,3,98,98,"CNN","Democrat" +3,1,3288,"tess",4,0,50,2,50,50,"CNN","Republican" +3,1,3335,"tess",3,0,71,3,29,64,"CNN","Democrat" +3,1,3356,"tess",1,0,100,2,0,50,"CNN","Democrat" +3,1,3407,"tess",2,0,91,2,9,40,"CNN","Republican" +3,1,3419,"tess",4,0,50,2,50,50,"CNN","Democrat" +3,1,3424,"tess",1,1,78,3,78,69,"CNN","Democrat" +3,1,3425,"tess",3,0,46,3,54,64,"CNN","Republican" +3,1,3426,"tess",1,0,89,3,11,90,"CNN","Democrat" +3,1,3430,"tess",1,1,29,3,29,54,"CNN","Democrat" +3,1,3462,"tess",2,0,67,3,33,64,"CNN","Republican" +3,1,3468,"tess",1,0,55,2,45,24,"CNN","Democrat" +3,1,3477,"tess",4,0,88,2,12,10,"CNN","Democrat" +3,1,3494,"tess",3,0,62,3,38,27,"CNN","Democrat" +3,1,3517,"tess",3,1,10,2,10,40,"CNN","Republican" +3,1,3522,"tess",1,1,90,3,90,91,"CNN","Republican" +3,1,3523,"tess",2,0,50,2,50,50,"CNN","Democrat" +3,1,3535,"tess",4,0,40,2,60,60,"CNN","Democrat" +3,1,3544,"tess",1,1,21,3,21,76,"CNN","Neither" +3,1,3545,"tess",1,0,56,2,44,30,"CNN","Democrat" +3,1,3562,"tess",2,1,60,2,60,100,"CNN","Democrat" +3,1,3587,"tess",1,0,81,2,19,20,"CNN","Democrat" +3,1,3610,"tess",2,1,50,3,50,30,"CNN","Democrat" +3,1,3632,"tess",2,0,64,3,36,40,"CNN","Republican" +3,1,3634,"tess",1,1,97,3,97,75,"CNN","Democrat" +3,1,3643,"tess",3,0,80,2,20,10,"CNN","Democrat" +3,1,3653,"tess",1,1,79,2,79,27,"CNN","Democrat" +3,1,3656,"tess",3,0,0,3,100,98,"CNN","Democrat" +3,1,3663,"tess",1,0,27,3,73,62,"CNN","Democrat" +3,1,3678,"tess",3,1,50,3,50,50,"CNN","Republican" +3,1,3702,"tess",2,0,90,2,10,9,"CNN","Democrat" +3,1,3704,"tess",2,0,74,2,26,36,"CNN","Republican" +3,1,3708,"tess",2,1,17,2,17,27,"CNN","Democrat" +3,1,3711,"tess",1,0,61,3,39,51,"CNN","Democrat" +3,1,3725,"tess",2,0,88,2,12,21,"CNN","Republican" +3,1,3726,"tess",1,0,59,2,41,0,"CNN","Democrat" +3,1,3736,"tess",4,0,100,2,0,0,"CNN","Democrat" +3,1,3745,"tess",2,1,90,3,90,92,"CNN","Democrat" +3,1,3747,"tess",1,0,39,3,61,44,"CNN","Democrat" +3,1,3767,"tess",1,0,99,2,1,18,"CNN","Republican" +3,1,3776,"tess",2,1,74,3,74,44,"CNN","Democrat" +3,1,3782,"tess",1,1,84,2,84,44,"CNN","Democrat" +3,1,3793,"tess",3,1,71,3,71,95,"CNN","Republican" +3,1,3845,"tess",3,1,44,2,44,30,"CNN","Democrat" +3,1,3848,"tess",3,0,20,2,80,20,"CNN","Republican" +3,1,3865,"tess",3,1,51,2,51,46,"CNN","Democrat" +3,1,3868,"tess",4,0,99,2,1,1,"CNN","Democrat" +3,1,3880,"tess",3,1,74,3,74,63,"CNN","Republican" +3,1,3890,"tess",3,1,40,2,40,10,"CNN","Republican" +3,1,3895,"tess",1,0,50,3,50,41,"CNN","Republican" +3,1,3898,"tess",1,1,NA,2,NA,86,"CNN","Democrat" +3,1,3909,"tess",2,0,30,2,70,70,"CNN","Democrat" +3,1,3910,"tess",3,0,94,2,6,18,"CNN","Democrat" +3,1,3918,"tess",2,0,98,3,2,1,"CNN","Democrat" +3,1,3920,"tess",4,0,76,2,24,25,"CNN","Democrat" +3,1,3923,"tess",3,0,100,2,0,100,"CNN","Democrat" +3,1,3931,"tess",1,1,28,3,28,12,"CNN","Democrat" +3,1,3946,"tess",2,1,50,3,50,90,"CNN","Democrat" +3,1,3981,"tess",1,0,50,3,50,49,"CNN","Republican" +3,1,4001,"tess",3,1,89,3,89,20,"CNN","Neither" +3,1,4006,"tess",3,0,80,3,20,40,"CNN","Democrat" +3,1,4007,"tess",1,0,70,2,30,19,"CNN","Republican" +3,1,4008,"tess",3,1,60,3,60,33,"CNN","Republican" +3,1,4015,"tess",1,1,80,3,80,99,"CNN","Democrat" +3,1,4027,"tess",2,1,70,2,70,68,"CNN","Republican" +3,1,4035,"tess",1,0,100,3,0,99,"CNN","Republican" +3,1,4046,"tess",4,1,30,2,30,85,"CNN","Democrat" +3,1,4049,"tess",3,0,75,2,25,1,"CNN","Neither" +3,1,4065,"tess",1,0,NA,2,NA,0,"CNN","Democrat" +3,1,4076,"tess",3,0,78,3,22,3,"CNN","Republican" +3,1,4079,"tess",1,0,67,2,33,50,"CNN","Democrat" +3,1,4139,"tess",3,0,50,2,50,96,"CNN","Republican" +3,1,4142,"tess",1,1,0,3,0,100,"CNN","Democrat" +3,1,4163,"tess",3,1,69,3,69,74,"CNN","Republican" +3,1,4178,"tess",3,1,19,2,19,43,"CNN","Democrat" +3,1,4186,"tess",4,1,95,2,95,98,"CNN","Democrat" +3,1,4197,"tess",1,0,0,2,100,0,"CNN","Democrat" +3,1,4199,"tess",1,1,67,3,67,2,"CNN","Democrat" +3,1,4200,"tess",3,0,79,2,21,40,"CNN","Democrat" +3,1,4202,"tess",3,0,90,2,10,10,"CNN","Democrat" +3,1,4224,"tess",3,1,85,2,85,85,"CNN","Democrat" +3,1,4229,"tess",4,0,92,2,8,10,"CNN","Democrat" +3,1,4251,"tess",3,0,87,2,13,23,"CNN","Republican" +3,1,4252,"tess",2,0,68,2,32,19,"CNN","Republican" +3,1,4253,"tess",2,1,85,3,85,38,"CNN","Democrat" +3,1,4266,"tess",2,1,63,2,63,70,"CNN","Democrat" +3,1,4269,"tess",3,1,90,2,90,80,"CNN","Republican" +3,1,4278,"tess",1,1,98,2,98,70,"CNN","Republican" +3,1,4298,"tess",1,0,40,2,60,20,"CNN","Democrat" +3,1,4307,"tess",3,0,70,2,30,30,"CNN","Republican" +3,1,4308,"tess",2,0,99,3,1,100,"CNN","Democrat" +3,1,4311,"tess",2,0,92,3,8,60,"CNN","Democrat" +3,1,4322,"tess",2,0,6,3,94,20,"CNN","Republican" +3,1,4331,"tess",3,1,50,3,50,60,"CNN","Democrat" +3,1,4332,"tess",4,1,99,2,99,80,"CNN","Democrat" +3,1,4335,"tess",3,1,69,3,69,70,"CNN","Republican" +3,1,4349,"tess",2,0,100,2,0,6,"CNN","Democrat" +3,1,4361,"tess",3,1,95,3,95,98,"CNN","Democrat" +3,1,4390,"tess",3,1,25,3,25,26,"CNN","Democrat" +3,1,4401,"tess",3,0,96,3,4,50,"CNN","Democrat" +3,1,4416,"tess",2,0,80,2,20,20,"CNN","Republican" +3,1,4427,"tess",4,1,1,2,1,99,"CNN","Democrat" +3,1,4431,"tess",3,1,90,3,90,90,"CNN","Democrat" +3,1,4447,"tess",1,1,69,3,69,92,"CNN","Republican" +3,1,4455,"tess",1,1,100,2,100,90,"CNN","Democrat" +3,1,4457,"tess",3,0,100,2,0,0,"CNN","Democrat" +3,1,4458,"tess",1,0,12,2,88,48,"CNN","Republican" +3,1,4459,"tess",1,1,96,2,96,86,"CNN","Democrat" +3,1,4470,"tess",3,0,68,2,32,50,"CNN","Democrat" +3,1,4475,"tess",4,0,70,2,30,40,"CNN","Democrat" +3,1,4476,"tess",3,0,31,3,69,70,"CNN","Democrat" +3,1,4482,"tess",1,0,50,2,50,49,"CNN","Neither" +3,1,4484,"tess",1,0,96,3,4,9,"CNN","Democrat" +3,1,4486,"tess",2,0,50,2,50,100,"CNN","Republican" +3,1,4516,"tess",3,1,42,3,42,69,"CNN","Democrat" +3,1,4525,"tess",1,0,80,3,20,50,"CNN","Republican" +3,1,4557,"tess",2,0,82,3,18,8,"CNN","Republican" +3,1,4561,"tess",3,1,78,2,78,32,"CNN","Democrat" +3,1,4574,"tess",2,1,32,2,32,22,"CNN","Democrat" +3,1,4584,"tess",1,1,NA,3,NA,NA,"CNN","Democrat" +3,1,4606,"tess",1,1,49,3,49,0,"CNN","Republican" +3,1,4632,"tess",1,1,82,3,82,80,"CNN","Democrat" +3,1,4663,"tess",1,0,20,2,80,90,"CNN","Democrat" +3,1,4683,"tess",2,0,94,3,6,100,"CNN","Neither" +3,1,4690,"tess",2,0,100,3,0,100,"CNN","Democrat" +3,1,4700,"tess",3,0,59,2,41,90,"CNN","Republican" +3,1,4708,"tess",1,1,35,3,35,64,"CNN","Democrat" +3,1,4722,"tess",2,1,31,2,31,80,"CNN","Democrat" +3,1,4742,"tess",1,0,90,2,10,11,"CNN","Democrat" +3,1,4774,"tess",3,0,30,2,70,10,"CNN","Republican" +3,1,4782,"tess",1,1,49,3,49,51,"CNN","Democrat" +3,1,4785,"tess",3,1,98,2,98,26,"CNN","Republican" +3,1,4793,"tess",2,0,100,2,0,50,"CNN","Democrat" +3,1,4795,"tess",2,1,98,2,98,80,"CNN","Democrat" +3,1,4799,"tess",3,1,51,2,51,69,"CNN","Republican" +3,1,4800,"tess",1,1,93,3,93,95,"CNN","Republican" +3,1,4807,"tess",2,0,50,2,50,20,"CNN","Democrat" +3,1,4810,"tess",3,1,85,2,85,48,"CNN","Democrat" +3,1,4816,"tess",1,0,96,2,4,9,"CNN","Democrat" +3,1,4817,"tess",2,1,85,2,85,70,"CNN","Democrat" +3,1,4820,"tess",2,1,49,2,49,49,"CNN","Republican" +3,1,4821,"tess",1,0,47,3,53,43,"CNN","Neither" +3,1,4823,"tess",1,1,51,3,51,100,"CNN","Democrat" +3,1,4831,"tess",4,0,50,2,50,0,"CNN","Neither" +3,1,4833,"tess",2,0,6,2,94,90,"CNN","Democrat" +3,1,4841,"tess",1,1,98,3,98,95,"CNN","Democrat" +3,1,4863,"tess",4,0,12,2,88,0,"CNN","Republican" +3,1,4866,"tess",1,1,100,2,100,100,"CNN","Democrat" +3,1,4875,"tess",4,1,0,2,0,100,"CNN","Democrat" +3,1,4883,"tess",3,0,94,3,6,91,"CNN","Democrat" +3,1,4914,"tess",4,1,60,2,60,30,"CNN","Democrat" +3,1,4930,"tess",4,0,27,2,73,60,"CNN","Democrat" +3,1,4932,"tess",4,1,100,2,100,90,"CNN","Republican" +3,1,4935,"tess",1,0,18,3,82,74,"CNN","Democrat" +3,1,4969,"tess",3,1,25,2,25,100,"CNN","Democrat" +3,1,4971,"tess",2,0,90,2,10,20,"CNN","Democrat" +3,1,4990,"tess",2,0,50,3,50,51,"CNN","Republican" +3,1,5004,"tess",3,1,81,2,81,82,"CNN","Democrat" +3,1,5016,"tess",4,0,71,2,29,20,"CNN","Democrat" +3,1,5018,"tess",1,1,66,3,66,99,"CNN","Democrat" +3,1,5025,"tess",1,1,69,3,69,94,"CNN","Democrat" +3,1,5029,"tess",2,1,33,3,33,17,"CNN","Republican" +3,1,5058,"tess",3,0,80,2,20,20,"CNN","Republican" +3,1,5073,"tess",3,1,29,2,29,50,"CNN","Democrat" +3,1,5092,"tess",2,0,40,3,60,53,"CNN","Republican" +3,1,5101,"tess",4,1,99,2,99,99,"CNN","Democrat" +3,1,5114,"tess",2,1,49,2,49,48,"CNN","Democrat" +3,1,5116,"tess",1,1,90,2,90,20,"CNN","Republican" +3,1,5128,"tess",1,0,49,2,51,21,"CNN","Democrat" +3,1,5132,"tess",3,0,71,3,29,50,"CNN","Republican" +3,1,5133,"tess",2,0,NA,3,NA,NA,"CNN","Republican" +3,1,5143,"tess",2,1,21,2,21,62,"CNN","Republican" +3,1,5151,"tess",3,1,1,2,1,1,"CNN","Democrat" +3,1,5165,"tess",2,1,100,3,100,99,"CNN","Republican" +3,1,5192,"tess",3,0,60,2,40,30,"CNN","Democrat" +3,1,5224,"tess",2,0,89,2,11,16,"CNN","Republican" +3,1,5228,"tess",4,1,95,2,95,0,"CNN","Democrat" +3,1,5268,"tess",4,0,50,2,50,71,"CNN","Democrat" +3,1,5270,"tess",3,1,NA,2,NA,11,"CNN","Republican" +3,1,5279,"tess",2,0,0,3,100,100,"CNN","Democrat" +3,1,5284,"tess",1,1,95,3,95,96,"CNN","Democrat" +3,1,5289,"tess",3,0,3,3,97,98,"CNN","Democrat" +3,1,5301,"tess",3,0,96,2,4,9,"CNN","Democrat" +3,1,5316,"tess",4,0,70,2,30,30,"CNN","Republican" +3,1,5319,"tess",1,0,40,2,60,60,"CNN","Democrat" +3,1,5326,"tess",2,0,70,3,30,31,"CNN","Democrat" +3,1,5331,"tess",1,0,50,2,50,30,"CNN","Democrat" +3,1,5385,"tess",1,0,59,3,41,8,"CNN","Democrat" +3,1,5386,"tess",3,1,0,3,0,0,"CNN","Republican" +3,1,5406,"tess",1,1,47,2,47,59,"CNN","Republican" +3,1,5416,"tess",1,1,50,2,50,52,"CNN","Democrat" +3,1,5428,"tess",4,1,96,2,96,82,"CNN","Republican" +3,1,5434,"tess",2,1,70,3,70,27,"CNN","Republican" +3,1,5450,"tess",1,1,92,2,92,11,"CNN","Republican" +3,1,5465,"tess",4,0,75,2,25,18,"CNN","Republican" +3,1,5470,"tess",3,1,75,3,75,50,"CNN","Democrat" +3,1,5475,"tess",2,1,98,3,98,98,"CNN","Democrat" +3,1,5504,"tess",3,0,51,2,49,10,"CNN","Republican" +3,1,5518,"tess",2,1,30,3,30,60,"CNN","Republican" +3,1,5519,"tess",2,1,59,3,59,18,"CNN","Democrat" +3,1,5536,"tess",4,0,8,2,92,45,"CNN","Democrat" +3,1,5551,"tess",2,1,79,2,79,39,"CNN","Republican" +3,1,5561,"tess",2,1,0,2,0,100,"CNN","Republican" +3,1,5569,"tess",2,0,86,3,14,9,"CNN","Democrat" +3,1,5575,"tess",3,1,93,2,93,100,"CNN","Democrat" +3,1,5576,"tess",3,1,50,2,50,18,"CNN","Democrat" +3,1,5586,"tess",4,1,98,2,98,91,"CNN","Democrat" +3,1,5590,"tess",2,1,68,2,68,75,"CNN","Democrat" +3,1,5593,"tess",3,1,50,3,50,50,"CNN","Republican" +3,1,5597,"tess",1,1,83,2,83,6,"CNN","Republican" +3,1,5612,"tess",2,0,37,2,63,57,"CNN","Democrat" +3,1,5614,"tess",3,0,81,2,19,37,"CNN","Democrat" +3,1,5620,"tess",4,1,30,2,30,79,"CNN","Democrat" +3,1,5626,"tess",2,0,3,3,97,97,"CNN","Democrat" +3,1,5631,"tess",4,0,30,2,70,80,"CNN","Republican" +3,1,5635,"tess",3,0,99,3,1,50,"CNN","Republican" +3,1,5648,"tess",2,1,83,3,83,34,"CNN","Democrat" +3,1,5654,"tess",3,0,81,2,19,5,"CNN","Democrat" +3,1,5657,"tess",4,1,75,2,75,96,"CNN","Democrat" +3,1,5660,"tess",1,1,40,3,40,60,"CNN","Democrat" +3,1,5669,"tess",4,0,96,2,4,3,"CNN","Neither" +3,1,5681,"tess",3,0,89,3,11,81,"CNN","Democrat" +3,1,5683,"tess",2,0,43,3,57,0,"CNN","Democrat" +3,1,5715,"tess",3,0,25,2,75,9,"CNN","Republican" +3,1,5720,"tess",2,1,80,3,80,79,"CNN","Republican" +3,1,5726,"tess",2,0,84,2,16,1,"CNN","Democrat" +3,1,5731,"tess",2,0,99,2,1,20,"CNN","Democrat" +3,1,5732,"tess",1,1,50,2,50,80,"CNN","Republican" +3,1,5740,"tess",3,1,10,2,10,10,"CNN","Democrat" +3,1,5752,"tess",1,1,60,2,60,50,"CNN","Democrat" +3,1,5757,"tess",2,1,57,3,57,22,"CNN","Republican" +3,1,5803,"tess",2,1,75,3,75,37,"CNN","Republican" +3,1,5810,"tess",3,0,80,3,20,20,"CNN","Democrat" +3,1,5824,"tess",3,1,100,2,100,0,"CNN","Democrat" +3,1,5825,"tess",3,0,100,2,0,0,"CNN","Republican" +3,1,5838,"tess",2,1,90,3,90,60,"CNN","Republican" +3,1,5868,"tess",2,0,51,3,49,39,"CNN","Democrat" +3,1,5873,"tess",3,0,23,3,77,80,"CNN","Democrat" +3,1,5885,"tess",3,1,50,3,50,52,"CNN","Republican" +3,1,5906,"tess",3,0,75,2,25,0,"CNN","Democrat" +3,1,5916,"tess",3,0,60,2,40,20,"CNN","Republican" +3,1,5918,"tess",2,0,99,2,1,20,"CNN","Republican" +3,1,5925,"tess",2,1,52,3,52,20,"CNN","Republican" +3,1,5926,"tess",1,1,97,3,97,99,"CNN","Democrat" +3,1,5931,"tess",2,0,97,2,3,93,"CNN","Democrat" +3,1,5937,"tess",3,1,53,3,53,6,"CNN","Democrat" +3,1,5946,"tess",2,1,9,2,9,10,"CNN","Republican" +3,1,5954,"tess",3,0,40,3,60,60,"CNN","Democrat" +3,1,5963,"tess",4,1,42,2,42,98,"CNN","Democrat" +3,1,5978,"tess",1,0,93,3,7,98,"CNN","Democrat" +3,1,5981,"tess",1,0,85,3,15,15,"CNN","Republican" +3,1,5990,"tess",1,1,90,2,90,81,"CNN","Democrat" +3,1,6000,"tess",3,0,59,3,41,20,"CNN","Democrat" +3,1,6012,"tess",1,1,40,3,40,60,"CNN","Republican" +3,1,6042,"tess",3,0,99,2,1,1,"CNN","Neither" +3,1,6045,"tess",2,0,45,2,55,35,"CNN","Republican" +3,1,6046,"tess",3,0,19,3,81,41,"CNN","Democrat" +3,1,6048,"tess",2,0,13,2,87,69,"CNN","Republican" +3,1,6053,"tess",2,1,33,2,33,93,"CNN","Republican" +3,1,6067,"tess",3,1,44,2,44,34,"CNN","Republican" +3,1,6068,"tess",4,1,29,2,29,49,"CNN","Democrat" +3,1,6077,"tess",4,0,70,2,30,40,"CNN","Democrat" +3,1,6090,"tess",1,1,99,3,99,92,"CNN","Democrat" +3,1,6097,"tess",4,0,55,2,45,47,"CNN","Republican" +3,1,6101,"tess",3,0,66,2,34,50,"CNN","Democrat" +3,1,6110,"tess",4,0,84,2,16,51,"CNN","Republican" +3,1,6111,"tess",2,0,88,3,12,64,"CNN","Democrat" +3,1,6116,"tess",1,1,98,3,98,95,"CNN","Democrat" +3,1,6132,"tess",2,0,90,3,10,100,"CNN","Neither" +3,1,6138,"tess",4,0,91,2,9,15,"CNN","Democrat" +3,1,6151,"tess",2,0,71,2,29,20,"CNN","Democrat" +3,1,6171,"tess",3,1,51,3,51,100,"CNN","Democrat" +3,1,6187,"tess",3,0,94,3,6,71,"CNN","Democrat" +3,1,6193,"tess",2,0,98,2,2,2,"CNN","Democrat" +3,1,6195,"tess",1,1,75,2,75,90,"CNN","Democrat" +3,1,6196,"tess",2,0,99,3,1,1,"CNN","Democrat" +3,1,6204,"tess",3,0,50,3,50,50,"CNN","Republican" +3,1,6227,"tess",1,0,83,3,17,55,"CNN","Democrat" +3,1,6231,"tess",1,0,60,3,40,51,"CNN","Democrat" +3,1,6237,"tess",2,0,20,2,80,30,"CNN","Democrat" +3,1,6242,"tess",4,1,85,2,85,82,"CNN","Democrat" +3,1,6244,"tess",2,0,60,3,40,15,"CNN","Democrat" +3,1,6245,"tess",4,1,82,2,82,47,"CNN","Democrat" +3,1,6254,"tess",4,1,47,2,47,58,"CNN","Democrat" +3,1,6256,"tess",4,1,94,2,94,97,"CNN","Democrat" +3,1,6257,"tess",3,1,51,3,51,83,"CNN","Democrat" +3,1,6259,"tess",4,0,100,2,0,0,"CNN","Democrat" +3,1,6261,"tess",1,0,50,2,50,50,"CNN","Democrat" +3,1,6265,"tess",1,1,50,2,50,20,"CNN","Democrat" +3,1,6279,"tess",3,0,8,3,92,12,"CNN","Republican" +3,1,6280,"tess",4,1,59,2,59,97,"CNN","Democrat" +3,1,6284,"tess",4,1,70,2,70,20,"CNN","Neither" +3,1,6298,"tess",1,1,11,2,11,0,"CNN","Neither" +3,1,6301,"tess",1,1,99,2,99,80,"CNN","Democrat" +3,1,6307,"tess",4,0,76,2,24,25,"CNN","Republican" +3,1,6323,"tess",1,0,92,3,8,90,"CNN","Democrat" +3,1,6326,"tess",3,1,85,3,85,80,"CNN","Democrat" +3,1,6333,"tess",2,1,75,3,75,65,"CNN","Republican" +3,1,6361,"tess",1,1,90,2,90,99,"CNN","Democrat" +3,1,6362,"tess",2,0,100,2,0,0,"CNN","Republican" +3,1,6366,"tess",4,1,90,2,90,90,"CNN","Democrat" +3,1,6367,"tess",2,1,60,2,60,60,"CNN","Democrat" +3,1,6372,"tess",3,0,50,3,50,100,"CNN","Democrat" +3,1,6373,"tess",4,1,54,2,54,62,"CNN","Democrat" +3,1,6382,"tess",1,1,100,3,100,60,"CNN","Democrat" +3,1,6383,"tess",1,0,82,2,18,0,"CNN","Democrat" +3,1,6385,"tess",2,0,45,2,55,33,"CNN","Democrat" +3,1,6402,"tess",1,1,90,3,90,98,"CNN","Democrat" +3,1,6414,"tess",1,1,80,2,80,80,"CNN","Republican" +3,1,6424,"tess",3,1,92,2,92,100,"CNN","Republican" +3,1,6427,"tess",1,1,50,2,50,97,"CNN","Republican" +3,1,6428,"tess",2,1,96,2,96,95,"CNN","Neither" +3,1,6452,"tess",2,1,14,3,14,96,"CNN","Republican" +3,1,6463,"tess",2,0,59,2,41,100,"CNN","Democrat" +3,1,6466,"tess",2,0,80,3,20,31,"CNN","Democrat" +3,1,6467,"tess",3,0,27,3,73,15,"CNN","Democrat" +3,1,6469,"tess",2,1,46,2,46,74,"CNN","Democrat" +3,1,6472,"tess",1,0,100,2,0,2,"CNN","Republican" +3,1,6496,"tess",3,1,70,3,70,70,"CNN","Democrat" +3,1,6501,"tess",4,1,50,2,50,99,"CNN","Neither" +3,1,6508,"tess",2,1,50,3,50,89,"CNN","Republican" +3,1,6513,"tess",3,0,90,2,10,10,"CNN","Republican" +3,1,6516,"tess",3,1,50,3,50,50,"CNN","Republican" +3,1,6524,"tess",2,1,100,3,100,100,"CNN","Democrat" +3,1,6540,"tess",4,1,100,2,100,0,"CNN","Democrat" +3,1,6545,"tess",4,0,20,2,80,9,"CNN","Democrat" +3,1,6547,"tess",3,1,80,3,80,10,"CNN","Republican" +3,1,6548,"tess",4,0,35,2,65,50,"CNN","Democrat" +3,1,6558,"tess",3,0,100,3,0,100,"CNN","Republican" +3,1,6561,"tess",2,1,63,2,63,69,"CNN","Democrat" +3,1,6562,"tess",1,0,91,3,9,0,"CNN","Republican" +3,1,6565,"tess",3,0,50,3,50,50,"CNN","Democrat" +3,1,6568,"tess",2,0,60,2,40,34,"CNN","Democrat" +3,1,6581,"tess",1,1,90,2,90,88,"CNN","Democrat" +3,1,6587,"tess",1,1,50,3,50,50,"CNN","Republican" +3,1,6588,"tess",2,0,80,2,20,50,"CNN","Democrat" +3,1,6589,"tess",3,0,44,2,56,38,"CNN","Democrat" +3,1,6590,"tess",3,1,71,2,71,70,"CNN","Democrat" +3,1,6592,"tess",3,1,65,2,65,75,"CNN","Democrat" +3,1,6593,"tess",2,1,10,2,10,50,"CNN","Democrat" +3,1,6596,"tess",2,1,5,3,5,2,"CNN","Democrat" +3,1,6599,"tess",1,0,40,2,60,40,"CNN","Democrat" +3,1,6600,"tess",1,0,77,2,23,40,"CNN","Republican" +3,1,6608,"tess",1,1,80,3,80,70,"CNN","Republican" +3,1,6610,"tess",1,0,70,2,30,30,"CNN","Democrat" +3,1,6611,"tess",1,0,20,3,80,58,"CNN","Republican" +3,1,6617,"tess",2,0,78,3,22,14,"CNN","Democrat" +3,1,6625,"tess",1,0,93,3,7,15,"CNN","Democrat" +3,1,6626,"tess",3,0,19,3,81,50,"CNN","Republican" +3,1,6636,"tess",4,0,51,2,49,49,"CNN","Republican" +3,1,6646,"tess",2,0,90,2,10,30,"CNN","Republican" +3,1,6652,"tess",1,1,90,2,90,50,"CNN","Republican" +3,1,6656,"tess",3,0,99,3,1,99,"CNN","Democrat" +3,1,6661,"tess",2,1,51,2,51,50,"CNN","Republican" +3,1,6670,"tess",2,1,85,3,85,70,"CNN","Democrat" +3,1,6674,"tess",4,0,60,2,40,20,"CNN","Democrat" +3,1,6676,"tess",4,0,79,2,21,14,"CNN","Democrat" +3,1,6680,"tess",1,1,95,2,95,10,"CNN","Republican" +3,1,6682,"tess",3,1,100,3,100,100,"CNN","Democrat" +3,1,6683,"tess",2,0,0,2,100,0,"CNN","Democrat" +3,1,6696,"tess",3,1,81,3,81,70,"CNN","Democrat" +3,1,6703,"tess",4,0,90,2,10,25,"CNN","Democrat" +3,1,6712,"tess",2,0,80,2,20,79,"CNN","Democrat" +3,1,6725,"tess",1,0,98,2,2,0,"CNN","Republican" +3,1,6733,"tess",1,0,100,2,0,11,"CNN","Republican" +3,1,6741,"tess",3,0,80,3,20,19,"CNN","Democrat" +3,1,6742,"tess",2,1,20,2,20,70,"CNN","Democrat" +3,1,6748,"tess",1,1,75,3,75,75,"CNN","Democrat" +3,1,6760,"tess",1,1,40,2,40,25,"CNN","Democrat" +3,1,6777,"tess",2,0,96,3,4,1,"CNN","Democrat" +3,1,6780,"tess",1,0,48,3,52,83,"CNN","Democrat" +3,1,6782,"tess",3,0,22,3,78,83,"CNN","Republican" +3,1,6788,"tess",1,1,94,3,94,93,"CNN","Democrat" +3,1,6791,"tess",1,0,50,3,50,50,"CNN","Democrat" +3,1,6795,"tess",1,0,60,3,40,80,"CNN","Democrat" +3,1,6802,"tess",2,0,67,3,33,60,"CNN","Democrat" +3,1,6803,"tess",1,1,48,3,48,0,"CNN","Democrat" +3,1,6804,"tess",3,0,79,2,21,30,"CNN","Republican" +3,1,6805,"tess",2,1,29,2,29,20,"CNN","Republican" +3,1,6820,"tess",1,0,90,2,10,30,"CNN","Republican" +3,1,6831,"tess",3,1,70,3,70,60,"CNN","Republican" +3,1,6833,"tess",1,1,95,2,95,99,"CNN","Neither" +3,1,6835,"tess",2,1,65,2,65,91,"CNN","Democrat" +3,1,6838,"tess",3,1,80,2,80,20,"CNN","Democrat" +3,1,6844,"tess",4,0,42,2,58,48,"CNN","Democrat" +3,1,6864,"tess",1,1,94,2,94,4,"CNN","Republican" +3,1,6868,"tess",4,0,59,2,41,55,"CNN","Republican" +3,1,6881,"tess",4,0,50,2,50,97,"CNN","Democrat" +3,1,6882,"tess",3,0,100,3,0,100,"CNN","Democrat" +3,1,6891,"tess",1,1,49,3,49,36,"CNN","Democrat" +3,1,6893,"tess",1,1,13,2,13,10,"CNN","Republican" +3,1,6908,"tess",3,0,32,2,68,50,"CNN","Democrat" +3,1,6910,"tess",4,1,94,2,94,91,"CNN","Democrat" +3,1,6913,"tess",1,0,21,2,79,52,"CNN","Democrat" +3,1,6915,"tess",2,0,70,3,30,80,"CNN","Republican" +3,1,6927,"tess",2,1,73,2,73,61,"CNN","Democrat" +3,1,6930,"tess",1,1,24,2,24,33,"CNN","Republican" +3,1,6932,"tess",4,0,84,2,16,26,"CNN","Democrat" +3,1,6935,"tess",3,1,44,3,44,95,"CNN","Democrat" +3,1,6963,"tess",3,0,62,2,38,48,"CNN","Democrat" +3,1,7011,"tess",4,1,80,2,80,80,"CNN","Democrat" +3,1,7027,"tess",3,0,74,2,26,26,"CNN","Republican" +3,1,7054,"tess",4,1,96,2,96,95,"CNN","Democrat" +3,1,7060,"tess",2,1,89,2,89,90,"CNN","Democrat" +3,1,7066,"tess",1,0,55,3,45,45,"CNN","Democrat" +3,1,7083,"tess",1,0,0,2,100,0,"CNN","Democrat" +3,1,7088,"tess",4,0,45,2,55,58,"CNN","Democrat" +3,1,7094,"tess",1,1,48,2,48,9,"CNN","Republican" +3,1,7124,"tess",2,0,100,3,0,48,"CNN","Democrat" +3,1,7127,"tess",1,0,3,3,97,0,"CNN","Democrat" +3,1,7140,"tess",2,0,85,2,15,26,"CNN","Republican" +3,1,7148,"tess",3,0,4,3,96,90,"CNN","Democrat" +3,1,7161,"tess",1,0,42,2,58,29,"CNN","Democrat" +3,1,7182,"tess",3,0,0,3,100,99,"CNN","Democrat" +3,1,7190,"tess",3,0,40,2,60,35,"CNN","Democrat" +3,1,7197,"tess",1,0,3,2,97,98,"CNN","Republican" +3,1,7210,"tess",4,1,99,2,99,5,"CNN","Neither" +3,1,7222,"tess",2,0,83,3,17,92,"CNN","Democrat" +3,1,7223,"tess",2,0,27,3,73,19,"CNN","Democrat" +3,1,7226,"tess",2,0,86,3,14,55,"CNN","Democrat" +3,1,7228,"tess",2,1,13,3,13,50,"CNN","Democrat" +3,1,7230,"tess",1,0,67,3,33,52,"CNN","Republican" +3,1,7231,"tess",3,0,90,2,10,10,"CNN","Democrat" +3,1,7239,"tess",3,1,50,3,50,50,"CNN","Republican" +3,1,7252,"tess",2,1,100,3,100,100,"CNN","Republican" +3,1,7253,"tess",1,0,71,3,29,44,"CNN","Neither" +3,1,7273,"tess",3,1,68,3,68,44,"CNN","Democrat" +3,1,7289,"tess",4,0,83,2,17,29,"CNN","Democrat" +3,1,7311,"tess",3,1,86,3,86,51,"CNN","Republican" +3,1,7315,"tess",3,0,50,2,50,14,"CNN","Neither" +3,1,7325,"tess",1,1,90,2,90,90,"CNN","Republican" +3,1,7341,"tess",3,1,1,2,1,99,"CNN","Democrat" +3,1,7353,"tess",2,0,41,3,59,38,"CNN","Democrat" +3,1,7356,"tess",1,1,20,3,20,69,"CNN","Democrat" +3,1,7360,"tess",3,1,10,2,10,10,"CNN","Democrat" +3,1,7370,"tess",2,1,99,3,99,0,"CNN","Republican" +3,1,7373,"tess",4,0,81,2,19,13,"CNN","Democrat" +3,1,7388,"tess",2,0,60,3,40,50,"CNN","Democrat" +3,1,7418,"tess",1,0,59,2,41,24,"CNN","Democrat" +3,1,7425,"tess",4,1,48,2,48,63,"CNN","Democrat" +3,1,7432,"tess",2,1,20,2,20,20,"CNN","Democrat" +3,1,7437,"tess",3,0,63,3,37,65,"CNN","Democrat" +3,1,7446,"tess",1,0,90,3,10,20,"CNN","Democrat" +3,1,7448,"tess",3,1,1,3,1,1,"CNN","Democrat" +3,1,7477,"tess",1,1,4,2,4,5,"CNN","Republican" +3,1,7497,"tess",4,1,100,2,100,5,"CNN","Democrat" +3,1,7501,"tess",2,0,75,3,25,31,"CNN","Republican" +3,1,7524,"tess",3,1,90,3,90,100,"CNN","Democrat" +3,1,7528,"tess",3,0,80,2,20,11,"CNN","Republican" +3,1,7534,"tess",1,0,60,2,40,60,"CNN","Democrat" +3,1,7539,"tess",3,1,24,3,24,90,"CNN","Republican" +3,1,7546,"tess",1,0,97,2,3,10,"CNN","Republican" +3,1,7556,"tess",3,1,91,2,91,50,"CNN","Democrat" +3,1,7563,"tess",4,0,21,2,79,20,"CNN","Democrat" +3,1,7564,"tess",3,0,98,3,2,44,"CNN","Democrat" +3,1,7584,"tess",4,0,20,2,80,90,"CNN","Republican" +3,1,7593,"tess",4,0,70,2,30,14,"CNN","Republican" +3,1,7594,"tess",3,0,40,2,60,40,"CNN","Democrat" +3,1,7600,"tess",3,0,70,3,30,33,"CNN","Republican" +3,1,7603,"tess",4,1,13,2,13,8,"CNN","Democrat" +3,1,7605,"tess",2,0,100,2,0,6,"CNN","Republican" +3,1,7607,"tess",3,1,59,2,59,40,"CNN","Neither" +3,1,7608,"tess",4,0,80,2,20,25,"CNN","Republican" +3,1,7615,"tess",3,1,70,2,70,42,"CNN","Republican" +3,1,7623,"tess",2,1,74,3,74,80,"CNN","Republican" +3,1,7631,"tess",1,1,99,2,99,0,"CNN","Democrat" +3,1,7659,"tess",4,0,50,2,50,1,"CNN","Republican" +3,1,7662,"tess",1,1,85,2,85,90,"CNN","Democrat" +3,1,7668,"tess",2,0,11,3,89,60,"CNN","Republican" +3,1,7694,"tess",3,1,30,3,30,97,"CNN","Republican" +3,1,7696,"tess",3,0,70,3,30,30,"CNN","Democrat" +3,1,7699,"tess",4,0,0,2,100,6,"CNN","Democrat" +3,1,7711,"tess",3,0,63,2,37,69,"CNN","Republican" +3,1,7717,"tess",3,1,69,3,69,70,"CNN","Democrat" +3,1,7722,"tess",4,1,82,2,82,41,"CNN","Republican" +3,1,7759,"tess",3,1,80,2,80,75,"CNN","Democrat" +3,1,7778,"tess",2,1,62,2,62,0,"CNN","Democrat" +3,1,7792,"tess",1,1,80,2,80,80,"CNN","Neither" +3,1,7799,"tess",3,1,91,3,91,95,"CNN","Democrat" +3,1,7820,"tess",3,1,58,3,58,9,"CNN","Republican" +3,1,7826,"tess",3,0,79,2,21,31,"CNN","Republican" +3,1,7837,"tess",2,1,83,2,83,100,"CNN","Democrat" +3,1,7844,"tess",2,1,85,3,85,10,"CNN","Republican" +3,1,7854,"tess",2,0,53,2,47,5,"CNN","Democrat" +3,1,7861,"tess",2,0,100,3,0,0,"CNN","Republican" +3,1,7864,"tess",2,1,38,3,38,39,"CNN","Republican" +3,1,7872,"tess",1,0,71,3,29,31,"CNN","Democrat" +3,1,7884,"tess",3,0,10,3,90,90,"CNN","Democrat" +3,1,7891,"tess",2,1,14,3,14,33,"CNN","Republican" +3,1,7908,"tess",2,0,99,2,1,1,"CNN","Republican" +3,1,7910,"tess",2,1,26,2,26,19,"CNN","Democrat" +3,1,7918,"tess",2,1,75,2,75,75,"CNN","Democrat" +3,1,7922,"tess",3,1,79,2,79,81,"CNN","Democrat" +3,1,7930,"tess",1,1,75,3,75,51,"CNN","Republican" +3,1,7942,"tess",3,1,39,2,39,35,"CNN","Republican" +3,1,7959,"tess",4,1,98,2,98,83,"CNN","Democrat" +3,1,7960,"tess",2,0,80,3,20,27,"CNN","Democrat" +3,1,7983,"tess",2,0,85,2,15,16,"CNN","Democrat" +3,1,7991,"tess",1,0,40,2,60,60,"CNN","Republican" +3,1,7998,"tess",2,1,70,3,70,25,"CNN","Democrat" +3,1,8001,"tess",2,1,70,3,70,81,"CNN","Republican" +3,1,8011,"tess",2,0,80,2,20,29,"CNN","Republican" +3,1,8019,"tess",2,0,28,2,72,80,"CNN","Republican" +3,1,8041,"tess",1,0,59,3,41,50,"CNN","Republican" +3,1,8049,"tess",3,1,98,2,98,100,"CNN","Republican" +3,1,8050,"tess",2,0,0,2,100,70,"CNN","Neither" +3,1,8062,"tess",2,1,50,3,50,100,"CNN","Democrat" +3,1,8063,"tess",1,1,94,2,94,78,"CNN","Republican" +3,1,8064,"tess",1,0,0,3,100,90,"CNN","Democrat" +3,1,8078,"tess",3,0,61,2,39,40,"CNN","Republican" +3,1,8079,"tess",3,1,29,3,29,81,"CNN","Democrat" +3,1,8081,"tess",4,1,39,2,39,59,"CNN","Democrat" +3,1,8095,"tess",1,0,99,2,1,0,"CNN","Democrat" +3,1,8096,"tess",2,0,99,2,1,3,"CNN","Republican" +3,1,8097,"tess",1,0,27,2,73,43,"CNN","Republican" +3,1,8101,"tess",3,1,74,2,74,65,"CNN","Republican" +3,1,8104,"tess",3,1,56,3,56,7,"CNN","Republican" +3,1,8127,"tess",2,0,46,2,54,33,"CNN","Republican" +3,1,8191,"tess",1,0,60,2,40,20,"CNN","Democrat" +3,1,8196,"tess",1,1,69,2,69,50,"CNN","Democrat" +3,1,8197,"tess",2,1,10,2,10,80,"CNN","Republican" +3,1,8202,"tess",3,0,53,3,47,87,"CNN","Republican" +3,1,8218,"tess",3,0,85,2,15,16,"CNN","Democrat" +3,1,8221,"tess",2,0,93,2,7,28,"CNN","Democrat" +3,1,8244,"tess",1,0,50,3,50,20,"CNN","Republican" +3,1,8247,"tess",3,0,10,2,90,81,"CNN","Republican" +3,1,8253,"tess",1,0,54,3,46,47,"CNN","Democrat" +3,1,8265,"tess",1,0,0,3,100,50,"CNN","Republican" +3,1,8272,"tess",3,1,74,3,74,54,"CNN","Democrat" +3,1,8274,"tess",1,1,1,3,1,50,"CNN","Republican" +3,1,8276,"tess",2,0,80,3,20,81,"CNN","Republican" +3,1,8280,"tess",2,1,61,3,61,50,"CNN","Democrat" +3,1,8287,"tess",3,1,95,3,95,90,"CNN","Democrat" +3,1,8317,"tess",1,0,99,3,1,98,"CNN","Republican" +3,1,8324,"tess",1,1,85,2,85,93,"CNN","Republican" +3,1,8337,"tess",1,0,88,2,12,0,"CNN","Republican" +3,1,8344,"tess",2,0,27,3,73,89,"CNN","Democrat" +3,1,8347,"tess",1,1,24,3,24,51,"CNN","Republican" +3,1,8361,"tess",3,1,40,2,40,51,"CNN","Republican" +3,1,8371,"tess",4,0,58,2,42,8,"CNN","Republican" +3,1,8374,"tess",2,0,75,2,25,1,"CNN","Republican" +3,1,8397,"tess",2,0,10,2,90,90,"CNN","Republican" +3,1,8400,"tess",3,1,99,2,99,8,"CNN","Democrat" +3,1,8406,"tess",3,0,80,2,20,15,"CNN","Democrat" +3,1,8425,"tess",3,0,91,2,9,9,"CNN","Democrat" +3,1,8432,"tess",3,1,96,3,96,74,"CNN","Democrat" +3,1,8449,"tess",1,1,NA,2,NA,100,"CNN","Democrat" +3,1,8452,"tess",3,0,90,2,10,2,"CNN","Republican" +3,1,8466,"tess",3,1,71,2,71,20,"CNN","Democrat" +3,1,8476,"tess",1,0,50,3,50,55,"CNN","Democrat" +3,1,8489,"tess",1,0,3,2,97,10,"CNN","Democrat" +3,1,8507,"tess",3,0,50,2,50,20,"CNN","Democrat" +3,1,8522,"tess",2,0,80,2,20,20,"CNN","Democrat" +3,1,8544,"tess",4,1,76,2,76,97,"CNN","Democrat" +3,1,8545,"tess",2,0,79,3,21,43,"CNN","Republican" +3,1,8550,"tess",3,1,100,3,100,98,"CNN","Democrat" +3,1,8558,"tess",2,0,51,2,49,4,"CNN","Republican" +3,1,8568,"tess",1,1,56,3,56,62,"CNN","Democrat" +3,1,8573,"tess",2,0,51,3,49,49,"CNN","Democrat" +3,1,8577,"tess",4,1,88,2,88,51,"CNN","Democrat" +3,1,8579,"tess",4,0,10,2,90,50,"CNN","Democrat" +3,1,8583,"tess",1,1,6,2,6,7,"CNN","Democrat" +3,1,8590,"tess",2,1,93,2,93,2,"CNN","Republican" +3,1,8618,"tess",1,0,33,2,67,11,"CNN","Republican" +3,1,8638,"tess",2,1,70,2,70,70,"CNN","Neither" +3,1,8680,"tess",3,1,79,2,79,20,"CNN","Republican" +3,1,8685,"tess",3,0,41,2,59,50,"CNN","Democrat" +3,1,8710,"tess",4,1,75,2,75,86,"CNN","Democrat" +3,1,8713,"tess",4,0,0,2,100,100,"CNN","Republican" +3,1,8714,"tess",4,1,80,2,80,70,"CNN","Democrat" +3,1,8717,"tess",3,1,36,3,36,90,"CNN","Republican" +3,1,8731,"tess",3,0,82,2,18,4,"CNN","Democrat" +3,1,8755,"tess",4,1,77,2,77,57,"CNN","Democrat" +3,1,8790,"tess",2,1,85,3,85,85,"CNN","Republican" +3,1,8797,"tess",4,0,39,2,61,19,"CNN","Republican" +3,1,8806,"tess",1,0,82,2,18,16,"CNN","Neither" +3,1,8810,"tess",1,0,10,3,90,90,"CNN","Democrat" +3,1,8814,"tess",1,0,79,3,21,60,"CNN","Democrat" +3,1,8816,"tess",2,0,30,3,70,60,"CNN","Democrat" +3,1,8826,"tess",1,1,64,2,64,95,"CNN","Republican" +3,1,8836,"tess",1,1,14,2,14,61,"CNN","Democrat" +3,1,8866,"tess",3,1,70,3,70,70,"CNN","Democrat" +3,1,8881,"tess",3,1,91,3,91,50,"CNN","Democrat" +3,1,8888,"tess",2,0,92,3,8,47,"CNN","Republican" +3,1,8890,"tess",2,0,6,3,94,0,"CNN","Republican" +3,1,8903,"tess",1,1,90,2,90,85,"CNN","Republican" +3,1,8932,"tess",2,0,10,2,90,41,"CNN","Democrat" +3,1,8933,"tess",2,0,69,3,31,0,"CNN","Republican" +3,1,8939,"tess",1,1,21,2,21,10,"CNN","Democrat" +3,1,8953,"tess",1,0,43,3,57,46,"CNN","Republican" +3,1,8973,"tess",2,1,5,3,5,5,"CNN","Republican" +3,1,8988,"tess",3,0,70,3,30,70,"CNN","Republican" +3,1,8990,"tess",2,0,0,2,100,0,"CNN","Republican" +3,1,8999,"tess",4,0,5,2,95,96,"CNN","Democrat" +3,1,9007,"tess",1,0,41,3,59,50,"CNN","Democrat" +3,1,9024,"tess",3,0,80,3,20,20,"CNN","Democrat" +3,1,9029,"tess",1,1,0,2,0,3,"CNN","Neither" +3,1,9068,"tess",2,1,61,3,61,55,"CNN","Democrat" +3,1,9083,"tess",1,1,31,2,31,36,"CNN","Neither" +3,1,9084,"tess",4,1,69,2,69,90,"CNN","Democrat" +3,1,9109,"tess",3,0,73,2,27,23,"CNN","Democrat" +3,1,9120,"tess",1,1,92,3,92,94,"CNN","Democrat" +3,1,9146,"tess",2,0,94,2,6,10,"CNN","Republican" +3,1,9149,"tess",4,0,80,2,20,41,"CNN","Democrat" +3,1,9150,"tess",2,0,100,2,0,11,"CNN","Republican" +3,1,9153,"tess",3,0,50,2,50,2,"CNN","Democrat" +3,1,9154,"tess",2,0,91,3,9,35,"CNN","Democrat" +3,1,9169,"tess",4,0,21,2,79,80,"CNN","Republican" +3,1,9211,"tess",1,1,100,3,100,98,"CNN","Republican" +3,1,9235,"tess",1,0,63,3,37,30,"CNN","Democrat" +3,1,9239,"tess",2,0,89,2,11,9,"CNN","Democrat" +3,1,9267,"tess",1,1,84,3,84,51,"CNN","Democrat" +3,1,9281,"tess",3,1,33,3,33,62,"CNN","Republican" +3,1,9284,"tess",3,1,61,2,61,30,"CNN","Republican" +3,1,9295,"tess",2,1,99,3,99,90,"CNN","Republican" +3,1,9298,"tess",1,0,71,2,29,10,"CNN","Democrat" +3,1,9301,"tess",1,1,74,3,74,40,"CNN","Democrat" +3,1,9302,"tess",3,0,70,2,30,20,"CNN","Democrat" +3,1,9314,"tess",3,1,11,3,11,82,"CNN","Republican" +3,1,9316,"tess",4,1,73,2,73,56,"CNN","Republican" +3,1,9332,"tess",3,0,80,2,20,10,"CNN","Democrat" +3,1,9340,"tess",3,1,86,3,86,90,"CNN","Democrat" +3,1,9346,"tess",3,1,70,3,70,60,"CNN","Democrat" +3,1,9352,"tess",3,0,58,2,42,44,"CNN","Democrat" +3,1,9360,"tess",3,0,79,3,21,70,"CNN","Republican" +3,1,9366,"tess",3,0,66,2,34,81,"CNN","Republican" +3,1,9419,"tess",2,1,50,2,50,49,"CNN","Democrat" +3,1,9420,"tess",1,0,93,2,7,0,"CNN","Democrat" +3,1,9422,"tess",2,1,50,3,50,100,"CNN","Democrat" +3,1,9424,"tess",4,0,9,2,91,0,"CNN","Democrat" +3,1,9431,"tess",2,0,40,2,60,20,"CNN","Democrat" +3,1,9435,"tess",3,0,53,3,47,51,"CNN","Democrat" +3,1,9458,"tess",4,1,85,2,85,81,"CNN","Republican" +3,1,9465,"tess",2,0,21,3,79,79,"CNN","Republican" +3,1,9475,"tess",4,1,50,2,50,60,"CNN","Republican" +3,1,9493,"tess",1,1,100,2,100,1,"CNN","Democrat" +3,1,9510,"tess",2,0,35,2,65,32,"CNN","Democrat" +3,1,9532,"tess",4,0,98,2,2,98,"CNN","Republican" +3,1,9536,"tess",2,1,29,3,29,89,"CNN","Democrat" +3,1,9551,"tess",1,1,42,3,42,63,"CNN","Democrat" +3,1,9578,"tess",2,0,94,2,6,0,"CNN","Republican" +3,1,9627,"tess",2,0,0,3,100,100,"CNN","Democrat" +3,1,9647,"tess",1,1,97,3,97,92,"CNN","Republican" +3,1,9650,"tess",2,0,90,2,10,12,"CNN","Republican" +3,1,9684,"tess",1,1,90,2,90,3,"CNN","Democrat" +3,1,9686,"tess",3,0,84,3,16,10,"CNN","Democrat" +3,1,9689,"tess",2,0,50,2,50,50,"CNN","Democrat" +3,1,9692,"tess",3,1,63,2,63,47,"CNN","Democrat" +3,1,9693,"tess",2,0,74,2,26,11,"CNN","Neither" +3,1,9711,"tess",4,0,39,2,61,70,"CNN","Neither" +3,1,9716,"tess",1,1,50,2,50,50,"CNN","Democrat" +3,1,9717,"tess",1,0,20,2,80,60,"CNN","Neither" +3,1,9731,"tess",3,1,79,2,79,38,"CNN","Democrat" +3,1,9744,"turk",3,0,99,2,1,1,"CNN","Democrat" +3,1,9752,"turk",3,0,5,5,95,95,"CNN","Democrat" +3,1,9753,"turk",2,0,55,4,45,55,"CNN","Democrat" +3,1,9756,"turk",2,0,1,3,99,99,"CNN","Democrat" +3,1,9763,"turk",3,0,35,4,65,35,"CNN","Neither" +3,1,9771,"turk",4,0,95,5,5,50,"CNN","Democrat" +3,1,9774,"turk",3,0,20,5,80,90,"CNN","Democrat" +3,1,9777,"turk",3,0,60,3,40,60,"CNN","Democrat" +3,1,9778,"turk",3,0,40,2,60,45,"CNN","Neither" +3,1,9779,"turk",2,0,10,3,90,99,"CNN","Democrat" +3,1,9782,"turk",4,0,30,3,70,90,"CNN","Republican" +3,1,9783,"turk",2,0,60,3,40,60,"CNN","Neither" +3,1,9785,"turk",3,0,95,4,5,30,"CNN","Democrat" +3,1,9788,"turk",2,0,87,5,13,35,"CNN","Democrat" +3,1,9791,"turk",2,0,1,3,99,99,"CNN","Democrat" +3,1,9796,"turk",3,0,45,5,55,60,"CNN","Democrat" +3,1,9798,"turk",3,0,30,5,70,70,"CNN","Democrat" +3,1,9802,"turk",3,0,90,4,10,10,"CNN","Democrat" +3,1,9805,"turk",2,0,70,5,30,30,"CNN","Democrat" +3,1,9808,"turk",2,0,20,5,80,80,"CNN","Neither" +3,1,9809,"turk",2,0,35,4,65,70,"CNN","Neither" +3,1,9810,"turk",3,0,1,3,99,99,"CNN","Democrat" +3,1,9811,"turk",3,0,75,3,25,50,"CNN","Republican" +3,1,9813,"turk",3,0,50,2,50,80,"CNN","Republican" +3,1,9814,"turk",4,0,50,3,50,50,"CNN","Democrat" +3,1,9815,"turk",4,0,45,3,55,55,"CNN","Democrat" +3,1,9816,"turk",4,0,50,2,50,50,"CNN","Democrat" +3,1,9817,"turk",3,0,1,2,99,99,"CNN","Republican" +3,1,9818,"turk",4,0,1,3,99,99,"CNN","Republican" +3,1,9820,"turk",3,0,99,3,1,1,"CNN","Republican" +3,1,9821,"turk",2,0,45,4,55,70,"CNN","Democrat" +3,1,9823,"turk",3,0,10,5,90,85,"CNN","Neither" +3,1,9828,"turk",3,0,65,4,35,30,"CNN","Democrat" +3,1,9829,"turk",3,0,90,2,10,5,"CNN","Republican" +3,1,9831,"turk",3,0,40,3,60,75,"CNN","Democrat" +3,1,9844,"turk",2,0,50,3,50,99,"CNN","Democrat" +3,1,9845,"turk",2,0,80,5,20,40,"CNN","Neither" +3,1,9846,"turk",2,0,50,2,50,50,"CNN","Democrat" +3,1,9847,"turk",2,0,1,4,99,1,"CNN","Republican" +3,1,9849,"turk",3,0,0,4,100,99,"CNN","Republican" +3,1,9857,"turk",2,0,1,4,99,99,"CNN","Democrat" +3,1,9858,"turk",4,0,0,4,100,100,"CNN","Republican" +3,1,9859,"turk",4,0,65,3,35,40,"CNN","Democrat" +3,1,9866,"turk",2,0,70,3,30,30,"CNN","Republican" +3,1,9867,"turk",3,0,99,5,1,1,"CNN","Democrat" +3,1,9868,"turk",4,0,15,5,85,75,"CNN","Democrat" +3,1,9872,"turk",4,0,1,4,99,99,"CNN","Republican" +3,1,9875,"turk",2,0,25,3,75,60,"CNN","Democrat" +3,1,9876,"turk",3,0,20,5,80,99,"CNN","Democrat" +3,1,9879,"turk",3,0,40,3,60,70,"CNN","Democrat" +3,1,9881,"turk",2,0,98,4,2,2,"CNN","Democrat" +3,1,9882,"turk",4,0,90,3,10,50,"CNN","Democrat" +3,1,9883,"turk",3,0,1,3,99,99,"CNN","Republican" +3,1,9885,"turk",2,0,100,2,0,0,"CNN","Democrat" +3,1,9891,"turk",2,0,1,5,99,99,"CNN","Democrat" +3,1,9894,"turk",4,0,70,4,30,50,"CNN","Democrat" +3,1,9895,"turk",4,0,99,4,1,20,"CNN","Neither" +3,1,9897,"turk",4,0,65,3,35,35,"CNN","Democrat" +3,1,9899,"turk",3,0,99,5,1,1,"CNN","Democrat" +3,1,9905,"turk",4,0,1,5,99,99,"CNN","Republican" +3,1,9907,"turk",4,0,70,3,30,50,"CNN","Democrat" +3,1,9908,"turk",3,0,40,4,60,70,"CNN","Democrat" +3,1,9909,"turk",4,0,20,2,80,75,"CNN","Neither" +3,1,9913,"turk",2,0,30,2,70,99,"CNN","Neither" +3,1,9915,"turk",2,0,1,5,99,99,"CNN","Democrat" +3,1,9918,"turk",3,0,25,4,75,50,"CNN","Democrat" +3,1,9920,"turk",2,0,99,2,1,1,"CNN","Republican" +3,1,9921,"turk",2,0,99,5,1,99,"CNN","Democrat" +3,1,9928,"turk",3,0,50,5,50,90,"CNN","Democrat" +3,1,9931,"turk",3,0,50,4,50,50,"CNN","Neither" +3,1,9936,"turk",2,0,70,3,30,1,"CNN","Republican" +3,1,9938,"turk",3,0,50,3,50,75,"CNN","Democrat" +3,1,9939,"turk",4,0,99,3,1,25,"CNN","Republican" +3,1,9943,"turk",2,0,25,4,75,90,"CNN","Republican" +3,1,9944,"turk",2,0,5,5,95,95,"CNN","Democrat" +3,1,9946,"turk",2,0,1,3,99,99,"CNN","Democrat" +3,1,9948,"turk",4,0,10,5,90,80,"CNN","Republican" +3,1,9949,"turk",2,0,68,5,32,35,"CNN","Neither" +3,1,9952,"turk",4,0,50,2,50,1,"CNN","Democrat" +3,1,9954,"turk",3,0,5,5,95,95,"CNN","Democrat" +3,1,9956,"turk",2,0,50,3,50,55,"CNN","Democrat" +3,1,9957,"turk",2,0,50,4,50,50,"CNN","Republican" +3,1,9958,"turk",3,0,15,4,85,85,"CNN","Republican" +3,1,9961,"turk",2,0,99,4,1,1,"CNN","Republican" +3,1,9963,"turk",4,0,25,3,75,50,"CNN","Republican" +3,1,9966,"turk",4,0,99,5,1,1,"CNN","Democrat" +3,1,9967,"turk",3,0,5,4,95,99,"CNN","Neither" +3,1,9968,"turk",2,0,99,2,1,1,"CNN","Democrat" +3,1,9969,"turk",2,0,1,4,99,99,"CNN","Democrat" +3,1,9970,"turk",4,0,0,4,100,100,"CNN","Republican" +3,1,9972,"turk",2,0,1,3,99,99,"CNN","Democrat" +3,1,9974,"turk",3,0,75,4,25,45,"CNN","Democrat" +3,1,9976,"turk",4,0,99,2,1,1,"CNN","Republican" +3,1,9978,"turk",3,0,70,2,30,1,"CNN","Republican" +3,1,9987,"turk",3,0,70,3,30,35,"CNN","Democrat" +3,1,9990,"turk",2,0,67,5,33,1,"CNN","Democrat" +3,1,10000,"turk",3,0,10,2,90,95,"CNN","Democrat" +3,1,10003,"turk",3,0,50,5,50,70,"CNN","Democrat" +3,1,10010,"turk",2,0,80,3,20,70,"CNN","Democrat" +3,1,10012,"turk",2,0,30,2,70,31,"CNN","Neither" +3,1,10015,"turk",4,0,25,4,75,75,"CNN","Neither" +3,1,10016,"turk",3,0,1,2,99,99,"CNN","Neither" +3,1,10018,"turk",3,0,0,4,100,100,"CNN","Republican" +3,1,10019,"turk",4,0,99,2,1,1,"CNN","Neither" +3,1,10021,"turk",4,0,20,5,80,80,"CNN","Democrat" +3,1,10022,"turk",2,0,20,2,80,25,"CNN","Neither" +3,1,10024,"turk",3,0,40,3,60,51,"CNN","Republican" +3,1,10025,"turk",3,0,85,5,15,20,"CNN","Democrat" +3,1,10026,"turk",3,0,1,4,99,99,"CNN","Neither" +3,1,10029,"turk",3,0,50,4,50,75,"CNN","Democrat" +3,1,10031,"turk",3,0,1,4,99,99,"CNN","Neither" +3,1,10032,"turk",3,0,99,2,1,50,"CNN","Democrat" +3,1,10033,"turk",3,0,50,5,50,100,"CNN","Neither" +3,1,10036,"turk",2,0,1,3,99,99,"CNN","Republican" +3,1,10037,"turk",4,0,50,2,50,20,"CNN","Democrat" +3,1,10039,"turk",3,0,55,4,45,50,"CNN","Democrat" +3,1,10045,"turk",3,0,75,3,25,55,"CNN","Neither" +3,1,10047,"turk",4,0,60,5,40,60,"CNN","Democrat" +3,1,10051,"turk",2,0,70,5,30,33,"CNN","Democrat" +3,1,10052,"turk",3,0,100,4,0,0,"CNN","Democrat" +3,1,10054,"turk",4,0,99,4,1,99,"CNN","Democrat" +3,1,10061,"turk",2,0,33,3,67,55,"CNN","Democrat" +3,1,10063,"turk",2,0,1,5,99,99,"CNN","Republican" +3,1,10069,"turk",4,0,75,3,25,25,"CNN","Republican" +3,1,10071,"turk",2,0,0,2,100,50,"CNN","Republican" +3,1,10073,"turk",4,0,99,5,1,1,"CNN","Neither" +3,1,10080,"turk",4,0,55,5,45,40,"CNN","Republican" +3,1,10081,"turk",3,0,5,4,95,90,"CNN","Democrat" +3,1,10083,"turk",4,0,1,4,99,50,"CNN","Republican" +3,1,10087,"turk",4,0,71,3,29,36,"CNN","Neither" +3,1,10089,"turk",2,0,1,5,99,99,"CNN","Neither" +3,1,10092,"turk",3,0,50,2,50,99,"CNN","Neither" +3,1,10093,"turk",2,0,1,4,99,99,"CNN","Democrat" +3,1,10094,"turk",3,0,1,2,99,1,"CNN","Democrat" +3,1,10097,"turk",4,0,1,5,99,99,"CNN","Democrat" +3,1,10100,"turk",3,0,65,5,35,25,"CNN","Democrat" +3,1,10101,"turk",4,0,1,4,99,99,"CNN","Democrat" +3,1,10106,"turk",2,0,20,3,80,95,"CNN","Democrat" +3,1,10108,"turk",3,0,50,3,50,70,"CNN","Democrat" +3,1,10109,"turk",4,0,1,4,99,99,"CNN","Democrat" +3,1,10110,"turk",4,0,70,4,30,80,"CNN","Republican" +3,1,10111,"turk",4,0,1,3,99,75,"CNN","Neither" +3,1,10114,"turk",4,0,99,3,1,99,"CNN","Republican" +3,1,10115,"turk",3,0,51,3,49,49,"CNN","Republican" +3,1,10122,"turk",4,0,40,3,60,30,"CNN","Democrat" +3,1,10123,"turk",3,0,50,4,50,80,"CNN","Republican" +3,1,10125,"turk",2,0,30,5,70,70,"CNN","Democrat" +3,1,10126,"turk",2,0,87,5,13,20,"CNN","Republican" +3,1,10130,"turk",4,0,30,3,70,70,"CNN","Neither" +3,1,10132,"turk",2,0,22,5,78,78,"CNN","Republican" +3,1,10133,"turk",2,0,1,3,99,99,"CNN","Democrat" +3,1,10135,"turk",4,0,50,5,50,50,"CNN","Democrat" +3,1,10138,"turk",2,0,45,3,55,35,"CNN","Democrat" +3,1,10139,"turk",3,0,15,5,85,90,"CNN","Republican" +3,1,10141,"turk",4,0,1,4,99,99,"CNN","Republican" +3,1,10142,"turk",2,0,1,3,99,90,"CNN","Republican" +3,1,10149,"turk",2,0,50,5,50,99,"CNN","Republican" +3,1,10151,"turk",4,0,1,5,99,100,"CNN","Democrat" +3,1,10152,"turk",4,0,25,4,75,75,"CNN","Neither" +3,1,10153,"turk",3,0,50,4,50,50,"CNN","Republican" +3,1,10161,"turk",4,0,10,3,90,90,"CNN","Republican" +3,1,10164,"turk",4,0,50,4,50,50,"CNN","Democrat" +3,1,10165,"turk",2,0,99,3,1,99,"CNN","Democrat" +3,1,10169,"turk",3,0,60,2,40,20,"CNN","Republican" +3,1,10170,"turk",2,0,100,3,0,100,"CNN","Neither" +3,1,10174,"turk",2,0,0,4,100,100,"CNN","Democrat" +3,1,10175,"turk",4,0,99,2,1,10,"CNN","Neither" +3,1,10178,"turk",2,0,1,5,99,99,"CNN","Democrat" +3,1,10183,"turk",3,0,1,5,99,99,"CNN","" +3,1,10184,"turk",4,0,1,4,99,80,"CNN","Republican" +3,1,10187,"turk",4,0,95,3,5,5,"CNN","Democrat" +3,1,10190,"turk",4,0,5,3,95,12,"CNN","Democrat" +3,1,10192,"turk",3,0,1,4,99,50,"CNN","Republican" +3,1,10193,"turk",3,0,NA,5,NA,90,"CNN","Democrat" +3,1,10195,"turk",3,0,10,5,90,90,"CNN","Republican" +3,1,10199,"turk",3,0,5,4,95,95,"CNN","Republican" +3,1,10200,"turk",3,0,5,4,95,90,"CNN","Democrat" +3,1,10204,"turk",2,0,99,2,1,99,"CNN","Democrat" +3,1,10209,"turk",2,0,99,5,1,1,"CNN","Democrat" +3,1,10215,"turk",3,0,50,4,50,80,"CNN","Democrat" +3,1,10216,"turk",3,0,1,5,99,1,"CNN","Republican" +3,1,10218,"turk",2,0,1,5,99,99,"CNN","Democrat" +3,1,10222,"turk",4,0,1,2,99,99,"CNN","Neither" +3,1,10223,"turk",4,0,1,4,99,50,"CNN","Democrat" +3,1,10225,"turk",4,0,6,2,94,95,"CNN","Republican" +3,1,10232,"turk",2,0,99,5,1,99,"CNN","Democrat" +3,1,10235,"turk",3,0,75,2,25,50,"CNN","Republican" +3,1,10237,"turk",4,0,30,3,70,70,"CNN","Democrat" +3,1,10239,"turk",2,0,90,4,10,10,"CNN","Republican" +3,1,10241,"turk",2,0,70,5,30,45,"CNN","Democrat" +3,1,10242,"turk",2,0,99,2,1,20,"CNN","Republican" +3,1,10243,"turk",2,0,20,3,80,50,"CNN","Republican" +3,1,10245,"turk",2,0,99,5,1,1,"CNN","Neither" +3,1,10246,"turk",3,0,50,3,50,50,"CNN","Democrat" +3,1,10247,"turk",2,0,99,3,1,99,"CNN","Democrat" +3,1,10257,"turk",2,0,1,5,99,1,"CNN","Democrat" +3,1,10260,"turk",3,0,99,3,1,1,"CNN","Neither" +3,1,10261,"turk",3,0,99,4,1,99,"CNN","Neither" +3,1,10264,"turk",4,0,50,2,50,1,"CNN","Neither" +3,1,10268,"turk",2,0,75,2,25,50,"CNN","Democrat" +3,1,10270,"turk",3,0,99,2,1,1,"CNN","Republican" +3,1,10275,"turk",3,0,100,4,0,1,"CNN","Democrat" +3,1,10283,"turk",4,0,40,2,60,50,"CNN","Republican" +3,1,10284,"turk",4,0,50,2,50,1,"CNN","Democrat" +3,1,10289,"turk",4,0,1,4,99,99,"CNN","Republican" +3,1,10295,"turk",3,0,25,2,75,5,"CNN","Democrat" +3,1,10297,"turk",4,0,70,5,30,35,"CNN","Democrat" +3,1,10298,"turk",2,0,75,4,25,100,"CNN","Neither" +3,1,10299,"turk",3,0,0,2,100,100,"CNN","Republican" +3,1,10300,"turk",2,0,70,3,30,60,"CNN","Democrat" +3,1,10301,"turk",4,0,15,5,85,80,"CNN","Democrat" +3,1,10302,"turk",2,0,75,2,25,25,"CNN","Republican" +3,1,10303,"turk",2,0,45,4,55,70,"CNN","Democrat" +3,1,10309,"turk",4,0,20,4,80,80,"CNN","Republican" +3,1,10311,"turk",4,0,100,2,0,0,"CNN","Democrat" +3,1,10312,"turk",2,0,44,5,56,1,"CNN","Democrat" +3,1,10313,"turk",4,0,60,3,40,40,"CNN","Democrat" +3,1,10319,"turk",2,0,99,3,1,99,"CNN","Neither" +3,1,10322,"turk",4,0,1,5,99,99,"CNN","Republican" +3,1,10324,"turk",2,0,75,5,25,80,"CNN","Neither" +3,1,10327,"turk",3,0,15,5,85,11,"CNN","Democrat" +3,1,10328,"turk",4,0,50,4,50,50,"CNN","Neither" +3,1,10329,"turk",2,0,1,5,99,1,"CNN","Republican" +3,1,10330,"turk",3,0,20,3,80,75,"CNN","Democrat" +3,1,10332,"turk",3,0,99,4,1,1,"CNN","Democrat" +3,1,10334,"turk",3,0,1,4,99,99,"CNN","Neither" +3,1,10335,"turk",3,0,70,2,30,50,"CNN","Democrat" +3,1,10336,"turk",4,0,5,4,95,90,"CNN","Neither" +3,1,10345,"turk",4,0,99,4,1,99,"CNN","Republican" +3,1,10348,"turk",3,0,1,4,99,95,"CNN","Democrat" +3,1,10349,"turk",3,0,1,5,99,99,"CNN","Republican" +3,1,10355,"turk",2,0,30,5,70,70,"CNN","Neither" +3,1,10370,"turk",3,0,50,2,50,25,"CNN","Neither" +3,1,10371,"turk",2,0,1,5,99,99,"CNN","Democrat" +3,1,10372,"turk",2,0,75,2,25,25,"CNN","Neither" +3,1,10373,"turk",4,0,85,4,15,20,"CNN","Neither" +3,1,10378,"turk",4,0,0,5,100,100,"CNN","Neither" +3,1,10379,"turk",3,0,90,5,10,11,"CNN","Democrat" +3,1,10381,"turk",3,0,0,4,100,100,"CNN","Democrat" +3,1,10382,"turk",2,0,99,5,1,1,"CNN","Democrat" +3,1,10383,"turk",3,0,55,2,45,42,"CNN","Democrat" +3,1,10384,"turk",4,0,80,3,20,30,"CNN","Democrat" +3,1,10387,"turk",4,0,95,2,5,90,"CNN","Democrat" +3,1,10390,"turk",3,0,95,4,5,13,"CNN","Democrat" +3,1,10395,"turk",3,0,50,3,50,99,"CNN","Neither" +3,1,10397,"turk",4,0,1,5,99,99,"CNN","Neither" +3,1,10398,"turk",2,0,80,2,20,40,"CNN","Republican" +3,1,10399,"turk",4,0,5,3,95,99,"CNN","Democrat" +3,1,10400,"turk",2,0,0,5,100,100,"CNN","Neither" +3,1,10403,"turk",2,0,1,5,99,99,"CNN","Republican" +3,1,10405,"turk",3,0,70,3,30,35,"CNN","Democrat" +3,1,10409,"turk",4,0,30,2,70,50,"CNN","Republican" +3,1,10410,"turk",4,0,3,2,97,1,"CNN","Democrat" +3,1,10411,"turk",3,0,30,3,70,50,"CNN","Republican" +3,1,10420,"turk",3,0,1,5,99,99,"CNN","Republican" +3,1,10423,"turk",2,0,65,3,35,35,"CNN","Neither" +3,1,10424,"turk",4,0,1,3,99,1,"CNN","Republican" +3,1,10426,"turk",2,0,99,5,1,1,"CNN","Republican" +3,1,10427,"turk",2,0,44,4,56,99,"CNN","Republican" +3,1,10431,"turk",2,0,75,3,25,1,"CNN","Republican" +3,1,10437,"turk",2,0,70,3,30,40,"CNN","Democrat" +3,1,10438,"turk",3,0,50,5,50,50,"CNN","Republican" +3,1,10439,"turk",3,0,20,3,80,99,"CNN","Neither" +3,1,10440,"turk",4,0,24,3,76,69,"CNN","Democrat" +3,1,10442,"turk",3,0,50,3,50,50,"CNN","Neither" +3,1,10444,"turk",3,0,1,5,99,99,"CNN","Republican" +3,1,10445,"turk",3,0,30,4,70,70,"CNN","Democrat" +3,1,10447,"turk",2,0,99,5,1,1,"CNN","Neither" +3,1,10450,"turk",4,0,95,2,5,15,"CNN","Democrat" +3,1,10452,"turk",4,0,20,2,80,1,"CNN","Neither" +3,1,10459,"turk",2,0,75,4,25,99,"CNN","Democrat" +3,1,10460,"turk",3,0,1,4,99,99,"CNN","Democrat" +3,1,10462,"turk",4,0,1,3,99,99,"CNN","Republican" +3,1,10463,"turk",2,0,50,3,50,50,"CNN","Republican" +3,1,10465,"turk",4,0,0,4,100,100,"CNN","Democrat" +3,1,10469,"turk",2,0,1,5,99,99,"CNN","Neither" +3,1,10470,"turk",3,0,50,2,50,1,"CNN","Democrat" +3,1,10471,"turk",2,0,10,3,90,90,"CNN","Democrat" +3,1,10472,"turk",2,0,25,2,75,50,"CNN","Republican" +3,1,10481,"turk",4,0,30,2,70,30,"CNN","Neither" +3,1,10482,"turk",2,0,15,5,85,35,"CNN","Republican" +3,1,10484,"turk",3,0,40,2,60,50,"CNN","Democrat" +3,1,10485,"turk",2,0,99,2,1,1,"CNN","Democrat" +3,1,10487,"turk",2,0,30,5,70,80,"CNN","Democrat" +3,1,10490,"turk",3,0,80,4,20,50,"CNN","Democrat" +3,1,10492,"turk",2,0,20,5,80,90,"CNN","Democrat" +3,1,10494,"turk",2,0,65,3,35,20,"CNN","Republican" +3,1,10496,"turk",4,0,48,4,52,80,"CNN","Republican" +3,1,10498,"turk",3,0,60,5,40,60,"CNN","Republican" +3,1,10500,"turk",3,0,1,5,99,99,"CNN","Neither" +3,1,10501,"turk",4,0,0,5,100,100,"CNN","Democrat" +3,1,10504,"turk",4,0,7,5,93,93,"CNN","Democrat" +3,1,10508,"turk",3,0,77,2,23,23,"CNN","Democrat" +3,1,10509,"turk",3,0,50,2,50,1,"CNN","Democrat" +3,1,10510,"turk",4,0,75,3,25,50,"CNN","Democrat" +3,1,10513,"turk",4,0,1,2,99,1,"CNN","Republican" +3,1,10514,"turk",3,0,1,4,99,99,"CNN","Democrat" +3,1,10516,"turk",3,0,50,4,50,50,"CNN","Democrat" +3,1,10518,"turk",4,0,1,3,99,99,"CNN","Republican" +3,1,10523,"turk",4,0,86,5,14,88,"CNN","Democrat" +3,1,10527,"turk",2,0,32,2,68,60,"CNN","Democrat" +3,1,10530,"turk",3,0,99,3,1,99,"CNN","Democrat" +3,1,10531,"turk",2,0,33,5,67,50,"CNN","Neither" +3,1,9745,"turk",4,1,99,5,99,99,"CNN","Republican" +3,1,9746,"turk",4,1,1,5,1,99,"CNN","Neither" +3,1,9747,"turk",4,1,90,5,90,90,"CNN","Neither" +3,1,9748,"turk",4,1,75,2,75,75,"CNN","Democrat" +3,1,9749,"turk",4,1,100,4,100,100,"CNN","Democrat" +3,1,9751,"turk",4,1,99,3,99,99,"CNN","Democrat" +3,1,9755,"turk",2,1,60,5,60,80,"CNN","Republican" +3,1,9758,"turk",3,1,100,2,100,50,"CNN","Neither" +3,1,9759,"turk",4,1,99,5,99,95,"CNN","Republican" +3,1,9760,"turk",4,1,75,3,75,50,"CNN","Neither" +3,1,9761,"turk",4,1,20,3,20,88,"CNN","Democrat" +3,1,9762,"turk",4,1,20,5,20,1,"CNN","Neither" +3,1,9766,"turk",2,1,85,3,85,85,"CNN","Democrat" +3,1,9768,"turk",4,1,40,4,40,40,"CNN","Democrat" +3,1,9770,"turk",2,1,100,4,100,100,"CNN","Democrat" +3,1,9773,"turk",3,1,100,4,100,99,"CNN","Democrat" +3,1,9775,"turk",4,1,15,2,15,20,"CNN","Neither" +3,1,9776,"turk",2,1,99,4,99,99,"CNN","Neither" +3,1,9780,"turk",3,1,99,3,99,20,"CNN","Republican" +3,1,9781,"turk",4,1,50,3,50,60,"CNN","Neither" +3,1,9786,"turk",2,1,65,4,65,50,"CNN","Democrat" +3,1,9787,"turk",4,1,1,5,1,10,"CNN","Democrat" +3,1,9790,"turk",2,1,99,4,99,99,"CNN","Neither" +3,1,9792,"turk",3,1,65,2,65,60,"CNN","Republican" +3,1,9793,"turk",4,1,50,2,50,1,"CNN","Neither" +3,1,9794,"turk",3,1,20,2,20,20,"CNN","Democrat" +3,1,9795,"turk",4,1,90,2,90,80,"CNN","Republican" +3,1,9797,"turk",4,1,90,5,90,90,"CNN","Republican" +3,1,9799,"turk",2,1,99,2,99,99,"CNN","Democrat" +3,1,9803,"turk",4,1,1,5,1,99,"CNN","Democrat" +3,1,9804,"turk",4,1,71,5,71,72,"CNN","Republican" +3,1,9806,"turk",3,1,14,3,14,80,"CNN","Neither" +3,1,9822,"turk",4,1,85,5,85,80,"CNN","Democrat" +3,1,9825,"turk",2,1,1,2,1,1,"CNN","Neither" +3,1,9830,"turk",2,1,50,4,50,50,"CNN","Republican" +3,1,9832,"turk",4,1,98,3,98,90,"CNN","Republican" +3,1,9833,"turk",2,1,99,2,99,80,"CNN","Democrat" +3,1,9835,"turk",2,1,99,2,99,99,"CNN","Democrat" +3,1,9836,"turk",4,1,25,4,25,35,"CNN","Democrat" +3,1,9837,"turk",3,1,1,4,1,1,"CNN","Republican" +3,1,9838,"turk",4,1,12,5,12,78,"CNN","Democrat" +3,1,9839,"turk",2,1,99,5,99,99,"CNN","Democrat" +3,1,9840,"turk",3,1,10,2,10,25,"CNN","Democrat" +3,1,9842,"turk",4,1,80,2,80,60,"CNN","Democrat" +3,1,9843,"turk",4,1,99,2,99,99,"CNN","Neither" +3,1,9851,"turk",3,1,99,2,99,1,"CNN","Democrat" +3,1,9852,"turk",4,1,75,3,75,75,"CNN","Democrat" +3,1,9853,"turk",2,1,50,3,50,60,"CNN","Neither" +3,1,9855,"turk",3,1,15,4,15,20,"CNN","Neither" +3,1,9856,"turk",4,1,3,5,3,1,"CNN","Republican" +3,1,9861,"turk",4,1,99,5,99,99,"CNN","Neither" +3,1,9862,"turk",4,1,85,3,85,85,"CNN","Democrat" +3,1,9863,"turk",2,1,20,4,20,20,"CNN","Neither" +3,1,9864,"turk",4,1,1,4,1,1,"CNN","Republican" +3,1,9865,"turk",4,1,50,5,50,50,"CNN","Neither" +3,1,9869,"turk",3,1,95,4,95,80,"CNN","Republican" +3,1,9870,"turk",4,1,90,5,90,80,"CNN","Democrat" +3,1,9871,"turk",2,1,88,3,88,98,"CNN","Republican" +3,1,9873,"turk",4,1,99,5,99,98,"CNN","Democrat" +3,1,9874,"turk",3,1,55,3,55,45,"CNN","Democrat" +3,1,9877,"turk",3,1,25,2,25,25,"CNN","Neither" +3,1,9884,"turk",2,1,50,5,50,50,"CNN","Republican" +3,1,9886,"turk",3,1,0,4,0,99,"CNN","Republican" +3,1,9888,"turk",2,1,99,2,99,99,"CNN","Republican" +3,1,9890,"turk",2,1,88,4,88,89,"CNN","Republican" +3,1,9892,"turk",3,1,45,2,45,45,"CNN","Democrat" +3,1,9893,"turk",4,1,99,5,99,99,"CNN","Democrat" +3,1,9898,"turk",3,1,1,4,1,1,"CNN","Republican" +3,1,9900,"turk",4,1,50,5,50,66,"CNN","Democrat" +3,1,9901,"turk",3,1,80,3,80,80,"CNN","Republican" +3,1,9902,"turk",2,1,80,3,80,70,"CNN","Democrat" +3,1,9903,"turk",2,1,90,4,90,90,"CNN","Democrat" +3,1,9904,"turk",3,1,90,3,90,90,"CNN","Democrat" +3,1,9906,"turk",2,1,0,3,0,0,"CNN","Democrat" +3,1,9911,"turk",4,1,20,5,20,20,"CNN","Democrat" +3,1,9912,"turk",4,1,14,2,14,1,"CNN","Democrat" +3,1,9916,"turk",3,1,1,2,1,60,"CNN","Republican" +3,1,9917,"turk",4,1,30,5,30,90,"CNN","Neither" +3,1,9919,"turk",4,1,99,4,99,1,"CNN","Democrat" +3,1,9923,"turk",2,1,99,3,99,99,"CNN","Neither" +3,1,9926,"turk",2,1,99,3,99,50,"CNN","Republican" +3,1,9927,"turk",2,1,100,5,100,25,"CNN","Republican" +3,1,9929,"turk",3,1,50,3,50,50,"CNN","Neither" +3,1,9930,"turk",3,1,80,3,80,80,"CNN","Democrat" +3,1,9933,"turk",2,1,99,3,99,99,"CNN","Republican" +3,1,9935,"turk",3,1,85,4,85,85,"CNN","Neither" +3,1,9937,"turk",4,1,99,2,99,99,"CNN","Democrat" +3,1,9940,"turk",4,1,60,2,60,5,"CNN","Democrat" +3,1,9941,"turk",4,1,90,2,90,90,"CNN","Republican" +3,1,9942,"turk",2,1,1,5,1,1,"CNN","Democrat" +3,1,9945,"turk",4,1,1,2,1,99,"CNN","Democrat" +3,1,9950,"turk",4,1,50,2,50,2,"CNN","Democrat" +3,1,9951,"turk",3,1,99,3,99,1,"CNN","Republican" +3,1,9955,"turk",3,1,1,2,1,1,"CNN","Republican" +3,1,9959,"turk",2,1,70,4,70,70,"CNN","Democrat" +3,1,9960,"turk",4,1,99,2,99,30,"CNN","Democrat" +3,1,9962,"turk",3,1,99,4,99,99,"CNN","Democrat" +3,1,9965,"turk",2,1,60,5,60,60,"CNN","Democrat" +3,1,9975,"turk",3,1,5,5,5,2,"CNN","Democrat" +3,1,9984,"turk",3,1,99,5,99,99,"CNN","Democrat" +3,1,9986,"turk",4,1,70,4,70,70,"CNN","Democrat" +3,1,9988,"turk",2,1,99,4,99,99,"CNN","Democrat" +3,1,9989,"turk",3,1,65,5,65,65,"CNN","Democrat" +3,1,9993,"turk",4,1,70,5,70,40,"CNN","Neither" +3,1,9995,"turk",3,1,40,4,40,85,"CNN","Republican" +3,1,9996,"turk",4,1,80,4,80,80,"CNN","Democrat" +3,1,9998,"turk",3,1,95,5,95,99,"CNN","Democrat" +3,1,10002,"turk",4,1,5,2,5,1,"CNN","Democrat" +3,1,10004,"turk",4,1,99,4,99,99,"CNN","Democrat" +3,1,10005,"turk",4,1,85,5,85,85,"CNN","Republican" +3,1,10007,"turk",4,1,80,4,80,80,"CNN","Republican" +3,1,10009,"turk",4,1,99,3,99,99,"CNN","Republican" +3,1,10011,"turk",4,1,40,3,40,50,"CNN","Democrat" +3,1,10013,"turk",3,1,99,4,99,99,"CNN","Democrat" +3,1,10014,"turk",4,1,99,3,99,90,"CNN","Republican" +3,1,10020,"turk",2,1,45,3,45,75,"CNN","Democrat" +3,1,10027,"turk",4,1,60,3,60,99,"CNN","Republican" +3,1,10034,"turk",2,1,70,3,70,58,"CNN","Neither" +3,1,10035,"turk",2,1,30,2,30,30,"CNN","Democrat" +3,1,10038,"turk",3,1,1,5,1,1,"CNN","Democrat" +3,1,10041,"turk",3,1,1,3,1,99,"CNN","Republican" +3,1,10046,"turk",4,1,60,3,60,60,"CNN","Neither" +3,1,10048,"turk",2,1,80,5,80,80,"CNN","Democrat" +3,1,10055,"turk",3,1,40,4,40,10,"CNN","Republican" +3,1,10060,"turk",2,1,30,3,30,40,"CNN","Democrat" +3,1,10067,"turk",3,1,50,5,50,1,"CNN","Democrat" +3,1,10068,"turk",3,1,1,4,1,1,"CNN","Democrat" +3,1,10070,"turk",3,1,1,4,1,1,"CNN","Democrat" +3,1,10072,"turk",3,1,80,2,80,0,"CNN","Democrat" +3,1,10074,"turk",2,1,95,3,95,20,"CNN","Democrat" +3,1,10075,"turk",4,1,99,3,99,0,"CNN","Democrat" +3,1,10076,"turk",3,1,99,2,99,50,"CNN","Neither" +3,1,10077,"turk",3,1,65,4,65,65,"CNN","Democrat" +3,1,10079,"turk",3,1,80,2,80,70,"CNN","Republican" +3,1,10084,"turk",3,1,75,3,75,85,"CNN","Neither" +3,1,10085,"turk",2,1,90,5,90,90,"CNN","Neither" +3,1,10090,"turk",2,1,75,5,75,60,"CNN","Democrat" +3,1,10095,"turk",3,1,70,3,70,50,"CNN","Democrat" +3,1,10096,"turk",4,1,99,2,99,99,"CNN","Democrat" +3,1,10098,"turk",2,1,10,2,10,5,"CNN","Neither" +3,1,10099,"turk",2,1,80,4,80,80,"CNN","Democrat" +3,1,10103,"turk",3,1,60,3,60,85,"CNN","Democrat" +3,1,10104,"turk",3,1,85,3,85,0,"CNN","Democrat" +3,1,10105,"turk",3,1,70,2,70,70,"CNN","Democrat" +3,1,10112,"turk",2,1,60,4,60,55,"CNN","Democrat" +3,1,10113,"turk",4,1,99,3,99,99,"CNN","Republican" +3,1,10116,"turk",4,1,100,5,100,99,"CNN","Democrat" +3,1,10117,"turk",2,1,85,4,85,90,"CNN","Democrat" +3,1,10119,"turk",2,1,99,2,99,1,"CNN","Neither" +3,1,10120,"turk",3,1,75,5,75,75,"CNN","Republican" +3,1,10121,"turk",4,1,25,5,25,25,"CNN","Neither" +3,1,10124,"turk",4,1,50,5,50,99,"CNN","Republican" +3,1,10127,"turk",3,1,99,4,99,99,"CNN","Republican" +3,1,10131,"turk",2,1,50,3,50,50,"CNN","Republican" +3,1,10134,"turk",4,1,80,3,80,85,"CNN","Republican" +3,1,10136,"turk",4,1,20,4,20,30,"CNN","Democrat" +3,1,10140,"turk",4,1,30,4,30,50,"CNN","Democrat" +3,1,10144,"turk",4,1,80,5,80,70,"CNN","Democrat" +3,1,10145,"turk",2,1,80,2,80,80,"CNN","Democrat" +3,1,10146,"turk",4,1,1,3,1,1,"CNN","Democrat" +3,1,10150,"turk",2,1,99,2,99,99,"CNN","Democrat" +3,1,10154,"turk",3,1,85,2,85,1,"CNN","Democrat" +3,1,10155,"turk",3,1,1,2,1,99,"CNN","Republican" +3,1,10157,"turk",4,1,90,5,90,90,"CNN","Democrat" +3,1,10158,"turk",2,1,50,5,50,52,"CNN","Democrat" +3,1,10159,"turk",2,1,50,2,50,5,"CNN","Republican" +3,1,10160,"turk",2,1,99,3,99,99,"CNN","Democrat" +3,1,10168,"turk",2,1,65,4,65,60,"CNN","Democrat" +3,1,10171,"turk",3,1,80,4,80,80,"CNN","Democrat" +3,1,10172,"turk",3,1,25,5,25,1,"CNN","Republican" +3,1,10176,"turk",4,1,70,5,70,70,"CNN","Democrat" +3,1,10177,"turk",2,1,90,4,90,99,"CNN","Democrat" +3,1,10185,"turk",2,1,1,4,1,99,"CNN","Republican" +3,1,10189,"turk",3,1,99,3,99,99,"CNN","Democrat" +3,1,10191,"turk",4,1,20,5,20,10,"CNN","Democrat" +3,1,10194,"turk",4,1,99,2,99,99,"CNN","Democrat" +3,1,10197,"turk",4,1,95,2,95,90,"CNN","Democrat" +3,1,10202,"turk",4,1,1,4,1,50,"CNN","Neither" +3,1,10203,"turk",3,1,80,2,80,75,"CNN","Republican" +3,1,10205,"turk",4,1,40,3,40,50,"CNN","Democrat" +3,1,10206,"turk",2,1,3,5,3,45,"CNN","Democrat" +3,1,10207,"turk",3,1,100,5,100,99,"CNN","Republican" +3,1,10210,"turk",3,1,100,5,100,99,"CNN","Republican" +3,1,10213,"turk",4,1,70,4,70,60,"CNN","Republican" +3,1,10219,"turk",4,1,90,3,90,99,"CNN","Democrat" +3,1,10220,"turk",3,1,99,2,99,50,"CNN","Republican" +3,1,10221,"turk",2,1,65,3,65,65,"CNN","Democrat" +3,1,10224,"turk",2,1,0,2,0,0,"CNN","Democrat" +3,1,10226,"turk",4,1,99,5,99,99,"CNN","Republican" +3,1,10227,"turk",2,1,99,5,99,99,"CNN","Republican" +3,1,10229,"turk",3,1,99,3,99,99,"CNN","Democrat" +3,1,10230,"turk",3,1,84,4,84,84,"CNN","Neither" +3,1,10231,"turk",3,1,1,2,1,1,"CNN","Democrat" +3,1,10234,"turk",4,1,30,3,30,75,"CNN","Republican" +3,1,10236,"turk",2,1,30,4,30,30,"CNN","Democrat" +3,1,10238,"turk",3,1,20,4,20,20,"CNN","Democrat" +3,1,10250,"turk",3,1,42,4,42,43,"CNN","Democrat" +3,1,10251,"turk",4,1,99,5,99,99,"CNN","Democrat" +3,1,10252,"turk",2,1,90,5,90,90,"CNN","Republican" +3,1,10253,"turk",2,1,10,2,10,10,"CNN","Democrat" +3,1,10254,"turk",2,1,99,4,99,95,"CNN","Democrat" +3,1,10255,"turk",4,1,20,2,20,20,"CNN","Democrat" +3,1,10256,"turk",3,1,1,4,1,50,"CNN","Neither" +3,1,10258,"turk",3,1,85,5,85,75,"CNN","Neither" +3,1,10262,"turk",4,1,30,2,30,90,"CNN","Democrat" +3,1,10263,"turk",2,1,99,5,99,99,"CNN","Republican" +3,1,10265,"turk",3,1,99,3,99,99,"CNN","Republican" +3,1,10266,"turk",3,1,100,5,100,100,"CNN","Republican" +3,1,10267,"turk",4,1,1,3,1,50,"CNN","Democrat" +3,1,10269,"turk",3,1,99,2,99,50,"CNN","Democrat" +3,1,10272,"turk",4,1,50,4,50,30,"CNN","Democrat" +3,1,10273,"turk",3,1,75,2,75,70,"CNN","Democrat" +3,1,10274,"turk",2,1,99,2,99,99,"CNN","Republican" +3,1,10279,"turk",3,1,60,3,60,65,"CNN","Democrat" +3,1,10280,"turk",3,1,1,3,1,99,"CNN","Republican" +3,1,10282,"turk",3,1,75,5,75,75,"CNN","Neither" +3,1,10285,"turk",3,1,75,3,75,75,"CNN","Republican" +3,1,10286,"turk",2,1,30,2,30,50,"CNN","Republican" +3,1,10290,"turk",3,1,1,5,1,50,"CNN","Neither" +3,1,10291,"turk",4,1,5,3,5,10,"CNN","Neither" +3,1,10292,"turk",2,1,99,3,99,99,"CNN","Democrat" +3,1,10294,"turk",4,1,50,3,50,70,"CNN","Democrat" +3,1,10305,"turk",2,1,1,2,1,99,"CNN","Democrat" +3,1,10306,"turk",3,1,40,4,40,25,"CNN","Democrat" +3,1,10308,"turk",2,1,90,3,90,100,"CNN","Democrat" +3,1,10310,"turk",2,1,70,4,70,70,"CNN","Republican" +3,1,10315,"turk",4,1,1,2,1,1,"CNN","Republican" +3,1,10316,"turk",3,1,1,3,1,99,"CNN","Neither" +3,1,10317,"turk",2,1,20,2,20,80,"CNN","Democrat" +3,1,10320,"turk",2,1,1,2,1,1,"CNN","Republican" +3,1,10325,"turk",2,1,99,5,99,99,"CNN","Democrat" +3,1,10326,"turk",4,1,1,2,1,1,"CNN","Republican" +3,1,10331,"turk",2,1,90,4,90,90,"CNN","Democrat" +3,1,10333,"turk",2,1,100,5,100,100,"CNN","Neither" +3,1,10337,"turk",4,1,1,2,1,1,"CNN","Democrat" +3,1,10339,"turk",2,1,50,5,50,1,"CNN","Democrat" +3,1,10340,"turk",3,1,75,4,75,85,"CNN","Neither" +3,1,10341,"turk",2,1,20,2,20,20,"CNN","Democrat" +3,1,10342,"turk",3,1,20,4,20,30,"CNN","Democrat" +3,1,10343,"turk",2,1,80,4,80,80,"CNN","Republican" +3,1,10344,"turk",4,1,70,2,70,50,"CNN","Neither" +3,1,10350,"turk",4,1,99,5,99,99,"CNN","Democrat" +3,1,10352,"turk",2,1,65,2,65,40,"CNN","Democrat" +3,1,10357,"turk",4,1,75,5,75,60,"CNN","Democrat" +3,1,10358,"turk",4,1,50,2,50,50,"CNN","Republican" +3,1,10360,"turk",2,1,99,4,99,99,"CNN","Democrat" +3,1,10361,"turk",4,1,99,4,99,50,"CNN","Neither" +3,1,10363,"turk",2,1,60,2,60,90,"CNN","Republican" +3,1,10364,"turk",2,1,50,4,50,50,"CNN","Democrat" +3,1,10367,"turk",3,1,70,3,70,50,"CNN","Republican" +3,1,10369,"turk",2,1,99,5,99,99,"CNN","Republican" +3,1,10374,"turk",2,1,98,3,98,79,"CNN","Democrat" +3,1,10375,"turk",4,1,4,3,4,1,"CNN","Democrat" +3,1,10376,"turk",4,1,99,2,99,99,"CNN","Republican" +3,1,10377,"turk",3,1,1,5,1,1,"CNN","Democrat" +3,1,10380,"turk",2,1,70,4,70,85,"CNN","Republican" +3,1,10388,"turk",4,1,70,2,70,50,"CNN","Neither" +3,1,10389,"turk",4,1,25,2,25,99,"CNN","Neither" +3,1,10392,"turk",3,1,1,4,1,2,"CNN","Democrat" +3,1,10393,"turk",2,1,97,3,97,90,"CNN","Democrat" +3,1,10396,"turk",2,1,76,2,76,25,"CNN","Republican" +3,1,10401,"turk",4,1,40,5,40,50,"CNN","Republican" +3,1,10406,"turk",2,1,1,3,1,1,"CNN","Democrat" +3,1,10412,"turk",2,1,12,3,12,36,"CNN","Democrat" +3,1,10413,"turk",4,1,85,4,85,90,"CNN","Republican" +3,1,10414,"turk",3,1,1,5,1,50,"CNN","Neither" +3,1,10415,"turk",4,1,96,4,96,97,"CNN","Democrat" +3,1,10417,"turk",4,1,30,2,30,30,"CNN","Neither" +3,1,10418,"turk",3,1,17,5,17,20,"CNN","Democrat" +3,1,10419,"turk",2,1,87,5,87,75,"CNN","Neither" +3,1,10421,"turk",4,1,99,4,99,1,"CNN","Democrat" +3,1,10422,"turk",3,1,50,2,50,10,"CNN","Democrat" +3,1,10425,"turk",2,1,99,3,99,99,"CNN","Democrat" +3,1,10428,"turk",2,1,90,4,90,90,"CNN","Republican" +3,1,10429,"turk",4,1,99,4,99,98,"CNN","Democrat" +3,1,10432,"turk",4,1,80,2,80,50,"CNN","Democrat" +3,1,10433,"turk",3,1,98,3,98,80,"CNN","Democrat" +3,1,10435,"turk",3,1,5,5,5,5,"CNN","Democrat" +3,1,10436,"turk",3,1,99,5,99,99,"CNN","Democrat" +3,1,10441,"turk",3,1,90,4,90,80,"CNN","Democrat" +3,1,10446,"turk",4,1,70,2,70,65,"CNN","Democrat" +3,1,10448,"turk",3,1,80,3,80,80,"CNN","Republican" +3,1,10449,"turk",4,1,50,2,50,50,"CNN","Democrat" +3,1,10451,"turk",4,1,95,4,95,80,"CNN","Republican" +3,1,10454,"turk",3,1,99,2,99,1,"CNN","Democrat" +3,1,10455,"turk",2,1,50,2,50,99,"CNN","Democrat" +3,1,10456,"turk",2,1,99,2,99,1,"CNN","Democrat" +3,1,10457,"turk",3,1,90,2,90,90,"CNN","Republican" +3,1,10458,"turk",2,1,66,4,66,33,"CNN","Republican" +3,1,10466,"turk",4,1,95,5,95,90,"CNN","Neither" +3,1,10467,"turk",2,1,99,3,99,99,"CNN","Neither" +3,1,10468,"turk",2,1,20,3,20,20,"CNN","Democrat" +3,1,10473,"turk",3,1,99,2,99,99,"CNN","Democrat" +3,1,10474,"turk",4,1,78,3,78,78,"CNN","Democrat" +3,1,10475,"turk",4,1,99,3,99,99,"CNN","Democrat" +3,1,10478,"turk",3,1,95,5,95,90,"CNN","Neither" +3,1,10489,"turk",3,1,70,3,70,70,"CNN","Democrat" +3,1,10495,"turk",2,1,90,5,90,12,"CNN","Neither" +3,1,10497,"turk",4,1,1,2,1,99,"CNN","Democrat" +3,1,10502,"turk",3,1,30,4,30,30,"CNN","Democrat" +3,1,10503,"turk",3,1,99,4,99,99,"CNN","Democrat" +3,1,10505,"turk",3,1,50,2,50,40,"CNN","Republican" +3,1,10506,"turk",2,1,99,2,99,99,"CNN","Democrat" +3,1,10507,"turk",2,1,90,4,90,1,"CNN","Democrat" +3,1,10511,"turk",4,1,50,5,50,100,"CNN","Democrat" +3,1,10512,"turk",3,1,25,4,25,25,"CNN","Democrat" +3,1,10517,"turk",2,1,50,5,50,50,"CNN","Republican" +3,1,10522,"turk",2,1,5,2,5,5,"CNN","Republican" +3,1,10526,"turk",2,1,50,5,50,60,"CNN","Neither" +3,1,10528,"turk",2,1,99,4,99,99,"CNN","Neither" +3,1,10532,"turk",4,1,25,2,25,25,"CNN","Democrat" +3,1,10533,"turk",3,1,99,4,99,99,"CNN","Democrat" +3,1,10534,"turk",4,1,91,2,91,90,"CNN","Republican" +3,1,10535,"turk",3,1,65,2,65,50,"CNN","Republican" +3,2,51,"tess",4,1,50,2,50,50,"Fox News","Neither" +3,2,62,"tess",3,1,99,2,99,3,"Fox News","Democrat" +3,2,68,"tess",1,0,89,2,11,66,"Fox News","Democrat" +3,2,70,"tess",2,0,73,3,27,79,"Fox News","Republican" +3,2,80,"tess",4,1,3,2,3,70,"Fox News","Republican" +3,2,94,"tess",3,1,90,2,90,90,"Fox News","Republican" +3,2,95,"tess",2,1,82,3,82,76,"Fox News","Democrat" +3,2,120,"tess",2,0,10,2,90,30,"Fox News","Democrat" +3,2,130,"tess",3,1,93,3,93,89,"Fox News","Republican" +3,2,136,"tess",1,0,15,3,85,60,"Fox News","Democrat" +3,2,151,"tess",3,0,6,3,94,80,"Fox News","Republican" +3,2,165,"tess",1,1,34,3,34,80,"Fox News","Democrat" +3,2,188,"tess",2,1,20,3,20,77,"Fox News","Democrat" +3,2,206,"tess",3,1,11,2,11,100,"Fox News","Republican" +3,2,216,"tess",3,1,92,2,92,51,"Fox News","Democrat" +3,2,224,"tess",2,0,5,3,95,32,"Fox News","Democrat" +3,2,234,"tess",3,0,99,2,1,1,"Fox News","Democrat" +3,2,263,"tess",3,1,26,2,26,76,"Fox News","Neither" +3,2,299,"tess",1,1,10,2,10,10,"Fox News","Democrat" +3,2,315,"tess",2,1,99,3,99,50,"Fox News","Democrat" +3,2,336,"tess",4,1,90,2,90,90,"Fox News","Republican" +3,2,363,"tess",1,1,16,3,16,94,"Fox News","Republican" +3,2,366,"tess",2,1,69,3,69,83,"Fox News","Democrat" +3,2,372,"tess",1,0,40,2,60,30,"Fox News","Republican" +3,2,397,"tess",1,0,NA,2,NA,0,"Fox News","Democrat" +3,2,413,"tess",1,0,17,2,83,48,"Fox News","Democrat" +3,2,426,"tess",2,1,70,3,70,60,"Fox News","Republican" +3,2,443,"tess",3,0,27,2,73,0,"Fox News","Republican" +3,2,450,"tess",1,1,80,2,80,80,"Fox News","Republican" +3,2,461,"tess",4,1,31,2,31,13,"Fox News","Republican" +3,2,478,"tess",2,0,5,2,95,0,"Fox News","Democrat" +3,2,491,"tess",3,0,39,2,61,10,"Fox News","Neither" +3,2,493,"tess",2,0,10,3,90,100,"Fox News","Republican" +3,2,502,"tess",2,0,69,3,31,50,"Fox News","Democrat" +3,2,503,"tess",4,1,50,2,50,100,"Fox News","Republican" +3,2,509,"tess",1,0,50,3,50,50,"Fox News","Democrat" +3,2,516,"tess",4,0,9,2,91,95,"Fox News","Democrat" +3,2,522,"tess",2,1,100,2,100,100,"Fox News","Democrat" +3,2,542,"tess",1,0,0,2,100,2,"Fox News","Republican" +3,2,573,"tess",2,0,71,2,29,30,"Fox News","Democrat" +3,2,574,"tess",2,1,49,2,49,39,"Fox News","Democrat" +3,2,591,"tess",2,0,53,3,47,68,"Fox News","Democrat" +3,2,600,"tess",2,0,100,3,0,0,"Fox News","Republican" +3,2,603,"tess",4,0,30,2,70,20,"Fox News","Democrat" +3,2,608,"tess",2,1,81,3,81,81,"Fox News","Democrat" +3,2,617,"tess",2,0,100,2,0,99,"Fox News","Republican" +3,2,633,"tess",3,0,40,2,60,61,"Fox News","Democrat" +3,2,649,"tess",3,1,100,2,100,100,"Fox News","Democrat" +3,2,680,"tess",3,1,30,3,30,57,"Fox News","Republican" +3,2,684,"tess",2,0,50,2,50,50,"Fox News","Republican" +3,2,689,"tess",2,0,15,3,85,29,"Fox News","Democrat" +3,2,693,"tess",2,1,100,2,100,30,"Fox News","Republican" +3,2,711,"tess",4,1,92,2,92,91,"Fox News","Democrat" +3,2,727,"tess",4,0,49,2,51,1,"Fox News","Republican" +3,2,728,"tess",1,0,10,2,90,3,"Fox News","Democrat" +3,2,753,"tess",3,0,90,2,10,10,"Fox News","Republican" +3,2,771,"tess",4,0,0,2,100,23,"Fox News","Democrat" +3,2,772,"tess",3,0,18,2,82,28,"Fox News","Republican" +3,2,773,"tess",2,1,56,3,56,48,"Fox News","Democrat" +3,2,786,"tess",1,0,80,3,20,20,"Fox News","Republican" +3,2,806,"tess",3,0,51,2,49,50,"Fox News","Democrat" +3,2,823,"tess",1,0,18,3,82,0,"Fox News","Democrat" +3,2,829,"tess",1,1,80,2,80,50,"Fox News","Neither" +3,2,851,"tess",3,1,71,3,71,71,"Fox News","Republican" +3,2,852,"tess",2,1,76,2,76,64,"Fox News","Democrat" +3,2,855,"tess",4,1,80,2,80,10,"Fox News","Republican" +3,2,878,"tess",2,0,3,2,97,10,"Fox News","Democrat" +3,2,883,"tess",1,0,60,2,40,15,"Fox News","Democrat" +3,2,891,"tess",1,0,80,2,20,20,"Fox News","Republican" +3,2,903,"tess",2,1,63,3,63,42,"Fox News","Republican" +3,2,912,"tess",1,1,20,2,20,0,"Fox News","Democrat" +3,2,918,"tess",3,0,59,2,41,29,"Fox News","Republican" +3,2,922,"tess",1,0,75,3,25,53,"Fox News","Republican" +3,2,1018,"tess",2,1,68,3,68,89,"Fox News","Republican" +3,2,1047,"tess",1,1,15,3,15,54,"Fox News","Republican" +3,2,1051,"tess",4,0,75,2,25,0,"Fox News","Republican" +3,2,1064,"tess",4,1,98,2,98,98,"Fox News","Democrat" +3,2,1065,"tess",3,0,96,3,4,0,"Fox News","Republican" +3,2,1066,"tess",1,0,33,2,67,42,"Fox News","Democrat" +3,2,1096,"tess",2,0,93,2,7,100,"Fox News","Democrat" +3,2,1097,"tess",4,1,90,2,90,82,"Fox News","Republican" +3,2,1100,"tess",1,1,85,3,85,75,"Fox News","Republican" +3,2,1110,"tess",1,0,0,2,100,2,"Fox News","Neither" +3,2,1122,"tess",3,0,0,2,100,1,"Fox News","Republican" +3,2,1133,"tess",2,0,97,3,3,10,"Fox News","Republican" +3,2,1147,"tess",1,0,97,2,3,3,"Fox News","Democrat" +3,2,1149,"tess",1,1,71,2,71,100,"Fox News","Democrat" +3,2,1178,"tess",2,1,32,3,32,40,"Fox News","Republican" +3,2,1182,"tess",1,0,30,3,70,8,"Fox News","Republican" +3,2,1193,"tess",3,1,1,2,1,1,"Fox News","Democrat" +3,2,1208,"tess",4,1,74,2,74,66,"Fox News","Republican" +3,2,1256,"tess",1,0,85,2,15,6,"Fox News","Democrat" +3,2,1265,"tess",2,1,14,3,14,48,"Fox News","Republican" +3,2,1285,"tess",1,0,42,2,58,49,"Fox News","Neither" +3,2,1288,"tess",4,0,40,2,60,30,"Fox News","Republican" +3,2,1304,"tess",1,1,99,3,99,100,"Fox News","Democrat" +3,2,1309,"tess",2,1,100,3,100,65,"Fox News","Democrat" +3,2,1311,"tess",3,1,82,2,82,10,"Fox News","Democrat" +3,2,1348,"tess",3,1,97,3,97,91,"Fox News","Democrat" +3,2,1356,"tess",2,1,70,3,70,79,"Fox News","Republican" +3,2,1397,"tess",1,1,98,2,98,0,"Fox News","Democrat" +3,2,1402,"tess",4,1,62,2,62,0,"Fox News","Republican" +3,2,1416,"tess",1,0,82,3,18,20,"Fox News","Republican" +3,2,1418,"tess",3,0,83,3,17,16,"Fox News","Republican" +3,2,1419,"tess",3,0,80,2,20,42,"Fox News","Republican" +3,2,1426,"tess",1,0,50,2,50,60,"Fox News","Democrat" +3,2,1444,"tess",4,0,68,2,32,40,"Fox News","Democrat" +3,2,1454,"tess",3,1,30,3,30,100,"Fox News","Democrat" +3,2,1461,"tess",2,1,54,2,54,72,"Fox News","Democrat" +3,2,1468,"tess",3,1,76,3,76,100,"Fox News","Republican" +3,2,1485,"tess",2,0,76,3,24,27,"Fox News","Democrat" +3,2,1486,"tess",3,1,99,2,99,26,"Fox News","Democrat" +3,2,1506,"tess",1,0,85,3,15,29,"Fox News","Democrat" +3,2,1511,"tess",2,0,4,2,96,75,"Fox News","Republican" +3,2,1518,"tess",2,1,25,3,25,80,"Fox News","Democrat" +3,2,1523,"tess",2,0,4,2,96,50,"Fox News","Republican" +3,2,1532,"tess",2,0,28,3,72,36,"Fox News","Republican" +3,2,1541,"tess",1,0,0,3,100,100,"Fox News","Republican" +3,2,1551,"tess",2,0,22,3,78,59,"Fox News","Republican" +3,2,1552,"tess",3,0,7,2,93,48,"Fox News","Republican" +3,2,1553,"tess",2,1,80,2,80,85,"Fox News","Democrat" +3,2,1563,"tess",2,1,3,2,3,91,"Fox News","Republican" +3,2,1565,"tess",2,1,10,2,10,90,"Fox News","Democrat" +3,2,1608,"tess",1,1,10,3,10,30,"Fox News","Republican" +3,2,1618,"tess",2,0,81,3,19,56,"Fox News","Republican" +3,2,1654,"tess",2,0,26,2,74,33,"Fox News","Democrat" +3,2,1663,"tess",3,0,68,3,32,24,"Fox News","Neither" +3,2,1668,"tess",1,1,30,3,30,60,"Fox News","Democrat" +3,2,1702,"tess",4,0,9,2,91,6,"Fox News","Neither" +3,2,1706,"tess",3,1,70,3,70,73,"Fox News","Democrat" +3,2,1739,"tess",3,0,42,3,58,78,"Fox News","Republican" +3,2,1756,"tess",1,1,40,2,40,80,"Fox News","Democrat" +3,2,1767,"tess",1,1,50,2,50,49,"Fox News","Republican" +3,2,1775,"tess",1,0,76,3,24,59,"Fox News","Democrat" +3,2,1798,"tess",2,0,0,3,100,0,"Fox News","Democrat" +3,2,1832,"tess",4,1,90,2,90,90,"Fox News","Republican" +3,2,1850,"tess",2,0,10,3,90,90,"Fox News","Republican" +3,2,1851,"tess",3,0,11,3,89,21,"Fox News","Democrat" +3,2,1856,"tess",2,1,67,2,67,76,"Fox News","Republican" +3,2,1857,"tess",2,1,40,3,40,1,"Fox News","Democrat" +3,2,1891,"tess",3,0,99,3,1,0,"Fox News","Republican" +3,2,1898,"tess",1,1,55,2,55,50,"Fox News","Democrat" +3,2,1899,"tess",1,0,100,3,0,0,"Fox News","Democrat" +3,2,1900,"tess",2,0,75,2,25,9,"Fox News","Republican" +3,2,1928,"tess",1,1,95,3,95,40,"Fox News","Democrat" +3,2,1930,"tess",2,1,100,3,100,96,"Fox News","Democrat" +3,2,1952,"tess",1,1,NA,2,NA,9,"Fox News","Democrat" +3,2,1953,"tess",3,0,47,3,53,89,"Fox News","Republican" +3,2,1966,"tess",2,0,50,3,50,14,"Fox News","Republican" +3,2,1976,"tess",4,1,46,2,46,97,"Fox News","Republican" +3,2,1981,"tess",2,0,42,3,58,13,"Fox News","Democrat" +3,2,1982,"tess",3,0,96,3,4,11,"Fox News","Democrat" +3,2,2001,"tess",3,1,33,2,33,23,"Fox News","Republican" +3,2,2056,"tess",2,0,78,2,22,65,"Fox News","Republican" +3,2,2080,"tess",1,1,77,3,77,58,"Fox News","Democrat" +3,2,2088,"tess",1,0,10,3,90,8,"Fox News","Democrat" +3,2,2090,"tess",2,0,100,2,0,2,"Fox News","Democrat" +3,2,2097,"tess",2,0,74,2,26,19,"Fox News","Republican" +3,2,2100,"tess",3,1,64,3,64,61,"Fox News","Democrat" +3,2,2107,"tess",2,0,61,2,39,21,"Fox News","Republican" +3,2,2120,"tess",2,0,50,3,50,39,"Fox News","Republican" +3,2,2141,"tess",1,1,39,2,39,81,"Fox News","Democrat" +3,2,2179,"tess",3,0,NA,2,NA,91,"Fox News","Democrat" +3,2,2180,"tess",1,1,54,2,54,63,"Fox News","Democrat" +3,2,2188,"tess",1,0,0,3,100,20,"Fox News","Republican" +3,2,2190,"tess",1,0,7,2,93,1,"Fox News","Neither" +3,2,2195,"tess",2,0,0,3,100,100,"Fox News","Republican" +3,2,2207,"tess",2,1,57,2,57,62,"Fox News","Republican" +3,2,2208,"tess",1,0,0,2,100,0,"Fox News","Democrat" +3,2,2213,"tess",3,1,80,2,80,50,"Fox News","Neither" +3,2,2215,"tess",4,0,0,2,100,39,"Fox News","Republican" +3,2,2225,"tess",3,1,99,2,99,99,"Fox News","Republican" +3,2,2235,"tess",2,0,30,2,70,10,"Fox News","Republican" +3,2,2271,"tess",1,0,33,2,67,19,"Fox News","Democrat" +3,2,2272,"tess",1,0,84,2,16,60,"Fox News","Democrat" +3,2,2275,"tess",3,1,43,3,43,80,"Fox News","Republican" +3,2,2278,"tess",4,1,50,2,50,50,"Fox News","Neither" +3,2,2286,"tess",3,0,77,2,23,89,"Fox News","Democrat" +3,2,2318,"tess",3,0,30,2,70,40,"Fox News","Democrat" +3,2,2337,"tess",4,0,10,2,90,10,"Fox News","Democrat" +3,2,2353,"tess",3,0,15,3,85,30,"Fox News","Democrat" +3,2,2382,"tess",3,0,8,3,92,37,"Fox News","Democrat" +3,2,2398,"tess",3,1,70,3,70,60,"Fox News","Democrat" +3,2,2405,"tess",3,1,76,2,76,0,"Fox News","Democrat" +3,2,2407,"tess",3,1,82,3,82,75,"Fox News","Republican" +3,2,2424,"tess",3,1,54,2,54,85,"Fox News","Republican" +3,2,2434,"tess",2,0,66,2,34,16,"Fox News","Democrat" +3,2,2435,"tess",1,1,37,2,37,23,"Fox News","Democrat" +3,2,2445,"tess",4,1,32,2,32,88,"Fox News","Republican" +3,2,2460,"tess",3,1,NA,2,NA,33,"Fox News","Democrat" +3,2,2468,"tess",2,0,10,3,90,90,"Fox News","Democrat" +3,2,2474,"tess",1,0,0,2,100,1,"Fox News","Democrat" +3,2,2484,"tess",3,1,100,3,100,100,"Fox News","Republican" +3,2,2485,"tess",1,1,30,3,30,80,"Fox News","Democrat" +3,2,2486,"tess",4,0,18,2,82,73,"Fox News","Republican" +3,2,2492,"tess",2,1,97,2,97,91,"Fox News","Democrat" +3,2,2498,"tess",1,0,92,2,8,49,"Fox News","Republican" +3,2,2508,"tess",1,1,95,2,95,89,"Fox News","Democrat" +3,2,2512,"tess",1,1,81,2,81,71,"Fox News","Republican" +3,2,2514,"tess",3,0,7,2,93,10,"Fox News","Democrat" +3,2,2518,"tess",1,1,100,3,100,100,"Fox News","Republican" +3,2,2528,"tess",3,0,23,3,77,20,"Fox News","Democrat" +3,2,2537,"tess",3,0,39,3,61,22,"Fox News","Republican" +3,2,2542,"tess",1,0,20,3,80,0,"Fox News","Neither" +3,2,2547,"tess",2,1,10,2,10,10,"Fox News","Republican" +3,2,2581,"tess",3,0,30,2,70,0,"Fox News","Democrat" +3,2,2592,"tess",1,1,88,2,88,90,"Fox News","Democrat" +3,2,2599,"tess",4,1,80,2,80,80,"Fox News","Republican" +3,2,2608,"tess",1,0,9,3,91,60,"Fox News","Democrat" +3,2,2630,"tess",1,0,64,2,36,19,"Fox News","Republican" +3,2,2632,"tess",3,0,50,2,50,50,"Fox News","Democrat" +3,2,2644,"tess",2,0,40,3,60,39,"Fox News","Democrat" +3,2,2658,"tess",2,1,1,2,1,1,"Fox News","Republican" +3,2,2664,"tess",3,0,46,2,54,18,"Fox News","Democrat" +3,2,2669,"tess",1,0,100,2,0,0,"Fox News","Democrat" +3,2,2670,"tess",1,1,95,3,95,90,"Fox News","Neither" +3,2,2671,"tess",3,0,59,2,41,28,"Fox News","Republican" +3,2,2707,"tess",3,1,63,3,63,57,"Fox News","Democrat" +3,2,2709,"tess",2,1,100,3,100,95,"Fox News","Democrat" +3,2,2714,"tess",3,1,84,2,84,91,"Fox News","Democrat" +3,2,2722,"tess",2,0,31,2,69,100,"Fox News","Democrat" +3,2,2731,"tess",3,1,34,3,34,35,"Fox News","Democrat" +3,2,2740,"tess",1,0,0,2,100,100,"Fox News","Democrat" +3,2,2760,"tess",4,0,71,2,29,69,"Fox News","Republican" +3,2,2764,"tess",3,0,19,3,81,72,"Fox News","Republican" +3,2,2774,"tess",4,1,2,2,2,95,"Fox News","Republican" +3,2,2799,"tess",4,1,0,2,0,45,"Fox News","Republican" +3,2,2804,"tess",3,1,60,3,60,30,"Fox News","Republican" +3,2,2808,"tess",2,0,46,2,54,8,"Fox News","Democrat" +3,2,2827,"tess",2,0,99,3,1,1,"Fox News","Democrat" +3,2,2829,"tess",2,1,80,2,80,40,"Fox News","Democrat" +3,2,2852,"tess",4,0,100,2,0,0,"Fox News","Republican" +3,2,2863,"tess",3,1,31,3,31,30,"Fox News","Republican" +3,2,2888,"tess",2,1,10,3,10,10,"Fox News","Democrat" +3,2,2902,"tess",4,0,50,2,50,10,"Fox News","Democrat" +3,2,2903,"tess",3,0,88,2,12,13,"Fox News","Democrat" +3,2,2906,"tess",3,1,61,3,61,90,"Fox News","Democrat" +3,2,2917,"tess",1,0,4,3,96,14,"Fox News","Republican" +3,2,2936,"tess",3,1,38,2,38,43,"Fox News","Democrat" +3,2,2953,"tess",3,1,90,2,90,90,"Fox News","Neither" +3,2,2970,"tess",2,1,9,3,9,38,"Fox News","Neither" +3,2,2979,"tess",1,1,65,3,65,97,"Fox News","Democrat" +3,2,2983,"tess",2,0,81,2,19,18,"Fox News","Democrat" +3,2,2990,"tess",1,0,10,2,90,20,"Fox News","Republican" +3,2,3011,"tess",2,0,100,2,0,38,"Fox News","Republican" +3,2,3029,"tess",3,1,61,2,61,50,"Fox News","Democrat" +3,2,3039,"tess",1,1,80,2,80,81,"Fox News","Republican" +3,2,3071,"tess",2,1,47,3,47,70,"Fox News","Democrat" +3,2,3072,"tess",1,0,99,2,1,1,"Fox News","Republican" +3,2,3074,"tess",1,1,0,3,0,10,"Fox News","Democrat" +3,2,3086,"tess",3,1,87,3,87,89,"Fox News","Republican" +3,2,3096,"tess",4,0,99,2,1,1,"Fox News","Republican" +3,2,3102,"tess",1,0,63,3,37,5,"Fox News","Democrat" +3,2,3115,"tess",3,1,33,3,33,10,"Fox News","Neither" +3,2,3128,"tess",2,1,80,3,80,79,"Fox News","Republican" +3,2,3137,"tess",4,1,69,2,69,90,"Fox News","Democrat" +3,2,3155,"tess",3,1,72,3,72,32,"Fox News","Neither" +3,2,3170,"tess",2,1,80,2,80,50,"Fox News","Democrat" +3,2,3176,"tess",4,1,50,2,50,50,"Fox News","Republican" +3,2,3186,"tess",1,1,41,2,41,51,"Fox News","Democrat" +3,2,3188,"tess",2,0,94,3,6,12,"Fox News","Democrat" +3,2,3195,"tess",3,1,79,2,79,41,"Fox News","Democrat" +3,2,3208,"tess",2,0,50,3,50,50,"Fox News","Democrat" +3,2,3214,"tess",3,1,51,3,51,50,"Fox News","Democrat" +3,2,3225,"tess",4,1,42,2,42,55,"Fox News","Republican" +3,2,3230,"tess",1,0,1,3,99,99,"Fox News","Republican" +3,2,3234,"tess",4,1,95,2,95,89,"Fox News","Republican" +3,2,3244,"tess",4,1,47,2,47,65,"Fox News","Republican" +3,2,3259,"tess",4,0,39,2,61,49,"Fox News","Republican" +3,2,3274,"tess",2,1,100,2,100,0,"Fox News","Democrat" +3,2,3295,"tess",4,0,75,2,25,19,"Fox News","Democrat" +3,2,3304,"tess",4,0,30,2,70,1,"Fox News","Republican" +3,2,3342,"tess",2,1,87,3,87,84,"Fox News","Republican" +3,2,3346,"tess",4,0,60,2,40,50,"Fox News","Republican" +3,2,3348,"tess",3,0,11,3,89,40,"Fox News","Democrat" +3,2,3356,"tess",1,0,29,3,71,0,"Fox News","Democrat" +3,2,3365,"tess",1,0,80,2,20,20,"Fox News","Democrat" +3,2,3407,"tess",2,0,30,3,70,9,"Fox News","Republican" +3,2,3433,"tess",3,0,80,3,20,22,"Fox News","Democrat" +3,2,3437,"tess",1,1,60,3,60,55,"Fox News","Republican" +3,2,3452,"tess",3,1,77,2,77,91,"Fox News","Republican" +3,2,3454,"tess",1,1,100,3,100,98,"Fox News","Democrat" +3,2,3468,"tess",1,0,53,3,47,45,"Fox News","Democrat" +3,2,3488,"tess",2,0,NA,3,NA,9,"Fox News","Republican" +3,2,3508,"tess",4,0,15,2,85,7,"Fox News","Republican" +3,2,3512,"tess",2,1,2,3,2,1,"Fox News","Republican" +3,2,3554,"tess",3,0,19,2,81,21,"Fox News","Democrat" +3,2,3564,"tess",2,1,95,2,95,97,"Fox News","Republican" +3,2,3568,"tess",3,1,59,3,59,69,"Fox News","Democrat" +3,2,3573,"tess",1,1,80,3,80,45,"Fox News","Democrat" +3,2,3582,"tess",2,1,99,3,99,98,"Fox News","Republican" +3,2,3587,"tess",1,0,0,3,100,19,"Fox News","Democrat" +3,2,3589,"tess",3,1,50,2,50,97,"Fox News","Democrat" +3,2,3593,"tess",2,0,50,3,50,10,"Fox News","Democrat" +3,2,3607,"tess",4,0,100,2,0,0,"Fox News","Republican" +3,2,3609,"tess",3,1,100,3,100,97,"Fox News","Republican" +3,2,3611,"tess",1,0,0,2,100,1,"Fox News","Democrat" +3,2,3612,"tess",2,1,50,3,50,50,"Fox News","Republican" +3,2,3627,"tess",1,1,90,2,90,100,"Fox News","Republican" +3,2,3631,"tess",1,1,96,3,96,90,"Fox News","Democrat" +3,2,3632,"tess",2,0,60,2,40,39,"Fox News","Republican" +3,2,3663,"tess",1,0,38,2,62,15,"Fox News","Democrat" +3,2,3673,"tess",2,0,17,2,83,15,"Fox News","Republican" +3,2,3676,"tess",3,0,40,2,60,2,"Fox News","Republican" +3,2,3695,"tess",1,0,19,3,81,24,"Fox News","Republican" +3,2,3708,"tess",2,1,6,3,6,17,"Fox News","Democrat" +3,2,3722,"tess",1,1,82,2,82,70,"Fox News","Democrat" +3,2,3726,"tess",1,0,54,3,46,41,"Fox News","Democrat" +3,2,3747,"tess",1,0,56,2,44,15,"Fox News","Democrat" +3,2,3759,"tess",1,1,0,2,0,35,"Fox News","Republican" +3,2,3767,"tess",1,0,15,3,85,1,"Fox News","Republican" +3,2,3774,"tess",2,0,70,2,30,60,"Fox News","Neither" +3,2,3776,"tess",2,1,44,2,44,100,"Fox News","Democrat" +3,2,3787,"tess",3,0,0,3,100,83,"Fox News","Democrat" +3,2,3793,"tess",3,1,95,2,95,81,"Fox News","Republican" +3,2,3795,"tess",3,1,94,3,94,14,"Fox News","Democrat" +3,2,3799,"tess",3,0,64,3,36,24,"Fox News","Republican" +3,2,3810,"tess",3,1,21,3,21,20,"Fox News","Democrat" +3,2,3811,"tess",1,0,90,2,10,9,"Fox News","Republican" +3,2,3813,"tess",3,1,50,3,50,39,"Fox News","Republican" +3,2,3819,"tess",3,0,70,3,30,45,"Fox News","Republican" +3,2,3848,"tess",3,0,10,3,90,80,"Fox News","Republican" +3,2,3851,"tess",1,0,98,3,2,75,"Fox News","Republican" +3,2,3890,"tess",3,1,90,3,90,40,"Fox News","Republican" +3,2,3895,"tess",1,0,59,2,41,60,"Fox News","Republican" +3,2,3904,"tess",2,0,50,3,50,50,"Fox News","Democrat" +3,2,3909,"tess",2,0,9,3,91,70,"Fox News","Democrat" +3,2,3915,"tess",2,1,99,2,99,90,"Fox News","Democrat" +3,2,3919,"tess",1,0,15,3,85,50,"Fox News","Democrat" +3,2,3923,"tess",3,0,NA,3,NA,0,"Fox News","Democrat" +3,2,3946,"tess",2,1,90,2,90,79,"Fox News","Democrat" +3,2,3958,"tess",3,0,50,3,50,40,"Fox News","Republican" +3,2,3965,"tess",2,1,10,2,10,4,"Fox News","Democrat" +3,2,4008,"tess",3,1,33,2,33,31,"Fox News","Republican" +3,2,4027,"tess",2,1,28,3,28,70,"Fox News","Republican" +3,2,4035,"tess",1,0,1,2,99,0,"Fox News","Republican" +3,2,4069,"tess",3,0,61,2,39,40,"Fox News","Democrat" +3,2,4072,"tess",2,0,19,2,81,24,"Fox News","Democrat" +3,2,4075,"tess",1,0,90,3,10,49,"Fox News","Democrat" +3,2,4076,"tess",3,0,97,2,3,3,"Fox News","Republican" +3,2,4079,"tess",1,0,55,3,45,33,"Fox News","Democrat" +3,2,4084,"tess",1,1,34,3,34,90,"Fox News","Republican" +3,2,4139,"tess",3,0,95,3,5,50,"Fox News","Republican" +3,2,4142,"tess",1,1,100,2,100,0,"Fox News","Democrat" +3,2,4175,"tess",2,1,30,2,30,30,"Fox News","Democrat" +3,2,4178,"tess",3,1,40,3,40,19,"Fox News","Democrat" +3,2,4195,"tess",3,1,80,2,80,70,"Fox News","Republican" +3,2,4199,"tess",1,1,2,2,2,5,"Fox News","Democrat" +3,2,4200,"tess",3,0,50,3,50,21,"Fox News","Democrat" +3,2,4216,"tess",1,1,100,3,100,95,"Fox News","Democrat" +3,2,4218,"tess",2,0,100,2,0,2,"Fox News","Democrat" +3,2,4269,"tess",3,1,70,3,70,90,"Fox News","Republican" +3,2,4278,"tess",1,1,98,3,98,98,"Fox News","Republican" +3,2,4282,"tess",3,1,65,2,65,8,"Fox News","Republican" +3,2,4285,"tess",3,1,99,3,99,99,"Fox News","Neither" +3,2,4290,"tess",1,1,17,3,17,81,"Fox News","Democrat" +3,2,4302,"tess",1,1,83,2,83,34,"Fox News","Democrat" +3,2,4308,"tess",2,0,0,2,100,2,"Fox News","Democrat" +3,2,4311,"tess",2,0,40,2,60,16,"Fox News","Democrat" +3,2,4334,"tess",3,1,93,3,93,100,"Fox News","Republican" +3,2,4356,"tess",4,0,50,2,50,50,"Fox News","Republican" +3,2,4357,"tess",2,1,0,2,0,100,"Fox News","Democrat" +3,2,4367,"tess",1,1,7,2,7,98,"Fox News","Republican" +3,2,4370,"tess",1,0,25,2,75,60,"Fox News","Republican" +3,2,4390,"tess",3,1,26,2,26,26,"Fox News","Democrat" +3,2,4403,"tess",3,1,40,3,40,60,"Fox News","Republican" +3,2,4451,"tess",2,0,84,3,16,73,"Fox News","Republican" +3,2,4452,"tess",1,1,100,2,100,92,"Fox News","Republican" +3,2,4455,"tess",1,1,100,3,100,100,"Fox News","Democrat" +3,2,4459,"tess",1,1,18,3,18,96,"Fox News","Democrat" +3,2,4486,"tess",2,0,90,3,10,50,"Fox News","Republican" +3,2,4512,"tess",1,1,29,2,29,85,"Fox News","Democrat" +3,2,4523,"tess",3,1,82,3,82,91,"Fox News","Republican" +3,2,4525,"tess",1,0,50,2,50,2,"Fox News","Republican" +3,2,4574,"tess",2,1,89,3,89,32,"Fox News","Democrat" +3,2,4584,"tess",1,1,NA,2,NA,100,"Fox News","Democrat" +3,2,4587,"tess",1,1,99,2,99,32,"Fox News","Republican" +3,2,4627,"tess",3,0,12,2,88,87,"Fox News","Democrat" +3,2,4628,"tess",4,1,50,2,50,51,"Fox News","Democrat" +3,2,4633,"tess",2,1,70,3,70,50,"Fox News","Democrat" +3,2,4656,"tess",1,1,28,2,28,49,"Fox News","Democrat" +3,2,4674,"tess",3,0,16,3,84,84,"Fox News","Republican" +3,2,4683,"tess",2,0,0,2,100,19,"Fox News","Neither" +3,2,4690,"tess",2,0,0,2,100,0,"Fox News","Democrat" +3,2,4700,"tess",3,0,90,3,10,41,"Fox News","Republican" +3,2,4713,"tess",2,0,90,2,10,80,"Fox News","Neither" +3,2,4715,"tess",2,0,18,2,82,31,"Fox News","Republican" +3,2,4722,"tess",2,1,42,3,42,31,"Fox News","Democrat" +3,2,4737,"tess",1,1,98,2,98,1,"Fox News","Democrat" +3,2,4739,"tess",4,0,98,2,2,96,"Fox News","Republican" +3,2,4774,"tess",3,0,25,3,75,70,"Fox News","Republican" +3,2,4780,"tess",1,1,94,3,94,91,"Fox News","Republican" +3,2,4792,"tess",1,0,NA,3,NA,56,"Fox News","Republican" +3,2,4799,"tess",3,1,67,3,67,51,"Fox News","Republican" +3,2,4807,"tess",2,0,40,3,60,50,"Fox News","Democrat" +3,2,4813,"tess",4,1,100,2,100,91,"Fox News","Democrat" +3,2,4819,"tess",2,1,73,2,73,53,"Fox News","Democrat" +3,2,4823,"tess",1,1,100,2,100,49,"Fox News","Democrat" +3,2,4833,"tess",2,0,89,3,11,94,"Fox News","Democrat" +3,2,4841,"tess",1,1,95,2,95,93,"Fox News","Democrat" +3,2,4897,"tess",1,0,40,3,60,40,"Fox News","Democrat" +3,2,4899,"tess",2,1,96,2,96,90,"Fox News","Democrat" +3,2,4903,"tess",3,0,69,3,31,30,"Fox News","Democrat" +3,2,4905,"tess",3,1,50,2,50,100,"Fox News","Democrat" +3,2,4906,"tess",3,1,94,2,94,92,"Fox News","Republican" +3,2,4908,"tess",3,1,93,2,93,50,"Fox News","Democrat" +3,2,4925,"tess",3,0,29,2,71,2,"Fox News","Democrat" +3,2,4935,"tess",1,0,26,2,74,21,"Fox News","Democrat" +3,2,4964,"tess",4,1,92,2,92,92,"Fox News","Republican" +3,2,4966,"tess",1,0,3,3,97,9,"Fox News","Republican" +3,2,4990,"tess",2,0,49,2,51,50,"Fox News","Republican" +3,2,4998,"tess",2,1,1,3,1,44,"Fox News","Democrat" +3,2,5008,"tess",4,0,11,2,89,0,"Fox News","Republican" +3,2,5027,"tess",4,1,32,2,32,28,"Fox News","Republican" +3,2,5048,"tess",4,1,17,2,17,80,"Fox News","Republican" +3,2,5058,"tess",3,0,40,3,60,20,"Fox News","Republican" +3,2,5068,"tess",4,0,50,2,50,60,"Fox News","Democrat" +3,2,5108,"tess",4,1,26,2,26,72,"Fox News","Republican" +3,2,5114,"tess",2,1,38,3,38,49,"Fox News","Democrat" +3,2,5128,"tess",1,0,70,3,30,51,"Fox News","Democrat" +3,2,5131,"tess",3,0,63,2,37,52,"Fox News","Democrat" +3,2,5137,"tess",4,0,0,2,100,100,"Fox News","Democrat" +3,2,5143,"tess",2,1,67,3,67,21,"Fox News","Republican" +3,2,5162,"tess",2,0,80,2,20,50,"Fox News","Neither" +3,2,5165,"tess",2,1,99,2,99,50,"Fox News","Republican" +3,2,5186,"tess",3,1,98,2,98,96,"Fox News","Republican" +3,2,5192,"tess",3,0,41,3,59,40,"Fox News","Democrat" +3,2,5221,"tess",2,0,36,2,64,19,"Fox News","Republican" +3,2,5225,"tess",1,0,83,3,17,90,"Fox News","Democrat" +3,2,5270,"tess",3,1,NA,3,NA,NA,"Fox News","Republican" +3,2,5275,"tess",1,1,76,3,76,99,"Fox News","Democrat" +3,2,5290,"tess",2,0,29,3,71,0,"Fox News","Republican" +3,2,5299,"tess",3,0,52,3,48,44,"Fox News","Democrat" +3,2,5311,"tess",3,1,77,2,77,90,"Fox News","Republican" +3,2,5318,"tess",4,0,0,2,100,100,"Fox News","Democrat" +3,2,5319,"tess",1,0,30,3,70,60,"Fox News","Democrat" +3,2,5326,"tess",2,0,69,2,31,53,"Fox News","Democrat" +3,2,5327,"tess",4,1,84,2,84,81,"Fox News","Republican" +3,2,5363,"tess",3,1,3,2,3,50,"Fox News","Republican" +3,2,5383,"tess",2,1,90,3,90,81,"Fox News","Republican" +3,2,5385,"tess",1,0,92,2,8,38,"Fox News","Democrat" +3,2,5386,"tess",3,1,0,2,0,0,"Fox News","Republican" +3,2,5388,"tess",3,0,59,3,41,57,"Fox News","Republican" +3,2,5389,"tess",2,0,100,2,0,20,"Fox News","Republican" +3,2,5393,"tess",4,0,75,2,25,67,"Fox News","Republican" +3,2,5400,"tess",4,1,81,2,81,98,"Fox News","Republican" +3,2,5407,"tess",3,0,84,2,16,10,"Fox News","Republican" +3,2,5412,"tess",1,1,97,2,97,88,"Fox News","Republican" +3,2,5423,"tess",4,0,93,2,7,6,"Fox News","Democrat" +3,2,5430,"tess",1,0,0,3,100,100,"Fox News","Democrat" +3,2,5447,"tess",1,0,16,3,84,83,"Fox News","Democrat" +3,2,5448,"tess",1,1,93,3,93,75,"Fox News","Democrat" +3,2,5456,"tess",3,0,98,3,2,79,"Fox News","Democrat" +3,2,5462,"tess",2,0,32,3,68,58,"Fox News","Republican" +3,2,5480,"tess",4,0,NA,2,NA,1,"Fox News","Republican" +3,2,5500,"tess",1,1,65,2,65,40,"Fox News","Democrat" +3,2,5504,"tess",3,0,50,3,50,49,"Fox News","Republican" +3,2,5515,"tess",4,1,90,2,90,80,"Fox News","Republican" +3,2,5519,"tess",2,1,18,2,18,90,"Fox News","Democrat" +3,2,5540,"tess",1,1,NA,3,NA,NA,"Fox News","Democrat" +3,2,5544,"tess",2,1,96,2,96,94,"Fox News","Republican" +3,2,5553,"tess",3,1,98,3,98,90,"Fox News","Republican" +3,2,5559,"tess",3,0,70,2,30,42,"Fox News","Republican" +3,2,5561,"tess",2,1,85,3,85,0,"Fox News","Republican" +3,2,5567,"tess",4,1,81,2,81,20,"Fox News","Republican" +3,2,5569,"tess",2,0,91,2,9,2,"Fox News","Democrat" +3,2,5570,"tess",3,1,50,2,50,70,"Fox News","Democrat" +3,2,5579,"tess",4,1,91,2,91,97,"Fox News","Republican" +3,2,5584,"tess",1,1,50,3,50,70,"Fox News","Democrat" +3,2,5593,"tess",3,1,50,2,50,50,"Fox News","Republican" +3,2,5594,"tess",4,1,96,2,96,88,"Fox News","Republican" +3,2,5595,"tess",3,1,0,3,0,99,"Fox News","Republican" +3,2,5611,"tess",2,1,79,3,79,61,"Fox News","Republican" +3,2,5613,"tess",4,0,27,2,73,3,"Fox News","Republican" +3,2,5615,"tess",4,0,70,2,30,70,"Fox News","Democrat" +3,2,5621,"tess",1,0,0,3,100,100,"Fox News","Democrat" +3,2,5633,"tess",1,1,100,2,100,80,"Fox News","Democrat" +3,2,5635,"tess",3,0,50,2,50,1,"Fox News","Republican" +3,2,5648,"tess",2,1,34,2,34,92,"Fox News","Democrat" +3,2,5664,"tess",4,0,4,2,96,0,"Fox News","Democrat" +3,2,5676,"tess",1,1,50,2,50,11,"Fox News","Democrat" +3,2,5677,"tess",4,0,10,2,90,7,"Fox News","Republican" +3,2,5679,"tess",1,1,75,2,75,26,"Fox News","Democrat" +3,2,5684,"tess",3,0,91,3,9,78,"Fox News","Democrat" +3,2,5706,"tess",4,1,30,2,30,61,"Fox News","Republican" +3,2,5715,"tess",3,0,4,3,96,75,"Fox News","Republican" +3,2,5720,"tess",2,1,79,2,79,80,"Fox News","Republican" +3,2,5725,"tess",1,0,6,2,94,7,"Fox News","Republican" +3,2,5729,"tess",1,1,100,3,100,98,"Fox News","Republican" +3,2,5734,"tess",2,0,70,2,30,2,"Fox News","Democrat" +3,2,5735,"tess",4,1,89,2,89,50,"Fox News","Republican" +3,2,5740,"tess",3,1,0,3,0,10,"Fox News","Democrat" +3,2,5744,"tess",2,1,11,3,11,73,"Fox News","Democrat" +3,2,5745,"tess",1,1,0,3,0,70,"Fox News","Democrat" +3,2,5746,"tess",3,0,NA,3,NA,NA,"Fox News","Democrat" +3,2,5763,"tess",1,1,63,2,63,41,"Fox News","Democrat" +3,2,5803,"tess",2,1,37,2,37,29,"Fox News","Republican" +3,2,5804,"tess",4,0,39,2,61,49,"Fox News","Republican" +3,2,5824,"tess",3,1,0,3,0,100,"Fox News","Democrat" +3,2,5825,"tess",3,0,50,3,50,0,"Fox News","Republican" +3,2,5826,"tess",4,1,100,2,100,57,"Fox News","Republican" +3,2,5844,"tess",2,0,100,2,0,0,"Fox News","Democrat" +3,2,5885,"tess",3,1,52,2,52,49,"Fox News","Republican" +3,2,5886,"tess",4,0,63,2,37,19,"Fox News","Republican" +3,2,5889,"tess",3,0,52,2,48,41,"Fox News","Democrat" +3,2,5896,"tess",4,1,90,2,90,85,"Fox News","Republican" +3,2,5899,"tess",3,1,0,2,0,10,"Fox News","Democrat" +3,2,5916,"tess",3,0,40,3,60,40,"Fox News","Republican" +3,2,5920,"tess",2,1,69,2,69,41,"Fox News","Republican" +3,2,5922,"tess",2,0,1,3,99,96,"Fox News","Republican" +3,2,5925,"tess",2,1,20,2,20,35,"Fox News","Republican" +3,2,5931,"tess",2,0,73,3,27,3,"Fox News","Democrat" +3,2,5946,"tess",2,1,53,3,53,9,"Fox News","Republican" +3,2,5959,"tess",4,1,49,2,49,99,"Fox News","Republican" +3,2,5987,"tess",2,0,3,3,97,90,"Fox News","Democrat" +3,2,5988,"tess",3,1,87,2,87,91,"Fox News","Democrat" +3,2,5990,"tess",1,1,81,3,81,90,"Fox News","Democrat" +3,2,5999,"tess",3,0,4,3,96,89,"Fox News","Democrat" +3,2,6012,"tess",1,1,60,2,60,30,"Fox News","Republican" +3,2,6039,"tess",3,0,80,2,20,52,"Fox News","Republican" +3,2,6041,"tess",4,1,90,2,90,89,"Fox News","Democrat" +3,2,6042,"tess",3,0,98,3,2,1,"Fox News","Neither" +3,2,6046,"tess",3,0,59,2,41,66,"Fox News","Democrat" +3,2,6048,"tess",2,0,50,3,50,87,"Fox News","Republican" +3,2,6050,"tess",4,1,54,2,54,83,"Fox News","Republican" +3,2,6061,"tess",3,0,30,3,70,71,"Fox News","Democrat" +3,2,6069,"tess",3,1,78,2,78,89,"Fox News","Democrat" +3,2,6074,"tess",2,0,46,3,54,18,"Fox News","Republican" +3,2,6084,"tess",3,1,50,2,50,98,"Fox News","Democrat" +3,2,6087,"tess",2,0,59,3,41,0,"Fox News","Democrat" +3,2,6088,"tess",4,1,91,2,91,90,"Fox News","Republican" +3,2,6095,"tess",1,0,99,3,1,99,"Fox News","Democrat" +3,2,6096,"tess",4,0,3,2,97,1,"Fox News","Republican" +3,2,6111,"tess",2,0,36,2,64,22,"Fox News","Democrat" +3,2,6116,"tess",1,1,95,2,95,95,"Fox News","Democrat" +3,2,6121,"tess",2,1,64,3,64,58,"Fox News","Democrat" +3,2,6146,"tess",3,1,96,2,96,86,"Fox News","Republican" +3,2,6151,"tess",2,0,30,3,70,29,"Fox News","Democrat" +3,2,6155,"tess",3,1,1,3,1,93,"Fox News","Democrat" +3,2,6158,"tess",1,1,70,3,70,49,"Fox News","Republican" +3,2,6162,"tess",2,0,52,2,48,67,"Fox News","Democrat" +3,2,6164,"tess",3,1,10,3,10,31,"Fox News","Democrat" +3,2,6179,"tess",4,1,88,2,88,73,"Fox News","Democrat" +3,2,6188,"tess",4,1,90,2,90,90,"Fox News","Republican" +3,2,6199,"tess",4,1,4,2,4,93,"Fox News","Republican" +3,2,6209,"tess",3,0,100,3,0,0,"Fox News","Democrat" +3,2,6215,"tess",3,1,50,3,50,50,"Fox News","Republican" +3,2,6225,"tess",3,1,35,3,35,40,"Fox News","Democrat" +3,2,6246,"tess",3,1,69,2,69,69,"Fox News","Republican" +3,2,6248,"tess",2,1,94,3,94,99,"Fox News","Republican" +3,2,6249,"tess",3,1,19,2,19,100,"Fox News","Democrat" +3,2,6251,"tess",1,0,88,3,12,81,"Fox News","Democrat" +3,2,6258,"tess",3,1,32,3,32,54,"Fox News","Republican" +3,2,6265,"tess",1,1,85,3,85,50,"Fox News","Democrat" +3,2,6268,"tess",1,1,89,3,89,50,"Fox News","Republican" +3,2,6269,"tess",2,1,30,2,30,50,"Fox News","Democrat" +3,2,6270,"tess",1,0,38,3,62,70,"Fox News","Democrat" +3,2,6279,"tess",3,0,88,2,12,31,"Fox News","Republican" +3,2,6294,"tess",1,0,1,2,99,0,"Fox News","Republican" +3,2,6301,"tess",1,1,3,3,3,99,"Fox News","Democrat" +3,2,6312,"tess",4,1,95,2,95,5,"Fox News","Republican" +3,2,6329,"tess",4,0,50,2,50,20,"Fox News","Democrat" +3,2,6333,"tess",2,1,65,2,65,74,"Fox News","Republican" +3,2,6354,"tess",3,0,30,3,70,60,"Fox News","Republican" +3,2,6361,"tess",1,1,20,3,20,90,"Fox News","Democrat" +3,2,6362,"tess",2,0,0,3,100,0,"Fox News","Republican" +3,2,6383,"tess",1,0,71,3,29,18,"Fox News","Democrat" +3,2,6391,"tess",3,1,94,2,94,91,"Fox News","Democrat" +3,2,6397,"tess",4,0,99,2,1,100,"Fox News","Republican" +3,2,6401,"tess",2,0,92,2,8,1,"Fox News","Democrat" +3,2,6405,"tess",1,0,1,3,99,50,"Fox News","Republican" +3,2,6414,"tess",1,1,50,3,50,80,"Fox News","Republican" +3,2,6419,"tess",3,1,100,2,100,97,"Fox News","Democrat" +3,2,6424,"tess",3,1,10,3,10,92,"Fox News","Republican" +3,2,6434,"tess",1,1,3,2,3,3,"Fox News","Democrat" +3,2,6440,"tess",2,1,50,3,50,7,"Fox News","Republican" +3,2,6449,"tess",3,1,11,2,11,18,"Fox News","Republican" +3,2,6452,"tess",2,1,96,2,96,98,"Fox News","Republican" +3,2,6462,"tess",2,1,90,3,90,90,"Fox News","Democrat" +3,2,6467,"tess",3,0,85,2,15,9,"Fox News","Democrat" +3,2,6468,"tess",3,0,81,2,19,91,"Fox News","Republican" +3,2,6469,"tess",2,1,69,3,69,46,"Fox News","Democrat" +3,2,6473,"tess",3,1,92,2,92,96,"Fox News","Republican" +3,2,6489,"tess",3,0,20,3,80,77,"Fox News","Democrat" +3,2,6491,"tess",2,1,97,2,97,100,"Fox News","Neither" +3,2,6507,"tess",2,0,7,3,93,43,"Fox News","Republican" +3,2,6519,"tess",1,0,51,2,49,49,"Fox News","Republican" +3,2,6532,"tess",3,0,90,2,10,10,"Fox News","Democrat" +3,2,6534,"tess",4,1,76,2,76,50,"Fox News","Republican" +3,2,6538,"tess",1,1,10,2,10,50,"Fox News","Republican" +3,2,6541,"tess",1,1,100,2,100,67,"Fox News","Democrat" +3,2,6547,"tess",3,1,10,2,10,10,"Fox News","Republican" +3,2,6571,"tess",4,1,48,2,48,21,"Fox News","Republican" +3,2,6581,"tess",1,1,96,3,96,90,"Fox News","Democrat" +3,2,6587,"tess",1,1,50,2,50,80,"Fox News","Republican" +3,2,6588,"tess",2,0,87,3,13,20,"Fox News","Democrat" +3,2,6600,"tess",1,0,50,3,50,23,"Fox News","Republican" +3,2,6607,"tess",3,0,1,2,99,99,"Fox News","Democrat" +3,2,6609,"tess",1,1,95,3,95,24,"Fox News","Democrat" +3,2,6617,"tess",2,0,86,2,14,6,"Fox News","Democrat" +3,2,6619,"tess",3,0,60,2,40,60,"Fox News","Republican" +3,2,6621,"tess",3,0,75,3,25,25,"Fox News","Democrat" +3,2,6633,"tess",4,0,51,2,49,8,"Fox News","Republican" +3,2,6634,"tess",1,1,100,3,100,100,"Fox News","Republican" +3,2,6635,"tess",4,0,100,2,0,69,"Fox News","Republican" +3,2,6640,"tess",4,0,1,2,99,0,"Fox News","Republican" +3,2,6660,"tess",2,1,51,3,51,68,"Fox News","Democrat" +3,2,6661,"tess",2,1,76,3,76,51,"Fox News","Republican" +3,2,6675,"tess",4,0,79,2,21,0,"Fox News","Democrat" +3,2,6685,"tess",2,1,38,2,38,84,"Fox News","Republican" +3,2,6718,"tess",3,1,41,2,41,70,"Fox News","Republican" +3,2,6733,"tess",1,0,13,3,87,0,"Fox News","Republican" +3,2,6741,"tess",3,0,81,2,19,10,"Fox News","Democrat" +3,2,6755,"tess",1,0,80,2,20,69,"Fox News","Republican" +3,2,6758,"tess",3,1,29,3,29,39,"Fox News","Republican" +3,2,6760,"tess",1,1,65,3,65,40,"Fox News","Democrat" +3,2,6775,"tess",4,0,31,2,69,11,"Fox News","Republican" +3,2,6777,"tess",2,0,99,2,1,5,"Fox News","Democrat" +3,2,6780,"tess",1,0,17,2,83,62,"Fox News","Democrat" +3,2,6788,"tess",1,1,93,2,93,94,"Fox News","Democrat" +3,2,6791,"tess",1,0,50,2,50,50,"Fox News","Democrat" +3,2,6792,"tess",2,1,0,3,0,0,"Fox News","Democrat" +3,2,6797,"tess",2,0,81,2,19,19,"Fox News","Democrat" +3,2,6802,"tess",2,0,40,2,60,12,"Fox News","Democrat" +3,2,6804,"tess",3,0,20,3,80,21,"Fox News","Republican" +3,2,6805,"tess",2,1,30,3,30,29,"Fox News","Republican" +3,2,6820,"tess",1,0,98,3,2,10,"Fox News","Republican" +3,2,6825,"tess",2,1,99,2,99,99,"Fox News","Democrat" +3,2,6835,"tess",2,1,50,3,50,65,"Fox News","Democrat" +3,2,6837,"tess",2,0,0,2,100,0,"Fox News","Democrat" +3,2,6842,"tess",4,0,95,2,5,5,"Fox News","Republican" +3,2,6843,"tess",1,0,60,3,40,60,"Fox News","Republican" +3,2,6853,"tess",1,1,30,3,30,60,"Fox News","Democrat" +3,2,6864,"tess",1,1,5,3,5,94,"Fox News","Republican" +3,2,6869,"tess",1,1,88,3,88,88,"Fox News","Democrat" +3,2,6883,"tess",2,1,26,2,26,69,"Fox News","Democrat" +3,2,6897,"tess",2,1,65,3,65,65,"Fox News","Democrat" +3,2,6920,"tess",1,0,71,2,29,63,"Fox News","Republican" +3,2,6927,"tess",2,1,62,3,62,73,"Fox News","Democrat" +3,2,6938,"tess",3,0,91,2,9,8,"Fox News","Democrat" +3,2,6951,"tess",3,0,50,3,50,27,"Fox News","Democrat" +3,2,6971,"tess",4,1,69,2,69,50,"Fox News","Republican" +3,2,6984,"tess",4,0,21,2,79,10,"Fox News","Republican" +3,2,7046,"tess",2,0,20,3,80,60,"Fox News","Democrat" +3,2,7060,"tess",2,1,50,3,50,89,"Fox News","Democrat" +3,2,7066,"tess",1,0,55,2,45,59,"Fox News","Democrat" +3,2,7073,"tess",3,1,100,2,100,100,"Fox News","Republican" +3,2,7078,"tess",3,1,70,2,70,80,"Fox News","Republican" +3,2,7099,"tess",1,0,81,3,19,19,"Fox News","Democrat" +3,2,7104,"tess",1,0,55,3,45,8,"Fox News","Republican" +3,2,7106,"tess",4,0,0,2,100,1,"Fox News","Republican" +3,2,7122,"tess",3,1,69,2,69,68,"Fox News","Democrat" +3,2,7125,"tess",2,0,86,3,14,14,"Fox News","Republican" +3,2,7153,"tess",3,1,1,2,1,50,"Fox News","Democrat" +3,2,7161,"tess",1,0,55,3,45,58,"Fox News","Democrat" +3,2,7199,"tess",4,0,1,2,99,1,"Fox News","Republican" +3,2,7201,"tess",1,0,50,2,50,100,"Fox News","Democrat" +3,2,7216,"tess",2,0,92,2,8,0,"Fox News","Democrat" +3,2,7218,"tess",1,1,21,2,21,49,"Fox News","Democrat" +3,2,7224,"tess",4,1,66,2,66,13,"Fox News","Republican" +3,2,7226,"tess",2,0,45,2,55,39,"Fox News","Democrat" +3,2,7241,"tess",3,0,98,3,2,0,"Fox News","Neither" +3,2,7248,"tess",3,1,90,3,90,80,"Fox News","Democrat" +3,2,7252,"tess",2,1,100,2,100,100,"Fox News","Republican" +3,2,7253,"tess",1,0,56,2,44,44,"Fox News","Neither" +3,2,7266,"tess",1,1,100,3,100,20,"Fox News","Republican" +3,2,7273,"tess",3,1,44,2,44,71,"Fox News","Democrat" +3,2,7275,"tess",3,1,100,2,100,100,"Fox News","Republican" +3,2,7276,"tess",2,0,85,3,15,20,"Fox News","Republican" +3,2,7280,"tess",3,0,43,2,57,11,"Fox News","Neither" +3,2,7287,"tess",1,1,89,2,89,0,"Fox News","Republican" +3,2,7297,"tess",1,1,69,3,69,100,"Fox News","Democrat" +3,2,7303,"tess",2,0,20,2,80,30,"Fox News","Republican" +3,2,7307,"tess",1,0,97,3,3,7,"Fox News","Democrat" +3,2,7323,"tess",4,1,98,2,98,99,"Fox News","Republican" +3,2,7338,"tess",3,0,1,3,99,99,"Fox News","Democrat" +3,2,7353,"tess",2,0,62,2,38,28,"Fox News","Democrat" +3,2,7356,"tess",1,1,69,2,69,75,"Fox News","Democrat" +3,2,7360,"tess",3,1,10,3,10,10,"Fox News","Democrat" +3,2,7370,"tess",2,1,0,2,0,5,"Fox News","Republican" +3,2,7397,"tess",2,0,100,3,0,0,"Fox News","Democrat" +3,2,7398,"tess",4,0,51,2,49,0,"Fox News","Democrat" +3,2,7407,"tess",3,0,60,3,40,40,"Fox News","Republican" +3,2,7412,"tess",2,0,0,3,100,80,"Fox News","Republican" +3,2,7427,"tess",4,1,39,2,39,80,"Fox News","Democrat" +3,2,7432,"tess",2,1,20,3,20,20,"Fox News","Democrat" +3,2,7440,"tess",4,0,8,2,92,2,"Fox News","Republican" +3,2,7448,"tess",3,1,1,2,1,51,"Fox News","Democrat" +3,2,7450,"tess",3,1,34,2,34,36,"Fox News","Democrat" +3,2,7452,"tess",2,0,44,3,56,50,"Fox News","Democrat" +3,2,7453,"tess",1,1,5,2,5,30,"Fox News","Republican" +3,2,7466,"tess",3,1,30,2,30,50,"Fox News","Republican" +3,2,7470,"tess",2,0,85,3,15,15,"Fox News","Republican" +3,2,7479,"tess",2,1,0,3,0,0,"Fox News","Democrat" +3,2,7486,"tess",1,1,98,3,98,91,"Fox News","Democrat" +3,2,7498,"tess",3,1,61,2,61,75,"Fox News","Republican" +3,2,7501,"tess",2,0,69,2,31,19,"Fox News","Republican" +3,2,7504,"tess",4,1,78,2,78,79,"Fox News","Republican" +3,2,7528,"tess",3,0,50,3,50,20,"Fox News","Republican" +3,2,7542,"tess",3,1,93,2,93,9,"Fox News","Republican" +3,2,7543,"tess",2,1,5,2,5,100,"Fox News","Republican" +3,2,7558,"tess",4,1,0,2,0,0,"Fox News","Democrat" +3,2,7573,"tess",4,1,94,2,94,1,"Fox News","Democrat" +3,2,7577,"tess",2,1,11,2,11,31,"Fox News","Democrat" +3,2,7580,"tess",4,0,72,2,28,40,"Fox News","Republican" +3,2,7586,"tess",4,1,50,2,50,100,"Fox News","Democrat" +3,2,7588,"tess",3,1,73,2,73,55,"Fox News","Republican" +3,2,7605,"tess",2,0,10,3,90,0,"Fox News","Republican" +3,2,7615,"tess",3,1,90,3,90,70,"Fox News","Republican" +3,2,7623,"tess",2,1,80,2,80,10,"Fox News","Republican" +3,2,7631,"tess",1,1,20,3,20,99,"Fox News","Democrat" +3,2,7634,"tess",1,0,10,2,90,40,"Fox News","Republican" +3,2,7640,"tess",1,1,29,2,29,80,"Fox News","Republican" +3,2,7696,"tess",3,0,70,2,30,36,"Fox News","Democrat" +3,2,7759,"tess",3,1,78,3,78,80,"Fox News","Democrat" +3,2,7783,"tess",3,0,71,2,29,30,"Fox News","Republican" +3,2,7786,"tess",1,0,50,3,50,30,"Fox News","Democrat" +3,2,7799,"tess",3,1,95,2,95,90,"Fox News","Democrat" +3,2,7819,"tess",4,1,67,2,67,52,"Fox News","Democrat" +3,2,7820,"tess",3,1,9,2,9,10,"Fox News","Republican" +3,2,7822,"tess",3,1,51,3,51,40,"Fox News","Democrat" +3,2,7844,"tess",2,1,10,2,10,20,"Fox News","Republican" +3,2,7854,"tess",2,0,25,3,75,47,"Fox News","Democrat" +3,2,7856,"tess",4,0,46,2,54,47,"Fox News","Republican" +3,2,7861,"tess",2,0,100,2,0,47,"Fox News","Republican" +3,2,7872,"tess",1,0,69,2,31,53,"Fox News","Democrat" +3,2,7880,"tess",1,1,93,2,93,88,"Fox News","Democrat" +3,2,7884,"tess",3,0,10,2,90,90,"Fox News","Democrat" +3,2,7906,"tess",1,1,99,2,99,90,"Fox News","Republican" +3,2,7908,"tess",2,0,99,3,1,1,"Fox News","Republican" +3,2,7910,"tess",2,1,97,3,97,26,"Fox News","Democrat" +3,2,7922,"tess",3,1,7,3,7,79,"Fox News","Democrat" +3,2,7930,"tess",1,1,51,2,51,6,"Fox News","Republican" +3,2,7936,"tess",1,1,0,3,0,60,"Fox News","Democrat" +3,2,7946,"tess",4,1,60,2,60,60,"Fox News","Democrat" +3,2,7951,"tess",4,1,0,2,0,77,"Fox News","Republican" +3,2,7957,"tess",2,1,50,2,50,50,"Fox News","Democrat" +3,2,7965,"tess",2,0,6,3,94,37,"Fox News","Democrat" +3,2,7967,"tess",4,1,100,2,100,96,"Fox News","Democrat" +3,2,7968,"tess",2,1,60,2,60,50,"Fox News","Democrat" +3,2,7973,"tess",1,1,13,3,13,47,"Fox News","Republican" +3,2,7987,"tess",2,1,86,3,86,63,"Fox News","Democrat" +3,2,7995,"tess",1,1,96,2,96,92,"Fox News","Republican" +3,2,7998,"tess",2,1,25,2,25,21,"Fox News","Democrat" +3,2,8000,"tess",4,1,71,2,71,61,"Fox News","Democrat" +3,2,8001,"tess",2,1,81,2,81,10,"Fox News","Republican" +3,2,8010,"tess",1,1,90,2,90,50,"Fox News","Republican" +3,2,8011,"tess",2,0,39,3,61,20,"Fox News","Republican" +3,2,8023,"tess",3,0,42,3,58,12,"Fox News","Democrat" +3,2,8042,"tess",1,0,40,3,60,60,"Fox News","Republican" +3,2,8049,"tess",3,1,78,3,78,98,"Fox News","Republican" +3,2,8061,"tess",3,0,12,3,88,41,"Fox News","Republican" +3,2,8063,"tess",1,1,80,3,80,94,"Fox News","Republican" +3,2,8069,"tess",2,0,75,3,25,50,"Fox News","Democrat" +3,2,8078,"tess",3,0,50,3,50,39,"Fox News","Republican" +3,2,8095,"tess",1,0,0,3,100,1,"Fox News","Democrat" +3,2,8097,"tess",1,0,68,3,32,73,"Fox News","Republican" +3,2,8104,"tess",3,1,7,2,7,22,"Fox News","Republican" +3,2,8110,"tess",3,0,50,3,50,26,"Fox News","Democrat" +3,2,8112,"tess",1,0,50,3,50,20,"Fox News","Democrat" +3,2,8116,"tess",3,0,8,3,92,76,"Fox News","Democrat" +3,2,8127,"tess",2,0,32,3,68,54,"Fox News","Republican" +3,2,8142,"tess",3,0,89,2,11,90,"Fox News","Democrat" +3,2,8152,"tess",3,0,90,3,10,38,"Fox News","Democrat" +3,2,8176,"tess",2,1,5,3,5,50,"Fox News","Democrat" +3,2,8181,"tess",4,0,1,2,99,1,"Fox News","Republican" +3,2,8190,"tess",3,1,50,2,50,45,"Fox News","Democrat" +3,2,8191,"tess",1,0,60,3,40,40,"Fox News","Democrat" +3,2,8196,"tess",1,1,70,3,70,69,"Fox News","Democrat" +3,2,8197,"tess",2,1,81,3,81,10,"Fox News","Republican" +3,2,8203,"tess",4,1,54,2,54,79,"Fox News","Republican" +3,2,8207,"tess",3,0,51,2,49,2,"Fox News","Democrat" +3,2,8244,"tess",1,0,80,2,20,50,"Fox News","Republican" +3,2,8249,"tess",3,1,99,2,99,5,"Fox News","Democrat" +3,2,8250,"tess",2,1,60,2,60,30,"Fox News","Democrat" +3,2,8252,"tess",2,0,0,2,100,90,"Fox News","Democrat" +3,2,8260,"tess",4,0,0,2,100,0,"Fox News","Neither" +3,2,8267,"tess",2,0,90,3,10,11,"Fox News","Republican" +3,2,8272,"tess",3,1,54,2,54,74,"Fox News","Democrat" +3,2,8308,"tess",3,0,10,3,90,70,"Fox News","Democrat" +3,2,8317,"tess",1,0,2,2,98,2,"Fox News","Republican" +3,2,8331,"tess",2,1,80,3,80,80,"Fox News","Democrat" +3,2,8335,"tess",2,0,25,3,75,3,"Fox News","Republican" +3,2,8345,"tess",2,1,91,3,91,91,"Fox News","Democrat" +3,2,8360,"tess",1,0,98,3,2,0,"Fox News","Democrat" +3,2,8374,"tess",2,0,70,3,30,25,"Fox News","Republican" +3,2,8400,"tess",3,1,51,3,51,99,"Fox News","Democrat" +3,2,8405,"tess",2,1,50,3,50,50,"Fox News","Democrat" +3,2,8406,"tess",3,0,50,3,50,20,"Fox News","Democrat" +3,2,8432,"tess",3,1,74,2,74,38,"Fox News","Democrat" +3,2,8435,"tess",4,0,45,2,55,58,"Fox News","Republican" +3,2,8449,"tess",1,1,NA,3,NA,NA,"Fox News","Democrat" +3,2,8455,"tess",3,0,98,3,2,2,"Fox News","Republican" +3,2,8466,"tess",3,1,20,3,20,71,"Fox News","Democrat" +3,2,8476,"tess",1,0,45,2,55,30,"Fox News","Democrat" +3,2,8503,"tess",3,1,80,3,80,80,"Fox News","Republican" +3,2,8541,"tess",1,0,83,3,17,99,"Fox News","Republican" +3,2,8545,"tess",2,0,57,2,43,50,"Fox News","Republican" +3,2,8556,"tess",4,1,69,2,69,36,"Fox News","Democrat" +3,2,8558,"tess",2,0,22,3,78,49,"Fox News","Republican" +3,2,8568,"tess",1,1,62,2,62,59,"Fox News","Democrat" +3,2,8589,"tess",3,0,50,3,50,50,"Fox News","Democrat" +3,2,8590,"tess",2,1,94,3,94,93,"Fox News","Republican" +3,2,8600,"tess",3,0,30,3,70,70,"Fox News","Democrat" +3,2,8607,"tess",3,1,26,3,26,78,"Fox News","Republican" +3,2,8619,"tess",1,0,36,3,64,63,"Fox News","Republican" +3,2,8638,"tess",2,1,80,3,80,70,"Fox News","Neither" +3,2,8651,"tess",3,1,53,3,53,81,"Fox News","Republican" +3,2,8669,"tess",3,0,50,2,50,0,"Fox News","Democrat" +3,2,8680,"tess",3,1,20,3,20,79,"Fox News","Republican" +3,2,8706,"tess",3,0,NA,3,NA,51,"Fox News","Republican" +3,2,8717,"tess",3,1,90,2,90,33,"Fox News","Republican" +3,2,8724,"tess",2,0,33,2,67,81,"Fox News","Democrat" +3,2,8728,"tess",2,1,26,2,26,25,"Fox News","Republican" +3,2,8731,"tess",3,0,80,3,20,18,"Fox News","Democrat" +3,2,8746,"tess",4,1,51,2,51,92,"Fox News","Republican" +3,2,8782,"tess",4,0,57,2,43,47,"Fox News","Republican" +3,2,8810,"tess",1,0,10,2,90,30,"Fox News","Democrat" +3,2,8819,"tess",4,1,30,2,30,23,"Fox News","Republican" +3,2,8821,"tess",2,0,35,2,65,19,"Fox News","Republican" +3,2,8848,"tess",1,0,100,3,0,99,"Fox News","Democrat" +3,2,8853,"tess",1,0,77,2,23,0,"Fox News","Democrat" +3,2,8877,"tess",4,0,0,2,100,87,"Fox News","Republican" +3,2,8888,"tess",2,0,53,2,47,16,"Fox News","Republican" +3,2,8892,"tess",2,1,80,2,80,20,"Fox News","Democrat" +3,2,8893,"tess",3,0,0,3,100,80,"Fox News","Democrat" +3,2,8925,"tess",3,1,56,3,56,57,"Fox News","Democrat" +3,2,8934,"tess",2,0,1,3,99,99,"Fox News","Democrat" +3,2,8939,"tess",1,1,20,3,20,21,"Fox News","Democrat" +3,2,8941,"tess",3,1,22,3,22,34,"Fox News","Neither" +3,2,8946,"tess",1,1,0,2,0,80,"Fox News","Democrat" +3,2,8953,"tess",1,0,54,2,46,95,"Fox News","Republican" +3,2,8970,"tess",4,1,100,2,100,92,"Fox News","Republican" +3,2,8981,"tess",3,0,50,3,50,51,"Fox News","Democrat" +3,2,8983,"tess",1,0,56,2,44,9,"Fox News","Democrat" +3,2,8995,"tess",3,1,98,3,98,90,"Fox News","Republican" +3,2,9025,"tess",4,0,100,2,0,92,"Fox News","Republican" +3,2,9029,"tess",1,1,98,3,98,0,"Fox News","Neither" +3,2,9034,"tess",4,0,95,2,5,0,"Fox News","Republican" +3,2,9038,"tess",4,1,31,2,31,71,"Fox News","Neither" +3,2,9050,"tess",3,0,91,3,9,10,"Fox News","Republican" +3,2,9057,"tess",4,1,100,2,100,99,"Fox News","Republican" +3,2,9066,"tess",4,0,25,2,75,50,"Fox News","Republican" +3,2,9068,"tess",2,1,55,2,55,25,"Fox News","Democrat" +3,2,9074,"tess",1,1,10,2,10,80,"Fox News","Republican" +3,2,9075,"tess",2,1,99,3,99,99,"Fox News","Democrat" +3,2,9083,"tess",1,1,17,3,17,31,"Fox News","Neither" +3,2,9105,"tess",2,0,50,2,50,1,"Fox News","Democrat" +3,2,9106,"tess",3,1,21,2,21,30,"Fox News","Republican" +3,2,9119,"tess",2,1,41,2,41,20,"Fox News","Democrat" +3,2,9120,"tess",1,1,94,2,94,6,"Fox News","Democrat" +3,2,9135,"tess",3,1,95,3,95,96,"Fox News","Democrat" +3,2,9146,"tess",2,0,97,3,3,6,"Fox News","Republican" +3,2,9148,"tess",2,0,50,3,50,74,"Fox News","Republican" +3,2,9150,"tess",2,0,81,3,19,0,"Fox News","Republican" +3,2,9152,"tess",3,0,48,2,52,23,"Fox News","Democrat" +3,2,9155,"tess",2,1,35,2,35,78,"Fox News","Democrat" +3,2,9166,"tess",4,0,89,2,11,0,"Fox News","Republican" +3,2,9193,"tess",2,1,89,3,89,30,"Fox News","Democrat" +3,2,9199,"tess",2,1,57,2,57,50,"Fox News","Republican" +3,2,9210,"tess",1,0,6,3,94,3,"Fox News","Democrat" +3,2,9230,"tess",1,0,98,2,2,30,"Fox News","Democrat" +3,2,9235,"tess",1,0,70,2,30,6,"Fox News","Democrat" +3,2,9236,"tess",2,1,96,3,96,70,"Fox News","Republican" +3,2,9245,"tess",1,1,90,3,90,89,"Fox News","Republican" +3,2,9247,"tess",3,1,98,3,98,100,"Fox News","Democrat" +3,2,9260,"tess",4,0,80,2,20,20,"Fox News","Republican" +3,2,9267,"tess",1,1,51,2,51,50,"Fox News","Democrat" +3,2,9269,"tess",2,0,45,2,55,24,"Fox News","Democrat" +3,2,9281,"tess",3,1,62,2,62,97,"Fox News","Republican" +3,2,9297,"tess",2,0,NA,3,NA,NA,"Fox News","Republican" +3,2,9301,"tess",1,1,40,2,40,52,"Fox News","Democrat" +3,2,9302,"tess",3,0,31,3,69,30,"Fox News","Democrat" +3,2,9337,"tess",4,1,94,2,94,79,"Fox News","Republican" +3,2,9340,"tess",3,1,90,2,90,42,"Fox News","Democrat" +3,2,9342,"tess",1,1,82,2,82,76,"Fox News","Republican" +3,2,9412,"tess",4,1,1,2,1,50,"Fox News","Republican" +3,2,9420,"tess",1,0,90,3,10,7,"Fox News","Democrat" +3,2,9425,"tess",3,1,93,2,93,51,"Fox News","Democrat" +3,2,9443,"tess",2,1,50,2,50,0,"Fox News","Democrat" +3,2,9471,"tess",4,0,6,2,94,4,"Fox News","Democrat" +3,2,9479,"tess",4,1,98,2,98,99,"Fox News","Democrat" +3,2,9490,"tess",1,0,10,2,90,50,"Fox News","Republican" +3,2,9499,"tess",2,1,47,2,47,49,"Fox News","Democrat" +3,2,9500,"tess",1,0,80,3,20,0,"Fox News","Republican" +3,2,9512,"tess",3,1,100,2,100,99,"Fox News","Democrat" +3,2,9514,"tess",3,1,55,3,55,56,"Fox News","Republican" +3,2,9517,"tess",2,1,99,2,99,1,"Fox News","Neither" +3,2,9536,"tess",2,1,89,2,89,31,"Fox News","Democrat" +3,2,9538,"tess",2,1,NA,3,NA,NA,"Fox News","Republican" +3,2,9563,"tess",4,1,51,2,51,50,"Fox News","Republican" +3,2,9570,"tess",3,0,52,3,48,18,"Fox News","Democrat" +3,2,9585,"tess",1,0,7,2,93,30,"Fox News","Democrat" +3,2,9601,"tess",1,0,0,3,100,90,"Fox News","Republican" +3,2,9626,"tess",3,1,4,3,4,55,"Fox News","Democrat" +3,2,9627,"tess",2,0,0,2,100,0,"Fox News","Democrat" +3,2,9631,"tess",3,0,10,2,90,10,"Fox News","Democrat" +3,2,9635,"tess",1,1,50,3,50,80,"Fox News","Democrat" +3,2,9648,"tess",3,0,10,2,90,0,"Fox News","Democrat" +3,2,9650,"tess",2,0,66,3,34,10,"Fox News","Republican" +3,2,9663,"tess",3,1,86,2,86,32,"Fox News","Democrat" +3,2,9664,"tess",4,1,89,2,89,82,"Fox News","Republican" +3,2,9666,"tess",4,1,6,2,6,76,"Fox News","Republican" +3,2,9684,"tess",1,1,11,3,11,90,"Fox News","Democrat" +3,2,9685,"tess",3,1,0,3,0,0,"Fox News","Republican" +3,2,9689,"tess",2,0,50,3,50,50,"Fox News","Democrat" +3,2,9701,"tess",1,1,13,2,13,37,"Fox News","Democrat" +3,2,9729,"tess",2,1,49,2,49,0,"Fox News","Republican" +3,2,9741,"tess",4,1,49,2,49,98,"Fox News","Republican" +3,2,9744,"turk",3,0,1,4,99,99,"Fox News","Democrat" +3,2,9752,"turk",3,0,10,2,90,50,"Fox News","Democrat" +3,2,9753,"turk",2,0,45,3,55,35,"Fox News","Democrat" +3,2,9756,"turk",2,0,1,2,99,1,"Fox News","Democrat" +3,2,9763,"turk",3,0,65,3,35,35,"Fox News","Neither" +3,2,9771,"turk",4,0,90,2,10,1,"Fox News","Democrat" +3,2,9774,"turk",3,0,10,4,90,80,"Fox News","Democrat" +3,2,9777,"turk",3,0,50,4,50,40,"Fox News","Democrat" +3,2,9778,"turk",3,0,35,3,65,60,"Fox News","Neither" +3,2,9779,"turk",2,0,45,5,55,95,"Fox News","Democrat" +3,2,9782,"turk",4,0,10,4,90,70,"Fox News","Republican" +3,2,9783,"turk",2,0,50,4,50,40,"Fox News","Neither" +3,2,9785,"turk",3,0,40,2,60,25,"Fox News","Democrat" +3,2,9788,"turk",2,0,75,2,25,12,"Fox News","Democrat" +3,2,9791,"turk",2,0,1,4,99,99,"Fox News","Democrat" +3,2,9796,"turk",3,0,87,2,13,1,"Fox News","Democrat" +3,2,9798,"turk",3,0,30,3,70,50,"Fox News","Democrat" +3,2,9802,"turk",3,0,90,5,10,10,"Fox News","Democrat" +3,2,9805,"turk",2,0,70,3,30,30,"Fox News","Democrat" +3,2,9808,"turk",2,0,20,4,80,80,"Fox News","Neither" +3,2,9809,"turk",2,0,30,3,70,60,"Fox News","Neither" +3,2,9810,"turk",3,0,1,5,99,99,"Fox News","Democrat" +3,2,9811,"turk",3,0,75,5,25,75,"Fox News","Republican" +3,2,9813,"turk",3,0,20,3,80,50,"Fox News","Republican" +3,2,9814,"turk",4,0,50,2,50,1,"Fox News","Democrat" +3,2,9815,"turk",4,0,55,4,45,55,"Fox News","Democrat" +3,2,9816,"turk",4,0,50,4,50,99,"Fox News","Democrat" +3,2,9817,"turk",3,0,1,5,99,99,"Fox News","Republican" +3,2,9818,"turk",4,0,1,5,99,99,"Fox News","Republican" +3,2,9820,"turk",3,0,1,5,99,99,"Fox News","Republican" +3,2,9821,"turk",2,0,25,5,75,55,"Fox News","Democrat" +3,2,9823,"turk",3,0,32,2,68,68,"Fox News","Neither" +3,2,9828,"turk",3,0,60,2,40,30,"Fox News","Democrat" +3,2,9829,"turk",3,0,1,5,99,98,"Fox News","Republican" +3,2,9831,"turk",3,0,65,4,35,60,"Fox News","Democrat" +3,2,9844,"turk",2,0,1,2,99,50,"Fox News","Democrat" +3,2,9845,"turk",2,0,60,3,40,50,"Fox News","Neither" +3,2,9846,"turk",2,0,90,4,10,20,"Fox News","Democrat" +3,2,9847,"turk",2,0,1,5,99,99,"Fox News","Republican" +3,2,9849,"turk",3,0,1,2,99,1,"Fox News","Republican" +3,2,9857,"turk",2,0,1,5,99,99,"Fox News","Democrat" +3,2,9858,"turk",4,0,0,3,100,100,"Fox News","Republican" +3,2,9859,"turk",4,0,50,4,50,35,"Fox News","Democrat" +3,2,9866,"turk",2,0,70,4,30,30,"Fox News","Republican" +3,2,9867,"turk",3,0,99,4,1,1,"Fox News","Democrat" +3,2,9868,"turk",4,0,30,3,70,60,"Fox News","Democrat" +3,2,9872,"turk",4,0,1,2,99,99,"Fox News","Republican" +3,2,9875,"turk",2,0,40,2,60,40,"Fox News","Democrat" +3,2,9876,"turk",3,0,1,4,99,99,"Fox News","Democrat" +3,2,9879,"turk",3,0,40,5,60,60,"Fox News","Democrat" +3,2,9881,"turk",2,0,98,3,2,2,"Fox News","Democrat" +3,2,9882,"turk",4,0,90,5,10,10,"Fox News","Democrat" +3,2,9883,"turk",3,0,1,5,99,99,"Fox News","Republican" +3,2,9885,"turk",2,0,100,5,0,0,"Fox News","Democrat" +3,2,9891,"turk",2,0,1,4,99,99,"Fox News","Democrat" +3,2,9894,"turk",4,0,50,3,50,50,"Fox News","Democrat" +3,2,9895,"turk",4,0,99,2,1,1,"Fox News","Neither" +3,2,9897,"turk",4,0,65,2,35,15,"Fox News","Democrat" +3,2,9899,"turk",3,0,98,3,2,2,"Fox News","Democrat" +3,2,9905,"turk",4,0,1,2,99,1,"Fox News","Republican" +3,2,9907,"turk",4,0,30,5,70,50,"Fox News","Democrat" +3,2,9908,"turk",3,0,40,2,60,35,"Fox News","Democrat" +3,2,9909,"turk",4,0,10,3,90,80,"Fox News","Neither" +3,2,9913,"turk",2,0,1,5,99,80,"Fox News","Neither" +3,2,9915,"turk",2,0,1,4,99,1,"Fox News","Democrat" +3,2,9918,"turk",3,0,50,3,50,25,"Fox News","Democrat" +3,2,9920,"turk",2,0,0,3,100,1,"Fox News","Republican" +3,2,9921,"turk",2,0,1,4,99,50,"Fox News","Democrat" +3,2,9928,"turk",3,0,20,3,80,50,"Fox News","Democrat" +3,2,9931,"turk",3,0,50,3,50,50,"Fox News","Neither" +3,2,9936,"turk",2,0,99,2,1,50,"Fox News","Republican" +3,2,9938,"turk",3,0,1,5,99,75,"Fox News","Democrat" +3,2,9939,"turk",4,0,99,4,1,1,"Fox News","Republican" +3,2,9943,"turk",2,0,10,2,90,75,"Fox News","Republican" +3,2,9944,"turk",2,0,10,3,90,75,"Fox News","Democrat" +3,2,9946,"turk",2,0,1,2,99,55,"Fox News","Democrat" +3,2,9948,"turk",4,0,40,2,60,50,"Fox News","Republican" +3,2,9949,"turk",2,0,65,3,35,30,"Fox News","Neither" +3,2,9952,"turk",4,0,50,4,50,50,"Fox News","Democrat" +3,2,9954,"turk",3,0,5,4,95,90,"Fox News","Democrat" +3,2,9956,"turk",2,0,45,2,55,50,"Fox News","Democrat" +3,2,9957,"turk",2,0,50,3,50,99,"Fox News","Republican" +3,2,9958,"turk",3,0,20,2,80,80,"Fox News","Republican" +3,2,9961,"turk",2,0,99,2,1,1,"Fox News","Republican" +3,2,9963,"turk",4,0,25,5,75,75,"Fox News","Republican" +3,2,9966,"turk",4,0,99,4,1,1,"Fox News","Democrat" +3,2,9967,"turk",3,0,5,5,95,95,"Fox News","Neither" +3,2,9968,"turk",2,0,99,3,1,1,"Fox News","Democrat" +3,2,9969,"turk",2,0,1,2,99,99,"Fox News","Democrat" +3,2,9970,"turk",4,0,0,5,100,100,"Fox News","Republican" +3,2,9972,"turk",2,0,1,2,99,25,"Fox News","Democrat" +3,2,9974,"turk",3,0,45,5,55,25,"Fox News","Democrat" +3,2,9976,"turk",4,0,50,4,50,50,"Fox News","Republican" +3,2,9978,"turk",3,0,1,5,99,99,"Fox News","Republican" +3,2,9987,"turk",3,0,65,2,35,15,"Fox News","Democrat" +3,2,9990,"turk",2,0,99,3,1,1,"Fox News","Democrat" +3,2,10000,"turk",3,0,10,4,90,50,"Fox News","Democrat" +3,2,10003,"turk",3,0,40,3,60,50,"Fox News","Democrat" +3,2,10010,"turk",2,0,50,4,50,20,"Fox News","Democrat" +3,2,10012,"turk",2,0,10,4,90,80,"Fox News","Neither" +3,2,10015,"turk",4,0,20,5,80,75,"Fox News","Neither" +3,2,10016,"turk",3,0,1,4,99,99,"Fox News","Neither" +3,2,10018,"turk",3,0,15,2,85,20,"Fox News","Republican" +3,2,10019,"turk",4,0,90,3,10,1,"Fox News","Neither" +3,2,10021,"turk",4,0,30,2,70,70,"Fox News","Democrat" +3,2,10022,"turk",2,0,1,4,99,90,"Fox News","Neither" +3,2,10024,"turk",3,0,40,4,60,60,"Fox News","Republican" +3,2,10025,"turk",3,0,99,3,1,1,"Fox News","Democrat" +3,2,10026,"turk",3,0,1,3,99,80,"Fox News","Neither" +3,2,10029,"turk",3,0,35,5,65,50,"Fox News","Democrat" +3,2,10031,"turk",3,0,1,2,99,75,"Fox News","Neither" +3,2,10032,"turk",3,0,50,4,50,50,"Fox News","Democrat" +3,2,10033,"turk",3,0,50,3,50,100,"Fox News","Neither" +3,2,10036,"turk",2,0,1,4,99,99,"Fox News","Republican" +3,2,10037,"turk",4,0,10,5,90,65,"Fox News","Democrat" +3,2,10039,"turk",3,0,50,3,50,80,"Fox News","Democrat" +3,2,10045,"turk",3,0,15,5,85,80,"Fox News","Neither" +3,2,10047,"turk",4,0,40,4,60,40,"Fox News","Democrat" +3,2,10051,"turk",2,0,67,4,33,22,"Fox News","Democrat" +3,2,10052,"turk",3,0,99,5,1,0,"Fox News","Democrat" +3,2,10054,"turk",4,0,1,5,99,1,"Fox News","Democrat" +3,2,10061,"turk",2,0,77,5,23,33,"Fox News","Democrat" +3,2,10063,"turk",2,0,1,4,99,99,"Fox News","Republican" +3,2,10069,"turk",4,0,75,4,25,25,"Fox News","Republican" +3,2,10071,"turk",2,0,1,3,99,100,"Fox News","Republican" +3,2,10073,"turk",4,0,99,4,1,1,"Fox News","Neither" +3,2,10080,"turk",4,0,60,4,40,50,"Fox News","Republican" +3,2,10081,"turk",3,0,10,2,90,99,"Fox News","Democrat" +3,2,10083,"turk",4,0,99,5,1,99,"Fox News","Republican" +3,2,10087,"turk",4,0,24,4,76,29,"Fox News","Neither" +3,2,10089,"turk",2,0,1,3,99,99,"Fox News","Neither" +3,2,10092,"turk",3,0,99,4,1,99,"Fox News","Neither" +3,2,10093,"turk",2,0,1,5,99,99,"Fox News","Democrat" +3,2,10094,"turk",3,0,1,3,99,99,"Fox News","Democrat" +3,2,10097,"turk",4,0,15,2,85,65,"Fox News","Democrat" +3,2,10100,"turk",3,0,65,3,35,55,"Fox News","Democrat" +3,2,10101,"turk",4,0,1,5,99,99,"Fox News","Democrat" +3,2,10106,"turk",2,0,1,5,99,10,"Fox News","Democrat" +3,2,10108,"turk",3,0,20,5,80,70,"Fox News","Democrat" +3,2,10109,"turk",4,0,1,3,99,99,"Fox News","Democrat" +3,2,10110,"turk",4,0,20,3,80,60,"Fox News","Republican" +3,2,10111,"turk",4,0,1,4,99,99,"Fox News","Neither" +3,2,10114,"turk",4,0,1,5,99,99,"Fox News","Republican" +3,2,10115,"turk",3,0,51,5,49,49,"Fox News","Republican" +3,2,10122,"turk",4,0,70,5,30,40,"Fox News","Democrat" +3,2,10123,"turk",3,0,20,2,80,70,"Fox News","Republican" +3,2,10125,"turk",2,0,35,3,65,50,"Fox News","Democrat" +3,2,10126,"turk",2,0,99,3,1,1,"Fox News","Republican" +3,2,10130,"turk",4,0,40,5,60,60,"Fox News","Neither" +3,2,10132,"turk",2,0,22,3,78,78,"Fox News","Republican" +3,2,10133,"turk",2,0,1,2,99,90,"Fox News","Democrat" +3,2,10135,"turk",4,0,50,4,50,50,"Fox News","Democrat" +3,2,10138,"turk",2,0,35,5,65,55,"Fox News","Democrat" +3,2,10139,"turk",3,0,15,2,85,12,"Fox News","Republican" +3,2,10141,"turk",4,0,1,2,99,99,"Fox News","Republican" +3,2,10142,"turk",2,0,1,4,99,99,"Fox News","Republican" +3,2,10149,"turk",2,0,1,4,99,99,"Fox News","Republican" +3,2,10151,"turk",4,0,0,4,100,99,"Fox News","Democrat" +3,2,10152,"turk",4,0,25,5,75,75,"Fox News","Neither" +3,2,10153,"turk",3,0,40,2,60,20,"Fox News","Republican" +3,2,10161,"turk",4,0,10,5,90,90,"Fox News","Republican" +3,2,10164,"turk",4,0,50,3,50,50,"Fox News","Democrat" +3,2,10165,"turk",2,0,1,2,99,1,"Fox News","Democrat" +3,2,10169,"turk",3,0,60,3,40,40,"Fox News","Republican" +3,2,10170,"turk",2,0,0,4,100,0,"Fox News","Neither" +3,2,10174,"turk",2,0,0,5,100,100,"Fox News","Democrat" +3,2,10175,"turk",4,0,20,3,80,1,"Fox News","Neither" +3,2,10178,"turk",2,0,1,4,99,99,"Fox News","Democrat" +3,2,10183,"turk",3,0,1,3,99,99,"Fox News","" +3,2,10184,"turk",4,0,30,2,70,50,"Fox News","Republican" +3,2,10187,"turk",4,0,95,4,5,5,"Fox News","Democrat" +3,2,10190,"turk",4,0,88,2,12,11,"Fox News","Democrat" +3,2,10192,"turk",3,0,1,5,99,99,"Fox News","Republican" +3,2,10193,"turk",3,0,10,3,90,90,"Fox News","Democrat" +3,2,10195,"turk",3,0,30,2,70,25,"Fox News","Republican" +3,2,10199,"turk",3,0,50,2,50,1,"Fox News","Republican" +3,2,10200,"turk",3,0,20,2,80,10,"Fox News","Democrat" +3,2,10204,"turk",2,0,1,4,99,50,"Fox News","Democrat" +3,2,10209,"turk",2,0,99,3,1,1,"Fox News","Democrat" +3,2,10215,"turk",3,0,20,3,80,70,"Fox News","Democrat" +3,2,10216,"turk",3,0,99,4,1,1,"Fox News","Republican" +3,2,10218,"turk",2,0,1,2,99,100,"Fox News","Democrat" +3,2,10222,"turk",4,0,50,5,50,50,"Fox News","Neither" +3,2,10223,"turk",4,0,80,2,20,1,"Fox News","Democrat" +3,2,10225,"turk",4,0,1,5,99,99,"Fox News","Republican" +3,2,10232,"turk",2,0,1,3,99,50,"Fox News","Democrat" +3,2,10235,"turk",3,0,2,4,98,80,"Fox News","Republican" +3,2,10237,"turk",4,0,20,5,80,70,"Fox News","Democrat" +3,2,10239,"turk",2,0,90,3,10,10,"Fox News","Republican" +3,2,10241,"turk",2,0,50,3,50,99,"Fox News","Democrat" +3,2,10242,"turk",2,0,1,5,99,90,"Fox News","Republican" +3,2,10243,"turk",2,0,1,4,99,80,"Fox News","Republican" +3,2,10245,"turk",2,0,99,2,1,1,"Fox News","Neither" +3,2,10246,"turk",3,0,1,5,99,95,"Fox News","Democrat" +3,2,10247,"turk",2,0,1,2,99,1,"Fox News","Democrat" +3,2,10257,"turk",2,0,99,3,1,1,"Fox News","Democrat" +3,2,10260,"turk",3,0,99,2,1,1,"Fox News","Neither" +3,2,10261,"turk",3,0,1,5,99,1,"Fox News","Neither" +3,2,10264,"turk",4,0,25,3,75,50,"Fox News","Neither" +3,2,10268,"turk",2,0,5,4,95,75,"Fox News","Democrat" +3,2,10270,"turk",3,0,99,4,1,1,"Fox News","Republican" +3,2,10275,"turk",3,0,1,2,99,50,"Fox News","Democrat" +3,2,10283,"turk",4,0,20,4,80,70,"Fox News","Republican" +3,2,10284,"turk",4,0,1,3,99,50,"Fox News","Democrat" +3,2,10289,"turk",4,0,1,5,99,99,"Fox News","Republican" +3,2,10295,"turk",3,0,2,5,98,98,"Fox News","Democrat" +3,2,10297,"turk",4,0,65,4,35,31,"Fox News","Democrat" +3,2,10298,"turk",2,0,80,5,20,25,"Fox News","Neither" +3,2,10299,"turk",3,0,0,4,100,100,"Fox News","Republican" +3,2,10300,"turk",2,0,70,4,30,30,"Fox News","Democrat" +3,2,10301,"turk",4,0,35,3,65,50,"Fox News","Democrat" +3,2,10302,"turk",2,0,99,4,1,50,"Fox News","Republican" +3,2,10303,"turk",2,0,40,2,60,30,"Fox News","Democrat" +3,2,10309,"turk",4,0,20,5,80,80,"Fox News","Republican" +3,2,10311,"turk",4,0,100,3,0,0,"Fox News","Democrat" +3,2,10312,"turk",2,0,99,3,1,12,"Fox News","Democrat" +3,2,10313,"turk",4,0,60,5,40,40,"Fox News","Democrat" +3,2,10319,"turk",2,0,99,5,1,1,"Fox News","Neither" +3,2,10322,"turk",4,0,5,3,95,95,"Fox News","Republican" +3,2,10324,"turk",2,0,50,3,50,25,"Fox News","Neither" +3,2,10327,"turk",3,0,50,3,50,15,"Fox News","Democrat" +3,2,10328,"turk",4,0,50,3,50,99,"Fox News","Neither" +3,2,10329,"turk",2,0,1,3,99,50,"Fox News","Republican" +3,2,10330,"turk",3,0,25,2,75,60,"Fox News","Democrat" +3,2,10332,"turk",3,0,99,3,1,1,"Fox News","Democrat" +3,2,10334,"turk",3,0,1,2,99,85,"Fox News","Neither" +3,2,10335,"turk",3,0,70,3,30,30,"Fox News","Democrat" +3,2,10336,"turk",4,0,10,3,90,80,"Fox News","Neither" +3,2,10345,"turk",4,0,1,3,99,1,"Fox News","Republican" +3,2,10348,"turk",3,0,25,2,75,50,"Fox News","Democrat" +3,2,10349,"turk",3,0,1,4,99,99,"Fox News","Republican" +3,2,10355,"turk",2,0,30,4,70,50,"Fox News","Neither" +3,2,10370,"turk",3,0,50,3,50,50,"Fox News","Neither" +3,2,10371,"turk",2,0,1,3,99,99,"Fox News","Democrat" +3,2,10372,"turk",2,0,75,4,25,25,"Fox News","Neither" +3,2,10373,"turk",4,0,80,2,20,20,"Fox News","Neither" +3,2,10378,"turk",4,0,0,4,100,100,"Fox News","Neither" +3,2,10379,"turk",3,0,89,3,11,11,"Fox News","Democrat" +3,2,10381,"turk",3,0,1,5,99,100,"Fox News","Democrat" +3,2,10382,"turk",2,0,1,2,99,1,"Fox News","Democrat" +3,2,10383,"turk",3,0,58,3,42,45,"Fox News","Democrat" +3,2,10384,"turk",4,0,70,2,30,10,"Fox News","Democrat" +3,2,10387,"turk",4,0,95,4,5,10,"Fox News","Democrat" +3,2,10390,"turk",3,0,93,5,7,5,"Fox News","Democrat" +3,2,10395,"turk",3,0,1,4,99,50,"Fox News","Neither" +3,2,10397,"turk",4,0,1,2,99,50,"Fox News","Neither" +3,2,10398,"turk",2,0,90,5,10,20,"Fox News","Republican" +3,2,10399,"turk",4,0,1,5,99,99,"Fox News","Democrat" +3,2,10400,"turk",2,0,0,2,100,99,"Fox News","Neither" +3,2,10403,"turk",2,0,10,3,90,70,"Fox News","Republican" +3,2,10405,"turk",3,0,80,5,20,1,"Fox News","Democrat" +3,2,10409,"turk",4,0,1,5,99,99,"Fox News","Republican" +3,2,10410,"turk",4,0,99,4,1,1,"Fox News","Democrat" +3,2,10411,"turk",3,0,50,2,50,25,"Fox News","Republican" +3,2,10420,"turk",3,0,1,4,99,99,"Fox News","Republican" +3,2,10423,"turk",2,0,65,2,35,25,"Fox News","Neither" +3,2,10424,"turk",4,0,1,4,99,99,"Fox News","Republican" +3,2,10426,"turk",2,0,99,2,1,1,"Fox News","Republican" +3,2,10427,"turk",2,0,1,3,99,99,"Fox News","Republican" +3,2,10431,"turk",2,0,0,4,100,25,"Fox News","Republican" +3,2,10437,"turk",2,0,40,4,60,30,"Fox News","Democrat" +3,2,10438,"turk",3,0,50,3,50,60,"Fox News","Republican" +3,2,10439,"turk",3,0,1,5,99,99,"Fox News","Neither" +3,2,10440,"turk",4,0,31,2,69,53,"Fox News","Democrat" +3,2,10442,"turk",3,0,50,4,50,50,"Fox News","Neither" +3,2,10444,"turk",3,0,1,2,99,99,"Fox News","Republican" +3,2,10445,"turk",3,0,30,3,70,50,"Fox News","Democrat" +3,2,10447,"turk",2,0,99,4,1,1,"Fox News","Neither" +3,2,10450,"turk",4,0,99,4,1,10,"Fox News","Democrat" +3,2,10452,"turk",4,0,1,4,99,90,"Fox News","Neither" +3,2,10459,"turk",2,0,75,2,25,11,"Fox News","Democrat" +3,2,10460,"turk",3,0,1,2,99,1,"Fox News","Democrat" +3,2,10462,"turk",4,0,1,5,99,99,"Fox News","Republican" +3,2,10463,"turk",2,0,25,4,75,50,"Fox News","Republican" +3,2,10465,"turk",4,0,0,3,100,100,"Fox News","Democrat" +3,2,10469,"turk",2,0,1,3,99,1,"Fox News","Neither" +3,2,10470,"turk",3,0,1,3,99,50,"Fox News","Democrat" +3,2,10471,"turk",2,0,10,2,90,90,"Fox News","Democrat" +3,2,10472,"turk",2,0,20,3,80,75,"Fox News","Republican" +3,2,10481,"turk",4,0,10,5,90,80,"Fox News","Neither" +3,2,10482,"turk",2,0,75,3,25,50,"Fox News","Republican" +3,2,10484,"turk",3,0,0,5,100,90,"Fox News","Democrat" +3,2,10485,"turk",2,0,99,4,1,1,"Fox News","Democrat" +3,2,10487,"turk",2,0,40,3,60,40,"Fox News","Democrat" +3,2,10490,"turk",3,0,70,2,30,20,"Fox News","Democrat" +3,2,10492,"turk",2,0,10,4,90,80,"Fox News","Democrat" +3,2,10494,"turk",2,0,52,4,48,35,"Fox News","Republican" +3,2,10496,"turk",4,0,25,5,75,52,"Fox News","Republican" +3,2,10498,"turk",3,0,60,2,40,25,"Fox News","Republican" +3,2,10500,"turk",3,0,1,2,99,1,"Fox News","Neither" +3,2,10501,"turk",4,0,0,3,100,100,"Fox News","Democrat" +3,2,10504,"turk",4,0,10,2,90,90,"Fox News","Democrat" +3,2,10508,"turk",3,0,85,3,15,23,"Fox News","Democrat" +3,2,10509,"turk",3,0,50,3,50,50,"Fox News","Democrat" +3,2,10510,"turk",4,0,50,2,50,1,"Fox News","Democrat" +3,2,10513,"turk",4,0,99,5,1,1,"Fox News","Republican" +3,2,10514,"turk",3,0,1,2,99,1,"Fox News","Democrat" +3,2,10516,"turk",3,0,25,5,75,50,"Fox News","Democrat" +3,2,10518,"turk",4,0,1,5,99,99,"Fox News","Republican" +3,2,10523,"turk",4,0,1,2,99,1,"Fox News","Democrat" +3,2,10527,"turk",2,0,10,5,90,95,"Fox News","Democrat" +3,2,10530,"turk",3,0,1,5,99,99,"Fox News","Democrat" +3,2,10531,"turk",2,0,50,3,50,100,"Fox News","Neither" +3,2,9745,"turk",4,1,80,2,80,80,"Fox News","Republican" +3,2,9746,"turk",4,1,99,3,99,99,"Fox News","Neither" +3,2,9747,"turk",4,1,90,2,90,90,"Fox News","Neither" +3,2,9748,"turk",4,1,80,3,80,75,"Fox News","Democrat" +3,2,9749,"turk",4,1,100,2,100,100,"Fox News","Democrat" +3,2,9751,"turk",4,1,1,5,1,99,"Fox News","Democrat" +3,2,9755,"turk",2,1,80,2,80,80,"Fox News","Republican" +3,2,9758,"turk",3,1,100,4,100,100,"Fox News","Neither" +3,2,9759,"turk",4,1,90,2,90,75,"Fox News","Republican" +3,2,9760,"turk",4,1,50,2,50,25,"Fox News","Neither" +3,2,9761,"turk",4,1,88,2,88,76,"Fox News","Democrat" +3,2,9762,"turk",4,1,30,2,30,40,"Fox News","Neither" +3,2,9766,"turk",2,1,90,4,90,85,"Fox News","Democrat" +3,2,9768,"turk",4,1,40,3,40,40,"Fox News","Democrat" +3,2,9770,"turk",2,1,100,3,100,75,"Fox News","Democrat" +3,2,9773,"turk",3,1,99,2,99,99,"Fox News","Democrat" +3,2,9775,"turk",4,1,15,3,15,15,"Fox News","Neither" +3,2,9776,"turk",2,1,80,2,80,50,"Fox News","Neither" +3,2,9780,"turk",3,1,20,2,20,50,"Fox News","Republican" +3,2,9781,"turk",4,1,80,4,80,50,"Fox News","Neither" +3,2,9786,"turk",2,1,30,2,30,10,"Fox News","Democrat" +3,2,9787,"turk",4,1,50,2,50,1,"Fox News","Democrat" +3,2,9790,"turk",2,1,99,3,99,99,"Fox News","Neither" +3,2,9792,"turk",3,1,70,3,70,65,"Fox News","Republican" +3,2,9793,"turk",4,1,25,5,25,25,"Fox News","Neither" +3,2,9794,"turk",3,1,20,4,20,20,"Fox News","Democrat" +3,2,9795,"turk",4,1,90,5,90,80,"Fox News","Republican" +3,2,9797,"turk",4,1,80,3,80,50,"Fox News","Republican" +3,2,9799,"turk",2,1,99,3,99,99,"Fox News","Democrat" +3,2,9803,"turk",4,1,99,4,99,1,"Fox News","Democrat" +3,2,9804,"turk",4,1,72,4,72,57,"Fox News","Republican" +3,2,9806,"turk",3,1,80,2,80,2,"Fox News","Neither" +3,2,9822,"turk",4,1,80,3,80,75,"Fox News","Democrat" +3,2,9825,"turk",2,1,99,5,99,50,"Fox News","Neither" +3,2,9830,"turk",2,1,50,2,50,50,"Fox News","Republican" +3,2,9832,"turk",4,1,90,2,90,90,"Fox News","Republican" +3,2,9833,"turk",2,1,65,4,65,75,"Fox News","Democrat" +3,2,9835,"turk",2,1,99,5,99,99,"Fox News","Democrat" +3,2,9836,"turk",4,1,1,5,1,25,"Fox News","Democrat" +3,2,9837,"turk",3,1,1,2,1,1,"Fox News","Republican" +3,2,9838,"turk",4,1,99,3,99,99,"Fox News","Democrat" +3,2,9839,"turk",2,1,99,4,99,99,"Fox News","Democrat" +3,2,9840,"turk",3,1,10,3,10,10,"Fox News","Democrat" +3,2,9842,"turk",4,1,60,3,60,80,"Fox News","Democrat" +3,2,9843,"turk",4,1,1,4,1,1,"Fox News","Neither" +3,2,9851,"turk",3,1,25,4,25,99,"Fox News","Democrat" +3,2,9852,"turk",4,1,75,5,75,75,"Fox News","Democrat" +3,2,9853,"turk",2,1,45,4,45,50,"Fox News","Neither" +3,2,9855,"turk",3,1,10,2,10,1,"Fox News","Neither" +3,2,9856,"turk",4,1,2,3,2,3,"Fox News","Republican" +3,2,9861,"turk",4,1,1,2,1,1,"Fox News","Neither" +3,2,9862,"turk",4,1,85,4,85,85,"Fox News","Democrat" +3,2,9863,"turk",2,1,20,2,20,30,"Fox News","Neither" +3,2,9864,"turk",4,1,1,2,1,99,"Fox News","Republican" +3,2,9865,"turk",4,1,50,3,50,50,"Fox News","Neither" +3,2,9869,"turk",3,1,99,5,99,95,"Fox News","Republican" +3,2,9870,"turk",4,1,80,4,80,75,"Fox News","Democrat" +3,2,9871,"turk",2,1,96,4,96,88,"Fox News","Republican" +3,2,9873,"turk",4,1,50,2,50,1,"Fox News","Democrat" +3,2,9874,"turk",3,1,60,5,60,60,"Fox News","Democrat" +3,2,9877,"turk",3,1,25,4,25,25,"Fox News","Neither" +3,2,9884,"turk",2,1,50,3,50,50,"Fox News","Republican" +3,2,9886,"turk",3,1,99,2,99,99,"Fox News","Republican" +3,2,9888,"turk",2,1,99,3,99,99,"Fox News","Republican" +3,2,9890,"turk",2,1,89,5,89,88,"Fox News","Republican" +3,2,9892,"turk",3,1,70,5,70,65,"Fox News","Democrat" +3,2,9893,"turk",4,1,99,2,99,99,"Fox News","Democrat" +3,2,9898,"turk",3,1,1,3,1,1,"Fox News","Republican" +3,2,9900,"turk",4,1,22,2,22,2,"Fox News","Democrat" +3,2,9901,"turk",3,1,85,4,85,80,"Fox News","Republican" +3,2,9902,"turk",2,1,0,5,0,80,"Fox News","Democrat" +3,2,9903,"turk",2,1,90,3,90,70,"Fox News","Democrat" +3,2,9904,"turk",3,1,90,5,90,90,"Fox News","Democrat" +3,2,9906,"turk",2,1,0,4,0,0,"Fox News","Democrat" +3,2,9911,"turk",4,1,20,3,20,20,"Fox News","Democrat" +3,2,9912,"turk",4,1,34,3,34,14,"Fox News","Democrat" +3,2,9916,"turk",3,1,70,4,70,0,"Fox News","Republican" +3,2,9917,"turk",4,1,90,4,90,80,"Fox News","Neither" +3,2,9919,"turk",4,1,1,3,1,1,"Fox News","Democrat" +3,2,9923,"turk",2,1,99,5,99,99,"Fox News","Neither" +3,2,9926,"turk",2,1,50,4,50,99,"Fox News","Republican" +3,2,9927,"turk",2,1,25,4,25,75,"Fox News","Republican" +3,2,9929,"turk",3,1,50,4,50,50,"Fox News","Neither" +3,2,9930,"turk",3,1,80,4,80,80,"Fox News","Democrat" +3,2,9933,"turk",2,1,99,5,99,99,"Fox News","Republican" +3,2,9935,"turk",3,1,85,2,85,85,"Fox News","Neither" +3,2,9937,"turk",4,1,99,4,99,99,"Fox News","Democrat" +3,2,9940,"turk",4,1,75,3,75,60,"Fox News","Democrat" +3,2,9941,"turk",4,1,85,3,85,90,"Fox News","Republican" +3,2,9942,"turk",2,1,1,2,1,1,"Fox News","Democrat" +3,2,9945,"turk",4,1,1,5,1,1,"Fox News","Democrat" +3,2,9950,"turk",4,1,40,4,40,50,"Fox News","Democrat" +3,2,9951,"turk",3,1,1,5,1,1,"Fox News","Republican" +3,2,9955,"turk",3,1,1,4,1,1,"Fox News","Republican" +3,2,9959,"turk",2,1,70,5,70,70,"Fox News","Democrat" +3,2,9960,"turk",4,1,5,3,5,99,"Fox News","Democrat" +3,2,9962,"turk",3,1,99,2,99,99,"Fox News","Democrat" +3,2,9965,"turk",2,1,60,3,60,80,"Fox News","Democrat" +3,2,9975,"turk",3,1,2,2,2,5,"Fox News","Democrat" +3,2,9984,"turk",3,1,99,3,99,1,"Fox News","Democrat" +3,2,9986,"turk",4,1,80,5,80,70,"Fox News","Democrat" +3,2,9988,"turk",2,1,99,3,99,99,"Fox News","Democrat" +3,2,9989,"turk",3,1,65,3,65,30,"Fox News","Democrat" +3,2,9993,"turk",4,1,20,2,20,20,"Fox News","Neither" +3,2,9995,"turk",3,1,50,2,50,10,"Fox News","Republican" +3,2,9996,"turk",4,1,80,3,80,80,"Fox News","Democrat" +3,2,9998,"turk",3,1,99,4,99,99,"Fox News","Democrat" +3,2,10002,"turk",4,1,25,5,25,20,"Fox News","Democrat" +3,2,10004,"turk",4,1,99,5,99,99,"Fox News","Democrat" +3,2,10005,"turk",4,1,80,2,80,70,"Fox News","Republican" +3,2,10007,"turk",4,1,90,2,90,40,"Fox News","Republican" +3,2,10009,"turk",4,1,99,4,99,99,"Fox News","Republican" +3,2,10011,"turk",4,1,0,5,0,50,"Fox News","Democrat" +3,2,10013,"turk",3,1,99,2,99,99,"Fox News","Democrat" +3,2,10014,"turk",4,1,99,5,99,99,"Fox News","Republican" +3,2,10020,"turk",2,1,25,4,25,45,"Fox News","Democrat" +3,2,10027,"turk",4,1,99,2,99,99,"Fox News","Republican" +3,2,10034,"turk",2,1,80,5,80,50,"Fox News","Neither" +3,2,10035,"turk",2,1,30,3,30,30,"Fox News","Democrat" +3,2,10038,"turk",3,1,99,3,99,99,"Fox News","Democrat" +3,2,10041,"turk",3,1,99,5,99,1,"Fox News","Republican" +3,2,10046,"turk",4,1,85,4,85,60,"Fox News","Neither" +3,2,10048,"turk",2,1,80,3,80,80,"Fox News","Democrat" +3,2,10055,"turk",3,1,1,5,1,40,"Fox News","Republican" +3,2,10060,"turk",2,1,40,4,40,30,"Fox News","Democrat" +3,2,10067,"turk",3,1,1,4,1,99,"Fox News","Democrat" +3,2,10068,"turk",3,1,1,5,1,1,"Fox News","Democrat" +3,2,10070,"turk",3,1,1,2,1,1,"Fox News","Democrat" +3,2,10072,"turk",3,1,100,5,100,80,"Fox News","Democrat" +3,2,10074,"turk",2,1,50,5,50,99,"Fox News","Democrat" +3,2,10075,"turk",4,1,0,2,0,0,"Fox News","Democrat" +3,2,10076,"turk",3,1,99,5,99,99,"Fox News","Neither" +3,2,10077,"turk",3,1,65,3,65,50,"Fox News","Democrat" +3,2,10079,"turk",3,1,95,4,95,90,"Fox News","Republican" +3,2,10084,"turk",3,1,75,5,75,99,"Fox News","Neither" +3,2,10085,"turk",2,1,85,3,85,80,"Fox News","Neither" +3,2,10090,"turk",2,1,60,4,60,70,"Fox News","Democrat" +3,2,10095,"turk",3,1,50,2,50,50,"Fox News","Democrat" +3,2,10096,"turk",4,1,50,3,50,99,"Fox News","Democrat" +3,2,10098,"turk",2,1,51,5,51,51,"Fox News","Neither" +3,2,10099,"turk",2,1,80,3,80,70,"Fox News","Democrat" +3,2,10103,"turk",3,1,85,2,85,50,"Fox News","Democrat" +3,2,10104,"turk",3,1,0,2,0,65,"Fox News","Democrat" +3,2,10105,"turk",3,1,30,4,30,70,"Fox News","Democrat" +3,2,10112,"turk",2,1,45,2,45,20,"Fox News","Democrat" +3,2,10113,"turk",4,1,1,4,1,99,"Fox News","Republican" +3,2,10116,"turk",4,1,99,4,99,100,"Fox News","Democrat" +3,2,10117,"turk",2,1,90,5,90,85,"Fox News","Democrat" +3,2,10119,"turk",2,1,99,3,99,99,"Fox News","Neither" +3,2,10120,"turk",3,1,75,4,75,75,"Fox News","Republican" +3,2,10121,"turk",4,1,25,2,25,20,"Fox News","Neither" +3,2,10124,"turk",4,1,99,4,99,99,"Fox News","Republican" +3,2,10127,"turk",3,1,99,5,99,99,"Fox News","Republican" +3,2,10131,"turk",2,1,50,2,50,50,"Fox News","Republican" +3,2,10134,"turk",4,1,85,2,85,90,"Fox News","Republican" +3,2,10136,"turk",4,1,30,3,30,40,"Fox News","Democrat" +3,2,10140,"turk",4,1,50,3,50,40,"Fox News","Democrat" +3,2,10144,"turk",4,1,75,3,75,70,"Fox News","Democrat" +3,2,10145,"turk",2,1,90,5,90,90,"Fox News","Democrat" +3,2,10146,"turk",4,1,99,5,99,99,"Fox News","Democrat" +3,2,10150,"turk",2,1,99,4,99,99,"Fox News","Democrat" +3,2,10154,"turk",3,1,10,3,10,85,"Fox News","Democrat" +3,2,10155,"turk",3,1,1,5,1,99,"Fox News","Republican" +3,2,10157,"turk",4,1,70,2,70,50,"Fox News","Democrat" +3,2,10158,"turk",2,1,52,3,52,45,"Fox News","Democrat" +3,2,10159,"turk",2,1,10,4,10,50,"Fox News","Republican" +3,2,10160,"turk",2,1,99,4,99,99,"Fox News","Democrat" +3,2,10168,"turk",2,1,60,2,60,90,"Fox News","Democrat" +3,2,10171,"turk",3,1,85,5,85,80,"Fox News","Democrat" +3,2,10172,"turk",3,1,1,2,1,50,"Fox News","Republican" +3,2,10176,"turk",4,1,70,3,70,70,"Fox News","Democrat" +3,2,10177,"turk",2,1,99,3,99,99,"Fox News","Democrat" +3,2,10185,"turk",2,1,99,2,99,99,"Fox News","Republican" +3,2,10189,"turk",3,1,NA,5,NA,0,"Fox News","Democrat" +3,2,10191,"turk",4,1,20,3,20,20,"Fox News","Democrat" +3,2,10194,"turk",4,1,99,5,99,99,"Fox News","Democrat" +3,2,10197,"turk",4,1,99,5,99,99,"Fox News","Democrat" +3,2,10202,"turk",4,1,50,3,50,50,"Fox News","Neither" +3,2,10203,"turk",3,1,45,5,45,50,"Fox News","Republican" +3,2,10205,"turk",4,1,40,4,40,40,"Fox News","Democrat" +3,2,10206,"turk",2,1,45,4,45,88,"Fox News","Democrat" +3,2,10207,"turk",3,1,60,2,60,40,"Fox News","Republican" +3,2,10210,"turk",3,1,70,2,70,50,"Fox News","Republican" +3,2,10213,"turk",4,1,60,3,60,60,"Fox News","Republican" +3,2,10219,"turk",4,1,100,4,100,90,"Fox News","Democrat" +3,2,10220,"turk",3,1,99,5,99,99,"Fox News","Republican" +3,2,10221,"turk",2,1,65,5,65,60,"Fox News","Democrat" +3,2,10224,"turk",2,1,100,3,100,0,"Fox News","Democrat" +3,2,10226,"turk",4,1,99,2,99,99,"Fox News","Republican" +3,2,10227,"turk",2,1,90,2,90,50,"Fox News","Republican" +3,2,10229,"turk",3,1,99,2,99,50,"Fox News","Democrat" +3,2,10230,"turk",3,1,17,5,17,84,"Fox News","Neither" +3,2,10231,"turk",3,1,1,5,1,1,"Fox News","Democrat" +3,2,10234,"turk",4,1,75,2,75,25,"Fox News","Republican" +3,2,10236,"turk",2,1,40,2,40,60,"Fox News","Democrat" +3,2,10238,"turk",3,1,20,5,20,20,"Fox News","Democrat" +3,2,10250,"turk",3,1,23,2,23,22,"Fox News","Democrat" +3,2,10251,"turk",4,1,99,2,99,50,"Fox News","Democrat" +3,2,10252,"turk",2,1,80,3,80,80,"Fox News","Republican" +3,2,10253,"turk",2,1,10,3,10,10,"Fox News","Democrat" +3,2,10254,"turk",2,1,99,5,99,99,"Fox News","Democrat" +3,2,10255,"turk",4,1,40,3,40,20,"Fox News","Democrat" +3,2,10256,"turk",3,1,99,5,99,1,"Fox News","Neither" +3,2,10258,"turk",3,1,15,2,15,15,"Fox News","Neither" +3,2,10262,"turk",4,1,90,3,90,30,"Fox News","Democrat" +3,2,10263,"turk",2,1,99,3,99,99,"Fox News","Republican" +3,2,10265,"turk",3,1,99,5,99,99,"Fox News","Republican" +3,2,10266,"turk",3,1,100,4,100,100,"Fox News","Republican" +3,2,10267,"turk",4,1,50,5,50,50,"Fox News","Democrat" +3,2,10269,"turk",3,1,99,4,99,1,"Fox News","Democrat" +3,2,10272,"turk",4,1,30,3,30,25,"Fox News","Democrat" +3,2,10273,"turk",3,1,85,4,85,80,"Fox News","Democrat" +3,2,10274,"turk",2,1,99,4,99,99,"Fox News","Republican" +3,2,10279,"turk",3,1,70,4,70,60,"Fox News","Democrat" +3,2,10280,"turk",3,1,99,4,99,1,"Fox News","Republican" +3,2,10282,"turk",3,1,70,3,70,60,"Fox News","Neither" +3,2,10285,"turk",3,1,100,5,100,100,"Fox News","Republican" +3,2,10286,"turk",2,1,90,3,90,30,"Fox News","Republican" +3,2,10290,"turk",3,1,99,3,99,99,"Fox News","Neither" +3,2,10291,"turk",4,1,10,5,10,10,"Fox News","Neither" +3,2,10292,"turk",2,1,99,2,99,33,"Fox News","Democrat" +3,2,10294,"turk",4,1,50,5,50,70,"Fox News","Democrat" +3,2,10305,"turk",2,1,50,5,50,99,"Fox News","Democrat" +3,2,10306,"turk",3,1,55,5,55,40,"Fox News","Democrat" +3,2,10308,"turk",2,1,100,2,100,100,"Fox News","Democrat" +3,2,10310,"turk",2,1,70,3,70,60,"Fox News","Republican" +3,2,10315,"turk",4,1,89,3,89,1,"Fox News","Republican" +3,2,10316,"turk",3,1,99,2,99,99,"Fox News","Neither" +3,2,10317,"turk",2,1,80,4,80,30,"Fox News","Democrat" +3,2,10320,"turk",2,1,1,4,1,1,"Fox News","Republican" +3,2,10325,"turk",2,1,99,4,99,99,"Fox News","Democrat" +3,2,10326,"turk",4,1,1,4,1,1,"Fox News","Republican" +3,2,10331,"turk",2,1,90,2,90,1,"Fox News","Democrat" +3,2,10333,"turk",2,1,100,4,100,99,"Fox News","Neither" +3,2,10337,"turk",4,1,5,5,5,5,"Fox News","Democrat" +3,2,10339,"turk",2,1,0,3,0,99,"Fox News","Democrat" +3,2,10340,"turk",3,1,80,5,80,75,"Fox News","Neither" +3,2,10341,"turk",2,1,0,5,0,30,"Fox News","Democrat" +3,2,10342,"turk",3,1,15,5,15,20,"Fox News","Democrat" +3,2,10343,"turk",2,1,80,5,80,80,"Fox News","Republican" +3,2,10344,"turk",4,1,80,3,80,70,"Fox News","Neither" +3,2,10350,"turk",4,1,70,2,70,50,"Fox News","Democrat" +3,2,10352,"turk",2,1,70,3,70,65,"Fox News","Democrat" +3,2,10357,"turk",4,1,60,2,60,30,"Fox News","Democrat" +3,2,10358,"turk",4,1,25,3,25,50,"Fox News","Republican" +3,2,10360,"turk",2,1,99,3,99,1,"Fox News","Democrat" +3,2,10361,"turk",4,1,45,2,45,25,"Fox News","Neither" +3,2,10363,"turk",2,1,1,5,1,50,"Fox News","Republican" +3,2,10364,"turk",2,1,50,3,50,99,"Fox News","Democrat" +3,2,10367,"turk",3,1,50,2,50,50,"Fox News","Republican" +3,2,10369,"turk",2,1,99,3,99,99,"Fox News","Republican" +3,2,10374,"turk",2,1,45,5,45,80,"Fox News","Democrat" +3,2,10375,"turk",4,1,1,2,1,0,"Fox News","Democrat" +3,2,10376,"turk",4,1,99,5,99,99,"Fox News","Republican" +3,2,10377,"turk",3,1,1,3,1,1,"Fox News","Democrat" +3,2,10380,"turk",2,1,75,2,75,50,"Fox News","Republican" +3,2,10388,"turk",4,1,80,3,80,70,"Fox News","Neither" +3,2,10389,"turk",4,1,25,3,25,25,"Fox News","Neither" +3,2,10392,"turk",3,1,2,3,2,1,"Fox News","Democrat" +3,2,10393,"turk",2,1,95,4,95,97,"Fox News","Democrat" +3,2,10396,"turk",2,1,50,3,50,76,"Fox News","Republican" +3,2,10401,"turk",4,1,50,3,50,60,"Fox News","Republican" +3,2,10406,"turk",2,1,1,4,1,1,"Fox News","Democrat" +3,2,10412,"turk",2,1,36,2,36,24,"Fox News","Democrat" +3,2,10413,"turk",4,1,90,3,90,85,"Fox News","Republican" +3,2,10414,"turk",3,1,100,2,100,55,"Fox News","Neither" +3,2,10415,"turk",4,1,95,2,95,90,"Fox News","Democrat" +3,2,10417,"turk",4,1,30,4,30,30,"Fox News","Neither" +3,2,10418,"turk",3,1,20,4,20,20,"Fox News","Democrat" +3,2,10419,"turk",2,1,99,3,99,99,"Fox News","Neither" +3,2,10421,"turk",4,1,1,3,1,1,"Fox News","Democrat" +3,2,10422,"turk",3,1,99,4,99,99,"Fox News","Democrat" +3,2,10425,"turk",2,1,99,5,99,99,"Fox News","Democrat" +3,2,10428,"turk",2,1,90,3,90,80,"Fox News","Republican" +3,2,10429,"turk",4,1,100,5,100,99,"Fox News","Democrat" +3,2,10432,"turk",4,1,85,3,85,80,"Fox News","Democrat" +3,2,10433,"turk",3,1,80,2,80,50,"Fox News","Democrat" +3,2,10435,"turk",3,1,1,2,1,0,"Fox News","Democrat" +3,2,10436,"turk",3,1,99,2,99,99,"Fox News","Democrat" +3,2,10441,"turk",3,1,88,5,88,90,"Fox News","Democrat" +3,2,10446,"turk",4,1,75,5,75,65,"Fox News","Democrat" +3,2,10448,"turk",3,1,80,4,80,80,"Fox News","Republican" +3,2,10449,"turk",4,1,80,3,80,50,"Fox News","Democrat" +3,2,10451,"turk",4,1,75,2,75,10,"Fox News","Republican" +3,2,10454,"turk",3,1,99,5,99,99,"Fox News","Democrat" +3,2,10455,"turk",2,1,99,4,99,99,"Fox News","Democrat" +3,2,10456,"turk",2,1,1,3,1,99,"Fox News","Democrat" +3,2,10457,"turk",3,1,90,3,90,90,"Fox News","Republican" +3,2,10458,"turk",2,1,33,3,33,55,"Fox News","Republican" +3,2,10466,"turk",4,1,80,2,80,60,"Fox News","Neither" +3,2,10467,"turk",2,1,99,2,99,99,"Fox News","Neither" +3,2,10468,"turk",2,1,20,5,20,20,"Fox News","Democrat" +3,2,10473,"turk",3,1,1,4,1,1,"Fox News","Democrat" +3,2,10474,"turk",4,1,78,2,78,50,"Fox News","Democrat" +3,2,10475,"turk",4,1,99,5,99,99,"Fox News","Democrat" +3,2,10478,"turk",3,1,80,2,80,50,"Fox News","Neither" +3,2,10489,"turk",3,1,70,2,70,30,"Fox News","Democrat" +3,2,10495,"turk",2,1,12,4,12,15,"Fox News","Neither" +3,2,10497,"turk",4,1,1,3,1,1,"Fox News","Democrat" +3,2,10502,"turk",3,1,30,5,30,30,"Fox News","Democrat" +3,2,10503,"turk",3,1,99,3,99,99,"Fox News","Democrat" +3,2,10505,"turk",3,1,80,3,80,50,"Fox News","Republican" +3,2,10506,"turk",2,1,99,3,99,99,"Fox News","Democrat" +3,2,10507,"turk",2,1,1,3,1,99,"Fox News","Democrat" +3,2,10511,"turk",4,1,60,2,60,50,"Fox News","Democrat" +3,2,10512,"turk",3,1,25,3,25,25,"Fox News","Democrat" +3,2,10517,"turk",2,1,50,4,50,99,"Fox News","Republican" +3,2,10522,"turk",2,1,10,3,10,5,"Fox News","Republican" +3,2,10526,"turk",2,1,60,2,60,50,"Fox News","Neither" +3,2,10528,"turk",2,1,99,5,99,99,"Fox News","Neither" +3,2,10532,"turk",4,1,25,3,25,25,"Fox News","Democrat" +3,2,10533,"turk",3,1,90,2,90,90,"Fox News","Democrat" +3,2,10534,"turk",4,1,94,5,94,93,"Fox News","Republican" +3,2,10535,"turk",3,1,80,3,80,65,"Fox News","Republican" +3,3,53,"tess",2,0,90,2,10,20,"New York Times","Democrat" +3,3,64,"tess",1,1,17,2,17,30,"New York Times","Democrat" +3,3,70,"tess",2,0,21,2,79,43,"New York Times","Republican" +3,3,77,"tess",2,1,39,3,39,27,"New York Times","Democrat" +3,3,78,"tess",3,1,50,2,50,9,"New York Times","Democrat" +3,3,90,"tess",4,1,97,2,97,61,"New York Times","Democrat" +3,3,94,"tess",3,1,95,3,95,90,"New York Times","Republican" +3,3,95,"tess",2,1,76,2,76,92,"New York Times","Democrat" +3,3,96,"tess",2,1,51,3,51,71,"New York Times","Democrat" +3,3,114,"tess",3,1,98,3,98,99,"New York Times","Republican" +3,3,152,"tess",2,1,91,3,91,51,"New York Times","Neither" +3,3,182,"tess",3,0,60,2,40,20,"New York Times","Democrat" +3,3,188,"tess",2,1,77,2,77,100,"New York Times","Democrat" +3,3,189,"tess",2,1,80,3,80,20,"New York Times","Republican" +3,3,196,"tess",4,0,71,2,29,7,"New York Times","Democrat" +3,3,206,"tess",3,1,51,3,51,11,"New York Times","Republican" +3,3,207,"tess",3,1,51,3,51,87,"New York Times","Republican" +3,3,221,"tess",3,0,25,3,75,56,"New York Times","Democrat" +3,3,234,"tess",3,0,51,3,49,1,"New York Times","Democrat" +3,3,247,"tess",3,0,16,2,84,57,"New York Times","Republican" +3,3,262,"tess",3,0,1,2,99,99,"New York Times","Democrat" +3,3,299,"tess",1,1,10,3,10,10,"New York Times","Democrat" +3,3,308,"tess",4,1,85,2,85,95,"New York Times","Democrat" +3,3,342,"tess",1,0,70,3,30,40,"New York Times","Democrat" +3,3,372,"tess",1,0,NA,3,NA,60,"New York Times","Republican" +3,3,399,"tess",1,0,1,3,99,90,"New York Times","Neither" +3,3,405,"tess",1,0,100,3,0,1,"New York Times","Republican" +3,3,413,"tess",1,0,14,3,86,83,"New York Times","Democrat" +3,3,421,"tess",2,0,93,3,7,7,"New York Times","Democrat" +3,3,431,"tess",3,0,NA,2,NA,42,"New York Times","Democrat" +3,3,450,"tess",1,1,94,3,94,80,"New York Times","Republican" +3,3,502,"tess",2,0,50,2,50,50,"New York Times","Democrat" +3,3,508,"tess",2,0,37,2,63,88,"New York Times","Republican" +3,3,509,"tess",1,0,50,2,50,50,"New York Times","Democrat" +3,3,512,"tess",1,1,60,2,60,90,"New York Times","Democrat" +3,3,549,"tess",1,0,61,2,39,50,"New York Times","Democrat" +3,3,550,"tess",3,0,76,3,24,1,"New York Times","Republican" +3,3,567,"tess",2,0,0,2,100,1,"New York Times","Democrat" +3,3,574,"tess",2,1,69,3,69,49,"New York Times","Democrat" +3,3,584,"tess",3,1,63,2,63,34,"New York Times","Democrat" +3,3,589,"tess",1,1,63,2,63,100,"New York Times","Republican" +3,3,596,"tess",1,0,100,3,0,0,"New York Times","Democrat" +3,3,602,"tess",2,1,87,2,87,16,"New York Times","Democrat" +3,3,611,"tess",3,0,72,2,28,3,"New York Times","Republican" +3,3,617,"tess",2,0,1,3,99,0,"New York Times","Republican" +3,3,627,"tess",4,0,65,2,35,14,"New York Times","Democrat" +3,3,638,"tess",1,1,16,3,16,56,"New York Times","Republican" +3,3,639,"tess",1,1,41,3,41,51,"New York Times","Democrat" +3,3,675,"tess",2,1,93,3,93,10,"New York Times","Democrat" +3,3,702,"tess",2,1,54,2,54,100,"New York Times","Democrat" +3,3,717,"tess",3,0,60,3,40,70,"New York Times","Republican" +3,3,766,"tess",2,1,66,3,66,48,"New York Times","Republican" +3,3,770,"tess",1,0,0,3,100,50,"New York Times","Democrat" +3,3,773,"tess",2,1,48,2,48,77,"New York Times","Democrat" +3,3,783,"tess",4,1,84,2,84,16,"New York Times","Democrat" +3,3,786,"tess",1,0,80,2,20,80,"New York Times","Republican" +3,3,823,"tess",1,0,100,2,0,0,"New York Times","Democrat" +3,3,845,"tess",1,1,97,3,97,97,"New York Times","Republican" +3,3,847,"tess",3,0,22,2,78,30,"New York Times","Democrat" +3,3,857,"tess",3,0,NA,3,NA,89,"New York Times","Democrat" +3,3,861,"tess",3,0,3,3,97,3,"New York Times","Democrat" +3,3,898,"tess",2,0,54,3,46,47,"New York Times","Republican" +3,3,919,"tess",1,1,87,3,87,99,"New York Times","Democrat" +3,3,922,"tess",1,0,47,2,53,26,"New York Times","Republican" +3,3,928,"tess",3,0,91,2,9,50,"New York Times","Republican" +3,3,943,"tess",1,1,90,2,90,97,"New York Times","Republican" +3,3,950,"tess",3,1,81,3,81,71,"New York Times","Democrat" +3,3,958,"tess",1,1,3,2,3,3,"New York Times","Democrat" +3,3,961,"tess",3,0,51,3,49,94,"New York Times","Democrat" +3,3,978,"tess",4,0,55,2,45,43,"New York Times","Democrat" +3,3,985,"tess",4,0,80,2,20,80,"New York Times","Republican" +3,3,997,"tess",3,1,90,2,90,79,"New York Times","Democrat" +3,3,1020,"tess",2,1,80,2,80,51,"New York Times","Republican" +3,3,1031,"tess",2,1,93,3,93,16,"New York Times","Democrat" +3,3,1035,"tess",2,0,NA,3,NA,40,"New York Times","Democrat" +3,3,1036,"tess",1,1,99,2,99,99,"New York Times","Republican" +3,3,1046,"tess",2,1,97,3,97,98,"New York Times","Republican" +3,3,1047,"tess",1,1,54,2,54,34,"New York Times","Republican" +3,3,1055,"tess",4,0,75,2,25,20,"New York Times","Republican" +3,3,1065,"tess",3,0,100,2,0,84,"New York Times","Republican" +3,3,1068,"tess",4,0,71,2,29,3,"New York Times","Republican" +3,3,1081,"tess",3,1,51,3,51,61,"New York Times","Democrat" +3,3,1083,"tess",3,0,98,3,2,40,"New York Times","Democrat" +3,3,1084,"tess",3,0,90,3,10,37,"New York Times","Republican" +3,3,1096,"tess",2,0,50,3,50,7,"New York Times","Democrat" +3,3,1100,"tess",1,1,75,2,75,24,"New York Times","Republican" +3,3,1104,"tess",3,1,82,3,82,60,"New York Times","Democrat" +3,3,1110,"tess",1,0,90,3,10,100,"New York Times","Neither" +3,3,1122,"tess",3,0,99,3,1,100,"New York Times","Republican" +3,3,1133,"tess",2,0,90,2,10,5,"New York Times","Republican" +3,3,1141,"tess",3,0,49,2,51,80,"New York Times","Democrat" +3,3,1148,"tess",1,0,31,2,69,20,"New York Times","Republican" +3,3,1150,"tess",2,1,37,3,37,37,"New York Times","Democrat" +3,3,1156,"tess",3,1,50,3,50,98,"New York Times","Democrat" +3,3,1172,"tess",2,1,92,2,92,96,"New York Times","Republican" +3,3,1192,"tess",1,1,84,3,84,78,"New York Times","Democrat" +3,3,1193,"tess",3,1,25,3,25,1,"New York Times","Democrat" +3,3,1220,"tess",1,1,91,2,91,80,"New York Times","Democrat" +3,3,1235,"tess",2,1,50,3,50,90,"New York Times","Republican" +3,3,1260,"tess",4,0,29,2,71,38,"New York Times","Democrat" +3,3,1265,"tess",2,1,48,2,48,85,"New York Times","Republican" +3,3,1277,"tess",2,0,NA,3,NA,NA,"New York Times","Republican" +3,3,1307,"tess",4,1,75,2,75,30,"New York Times","Republican" +3,3,1314,"tess",3,1,79,3,79,70,"New York Times","Democrat" +3,3,1321,"tess",1,0,77,2,23,15,"New York Times","Republican" +3,3,1336,"tess",1,1,60,2,60,60,"New York Times","Republican" +3,3,1356,"tess",2,1,79,2,79,83,"New York Times","Republican" +3,3,1382,"tess",1,1,14,2,14,100,"New York Times","Republican" +3,3,1419,"tess",3,0,67,3,33,20,"New York Times","Republican" +3,3,1445,"tess",1,0,50,2,50,15,"New York Times","Republican" +3,3,1454,"tess",3,1,100,2,100,89,"New York Times","Democrat" +3,3,1464,"tess",1,0,19,3,81,51,"New York Times","Democrat" +3,3,1500,"tess",1,1,90,3,90,95,"New York Times","Democrat" +3,3,1507,"tess",1,1,50,3,50,90,"New York Times","Democrat" +3,3,1510,"tess",2,1,76,3,76,79,"New York Times","Republican" +3,3,1511,"tess",2,0,2,3,98,96,"New York Times","Republican" +3,3,1518,"tess",2,1,80,2,80,74,"New York Times","Democrat" +3,3,1530,"tess",4,0,47,2,53,51,"New York Times","Republican" +3,3,1532,"tess",2,0,64,2,36,36,"New York Times","Republican" +3,3,1541,"tess",1,0,0,2,100,70,"New York Times","Republican" +3,3,1556,"tess",2,0,40,2,60,25,"New York Times","Democrat" +3,3,1600,"tess",3,1,98,2,98,98,"New York Times","Republican" +3,3,1605,"tess",2,0,84,3,16,19,"New York Times","Republican" +3,3,1618,"tess",2,0,44,2,56,67,"New York Times","Republican" +3,3,1624,"tess",2,1,50,2,50,50,"New York Times","Republican" +3,3,1631,"tess",3,0,40,3,60,30,"New York Times","Democrat" +3,3,1663,"tess",3,0,76,2,24,34,"New York Times","Neither" +3,3,1669,"tess",3,1,50,2,50,84,"New York Times","Democrat" +3,3,1673,"tess",3,0,30,3,70,61,"New York Times","Democrat" +3,3,1674,"tess",2,0,50,2,50,7,"New York Times","Republican" +3,3,1724,"tess",3,0,70,2,30,30,"New York Times","Democrat" +3,3,1728,"tess",1,0,50,3,50,50,"New York Times","Democrat" +3,3,1739,"tess",3,0,22,2,78,55,"New York Times","Republican" +3,3,1813,"tess",2,1,50,2,50,61,"New York Times","Democrat" +3,3,1835,"tess",1,0,3,2,97,100,"New York Times","Neither" +3,3,1850,"tess",2,0,10,2,90,70,"New York Times","Republican" +3,3,1851,"tess",3,0,79,2,21,21,"New York Times","Democrat" +3,3,1856,"tess",2,1,75,3,75,67,"New York Times","Republican" +3,3,1891,"tess",3,0,100,2,0,100,"New York Times","Republican" +3,3,1910,"tess",2,0,0,3,100,100,"New York Times","Republican" +3,3,1924,"tess",3,0,42,2,58,7,"New York Times","Democrat" +3,3,1930,"tess",2,1,96,2,96,74,"New York Times","Democrat" +3,3,1933,"tess",2,0,34,3,66,12,"New York Times","Democrat" +3,3,1935,"tess",1,0,77,3,23,99,"New York Times","Republican" +3,3,1939,"tess",4,0,64,2,36,70,"New York Times","Democrat" +3,3,1940,"tess",2,1,40,2,40,40,"New York Times","Democrat" +3,3,1950,"tess",2,1,23,2,23,16,"New York Times","Republican" +3,3,1973,"tess",3,1,60,3,60,60,"New York Times","Democrat" +3,3,1982,"tess",3,0,89,2,11,29,"New York Times","Democrat" +3,3,1992,"tess",1,0,11,3,89,89,"New York Times","Democrat" +3,3,2017,"tess",2,0,33,3,67,26,"New York Times","Democrat" +3,3,2030,"tess",4,0,96,2,4,9,"New York Times","Democrat" +3,3,2033,"tess",3,0,41,2,59,50,"New York Times","Democrat" +3,3,2049,"tess",2,1,62,2,62,33,"New York Times","Democrat" +3,3,2061,"tess",2,1,100,2,100,94,"New York Times","Democrat" +3,3,2072,"tess",1,0,27,3,73,77,"New York Times","Democrat" +3,3,2080,"tess",1,1,58,2,58,53,"New York Times","Democrat" +3,3,2099,"tess",3,1,89,3,89,71,"New York Times","Republican" +3,3,2104,"tess",4,0,98,2,2,99,"New York Times","Republican" +3,3,2107,"tess",2,0,70,3,30,39,"New York Times","Republican" +3,3,2124,"tess",1,0,100,3,0,21,"New York Times","Republican" +3,3,2147,"tess",1,0,91,2,9,11,"New York Times","Democrat" +3,3,2153,"tess",3,0,52,3,48,4,"New York Times","Democrat" +3,3,2196,"tess",2,0,100,2,0,0,"New York Times","Republican" +3,3,2207,"tess",2,1,30,3,30,57,"New York Times","Republican" +3,3,2225,"tess",3,1,100,3,100,99,"New York Times","Republican" +3,3,2228,"tess",2,1,17,2,17,17,"New York Times","Democrat" +3,3,2230,"tess",1,1,89,3,89,11,"New York Times","Republican" +3,3,2242,"tess",1,0,76,3,24,62,"New York Times","Republican" +3,3,2248,"tess",3,0,44,3,56,57,"New York Times","Democrat" +3,3,2253,"tess",3,0,98,2,2,50,"New York Times","Democrat" +3,3,2271,"tess",1,0,50,3,50,67,"New York Times","Democrat" +3,3,2275,"tess",3,1,80,2,80,77,"New York Times","Republican" +3,3,2286,"tess",3,0,100,3,0,23,"New York Times","Democrat" +3,3,2287,"tess",3,1,30,3,30,70,"New York Times","Democrat" +3,3,2291,"tess",1,1,50,3,50,90,"New York Times","Republican" +3,3,2308,"tess",2,0,86,3,14,69,"New York Times","Democrat" +3,3,2315,"tess",2,1,50,3,50,51,"New York Times","Democrat" +3,3,2318,"tess",3,0,80,3,20,70,"New York Times","Democrat" +3,3,2378,"tess",3,0,89,3,11,57,"New York Times","Democrat" +3,3,2379,"tess",3,0,59,2,41,31,"New York Times","Republican" +3,3,2381,"tess",2,0,32,2,68,22,"New York Times","Democrat" +3,3,2393,"tess",3,0,10,3,90,90,"New York Times","Democrat" +3,3,2447,"tess",2,0,76,3,24,13,"New York Times","Democrat" +3,3,2459,"tess",3,0,85,2,15,30,"New York Times","Democrat" +3,3,2474,"tess",1,0,50,3,50,100,"New York Times","Democrat" +3,3,2483,"tess",2,1,89,3,89,70,"New York Times","Democrat" +3,3,2485,"tess",1,1,80,2,80,80,"New York Times","Democrat" +3,3,2488,"tess",2,0,42,2,58,30,"New York Times","Democrat" +3,3,2511,"tess",4,0,46,2,54,19,"New York Times","Democrat" +3,3,2514,"tess",3,0,31,3,69,93,"New York Times","Democrat" +3,3,2518,"tess",1,1,100,2,100,97,"New York Times","Republican" +3,3,2519,"tess",3,0,86,3,14,50,"New York Times","Democrat" +3,3,2520,"tess",4,1,99,2,99,98,"New York Times","Democrat" +3,3,2528,"tess",3,0,80,2,20,25,"New York Times","Democrat" +3,3,2529,"tess",1,1,54,2,54,80,"New York Times","Democrat" +3,3,2532,"tess",1,0,90,2,10,94,"New York Times","Democrat" +3,3,2536,"tess",1,0,60,3,40,70,"New York Times","Democrat" +3,3,2547,"tess",2,1,10,3,10,10,"New York Times","Republican" +3,3,2557,"tess",1,0,62,2,38,50,"New York Times","Democrat" +3,3,2578,"tess",2,0,49,3,51,69,"New York Times","Republican" +3,3,2644,"tess",2,0,61,2,39,1,"New York Times","Democrat" +3,3,2695,"tess",1,1,100,2,100,80,"New York Times","Republican" +3,3,2698,"tess",1,0,60,3,40,77,"New York Times","Republican" +3,3,2700,"tess",3,1,60,2,60,40,"New York Times","Democrat" +3,3,2709,"tess",2,1,95,2,95,61,"New York Times","Democrat" +3,3,2715,"tess",3,0,19,2,81,65,"New York Times","Republican" +3,3,2720,"tess",2,0,47,2,53,15,"New York Times","Republican" +3,3,2733,"tess",3,1,94,3,94,92,"New York Times","Democrat" +3,3,2740,"tess",1,0,0,3,100,100,"New York Times","Democrat" +3,3,2741,"tess",4,1,0,2,0,50,"New York Times","Democrat" +3,3,2745,"tess",3,0,30,3,70,60,"New York Times","Republican" +3,3,2778,"tess",2,1,71,3,71,71,"New York Times","Republican" +3,3,2779,"tess",4,0,40,2,60,20,"New York Times","Democrat" +3,3,2795,"tess",2,0,NA,3,NA,80,"New York Times","Republican" +3,3,2797,"tess",3,1,63,3,63,55,"New York Times","Democrat" +3,3,2828,"tess",2,0,61,2,39,19,"New York Times","Republican" +3,3,2885,"tess",3,0,96,3,4,2,"New York Times","Republican" +3,3,2892,"tess",2,1,NA,3,NA,NA,"New York Times","Democrat" +3,3,2906,"tess",3,1,90,2,90,100,"New York Times","Democrat" +3,3,2923,"tess",2,0,72,2,28,55,"New York Times","Neither" +3,3,2998,"tess",1,1,71,2,71,26,"New York Times","Republican" +3,3,3006,"tess",3,1,NA,3,NA,50,"New York Times","Democrat" +3,3,3020,"tess",4,0,62,2,38,18,"New York Times","Democrat" +3,3,3021,"tess",4,0,70,2,30,10,"New York Times","Democrat" +3,3,3025,"tess",2,0,1,2,99,1,"New York Times","Democrat" +3,3,3028,"tess",3,0,80,2,20,19,"New York Times","Democrat" +3,3,3051,"tess",1,0,60,2,40,60,"New York Times","Republican" +3,3,3062,"tess",3,1,84,2,84,72,"New York Times","Neither" +3,3,3077,"tess",1,1,20,2,20,40,"New York Times","Democrat" +3,3,3082,"tess",3,0,47,2,53,52,"New York Times","Neither" +3,3,3086,"tess",3,1,89,2,89,39,"New York Times","Republican" +3,3,3089,"tess",4,0,46,2,54,62,"New York Times","Democrat" +3,3,3102,"tess",1,0,95,2,5,0,"New York Times","Democrat" +3,3,3107,"tess",2,0,99,3,1,88,"New York Times","Democrat" +3,3,3156,"tess",3,1,90,2,90,50,"New York Times","Democrat" +3,3,3186,"tess",1,1,41,3,41,41,"New York Times","Democrat" +3,3,3190,"tess",2,0,52,2,48,7,"New York Times","Democrat" +3,3,3192,"tess",1,1,70,2,70,99,"New York Times","Democrat" +3,3,3201,"tess",2,0,67,2,33,59,"New York Times","Republican" +3,3,3205,"tess",2,0,50,2,50,43,"New York Times","Republican" +3,3,3208,"tess",2,0,50,2,50,50,"New York Times","Democrat" +3,3,3230,"tess",1,0,1,2,99,0,"New York Times","Republican" +3,3,3262,"tess",3,1,93,3,93,75,"New York Times","Republican" +3,3,3263,"tess",3,1,69,3,69,30,"New York Times","Democrat" +3,3,3281,"tess",3,1,98,2,98,98,"New York Times","Democrat" +3,3,3313,"tess",2,0,34,3,66,25,"New York Times","Republican" +3,3,3320,"tess",2,1,12,2,12,80,"New York Times","Democrat" +3,3,3333,"tess",1,0,74,2,26,54,"New York Times","Democrat" +3,3,3335,"tess",3,0,36,2,64,22,"New York Times","Democrat" +3,3,3344,"tess",1,0,75,3,25,21,"New York Times","Democrat" +3,3,3364,"tess",3,1,14,2,14,7,"New York Times","Democrat" +3,3,3371,"tess",4,0,91,2,9,9,"New York Times","Democrat" +3,3,3412,"tess",3,1,92,2,92,46,"New York Times","Democrat" +3,3,3430,"tess",1,1,54,2,54,94,"New York Times","Democrat" +3,3,3433,"tess",3,0,78,2,22,70,"New York Times","Democrat" +3,3,3435,"tess",3,0,60,3,40,26,"New York Times","Republican" +3,3,3437,"tess",1,1,55,2,55,10,"New York Times","Republican" +3,3,3452,"tess",3,1,43,3,43,77,"New York Times","Republican" +3,3,3454,"tess",1,1,98,2,98,100,"New York Times","Democrat" +3,3,3462,"tess",2,0,36,2,64,41,"New York Times","Republican" +3,3,3488,"tess",2,0,91,2,9,90,"New York Times","Republican" +3,3,3494,"tess",3,0,73,2,27,49,"New York Times","Democrat" +3,3,3505,"tess",1,1,90,2,90,70,"New York Times","Republican" +3,3,3507,"tess",4,1,87,2,87,87,"New York Times","Democrat" +3,3,3512,"tess",2,1,1,2,1,3,"New York Times","Republican" +3,3,3515,"tess",1,0,99,2,1,2,"New York Times","Republican" +3,3,3517,"tess",3,1,10,3,10,10,"New York Times","Republican" +3,3,3522,"tess",1,1,91,2,91,90,"New York Times","Republican" +3,3,3536,"tess",2,1,0,2,0,100,"New York Times","Republican" +3,3,3564,"tess",2,1,96,3,96,95,"New York Times","Republican" +3,3,3573,"tess",1,1,45,2,45,98,"New York Times","Democrat" +3,3,3582,"tess",2,1,98,2,98,99,"New York Times","Republican" +3,3,3589,"tess",3,1,5,3,5,50,"New York Times","Democrat" +3,3,3611,"tess",1,0,51,3,49,100,"New York Times","Democrat" +3,3,3612,"tess",2,1,50,2,50,21,"New York Times","Republican" +3,3,3627,"tess",1,1,90,3,90,90,"New York Times","Republican" +3,3,3629,"tess",1,1,10,2,10,10,"New York Times","Republican" +3,3,3631,"tess",1,1,90,2,90,90,"New York Times","Democrat" +3,3,3634,"tess",1,1,75,2,75,27,"New York Times","Democrat" +3,3,3635,"tess",2,0,0,3,100,100,"New York Times","Republican" +3,3,3653,"tess",1,1,91,3,91,79,"New York Times","Democrat" +3,3,3656,"tess",3,0,2,2,98,36,"New York Times","Democrat" +3,3,3673,"tess",2,0,32,3,68,83,"New York Times","Republican" +3,3,3681,"tess",2,0,47,2,53,77,"New York Times","Democrat" +3,3,3695,"tess",1,0,76,2,24,19,"New York Times","Republican" +3,3,3699,"tess",3,0,88,2,12,71,"New York Times","Republican" +3,3,3704,"tess",2,0,43,3,57,26,"New York Times","Republican" +3,3,3710,"tess",4,1,100,2,100,75,"New York Times","Democrat" +3,3,3711,"tess",1,0,49,2,51,41,"New York Times","Democrat" +3,3,3728,"tess",3,1,1,2,1,1,"New York Times","Republican" +3,3,3754,"tess",1,1,99,2,99,99,"New York Times","Democrat" +3,3,3759,"tess",1,1,45,3,45,0,"New York Times","Republican" +3,3,3779,"tess",2,0,90,2,10,10,"New York Times","Republican" +3,3,3795,"tess",3,1,14,2,14,16,"New York Times","Democrat" +3,3,3799,"tess",3,0,76,2,24,12,"New York Times","Republican" +3,3,3801,"tess",1,1,84,2,84,80,"New York Times","Democrat" +3,3,3806,"tess",3,0,48,2,52,32,"New York Times","Republican" +3,3,3810,"tess",3,1,20,2,20,20,"New York Times","Democrat" +3,3,3811,"tess",1,0,89,3,11,10,"New York Times","Republican" +3,3,3814,"tess",1,0,50,3,50,1,"New York Times","Democrat" +3,3,3819,"tess",3,0,55,2,45,5,"New York Times","Republican" +3,3,3820,"tess",3,0,19,2,81,10,"New York Times","Democrat" +3,3,3865,"tess",3,1,86,3,86,51,"New York Times","Democrat" +3,3,3904,"tess",2,0,50,2,50,51,"New York Times","Democrat" +3,3,3918,"tess",2,0,99,2,1,99,"New York Times","Democrat" +3,3,3919,"tess",1,0,50,2,50,10,"New York Times","Democrat" +3,3,3959,"tess",3,1,22,3,22,60,"New York Times","Democrat" +3,3,3961,"tess",1,1,80,2,80,6,"New York Times","Democrat" +3,3,3965,"tess",2,1,50,3,50,10,"New York Times","Democrat" +3,3,3966,"tess",2,1,100,2,100,30,"New York Times","Democrat" +3,3,3981,"tess",1,0,51,2,49,40,"New York Times","Republican" +3,3,4001,"tess",3,1,20,2,20,20,"New York Times","Neither" +3,3,4007,"tess",1,0,51,3,49,30,"New York Times","Republican" +3,3,4015,"tess",1,1,99,2,99,60,"New York Times","Democrat" +3,3,4039,"tess",3,0,0,2,100,20,"New York Times","Democrat" +3,3,4049,"tess",3,0,50,3,50,25,"New York Times","Neither" +3,3,4069,"tess",3,0,62,3,38,39,"New York Times","Democrat" +3,3,4075,"tess",1,0,51,2,49,10,"New York Times","Democrat" +3,3,4096,"tess",4,1,80,2,80,70,"New York Times","Democrat" +3,3,4108,"tess",1,1,100,2,100,80,"New York Times","Democrat" +3,3,4120,"tess",4,1,61,2,61,50,"New York Times","Republican" +3,3,4141,"tess",2,1,98,3,98,95,"New York Times","Democrat" +3,3,4149,"tess",3,1,53,2,53,2,"New York Times","Republican" +3,3,4160,"tess",4,0,61,2,39,10,"New York Times","Democrat" +3,3,4195,"tess",3,1,70,3,70,80,"New York Times","Republican" +3,3,4197,"tess",1,0,0,3,100,100,"New York Times","Democrat" +3,3,4202,"tess",3,0,80,3,20,10,"New York Times","Democrat" +3,3,4209,"tess",3,1,42,2,42,62,"New York Times","Democrat" +3,3,4210,"tess",3,0,95,3,5,10,"New York Times","Republican" +3,3,4222,"tess",4,0,70,2,30,10,"New York Times","Democrat" +3,3,4224,"tess",3,1,90,3,90,85,"New York Times","Democrat" +3,3,4227,"tess",1,1,80,2,80,52,"New York Times","Democrat" +3,3,4237,"tess",3,0,1,3,99,50,"New York Times","Democrat" +3,3,4238,"tess",4,1,57,2,57,92,"New York Times","Democrat" +3,3,4252,"tess",2,0,49,3,51,32,"New York Times","Republican" +3,3,4253,"tess",2,1,38,2,38,35,"New York Times","Democrat" +3,3,4266,"tess",2,1,89,3,89,63,"New York Times","Democrat" +3,3,4277,"tess",4,1,100,2,100,94,"New York Times","Democrat" +3,3,4282,"tess",3,1,53,3,53,65,"New York Times","Republican" +3,3,4298,"tess",1,0,75,3,25,60,"New York Times","Democrat" +3,3,4302,"tess",1,1,100,3,100,83,"New York Times","Democrat" +3,3,4307,"tess",3,0,60,3,40,30,"New York Times","Republican" +3,3,4325,"tess",4,1,100,2,100,100,"New York Times","Democrat" +3,3,4326,"tess",2,0,68,2,32,47,"New York Times","Democrat" +3,3,4357,"tess",2,1,100,3,100,0,"New York Times","Democrat" +3,3,4365,"tess",4,0,25,2,75,60,"New York Times","Republican" +3,3,4380,"tess",3,0,98,2,2,2,"New York Times","Republican" +3,3,4391,"tess",4,0,43,2,57,41,"New York Times","Democrat" +3,3,4403,"tess",3,1,60,2,60,48,"New York Times","Republican" +3,3,4412,"tess",1,1,90,3,90,100,"New York Times","Republican" +3,3,4420,"tess",4,0,28,2,72,41,"New York Times","Democrat" +3,3,4431,"tess",3,1,90,2,90,95,"New York Times","Democrat" +3,3,4441,"tess",2,1,90,2,90,51,"New York Times","Democrat" +3,3,4447,"tess",1,1,92,2,92,90,"New York Times","Republican" +3,3,4451,"tess",2,0,27,2,73,65,"New York Times","Republican" +3,3,4452,"tess",1,1,100,3,100,100,"New York Times","Republican" +3,3,4457,"tess",3,0,42,3,58,0,"New York Times","Democrat" +3,3,4470,"tess",3,0,55,3,45,32,"New York Times","Democrat" +3,3,4476,"tess",3,0,30,2,70,70,"New York Times","Democrat" +3,3,4480,"tess",4,1,55,2,55,81,"New York Times","Democrat" +3,3,4482,"tess",1,0,49,3,51,50,"New York Times","Neither" +3,3,4512,"tess",1,1,59,3,59,29,"New York Times","Democrat" +3,3,4516,"tess",3,1,69,2,69,57,"New York Times","Democrat" +3,3,4523,"tess",3,1,91,2,91,75,"New York Times","Republican" +3,3,4524,"tess",4,0,41,2,59,30,"New York Times","Republican" +3,3,4552,"tess",1,0,54,3,46,61,"New York Times","Democrat" +3,3,4561,"tess",3,1,82,3,82,78,"New York Times","Democrat" +3,3,4581,"tess",1,0,39,2,61,19,"New York Times","Democrat" +3,3,4587,"tess",1,1,97,3,97,99,"New York Times","Republican" +3,3,4618,"tess",2,0,24,3,76,59,"New York Times","Democrat" +3,3,4624,"tess",3,0,50,3,50,20,"New York Times","Republican" +3,3,4632,"tess",1,1,80,2,80,75,"New York Times","Democrat" +3,3,4642,"tess",4,1,79,2,79,71,"New York Times","Democrat" +3,3,4656,"tess",1,1,50,3,50,28,"New York Times","Democrat" +3,3,4663,"tess",1,0,93,3,7,80,"New York Times","Democrat" +3,3,4691,"tess",4,0,91,2,9,21,"New York Times","Democrat" +3,3,4726,"tess",3,0,56,2,44,24,"New York Times","Republican" +3,3,4770,"tess",4,1,98,2,98,50,"New York Times","Democrat" +3,3,4780,"tess",1,1,91,2,91,20,"New York Times","Republican" +3,3,4782,"tess",1,1,51,2,51,59,"New York Times","Democrat" +3,3,4785,"tess",3,1,50,3,50,98,"New York Times","Republican" +3,3,4789,"tess",1,0,5,3,95,30,"New York Times","Democrat" +3,3,4800,"tess",1,1,95,2,95,79,"New York Times","Republican" +3,3,4816,"tess",1,0,10,3,90,4,"New York Times","Democrat" +3,3,4819,"tess",2,1,82,3,82,73,"New York Times","Democrat" +3,3,4821,"tess",1,0,57,2,43,52,"New York Times","Neither" +3,3,4826,"tess",4,0,90,2,10,0,"New York Times","Democrat" +3,3,4869,"tess",4,0,1,2,99,1,"New York Times","Democrat" +3,3,4880,"tess",2,1,71,3,71,76,"New York Times","Republican" +3,3,4887,"tess",3,0,51,2,49,13,"New York Times","Republican" +3,3,4897,"tess",1,0,60,2,40,20,"New York Times","Democrat" +3,3,4899,"tess",2,1,96,3,96,96,"New York Times","Democrat" +3,3,4906,"tess",3,1,53,3,53,94,"New York Times","Republican" +3,3,4921,"tess",2,0,0,3,100,100,"New York Times","Republican" +3,3,4925,"tess",3,0,50,3,50,71,"New York Times","Democrat" +3,3,4966,"tess",1,0,91,2,9,96,"New York Times","Republican" +3,3,4977,"tess",3,0,10,2,90,0,"New York Times","Republican" +3,3,4998,"tess",2,1,44,2,44,14,"New York Times","Democrat" +3,3,5003,"tess",1,1,86,3,86,76,"New York Times","Republican" +3,3,5018,"tess",1,1,99,2,99,69,"New York Times","Democrat" +3,3,5086,"tess",3,1,40,2,40,99,"New York Times","Neither" +3,3,5092,"tess",2,0,47,2,53,40,"New York Times","Republican" +3,3,5132,"tess",3,0,50,2,50,34,"New York Times","Republican" +3,3,5144,"tess",2,1,42,2,42,13,"New York Times","Democrat" +3,3,5147,"tess",1,1,82,2,82,86,"New York Times","Republican" +3,3,5151,"tess",3,1,98,3,98,1,"New York Times","Democrat" +3,3,5160,"tess",4,1,17,2,17,14,"New York Times","Democrat" +3,3,5172,"tess",4,0,99,2,1,20,"New York Times","Democrat" +3,3,5175,"tess",4,0,61,2,39,60,"New York Times","Democrat" +3,3,5195,"tess",2,1,91,2,91,50,"New York Times","Democrat" +3,3,5222,"tess",1,1,100,3,100,68,"New York Times","Democrat" +3,3,5224,"tess",2,0,43,3,57,11,"New York Times","Republican" +3,3,5225,"tess",1,0,10,2,90,20,"New York Times","Democrat" +3,3,5275,"tess",1,1,99,2,99,2,"New York Times","Democrat" +3,3,5279,"tess",2,0,0,2,100,0,"New York Times","Democrat" +3,3,5288,"tess",4,1,100,2,100,98,"New York Times","Democrat" +3,3,5301,"tess",3,0,97,3,3,4,"New York Times","Democrat" +3,3,5308,"tess",3,0,92,3,8,17,"New York Times","Democrat" +3,3,5314,"tess",1,0,1,2,99,3,"New York Times","Republican" +3,3,5325,"tess",4,1,100,2,100,83,"New York Times","Democrat" +3,3,5353,"tess",4,1,50,2,50,1,"New York Times","Democrat" +3,3,5363,"tess",3,1,99,3,99,3,"New York Times","Republican" +3,3,5378,"tess",4,1,91,2,91,0,"New York Times","Democrat" +3,3,5383,"tess",2,1,81,2,81,75,"New York Times","Republican" +3,3,5389,"tess",2,0,50,3,50,0,"New York Times","Republican" +3,3,5392,"tess",3,1,50,2,50,50,"New York Times","Democrat" +3,3,5407,"tess",3,0,27,3,73,16,"New York Times","Republican" +3,3,5411,"tess",1,1,59,3,59,20,"New York Times","Republican" +3,3,5412,"tess",1,1,100,3,100,97,"New York Times","Republican" +3,3,5419,"tess",4,0,99,2,1,20,"New York Times","Republican" +3,3,5430,"tess",1,0,0,2,100,0,"New York Times","Democrat" +3,3,5434,"tess",2,1,27,2,27,80,"New York Times","Republican" +3,3,5438,"tess",1,0,21,2,79,68,"New York Times","Democrat" +3,3,5448,"tess",1,1,75,2,75,19,"New York Times","Democrat" +3,3,5475,"tess",2,1,98,2,98,1,"New York Times","Democrat" +3,3,5490,"tess",3,0,18,2,82,96,"New York Times","Republican" +3,3,5500,"tess",1,1,70,3,70,65,"New York Times","Democrat" +3,3,5509,"tess",2,1,93,2,93,47,"New York Times","Democrat" +3,3,5544,"tess",2,1,95,3,95,96,"New York Times","Republican" +3,3,5551,"tess",2,1,78,3,78,79,"New York Times","Republican" +3,3,5559,"tess",3,0,46,3,54,30,"New York Times","Republican" +3,3,5570,"tess",3,1,50,3,50,50,"New York Times","Democrat" +3,3,5575,"tess",3,1,100,3,100,93,"New York Times","Democrat" +3,3,5595,"tess",3,1,99,2,99,99,"New York Times","Republican" +3,3,5597,"tess",1,1,45,3,45,83,"New York Times","Republican" +3,3,5614,"tess",3,0,22,3,78,19,"New York Times","Democrat" +3,3,5617,"tess",4,1,97,2,97,5,"New York Times","Democrat" +3,3,5626,"tess",2,0,3,2,97,10,"New York Times","Democrat" +3,3,5646,"tess",3,1,17,3,17,11,"New York Times","Republican" +3,3,5660,"tess",1,1,60,2,60,80,"New York Times","Democrat" +3,3,5663,"tess",1,0,20,3,80,70,"New York Times","Democrat" +3,3,5676,"tess",1,1,49,3,49,50,"New York Times","Democrat" +3,3,5679,"tess",1,1,34,3,34,75,"New York Times","Democrat" +3,3,5681,"tess",3,0,19,2,81,9,"New York Times","Democrat" +3,3,5684,"tess",3,0,22,2,78,92,"New York Times","Democrat" +3,3,5691,"tess",1,0,79,2,21,12,"New York Times","Democrat" +3,3,5725,"tess",1,0,4,3,96,94,"New York Times","Republican" +3,3,5730,"tess",4,1,59,2,59,79,"New York Times","Republican" +3,3,5731,"tess",2,0,50,3,50,1,"New York Times","Democrat" +3,3,5743,"tess",4,1,80,2,80,50,"New York Times","Republican" +3,3,5744,"tess",2,1,73,2,73,73,"New York Times","Democrat" +3,3,5746,"tess",3,0,NA,2,NA,95,"New York Times","Democrat" +3,3,5752,"tess",1,1,40,3,40,60,"New York Times","Democrat" +3,3,5772,"tess",4,1,57,2,57,49,"New York Times","Democrat" +3,3,5783,"tess",1,1,44,3,44,49,"New York Times","Democrat" +3,3,5787,"tess",3,0,48,2,52,13,"New York Times","Republican" +3,3,5802,"tess",2,1,90,3,90,90,"New York Times","Republican" +3,3,5815,"tess",4,0,50,2,50,60,"New York Times","Democrat" +3,3,5820,"tess",4,1,81,2,81,84,"New York Times","Democrat" +3,3,5842,"tess",4,0,10,2,90,0,"New York Times","Democrat" +3,3,5844,"tess",2,0,100,3,0,0,"New York Times","Democrat" +3,3,5854,"tess",2,1,50,3,50,50,"New York Times","Democrat" +3,3,5868,"tess",2,0,61,2,39,30,"New York Times","Democrat" +3,3,5873,"tess",3,0,20,2,80,4,"New York Times","Democrat" +3,3,5874,"tess",1,1,39,3,39,40,"New York Times","Democrat" +3,3,5889,"tess",3,0,52,3,48,48,"New York Times","Democrat" +3,3,5899,"tess",3,1,2,3,2,0,"New York Times","Democrat" +3,3,5901,"tess",2,0,10,3,90,80,"New York Times","Democrat" +3,3,5902,"tess",1,0,99,3,1,0,"New York Times","Republican" +3,3,5914,"tess",1,0,79,3,21,50,"New York Times","Republican" +3,3,5918,"tess",2,0,60,3,40,1,"New York Times","Republican" +3,3,5920,"tess",2,1,79,3,79,69,"New York Times","Republican" +3,3,5922,"tess",2,0,4,2,96,10,"New York Times","Republican" +3,3,5926,"tess",1,1,99,2,99,93,"New York Times","Democrat" +3,3,5934,"tess",4,1,98,2,98,98,"New York Times","Democrat" +3,3,5937,"tess",3,1,6,2,6,100,"New York Times","Democrat" +3,3,5940,"tess",3,0,82,3,18,48,"New York Times","Democrat" +3,3,5951,"tess",3,0,33,3,67,57,"New York Times","Democrat" +3,3,5954,"tess",3,0,40,2,60,30,"New York Times","Democrat" +3,3,5958,"tess",3,0,30,2,70,10,"New York Times","Democrat" +3,3,5964,"tess",3,0,46,3,54,8,"New York Times","Democrat" +3,3,5981,"tess",1,0,85,2,15,75,"New York Times","Republican" +3,3,5982,"tess",4,0,75,2,25,2,"New York Times","Democrat" +3,3,5987,"tess",2,0,10,2,90,70,"New York Times","Democrat" +3,3,5988,"tess",3,1,85,3,85,87,"New York Times","Democrat" +3,3,5994,"tess",3,0,90,3,10,91,"New York Times","Democrat" +3,3,5996,"tess",1,0,22,2,78,85,"New York Times","Democrat" +3,3,5998,"tess",4,1,81,2,81,50,"New York Times","Democrat" +3,3,6008,"tess",4,1,3,2,3,99,"New York Times","Republican" +3,3,6053,"tess",2,1,63,3,63,33,"New York Times","Republican" +3,3,6069,"tess",3,1,83,3,83,78,"New York Times","Democrat" +3,3,6070,"tess",1,1,80,3,80,20,"New York Times","Republican" +3,3,6084,"tess",3,1,81,3,81,50,"New York Times","Democrat" +3,3,6087,"tess",2,0,100,2,0,98,"New York Times","Democrat" +3,3,6090,"tess",1,1,92,2,92,100,"New York Times","Democrat" +3,3,6095,"tess",1,0,1,2,99,2,"New York Times","Democrat" +3,3,6100,"tess",4,1,50,2,50,61,"New York Times","Democrat" +3,3,6101,"tess",3,0,89,3,11,34,"New York Times","Democrat" +3,3,6130,"tess",3,1,13,3,13,84,"New York Times","Republican" +3,3,6131,"tess",4,1,80,2,80,80,"New York Times","Neither" +3,3,6132,"tess",2,0,0,2,100,0,"New York Times","Neither" +3,3,6136,"tess",1,1,94,2,94,76,"New York Times","Democrat" +3,3,6137,"tess",3,1,100,2,100,97,"New York Times","Democrat" +3,3,6142,"tess",4,1,94,2,94,99,"New York Times","Neither" +3,3,6144,"tess",4,0,64,2,36,34,"New York Times","Democrat" +3,3,6146,"tess",3,1,94,3,94,96,"New York Times","Republican" +3,3,6152,"tess",1,1,70,3,70,70,"New York Times","Democrat" +3,3,6155,"tess",3,1,93,2,93,12,"New York Times","Democrat" +3,3,6172,"tess",3,0,99,3,1,1,"New York Times","Democrat" +3,3,6187,"tess",3,0,29,2,71,3,"New York Times","Democrat" +3,3,6193,"tess",2,0,97,3,3,2,"New York Times","Democrat" +3,3,6195,"tess",1,1,75,3,75,75,"New York Times","Democrat" +3,3,6197,"tess",4,0,10,2,90,40,"New York Times","Democrat" +3,3,6204,"tess",3,0,50,2,50,30,"New York Times","Republican" +3,3,6215,"tess",3,1,50,2,50,50,"New York Times","Republican" +3,3,6220,"tess",1,0,50,2,50,40,"New York Times","Democrat" +3,3,6224,"tess",3,1,90,3,90,20,"New York Times","Democrat" +3,3,6225,"tess",3,1,40,2,40,30,"New York Times","Democrat" +3,3,6226,"tess",4,1,80,2,80,55,"New York Times","Democrat" +3,3,6231,"tess",1,0,49,2,51,44,"New York Times","Democrat" +3,3,6237,"tess",2,0,80,3,20,80,"New York Times","Democrat" +3,3,6244,"tess",2,0,85,2,15,10,"New York Times","Democrat" +3,3,6246,"tess",3,1,67,3,67,69,"New York Times","Republican" +3,3,6248,"tess",2,1,99,2,99,99,"New York Times","Republican" +3,3,6249,"tess",3,1,39,3,39,19,"New York Times","Democrat" +3,3,6251,"tess",1,0,19,2,81,23,"New York Times","Democrat" +3,3,6258,"tess",3,1,54,2,54,80,"New York Times","Republican" +3,3,6263,"tess",3,1,50,2,50,50,"New York Times","Democrat" +3,3,6269,"tess",2,1,60,3,60,30,"New York Times","Democrat" +3,3,6272,"tess",3,0,30,3,70,70,"New York Times","Democrat" +3,3,6292,"tess",2,0,9,2,91,3,"New York Times","Democrat" +3,3,6323,"tess",1,0,10,2,90,27,"New York Times","Democrat" +3,3,6326,"tess",3,1,80,2,80,70,"New York Times","Democrat" +3,3,6354,"tess",3,0,40,2,60,50,"New York Times","Republican" +3,3,6367,"tess",2,1,80,3,80,60,"New York Times","Democrat" +3,3,6376,"tess",4,0,20,2,80,10,"New York Times","Democrat" +3,3,6382,"tess",1,1,60,2,60,10,"New York Times","Democrat" +3,3,6388,"tess",4,1,49,2,49,31,"New York Times","Democrat" +3,3,6391,"tess",3,1,23,3,23,94,"New York Times","Democrat" +3,3,6401,"tess",2,0,84,3,16,8,"New York Times","Democrat" +3,3,6402,"tess",1,1,98,2,98,1,"New York Times","Democrat" +3,3,6405,"tess",1,0,50,2,50,0,"New York Times","Republican" +3,3,6411,"tess",1,0,99,2,1,20,"New York Times","Democrat" +3,3,6419,"tess",3,1,100,3,100,100,"New York Times","Democrat" +3,3,6428,"tess",2,1,96,3,96,96,"New York Times","Neither" +3,3,6430,"tess",2,0,10,2,90,10,"New York Times","Democrat" +3,3,6434,"tess",1,1,10,3,10,3,"New York Times","Democrat" +3,3,6458,"tess",1,1,93,3,93,90,"New York Times","Republican" +3,3,6463,"tess",2,0,89,3,11,41,"New York Times","Democrat" +3,3,6466,"tess",2,0,69,2,31,10,"New York Times","Democrat" +3,3,6473,"tess",3,1,93,3,93,92,"New York Times","Republican" +3,3,6488,"tess",4,1,NA,2,NA,0,"New York Times","Republican" +3,3,6489,"tess",3,0,23,2,77,4,"New York Times","Democrat" +3,3,6491,"tess",2,1,90,3,90,97,"New York Times","Neither" +3,3,6496,"tess",3,1,70,2,70,70,"New York Times","Democrat" +3,3,6506,"tess",2,1,86,3,86,22,"New York Times","Democrat" +3,3,6516,"tess",3,1,50,2,50,50,"New York Times","Republican" +3,3,6519,"tess",1,0,49,3,51,49,"New York Times","Republican" +3,3,6521,"tess",3,0,80,2,20,70,"New York Times","Democrat" +3,3,6522,"tess",3,0,35,3,65,62,"New York Times","Democrat" +3,3,6527,"tess",4,0,56,2,44,39,"New York Times","Democrat" +3,3,6538,"tess",1,1,11,3,11,10,"New York Times","Republican" +3,3,6541,"tess",1,1,66,3,66,100,"New York Times","Democrat" +3,3,6551,"tess",1,1,80,2,80,60,"New York Times","Democrat" +3,3,6557,"tess",1,1,79,2,79,90,"New York Times","Republican" +3,3,6562,"tess",1,0,100,2,0,12,"New York Times","Republican" +3,3,6565,"tess",3,0,50,2,50,15,"New York Times","Democrat" +3,3,6572,"tess",3,0,62,3,38,50,"New York Times","Democrat" +3,3,6590,"tess",3,1,40,3,40,71,"New York Times","Democrat" +3,3,6592,"tess",3,1,53,3,53,65,"New York Times","Democrat" +3,3,6596,"tess",2,1,2,2,2,100,"New York Times","Democrat" +3,3,6599,"tess",1,0,76,3,24,60,"New York Times","Democrat" +3,3,6607,"tess",3,0,1,3,99,99,"New York Times","Democrat" +3,3,6615,"tess",4,0,60,2,40,10,"New York Times","Democrat" +3,3,6619,"tess",3,0,60,3,40,40,"New York Times","Republican" +3,3,6621,"tess",3,0,75,2,25,10,"New York Times","Democrat" +3,3,6626,"tess",3,0,50,2,50,60,"New York Times","Republican" +3,3,6634,"tess",1,1,100,2,100,99,"New York Times","Republican" +3,3,6642,"tess",3,1,20,3,20,26,"New York Times","Democrat" +3,3,6647,"tess",3,1,70,2,70,50,"New York Times","Democrat" +3,3,6648,"tess",4,0,66,2,34,22,"New York Times","Democrat" +3,3,6660,"tess",2,1,68,2,68,71,"New York Times","Democrat" +3,3,6665,"tess",4,0,50,2,50,3,"New York Times","Democrat" +3,3,6666,"tess",2,0,50,3,50,78,"New York Times","Democrat" +3,3,6667,"tess",2,1,45,2,45,17,"New York Times","Democrat" +3,3,6668,"tess",1,1,59,3,59,100,"New York Times","Democrat" +3,3,6670,"tess",2,1,70,2,70,27,"New York Times","Democrat" +3,3,6682,"tess",3,1,100,2,100,0,"New York Times","Democrat" +3,3,6683,"tess",2,0,0,3,100,100,"New York Times","Democrat" +3,3,6685,"tess",2,1,29,3,29,38,"New York Times","Republican" +3,3,6688,"tess",2,0,52,3,48,55,"New York Times","Republican" +3,3,6698,"tess",4,0,100,2,0,0,"New York Times","Democrat" +3,3,6702,"tess",1,1,99,2,99,80,"New York Times","Democrat" +3,3,6710,"tess",1,1,99,3,99,95,"New York Times","Republican" +3,3,6718,"tess",3,1,40,3,40,41,"New York Times","Republican" +3,3,6720,"tess",4,1,32,2,32,84,"New York Times","Republican" +3,3,6725,"tess",1,0,65,3,35,2,"New York Times","Republican" +3,3,6729,"tess",3,1,96,3,96,74,"New York Times","Democrat" +3,3,6732,"tess",1,0,71,3,29,16,"New York Times","Democrat" +3,3,6758,"tess",3,1,39,2,39,77,"New York Times","Republican" +3,3,6783,"tess",4,1,89,2,89,15,"New York Times","Democrat" +3,3,6792,"tess",2,1,0,2,0,70,"New York Times","Democrat" +3,3,6797,"tess",2,0,80,3,20,19,"New York Times","Democrat" +3,3,6814,"tess",3,0,79,3,21,29,"New York Times","Democrat" +3,3,6825,"tess",2,1,99,3,99,99,"New York Times","Democrat" +3,3,6827,"tess",2,0,42,3,58,50,"New York Times","Democrat" +3,3,6831,"tess",3,1,60,2,60,50,"New York Times","Republican" +3,3,6833,"tess",1,1,50,3,50,95,"New York Times","Neither" +3,3,6837,"tess",2,0,53,3,47,100,"New York Times","Democrat" +3,3,6838,"tess",3,1,90,3,90,80,"New York Times","Democrat" +3,3,6843,"tess",1,0,40,2,60,70,"New York Times","Republican" +3,3,6853,"tess",1,1,60,2,60,20,"New York Times","Democrat" +3,3,6865,"tess",1,1,71,2,71,53,"New York Times","Democrat" +3,3,6866,"tess",3,0,0,3,100,100,"New York Times","Democrat" +3,3,6869,"tess",1,1,88,2,88,20,"New York Times","Democrat" +3,3,6882,"tess",3,0,0,2,100,0,"New York Times","Democrat" +3,3,6891,"tess",1,1,36,2,36,82,"New York Times","Democrat" +3,3,6911,"tess",4,1,80,2,80,60,"New York Times","Democrat" +3,3,6912,"tess",4,0,31,2,69,39,"New York Times","Democrat" +3,3,6913,"tess",1,0,83,3,17,79,"New York Times","Democrat" +3,3,6935,"tess",3,1,95,2,95,32,"New York Times","Democrat" +3,3,6936,"tess",2,1,44,3,44,100,"New York Times","Republican" +3,3,6938,"tess",3,0,70,3,30,9,"New York Times","Democrat" +3,3,6997,"tess",1,1,99,3,99,65,"New York Times","Republican" +3,3,6998,"tess",3,0,10,3,90,50,"New York Times","Republican" +3,3,7003,"tess",4,1,80,2,80,69,"New York Times","Republican" +3,3,7022,"tess",3,0,7,3,93,47,"New York Times","Democrat" +3,3,7031,"tess",2,0,50,2,50,20,"New York Times","Republican" +3,3,7036,"tess",4,0,45,2,55,46,"New York Times","Republican" +3,3,7046,"tess",2,0,40,2,60,40,"New York Times","Democrat" +3,3,7049,"tess",2,0,16,3,84,63,"New York Times","Democrat" +3,3,7055,"tess",2,0,35,3,65,50,"New York Times","Republican" +3,3,7078,"tess",3,1,4,3,4,70,"New York Times","Republican" +3,3,7087,"tess",2,1,94,2,94,5,"New York Times","Democrat" +3,3,7094,"tess",1,1,80,3,80,48,"New York Times","Republican" +3,3,7122,"tess",3,1,81,3,81,69,"New York Times","Democrat" +3,3,7128,"tess",1,0,42,3,58,20,"New York Times","Republican" +3,3,7133,"tess",2,1,69,2,69,50,"New York Times","Democrat" +3,3,7158,"tess",4,1,75,2,75,50,"New York Times","Democrat" +3,3,7164,"tess",1,0,68,2,32,4,"New York Times","Neither" +3,3,7166,"tess",4,1,98,2,98,0,"New York Times","Neither" +3,3,7174,"tess",4,1,87,2,87,53,"New York Times","Democrat" +3,3,7182,"tess",3,0,1,2,99,0,"New York Times","Democrat" +3,3,7186,"tess",3,1,70,2,70,40,"New York Times","Democrat" +3,3,7190,"tess",3,0,40,3,60,60,"New York Times","Democrat" +3,3,7197,"tess",1,0,98,3,2,97,"New York Times","Republican" +3,3,7201,"tess",1,0,0,3,100,50,"New York Times","Democrat" +3,3,7225,"tess",4,1,90,2,90,90,"New York Times","Democrat" +3,3,7228,"tess",2,1,50,2,50,50,"New York Times","Democrat" +3,3,7235,"tess",4,0,2,2,98,1,"New York Times","Democrat" +3,3,7275,"tess",3,1,100,3,100,100,"New York Times","Republican" +3,3,7276,"tess",2,0,80,2,20,11,"New York Times","Republican" +3,3,7280,"tess",3,0,51,3,49,57,"New York Times","Neither" +3,3,7286,"tess",2,0,10,3,90,90,"New York Times","Republican" +3,3,7297,"tess",1,1,100,2,100,99,"New York Times","Democrat" +3,3,7315,"tess",3,0,20,3,80,50,"New York Times","Neither" +3,3,7325,"tess",1,1,90,3,90,90,"New York Times","Republican" +3,3,7368,"tess",4,1,83,2,83,64,"New York Times","Democrat" +3,3,7381,"tess",1,0,98,2,2,2,"New York Times","Republican" +3,3,7395,"tess",1,0,20,2,80,90,"New York Times","Republican" +3,3,7397,"tess",2,0,100,2,0,0,"New York Times","Democrat" +3,3,7404,"tess",4,1,4,2,4,91,"New York Times","Democrat" +3,3,7407,"tess",3,0,60,2,40,20,"New York Times","Republican" +3,3,7409,"tess",2,1,80,2,80,75,"New York Times","Democrat" +3,3,7441,"tess",4,1,13,2,13,21,"New York Times","Democrat" +3,3,7450,"tess",3,1,32,3,32,34,"New York Times","Democrat" +3,3,7470,"tess",2,0,85,2,15,15,"New York Times","Republican" +3,3,7472,"tess",2,0,1,2,99,10,"New York Times","Republican" +3,3,7477,"tess",1,1,3,3,3,4,"New York Times","Republican" +3,3,7494,"tess",2,0,81,3,19,29,"New York Times","Republican" +3,3,7498,"tess",3,1,59,3,59,61,"New York Times","Republican" +3,3,7506,"tess",3,1,73,3,73,45,"New York Times","Democrat" +3,3,7525,"tess",4,1,62,2,62,80,"New York Times","Democrat" +3,3,7539,"tess",3,1,90,2,90,13,"New York Times","Republican" +3,3,7542,"tess",3,1,89,3,89,93,"New York Times","Republican" +3,3,7543,"tess",2,1,72,3,72,5,"New York Times","Republican" +3,3,7546,"tess",1,0,95,3,5,3,"New York Times","Republican" +3,3,7556,"tess",3,1,80,3,80,91,"New York Times","Democrat" +3,3,7564,"tess",3,0,56,2,44,17,"New York Times","Democrat" +3,3,7569,"tess",3,1,78,2,78,58,"New York Times","Republican" +3,3,7587,"tess",4,0,50,2,50,34,"New York Times","Democrat" +3,3,7590,"tess",3,0,90,2,10,64,"New York Times","Republican" +3,3,7597,"tess",4,1,80,2,80,50,"New York Times","Democrat" +3,3,7607,"tess",3,1,61,3,61,59,"New York Times","Neither" +3,3,7630,"tess",4,1,100,2,100,100,"New York Times","Democrat" +3,3,7634,"tess",1,0,30,3,70,90,"New York Times","Republican" +3,3,7640,"tess",1,1,97,3,97,29,"New York Times","Republican" +3,3,7641,"tess",4,0,10,2,90,4,"New York Times","Democrat" +3,3,7656,"tess",4,1,50,2,50,10,"New York Times","Republican" +3,3,7662,"tess",1,1,100,3,100,85,"New York Times","Democrat" +3,3,7667,"tess",4,1,6,2,6,10,"New York Times","Democrat" +3,3,7668,"tess",2,0,40,2,60,30,"New York Times","Republican" +3,3,7688,"tess",4,0,64,2,36,1,"New York Times","Democrat" +3,3,7702,"tess",3,1,98,3,98,8,"New York Times","Democrat" +3,3,7712,"tess",3,1,89,2,89,10,"New York Times","Democrat" +3,3,7739,"tess",3,1,10,3,10,19,"New York Times","Republican" +3,3,7741,"tess",3,0,0,2,100,1,"New York Times","Republican" +3,3,7747,"tess",4,1,100,2,100,50,"New York Times","Democrat" +3,3,7754,"tess",2,0,50,2,50,59,"New York Times","Neither" +3,3,7784,"tess",2,1,90,3,90,60,"New York Times","Neither" +3,3,7789,"tess",4,0,84,2,16,27,"New York Times","Republican" +3,3,7793,"tess",1,0,60,2,40,20,"New York Times","Republican" +3,3,7822,"tess",3,1,40,2,40,30,"New York Times","Democrat" +3,3,7837,"tess",2,1,24,3,24,83,"New York Times","Democrat" +3,3,7864,"tess",2,1,39,2,39,19,"New York Times","Republican" +3,3,7880,"tess",1,1,98,3,98,93,"New York Times","Democrat" +3,3,7891,"tess",2,1,33,2,33,100,"New York Times","Republican" +3,3,7936,"tess",1,1,60,2,60,50,"New York Times","Democrat" +3,3,7957,"tess",2,1,67,3,67,50,"New York Times","Democrat" +3,3,7973,"tess",1,1,47,2,47,92,"New York Times","Republican" +3,3,7982,"tess",4,0,60,2,40,15,"New York Times","Democrat" +3,3,7988,"tess",2,0,31,2,69,42,"New York Times","Democrat" +3,3,8010,"tess",1,1,50,3,50,90,"New York Times","Republican" +3,3,8019,"tess",2,0,85,3,15,72,"New York Times","Republican" +3,3,8023,"tess",3,0,88,2,12,75,"New York Times","Democrat" +3,3,8041,"tess",1,0,50,2,50,40,"New York Times","Republican" +3,3,8055,"tess",3,0,41,3,59,40,"New York Times","Democrat" +3,3,8062,"tess",2,1,100,2,100,100,"New York Times","Democrat" +3,3,8065,"tess",1,1,75,3,75,82,"New York Times","Democrat" +3,3,8101,"tess",3,1,83,3,83,74,"New York Times","Republican" +3,3,8134,"tess",2,0,0,2,100,1,"New York Times","Democrat" +3,3,8141,"tess",4,0,100,2,0,0,"New York Times","Democrat" +3,3,8142,"tess",3,0,89,3,11,11,"New York Times","Democrat" +3,3,8152,"tess",3,0,62,2,38,41,"New York Times","Democrat" +3,3,8159,"tess",2,1,15,3,15,21,"New York Times","Neither" +3,3,8160,"tess",2,0,5,2,95,3,"New York Times","Democrat" +3,3,8170,"tess",4,0,32,2,68,56,"New York Times","Democrat" +3,3,8176,"tess",2,1,50,2,50,50,"New York Times","Democrat" +3,3,8190,"tess",3,1,57,3,57,50,"New York Times","Democrat" +3,3,8201,"tess",4,1,50,2,50,50,"New York Times","Democrat" +3,3,8202,"tess",3,0,13,2,87,30,"New York Times","Republican" +3,3,8224,"tess",3,0,90,3,10,10,"New York Times","Republican" +3,3,8228,"tess",4,1,90,2,90,44,"New York Times","Democrat" +3,3,8232,"tess",3,0,80,2,20,0,"New York Times","Democrat" +3,3,8247,"tess",3,0,89,3,11,90,"New York Times","Republican" +3,3,8276,"tess",2,0,19,2,81,20,"New York Times","Republican" +3,3,8287,"tess",3,1,90,2,90,85,"New York Times","Democrat" +3,3,8308,"tess",3,0,30,2,70,10,"New York Times","Democrat" +3,3,8324,"tess",1,1,100,3,100,85,"New York Times","Republican" +3,3,8327,"tess",3,1,67,3,67,86,"New York Times","Democrat" +3,3,8333,"tess",2,1,39,3,39,18,"New York Times","Democrat" +3,3,8335,"tess",2,0,97,2,3,2,"New York Times","Republican" +3,3,8337,"tess",1,0,79,3,21,12,"New York Times","Republican" +3,3,8347,"tess",1,1,51,2,51,77,"New York Times","Republican" +3,3,8356,"tess",4,0,0,2,100,100,"New York Times","Neither" +3,3,8378,"tess",4,1,0,2,0,0,"New York Times","Republican" +3,3,8397,"tess",2,0,80,3,20,90,"New York Times","Republican" +3,3,8468,"tess",4,0,90,2,10,8,"New York Times","Democrat" +3,3,8489,"tess",1,0,99,3,1,97,"New York Times","Democrat" +3,3,8507,"tess",3,0,90,3,10,50,"New York Times","Democrat" +3,3,8522,"tess",2,0,50,3,50,20,"New York Times","Democrat" +3,3,8541,"tess",1,0,1,2,99,86,"New York Times","Republican" +3,3,8552,"tess",4,0,20,2,80,90,"New York Times","Democrat" +3,3,8573,"tess",2,0,51,2,49,51,"New York Times","Democrat" +3,3,8583,"tess",1,1,6,3,6,6,"New York Times","Democrat" +3,3,8589,"tess",3,0,50,2,50,30,"New York Times","Democrat" +3,3,8607,"tess",3,1,78,2,78,80,"New York Times","Republican" +3,3,8618,"tess",1,0,0,3,100,67,"New York Times","Republican" +3,3,8640,"tess",1,0,90,3,10,20,"New York Times","Democrat" +3,3,8651,"tess",3,1,81,2,81,66,"New York Times","Republican" +3,3,8659,"tess",3,0,28,3,72,90,"New York Times","Democrat" +3,3,8685,"tess",3,0,27,3,73,59,"New York Times","Democrat" +3,3,8686,"tess",3,1,23,3,23,79,"New York Times","Republican" +3,3,8707,"tess",4,0,13,2,87,2,"New York Times","Republican" +3,3,8709,"tess",3,1,62,2,62,59,"New York Times","Republican" +3,3,8727,"tess",1,0,76,3,24,50,"New York Times","Democrat" +3,3,8728,"tess",2,1,25,3,25,26,"New York Times","Republican" +3,3,8763,"tess",1,0,70,2,30,20,"New York Times","Republican" +3,3,8765,"tess",4,0,60,2,40,21,"New York Times","Democrat" +3,3,8768,"tess",2,0,67,2,33,1,"New York Times","Democrat" +3,3,8777,"tess",4,1,90,2,90,10,"New York Times","Democrat" +3,3,8779,"tess",2,1,100,2,100,100,"New York Times","Republican" +3,3,8790,"tess",2,1,85,2,85,50,"New York Times","Republican" +3,3,8821,"tess",2,0,50,3,50,65,"New York Times","Republican" +3,3,8837,"tess",4,1,100,2,100,100,"New York Times","Democrat" +3,3,8848,"tess",1,0,1,2,99,0,"New York Times","Democrat" +3,3,8853,"tess",1,0,100,3,0,23,"New York Times","Democrat" +3,3,8866,"tess",3,1,70,2,70,10,"New York Times","Democrat" +3,3,8881,"tess",3,1,50,2,50,4,"New York Times","Democrat" +3,3,8892,"tess",2,1,97,3,97,80,"New York Times","Democrat" +3,3,8893,"tess",3,0,20,2,80,11,"New York Times","Democrat" +3,3,8894,"tess",2,0,21,2,79,18,"New York Times","Democrat" +3,3,8900,"tess",2,0,100,3,0,90,"New York Times","Republican" +3,3,8934,"tess",2,0,1,2,99,44,"New York Times","Democrat" +3,3,8941,"tess",3,1,34,2,34,25,"New York Times","Neither" +3,3,8946,"tess",1,1,0,3,0,0,"New York Times","Democrat" +3,3,8956,"tess",1,0,50,2,50,43,"New York Times","Republican" +3,3,8981,"tess",3,0,49,2,51,10,"New York Times","Democrat" +3,3,8983,"tess",1,0,0,3,100,44,"New York Times","Democrat" +3,3,8990,"tess",2,0,100,3,0,100,"New York Times","Republican" +3,3,9018,"tess",2,1,89,3,89,98,"New York Times","Democrat" +3,3,9050,"tess",3,0,90,2,10,10,"New York Times","Republican" +3,3,9065,"tess",2,1,51,2,51,92,"New York Times","Neither" +3,3,9070,"tess",2,0,69,2,31,30,"New York Times","Democrat" +3,3,9074,"tess",1,1,70,3,70,10,"New York Times","Republican" +3,3,9081,"tess",1,0,70,2,30,50,"New York Times","Republican" +3,3,9101,"tess",4,1,83,2,83,75,"New York Times","Democrat" +3,3,9105,"tess",2,0,50,3,50,50,"New York Times","Democrat" +3,3,9108,"tess",1,1,26,2,26,21,"New York Times","Democrat" +3,3,9109,"tess",3,0,60,3,40,27,"New York Times","Democrat" +3,3,9135,"tess",3,1,96,2,96,96,"New York Times","Democrat" +3,3,9154,"tess",2,0,65,2,35,30,"New York Times","Democrat" +3,3,9184,"tess",4,1,100,2,100,50,"New York Times","Democrat" +3,3,9189,"tess",1,0,0,3,100,90,"New York Times","Republican" +3,3,9193,"tess",2,1,30,2,30,69,"New York Times","Democrat" +3,3,9198,"tess",1,1,69,3,69,74,"New York Times","Democrat" +3,3,9199,"tess",2,1,55,3,55,57,"New York Times","Republican" +3,3,9211,"tess",1,1,98,2,98,100,"New York Times","Republican" +3,3,9230,"tess",1,0,52,3,48,2,"New York Times","Democrat" +3,3,9236,"tess",2,1,70,2,70,50,"New York Times","Republican" +3,3,9279,"tess",1,1,70,3,70,29,"New York Times","Democrat" +3,3,9284,"tess",3,1,90,3,90,61,"New York Times","Republican" +3,3,9286,"tess",4,0,90,2,10,3,"New York Times","Democrat" +3,3,9292,"tess",3,1,70,3,70,35,"New York Times","Republican" +3,3,9295,"tess",2,1,90,2,90,90,"New York Times","Republican" +3,3,9297,"tess",2,0,NA,2,NA,50,"New York Times","Republican" +3,3,9298,"tess",1,0,19,3,81,29,"New York Times","Democrat" +3,3,9314,"tess",3,1,82,2,82,98,"New York Times","Republican" +3,3,9319,"tess",2,1,99,2,99,50,"New York Times","Democrat" +3,3,9346,"tess",3,1,60,2,60,10,"New York Times","Democrat" +3,3,9360,"tess",3,0,30,2,70,5,"New York Times","Republican" +3,3,9366,"tess",3,0,71,3,29,34,"New York Times","Republican" +3,3,9372,"tess",4,0,7,2,93,17,"New York Times","Democrat" +3,3,9383,"tess",3,0,84,2,16,26,"New York Times","Republican" +3,3,9395,"tess",4,0,96,2,4,60,"New York Times","Democrat" +3,3,9398,"tess",4,1,30,2,30,29,"New York Times","Republican" +3,3,9419,"tess",2,1,49,3,49,50,"New York Times","Democrat" +3,3,9431,"tess",2,0,30,3,70,60,"New York Times","Democrat" +3,3,9440,"tess",4,0,10,2,90,1,"New York Times","Republican" +3,3,9493,"tess",1,1,98,3,98,100,"New York Times","Democrat" +3,3,9512,"tess",3,1,100,3,100,100,"New York Times","Democrat" +3,3,9514,"tess",3,1,56,2,56,28,"New York Times","Republican" +3,3,9538,"tess",2,1,NA,2,NA,41,"New York Times","Republican" +3,3,9551,"tess",1,1,63,2,63,100,"New York Times","Democrat" +3,3,9578,"tess",2,0,40,3,60,6,"New York Times","Republican" +3,3,9603,"tess",3,0,41,2,59,89,"New York Times","Democrat" +3,3,9608,"tess",2,0,99,2,1,1,"New York Times","Democrat" +3,3,9626,"tess",3,1,55,2,55,50,"New York Times","Democrat" +3,3,9631,"tess",3,0,10,3,90,90,"New York Times","Democrat" +3,3,9635,"tess",1,1,80,2,80,90,"New York Times","Democrat" +3,3,9642,"tess",4,1,80,2,80,50,"New York Times","Republican" +3,3,9647,"tess",1,1,92,2,92,83,"New York Times","Republican" +3,3,9649,"tess",1,0,8,2,92,2,"New York Times","Democrat" +3,3,9671,"tess",2,1,93,3,93,90,"New York Times","Democrat" +3,3,9676,"tess",2,0,49,2,51,45,"New York Times","Democrat" +3,3,9679,"tess",2,0,100,3,0,2,"New York Times","Republican" +3,3,9681,"tess",3,0,41,3,59,45,"New York Times","Democrat" +3,3,9686,"tess",3,0,90,2,10,5,"New York Times","Democrat" +3,3,9692,"tess",3,1,33,3,33,63,"New York Times","Democrat" +3,3,9693,"tess",2,0,55,3,45,26,"New York Times","Neither" +3,3,9703,"tess",4,1,30,2,30,30,"New York Times","Democrat" +3,3,9716,"tess",1,1,66,3,66,50,"New York Times","Democrat" +3,3,9729,"tess",2,1,100,3,100,49,"New York Times","Republican" +3,3,9731,"tess",3,1,100,3,100,79,"New York Times","Democrat" +3,3,9744,"turk",3,0,1,3,99,1,"New York Times","Democrat" +3,3,9752,"turk",3,0,10,3,90,90,"New York Times","Democrat" +3,3,9753,"turk",2,0,35,5,65,45,"New York Times","Democrat" +3,3,9756,"turk",2,0,1,5,99,99,"New York Times","Democrat" +3,3,9763,"turk",3,0,50,5,50,65,"New York Times","Neither" +3,3,9771,"turk",4,0,70,3,30,10,"New York Times","Democrat" +3,3,9774,"turk",3,0,30,2,70,50,"New York Times","Democrat" +3,3,9777,"turk",3,0,40,2,60,44,"New York Times","Democrat" +3,3,9778,"turk",3,0,10,5,90,80,"New York Times","Neither" +3,3,9779,"turk",2,0,5,4,95,90,"New York Times","Democrat" +3,3,9782,"turk",4,0,10,2,90,50,"New York Times","Republican" +3,3,9783,"turk",2,0,40,2,60,40,"New York Times","Neither" +3,3,9785,"turk",3,0,15,5,85,5,"New York Times","Democrat" +3,3,9788,"turk",2,0,75,3,25,25,"New York Times","Democrat" +3,3,9791,"turk",2,0,1,5,99,99,"New York Times","Democrat" +3,3,9796,"turk",3,0,67,3,33,13,"New York Times","Democrat" +3,3,9798,"turk",3,0,30,4,70,70,"New York Times","Democrat" +3,3,9802,"turk",3,0,90,3,10,20,"New York Times","Democrat" +3,3,9805,"turk",2,0,70,4,30,30,"New York Times","Democrat" +3,3,9808,"turk",2,0,20,3,80,80,"New York Times","Neither" +3,3,9809,"turk",2,0,40,2,60,25,"New York Times","Neither" +3,3,9810,"turk",3,0,1,2,99,1,"New York Times","Democrat" +3,3,9811,"turk",3,0,50,2,50,25,"New York Times","Republican" +3,3,9813,"turk",3,0,1,5,99,99,"New York Times","Republican" +3,3,9814,"turk",4,0,20,5,80,70,"New York Times","Democrat" +3,3,9815,"turk",4,0,50,5,50,45,"New York Times","Democrat" +3,3,9816,"turk",4,0,1,3,99,50,"New York Times","Democrat" +3,3,9817,"turk",3,0,1,4,99,99,"New York Times","Republican" +3,3,9818,"turk",4,0,1,4,99,99,"New York Times","Republican" +3,3,9820,"turk",3,0,1,4,99,1,"New York Times","Republican" +3,3,9821,"turk",2,0,30,3,70,40,"New York Times","Democrat" +3,3,9823,"turk",3,0,20,3,80,68,"New York Times","Neither" +3,3,9828,"turk",3,0,80,5,20,35,"New York Times","Democrat" +3,3,9829,"turk",3,0,2,4,98,90,"New York Times","Republican" +3,3,9831,"turk",3,0,25,2,75,25,"New York Times","Democrat" +3,3,9844,"turk",2,0,50,5,50,50,"New York Times","Democrat" +3,3,9845,"turk",2,0,60,4,40,40,"New York Times","Neither" +3,3,9846,"turk",2,0,50,5,50,10,"New York Times","Democrat" +3,3,9847,"turk",2,0,1,2,99,1,"New York Times","Republican" +3,3,9849,"turk",3,0,1,3,99,99,"New York Times","Republican" +3,3,9857,"turk",2,0,1,3,99,99,"New York Times","Democrat" +3,3,9858,"turk",4,0,0,5,100,100,"New York Times","Republican" +3,3,9859,"turk",4,0,60,2,40,20,"New York Times","Democrat" +3,3,9866,"turk",2,0,70,5,30,30,"New York Times","Republican" +3,3,9867,"turk",3,0,99,3,1,1,"New York Times","Democrat" +3,3,9868,"turk",4,0,40,2,60,40,"New York Times","Democrat" +3,3,9872,"turk",4,0,1,3,99,99,"New York Times","Republican" +3,3,9875,"turk",2,0,25,4,75,75,"New York Times","Democrat" +3,3,9876,"turk",3,0,1,2,99,1,"New York Times","Democrat" +3,3,9879,"turk",3,0,30,2,70,70,"New York Times","Democrat" +3,3,9881,"turk",2,0,98,2,2,1,"New York Times","Democrat" +3,3,9882,"turk",4,0,90,4,10,10,"New York Times","Democrat" +3,3,9883,"turk",3,0,1,4,99,99,"New York Times","Republican" +3,3,9885,"turk",2,0,100,3,0,0,"New York Times","Democrat" +3,3,9891,"turk",2,0,1,2,99,75,"New York Times","Democrat" +3,3,9894,"turk",4,0,90,5,10,30,"New York Times","Democrat" +3,3,9895,"turk",4,0,80,3,20,1,"New York Times","Neither" +3,3,9897,"turk",4,0,65,5,35,35,"New York Times","Democrat" +3,3,9899,"turk",3,0,98,2,2,1,"New York Times","Democrat" +3,3,9905,"turk",4,0,1,4,99,99,"New York Times","Republican" +3,3,9907,"turk",4,0,50,2,50,30,"New York Times","Democrat" +3,3,9908,"turk",3,0,30,3,70,60,"New York Times","Democrat" +3,3,9909,"turk",4,0,1,5,99,90,"New York Times","Neither" +3,3,9913,"turk",2,0,30,3,70,70,"New York Times","Neither" +3,3,9915,"turk",2,0,99,2,1,1,"New York Times","Democrat" +3,3,9918,"turk",3,0,25,5,75,75,"New York Times","Democrat" +3,3,9920,"turk",2,0,0,5,100,100,"New York Times","Republican" +3,3,9921,"turk",2,0,50,2,50,1,"New York Times","Democrat" +3,3,9928,"turk",3,0,50,2,50,1,"New York Times","Democrat" +3,3,9931,"turk",3,0,50,2,50,1,"New York Times","Neither" +3,3,9936,"turk",2,0,40,4,60,30,"New York Times","Republican" +3,3,9938,"turk",3,0,25,2,75,25,"New York Times","Democrat" +3,3,9939,"turk",4,0,75,2,25,25,"New York Times","Republican" +3,3,9943,"turk",2,0,25,5,75,75,"New York Times","Republican" +3,3,9944,"turk",2,0,5,4,95,90,"New York Times","Democrat" +3,3,9946,"turk",2,0,50,4,50,99,"New York Times","Democrat" +3,3,9948,"turk",4,0,30,3,70,60,"New York Times","Republican" +3,3,9949,"turk",2,0,70,2,30,25,"New York Times","Neither" +3,3,9952,"turk",4,0,50,3,50,50,"New York Times","Democrat" +3,3,9954,"turk",3,0,10,3,90,80,"New York Times","Democrat" +3,3,9956,"turk",2,0,40,4,60,50,"New York Times","Democrat" +3,3,9957,"turk",2,0,99,5,1,50,"New York Times","Republican" +3,3,9958,"turk",3,0,15,3,85,80,"New York Times","Republican" +3,3,9961,"turk",2,0,99,5,1,1,"New York Times","Republican" +3,3,9963,"turk",4,0,50,2,50,10,"New York Times","Republican" +3,3,9966,"turk",4,0,99,2,1,1,"New York Times","Democrat" +3,3,9967,"turk",3,0,20,2,80,1,"New York Times","Neither" +3,3,9968,"turk",2,0,9,5,91,1,"New York Times","Democrat" +3,3,9969,"turk",2,0,1,3,99,99,"New York Times","Democrat" +3,3,9970,"turk",4,0,0,3,100,100,"New York Times","Republican" +3,3,9972,"turk",2,0,1,5,99,99,"New York Times","Democrat" +3,3,9974,"turk",3,0,70,2,30,25,"New York Times","Democrat" +3,3,9976,"turk",4,0,50,5,50,50,"New York Times","Republican" +3,3,9978,"turk",3,0,1,3,99,30,"New York Times","Republican" +3,3,9987,"turk",3,0,50,4,50,30,"New York Times","Democrat" +3,3,9990,"turk",2,0,99,2,1,1,"New York Times","Democrat" +3,3,10000,"turk",3,0,50,3,50,90,"New York Times","Democrat" +3,3,10003,"turk",3,0,30,4,70,60,"New York Times","Democrat" +3,3,10010,"turk",2,0,40,5,60,50,"New York Times","Democrat" +3,3,10012,"turk",2,0,1,5,99,90,"New York Times","Neither" +3,3,10015,"turk",4,0,25,3,75,70,"New York Times","Neither" +3,3,10016,"turk",3,0,80,5,20,99,"New York Times","Neither" +3,3,10018,"turk",3,0,0,5,100,100,"New York Times","Republican" +3,3,10019,"turk",4,0,90,5,10,10,"New York Times","Neither" +3,3,10021,"turk",4,0,20,4,80,80,"New York Times","Democrat" +3,3,10022,"turk",2,0,1,5,99,99,"New York Times","Neither" +3,3,10024,"turk",3,0,49,2,51,50,"New York Times","Republican" +3,3,10025,"turk",3,0,80,4,20,1,"New York Times","Democrat" +3,3,10026,"turk",3,0,20,2,80,30,"New York Times","Neither" +3,3,10029,"turk",3,0,25,3,75,70,"New York Times","Democrat" +3,3,10031,"turk",3,0,1,3,99,99,"New York Times","Neither" +3,3,10032,"turk",3,0,50,3,50,1,"New York Times","Democrat" +3,3,10033,"turk",3,0,0,4,100,50,"New York Times","Neither" +3,3,10036,"turk",2,0,1,5,99,99,"New York Times","Republican" +3,3,10037,"turk",4,0,40,3,60,50,"New York Times","Democrat" +3,3,10039,"turk",3,0,65,5,35,45,"New York Times","Democrat" +3,3,10045,"turk",3,0,20,4,80,25,"New York Times","Neither" +3,3,10047,"turk",4,0,50,2,50,40,"New York Times","Democrat" +3,3,10051,"turk",2,0,78,2,22,11,"New York Times","Democrat" +3,3,10052,"turk",3,0,100,3,0,0,"New York Times","Democrat" +3,3,10054,"turk",4,0,1,2,99,1,"New York Times","Democrat" +3,3,10061,"turk",2,0,67,4,33,67,"New York Times","Democrat" +3,3,10063,"turk",2,0,1,3,99,99,"New York Times","Republican" +3,3,10069,"turk",4,0,75,5,25,25,"New York Times","Republican" +3,3,10071,"turk",2,0,99,4,1,99,"New York Times","Republican" +3,3,10073,"turk",4,0,99,3,1,1,"New York Times","Neither" +3,3,10080,"turk",4,0,65,2,35,29,"New York Times","Republican" +3,3,10081,"turk",3,0,1,5,99,95,"New York Times","Democrat" +3,3,10083,"turk",4,0,50,2,50,1,"New York Times","Republican" +3,3,10087,"turk",4,0,30,5,70,76,"New York Times","Neither" +3,3,10089,"turk",2,0,1,2,99,1,"New York Times","Neither" +3,3,10092,"turk",3,0,1,5,99,1,"New York Times","Neither" +3,3,10093,"turk",2,0,1,3,99,99,"New York Times","Democrat" +3,3,10094,"turk",3,0,99,4,1,99,"New York Times","Democrat" +3,3,10097,"turk",4,0,1,3,99,85,"New York Times","Democrat" +3,3,10100,"turk",3,0,45,2,55,45,"New York Times","Democrat" +3,3,10101,"turk",4,0,1,2,99,50,"New York Times","Democrat" +3,3,10106,"turk",2,0,5,2,95,1,"New York Times","Democrat" +3,3,10108,"turk",3,0,30,2,70,1,"New York Times","Democrat" +3,3,10109,"turk",4,0,1,2,99,99,"New York Times","Democrat" +3,3,10110,"turk",4,0,40,2,60,20,"New York Times","Republican" +3,3,10111,"turk",4,0,1,5,99,99,"New York Times","Neither" +3,3,10114,"turk",4,0,1,4,99,1,"New York Times","Republican" +3,3,10115,"turk",3,0,51,2,49,49,"New York Times","Republican" +3,3,10122,"turk",4,0,60,4,40,60,"New York Times","Democrat" +3,3,10123,"turk",3,0,10,5,90,50,"New York Times","Republican" +3,3,10125,"turk",2,0,50,2,50,50,"New York Times","Democrat" +3,3,10126,"turk",2,0,80,4,20,1,"New York Times","Republican" +3,3,10130,"turk",4,0,40,4,60,70,"New York Times","Neither" +3,3,10132,"turk",2,0,22,2,78,78,"New York Times","Republican" +3,3,10133,"turk",2,0,1,4,99,99,"New York Times","Democrat" +3,3,10135,"turk",4,0,50,3,50,50,"New York Times","Democrat" +3,3,10138,"turk",2,0,45,4,55,55,"New York Times","Democrat" +3,3,10139,"turk",3,0,10,4,90,85,"New York Times","Republican" +3,3,10141,"turk",4,0,1,3,99,99,"New York Times","Republican" +3,3,10142,"turk",2,0,10,2,90,20,"New York Times","Republican" +3,3,10149,"turk",2,0,1,3,99,99,"New York Times","Republican" +3,3,10151,"turk",4,0,1,3,99,99,"New York Times","Democrat" +3,3,10152,"turk",4,0,25,2,75,50,"New York Times","Neither" +3,3,10153,"turk",3,0,50,3,50,60,"New York Times","Republican" +3,3,10161,"turk",4,0,10,2,90,90,"New York Times","Republican" +3,3,10164,"turk",4,0,50,5,50,50,"New York Times","Democrat" +3,3,10165,"turk",2,0,99,4,1,1,"New York Times","Democrat" +3,3,10169,"turk",3,0,40,4,60,40,"New York Times","Republican" +3,3,10170,"turk",2,0,0,2,100,0,"New York Times","Neither" +3,3,10174,"turk",2,0,0,3,100,0,"New York Times","Democrat" +3,3,10175,"turk",4,0,10,5,90,90,"New York Times","Neither" +3,3,10178,"turk",2,0,1,2,99,1,"New York Times","Democrat" +3,3,10183,"turk",3,0,1,4,99,99,"New York Times","" +3,3,10184,"turk",4,0,1,5,99,99,"New York Times","Republican" +3,3,10187,"turk",4,0,95,2,5,5,"New York Times","Democrat" +3,3,10190,"turk",4,0,99,4,1,95,"New York Times","Democrat" +3,3,10192,"turk",3,0,50,3,50,75,"New York Times","Republican" +3,3,10193,"turk",3,0,10,2,90,65,"New York Times","Democrat" +3,3,10195,"turk",3,0,10,3,90,70,"New York Times","Republican" +3,3,10199,"turk",3,0,1,5,99,95,"New York Times","Republican" +3,3,10200,"turk",3,0,10,3,90,80,"New York Times","Democrat" +3,3,10204,"turk",2,0,50,3,50,1,"New York Times","Democrat" +3,3,10209,"turk",2,0,99,4,1,1,"New York Times","Democrat" +3,3,10215,"turk",3,0,30,5,70,50,"New York Times","Democrat" +3,3,10216,"turk",3,0,99,2,1,1,"New York Times","Republican" +3,3,10218,"turk",2,0,1,3,99,99,"New York Times","Democrat" +3,3,10222,"turk",4,0,1,3,99,99,"New York Times","Neither" +3,3,10223,"turk",4,0,1,5,99,99,"New York Times","Democrat" +3,3,10225,"turk",4,0,1,4,99,99,"New York Times","Republican" +3,3,10232,"turk",2,0,50,2,50,30,"New York Times","Democrat" +3,3,10235,"turk",3,0,20,3,80,25,"New York Times","Republican" +3,3,10237,"turk",4,0,30,2,70,10,"New York Times","Democrat" +3,3,10239,"turk",2,0,90,5,10,10,"New York Times","Republican" +3,3,10241,"turk",2,0,55,4,45,50,"New York Times","Democrat" +3,3,10242,"turk",2,0,80,3,20,1,"New York Times","Republican" +3,3,10243,"turk",2,0,1,5,99,99,"New York Times","Republican" +3,3,10245,"turk",2,0,99,4,1,1,"New York Times","Neither" +3,3,10246,"turk",3,0,50,2,50,0,"New York Times","Democrat" +3,3,10247,"turk",2,0,1,4,99,1,"New York Times","Democrat" +3,3,10257,"turk",2,0,99,2,1,99,"New York Times","Democrat" +3,3,10260,"turk",3,0,99,5,1,1,"New York Times","Neither" +3,3,10261,"turk",3,0,1,3,99,99,"New York Times","Neither" +3,3,10264,"turk",4,0,1,5,99,90,"New York Times","Neither" +3,3,10268,"turk",2,0,25,3,75,25,"New York Times","Democrat" +3,3,10270,"turk",3,0,99,5,1,1,"New York Times","Republican" +3,3,10275,"turk",3,0,50,5,50,0,"New York Times","Democrat" +3,3,10283,"turk",4,0,20,5,80,80,"New York Times","Republican" +3,3,10284,"turk",4,0,50,4,50,99,"New York Times","Democrat" +3,3,10289,"turk",4,0,1,3,99,1,"New York Times","Republican" +3,3,10295,"turk",3,0,10,3,90,75,"New York Times","Democrat" +3,3,10297,"turk",4,0,80,2,20,10,"New York Times","Democrat" +3,3,10298,"turk",2,0,5,2,95,90,"New York Times","Neither" +3,3,10299,"turk",3,0,0,3,100,100,"New York Times","Republican" +3,3,10300,"turk",2,0,40,2,60,20,"New York Times","Democrat" +3,3,10301,"turk",4,0,20,4,80,65,"New York Times","Democrat" +3,3,10302,"turk",2,0,99,5,1,1,"New York Times","Republican" +3,3,10303,"turk",2,0,55,5,45,55,"New York Times","Democrat" +3,3,10309,"turk",4,0,20,2,80,20,"New York Times","Republican" +3,3,10311,"turk",4,0,100,4,0,0,"New York Times","Democrat" +3,3,10312,"turk",2,0,88,2,12,34,"New York Times","Democrat" +3,3,10313,"turk",4,0,60,4,40,40,"New York Times","Democrat" +3,3,10319,"turk",2,0,1,2,99,1,"New York Times","Neither" +3,3,10322,"turk",4,0,5,2,95,20,"New York Times","Republican" +3,3,10324,"turk",2,0,75,2,25,25,"New York Times","Neither" +3,3,10327,"turk",3,0,85,2,15,25,"New York Times","Democrat" +3,3,10328,"turk",4,0,50,5,50,50,"New York Times","Neither" +3,3,10329,"turk",2,0,99,4,1,99,"New York Times","Republican" +3,3,10330,"turk",3,0,10,5,90,85,"New York Times","Democrat" +3,3,10332,"turk",3,0,99,5,1,1,"New York Times","Democrat" +3,3,10334,"turk",3,0,1,5,99,99,"New York Times","Neither" +3,3,10335,"turk",3,0,60,5,40,25,"New York Times","Democrat" +3,3,10336,"turk",4,0,1,5,99,95,"New York Times","Neither" +3,3,10345,"turk",4,0,99,2,1,1,"New York Times","Republican" +3,3,10348,"turk",3,0,1,5,99,99,"New York Times","Democrat" +3,3,10349,"turk",3,0,1,3,99,99,"New York Times","Republican" +3,3,10355,"turk",2,0,70,2,30,20,"New York Times","Neither" +3,3,10370,"turk",3,0,50,4,50,50,"New York Times","Neither" +3,3,10371,"turk",2,0,1,2,99,99,"New York Times","Democrat" +3,3,10372,"turk",2,0,75,3,25,25,"New York Times","Neither" +3,3,10373,"turk",4,0,80,3,20,20,"New York Times","Neither" +3,3,10378,"turk",4,0,0,3,100,100,"New York Times","Neither" +3,3,10379,"turk",3,0,89,4,11,11,"New York Times","Democrat" +3,3,10381,"turk",3,0,35,2,65,15,"New York Times","Democrat" +3,3,10382,"turk",2,0,1,3,99,99,"New York Times","Democrat" +3,3,10383,"turk",3,0,58,5,42,55,"New York Times","Democrat" +3,3,10384,"turk",4,0,60,4,40,20,"New York Times","Democrat" +3,3,10387,"turk",4,0,5,5,95,5,"New York Times","Democrat" +3,3,10390,"turk",3,0,87,3,13,13,"New York Times","Democrat" +3,3,10395,"turk",3,0,1,5,99,99,"New York Times","Neither" +3,3,10397,"turk",4,0,1,3,99,99,"New York Times","Neither" +3,3,10398,"turk",2,0,80,4,20,40,"New York Times","Republican" +3,3,10399,"turk",4,0,1,2,99,99,"New York Times","Democrat" +3,3,10400,"turk",2,0,0,4,100,100,"New York Times","Neither" +3,3,10403,"turk",2,0,1,4,99,90,"New York Times","Republican" +3,3,10405,"turk",3,0,99,4,1,30,"New York Times","Democrat" +3,3,10409,"turk",4,0,1,3,99,70,"New York Times","Republican" +3,3,10410,"turk",4,0,99,5,1,1,"New York Times","Democrat" +3,3,10411,"turk",3,0,5,5,95,80,"New York Times","Republican" +3,3,10420,"turk",3,0,1,3,99,99,"New York Times","Republican" +3,3,10423,"turk",2,0,55,4,45,35,"New York Times","Neither" +3,3,10424,"turk",4,0,99,2,1,99,"New York Times","Republican" +3,3,10426,"turk",2,0,99,3,1,1,"New York Times","Republican" +3,3,10427,"turk",2,0,1,5,99,56,"New York Times","Republican" +3,3,10431,"turk",2,0,99,2,1,1,"New York Times","Republican" +3,3,10437,"turk",2,0,60,2,40,30,"New York Times","Democrat" +3,3,10438,"turk",3,0,50,4,50,50,"New York Times","Republican" +3,3,10439,"turk",3,0,1,4,99,80,"New York Times","Neither" +3,3,10440,"turk",4,0,50,5,50,21,"New York Times","Democrat" +3,3,10442,"turk",3,0,50,5,50,50,"New York Times","Neither" +3,3,10444,"turk",3,0,1,4,99,99,"New York Times","Republican" +3,3,10445,"turk",3,0,1,5,99,70,"New York Times","Democrat" +3,3,10447,"turk",2,0,99,2,1,1,"New York Times","Neither" +3,3,10450,"turk",4,0,9,5,91,1,"New York Times","Democrat" +3,3,10452,"turk",4,0,10,3,90,80,"New York Times","Neither" +3,3,10459,"turk",2,0,1,3,99,25,"New York Times","Democrat" +3,3,10460,"turk",3,0,1,5,99,99,"New York Times","Democrat" +3,3,10462,"turk",4,0,1,4,99,99,"New York Times","Republican" +3,3,10463,"turk",2,0,25,5,75,75,"New York Times","Republican" +3,3,10465,"turk",4,0,0,5,100,100,"New York Times","Democrat" +3,3,10469,"turk",2,0,99,2,1,1,"New York Times","Neither" +3,3,10470,"turk",3,0,99,5,1,50,"New York Times","Democrat" +3,3,10471,"turk",2,0,1,4,99,90,"New York Times","Democrat" +3,3,10472,"turk",2,0,25,4,75,80,"New York Times","Republican" +3,3,10481,"turk",4,0,20,4,80,80,"New York Times","Neither" +3,3,10482,"turk",2,0,50,2,50,1,"New York Times","Republican" +3,3,10484,"turk",3,0,0,3,100,60,"New York Times","Democrat" +3,3,10485,"turk",2,0,99,5,1,1,"New York Times","Democrat" +3,3,10487,"turk",2,0,60,2,40,30,"New York Times","Democrat" +3,3,10490,"turk",3,0,50,3,50,30,"New York Times","Democrat" +3,3,10492,"turk",2,0,30,2,70,1,"New York Times","Democrat" +3,3,10494,"turk",2,0,70,5,30,48,"New York Times","Republican" +3,3,10496,"turk",4,0,25,2,75,5,"New York Times","Republican" +3,3,10498,"turk",3,0,50,3,50,40,"New York Times","Republican" +3,3,10500,"turk",3,0,1,3,99,99,"New York Times","Neither" +3,3,10501,"turk",4,0,0,2,100,100,"New York Times","Democrat" +3,3,10504,"turk",4,0,9,3,91,90,"New York Times","Democrat" +3,3,10508,"turk",3,0,88,4,12,15,"New York Times","Democrat" +3,3,10509,"turk",3,0,99,5,1,50,"New York Times","Democrat" +3,3,10510,"turk",4,0,30,4,70,25,"New York Times","Democrat" +3,3,10513,"turk",4,0,50,3,50,99,"New York Times","Republican" +3,3,10514,"turk",3,0,1,5,99,99,"New York Times","Democrat" +3,3,10516,"turk",3,0,50,2,50,1,"New York Times","Democrat" +3,3,10518,"turk",4,0,1,2,99,99,"New York Times","Republican" +3,3,10523,"turk",4,0,22,3,78,99,"New York Times","Democrat" +3,3,10527,"turk",2,0,5,4,95,90,"New York Times","Democrat" +3,3,10530,"turk",3,0,1,4,99,1,"New York Times","Democrat" +3,3,10531,"turk",2,0,50,4,50,50,"New York Times","Neither" +3,3,9745,"turk",4,1,99,4,99,90,"New York Times","Republican" +3,3,9746,"turk",4,1,99,2,99,1,"New York Times","Neither" +3,3,9747,"turk",4,1,90,4,90,90,"New York Times","Neither" +3,3,9748,"turk",4,1,75,5,75,80,"New York Times","Democrat" +3,3,9749,"turk",4,1,100,3,100,100,"New York Times","Democrat" +3,3,9751,"turk",4,1,99,2,99,99,"New York Times","Democrat" +3,3,9755,"turk",2,1,80,3,80,80,"New York Times","Republican" +3,3,9758,"turk",3,1,100,3,100,100,"New York Times","Neither" +3,3,9759,"turk",4,1,95,3,95,90,"New York Times","Republican" +3,3,9760,"turk",4,1,90,5,90,80,"New York Times","Neither" +3,3,9761,"turk",4,1,10,5,10,15,"New York Times","Democrat" +3,3,9762,"turk",4,1,1,4,1,10,"New York Times","Neither" +3,3,9766,"turk",2,1,90,5,90,90,"New York Times","Democrat" +3,3,9768,"turk",4,1,40,5,40,40,"New York Times","Democrat" +3,3,9770,"turk",2,1,100,5,100,100,"New York Times","Democrat" +3,3,9773,"turk",3,1,99,3,99,99,"New York Times","Democrat" +3,3,9775,"turk",4,1,15,5,15,15,"New York Times","Neither" +3,3,9776,"turk",2,1,99,3,99,80,"New York Times","Neither" +3,3,9780,"turk",3,1,99,5,99,99,"New York Times","Republican" +3,3,9781,"turk",4,1,90,5,90,80,"New York Times","Neither" +3,3,9786,"turk",2,1,65,5,65,65,"New York Times","Democrat" +3,3,9787,"turk",4,1,25,3,25,50,"New York Times","Democrat" +3,3,9790,"turk",2,1,99,2,99,99,"New York Times","Neither" +3,3,9792,"turk",3,1,70,4,70,70,"New York Times","Republican" +3,3,9793,"turk",4,1,50,3,50,50,"New York Times","Neither" +3,3,9794,"turk",3,1,20,5,20,20,"New York Times","Democrat" +3,3,9795,"turk",4,1,95,3,95,90,"New York Times","Republican" +3,3,9797,"turk",4,1,50,2,50,60,"New York Times","Republican" +3,3,9799,"turk",2,1,99,5,99,99,"New York Times","Democrat" +3,3,9803,"turk",4,1,1,2,1,1,"New York Times","Democrat" +3,3,9804,"turk",4,1,89,2,89,51,"New York Times","Republican" +3,3,9806,"turk",3,1,90,5,90,80,"New York Times","Neither" +3,3,9822,"turk",4,1,80,4,80,80,"New York Times","Democrat" +3,3,9825,"turk",2,1,50,4,50,50,"New York Times","Neither" +3,3,9830,"turk",2,1,50,3,50,50,"New York Times","Republican" +3,3,9832,"turk",4,1,99,4,99,98,"New York Times","Republican" +3,3,9833,"turk",2,1,90,5,90,65,"New York Times","Democrat" +3,3,9835,"turk",2,1,99,4,99,99,"New York Times","Democrat" +3,3,9836,"turk",4,1,35,3,35,40,"New York Times","Democrat" +3,3,9837,"turk",3,1,1,5,1,1,"New York Times","Republican" +3,3,9838,"turk",4,1,78,4,78,99,"New York Times","Democrat" +3,3,9839,"turk",2,1,99,3,99,99,"New York Times","Democrat" +3,3,9840,"turk",3,1,10,4,10,10,"New York Times","Democrat" +3,3,9842,"turk",4,1,70,4,70,60,"New York Times","Democrat" +3,3,9843,"turk",4,1,1,5,1,1,"New York Times","Neither" +3,3,9851,"turk",3,1,99,5,99,25,"New York Times","Democrat" +3,3,9852,"turk",4,1,75,4,75,75,"New York Times","Democrat" +3,3,9853,"turk",2,1,60,2,60,50,"New York Times","Neither" +3,3,9855,"turk",3,1,20,3,20,10,"New York Times","Neither" +3,3,9856,"turk",4,1,3,2,3,2,"New York Times","Republican" +3,3,9861,"turk",4,1,99,4,99,1,"New York Times","Neither" +3,3,9862,"turk",4,1,99,5,99,85,"New York Times","Democrat" +3,3,9863,"turk",2,1,20,3,20,20,"New York Times","Neither" +3,3,9864,"turk",4,1,1,3,1,1,"New York Times","Republican" +3,3,9865,"turk",4,1,50,2,50,50,"New York Times","Neither" +3,3,9869,"turk",3,1,80,3,80,60,"New York Times","Republican" +3,3,9870,"turk",4,1,75,2,75,66,"New York Times","Democrat" +3,3,9871,"turk",2,1,98,2,98,99,"New York Times","Republican" +3,3,9873,"turk",4,1,80,3,80,50,"New York Times","Democrat" +3,3,9874,"turk",3,1,45,2,45,50,"New York Times","Democrat" +3,3,9877,"turk",3,1,25,5,25,25,"New York Times","Neither" +3,3,9884,"turk",2,1,50,4,50,50,"New York Times","Republican" +3,3,9886,"turk",3,1,99,3,99,99,"New York Times","Republican" +3,3,9888,"turk",2,1,99,5,99,99,"New York Times","Republican" +3,3,9890,"turk",2,1,89,3,89,78,"New York Times","Republican" +3,3,9892,"turk",3,1,65,3,65,45,"New York Times","Democrat" +3,3,9893,"turk",4,1,99,4,99,99,"New York Times","Democrat" +3,3,9898,"turk",3,1,NA,5,NA,1,"New York Times","Republican" +3,3,9900,"turk",4,1,22,3,22,22,"New York Times","Democrat" +3,3,9901,"turk",3,1,80,2,80,75,"New York Times","Republican" +3,3,9902,"turk",2,1,80,4,80,80,"New York Times","Democrat" +3,3,9903,"turk",2,1,90,5,90,90,"New York Times","Democrat" +3,3,9904,"turk",3,1,90,2,90,80,"New York Times","Democrat" +3,3,9906,"turk",2,1,0,5,0,0,"New York Times","Democrat" +3,3,9911,"turk",4,1,20,4,20,20,"New York Times","Democrat" +3,3,9912,"turk",4,1,99,4,99,34,"New York Times","Democrat" +3,3,9916,"turk",3,1,50,5,50,70,"New York Times","Republican" +3,3,9917,"turk",4,1,80,2,80,60,"New York Times","Neither" +3,3,9919,"turk",4,1,1,2,1,1,"New York Times","Democrat" +3,3,9923,"turk",2,1,99,2,99,75,"New York Times","Neither" +3,3,9926,"turk",2,1,50,2,50,85,"New York Times","Republican" +3,3,9927,"turk",2,1,25,2,25,75,"New York Times","Republican" +3,3,9929,"turk",3,1,50,5,50,50,"New York Times","Neither" +3,3,9930,"turk",3,1,80,5,80,80,"New York Times","Democrat" +3,3,9933,"turk",2,1,99,2,99,99,"New York Times","Republican" +3,3,9935,"turk",3,1,85,3,85,85,"New York Times","Neither" +3,3,9937,"turk",4,1,99,5,99,99,"New York Times","Democrat" +3,3,9940,"turk",4,1,90,5,90,85,"New York Times","Democrat" +3,3,9941,"turk",4,1,85,4,85,85,"New York Times","Republican" +3,3,9942,"turk",2,1,1,4,1,1,"New York Times","Democrat" +3,3,9945,"turk",4,1,1,4,1,1,"New York Times","Democrat" +3,3,9950,"turk",4,1,40,5,40,40,"New York Times","Democrat" +3,3,9951,"turk",3,1,1,4,1,99,"New York Times","Republican" +3,3,9955,"turk",3,1,1,5,1,1,"New York Times","Republican" +3,3,9959,"turk",2,1,70,3,70,70,"New York Times","Democrat" +3,3,9960,"turk",4,1,99,4,99,5,"New York Times","Democrat" +3,3,9962,"turk",3,1,99,3,99,99,"New York Times","Democrat" +3,3,9965,"turk",2,1,80,2,80,1,"New York Times","Democrat" +3,3,9975,"turk",3,1,2,3,2,2,"New York Times","Democrat" +3,3,9984,"turk",3,1,1,2,1,1,"New York Times","Democrat" +3,3,9986,"turk",4,1,70,3,70,30,"New York Times","Democrat" +3,3,9988,"turk",2,1,99,2,99,0,"New York Times","Democrat" +3,3,9989,"turk",3,1,65,4,65,65,"New York Times","Democrat" +3,3,9993,"turk",4,1,40,4,40,40,"New York Times","Neither" +3,3,9995,"turk",3,1,85,3,85,50,"New York Times","Republican" +3,3,9996,"turk",4,1,80,2,80,80,"New York Times","Democrat" +3,3,9998,"turk",3,1,25,2,25,50,"New York Times","Democrat" +3,3,10002,"turk",4,1,10,3,10,5,"New York Times","Democrat" +3,3,10004,"turk",4,1,99,3,99,99,"New York Times","Democrat" +3,3,10005,"turk",4,1,85,4,85,85,"New York Times","Republican" +3,3,10007,"turk",4,1,80,5,80,80,"New York Times","Republican" +3,3,10009,"turk",4,1,99,5,99,99,"New York Times","Republican" +3,3,10011,"turk",4,1,50,4,50,40,"New York Times","Democrat" +3,3,10013,"turk",3,1,99,5,99,99,"New York Times","Democrat" +3,3,10014,"turk",4,1,90,2,90,50,"New York Times","Republican" +3,3,10020,"turk",2,1,85,5,85,25,"New York Times","Democrat" +3,3,10027,"turk",4,1,90,4,90,60,"New York Times","Republican" +3,3,10034,"turk",2,1,58,2,58,33,"New York Times","Neither" +3,3,10035,"turk",2,1,30,4,30,30,"New York Times","Democrat" +3,3,10038,"turk",3,1,99,2,99,1,"New York Times","Democrat" +3,3,10041,"turk",3,1,99,2,99,99,"New York Times","Republican" +3,3,10046,"turk",4,1,0,5,0,85,"New York Times","Neither" +3,3,10048,"turk",2,1,80,4,80,80,"New York Times","Democrat" +3,3,10055,"turk",3,1,25,2,25,99,"New York Times","Republican" +3,3,10060,"turk",2,1,30,5,30,40,"New York Times","Democrat" +3,3,10067,"turk",3,1,99,3,99,99,"New York Times","Democrat" +3,3,10068,"turk",3,1,1,2,1,1,"New York Times","Democrat" +3,3,10070,"turk",3,1,1,5,1,1,"New York Times","Democrat" +3,3,10072,"turk",3,1,80,3,80,80,"New York Times","Democrat" +3,3,10074,"turk",2,1,99,4,99,95,"New York Times","Democrat" +3,3,10075,"turk",4,1,99,5,99,99,"New York Times","Democrat" +3,3,10076,"turk",3,1,99,4,99,99,"New York Times","Neither" +3,3,10077,"turk",3,1,50,2,50,50,"New York Times","Democrat" +3,3,10079,"turk",3,1,95,5,95,95,"New York Times","Republican" +3,3,10084,"turk",3,1,85,2,85,25,"New York Times","Neither" +3,3,10085,"turk",2,1,90,4,90,85,"New York Times","Neither" +3,3,10090,"turk",2,1,70,3,70,60,"New York Times","Democrat" +3,3,10095,"turk",3,1,80,5,80,80,"New York Times","Democrat" +3,3,10096,"turk",4,1,50,5,50,99,"New York Times","Democrat" +3,3,10098,"turk",2,1,5,3,5,10,"New York Times","Neither" +3,3,10099,"turk",2,1,80,5,80,80,"New York Times","Democrat" +3,3,10103,"turk",3,1,95,4,95,60,"New York Times","Democrat" +3,3,10104,"turk",3,1,95,4,95,85,"New York Times","Democrat" +3,3,10105,"turk",3,1,70,3,70,70,"New York Times","Democrat" +3,3,10112,"turk",2,1,65,5,65,60,"New York Times","Democrat" +3,3,10113,"turk",4,1,99,5,99,1,"New York Times","Republican" +3,3,10116,"turk",4,1,100,3,100,100,"New York Times","Democrat" +3,3,10117,"turk",2,1,90,3,90,75,"New York Times","Democrat" +3,3,10119,"turk",2,1,99,5,99,99,"New York Times","Neither" +3,3,10120,"turk",3,1,75,2,75,75,"New York Times","Republican" +3,3,10121,"turk",4,1,25,4,25,25,"New York Times","Neither" +3,3,10124,"turk",4,1,99,2,99,99,"New York Times","Republican" +3,3,10127,"turk",3,1,1,2,1,70,"New York Times","Republican" +3,3,10131,"turk",2,1,50,4,50,50,"New York Times","Republican" +3,3,10134,"turk",4,1,90,5,90,85,"New York Times","Republican" +3,3,10136,"turk",4,1,1,5,1,20,"New York Times","Democrat" +3,3,10140,"turk",4,1,40,2,40,30,"New York Times","Democrat" +3,3,10144,"turk",4,1,70,4,70,75,"New York Times","Democrat" +3,3,10145,"turk",2,1,70,3,70,80,"New York Times","Democrat" +3,3,10146,"turk",4,1,1,2,1,1,"New York Times","Democrat" +3,3,10150,"turk",2,1,99,5,99,99,"New York Times","Democrat" +3,3,10154,"turk",3,1,1,5,1,1,"New York Times","Democrat" +3,3,10155,"turk",3,1,99,4,99,99,"New York Times","Republican" +3,3,10157,"turk",4,1,85,3,85,70,"New York Times","Democrat" +3,3,10158,"turk",2,1,45,2,45,50,"New York Times","Democrat" +3,3,10159,"turk",2,1,50,3,50,50,"New York Times","Republican" +3,3,10160,"turk",2,1,1,5,1,99,"New York Times","Democrat" +3,3,10168,"turk",2,1,50,5,50,65,"New York Times","Democrat" +3,3,10171,"turk",3,1,70,2,70,50,"New York Times","Democrat" +3,3,10172,"turk",3,1,1,4,1,1,"New York Times","Republican" +3,3,10176,"turk",4,1,70,2,70,15,"New York Times","Democrat" +3,3,10177,"turk",2,1,99,5,99,90,"New York Times","Democrat" +3,3,10185,"turk",2,1,99,3,99,99,"New York Times","Republican" +3,3,10189,"turk",3,1,99,2,99,99,"New York Times","Democrat" +3,3,10191,"turk",4,1,20,2,20,30,"New York Times","Democrat" +3,3,10194,"turk",4,1,99,3,99,99,"New York Times","Democrat" +3,3,10197,"turk",4,1,99,4,99,95,"New York Times","Democrat" +3,3,10202,"turk",4,1,50,5,50,1,"New York Times","Neither" +3,3,10203,"turk",3,1,60,3,60,80,"New York Times","Republican" +3,3,10205,"turk",4,1,30,5,30,40,"New York Times","Democrat" +3,3,10206,"turk",2,1,5,2,5,22,"New York Times","Democrat" +3,3,10207,"turk",3,1,80,3,80,60,"New York Times","Republican" +3,3,10210,"turk",3,1,99,4,99,90,"New York Times","Republican" +3,3,10213,"turk",4,1,60,2,60,50,"New York Times","Republican" +3,3,10219,"turk",4,1,99,2,99,50,"New York Times","Democrat" +3,3,10220,"turk",3,1,1,3,1,99,"New York Times","Republican" +3,3,10221,"turk",2,1,65,2,65,80,"New York Times","Democrat" +3,3,10224,"turk",2,1,0,4,0,100,"New York Times","Democrat" +3,3,10226,"turk",4,1,99,3,99,99,"New York Times","Republican" +3,3,10227,"turk",2,1,99,4,99,95,"New York Times","Republican" +3,3,10229,"turk",3,1,99,4,99,99,"New York Times","Democrat" +3,3,10230,"turk",3,1,84,3,84,56,"New York Times","Neither" +3,3,10231,"turk",3,1,1,3,1,1,"New York Times","Democrat" +3,3,10234,"turk",4,1,75,5,75,50,"New York Times","Republican" +3,3,10236,"turk",2,1,20,5,20,30,"New York Times","Democrat" +3,3,10238,"turk",3,1,20,3,20,40,"New York Times","Democrat" +3,3,10250,"turk",3,1,33,5,33,42,"New York Times","Democrat" +3,3,10251,"turk",4,1,99,4,99,99,"New York Times","Democrat" +3,3,10252,"turk",2,1,90,4,90,80,"New York Times","Republican" +3,3,10253,"turk",2,1,10,4,10,10,"New York Times","Democrat" +3,3,10254,"turk",2,1,95,3,95,95,"New York Times","Democrat" +3,3,10255,"turk",4,1,50,5,50,40,"New York Times","Democrat" +3,3,10256,"turk",3,1,99,2,99,1,"New York Times","Neither" +3,3,10258,"turk",3,1,50,3,50,15,"New York Times","Neither" +3,3,10262,"turk",4,1,90,5,90,90,"New York Times","Democrat" +3,3,10263,"turk",2,1,99,2,99,90,"New York Times","Republican" +3,3,10265,"turk",3,1,99,2,99,99,"New York Times","Republican" +3,3,10266,"turk",3,1,100,3,100,90,"New York Times","Republican" +3,3,10267,"turk",4,1,50,4,50,1,"New York Times","Democrat" +3,3,10269,"turk",3,1,1,3,1,99,"New York Times","Democrat" +3,3,10272,"turk",4,1,15,5,15,50,"New York Times","Democrat" +3,3,10273,"turk",3,1,85,5,85,85,"New York Times","Democrat" +3,3,10274,"turk",2,1,99,3,99,99,"New York Times","Republican" +3,3,10279,"turk",3,1,65,2,65,65,"New York Times","Democrat" +3,3,10280,"turk",3,1,99,2,99,99,"New York Times","Republican" +3,3,10282,"turk",3,1,75,4,75,70,"New York Times","Neither" +3,3,10285,"turk",3,1,100,4,100,75,"New York Times","Republican" +3,3,10286,"turk",2,1,99,4,99,90,"New York Times","Republican" +3,3,10290,"turk",3,1,50,4,50,99,"New York Times","Neither" +3,3,10291,"turk",4,1,10,2,10,10,"New York Times","Neither" +3,3,10292,"turk",2,1,1,5,1,20,"New York Times","Democrat" +3,3,10294,"turk",4,1,70,2,70,50,"New York Times","Democrat" +3,3,10305,"turk",2,1,99,4,99,99,"New York Times","Democrat" +3,3,10306,"turk",3,1,30,2,30,30,"New York Times","Democrat" +3,3,10308,"turk",2,1,100,5,100,90,"New York Times","Democrat" +3,3,10310,"turk",2,1,60,2,60,50,"New York Times","Republican" +3,3,10315,"turk",4,1,99,4,99,89,"New York Times","Republican" +3,3,10316,"turk",3,1,99,5,99,50,"New York Times","Neither" +3,3,10317,"turk",2,1,90,5,90,80,"New York Times","Democrat" +3,3,10320,"turk",2,1,99,5,99,1,"New York Times","Republican" +3,3,10325,"turk",2,1,99,3,99,99,"New York Times","Democrat" +3,3,10326,"turk",4,1,1,5,1,1,"New York Times","Republican" +3,3,10331,"turk",2,1,90,3,90,90,"New York Times","Democrat" +3,3,10333,"turk",2,1,99,3,99,75,"New York Times","Neither" +3,3,10337,"turk",4,1,5,4,5,3,"New York Times","Democrat" +3,3,10339,"turk",2,1,1,4,1,0,"New York Times","Democrat" +3,3,10340,"turk",3,1,85,3,85,70,"New York Times","Neither" +3,3,10341,"turk",2,1,30,3,30,20,"New York Times","Democrat" +3,3,10342,"turk",3,1,50,2,50,50,"New York Times","Democrat" +3,3,10343,"turk",2,1,80,3,80,75,"New York Times","Republican" +3,3,10344,"turk",4,1,90,5,90,85,"New York Times","Neither" +3,3,10350,"turk",4,1,80,3,80,70,"New York Times","Democrat" +3,3,10352,"turk",2,1,75,4,75,70,"New York Times","Democrat" +3,3,10357,"turk",4,1,90,3,90,60,"New York Times","Democrat" +3,3,10358,"turk",4,1,75,5,75,75,"New York Times","Republican" +3,3,10360,"turk",2,1,99,5,99,99,"New York Times","Democrat" +3,3,10361,"turk",4,1,50,3,50,45,"New York Times","Neither" +3,3,10363,"turk",2,1,50,3,50,60,"New York Times","Republican" +3,3,10364,"turk",2,1,99,2,99,20,"New York Times","Democrat" +3,3,10367,"turk",3,1,90,5,90,70,"New York Times","Republican" +3,3,10369,"turk",2,1,99,4,99,99,"New York Times","Republican" +3,3,10374,"turk",2,1,79,2,79,77,"New York Times","Democrat" +3,3,10375,"turk",4,1,3,4,3,4,"New York Times","Democrat" +3,3,10376,"turk",4,1,99,3,99,99,"New York Times","Republican" +3,3,10377,"turk",3,1,1,4,1,1,"New York Times","Democrat" +3,3,10380,"turk",2,1,85,3,85,75,"New York Times","Republican" +3,3,10388,"turk",4,1,90,4,90,80,"New York Times","Neither" +3,3,10389,"turk",4,1,35,4,35,25,"New York Times","Neither" +3,3,10392,"turk",3,1,1,2,1,1,"New York Times","Democrat" +3,3,10393,"turk",2,1,90,5,90,95,"New York Times","Democrat" +3,3,10396,"turk",2,1,25,5,25,32,"New York Times","Republican" +3,3,10401,"turk",4,1,60,2,60,80,"New York Times","Republican" +3,3,10406,"turk",2,1,1,5,1,1,"New York Times","Democrat" +3,3,10412,"turk",2,1,85,4,85,12,"New York Times","Democrat" +3,3,10413,"turk",4,1,85,2,85,80,"New York Times","Republican" +3,3,10414,"turk",3,1,1,3,1,100,"New York Times","Neither" +3,3,10415,"turk",4,1,97,3,97,95,"New York Times","Democrat" +3,3,10417,"turk",4,1,30,3,30,30,"New York Times","Neither" +3,3,10418,"turk",3,1,20,2,20,14,"New York Times","Democrat" +3,3,10419,"turk",2,1,99,2,99,99,"New York Times","Neither" +3,3,10421,"turk",4,1,1,5,1,99,"New York Times","Democrat" +3,3,10422,"turk",3,1,99,3,99,50,"New York Times","Democrat" +3,3,10425,"turk",2,1,99,4,99,99,"New York Times","Democrat" +3,3,10428,"turk",2,1,90,5,90,90,"New York Times","Republican" +3,3,10429,"turk",4,1,98,3,98,90,"New York Times","Democrat" +3,3,10432,"turk",4,1,85,5,85,85,"New York Times","Democrat" +3,3,10433,"turk",3,1,99,4,99,98,"New York Times","Democrat" +3,3,10435,"turk",3,1,5,4,5,5,"New York Times","Democrat" +3,3,10436,"turk",3,1,99,3,99,99,"New York Times","Democrat" +3,3,10441,"turk",3,1,80,2,80,30,"New York Times","Democrat" +3,3,10446,"turk",4,1,40,3,40,70,"New York Times","Democrat" +3,3,10448,"turk",3,1,99,5,99,80,"New York Times","Republican" +3,3,10449,"turk",4,1,99,4,99,80,"New York Times","Democrat" +3,3,10451,"turk",4,1,99,5,99,95,"New York Times","Republican" +3,3,10454,"turk",3,1,99,4,99,99,"New York Times","Democrat" +3,3,10455,"turk",2,1,99,5,99,99,"New York Times","Democrat" +3,3,10456,"turk",2,1,1,5,1,1,"New York Times","Democrat" +3,3,10457,"turk",3,1,90,5,90,90,"New York Times","Republican" +3,3,10458,"turk",2,1,77,5,77,66,"New York Times","Republican" +3,3,10466,"turk",4,1,90,4,90,85,"New York Times","Neither" +3,3,10467,"turk",2,1,1,4,1,99,"New York Times","Neither" +3,3,10468,"turk",2,1,20,2,20,30,"New York Times","Democrat" +3,3,10473,"turk",3,1,1,3,1,99,"New York Times","Democrat" +3,3,10474,"turk",4,1,79,5,79,80,"New York Times","Democrat" +3,3,10475,"turk",4,1,99,2,99,0,"New York Times","Democrat" +3,3,10478,"turk",3,1,90,4,90,85,"New York Times","Neither" +3,3,10489,"turk",3,1,85,5,85,79,"New York Times","Democrat" +3,3,10495,"turk",2,1,15,2,15,10,"New York Times","Neither" +3,3,10497,"turk",4,1,99,5,99,99,"New York Times","Democrat" +3,3,10502,"turk",3,1,30,3,30,30,"New York Times","Democrat" +3,3,10503,"turk",3,1,50,5,50,99,"New York Times","Democrat" +3,3,10505,"turk",3,1,80,5,80,30,"New York Times","Republican" +3,3,10506,"turk",2,1,99,4,99,99,"New York Times","Democrat" +3,3,10507,"turk",2,1,50,5,50,90,"New York Times","Democrat" +3,3,10511,"turk",4,1,100,4,100,100,"New York Times","Democrat" +3,3,10512,"turk",3,1,25,2,25,25,"New York Times","Democrat" +3,3,10517,"turk",2,1,99,3,99,99,"New York Times","Republican" +3,3,10522,"turk",2,1,85,5,85,40,"New York Times","Republican" +3,3,10526,"turk",2,1,60,4,60,0,"New York Times","Neither" +3,3,10528,"turk",2,1,99,3,99,99,"New York Times","Neither" +3,3,10532,"turk",4,1,25,4,25,25,"New York Times","Democrat" +3,3,10533,"turk",3,1,99,5,99,99,"New York Times","Democrat" +3,3,10534,"turk",4,1,93,4,93,92,"New York Times","Republican" +3,3,10535,"turk",3,1,80,5,80,80,"New York Times","Republican" +3,4,53,"tess",2,0,89,3,11,10,"USA Today","Democrat" +3,4,68,"tess",1,0,24,3,76,11,"USA Today","Democrat" +3,4,69,"tess",1,0,50,2,50,50,"USA Today","Neither" +3,4,77,"tess",2,1,27,2,27,28,"USA Today","Democrat" +3,4,114,"tess",3,1,99,2,99,99,"USA Today","Republican" +3,4,118,"tess",3,0,40,2,60,40,"USA Today","Democrat" +3,4,120,"tess",2,0,99,3,1,90,"USA Today","Democrat" +3,4,128,"tess",1,1,19,2,19,70,"USA Today","Republican" +3,4,130,"tess",3,1,89,2,89,78,"USA Today","Republican" +3,4,140,"tess",4,0,2,2,98,1,"USA Today","Republican" +3,4,151,"tess",3,0,20,2,80,7,"USA Today","Republican" +3,4,165,"tess",1,1,80,2,80,30,"USA Today","Democrat" +3,4,187,"tess",1,0,40,3,60,60,"USA Today","Republican" +3,4,216,"tess",3,1,83,3,83,92,"USA Today","Democrat" +3,4,221,"tess",3,0,44,2,56,1,"USA Today","Democrat" +3,4,224,"tess",2,0,68,2,32,29,"USA Today","Democrat" +3,4,247,"tess",3,0,0,3,100,84,"USA Today","Republican" +3,4,266,"tess",3,0,49,3,51,40,"USA Today","Democrat" +3,4,301,"tess",3,1,80,2,80,40,"USA Today","Democrat" +3,4,315,"tess",2,1,50,2,50,89,"USA Today","Democrat" +3,4,334,"tess",2,0,24,2,76,15,"USA Today","Democrat" +3,4,342,"tess",1,0,60,2,40,0,"USA Today","Democrat" +3,4,347,"tess",1,0,67,3,33,51,"USA Today","Democrat" +3,4,366,"tess",2,1,83,2,83,85,"USA Today","Democrat" +3,4,397,"tess",1,0,NA,3,NA,NA,"USA Today","Democrat" +3,4,405,"tess",1,0,99,2,1,0,"USA Today","Republican" +3,4,421,"tess",2,0,93,2,7,9,"USA Today","Democrat" +3,4,426,"tess",2,1,60,2,60,50,"USA Today","Republican" +3,4,430,"tess",3,1,40,2,40,60,"USA Today","Republican" +3,4,478,"tess",2,0,42,3,58,95,"USA Today","Democrat" +3,4,485,"tess",3,0,35,2,65,17,"USA Today","Democrat" +3,4,493,"tess",2,0,0,2,100,10,"USA Today","Republican" +3,4,508,"tess",2,0,81,3,19,63,"USA Today","Republican" +3,4,530,"tess",2,0,27,3,73,79,"USA Today","Republican" +3,4,541,"tess",4,0,19,2,81,31,"USA Today","Democrat" +3,4,549,"tess",1,0,32,3,68,39,"USA Today","Democrat" +3,4,567,"tess",2,0,0,3,100,100,"USA Today","Democrat" +3,4,591,"tess",2,0,32,2,68,79,"USA Today","Democrat" +3,4,596,"tess",1,0,100,2,0,0,"USA Today","Democrat" +3,4,602,"tess",2,1,18,3,18,87,"USA Today","Democrat" +3,4,608,"tess",2,1,81,2,81,90,"USA Today","Democrat" +3,4,611,"tess",3,0,24,3,76,28,"USA Today","Republican" +3,4,638,"tess",1,1,56,2,56,36,"USA Today","Republican" +3,4,639,"tess",1,1,51,2,51,20,"USA Today","Democrat" +3,4,649,"tess",3,1,100,3,100,100,"USA Today","Democrat" +3,4,675,"tess",2,1,10,2,10,5,"USA Today","Democrat" +3,4,684,"tess",2,0,30,3,70,50,"USA Today","Republican" +3,4,693,"tess",2,1,96,3,96,100,"USA Today","Republican" +3,4,709,"tess",4,1,80,2,80,100,"USA Today","Republican" +3,4,717,"tess",3,0,30,2,70,0,"USA Today","Republican" +3,4,734,"tess",2,0,6,3,94,81,"USA Today","Republican" +3,4,740,"tess",2,0,40,2,60,10,"USA Today","Democrat" +3,4,752,"tess",3,1,60,3,60,62,"USA Today","Democrat" +3,4,766,"tess",2,1,48,2,48,57,"USA Today","Republican" +3,4,770,"tess",1,0,50,2,50,0,"USA Today","Democrat" +3,4,772,"tess",3,0,4,3,96,82,"USA Today","Republican" +3,4,794,"tess",2,1,77,2,77,56,"USA Today","Democrat" +3,4,803,"tess",3,0,60,3,40,70,"USA Today","Democrat" +3,4,828,"tess",1,1,79,3,79,91,"USA Today","Neither" +3,4,829,"tess",1,1,89,3,89,80,"USA Today","Neither" +3,4,836,"tess",2,0,9,3,91,3,"USA Today","Democrat" +3,4,845,"tess",1,1,97,2,97,78,"USA Today","Republican" +3,4,851,"tess",3,1,71,2,71,51,"USA Today","Republican" +3,4,852,"tess",2,1,54,3,54,76,"USA Today","Democrat" +3,4,878,"tess",2,0,6,3,94,97,"USA Today","Democrat" +3,4,886,"tess",1,1,94,2,94,96,"USA Today","Republican" +3,4,890,"tess",4,0,86,2,14,42,"USA Today","Republican" +3,4,891,"tess",1,0,80,3,20,20,"USA Today","Republican" +3,4,895,"tess",1,1,98,3,98,91,"USA Today","Democrat" +3,4,912,"tess",1,1,20,3,20,20,"USA Today","Democrat" +3,4,919,"tess",1,1,99,2,99,97,"USA Today","Democrat" +3,4,928,"tess",3,0,89,3,11,9,"USA Today","Republican" +3,4,943,"tess",1,1,90,3,90,90,"USA Today","Republican" +3,4,950,"tess",3,1,71,2,71,70,"USA Today","Democrat" +3,4,952,"tess",3,0,10,3,90,11,"USA Today","Republican" +3,4,958,"tess",1,1,2,3,2,3,"USA Today","Democrat" +3,4,1020,"tess",2,1,90,3,90,80,"USA Today","Republican" +3,4,1031,"tess",2,1,16,2,16,10,"USA Today","Democrat" +3,4,1046,"tess",2,1,98,2,98,90,"USA Today","Republican" +3,4,1058,"tess",2,1,90,3,90,88,"USA Today","Republican" +3,4,1066,"tess",1,0,42,3,58,67,"USA Today","Democrat" +3,4,1081,"tess",3,1,61,2,61,9,"USA Today","Democrat" +3,4,1084,"tess",3,0,63,2,37,58,"USA Today","Republican" +3,4,1087,"tess",3,1,50,3,50,50,"USA Today","Democrat" +3,4,1104,"tess",3,1,60,2,60,80,"USA Today","Democrat" +3,4,1119,"tess",3,1,60,3,60,20,"USA Today","Republican" +3,4,1149,"tess",1,1,59,3,59,71,"USA Today","Democrat" +3,4,1150,"tess",2,1,37,2,37,42,"USA Today","Democrat" +3,4,1156,"tess",3,1,98,2,98,100,"USA Today","Democrat" +3,4,1172,"tess",2,1,97,3,97,92,"USA Today","Republican" +3,4,1178,"tess",2,1,40,2,40,23,"USA Today","Republican" +3,4,1220,"tess",1,1,91,3,91,91,"USA Today","Democrat" +3,4,1235,"tess",2,1,90,2,90,50,"USA Today","Republican" +3,4,1246,"tess",4,0,46,2,54,10,"USA Today","Republican" +3,4,1259,"tess",1,1,54,3,54,74,"USA Today","Democrat" +3,4,1282,"tess",2,1,28,2,28,64,"USA Today","Republican" +3,4,1284,"tess",3,0,58,3,42,6,"USA Today","Democrat" +3,4,1285,"tess",1,0,52,3,48,58,"USA Today","Neither" +3,4,1304,"tess",1,1,100,2,100,50,"USA Today","Democrat" +3,4,1306,"tess",2,0,96,2,4,5,"USA Today","Democrat" +3,4,1309,"tess",2,1,65,2,65,70,"USA Today","Democrat" +3,4,1330,"tess",3,1,9,3,9,59,"USA Today","Republican" +3,4,1336,"tess",1,1,50,3,50,60,"USA Today","Republican" +3,4,1366,"tess",3,0,29,2,71,20,"USA Today","Democrat" +3,4,1376,"tess",3,1,100,3,100,21,"USA Today","Democrat" +3,4,1382,"tess",1,1,0,3,0,14,"USA Today","Republican" +3,4,1397,"tess",1,1,0,3,0,98,"USA Today","Democrat" +3,4,1408,"tess",3,0,50,2,50,90,"USA Today","Democrat" +3,4,1416,"tess",1,0,80,2,20,20,"USA Today","Republican" +3,4,1418,"tess",3,0,84,2,16,9,"USA Today","Republican" +3,4,1461,"tess",2,1,57,3,57,54,"USA Today","Democrat" +3,4,1464,"tess",1,0,49,2,51,58,"USA Today","Democrat" +3,4,1468,"tess",3,1,100,2,100,65,"USA Today","Republican" +3,4,1485,"tess",2,0,73,2,27,31,"USA Today","Democrat" +3,4,1486,"tess",3,1,18,3,18,99,"USA Today","Democrat" +3,4,1491,"tess",1,0,NA,3,NA,NA,"USA Today","Republican" +3,4,1500,"tess",1,1,95,2,95,0,"USA Today","Democrat" +3,4,1552,"tess",3,0,12,3,88,93,"USA Today","Republican" +3,4,1553,"tess",2,1,71,3,71,80,"USA Today","Democrat" +3,4,1565,"tess",2,1,0,3,0,10,"USA Today","Democrat" +3,4,1600,"tess",3,1,3,3,3,98,"USA Today","Republican" +3,4,1605,"tess",2,0,81,2,19,27,"USA Today","Republican" +3,4,1608,"tess",1,1,30,2,30,80,"USA Today","Republican" +3,4,1631,"tess",3,0,70,2,30,43,"USA Today","Democrat" +3,4,1634,"tess",3,0,95,2,5,0,"USA Today","Democrat" +3,4,1644,"tess",1,1,61,3,61,61,"USA Today","Democrat" +3,4,1654,"tess",2,0,8,3,92,74,"USA Today","Democrat" +3,4,1657,"tess",4,1,99,2,99,90,"USA Today","Republican" +3,4,1668,"tess",1,1,60,2,60,82,"USA Today","Democrat" +3,4,1673,"tess",3,0,39,2,61,50,"USA Today","Democrat" +3,4,1674,"tess",2,0,21,3,79,50,"USA Today","Republican" +3,4,1706,"tess",3,1,73,2,73,20,"USA Today","Democrat" +3,4,1728,"tess",1,0,50,2,50,20,"USA Today","Democrat" +3,4,1733,"tess",1,1,50,2,50,99,"USA Today","Democrat" +3,4,1767,"tess",1,1,51,3,51,50,"USA Today","Republican" +3,4,1824,"tess",3,1,100,3,100,100,"USA Today","Republican" +3,4,1834,"tess",3,0,10,2,90,88,"USA Today","Neither" +3,4,1841,"tess",1,1,58,2,58,79,"USA Today","Republican" +3,4,1847,"tess",2,1,28,2,28,80,"USA Today","Republican" +3,4,1863,"tess",3,1,75,2,75,70,"USA Today","Republican" +3,4,1870,"tess",1,1,70,3,70,70,"USA Today","Republican" +3,4,1898,"tess",1,1,51,3,51,55,"USA Today","Democrat" +3,4,1902,"tess",2,1,93,2,93,100,"USA Today","Democrat" +3,4,1928,"tess",1,1,40,2,40,47,"USA Today","Democrat" +3,4,1940,"tess",2,1,20,3,20,40,"USA Today","Democrat" +3,4,1953,"tess",3,0,11,2,89,89,"USA Today","Republican" +3,4,1966,"tess",2,0,86,2,14,15,"USA Today","Republican" +3,4,1973,"tess",3,1,60,2,60,70,"USA Today","Democrat" +3,4,1992,"tess",1,0,11,2,89,20,"USA Today","Democrat" +3,4,1994,"tess",3,0,80,3,20,20,"USA Today","Republican" +3,4,2017,"tess",2,0,74,2,26,75,"USA Today","Democrat" +3,4,2044,"tess",1,1,81,2,81,68,"USA Today","Republican" +3,4,2049,"tess",2,1,6,3,6,62,"USA Today","Democrat" +3,4,2057,"tess",3,0,0,2,100,80,"USA Today","Republican" +3,4,2066,"tess",1,0,2,2,98,97,"USA Today","Republican" +3,4,2072,"tess",1,0,23,2,77,4,"USA Today","Democrat" +3,4,2082,"tess",1,0,21,3,79,13,"USA Today","Democrat" +3,4,2097,"tess",2,0,61,3,39,26,"USA Today","Republican" +3,4,2099,"tess",3,1,71,2,71,81,"USA Today","Republican" +3,4,2100,"tess",3,1,61,2,61,59,"USA Today","Democrat" +3,4,2120,"tess",2,0,61,2,39,20,"USA Today","Republican" +3,4,2137,"tess",4,1,91,2,91,86,"USA Today","Democrat" +3,4,2141,"tess",1,1,89,3,89,39,"USA Today","Democrat" +3,4,2169,"tess",4,1,82,2,82,84,"USA Today","Democrat" +3,4,2180,"tess",1,1,100,3,100,54,"USA Today","Democrat" +3,4,2187,"tess",1,0,52,3,48,48,"USA Today","Democrat" +3,4,2190,"tess",1,0,51,3,49,93,"USA Today","Neither" +3,4,2195,"tess",2,0,0,2,100,0,"USA Today","Republican" +3,4,2196,"tess",2,0,73,3,27,0,"USA Today","Republican" +3,4,2208,"tess",1,0,0,3,100,100,"USA Today","Democrat" +3,4,2211,"tess",4,1,69,2,69,80,"USA Today","Republican" +3,4,2228,"tess",2,1,79,3,79,17,"USA Today","Democrat" +3,4,2235,"tess",2,0,30,3,70,70,"USA Today","Republican" +3,4,2238,"tess",2,1,62,3,62,51,"USA Today","Democrat" +3,4,2248,"tess",3,0,43,2,57,50,"USA Today","Democrat" +3,4,2253,"tess",3,0,50,3,50,2,"USA Today","Democrat" +3,4,2291,"tess",1,1,90,2,90,80,"USA Today","Republican" +3,4,2313,"tess",1,0,5,3,95,95,"USA Today","Democrat" +3,4,2315,"tess",2,1,51,2,51,54,"USA Today","Democrat" +3,4,2322,"tess",2,0,22,2,78,44,"USA Today","Republican" +3,4,2353,"tess",3,0,70,2,30,0,"USA Today","Democrat" +3,4,2356,"tess",2,0,40,2,60,20,"USA Today","Republican" +3,4,2378,"tess",3,0,43,2,57,4,"USA Today","Democrat" +3,4,2379,"tess",3,0,61,3,39,41,"USA Today","Republican" +3,4,2382,"tess",3,0,63,2,37,50,"USA Today","Democrat" +3,4,2383,"tess",4,0,90,2,10,10,"USA Today","Republican" +3,4,2393,"tess",3,0,10,2,90,10,"USA Today","Democrat" +3,4,2398,"tess",3,1,60,2,60,25,"USA Today","Democrat" +3,4,2399,"tess",2,0,55,3,45,47,"USA Today","Democrat" +3,4,2407,"tess",3,1,75,2,75,81,"USA Today","Republican" +3,4,2412,"tess",1,1,96,2,96,70,"USA Today","Democrat" +3,4,2434,"tess",2,0,63,3,37,34,"USA Today","Democrat" +3,4,2468,"tess",2,0,10,2,90,25,"USA Today","Democrat" +3,4,2488,"tess",2,0,47,3,53,58,"USA Today","Democrat" +3,4,2492,"tess",2,1,98,3,98,97,"USA Today","Democrat" +3,4,2498,"tess",1,0,24,3,76,8,"USA Today","Republican" +3,4,2525,"tess",2,1,38,2,38,20,"USA Today","Republican" +3,4,2529,"tess",1,1,91,3,91,54,"USA Today","Democrat" +3,4,2532,"tess",1,0,90,3,10,10,"USA Today","Democrat" +3,4,2542,"tess",1,0,100,2,0,50,"USA Today","Neither" +3,4,2545,"tess",3,1,78,2,78,81,"USA Today","Democrat" +3,4,2557,"tess",1,0,32,3,68,38,"USA Today","Democrat" +3,4,2581,"tess",3,0,50,3,50,70,"USA Today","Democrat" +3,4,2611,"tess",3,1,67,3,67,55,"USA Today","Neither" +3,4,2623,"tess",2,1,45,2,45,68,"USA Today","Democrat" +3,4,2659,"tess",3,0,8,3,92,97,"USA Today","Republican" +3,4,2664,"tess",3,0,3,3,97,54,"USA Today","Democrat" +3,4,2669,"tess",1,0,52,3,48,0,"USA Today","Democrat" +3,4,2670,"tess",1,1,90,2,90,70,"USA Today","Neither" +3,4,2671,"tess",3,0,57,3,43,41,"USA Today","Republican" +3,4,2700,"tess",3,1,74,3,74,60,"USA Today","Democrat" +3,4,2715,"tess",3,0,2,3,98,81,"USA Today","Republican" +3,4,2731,"tess",3,1,35,2,35,50,"USA Today","Democrat" +3,4,2733,"tess",3,1,92,2,92,2,"USA Today","Democrat" +3,4,2745,"tess",3,0,40,2,60,21,"USA Today","Republican" +3,4,2765,"tess",1,0,48,3,52,55,"USA Today","Republican" +3,4,2767,"tess",1,0,75,3,25,34,"USA Today","Democrat" +3,4,2771,"tess",2,0,57,3,43,17,"USA Today","Democrat" +3,4,2773,"tess",1,1,69,3,69,19,"USA Today","Republican" +3,4,2778,"tess",2,1,71,2,71,74,"USA Today","Republican" +3,4,2784,"tess",3,0,80,2,20,10,"USA Today","Republican" +3,4,2795,"tess",2,0,20,2,80,10,"USA Today","Republican" +3,4,2818,"tess",4,1,50,2,50,21,"USA Today","Democrat" +3,4,2827,"tess",2,0,99,2,1,1,"USA Today","Democrat" +3,4,2828,"tess",2,0,85,3,15,39,"USA Today","Republican" +3,4,2843,"tess",1,1,0,2,0,4,"USA Today","Democrat" +3,4,2863,"tess",3,1,30,2,30,95,"USA Today","Republican" +3,4,2888,"tess",2,1,10,2,10,50,"USA Today","Democrat" +3,4,2892,"tess",2,1,NA,2,NA,60,"USA Today","Democrat" +3,4,2893,"tess",1,0,80,2,20,90,"USA Today","Republican" +3,4,2923,"tess",2,0,73,3,27,28,"USA Today","Neither" +3,4,2934,"tess",1,0,20,3,80,50,"USA Today","Democrat" +3,4,2938,"tess",2,1,100,2,100,100,"USA Today","Republican" +3,4,2940,"tess",1,1,99,2,99,99,"USA Today","Republican" +3,4,2945,"tess",2,0,9,2,91,0,"USA Today","Democrat" +3,4,2970,"tess",2,1,38,2,38,100,"USA Today","Neither" +3,4,2981,"tess",1,1,10,3,10,91,"USA Today","Democrat" +3,4,2987,"tess",4,1,98,2,98,100,"USA Today","Republican" +3,4,2988,"tess",4,0,50,2,50,1,"USA Today","Democrat" +3,4,3006,"tess",3,1,50,2,50,50,"USA Today","Democrat" +3,4,3011,"tess",2,0,95,3,5,0,"USA Today","Republican" +3,4,3028,"tess",3,0,75,3,25,20,"USA Today","Democrat" +3,4,3029,"tess",3,1,70,3,70,61,"USA Today","Democrat" +3,4,3043,"tess",2,1,92,2,92,47,"USA Today","Democrat" +3,4,3047,"tess",1,0,47,3,53,55,"USA Today","Democrat" +3,4,3068,"tess",2,1,90,3,90,69,"USA Today","Democrat" +3,4,3074,"tess",1,1,10,2,10,90,"USA Today","Democrat" +3,4,3076,"tess",4,1,99,2,99,50,"USA Today","Republican" +3,4,3082,"tess",3,0,50,3,50,53,"USA Today","Neither" +3,4,3107,"tess",2,0,12,2,88,50,"USA Today","Democrat" +3,4,3109,"tess",3,0,14,2,86,14,"USA Today","Neither" +3,4,3123,"tess",4,0,10,2,90,30,"USA Today","Democrat" +3,4,3128,"tess",2,1,79,2,79,20,"USA Today","Republican" +3,4,3155,"tess",3,1,32,2,32,15,"USA Today","Neither" +3,4,3156,"tess",3,1,90,3,90,90,"USA Today","Democrat" +3,4,3172,"tess",1,1,10,3,10,10,"USA Today","Democrat" +3,4,3197,"tess",4,1,69,2,69,0,"USA Today","Democrat" +3,4,3206,"tess",1,1,91,2,91,59,"USA Today","Democrat" +3,4,3263,"tess",3,1,30,2,30,33,"USA Today","Democrat" +3,4,3313,"tess",2,0,75,2,25,59,"USA Today","Republican" +3,4,3320,"tess",2,1,14,3,14,12,"USA Today","Democrat" +3,4,3333,"tess",1,0,20,3,80,26,"USA Today","Democrat" +3,4,3342,"tess",2,1,84,2,84,74,"USA Today","Republican" +3,4,3344,"tess",1,0,79,2,21,10,"USA Today","Democrat" +3,4,3348,"tess",3,0,60,2,40,2,"USA Today","Democrat" +3,4,3364,"tess",3,1,77,3,77,14,"USA Today","Democrat" +3,4,3365,"tess",1,0,70,3,30,20,"USA Today","Democrat" +3,4,3412,"tess",3,1,99,3,99,92,"USA Today","Democrat" +3,4,3424,"tess",1,1,69,2,69,85,"USA Today","Democrat" +3,4,3425,"tess",3,0,36,2,64,40,"USA Today","Republican" +3,4,3426,"tess",1,0,10,2,90,0,"USA Today","Democrat" +3,4,3435,"tess",3,0,74,2,26,60,"USA Today","Republican" +3,4,3464,"tess",4,1,30,2,30,39,"USA Today","Republican" +3,4,3505,"tess",1,1,99,3,99,90,"USA Today","Republican" +3,4,3513,"tess",4,0,56,2,44,2,"USA Today","Democrat" +3,4,3515,"tess",1,0,100,3,0,1,"USA Today","Republican" +3,4,3523,"tess",2,0,50,3,50,50,"USA Today","Democrat" +3,4,3536,"tess",2,1,100,3,100,0,"USA Today","Republican" +3,4,3544,"tess",1,1,76,2,76,39,"USA Today","Neither" +3,4,3545,"tess",1,0,56,3,44,44,"USA Today","Democrat" +3,4,3548,"tess",4,0,30,2,70,11,"USA Today","Republican" +3,4,3554,"tess",3,0,75,3,25,81,"USA Today","Democrat" +3,4,3562,"tess",2,1,100,3,100,60,"USA Today","Democrat" +3,4,3568,"tess",3,1,69,2,69,40,"USA Today","Democrat" +3,4,3593,"tess",2,0,90,2,10,50,"USA Today","Democrat" +3,4,3609,"tess",3,1,97,2,97,91,"USA Today","Republican" +3,4,3610,"tess",2,1,30,2,30,40,"USA Today","Democrat" +3,4,3629,"tess",1,1,70,3,70,10,"USA Today","Republican" +3,4,3635,"tess",2,0,0,2,100,1,"USA Today","Republican" +3,4,3643,"tess",3,0,60,3,40,20,"USA Today","Democrat" +3,4,3645,"tess",4,1,96,2,96,98,"USA Today","Republican" +3,4,3676,"tess",3,0,70,3,30,60,"USA Today","Republican" +3,4,3678,"tess",3,1,50,2,50,70,"USA Today","Republican" +3,4,3681,"tess",2,0,84,3,16,53,"USA Today","Democrat" +3,4,3699,"tess",3,0,91,3,9,12,"USA Today","Republican" +3,4,3702,"tess",2,0,90,3,10,10,"USA Today","Democrat" +3,4,3722,"tess",1,1,83,3,83,82,"USA Today","Democrat" +3,4,3725,"tess",2,0,55,3,45,12,"USA Today","Republican" +3,4,3728,"tess",3,1,1,3,1,1,"USA Today","Republican" +3,4,3745,"tess",2,1,92,2,92,100,"USA Today","Democrat" +3,4,3754,"tess",1,1,4,3,4,99,"USA Today","Democrat" +3,4,3774,"tess",2,0,40,3,60,30,"USA Today","Neither" +3,4,3779,"tess",2,0,40,3,60,10,"USA Today","Republican" +3,4,3782,"tess",1,1,83,3,83,84,"USA Today","Democrat" +3,4,3787,"tess",3,0,17,2,83,19,"USA Today","Democrat" +3,4,3801,"tess",1,1,73,3,73,84,"USA Today","Democrat" +3,4,3806,"tess",3,0,40,3,60,52,"USA Today","Republican" +3,4,3813,"tess",3,1,39,2,39,87,"USA Today","Republican" +3,4,3814,"tess",1,0,99,2,1,0,"USA Today","Democrat" +3,4,3820,"tess",3,0,19,3,81,81,"USA Today","Democrat" +3,4,3845,"tess",3,1,18,3,18,44,"USA Today","Democrat" +3,4,3851,"tess",1,0,25,2,75,20,"USA Today","Republican" +3,4,3880,"tess",3,1,63,2,63,21,"USA Today","Republican" +3,4,3898,"tess",1,1,NA,3,NA,NA,"USA Today","Democrat" +3,4,3910,"tess",3,0,40,3,60,6,"USA Today","Democrat" +3,4,3915,"tess",2,1,95,3,95,99,"USA Today","Democrat" +3,4,3931,"tess",1,1,12,2,12,15,"USA Today","Democrat" +3,4,3958,"tess",3,0,60,2,40,0,"USA Today","Republican" +3,4,3959,"tess",3,1,60,2,60,50,"USA Today","Democrat" +3,4,3961,"tess",1,1,95,3,95,80,"USA Today","Democrat" +3,4,3966,"tess",2,1,100,3,100,100,"USA Today","Democrat" +3,4,4006,"tess",3,0,60,2,40,10,"USA Today","Democrat" +3,4,4039,"tess",3,0,10,3,90,100,"USA Today","Democrat" +3,4,4043,"tess",4,1,0,2,0,3,"USA Today","Republican" +3,4,4065,"tess",1,0,NA,3,NA,NA,"USA Today","Democrat" +3,4,4072,"tess",2,0,77,3,23,81,"USA Today","Democrat" +3,4,4084,"tess",1,1,90,2,90,26,"USA Today","Republican" +3,4,4108,"tess",1,1,1,3,1,100,"USA Today","Democrat" +3,4,4141,"tess",2,1,95,2,95,17,"USA Today","Democrat" +3,4,4149,"tess",3,1,53,3,53,53,"USA Today","Republican" +3,4,4153,"tess",4,1,80,2,80,94,"USA Today","Republican" +3,4,4163,"tess",3,1,74,2,74,71,"USA Today","Republican" +3,4,4175,"tess",2,1,20,3,20,30,"USA Today","Democrat" +3,4,4209,"tess",3,1,81,3,81,42,"USA Today","Democrat" +3,4,4210,"tess",3,0,90,2,10,5,"USA Today","Republican" +3,4,4216,"tess",1,1,95,2,95,95,"USA Today","Democrat" +3,4,4217,"tess",4,0,10,2,90,9,"USA Today","Democrat" +3,4,4218,"tess",2,0,0,3,100,0,"USA Today","Democrat" +3,4,4227,"tess",1,1,34,3,34,80,"USA Today","Democrat" +3,4,4237,"tess",3,0,50,2,50,50,"USA Today","Democrat" +3,4,4241,"tess",4,1,10,2,10,50,"USA Today","Republican" +3,4,4251,"tess",3,0,85,3,15,13,"USA Today","Republican" +3,4,4285,"tess",3,1,99,2,99,99,"USA Today","Neither" +3,4,4290,"tess",1,1,81,2,81,36,"USA Today","Democrat" +3,4,4291,"tess",4,1,89,2,89,89,"USA Today","Democrat" +3,4,4322,"tess",2,0,80,2,20,2,"USA Today","Republican" +3,4,4326,"tess",2,0,60,3,40,32,"USA Today","Democrat" +3,4,4331,"tess",3,1,60,2,60,30,"USA Today","Democrat" +3,4,4334,"tess",3,1,100,2,100,100,"USA Today","Republican" +3,4,4335,"tess",3,1,70,2,70,60,"USA Today","Republican" +3,4,4349,"tess",2,0,37,3,63,0,"USA Today","Democrat" +3,4,4361,"tess",3,1,98,2,98,10,"USA Today","Democrat" +3,4,4367,"tess",1,1,6,3,6,7,"USA Today","Republican" +3,4,4370,"tess",1,0,10,3,90,75,"USA Today","Republican" +3,4,4380,"tess",3,0,50,3,50,2,"USA Today","Republican" +3,4,4401,"tess",3,0,50,2,50,0,"USA Today","Democrat" +3,4,4412,"tess",1,1,100,2,100,100,"USA Today","Republican" +3,4,4416,"tess",2,0,79,3,21,20,"USA Today","Republican" +3,4,4441,"tess",2,1,99,3,99,90,"USA Today","Democrat" +3,4,4458,"tess",1,0,96,3,4,88,"USA Today","Republican" +3,4,4484,"tess",1,0,91,2,9,10,"USA Today","Democrat" +3,4,4500,"tess",4,0,79,2,21,61,"USA Today","Democrat" +3,4,4548,"tess",4,0,5,2,95,10,"USA Today","Republican" +3,4,4552,"tess",1,0,39,2,61,10,"USA Today","Democrat" +3,4,4557,"tess",2,0,92,2,8,0,"USA Today","Republican" +3,4,4581,"tess",1,0,21,3,79,61,"USA Today","Democrat" +3,4,4606,"tess",1,1,0,2,0,100,"USA Today","Republican" +3,4,4618,"tess",2,0,41,2,59,1,"USA Today","Democrat" +3,4,4624,"tess",3,0,80,2,20,50,"USA Today","Republican" +3,4,4627,"tess",3,0,50,3,50,88,"USA Today","Democrat" +3,4,4633,"tess",2,1,50,2,50,10,"USA Today","Democrat" +3,4,4674,"tess",3,0,16,2,84,69,"USA Today","Republican" +3,4,4708,"tess",1,1,64,2,64,50,"USA Today","Democrat" +3,4,4713,"tess",2,0,50,3,50,10,"USA Today","Neither" +3,4,4715,"tess",2,0,37,3,63,82,"USA Today","Republican" +3,4,4726,"tess",3,0,48,3,52,44,"USA Today","Republican" +3,4,4737,"tess",1,1,100,3,100,98,"USA Today","Democrat" +3,4,4740,"tess",4,1,91,2,91,98,"USA Today","Republican" +3,4,4742,"tess",1,0,40,3,60,10,"USA Today","Democrat" +3,4,4789,"tess",1,0,70,2,30,2,"USA Today","Democrat" +3,4,4792,"tess",1,0,44,2,56,3,"USA Today","Republican" +3,4,4793,"tess",2,0,56,3,44,0,"USA Today","Democrat" +3,4,4795,"tess",2,1,99,3,99,98,"USA Today","Democrat" +3,4,4810,"tess",3,1,90,3,90,85,"USA Today","Democrat" +3,4,4817,"tess",2,1,75,3,75,85,"USA Today","Democrat" +3,4,4820,"tess",2,1,50,3,50,49,"USA Today","Republican" +3,4,4866,"tess",1,1,51,3,51,100,"USA Today","Democrat" +3,4,4880,"tess",2,1,76,2,76,40,"USA Today","Republican" +3,4,4883,"tess",3,0,9,2,91,18,"USA Today","Democrat" +3,4,4887,"tess",3,0,58,3,42,49,"USA Today","Republican" +3,4,4903,"tess",3,0,70,2,30,30,"USA Today","Democrat" +3,4,4905,"tess",3,1,98,3,98,50,"USA Today","Democrat" +3,4,4908,"tess",3,1,0,3,0,93,"USA Today","Democrat" +3,4,4921,"tess",2,0,0,2,100,43,"USA Today","Republican" +3,4,4926,"tess",4,1,98,2,98,98,"USA Today","Democrat" +3,4,4940,"tess",4,1,100,2,100,100,"USA Today","Republican" +3,4,4969,"tess",3,1,61,3,61,25,"USA Today","Democrat" +3,4,4971,"tess",2,0,59,3,41,10,"USA Today","Democrat" +3,4,4977,"tess",3,0,18,3,82,90,"USA Today","Republican" +3,4,5003,"tess",1,1,76,2,76,25,"USA Today","Republican" +3,4,5004,"tess",3,1,84,3,84,81,"USA Today","Democrat" +3,4,5025,"tess",1,1,94,2,94,100,"USA Today","Democrat" +3,4,5029,"tess",2,1,17,2,17,14,"USA Today","Republican" +3,4,5055,"tess",4,1,55,2,55,51,"USA Today","Republican" +3,4,5073,"tess",3,1,40,3,40,29,"USA Today","Democrat" +3,4,5086,"tess",3,1,90,3,90,40,"USA Today","Neither" +3,4,5116,"tess",1,1,100,3,100,90,"USA Today","Republican" +3,4,5131,"tess",3,0,42,3,58,37,"USA Today","Democrat" +3,4,5133,"tess",2,0,NA,2,NA,50,"USA Today","Republican" +3,4,5144,"tess",2,1,86,3,86,42,"USA Today","Democrat" +3,4,5147,"tess",1,1,64,3,64,82,"USA Today","Republican" +3,4,5162,"tess",2,0,80,3,20,20,"USA Today","Neither" +3,4,5186,"tess",3,1,97,3,97,98,"USA Today","Republican" +3,4,5195,"tess",2,1,93,3,93,91,"USA Today","Democrat" +3,4,5221,"tess",2,0,50,3,50,64,"USA Today","Republican" +3,4,5222,"tess",1,1,68,2,68,48,"USA Today","Democrat" +3,4,5284,"tess",1,1,96,2,96,6,"USA Today","Democrat" +3,4,5289,"tess",3,0,2,2,98,41,"USA Today","Democrat" +3,4,5290,"tess",2,0,100,2,0,2,"USA Today","Republican" +3,4,5299,"tess",3,0,56,2,44,46,"USA Today","Democrat" +3,4,5308,"tess",3,0,83,2,17,21,"USA Today","Democrat" +3,4,5311,"tess",3,1,87,3,87,77,"USA Today","Republican" +3,4,5314,"tess",1,0,1,3,99,99,"USA Today","Republican" +3,4,5331,"tess",1,0,80,3,20,50,"USA Today","Democrat" +3,4,5388,"tess",3,0,43,2,57,28,"USA Today","Republican" +3,4,5392,"tess",3,1,4,3,4,50,"USA Today","Democrat" +3,4,5406,"tess",1,1,73,3,73,47,"USA Today","Republican" +3,4,5411,"tess",1,1,20,2,20,30,"USA Today","Republican" +3,4,5416,"tess",1,1,2,3,2,50,"USA Today","Democrat" +3,4,5438,"tess",1,0,10,3,90,79,"USA Today","Democrat" +3,4,5447,"tess",1,0,17,2,83,0,"USA Today","Democrat" +3,4,5450,"tess",1,1,93,3,93,92,"USA Today","Republican" +3,4,5456,"tess",3,0,21,2,79,2,"USA Today","Democrat" +3,4,5462,"tess",2,0,42,2,58,30,"USA Today","Republican" +3,4,5470,"tess",3,1,50,2,50,100,"USA Today","Democrat" +3,4,5490,"tess",3,0,14,3,86,82,"USA Today","Republican" +3,4,5509,"tess",2,1,35,3,35,93,"USA Today","Democrat" +3,4,5518,"tess",2,1,60,2,60,70,"USA Today","Republican" +3,4,5523,"tess",4,0,98,2,2,98,"USA Today","Democrat" +3,4,5540,"tess",1,1,NA,2,NA,1,"USA Today","Democrat" +3,4,5553,"tess",3,1,90,2,90,86,"USA Today","Republican" +3,4,5576,"tess",3,1,33,3,33,50,"USA Today","Democrat" +3,4,5581,"tess",4,1,49,2,49,20,"USA Today","Democrat" +3,4,5584,"tess",1,1,70,2,70,9,"USA Today","Democrat" +3,4,5590,"tess",2,1,94,3,94,68,"USA Today","Democrat" +3,4,5611,"tess",2,1,61,2,61,88,"USA Today","Republican" +3,4,5612,"tess",2,0,38,3,62,63,"USA Today","Democrat" +3,4,5621,"tess",1,0,0,2,100,1,"USA Today","Democrat" +3,4,5633,"tess",1,1,100,3,100,100,"USA Today","Democrat" +3,4,5646,"tess",3,1,11,2,11,12,"USA Today","Republican" +3,4,5654,"tess",3,0,41,3,59,19,"USA Today","Democrat" +3,4,5663,"tess",1,0,30,2,70,30,"USA Today","Democrat" +3,4,5683,"tess",2,0,100,2,0,51,"USA Today","Democrat" +3,4,5691,"tess",1,0,100,3,0,21,"USA Today","Democrat" +3,4,5721,"tess",4,0,2,2,98,1,"USA Today","Republican" +3,4,5726,"tess",2,0,43,3,57,16,"USA Today","Democrat" +3,4,5729,"tess",1,1,98,2,98,100,"USA Today","Republican" +3,4,5732,"tess",1,1,60,3,60,50,"USA Today","Republican" +3,4,5734,"tess",2,0,20,3,80,30,"USA Today","Democrat" +3,4,5745,"tess",1,1,70,2,70,69,"USA Today","Democrat" +3,4,5751,"tess",4,0,70,2,30,12,"USA Today","Republican" +3,4,5757,"tess",2,1,22,2,22,97,"USA Today","Republican" +3,4,5760,"tess",4,1,80,2,80,80,"USA Today","Democrat" +3,4,5763,"tess",1,1,67,3,67,63,"USA Today","Democrat" +3,4,5783,"tess",1,1,49,2,49,40,"USA Today","Democrat" +3,4,5787,"tess",3,0,70,3,30,52,"USA Today","Republican" +3,4,5802,"tess",2,1,90,2,90,79,"USA Today","Republican" +3,4,5810,"tess",3,0,80,2,20,10,"USA Today","Democrat" +3,4,5833,"tess",4,0,92,2,8,12,"USA Today","Democrat" +3,4,5838,"tess",2,1,60,2,60,20,"USA Today","Republican" +3,4,5854,"tess",2,1,50,2,50,94,"USA Today","Democrat" +3,4,5874,"tess",1,1,40,2,40,29,"USA Today","Democrat" +3,4,5884,"tess",4,1,50,2,50,48,"USA Today","Democrat" +3,4,5901,"tess",2,0,20,2,80,10,"USA Today","Democrat" +3,4,5902,"tess",1,0,100,2,0,94,"USA Today","Republican" +3,4,5906,"tess",3,0,50,3,50,25,"USA Today","Democrat" +3,4,5914,"tess",1,0,50,2,50,20,"USA Today","Republican" +3,4,5940,"tess",3,0,52,2,48,40,"USA Today","Democrat" +3,4,5951,"tess",3,0,43,2,57,52,"USA Today","Democrat" +3,4,5958,"tess",3,0,20,3,80,70,"USA Today","Democrat" +3,4,5964,"tess",3,0,92,2,8,10,"USA Today","Democrat" +3,4,5978,"tess",1,0,2,2,98,10,"USA Today","Democrat" +3,4,5994,"tess",3,0,9,2,91,10,"USA Today","Democrat" +3,4,5996,"tess",1,0,28,3,72,78,"USA Today","Democrat" +3,4,5999,"tess",3,0,11,2,89,50,"USA Today","Democrat" +3,4,6000,"tess",3,0,80,2,20,40,"USA Today","Democrat" +3,4,6013,"tess",4,0,59,2,41,2,"USA Today","Democrat" +3,4,6039,"tess",3,0,83,3,17,20,"USA Today","Republican" +3,4,6045,"tess",2,0,34,3,66,55,"USA Today","Republican" +3,4,6061,"tess",3,0,29,2,71,21,"USA Today","Democrat" +3,4,6067,"tess",3,1,73,3,73,44,"USA Today","Republican" +3,4,6070,"tess",1,1,20,2,20,10,"USA Today","Republican" +3,4,6073,"tess",4,1,0,2,0,99,"USA Today","Democrat" +3,4,6074,"tess",2,0,82,2,18,18,"USA Today","Republican" +3,4,6121,"tess",2,1,58,2,58,97,"USA Today","Democrat" +3,4,6130,"tess",3,1,84,2,84,86,"USA Today","Republican" +3,4,6136,"tess",1,1,95,3,95,94,"USA Today","Democrat" +3,4,6137,"tess",3,1,98,3,98,100,"USA Today","Democrat" +3,4,6152,"tess",1,1,70,2,70,70,"USA Today","Democrat" +3,4,6158,"tess",1,1,49,2,49,85,"USA Today","Republican" +3,4,6162,"tess",2,0,91,3,9,48,"USA Today","Democrat" +3,4,6164,"tess",3,1,31,2,31,39,"USA Today","Democrat" +3,4,6170,"tess",4,0,50,2,50,24,"USA Today","Democrat" +3,4,6171,"tess",3,1,100,2,100,0,"USA Today","Democrat" +3,4,6172,"tess",3,0,99,2,1,99,"USA Today","Democrat" +3,4,6180,"tess",4,0,4,2,96,70,"USA Today","Republican" +3,4,6196,"tess",2,0,99,2,1,1,"USA Today","Democrat" +3,4,6209,"tess",3,0,100,2,0,100,"USA Today","Democrat" +3,4,6220,"tess",1,0,80,3,20,50,"USA Today","Democrat" +3,4,6224,"tess",3,1,20,2,20,90,"USA Today","Democrat" +3,4,6227,"tess",1,0,45,2,55,26,"USA Today","Democrat" +3,4,6257,"tess",3,1,83,2,83,84,"USA Today","Democrat" +3,4,6261,"tess",1,0,50,3,50,50,"USA Today","Democrat" +3,4,6263,"tess",3,1,71,3,71,50,"USA Today","Democrat" +3,4,6268,"tess",1,1,50,2,50,50,"USA Today","Republican" +3,4,6270,"tess",1,0,30,2,70,38,"USA Today","Democrat" +3,4,6271,"tess",4,0,78,2,22,56,"USA Today","Democrat" +3,4,6272,"tess",3,0,30,2,70,10,"USA Today","Democrat" +3,4,6292,"tess",2,0,9,3,91,91,"USA Today","Democrat" +3,4,6294,"tess",1,0,1,3,99,99,"USA Today","Republican" +3,4,6298,"tess",1,1,7,3,7,11,"USA Today","Neither" +3,4,6372,"tess",3,0,0,2,100,0,"USA Today","Democrat" +3,4,6385,"tess",2,0,51,3,49,55,"USA Today","Democrat" +3,4,6411,"tess",1,0,99,3,1,1,"USA Today","Democrat" +3,4,6427,"tess",1,1,1,3,1,50,"USA Today","Republican" +3,4,6430,"tess",2,0,20,3,80,90,"USA Today","Democrat" +3,4,6440,"tess",2,1,7,2,7,7,"USA Today","Republican" +3,4,6449,"tess",3,1,23,3,23,11,"USA Today","Republican" +3,4,6458,"tess",1,1,90,2,90,10,"USA Today","Republican" +3,4,6462,"tess",2,1,90,2,90,50,"USA Today","Democrat" +3,4,6468,"tess",3,0,50,3,50,19,"USA Today","Republican" +3,4,6472,"tess",1,0,89,3,11,0,"USA Today","Republican" +3,4,6506,"tess",2,1,22,2,22,6,"USA Today","Democrat" +3,4,6507,"tess",2,0,57,2,43,16,"USA Today","Republican" +3,4,6508,"tess",2,1,89,2,89,72,"USA Today","Republican" +3,4,6513,"tess",3,0,40,3,60,10,"USA Today","Republican" +3,4,6521,"tess",3,0,89,3,11,20,"USA Today","Democrat" +3,4,6522,"tess",3,0,38,2,62,50,"USA Today","Democrat" +3,4,6524,"tess",2,1,100,2,100,96,"USA Today","Democrat" +3,4,6532,"tess",3,0,50,3,50,10,"USA Today","Democrat" +3,4,6549,"tess",4,0,71,2,29,42,"USA Today","Democrat" +3,4,6551,"tess",1,1,80,3,80,80,"USA Today","Democrat" +3,4,6553,"tess",4,1,99,2,99,98,"USA Today","Republican" +3,4,6557,"tess",1,1,39,3,39,79,"USA Today","Republican" +3,4,6558,"tess",3,0,0,2,100,1,"USA Today","Republican" +3,4,6561,"tess",2,1,70,3,70,63,"USA Today","Democrat" +3,4,6568,"tess",2,0,71,3,29,40,"USA Today","Democrat" +3,4,6572,"tess",3,0,50,2,50,29,"USA Today","Democrat" +3,4,6589,"tess",3,0,52,3,48,56,"USA Today","Democrat" +3,4,6593,"tess",2,1,50,3,50,10,"USA Today","Democrat" +3,4,6608,"tess",1,1,70,2,70,1,"USA Today","Republican" +3,4,6609,"tess",1,1,24,2,24,3,"USA Today","Democrat" +3,4,6610,"tess",1,0,50,3,50,30,"USA Today","Democrat" +3,4,6611,"tess",1,0,42,2,58,77,"USA Today","Republican" +3,4,6625,"tess",1,0,85,2,15,4,"USA Today","Democrat" +3,4,6642,"tess",3,1,26,2,26,100,"USA Today","Democrat" +3,4,6646,"tess",2,0,30,3,70,10,"USA Today","Republican" +3,4,6647,"tess",3,1,84,3,84,70,"USA Today","Democrat" +3,4,6652,"tess",1,1,95,3,95,90,"USA Today","Republican" +3,4,6656,"tess",3,0,1,2,99,50,"USA Today","Democrat" +3,4,6666,"tess",2,0,22,2,78,20,"USA Today","Democrat" +3,4,6667,"tess",2,1,48,3,48,45,"USA Today","Democrat" +3,4,6668,"tess",1,1,100,2,100,90,"USA Today","Democrat" +3,4,6680,"tess",1,1,64,3,64,95,"USA Today","Republican" +3,4,6686,"tess",4,1,19,2,19,58,"USA Today","Republican" +3,4,6688,"tess",2,0,45,2,55,50,"USA Today","Republican" +3,4,6696,"tess",3,1,70,2,70,99,"USA Today","Democrat" +3,4,6702,"tess",1,1,99,3,99,99,"USA Today","Democrat" +3,4,6710,"tess",1,1,95,2,95,81,"USA Today","Republican" +3,4,6712,"tess",2,0,47,3,53,20,"USA Today","Democrat" +3,4,6729,"tess",3,1,74,2,74,42,"USA Today","Democrat" +3,4,6730,"tess",4,0,55,2,45,5,"USA Today","Democrat" +3,4,6732,"tess",1,0,84,2,16,33,"USA Today","Democrat" +3,4,6742,"tess",2,1,80,3,80,20,"USA Today","Democrat" +3,4,6748,"tess",1,1,75,2,75,50,"USA Today","Democrat" +3,4,6755,"tess",1,0,21,3,79,20,"USA Today","Republican" +3,4,6782,"tess",3,0,17,2,83,9,"USA Today","Republican" +3,4,6795,"tess",1,0,20,2,80,29,"USA Today","Democrat" +3,4,6803,"tess",1,1,0,2,0,100,"USA Today","Democrat" +3,4,6814,"tess",3,0,71,2,29,30,"USA Today","Democrat" +3,4,6827,"tess",2,0,50,2,50,28,"USA Today","Democrat" +3,4,6865,"tess",1,1,6,3,6,71,"USA Today","Democrat" +3,4,6866,"tess",3,0,0,2,100,0,"USA Today","Democrat" +3,4,6883,"tess",2,1,82,3,82,26,"USA Today","Democrat" +3,4,6893,"tess",1,1,87,3,87,13,"USA Today","Republican" +3,4,6897,"tess",2,1,65,2,65,50,"USA Today","Democrat" +3,4,6908,"tess",3,0,29,3,71,68,"USA Today","Democrat" +3,4,6909,"tess",4,1,45,2,45,80,"USA Today","Republican" +3,4,6915,"tess",2,0,20,2,80,10,"USA Today","Republican" +3,4,6920,"tess",1,0,32,3,68,29,"USA Today","Republican" +3,4,6930,"tess",1,1,44,3,44,24,"USA Today","Republican" +3,4,6936,"tess",2,1,100,2,100,97,"USA Today","Republican" +3,4,6951,"tess",3,0,73,2,27,14,"USA Today","Democrat" +3,4,6956,"tess",4,0,58,2,42,0,"USA Today","Democrat" +3,4,6963,"tess",3,0,50,3,50,38,"USA Today","Democrat" +3,4,6997,"tess",1,1,65,2,65,80,"USA Today","Republican" +3,4,6998,"tess",3,0,50,2,50,1,"USA Today","Republican" +3,4,7022,"tess",3,0,53,2,47,15,"USA Today","Democrat" +3,4,7023,"tess",4,0,50,2,50,50,"USA Today","Democrat" +3,4,7027,"tess",3,0,1,3,99,26,"USA Today","Republican" +3,4,7031,"tess",2,0,41,3,59,50,"USA Today","Republican" +3,4,7048,"tess",4,1,98,2,98,98,"USA Today","Democrat" +3,4,7049,"tess",2,0,37,2,63,15,"USA Today","Democrat" +3,4,7055,"tess",2,0,50,2,50,10,"USA Today","Republican" +3,4,7061,"tess",4,0,90,2,10,27,"USA Today","Democrat" +3,4,7073,"tess",3,1,1,3,1,100,"USA Today","Republican" +3,4,7083,"tess",1,0,94,3,6,100,"USA Today","Democrat" +3,4,7087,"tess",2,1,100,3,100,94,"USA Today","Democrat" +3,4,7099,"tess",1,0,81,2,19,78,"USA Today","Democrat" +3,4,7104,"tess",1,0,92,2,8,3,"USA Today","Republican" +3,4,7124,"tess",2,0,52,2,48,48,"USA Today","Democrat" +3,4,7125,"tess",2,0,86,2,14,0,"USA Today","Republican" +3,4,7127,"tess",1,0,100,2,0,3,"USA Today","Democrat" +3,4,7128,"tess",1,0,80,2,20,60,"USA Today","Republican" +3,4,7133,"tess",2,1,80,3,80,69,"USA Today","Democrat" +3,4,7140,"tess",2,0,36,3,64,15,"USA Today","Republican" +3,4,7148,"tess",3,0,10,2,90,2,"USA Today","Democrat" +3,4,7153,"tess",3,1,99,3,99,1,"USA Today","Democrat" +3,4,7164,"tess",1,0,10,3,90,32,"USA Today","Neither" +3,4,7186,"tess",3,1,84,3,84,70,"USA Today","Democrat" +3,4,7216,"tess",2,0,100,3,0,8,"USA Today","Democrat" +3,4,7218,"tess",1,1,42,3,42,21,"USA Today","Democrat" +3,4,7222,"tess",2,0,8,2,92,8,"USA Today","Democrat" +3,4,7223,"tess",2,0,81,2,19,38,"USA Today","Democrat" +3,4,7230,"tess",1,0,48,2,52,4,"USA Today","Republican" +3,4,7231,"tess",3,0,50,3,50,10,"USA Today","Democrat" +3,4,7239,"tess",3,1,50,2,50,99,"USA Today","Republican" +3,4,7240,"tess",4,1,97,2,97,22,"USA Today","Democrat" +3,4,7241,"tess",3,0,100,2,0,0,"USA Today","Neither" +3,4,7248,"tess",3,1,80,2,80,90,"USA Today","Democrat" +3,4,7266,"tess",1,1,20,2,20,20,"USA Today","Republican" +3,4,7286,"tess",2,0,10,2,90,100,"USA Today","Republican" +3,4,7287,"tess",1,1,97,3,97,89,"USA Today","Republican" +3,4,7303,"tess",2,0,6,3,94,80,"USA Today","Republican" +3,4,7307,"tess",1,0,93,2,7,1,"USA Today","Democrat" +3,4,7311,"tess",3,1,51,2,51,95,"USA Today","Republican" +3,4,7330,"tess",4,1,69,2,69,44,"USA Today","Democrat" +3,4,7338,"tess",3,0,1,2,99,3,"USA Today","Democrat" +3,4,7341,"tess",3,1,99,3,99,1,"USA Today","Democrat" +3,4,7381,"tess",1,0,99,3,1,2,"USA Today","Republican" +3,4,7388,"tess",2,0,50,2,50,40,"USA Today","Democrat" +3,4,7395,"tess",1,0,50,3,50,80,"USA Today","Republican" +3,4,7409,"tess",2,1,100,3,100,80,"USA Today","Democrat" +3,4,7412,"tess",2,0,20,2,80,1,"USA Today","Republican" +3,4,7418,"tess",1,0,87,3,13,41,"USA Today","Democrat" +3,4,7437,"tess",3,0,35,2,65,9,"USA Today","Democrat" +3,4,7446,"tess",1,0,80,2,20,22,"USA Today","Democrat" +3,4,7452,"tess",2,0,50,2,50,49,"USA Today","Democrat" +3,4,7453,"tess",1,1,30,3,30,5,"USA Today","Republican" +3,4,7466,"tess",3,1,21,3,21,30,"USA Today","Republican" +3,4,7472,"tess",2,0,0,3,100,99,"USA Today","Republican" +3,4,7475,"tess",4,1,96,2,96,100,"USA Today","Neither" +3,4,7479,"tess",2,1,0,2,0,9,"USA Today","Democrat" +3,4,7486,"tess",1,1,91,2,91,70,"USA Today","Democrat" +3,4,7494,"tess",2,0,71,2,29,10,"USA Today","Republican" +3,4,7506,"tess",3,1,45,2,45,67,"USA Today","Democrat" +3,4,7524,"tess",3,1,100,2,100,63,"USA Today","Democrat" +3,4,7534,"tess",1,0,30,3,70,40,"USA Today","Democrat" +3,4,7569,"tess",3,1,75,3,75,78,"USA Today","Republican" +3,4,7577,"tess",2,1,30,3,30,11,"USA Today","Democrat" +3,4,7588,"tess",3,1,70,3,70,73,"USA Today","Republican" +3,4,7590,"tess",3,0,97,3,3,10,"USA Today","Republican" +3,4,7594,"tess",3,0,40,3,60,60,"USA Today","Democrat" +3,4,7600,"tess",3,0,67,2,33,30,"USA Today","Republican" +3,4,7622,"tess",4,1,99,2,99,70,"USA Today","Democrat" +3,4,7694,"tess",3,1,97,2,97,99,"USA Today","Republican" +3,4,7702,"tess",3,1,8,2,8,81,"USA Today","Democrat" +3,4,7711,"tess",3,0,7,3,93,37,"USA Today","Republican" +3,4,7712,"tess",3,1,91,3,91,89,"USA Today","Democrat" +3,4,7717,"tess",3,1,70,2,70,79,"USA Today","Democrat" +3,4,7739,"tess",3,1,19,2,19,30,"USA Today","Republican" +3,4,7741,"tess",3,0,50,3,50,100,"USA Today","Republican" +3,4,7754,"tess",2,0,51,3,49,50,"USA Today","Neither" +3,4,7778,"tess",2,1,84,3,84,62,"USA Today","Democrat" +3,4,7783,"tess",3,0,80,3,20,29,"USA Today","Republican" +3,4,7784,"tess",2,1,60,2,60,25,"USA Today","Neither" +3,4,7786,"tess",1,0,70,2,30,0,"USA Today","Democrat" +3,4,7792,"tess",1,1,80,3,80,80,"USA Today","Neither" +3,4,7793,"tess",1,0,80,3,20,40,"USA Today","Republican" +3,4,7826,"tess",3,0,31,3,69,21,"USA Today","Republican" +3,4,7906,"tess",1,1,99,3,99,99,"USA Today","Republican" +3,4,7918,"tess",2,1,75,3,75,75,"USA Today","Democrat" +3,4,7942,"tess",3,1,88,3,88,39,"USA Today","Republican" +3,4,7960,"tess",2,0,73,2,27,12,"USA Today","Democrat" +3,4,7965,"tess",2,0,63,2,37,26,"USA Today","Democrat" +3,4,7968,"tess",2,1,80,3,80,60,"USA Today","Democrat" +3,4,7983,"tess",2,0,28,3,72,15,"USA Today","Democrat" +3,4,7987,"tess",2,1,63,2,63,4,"USA Today","Democrat" +3,4,7988,"tess",2,0,33,3,67,69,"USA Today","Democrat" +3,4,7991,"tess",1,0,30,3,70,60,"USA Today","Republican" +3,4,7995,"tess",1,1,89,3,89,96,"USA Today","Republican" +3,4,8042,"tess",1,0,40,2,60,55,"USA Today","Republican" +3,4,8050,"tess",2,0,100,3,0,100,"USA Today","Neither" +3,4,8055,"tess",3,0,60,2,40,6,"USA Today","Democrat" +3,4,8061,"tess",3,0,59,2,41,11,"USA Today","Republican" +3,4,8064,"tess",1,0,10,2,90,100,"USA Today","Democrat" +3,4,8065,"tess",1,1,82,2,82,95,"USA Today","Democrat" +3,4,8069,"tess",2,0,50,2,50,60,"USA Today","Democrat" +3,4,8079,"tess",3,1,81,2,81,99,"USA Today","Democrat" +3,4,8096,"tess",2,0,99,3,1,1,"USA Today","Republican" +3,4,8110,"tess",3,0,74,2,26,74,"USA Today","Democrat" +3,4,8112,"tess",1,0,80,2,20,49,"USA Today","Democrat" +3,4,8116,"tess",3,0,24,2,76,18,"USA Today","Democrat" +3,4,8134,"tess",2,0,99,3,1,100,"USA Today","Democrat" +3,4,8146,"tess",4,1,100,2,100,0,"USA Today","Republican" +3,4,8159,"tess",2,1,21,2,21,40,"USA Today","Neither" +3,4,8160,"tess",2,0,10,3,90,95,"USA Today","Democrat" +3,4,8199,"tess",4,1,80,2,80,69,"USA Today","Democrat" +3,4,8207,"tess",3,0,97,3,3,49,"USA Today","Democrat" +3,4,8218,"tess",3,0,85,3,15,15,"USA Today","Democrat" +3,4,8221,"tess",2,0,40,3,60,7,"USA Today","Democrat" +3,4,8224,"tess",3,0,90,2,10,0,"USA Today","Republican" +3,4,8232,"tess",3,0,50,3,50,20,"USA Today","Democrat" +3,4,8249,"tess",3,1,100,3,100,99,"USA Today","Democrat" +3,4,8250,"tess",2,1,89,3,89,60,"USA Today","Democrat" +3,4,8252,"tess",2,0,20,3,80,100,"USA Today","Democrat" +3,4,8253,"tess",1,0,53,2,47,44,"USA Today","Democrat" +3,4,8265,"tess",1,0,50,2,50,50,"USA Today","Republican" +3,4,8267,"tess",2,0,89,2,11,25,"USA Today","Republican" +3,4,8274,"tess",1,1,50,2,50,1,"USA Today","Republican" +3,4,8280,"tess",2,1,50,2,50,50,"USA Today","Democrat" +3,4,8285,"tess",4,0,83,2,17,100,"USA Today","Democrat" +3,4,8327,"tess",3,1,86,2,86,86,"USA Today","Democrat" +3,4,8331,"tess",2,1,80,2,80,10,"USA Today","Democrat" +3,4,8333,"tess",2,1,18,2,18,64,"USA Today","Democrat" +3,4,8344,"tess",2,0,11,2,89,4,"USA Today","Democrat" +3,4,8345,"tess",2,1,91,2,91,91,"USA Today","Democrat" +3,4,8360,"tess",1,0,100,2,0,2,"USA Today","Democrat" +3,4,8361,"tess",3,1,81,3,81,40,"USA Today","Republican" +3,4,8386,"tess",4,0,40,2,60,50,"USA Today","Republican" +3,4,8405,"tess",2,1,50,2,50,50,"USA Today","Democrat" +3,4,8425,"tess",3,0,91,3,9,9,"USA Today","Democrat" +3,4,8452,"tess",3,0,0,3,100,10,"USA Today","Republican" +3,4,8455,"tess",3,0,98,2,2,99,"USA Today","Republican" +3,4,8503,"tess",3,1,80,2,80,80,"USA Today","Republican" +3,4,8550,"tess",3,1,98,2,98,98,"USA Today","Democrat" +3,4,8564,"tess",4,1,100,2,100,52,"USA Today","Republican" +3,4,8600,"tess",3,0,30,2,70,20,"USA Today","Democrat" +3,4,8608,"tess",4,0,70,2,30,20,"USA Today","Republican" +3,4,8619,"tess",1,0,37,2,63,1,"USA Today","Republican" +3,4,8640,"tess",1,0,80,2,20,0,"USA Today","Democrat" +3,4,8659,"tess",3,0,10,2,90,95,"USA Today","Democrat" +3,4,8669,"tess",3,0,4,3,96,50,"USA Today","Democrat" +3,4,8686,"tess",3,1,79,2,79,100,"USA Today","Republican" +3,4,8706,"tess",3,0,49,2,51,13,"USA Today","Republican" +3,4,8709,"tess",3,1,58,3,58,62,"USA Today","Republican" +3,4,8719,"tess",4,0,40,2,60,50,"USA Today","Republican" +3,4,8724,"tess",2,0,44,3,56,67,"USA Today","Democrat" +3,4,8727,"tess",1,0,50,2,50,35,"USA Today","Democrat" +3,4,8739,"tess",4,1,67,2,67,80,"USA Today","Republican" +3,4,8763,"tess",1,0,70,3,30,30,"USA Today","Republican" +3,4,8768,"tess",2,0,43,3,57,33,"USA Today","Democrat" +3,4,8779,"tess",2,1,100,3,100,100,"USA Today","Republican" +3,4,8806,"tess",1,0,12,3,88,18,"USA Today","Neither" +3,4,8814,"tess",1,0,40,2,60,29,"USA Today","Democrat" +3,4,8816,"tess",2,0,40,2,60,50,"USA Today","Democrat" +3,4,8826,"tess",1,1,32,3,32,64,"USA Today","Republican" +3,4,8836,"tess",1,1,5,3,5,14,"USA Today","Democrat" +3,4,8890,"tess",2,0,100,2,0,14,"USA Today","Republican" +3,4,8894,"tess",2,0,19,3,81,79,"USA Today","Democrat" +3,4,8900,"tess",2,0,10,2,90,0,"USA Today","Republican" +3,4,8903,"tess",1,1,70,3,70,90,"USA Today","Republican" +3,4,8925,"tess",3,1,57,2,57,58,"USA Today","Democrat" +3,4,8932,"tess",2,0,49,3,51,90,"USA Today","Democrat" +3,4,8933,"tess",2,0,100,2,0,57,"USA Today","Republican" +3,4,8956,"tess",1,0,51,3,49,50,"USA Today","Republican" +3,4,8973,"tess",2,1,5,2,5,5,"USA Today","Republican" +3,4,8988,"tess",3,0,30,2,70,30,"USA Today","Republican" +3,4,8995,"tess",3,1,90,2,90,90,"USA Today","Republican" +3,4,9007,"tess",1,0,50,2,50,30,"USA Today","Democrat" +3,4,9018,"tess",2,1,98,2,98,30,"USA Today","Democrat" +3,4,9024,"tess",3,0,80,2,20,10,"USA Today","Democrat" +3,4,9065,"tess",2,1,50,3,50,51,"USA Today","Neither" +3,4,9070,"tess",2,0,50,3,50,31,"USA Today","Democrat" +3,4,9075,"tess",2,1,99,2,99,99,"USA Today","Democrat" +3,4,9081,"tess",1,0,90,3,10,30,"USA Today","Republican" +3,4,9106,"tess",3,1,30,3,30,21,"USA Today","Republican" +3,4,9108,"tess",1,1,50,3,50,26,"USA Today","Democrat" +3,4,9119,"tess",2,1,50,3,50,41,"USA Today","Democrat" +3,4,9148,"tess",2,0,26,2,74,2,"USA Today","Republican" +3,4,9152,"tess",3,0,69,3,31,52,"USA Today","Democrat" +3,4,9153,"tess",3,0,50,3,50,50,"USA Today","Democrat" +3,4,9155,"tess",2,1,65,3,65,35,"USA Today","Democrat" +3,4,9189,"tess",1,0,10,2,90,19,"USA Today","Republican" +3,4,9198,"tess",1,1,74,2,74,84,"USA Today","Democrat" +3,4,9210,"tess",1,0,97,2,3,49,"USA Today","Democrat" +3,4,9239,"tess",2,0,6,3,94,11,"USA Today","Democrat" +3,4,9245,"tess",1,1,89,2,89,90,"USA Today","Republican" +3,4,9247,"tess",3,1,100,2,100,8,"USA Today","Democrat" +3,4,9269,"tess",2,0,15,3,85,55,"USA Today","Democrat" +3,4,9279,"tess",1,1,29,2,29,48,"USA Today","Democrat" +3,4,9292,"tess",3,1,35,2,35,70,"USA Today","Republican" +3,4,9319,"tess",2,1,99,3,99,99,"USA Today","Democrat" +3,4,9332,"tess",3,0,10,3,90,20,"USA Today","Democrat" +3,4,9342,"tess",1,1,92,3,92,82,"USA Today","Republican" +3,4,9352,"tess",3,0,58,3,42,42,"USA Today","Democrat" +3,4,9383,"tess",3,0,10,3,90,16,"USA Today","Republican" +3,4,9422,"tess",2,1,100,2,100,100,"USA Today","Democrat" +3,4,9425,"tess",3,1,99,3,99,93,"USA Today","Democrat" +3,4,9435,"tess",3,0,49,2,51,50,"USA Today","Democrat" +3,4,9443,"tess",2,1,99,3,99,50,"USA Today","Democrat" +3,4,9465,"tess",2,0,21,2,79,40,"USA Today","Republican" +3,4,9490,"tess",1,0,20,3,80,90,"USA Today","Republican" +3,4,9499,"tess",2,1,63,3,63,47,"USA Today","Democrat" +3,4,9500,"tess",1,0,100,2,0,7,"USA Today","Republican" +3,4,9510,"tess",2,0,5,3,95,65,"USA Today","Democrat" +3,4,9517,"tess",2,1,50,3,50,99,"USA Today","Neither" +3,4,9534,"tess",4,1,37,2,37,48,"USA Today","Democrat" +3,4,9570,"tess",3,0,82,2,18,17,"USA Today","Democrat" +3,4,9572,"tess",4,0,30,2,70,25,"USA Today","Republican" +3,4,9585,"tess",1,0,33,3,67,93,"USA Today","Democrat" +3,4,9590,"tess",4,1,45,2,45,31,"USA Today","Republican" +3,4,9601,"tess",1,0,10,2,90,30,"USA Today","Republican" +3,4,9603,"tess",3,0,91,3,9,59,"USA Today","Democrat" +3,4,9608,"tess",2,0,99,3,1,1,"USA Today","Democrat" +3,4,9645,"tess",4,1,49,2,49,62,"USA Today","Democrat" +3,4,9648,"tess",3,0,5,3,95,90,"USA Today","Democrat" +3,4,9649,"tess",1,0,12,3,88,92,"USA Today","Democrat" +3,4,9663,"tess",3,1,39,3,39,86,"USA Today","Democrat" +3,4,9671,"tess",2,1,90,2,90,80,"USA Today","Democrat" +3,4,9676,"tess",2,0,80,3,20,51,"USA Today","Democrat" +3,4,9679,"tess",2,0,98,2,2,1,"USA Today","Republican" +3,4,9681,"tess",3,0,55,2,45,23,"USA Today","Democrat" +3,4,9685,"tess",3,1,0,2,0,99,"USA Today","Republican" +3,4,9701,"tess",1,1,20,3,20,13,"USA Today","Democrat" +3,4,9717,"tess",1,0,60,3,40,80,"USA Today","Neither" +3,4,9744,"turk",3,0,1,5,99,99,"USA Today","Democrat" +3,4,9752,"turk",3,0,5,4,95,90,"USA Today","Democrat" +3,4,9753,"turk",2,0,65,2,35,15,"USA Today","Democrat" +3,4,9756,"turk",2,0,1,4,99,99,"USA Today","Democrat" +3,4,9763,"turk",3,0,65,2,35,50,"USA Today","Neither" +3,4,9771,"turk",4,0,50,4,50,30,"USA Today","Democrat" +3,4,9774,"turk",3,0,20,3,80,70,"USA Today","Democrat" +3,4,9777,"turk",3,0,20,5,80,50,"USA Today","Democrat" +3,4,9778,"turk",3,0,20,4,80,65,"USA Today","Neither" +3,4,9779,"turk",2,0,1,2,99,45,"USA Today","Democrat" +3,4,9782,"turk",4,0,10,5,90,90,"USA Today","Republican" +3,4,9783,"turk",2,0,45,5,55,50,"USA Today","Neither" +3,4,9785,"turk",3,0,70,3,30,60,"USA Today","Democrat" +3,4,9788,"turk",2,0,65,4,35,25,"USA Today","Democrat" +3,4,9791,"turk",2,0,1,2,99,99,"USA Today","Democrat" +3,4,9796,"turk",3,0,40,4,60,33,"USA Today","Democrat" +3,4,9798,"turk",3,0,50,2,50,20,"USA Today","Democrat" +3,4,9802,"turk",3,0,80,2,20,10,"USA Today","Democrat" +3,4,9805,"turk",2,0,70,2,30,20,"USA Today","Democrat" +3,4,9808,"turk",2,0,20,2,80,20,"USA Today","Neither" +3,4,9809,"turk",2,0,20,5,80,65,"USA Today","Neither" +3,4,9810,"turk",3,0,1,4,99,99,"USA Today","Democrat" +3,4,9811,"turk",3,0,25,4,75,25,"USA Today","Republican" +3,4,9813,"turk",3,0,1,4,99,80,"USA Today","Republican" +3,4,9814,"turk",4,0,30,4,70,50,"USA Today","Democrat" +3,4,9815,"turk",4,0,45,2,55,45,"USA Today","Democrat" +3,4,9816,"turk",4,0,1,5,99,50,"USA Today","Democrat" +3,4,9817,"turk",3,0,1,3,99,99,"USA Today","Republican" +3,4,9818,"turk",4,0,1,2,99,1,"USA Today","Republican" +3,4,9820,"turk",3,0,99,2,1,50,"USA Today","Republican" +3,4,9821,"turk",2,0,60,2,40,25,"USA Today","Democrat" +3,4,9823,"turk",3,0,15,4,85,80,"USA Today","Neither" +3,4,9828,"turk",3,0,70,3,30,40,"USA Today","Democrat" +3,4,9829,"turk",3,0,10,3,90,10,"USA Today","Republican" +3,4,9831,"turk",3,0,65,5,35,35,"USA Today","Democrat" +3,4,9844,"turk",2,0,50,4,50,50,"USA Today","Democrat" +3,4,9845,"turk",2,0,50,2,50,1,"USA Today","Neither" +3,4,9846,"turk",2,0,80,3,20,50,"USA Today","Democrat" +3,4,9847,"turk",2,0,99,3,1,99,"USA Today","Republican" +3,4,9849,"turk",3,0,0,5,100,100,"USA Today","Republican" +3,4,9857,"turk",2,0,1,2,99,1,"USA Today","Democrat" +3,4,9858,"turk",4,0,0,2,100,100,"USA Today","Republican" +3,4,9859,"turk",4,0,50,5,50,50,"USA Today","Democrat" +3,4,9866,"turk",2,0,70,2,30,30,"USA Today","Republican" +3,4,9867,"turk",3,0,99,2,1,1,"USA Today","Democrat" +3,4,9868,"turk",4,0,25,4,75,70,"USA Today","Democrat" +3,4,9872,"turk",4,0,1,5,99,99,"USA Today","Republican" +3,4,9875,"turk",2,0,25,5,75,75,"USA Today","Democrat" +3,4,9876,"turk",3,0,1,3,99,99,"USA Today","Democrat" +3,4,9879,"turk",3,0,40,4,60,60,"USA Today","Democrat" +3,4,9881,"turk",2,0,98,5,2,2,"USA Today","Democrat" +3,4,9882,"turk",4,0,50,2,50,31,"USA Today","Democrat" +3,4,9883,"turk",3,0,1,2,99,1,"USA Today","Republican" +3,4,9885,"turk",2,0,100,4,0,0,"USA Today","Democrat" +3,4,9891,"turk",2,0,1,3,99,99,"USA Today","Democrat" +3,4,9894,"turk",4,0,50,2,50,20,"USA Today","Democrat" +3,4,9895,"turk",4,0,80,5,20,1,"USA Today","Neither" +3,4,9897,"turk",4,0,65,4,35,35,"USA Today","Democrat" +3,4,9899,"turk",3,0,99,4,1,2,"USA Today","Democrat" +3,4,9905,"turk",4,0,1,3,99,99,"USA Today","Republican" +3,4,9907,"turk",4,0,50,4,50,30,"USA Today","Democrat" +3,4,9908,"turk",3,0,40,5,60,60,"USA Today","Democrat" +3,4,9909,"turk",4,0,10,4,90,90,"USA Today","Neither" +3,4,9913,"turk",2,0,20,4,80,70,"USA Today","Neither" +3,4,9915,"turk",2,0,99,3,1,1,"USA Today","Democrat" +3,4,9918,"turk",3,0,75,2,25,1,"USA Today","Democrat" +3,4,9920,"turk",2,0,0,4,100,100,"USA Today","Republican" +3,4,9921,"turk",2,0,50,3,50,50,"USA Today","Democrat" +3,4,9928,"turk",3,0,10,4,90,80,"USA Today","Democrat" +3,4,9931,"turk",3,0,50,5,50,50,"USA Today","Neither" +3,4,9936,"turk",2,0,60,5,40,60,"USA Today","Republican" +3,4,9938,"turk",3,0,25,4,75,50,"USA Today","Democrat" +3,4,9939,"turk",4,0,75,5,25,1,"USA Today","Republican" +3,4,9943,"turk",2,0,10,3,90,90,"USA Today","Republican" +3,4,9944,"turk",2,0,25,2,75,50,"USA Today","Democrat" +3,4,9946,"turk",2,0,10,5,90,50,"USA Today","Democrat" +3,4,9948,"turk",4,0,20,4,80,70,"USA Today","Republican" +3,4,9949,"turk",2,0,65,4,35,35,"USA Today","Neither" +3,4,9952,"turk",4,0,99,5,1,50,"USA Today","Democrat" +3,4,9954,"turk",3,0,20,2,80,70,"USA Today","Democrat" +3,4,9956,"turk",2,0,40,5,60,60,"USA Today","Democrat" +3,4,9957,"turk",2,0,1,2,99,1,"USA Today","Republican" +3,4,9958,"turk",3,0,15,5,85,85,"USA Today","Republican" +3,4,9961,"turk",2,0,99,3,1,1,"USA Today","Republican" +3,4,9963,"turk",4,0,25,4,75,75,"USA Today","Republican" +3,4,9966,"turk",4,0,99,3,1,1,"USA Today","Democrat" +3,4,9967,"turk",3,0,1,3,99,80,"USA Today","Neither" +3,4,9968,"turk",2,0,99,4,1,1,"USA Today","Democrat" +3,4,9969,"turk",2,0,1,5,99,99,"USA Today","Democrat" +3,4,9970,"turk",4,0,0,2,100,100,"USA Today","Republican" +3,4,9972,"turk",2,0,1,4,99,99,"USA Today","Democrat" +3,4,9974,"turk",3,0,55,3,45,30,"USA Today","Democrat" +3,4,9976,"turk",4,0,50,3,50,1,"USA Today","Republican" +3,4,9978,"turk",3,0,1,4,99,99,"USA Today","Republican" +3,4,9987,"turk",3,0,45,5,55,50,"USA Today","Democrat" +3,4,9990,"turk",2,0,99,4,1,1,"USA Today","Democrat" +3,4,10000,"turk",3,0,10,5,90,90,"USA Today","Democrat" +3,4,10003,"turk",3,0,50,2,50,50,"USA Today","Democrat" +3,4,10010,"turk",2,0,30,2,70,20,"USA Today","Democrat" +3,4,10012,"turk",2,0,20,3,80,70,"USA Today","Neither" +3,4,10015,"turk",4,0,30,2,70,70,"USA Today","Neither" +3,4,10016,"turk",3,0,1,3,99,99,"USA Today","Neither" +3,4,10018,"turk",3,0,0,3,100,85,"USA Today","Republican" +3,4,10019,"turk",4,0,90,4,10,10,"USA Today","Neither" +3,4,10021,"turk",4,0,20,3,80,70,"USA Today","Democrat" +3,4,10022,"turk",2,0,10,3,90,80,"USA Today","Neither" +3,4,10024,"turk",3,0,40,5,60,60,"USA Today","Republican" +3,4,10025,"turk",3,0,99,2,1,1,"USA Today","Democrat" +3,4,10026,"turk",3,0,1,5,99,99,"USA Today","Neither" +3,4,10029,"turk",3,0,30,2,70,100,"USA Today","Democrat" +3,4,10031,"turk",3,0,1,5,99,99,"USA Today","Neither" +3,4,10032,"turk",3,0,50,5,50,50,"USA Today","Democrat" +3,4,10033,"turk",3,0,0,2,100,0,"USA Today","Neither" +3,4,10036,"turk",2,0,1,2,99,50,"USA Today","Republican" +3,4,10037,"turk",4,0,35,4,65,60,"USA Today","Democrat" +3,4,10039,"turk",3,0,20,2,80,30,"USA Today","Democrat" +3,4,10045,"turk",3,0,45,2,55,25,"USA Today","Neither" +3,4,10047,"turk",4,0,60,3,40,50,"USA Today","Democrat" +3,4,10051,"turk",2,0,78,3,22,22,"USA Today","Democrat" +3,4,10052,"turk",3,0,100,2,0,0,"USA Today","Democrat" +3,4,10054,"turk",4,0,1,3,99,99,"USA Today","Democrat" +3,4,10061,"turk",2,0,45,2,55,98,"USA Today","Democrat" +3,4,10063,"turk",2,0,1,2,99,50,"USA Today","Republican" +3,4,10069,"turk",4,0,75,2,25,35,"USA Today","Republican" +3,4,10071,"turk",2,0,99,5,1,1,"USA Today","Republican" +3,4,10073,"turk",4,0,99,2,1,1,"USA Today","Neither" +3,4,10080,"turk",4,0,50,3,50,35,"USA Today","Republican" +3,4,10081,"turk",3,0,10,3,90,90,"USA Today","Democrat" +3,4,10083,"turk",4,0,50,3,50,50,"USA Today","Republican" +3,4,10087,"turk",4,0,64,2,36,24,"USA Today","Neither" +3,4,10089,"turk",2,0,1,4,99,99,"USA Today","Neither" +3,4,10092,"turk",3,0,1,3,99,50,"USA Today","Neither" +3,4,10093,"turk",2,0,1,2,99,1,"USA Today","Democrat" +3,4,10094,"turk",3,0,99,5,1,1,"USA Today","Democrat" +3,4,10097,"turk",4,0,1,4,99,99,"USA Today","Democrat" +3,4,10100,"turk",3,0,75,4,25,35,"USA Today","Democrat" +3,4,10101,"turk",4,0,1,3,99,99,"USA Today","Democrat" +3,4,10106,"turk",2,0,90,4,10,80,"USA Today","Democrat" +3,4,10108,"turk",3,0,30,4,70,50,"USA Today","Democrat" +3,4,10109,"turk",4,0,1,5,99,99,"USA Today","Democrat" +3,4,10110,"turk",4,0,20,5,80,30,"USA Today","Republican" +3,4,10111,"turk",4,0,25,2,75,1,"USA Today","Neither" +3,4,10114,"turk",4,0,1,2,99,1,"USA Today","Republican" +3,4,10115,"turk",3,0,51,4,49,49,"USA Today","Republican" +3,4,10122,"turk",4,0,70,2,30,60,"USA Today","Democrat" +3,4,10123,"turk",3,0,20,3,80,80,"USA Today","Republican" +3,4,10125,"turk",2,0,30,4,70,65,"USA Today","Democrat" +3,4,10126,"turk",2,0,99,2,1,1,"USA Today","Republican" +3,4,10130,"turk",4,0,30,2,70,80,"USA Today","Neither" +3,4,10132,"turk",2,0,22,4,78,78,"USA Today","Republican" +3,4,10133,"turk",2,0,1,5,99,99,"USA Today","Democrat" +3,4,10135,"turk",4,0,50,2,50,20,"USA Today","Democrat" +3,4,10138,"turk",2,0,65,2,35,15,"USA Today","Democrat" +3,4,10139,"turk",3,0,15,3,85,85,"USA Today","Republican" +3,4,10141,"turk",4,0,1,5,99,99,"USA Today","Republican" +3,4,10142,"turk",2,0,1,5,99,99,"USA Today","Republican" +3,4,10149,"turk",2,0,1,2,99,50,"USA Today","Republican" +3,4,10151,"turk",4,0,1,2,99,50,"USA Today","Democrat" +3,4,10152,"turk",4,0,25,3,75,75,"USA Today","Neither" +3,4,10153,"turk",3,0,30,5,70,50,"USA Today","Republican" +3,4,10161,"turk",4,0,10,4,90,90,"USA Today","Republican" +3,4,10164,"turk",4,0,50,2,50,50,"USA Today","Democrat" +3,4,10165,"turk",2,0,99,5,1,1,"USA Today","Democrat" +3,4,10169,"turk",3,0,20,5,80,60,"USA Today","Republican" +3,4,10170,"turk",2,0,0,5,100,100,"USA Today","Neither" +3,4,10174,"turk",2,0,100,2,0,0,"USA Today","Democrat" +3,4,10175,"turk",4,0,10,4,90,80,"USA Today","Neither" +3,4,10178,"turk",2,0,1,3,99,99,"USA Today","Democrat" +3,4,10183,"turk",3,0,1,2,99,50,"USA Today","" +3,4,10184,"turk",4,0,20,3,80,70,"USA Today","Republican" +3,4,10187,"turk",4,0,95,5,5,5,"USA Today","Democrat" +3,4,10190,"turk",4,0,99,5,1,1,"USA Today","Democrat" +3,4,10192,"turk",3,0,25,2,75,75,"USA Today","Republican" +3,4,10193,"turk",3,0,10,4,90,90,"USA Today","Democrat" +3,4,10195,"turk",3,0,10,4,90,90,"USA Today","Republican" +3,4,10199,"turk",3,0,5,3,95,50,"USA Today","Republican" +3,4,10200,"turk",3,0,5,5,95,95,"USA Today","Democrat" +3,4,10204,"turk",2,0,5,5,95,99,"USA Today","Democrat" +3,4,10209,"turk",2,0,99,2,1,1,"USA Today","Democrat" +3,4,10215,"turk",3,0,30,2,70,40,"USA Today","Democrat" +3,4,10216,"turk",3,0,99,3,1,1,"USA Today","Republican" +3,4,10218,"turk",2,0,1,4,99,99,"USA Today","Democrat" +3,4,10222,"turk",4,0,50,4,50,99,"USA Today","Neither" +3,4,10223,"turk",4,0,50,3,50,20,"USA Today","Democrat" +3,4,10225,"turk",4,0,1,3,99,94,"USA Today","Republican" +3,4,10232,"turk",2,0,1,4,99,99,"USA Today","Democrat" +3,4,10235,"turk",3,0,1,5,99,98,"USA Today","Republican" +3,4,10237,"turk",4,0,30,4,70,70,"USA Today","Democrat" +3,4,10239,"turk",2,0,90,2,10,10,"USA Today","Republican" +3,4,10241,"turk",2,0,1,2,99,1,"USA Today","Democrat" +3,4,10242,"turk",2,0,10,4,90,20,"USA Today","Republican" +3,4,10243,"turk",2,0,50,2,50,1,"USA Today","Republican" +3,4,10245,"turk",2,0,99,3,1,1,"USA Today","Neither" +3,4,10246,"turk",3,0,5,4,95,50,"USA Today","Democrat" +3,4,10247,"turk",2,0,1,5,99,99,"USA Today","Democrat" +3,4,10257,"turk",2,0,99,4,1,1,"USA Today","Democrat" +3,4,10260,"turk",3,0,99,4,1,1,"USA Today","Neither" +3,4,10261,"turk",3,0,1,2,99,99,"USA Today","Neither" +3,4,10264,"turk",4,0,10,4,90,75,"USA Today","Neither" +3,4,10268,"turk",2,0,5,5,95,95,"USA Today","Democrat" +3,4,10270,"turk",3,0,99,3,1,1,"USA Today","Republican" +3,4,10275,"turk",3,0,99,3,1,99,"USA Today","Democrat" +3,4,10283,"turk",4,0,30,3,70,60,"USA Today","Republican" +3,4,10284,"turk",4,0,1,5,99,50,"USA Today","Democrat" +3,4,10289,"turk",4,0,99,2,1,99,"USA Today","Republican" +3,4,10295,"turk",3,0,2,4,98,90,"USA Today","Democrat" +3,4,10297,"turk",4,0,69,3,31,20,"USA Today","Democrat" +3,4,10298,"turk",2,0,0,3,100,95,"USA Today","Neither" +3,4,10299,"turk",3,0,0,5,100,100,"USA Today","Republican" +3,4,10300,"turk",2,0,70,5,30,30,"USA Today","Democrat" +3,4,10301,"turk",4,0,50,2,50,35,"USA Today","Democrat" +3,4,10302,"turk",2,0,50,3,50,25,"USA Today","Republican" +3,4,10303,"turk",2,0,30,3,70,60,"USA Today","Democrat" +3,4,10309,"turk",4,0,20,3,80,80,"USA Today","Republican" +3,4,10311,"turk",4,0,100,5,0,0,"USA Today","Democrat" +3,4,10312,"turk",2,0,99,4,1,1,"USA Today","Democrat" +3,4,10313,"turk",4,0,60,2,40,50,"USA Today","Democrat" +3,4,10319,"turk",2,0,99,4,1,1,"USA Today","Neither" +3,4,10322,"turk",4,0,1,4,99,95,"USA Today","Republican" +3,4,10324,"turk",2,0,20,4,80,50,"USA Today","Neither" +3,4,10327,"turk",3,0,89,4,11,50,"USA Today","Democrat" +3,4,10328,"turk",4,0,1,2,99,99,"USA Today","Neither" +3,4,10329,"turk",2,0,50,2,50,99,"USA Today","Republican" +3,4,10330,"turk",3,0,15,4,85,80,"USA Today","Democrat" +3,4,10332,"turk",3,0,99,2,1,1,"USA Today","Democrat" +3,4,10334,"turk",3,0,1,3,99,99,"USA Today","Neither" +3,4,10335,"turk",3,0,75,4,25,30,"USA Today","Democrat" +3,4,10336,"turk",4,0,20,2,80,30,"USA Today","Neither" +3,4,10345,"turk",4,0,1,5,99,1,"USA Today","Republican" +3,4,10348,"turk",3,0,5,3,95,75,"USA Today","Democrat" +3,4,10349,"turk",3,0,1,2,99,35,"USA Today","Republican" +3,4,10355,"turk",2,0,50,3,50,30,"USA Today","Neither" +3,4,10370,"turk",3,0,25,5,75,50,"USA Today","Neither" +3,4,10371,"turk",2,0,1,4,99,99,"USA Today","Democrat" +3,4,10372,"turk",2,0,60,5,40,25,"USA Today","Neither" +3,4,10373,"turk",4,0,70,5,30,15,"USA Today","Neither" +3,4,10378,"turk",4,0,0,2,100,50,"USA Today","Neither" +3,4,10379,"turk",3,0,89,2,11,1,"USA Today","Democrat" +3,4,10381,"turk",3,0,0,3,100,65,"USA Today","Democrat" +3,4,10382,"turk",2,0,99,4,1,99,"USA Today","Democrat" +3,4,10383,"turk",3,0,45,4,55,42,"USA Today","Democrat" +3,4,10384,"turk",4,0,90,5,10,40,"USA Today","Democrat" +3,4,10387,"turk",4,0,90,3,10,5,"USA Today","Democrat" +3,4,10390,"turk",3,0,87,2,13,13,"USA Today","Democrat" +3,4,10395,"turk",3,0,1,2,99,99,"USA Today","Neither" +3,4,10397,"turk",4,0,1,4,99,99,"USA Today","Neither" +3,4,10398,"turk",2,0,60,3,40,20,"USA Today","Republican" +3,4,10399,"turk",4,0,1,4,99,95,"USA Today","Democrat" +3,4,10400,"turk",2,0,0,3,100,100,"USA Today","Neither" +3,4,10403,"turk",2,0,30,2,70,30,"USA Today","Republican" +3,4,10405,"turk",3,0,65,2,35,40,"USA Today","Democrat" +3,4,10409,"turk",4,0,1,4,99,99,"USA Today","Republican" +3,4,10410,"turk",4,0,99,3,1,97,"USA Today","Democrat" +3,4,10411,"turk",3,0,20,4,80,70,"USA Today","Republican" +3,4,10420,"turk",3,0,1,2,99,99,"USA Today","Republican" +3,4,10423,"turk",2,0,50,5,50,45,"USA Today","Neither" +3,4,10424,"turk",4,0,99,5,1,99,"USA Today","Republican" +3,4,10426,"turk",2,0,99,4,1,1,"USA Today","Republican" +3,4,10427,"turk",2,0,1,2,99,12,"USA Today","Republican" +3,4,10431,"turk",2,0,0,5,100,100,"USA Today","Republican" +3,4,10437,"turk",2,0,40,5,60,60,"USA Today","Democrat" +3,4,10438,"turk",3,0,40,2,60,40,"USA Today","Republican" +3,4,10439,"turk",3,0,1,2,99,60,"USA Today","Neither" +3,4,10440,"turk",4,0,79,4,21,76,"USA Today","Democrat" +3,4,10442,"turk",3,0,50,2,50,50,"USA Today","Neither" +3,4,10444,"turk",3,0,1,3,99,99,"USA Today","Republican" +3,4,10445,"turk",3,0,50,2,50,30,"USA Today","Democrat" +3,4,10447,"turk",2,0,99,3,1,1,"USA Today","Neither" +3,4,10450,"turk",4,0,90,3,10,5,"USA Today","Democrat" +3,4,10452,"turk",4,0,1,5,99,99,"USA Today","Neither" +3,4,10459,"turk",2,0,1,5,99,25,"USA Today","Democrat" +3,4,10460,"turk",3,0,1,3,99,99,"USA Today","Democrat" +3,4,10462,"turk",4,0,1,2,99,99,"USA Today","Republican" +3,4,10463,"turk",2,0,50,2,50,50,"USA Today","Republican" +3,4,10465,"turk",4,0,0,2,100,100,"USA Today","Democrat" +3,4,10469,"turk",2,0,1,4,99,99,"USA Today","Neither" +3,4,10470,"turk",3,0,50,4,50,99,"USA Today","Democrat" +3,4,10471,"turk",2,0,1,5,99,99,"USA Today","Democrat" +3,4,10472,"turk",2,0,15,5,85,75,"USA Today","Republican" +3,4,10481,"turk",4,0,20,3,80,70,"USA Today","Neither" +3,4,10482,"turk",2,0,65,4,35,25,"USA Today","Republican" +3,4,10484,"turk",3,0,10,4,90,100,"USA Today","Democrat" +3,4,10485,"turk",2,0,99,3,1,1,"USA Today","Democrat" +3,4,10487,"turk",2,0,20,4,80,60,"USA Today","Democrat" +3,4,10490,"turk",3,0,70,5,30,20,"USA Today","Democrat" +3,4,10492,"turk",2,0,20,3,80,70,"USA Today","Democrat" +3,4,10494,"turk",2,0,80,2,20,40,"USA Today","Republican" +3,4,10496,"turk",4,0,20,3,80,75,"USA Today","Republican" +3,4,10498,"turk",3,0,40,4,60,50,"USA Today","Republican" +3,4,10500,"turk",3,0,1,4,99,99,"USA Today","Neither" +3,4,10501,"turk",4,0,0,4,100,100,"USA Today","Democrat" +3,4,10504,"turk",4,0,7,4,93,91,"USA Today","Democrat" +3,4,10508,"turk",3,0,87,5,13,12,"USA Today","Democrat" +3,4,10509,"turk",3,0,50,4,50,50,"USA Today","Democrat" +3,4,10510,"turk",4,0,20,5,80,70,"USA Today","Democrat" +3,4,10513,"turk",4,0,99,4,1,50,"USA Today","Republican" +3,4,10514,"turk",3,0,1,3,99,99,"USA Today","Democrat" +3,4,10516,"turk",3,0,50,3,50,50,"USA Today","Democrat" +3,4,10518,"turk",4,0,1,4,99,99,"USA Today","Republican" +3,4,10523,"turk",4,0,12,4,88,78,"USA Today","Democrat" +3,4,10527,"turk",2,0,10,3,90,68,"USA Today","Democrat" +3,4,10530,"turk",3,0,1,2,99,1,"USA Today","Democrat" +3,4,10531,"turk",2,0,0,2,100,12,"USA Today","Neither" +3,4,9745,"turk",4,1,90,3,90,80,"USA Today","Republican" +3,4,9746,"turk",4,1,99,4,99,99,"USA Today","Neither" +3,4,9747,"turk",4,1,90,3,90,90,"USA Today","Neither" +3,4,9748,"turk",4,1,80,4,80,80,"USA Today","Democrat" +3,4,9749,"turk",4,1,100,5,100,100,"USA Today","Democrat" +3,4,9751,"turk",4,1,99,4,99,99,"USA Today","Democrat" +3,4,9755,"turk",2,1,80,4,80,80,"USA Today","Republican" +3,4,9758,"turk",3,1,100,5,100,100,"USA Today","Neither" +3,4,9759,"turk",4,1,95,4,95,95,"USA Today","Republican" +3,4,9760,"turk",4,1,80,4,80,75,"USA Today","Neither" +3,4,9761,"turk",4,1,15,4,15,20,"USA Today","Democrat" +3,4,9762,"turk",4,1,10,3,10,30,"USA Today","Neither" +3,4,9766,"turk",2,1,85,2,85,45,"USA Today","Democrat" +3,4,9768,"turk",4,1,40,2,40,50,"USA Today","Democrat" +3,4,9770,"turk",2,1,75,2,75,35,"USA Today","Democrat" +3,4,9773,"turk",3,1,99,5,99,100,"USA Today","Democrat" +3,4,9775,"turk",4,1,15,4,15,15,"USA Today","Neither" +3,4,9776,"turk",2,1,99,5,99,99,"USA Today","Neither" +3,4,9780,"turk",3,1,99,4,99,99,"USA Today","Republican" +3,4,9781,"turk",4,1,60,2,60,50,"USA Today","Neither" +3,4,9786,"turk",2,1,50,3,50,30,"USA Today","Democrat" +3,4,9787,"turk",4,1,10,4,10,25,"USA Today","Democrat" +3,4,9790,"turk",2,1,99,5,99,99,"USA Today","Neither" +3,4,9792,"turk",3,1,65,5,65,70,"USA Today","Republican" +3,4,9793,"turk",4,1,25,4,25,50,"USA Today","Neither" +3,4,9794,"turk",3,1,20,3,20,20,"USA Today","Democrat" +3,4,9795,"turk",4,1,80,4,80,95,"USA Today","Republican" +3,4,9797,"turk",4,1,90,4,90,80,"USA Today","Republican" +3,4,9799,"turk",2,1,99,4,99,99,"USA Today","Democrat" +3,4,9803,"turk",4,1,1,3,1,1,"USA Today","Democrat" +3,4,9804,"turk",4,1,57,3,57,89,"USA Today","Republican" +3,4,9806,"turk",3,1,80,4,80,14,"USA Today","Neither" +3,4,9822,"turk",4,1,75,2,75,70,"USA Today","Democrat" +3,4,9825,"turk",2,1,50,3,50,1,"USA Today","Neither" +3,4,9830,"turk",2,1,50,5,50,50,"USA Today","Republican" +3,4,9832,"turk",4,1,99,5,99,99,"USA Today","Republican" +3,4,9833,"turk",2,1,75,3,75,99,"USA Today","Democrat" +3,4,9835,"turk",2,1,99,3,99,99,"USA Today","Democrat" +3,4,9836,"turk",4,1,40,2,40,50,"USA Today","Democrat" +3,4,9837,"turk",3,1,1,3,1,1,"USA Today","Republican" +3,4,9838,"turk",4,1,99,2,99,78,"USA Today","Democrat" +3,4,9839,"turk",2,1,99,2,99,50,"USA Today","Democrat" +3,4,9840,"turk",3,1,10,5,10,10,"USA Today","Democrat" +3,4,9842,"turk",4,1,60,5,60,70,"USA Today","Democrat" +3,4,9843,"turk",4,1,1,3,1,99,"USA Today","Neither" +3,4,9851,"turk",3,1,99,3,99,99,"USA Today","Democrat" +3,4,9852,"turk",4,1,75,2,75,75,"USA Today","Democrat" +3,4,9853,"turk",2,1,85,5,85,45,"USA Today","Neither" +3,4,9855,"turk",3,1,1,5,1,15,"USA Today","Neither" +3,4,9856,"turk",4,1,1,4,1,2,"USA Today","Republican" +3,4,9861,"turk",4,1,1,3,1,1,"USA Today","Neither" +3,4,9862,"turk",4,1,85,2,85,85,"USA Today","Democrat" +3,4,9863,"turk",2,1,20,5,20,20,"USA Today","Neither" +3,4,9864,"turk",4,1,1,5,1,1,"USA Today","Republican" +3,4,9865,"turk",4,1,50,4,50,50,"USA Today","Neither" +3,4,9869,"turk",3,1,60,2,60,50,"USA Today","Republican" +3,4,9870,"turk",4,1,75,3,75,75,"USA Today","Democrat" +3,4,9871,"turk",2,1,99,5,99,96,"USA Today","Republican" +3,4,9873,"turk",4,1,98,4,98,80,"USA Today","Democrat" +3,4,9874,"turk",3,1,60,4,60,55,"USA Today","Democrat" +3,4,9877,"turk",3,1,25,3,25,25,"USA Today","Neither" +3,4,9884,"turk",2,1,50,2,50,20,"USA Today","Republican" +3,4,9886,"turk",3,1,99,5,99,0,"USA Today","Republican" +3,4,9888,"turk",2,1,99,4,99,99,"USA Today","Republican" +3,4,9890,"turk",2,1,78,2,78,45,"USA Today","Republican" +3,4,9892,"turk",3,1,65,4,65,65,"USA Today","Democrat" +3,4,9893,"turk",4,1,99,3,99,99,"USA Today","Democrat" +3,4,9898,"turk",3,1,1,2,1,1,"USA Today","Republican" +3,4,9900,"turk",4,1,66,4,66,22,"USA Today","Democrat" +3,4,9901,"turk",3,1,90,5,90,85,"USA Today","Republican" +3,4,9902,"turk",2,1,70,2,70,30,"USA Today","Democrat" +3,4,9903,"turk",2,1,70,2,70,50,"USA Today","Democrat" +3,4,9904,"turk",3,1,90,4,90,90,"USA Today","Democrat" +3,4,9906,"turk",2,1,0,2,0,0,"USA Today","Democrat" +3,4,9911,"turk",4,1,20,2,20,30,"USA Today","Democrat" +3,4,9912,"turk",4,1,99,5,99,99,"USA Today","Democrat" +3,4,9916,"turk",3,1,0,3,0,1,"USA Today","Republican" +3,4,9917,"turk",4,1,80,3,80,80,"USA Today","Neither" +3,4,9919,"turk",4,1,99,5,99,99,"USA Today","Democrat" +3,4,9923,"turk",2,1,99,4,99,99,"USA Today","Neither" +3,4,9926,"turk",2,1,50,5,50,50,"USA Today","Republican" +3,4,9927,"turk",2,1,75,3,75,25,"USA Today","Republican" +3,4,9929,"turk",3,1,50,2,50,10,"USA Today","Neither" +3,4,9930,"turk",3,1,80,2,80,60,"USA Today","Democrat" +3,4,9933,"turk",2,1,99,4,99,99,"USA Today","Republican" +3,4,9935,"turk",3,1,85,5,85,85,"USA Today","Neither" +3,4,9937,"turk",4,1,99,3,99,99,"USA Today","Democrat" +3,4,9940,"turk",4,1,85,4,85,75,"USA Today","Democrat" +3,4,9941,"turk",4,1,85,5,85,85,"USA Today","Republican" +3,4,9942,"turk",2,1,1,3,1,1,"USA Today","Democrat" +3,4,9945,"turk",4,1,1,3,1,1,"USA Today","Democrat" +3,4,9950,"turk",4,1,50,3,50,50,"USA Today","Democrat" +3,4,9951,"turk",3,1,1,2,1,1,"USA Today","Republican" +3,4,9955,"turk",3,1,1,3,1,1,"USA Today","Republican" +3,4,9959,"turk",2,1,70,2,70,99,"USA Today","Democrat" +3,4,9960,"turk",4,1,20,5,20,99,"USA Today","Democrat" +3,4,9962,"turk",3,1,99,5,99,99,"USA Today","Democrat" +3,4,9965,"turk",2,1,60,4,60,60,"USA Today","Democrat" +3,4,9975,"turk",3,1,2,4,2,2,"USA Today","Democrat" +3,4,9984,"turk",3,1,99,4,99,99,"USA Today","Democrat" +3,4,9986,"turk",4,1,30,2,30,20,"USA Today","Democrat" +3,4,9988,"turk",2,1,99,5,99,99,"USA Today","Democrat" +3,4,9989,"turk",3,1,30,2,30,70,"USA Today","Democrat" +3,4,9993,"turk",4,1,40,3,40,20,"USA Today","Neither" +3,4,9995,"turk",3,1,95,5,95,40,"USA Today","Republican" +3,4,9996,"turk",4,1,80,5,80,80,"USA Today","Democrat" +3,4,9998,"turk",3,1,99,3,99,25,"USA Today","Democrat" +3,4,10002,"turk",4,1,20,4,20,10,"USA Today","Democrat" +3,4,10004,"turk",4,1,99,2,99,99,"USA Today","Democrat" +3,4,10005,"turk",4,1,85,3,85,80,"USA Today","Republican" +3,4,10007,"turk",4,1,80,3,80,90,"USA Today","Republican" +3,4,10009,"turk",4,1,99,2,99,99,"USA Today","Republican" +3,4,10011,"turk",4,1,50,2,50,10,"USA Today","Democrat" +3,4,10013,"turk",3,1,99,3,99,99,"USA Today","Democrat" +3,4,10014,"turk",4,1,99,4,99,99,"USA Today","Republican" +3,4,10020,"turk",2,1,75,2,75,50,"USA Today","Democrat" +3,4,10027,"turk",4,1,90,5,90,90,"USA Today","Republican" +3,4,10034,"turk",2,1,50,4,50,70,"USA Today","Neither" +3,4,10035,"turk",2,1,40,5,40,30,"USA Today","Democrat" +3,4,10038,"turk",3,1,1,4,1,99,"USA Today","Democrat" +3,4,10041,"turk",3,1,1,4,1,1,"USA Today","Republican" +3,4,10046,"turk",4,1,60,2,60,50,"USA Today","Neither" +3,4,10048,"turk",2,1,80,2,80,80,"USA Today","Democrat" +3,4,10055,"turk",3,1,10,3,10,25,"USA Today","Republican" +3,4,10060,"turk",2,1,40,2,40,30,"USA Today","Democrat" +3,4,10067,"turk",3,1,99,2,99,99,"USA Today","Democrat" +3,4,10068,"turk",3,1,1,3,1,1,"USA Today","Democrat" +3,4,10070,"turk",3,1,1,3,1,1,"USA Today","Democrat" +3,4,10072,"turk",3,1,80,4,80,80,"USA Today","Democrat" +3,4,10074,"turk",2,1,20,2,20,50,"USA Today","Democrat" +3,4,10075,"turk",4,1,99,4,99,99,"USA Today","Democrat" +3,4,10076,"turk",3,1,99,3,99,99,"USA Today","Neither" +3,4,10077,"turk",3,1,70,5,70,65,"USA Today","Democrat" +3,4,10079,"turk",3,1,90,3,90,80,"USA Today","Republican" +3,4,10084,"turk",3,1,99,4,99,75,"USA Today","Neither" +3,4,10085,"turk",2,1,80,2,80,50,"USA Today","Neither" +3,4,10090,"turk",2,1,60,2,60,75,"USA Today","Democrat" +3,4,10095,"turk",3,1,80,4,80,70,"USA Today","Democrat" +3,4,10096,"turk",4,1,99,4,99,50,"USA Today","Democrat" +3,4,10098,"turk",2,1,51,4,51,5,"USA Today","Neither" +3,4,10099,"turk",2,1,70,2,70,20,"USA Today","Democrat" +3,4,10103,"turk",3,1,95,5,95,95,"USA Today","Democrat" +3,4,10104,"turk",3,1,95,5,95,95,"USA Today","Democrat" +3,4,10105,"turk",3,1,30,5,30,30,"USA Today","Democrat" +3,4,10112,"turk",2,1,55,3,55,45,"USA Today","Democrat" +3,4,10113,"turk",4,1,99,2,99,99,"USA Today","Republican" +3,4,10116,"turk",4,1,100,2,100,20,"USA Today","Democrat" +3,4,10117,"turk",2,1,75,2,75,50,"USA Today","Democrat" +3,4,10119,"turk",2,1,99,4,99,99,"USA Today","Neither" +3,4,10120,"turk",3,1,75,3,75,75,"USA Today","Republican" +3,4,10121,"turk",4,1,25,3,25,25,"USA Today","Neither" +3,4,10124,"turk",4,1,99,3,99,99,"USA Today","Republican" +3,4,10127,"turk",3,1,99,3,99,1,"USA Today","Republican" +3,4,10131,"turk",2,1,50,5,50,50,"USA Today","Republican" +3,4,10134,"turk",4,1,85,4,85,80,"USA Today","Republican" +3,4,10136,"turk",4,1,40,2,40,50,"USA Today","Democrat" +3,4,10140,"turk",4,1,50,5,50,30,"USA Today","Democrat" +3,4,10144,"turk",4,1,70,2,70,50,"USA Today","Democrat" +3,4,10145,"turk",2,1,90,4,90,70,"USA Today","Democrat" +3,4,10146,"turk",4,1,99,4,99,1,"USA Today","Democrat" +3,4,10150,"turk",2,1,99,3,99,99,"USA Today","Democrat" +3,4,10154,"turk",3,1,1,4,1,10,"USA Today","Democrat" +3,4,10155,"turk",3,1,99,3,99,1,"USA Today","Republican" +3,4,10157,"turk",4,1,90,4,90,85,"USA Today","Democrat" +3,4,10158,"turk",2,1,52,4,52,52,"USA Today","Democrat" +3,4,10159,"turk",2,1,35,5,35,10,"USA Today","Republican" +3,4,10160,"turk",2,1,99,2,99,99,"USA Today","Democrat" +3,4,10168,"turk",2,1,60,3,60,60,"USA Today","Democrat" +3,4,10171,"turk",3,1,80,3,80,70,"USA Today","Democrat" +3,4,10172,"turk",3,1,1,3,1,1,"USA Today","Republican" +3,4,10176,"turk",4,1,70,4,70,70,"USA Today","Democrat" +3,4,10177,"turk",2,1,99,2,99,90,"USA Today","Democrat" +3,4,10185,"turk",2,1,1,5,1,1,"USA Today","Republican" +3,4,10189,"turk",3,1,0,4,0,99,"USA Today","Democrat" +3,4,10191,"turk",4,1,10,4,10,20,"USA Today","Democrat" +3,4,10194,"turk",4,1,99,4,99,99,"USA Today","Democrat" +3,4,10197,"turk",4,1,95,3,95,95,"USA Today","Democrat" +3,4,10202,"turk",4,1,50,2,50,99,"USA Today","Neither" +3,4,10203,"turk",3,1,50,4,50,60,"USA Today","Republican" +3,4,10205,"turk",4,1,50,2,50,40,"USA Today","Democrat" +3,4,10206,"turk",2,1,88,3,88,5,"USA Today","Democrat" +3,4,10207,"turk",3,1,99,4,99,80,"USA Today","Republican" +3,4,10210,"turk",3,1,90,3,90,70,"USA Today","Republican" +3,4,10213,"turk",4,1,70,5,70,70,"USA Today","Republican" +3,4,10219,"turk",4,1,100,5,100,100,"USA Today","Democrat" +3,4,10220,"turk",3,1,99,4,99,1,"USA Today","Republican" +3,4,10221,"turk",2,1,60,4,60,65,"USA Today","Democrat" +3,4,10224,"turk",2,1,1,5,1,0,"USA Today","Democrat" +3,4,10226,"turk",4,1,99,4,99,99,"USA Today","Republican" +3,4,10227,"turk",2,1,95,3,95,90,"USA Today","Republican" +3,4,10229,"turk",3,1,99,5,99,99,"USA Today","Democrat" +3,4,10230,"turk",3,1,56,2,56,1,"USA Today","Neither" +3,4,10231,"turk",3,1,1,4,1,1,"USA Today","Democrat" +3,4,10234,"turk",4,1,50,4,50,30,"USA Today","Republican" +3,4,10236,"turk",2,1,30,3,30,40,"USA Today","Democrat" +3,4,10238,"turk",3,1,40,2,40,50,"USA Today","Democrat" +3,4,10250,"turk",3,1,43,3,43,23,"USA Today","Democrat" +3,4,10251,"turk",4,1,99,3,99,99,"USA Today","Democrat" +3,4,10252,"turk",2,1,80,2,80,80,"USA Today","Republican" +3,4,10253,"turk",2,1,5,5,5,10,"USA Today","Democrat" +3,4,10254,"turk",2,1,95,2,95,95,"USA Today","Democrat" +3,4,10255,"turk",4,1,40,4,40,40,"USA Today","Democrat" +3,4,10256,"turk",3,1,50,3,50,99,"USA Today","Neither" +3,4,10258,"turk",3,1,75,4,75,50,"USA Today","Neither" +3,4,10262,"turk",4,1,90,4,90,90,"USA Today","Democrat" +3,4,10263,"turk",2,1,99,4,99,99,"USA Today","Republican" +3,4,10265,"turk",3,1,99,4,99,99,"USA Today","Republican" +3,4,10266,"turk",3,1,90,2,90,90,"USA Today","Republican" +3,4,10267,"turk",4,1,50,2,50,1,"USA Today","Democrat" +3,4,10269,"turk",3,1,NA,5,NA,99,"USA Today","Democrat" +3,4,10272,"turk",4,1,25,2,25,45,"USA Today","Democrat" +3,4,10273,"turk",3,1,80,3,80,75,"USA Today","Democrat" +3,4,10274,"turk",2,1,99,5,99,99,"USA Today","Republican" +3,4,10279,"turk",3,1,90,5,90,70,"USA Today","Democrat" +3,4,10280,"turk",3,1,99,5,99,99,"USA Today","Republican" +3,4,10282,"turk",3,1,60,2,60,65,"USA Today","Neither" +3,4,10285,"turk",3,1,75,2,75,75,"USA Today","Republican" +3,4,10286,"turk",2,1,99,5,99,99,"USA Today","Republican" +3,4,10290,"turk",3,1,99,2,99,70,"USA Today","Neither" +3,4,10291,"turk",4,1,10,4,10,5,"USA Today","Neither" +3,4,10292,"turk",2,1,20,4,20,99,"USA Today","Democrat" +3,4,10294,"turk",4,1,70,4,70,50,"USA Today","Democrat" +3,4,10305,"turk",2,1,99,3,99,1,"USA Today","Democrat" +3,4,10306,"turk",3,1,25,3,25,30,"USA Today","Democrat" +3,4,10308,"turk",2,1,90,4,90,90,"USA Today","Democrat" +3,4,10310,"turk",2,1,70,5,70,70,"USA Today","Republican" +3,4,10315,"turk",4,1,99,5,99,99,"USA Today","Republican" +3,4,10316,"turk",3,1,50,4,50,1,"USA Today","Neither" +3,4,10317,"turk",2,1,30,3,30,20,"USA Today","Democrat" +3,4,10320,"turk",2,1,1,3,1,1,"USA Today","Republican" +3,4,10325,"turk",2,1,99,2,99,99,"USA Today","Democrat" +3,4,10326,"turk",4,1,1,3,1,1,"USA Today","Republican" +3,4,10331,"turk",2,1,90,5,90,90,"USA Today","Democrat" +3,4,10333,"turk",2,1,75,2,75,25,"USA Today","Neither" +3,4,10337,"turk",4,1,3,3,3,1,"USA Today","Democrat" +3,4,10339,"turk",2,1,99,2,99,99,"USA Today","Democrat" +3,4,10340,"turk",3,1,70,2,70,60,"USA Today","Neither" +3,4,10341,"turk",2,1,30,4,30,30,"USA Today","Democrat" +3,4,10342,"turk",3,1,30,3,30,50,"USA Today","Democrat" +3,4,10343,"turk",2,1,75,2,75,60,"USA Today","Republican" +3,4,10344,"turk",4,1,85,4,85,80,"USA Today","Neither" +3,4,10350,"turk",4,1,99,4,99,80,"USA Today","Democrat" +3,4,10352,"turk",2,1,80,5,80,75,"USA Today","Democrat" +3,4,10357,"turk",4,1,60,4,60,90,"USA Today","Democrat" +3,4,10358,"turk",4,1,75,4,75,25,"USA Today","Republican" +3,4,10360,"turk",2,1,1,2,1,99,"USA Today","Democrat" +3,4,10361,"turk",4,1,99,5,99,99,"USA Today","Neither" +3,4,10363,"turk",2,1,50,4,50,50,"USA Today","Republican" +3,4,10364,"turk",2,1,99,5,99,50,"USA Today","Democrat" +3,4,10367,"turk",3,1,70,4,70,70,"USA Today","Republican" +3,4,10369,"turk",2,1,99,2,99,50,"USA Today","Republican" +3,4,10374,"turk",2,1,80,4,80,98,"USA Today","Democrat" +3,4,10375,"turk",4,1,5,5,5,3,"USA Today","Democrat" +3,4,10376,"turk",4,1,99,4,99,99,"USA Today","Republican" +3,4,10377,"turk",3,1,1,2,1,1,"USA Today","Democrat" +3,4,10380,"turk",2,1,70,5,70,70,"USA Today","Republican" +3,4,10388,"turk",4,1,100,5,100,90,"USA Today","Neither" +3,4,10389,"turk",4,1,35,5,35,35,"USA Today","Neither" +3,4,10392,"turk",3,1,1,5,1,1,"USA Today","Democrat" +3,4,10393,"turk",2,1,90,2,90,85,"USA Today","Democrat" +3,4,10396,"turk",2,1,32,4,32,50,"USA Today","Republican" +3,4,10401,"turk",4,1,50,4,50,50,"USA Today","Republican" +3,4,10406,"turk",2,1,1,2,1,1,"USA Today","Democrat" +3,4,10412,"turk",2,1,55,5,55,85,"USA Today","Democrat" +3,4,10413,"turk",4,1,90,5,90,85,"USA Today","Republican" +3,4,10414,"turk",3,1,50,4,50,1,"USA Today","Neither" +3,4,10415,"turk",4,1,98,5,98,96,"USA Today","Democrat" +3,4,10417,"turk",4,1,30,5,30,30,"USA Today","Neither" +3,4,10418,"turk",3,1,20,3,20,20,"USA Today","Democrat" +3,4,10419,"turk",2,1,75,4,75,99,"USA Today","Neither" +3,4,10421,"turk",4,1,1,2,1,1,"USA Today","Democrat" +3,4,10422,"turk",3,1,99,5,99,99,"USA Today","Democrat" +3,4,10425,"turk",2,1,99,2,99,99,"USA Today","Democrat" +3,4,10428,"turk",2,1,80,2,80,65,"USA Today","Republican" +3,4,10429,"turk",4,1,90,2,90,75,"USA Today","Democrat" +3,4,10432,"turk",4,1,85,4,85,85,"USA Today","Democrat" +3,4,10433,"turk",3,1,99,5,99,99,"USA Today","Democrat" +3,4,10435,"turk",3,1,5,3,5,1,"USA Today","Democrat" +3,4,10436,"turk",3,1,99,4,99,99,"USA Today","Democrat" +3,4,10441,"turk",3,1,80,3,80,80,"USA Today","Democrat" +3,4,10446,"turk",4,1,65,4,65,40,"USA Today","Democrat" +3,4,10448,"turk",3,1,80,2,80,99,"USA Today","Republican" +3,4,10449,"turk",4,1,99,5,99,99,"USA Today","Democrat" +3,4,10451,"turk",4,1,80,3,80,75,"USA Today","Republican" +3,4,10454,"turk",3,1,99,3,99,99,"USA Today","Democrat" +3,4,10455,"turk",2,1,99,3,99,50,"USA Today","Democrat" +3,4,10456,"turk",2,1,1,4,1,1,"USA Today","Democrat" +3,4,10457,"turk",3,1,90,4,90,90,"USA Today","Republican" +3,4,10458,"turk",2,1,55,2,55,55,"USA Today","Republican" +3,4,10466,"turk",4,1,85,3,85,80,"USA Today","Neither" +3,4,10467,"turk",2,1,99,5,99,1,"USA Today","Neither" +3,4,10468,"turk",2,1,20,4,20,20,"USA Today","Democrat" +3,4,10473,"turk",3,1,1,5,1,1,"USA Today","Democrat" +3,4,10474,"turk",4,1,80,4,80,78,"USA Today","Democrat" +3,4,10475,"turk",4,1,99,4,99,99,"USA Today","Democrat" +3,4,10478,"turk",3,1,85,3,85,80,"USA Today","Neither" +3,4,10489,"turk",3,1,79,4,79,70,"USA Today","Democrat" +3,4,10495,"turk",2,1,15,3,15,15,"USA Today","Neither" +3,4,10497,"turk",4,1,99,4,99,1,"USA Today","Democrat" +3,4,10502,"turk",3,1,30,2,30,10,"USA Today","Democrat" +3,4,10503,"turk",3,1,99,2,99,1,"USA Today","Democrat" +3,4,10505,"turk",3,1,30,4,30,80,"USA Today","Republican" +3,4,10506,"turk",2,1,99,5,99,99,"USA Today","Democrat" +3,4,10507,"turk",2,1,99,2,99,40,"USA Today","Democrat" +3,4,10511,"turk",4,1,100,3,100,60,"USA Today","Democrat" +3,4,10512,"turk",3,1,25,5,25,25,"USA Today","Democrat" +3,4,10517,"turk",2,1,99,2,99,50,"USA Today","Republican" +3,4,10522,"turk",2,1,40,4,40,10,"USA Today","Republican" +3,4,10526,"turk",2,1,0,3,0,60,"USA Today","Neither" +3,4,10528,"turk",2,1,99,2,99,99,"USA Today","Neither" +3,4,10532,"turk",4,1,45,5,45,25,"USA Today","Democrat" +3,4,10533,"turk",3,1,99,3,99,90,"USA Today","Democrat" +3,4,10534,"turk",4,1,92,3,92,91,"USA Today","Republican" +3,4,10535,"turk",3,1,80,4,80,80,"USA Today","Republican" +4,NA,51,"tess",2,0,38,1,62,NA,NA,"Neither" +4,NA,53,"tess",1,0,89,1,11,NA,NA,"Democrat" +4,NA,62,"tess",2,1,5,1,5,NA,NA,"Democrat" +4,NA,64,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,68,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,69,"tess",3,1,50,1,50,NA,NA,"Neither" +4,NA,70,"tess",4,1,85,1,85,NA,NA,"Republican" +4,NA,72,"tess",3,1,96,1,96,NA,NA,"Democrat" +4,NA,77,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,78,"tess",4,0,69,1,31,NA,NA,"Democrat" +4,NA,80,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,90,"tess",1,1,91,1,91,NA,NA,"Democrat" +4,NA,94,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,95,"tess",3,0,98,1,2,NA,NA,"Democrat" +4,NA,96,"tess",3,1,71,1,71,NA,NA,"Democrat" +4,NA,114,"tess",1,0,94,1,6,NA,NA,"Republican" +4,NA,118,"tess",1,0,40,1,60,NA,NA,"Democrat" +4,NA,120,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,128,"tess",4,1,61,1,61,NA,NA,"Republican" +4,NA,130,"tess",2,1,70,1,70,NA,NA,"Republican" +4,NA,136,"tess",4,1,70,1,70,NA,NA,"Democrat" +4,NA,140,"tess",3,1,95,1,95,NA,NA,"Republican" +4,NA,151,"tess",1,1,90,1,90,NA,NA,"Republican" +4,NA,152,"tess",3,1,94,1,94,NA,NA,"Neither" +4,NA,165,"tess",2,0,37,1,63,NA,NA,"Democrat" +4,NA,182,"tess",4,1,89,1,89,NA,NA,"Democrat" +4,NA,187,"tess",2,1,80,1,80,NA,NA,"Republican" +4,NA,188,"tess",1,0,21,1,79,NA,NA,"Democrat" +4,NA,189,"tess",1,1,90,1,90,NA,NA,"Republican" +4,NA,196,"tess",1,1,86,1,86,NA,NA,"Democrat" +4,NA,206,"tess",2,0,51,1,49,NA,NA,"Republican" +4,NA,207,"tess",2,0,99,1,1,NA,NA,"Republican" +4,NA,216,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,221,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,224,"tess",3,1,21,1,21,NA,NA,"Democrat" +4,NA,234,"tess",1,1,0,1,0,NA,NA,"Democrat" +4,NA,247,"tess",1,0,92,1,8,NA,NA,"Republican" +4,NA,262,"tess",1,0,1,1,99,NA,NA,"Democrat" +4,NA,263,"tess",2,1,84,1,84,NA,NA,"Neither" +4,NA,266,"tess",2,0,60,1,40,NA,NA,"Democrat" +4,NA,296,"tess",2,0,88,1,12,NA,NA,"Republican" +4,NA,299,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,301,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,308,"tess",1,0,85,1,15,NA,NA,"Democrat" +4,NA,315,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,334,"tess",4,1,97,1,97,NA,NA,"Democrat" +4,NA,336,"tess",1,1,94,1,94,NA,NA,"Republican" +4,NA,342,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,347,"tess",3,0,11,1,89,NA,NA,"Democrat" +4,NA,363,"tess",4,0,96,1,4,NA,NA,"Republican" +4,NA,366,"tess",4,1,5,1,5,NA,NA,"Democrat" +4,NA,372,"tess",2,1,30,1,30,NA,NA,"Republican" +4,NA,379,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,389,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,397,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,399,"tess",4,1,85,1,85,NA,NA,"Neither" +4,NA,405,"tess",4,0,1,1,99,NA,NA,"Republican" +4,NA,413,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,421,"tess",4,1,97,1,97,NA,NA,"Democrat" +4,NA,426,"tess",3,1,50,1,50,NA,NA,"Republican" +4,NA,430,"tess",4,0,60,1,40,NA,NA,"Republican" +4,NA,431,"tess",2,0,64,1,36,NA,NA,"Democrat" +4,NA,440,"tess",2,1,98,1,98,NA,NA,"Democrat" +4,NA,443,"tess",2,0,97,1,3,NA,NA,"Republican" +4,NA,450,"tess",2,1,3,1,3,NA,NA,"Republican" +4,NA,461,"tess",2,1,11,1,11,NA,NA,"Republican" +4,NA,478,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,482,"tess",2,0,61,1,39,NA,NA,"Democrat" +4,NA,485,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,491,"tess",1,0,99,1,1,NA,NA,"Neither" +4,NA,493,"tess",1,0,70,1,30,NA,NA,"Republican" +4,NA,502,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,503,"tess",3,0,50,1,50,NA,NA,"Republican" +4,NA,508,"tess",4,0,65,1,35,NA,NA,"Republican" +4,NA,509,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,512,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,516,"tess",1,1,3,1,3,NA,NA,"Democrat" +4,NA,522,"tess",4,0,0,1,100,NA,NA,"Democrat" +4,NA,530,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,541,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,542,"tess",4,1,12,1,12,NA,NA,"Republican" +4,NA,549,"tess",3,0,19,1,81,NA,NA,"Democrat" +4,NA,550,"tess",4,1,69,1,69,NA,NA,"Republican" +4,NA,567,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,573,"tess",3,0,37,1,63,NA,NA,"Democrat" +4,NA,574,"tess",1,0,81,1,19,NA,NA,"Democrat" +4,NA,584,"tess",1,0,46,1,54,NA,NA,"Democrat" +4,NA,589,"tess",3,1,3,1,3,NA,NA,"Republican" +4,NA,591,"tess",1,0,33,1,67,NA,NA,"Democrat" +4,NA,596,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,600,"tess",4,0,30,1,70,NA,NA,"Republican" +4,NA,602,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,603,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,608,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,611,"tess",1,1,100,1,100,NA,NA,"Republican" +4,NA,617,"tess",4,1,0,1,0,NA,NA,"Republican" +4,NA,622,"tess",3,1,5,1,5,NA,NA,"Democrat" +4,NA,627,"tess",3,0,25,1,75,NA,NA,"Democrat" +4,NA,633,"tess",4,1,30,1,30,NA,NA,"Democrat" +4,NA,638,"tess",2,0,26,1,74,NA,NA,"Republican" +4,NA,639,"tess",4,1,0,1,0,NA,NA,"Democrat" +4,NA,649,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,675,"tess",4,1,98,1,98,NA,NA,"Democrat" +4,NA,680,"tess",2,0,65,1,35,NA,NA,"Republican" +4,NA,684,"tess",1,0,22,1,78,NA,NA,"Republican" +4,NA,689,"tess",3,0,85,1,15,NA,NA,"Democrat" +4,NA,693,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,702,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,709,"tess",3,0,91,1,9,NA,NA,"Republican" +4,NA,711,"tess",1,1,69,1,69,NA,NA,"Democrat" +4,NA,717,"tess",2,0,75,1,25,NA,NA,"Republican" +4,NA,727,"tess",3,0,1,1,99,NA,NA,"Republican" +4,NA,728,"tess",2,0,10,1,90,NA,NA,"Democrat" +4,NA,734,"tess",4,1,85,1,85,NA,NA,"Republican" +4,NA,740,"tess",3,0,51,1,49,NA,NA,"Democrat" +4,NA,752,"tess",1,1,53,1,53,NA,NA,"Democrat" +4,NA,753,"tess",4,1,95,1,95,NA,NA,"Republican" +4,NA,766,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,770,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,771,"tess",1,0,99,1,1,NA,NA,"Democrat" +4,NA,772,"tess",2,1,50,1,50,NA,NA,"Republican" +4,NA,773,"tess",3,0,99,1,1,NA,NA,"Democrat" +4,NA,783,"tess",3,1,85,1,85,NA,NA,"Democrat" +4,NA,786,"tess",3,0,80,1,20,NA,NA,"Republican" +4,NA,794,"tess",4,0,89,1,11,NA,NA,"Democrat" +4,NA,803,"tess",1,1,70,1,70,NA,NA,"Democrat" +4,NA,804,"tess",3,0,24,1,76,NA,NA,"Democrat" +4,NA,806,"tess",2,1,50,1,50,NA,NA,"Democrat" +4,NA,823,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,828,"tess",3,1,32,1,32,NA,NA,"Neither" +4,NA,829,"tess",3,1,60,1,60,NA,NA,"Neither" +4,NA,836,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,845,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,847,"tess",1,0,89,1,11,NA,NA,"Democrat" +4,NA,851,"tess",1,0,30,1,70,NA,NA,"Republican" +4,NA,852,"tess",1,0,50,1,50,NA,NA,"Democrat" +4,NA,855,"tess",2,0,99,1,1,NA,NA,"Republican" +4,NA,857,"tess",1,0,30,1,70,NA,NA,"Democrat" +4,NA,861,"tess",4,1,98,1,98,NA,NA,"Democrat" +4,NA,878,"tess",4,0,97,1,3,NA,NA,"Democrat" +4,NA,883,"tess",2,0,94,1,6,NA,NA,"Democrat" +4,NA,886,"tess",2,0,95,1,5,NA,NA,"Republican" +4,NA,890,"tess",3,0,88,1,12,NA,NA,"Republican" +4,NA,891,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,895,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,898,"tess",3,1,53,1,53,NA,NA,"Republican" +4,NA,903,"tess",1,0,59,1,41,NA,NA,"Republican" +4,NA,912,"tess",3,0,21,1,79,NA,NA,"Democrat" +4,NA,918,"tess",2,0,77,1,23,NA,NA,"Republican" +4,NA,919,"tess",2,1,91,1,91,NA,NA,"Democrat" +4,NA,922,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,928,"tess",2,0,75,1,25,NA,NA,"Republican" +4,NA,943,"tess",2,1,95,1,95,NA,NA,"Republican" +4,NA,950,"tess",4,1,84,1,84,NA,NA,"Democrat" +4,NA,952,"tess",2,0,89,1,11,NA,NA,"Republican" +4,NA,958,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,961,"tess",4,0,88,1,12,NA,NA,"Democrat" +4,NA,968,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,978,"tess",2,0,69,1,31,NA,NA,"Democrat" +4,NA,985,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,990,"tess",2,0,81,1,19,NA,NA,"Republican" +4,NA,997,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,1018,"tess",4,1,9,1,9,NA,NA,"Republican" +4,NA,1020,"tess",3,0,50,1,50,NA,NA,"Republican" +4,NA,1031,"tess",4,1,97,1,97,NA,NA,"Democrat" +4,NA,1035,"tess",1,1,60,1,60,NA,NA,"Democrat" +4,NA,1036,"tess",3,0,1,1,99,NA,NA,"Republican" +4,NA,1046,"tess",1,1,85,1,85,NA,NA,"Republican" +4,NA,1047,"tess",3,1,20,1,20,NA,NA,"Republican" +4,NA,1051,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,1055,"tess",1,0,70,1,30,NA,NA,"Republican" +4,NA,1058,"tess",4,1,95,1,95,NA,NA,"Republican" +4,NA,1062,"tess",3,1,69,1,69,NA,NA,"Democrat" +4,NA,1064,"tess",2,1,79,1,79,NA,NA,"Democrat" +4,NA,1065,"tess",4,1,96,1,96,NA,NA,"Republican" +4,NA,1066,"tess",2,0,77,1,23,NA,NA,"Democrat" +4,NA,1067,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,1068,"tess",3,0,57,1,43,NA,NA,"Republican" +4,NA,1081,"tess",1,1,97,1,97,NA,NA,"Democrat" +4,NA,1083,"tess",2,1,70,1,70,NA,NA,"Democrat" +4,NA,1084,"tess",2,1,84,1,84,NA,NA,"Republican" +4,NA,1087,"tess",4,1,50,1,50,NA,NA,"Democrat" +4,NA,1096,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,1097,"tess",1,0,93,1,7,NA,NA,"Republican" +4,NA,1100,"tess",3,1,24,1,24,NA,NA,"Republican" +4,NA,1104,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,1110,"tess",2,0,95,1,5,NA,NA,"Neither" +4,NA,1114,"tess",1,1,78,1,78,NA,NA,"Neither" +4,NA,1119,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,1122,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,1133,"tess",4,0,50,1,50,NA,NA,"Republican" +4,NA,1141,"tess",4,0,97,1,3,NA,NA,"Democrat" +4,NA,1147,"tess",2,1,98,1,98,NA,NA,"Democrat" +4,NA,1148,"tess",4,0,87,1,13,NA,NA,"Republican" +4,NA,1149,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,1150,"tess",3,1,46,1,46,NA,NA,"Democrat" +4,NA,1156,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,1172,"tess",3,1,85,1,85,NA,NA,"Republican" +4,NA,1178,"tess",3,1,99,1,99,NA,NA,"Republican" +4,NA,1182,"tess",4,1,94,1,94,NA,NA,"Republican" +4,NA,1192,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,1193,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,1208,"tess",3,1,60,1,60,NA,NA,"Republican" +4,NA,1220,"tess",3,1,50,1,50,NA,NA,"Democrat" +4,NA,1235,"tess",4,1,60,1,60,NA,NA,"Republican" +4,NA,1246,"tess",2,0,65,1,35,NA,NA,"Republican" +4,NA,1256,"tess",4,1,94,1,94,NA,NA,"Democrat" +4,NA,1259,"tess",3,1,92,1,92,NA,NA,"Democrat" +4,NA,1260,"tess",1,0,65,1,35,NA,NA,"Democrat" +4,NA,1265,"tess",1,0,72,1,28,NA,NA,"Republican" +4,NA,1277,"tess",3,1,98,1,98,NA,NA,"Republican" +4,NA,1282,"tess",3,1,75,1,75,NA,NA,"Republican" +4,NA,1284,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,1285,"tess",2,0,90,1,10,NA,NA,"Neither" +4,NA,1288,"tess",3,1,60,1,60,NA,NA,"Republican" +4,NA,1304,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,1306,"tess",3,0,84,1,16,NA,NA,"Democrat" +4,NA,1307,"tess",3,1,70,1,70,NA,NA,"Republican" +4,NA,1309,"tess",4,1,93,1,93,NA,NA,"Democrat" +4,NA,1311,"tess",2,1,75,1,75,NA,NA,"Democrat" +4,NA,1314,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,1321,"tess",2,1,91,1,91,NA,NA,"Republican" +4,NA,1330,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,1336,"tess",2,0,50,1,50,NA,NA,"Republican" +4,NA,1348,"tess",4,1,98,1,98,NA,NA,"Democrat" +4,NA,1356,"tess",1,1,91,1,91,NA,NA,"Republican" +4,NA,1366,"tess",4,1,98,1,98,NA,NA,"Democrat" +4,NA,1376,"tess",2,0,86,1,14,NA,NA,"Democrat" +4,NA,1382,"tess",2,1,51,1,51,NA,NA,"Republican" +4,NA,1397,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,1402,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,1408,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,1416,"tess",2,1,80,1,80,NA,NA,"Republican" +4,NA,1418,"tess",1,1,84,1,84,NA,NA,"Republican" +4,NA,1419,"tess",4,1,82,1,82,NA,NA,"Republican" +4,NA,1426,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,1444,"tess",2,1,51,1,51,NA,NA,"Democrat" +4,NA,1445,"tess",4,0,70,1,30,NA,NA,"Republican" +4,NA,1454,"tess",2,0,65,1,35,NA,NA,"Democrat" +4,NA,1461,"tess",3,1,77,1,77,NA,NA,"Democrat" +4,NA,1464,"tess",4,0,89,1,11,NA,NA,"Democrat" +4,NA,1468,"tess",2,1,71,1,71,NA,NA,"Republican" +4,NA,1485,"tess",4,1,53,1,53,NA,NA,"Democrat" +4,NA,1486,"tess",2,0,52,1,48,NA,NA,"Democrat" +4,NA,1491,"tess",3,0,1,1,99,NA,NA,"Republican" +4,NA,1500,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,1506,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,1507,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,1510,"tess",1,1,65,1,65,NA,NA,"Republican" +4,NA,1511,"tess",1,0,80,1,20,NA,NA,"Republican" +4,NA,1518,"tess",4,1,70,1,70,NA,NA,"Democrat" +4,NA,1523,"tess",3,1,7,1,7,NA,NA,"Republican" +4,NA,1530,"tess",2,1,98,1,98,NA,NA,"Republican" +4,NA,1532,"tess",4,1,85,1,85,NA,NA,"Republican" +4,NA,1541,"tess",4,1,70,1,70,NA,NA,"Republican" +4,NA,1551,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,1552,"tess",1,0,74,1,26,NA,NA,"Republican" +4,NA,1553,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,1556,"tess",3,0,75,1,25,NA,NA,"Democrat" +4,NA,1563,"tess",1,0,91,1,9,NA,NA,"Republican" +4,NA,1565,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,1600,"tess",2,1,100,1,100,NA,NA,"Republican" +4,NA,1605,"tess",4,0,77,1,23,NA,NA,"Republican" +4,NA,1608,"tess",2,0,80,1,20,NA,NA,"Republican" +4,NA,1618,"tess",4,1,39,1,39,NA,NA,"Republican" +4,NA,1624,"tess",3,0,70,1,30,NA,NA,"Republican" +4,NA,1631,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,1634,"tess",2,1,81,1,81,NA,NA,"Democrat" +4,NA,1644,"tess",3,0,43,1,57,NA,NA,"Democrat" +4,NA,1654,"tess",3,1,82,1,82,NA,NA,"Democrat" +4,NA,1657,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,1663,"tess",4,1,65,1,65,NA,NA,"Neither" +4,NA,1668,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,1669,"tess",2,1,88,1,88,NA,NA,"Democrat" +4,NA,1673,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,1674,"tess",3,0,22,1,78,NA,NA,"Republican" +4,NA,1689,"tess",1,0,92,1,8,NA,NA,"Democrat" +4,NA,1702,"tess",1,1,40,1,40,NA,NA,"Neither" +4,NA,1706,"tess",4,1,20,1,20,NA,NA,"Democrat" +4,NA,1724,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,1726,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,1728,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,1733,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,1739,"tess",1,0,46,1,54,NA,NA,"Republican" +4,NA,1756,"tess",4,0,98,1,2,NA,NA,"Democrat" +4,NA,1767,"tess",3,0,41,1,59,NA,NA,"Republican" +4,NA,1775,"tess",2,1,88,1,88,NA,NA,"Democrat" +4,NA,1798,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,1799,"tess",1,0,62,1,38,NA,NA,"Republican" +4,NA,1813,"tess",1,0,95,1,5,NA,NA,"Democrat" +4,NA,1815,"tess",1,1,42,1,42,NA,NA,"Republican" +4,NA,1824,"tess",1,1,1,1,1,NA,NA,"Republican" +4,NA,1832,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,1834,"tess",2,0,4,1,96,NA,NA,"Neither" +4,NA,1835,"tess",2,1,0,1,0,NA,NA,"Neither" +4,NA,1841,"tess",2,0,72,1,28,NA,NA,"Republican" +4,NA,1847,"tess",4,0,35,1,65,NA,NA,"Republican" +4,NA,1850,"tess",4,0,30,1,70,NA,NA,"Republican" +4,NA,1851,"tess",1,0,87,1,13,NA,NA,"Democrat" +4,NA,1856,"tess",4,0,67,1,33,NA,NA,"Republican" +4,NA,1857,"tess",1,0,98,1,2,NA,NA,"Democrat" +4,NA,1863,"tess",4,1,80,1,80,NA,NA,"Republican" +4,NA,1870,"tess",2,1,65,1,65,NA,NA,"Republican" +4,NA,1890,"tess",3,1,81,1,81,NA,NA,"Democrat" +4,NA,1891,"tess",4,1,40,1,40,NA,NA,"Republican" +4,NA,1898,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,1899,"tess",3,0,95,1,5,NA,NA,"Democrat" +4,NA,1900,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,1902,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,1910,"tess",3,0,99,1,1,NA,NA,"Republican" +4,NA,1924,"tess",4,0,16,1,84,NA,NA,"Democrat" +4,NA,1928,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,1930,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,1933,"tess",3,1,74,1,74,NA,NA,"Democrat" +4,NA,1935,"tess",2,1,0,1,0,NA,NA,"Republican" +4,NA,1939,"tess",1,1,89,1,89,NA,NA,"Democrat" +4,NA,1940,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,1945,"tess",1,1,84,1,84,NA,NA,"Democrat" +4,NA,1950,"tess",3,0,37,1,63,NA,NA,"Republican" +4,NA,1952,"tess",3,1,60,1,60,NA,NA,"Democrat" +4,NA,1953,"tess",4,0,19,1,81,NA,NA,"Republican" +4,NA,1960,"tess",2,1,96,1,96,NA,NA,"Republican" +4,NA,1966,"tess",3,0,90,1,10,NA,NA,"Republican" +4,NA,1973,"tess",4,1,79,1,79,NA,NA,"Democrat" +4,NA,1976,"tess",1,1,97,1,97,NA,NA,"Republican" +4,NA,1981,"tess",3,0,85,1,15,NA,NA,"Democrat" +4,NA,1982,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,1992,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,1994,"tess",4,0,98,1,2,NA,NA,"Republican" +4,NA,2001,"tess",2,0,50,1,50,NA,NA,"Republican" +4,NA,2017,"tess",3,0,75,1,25,NA,NA,"Democrat" +4,NA,2030,"tess",1,0,87,1,13,NA,NA,"Democrat" +4,NA,2033,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,2044,"tess",3,1,69,1,69,NA,NA,"Republican" +4,NA,2049,"tess",3,0,83,1,17,NA,NA,"Democrat" +4,NA,2056,"tess",3,1,67,1,67,NA,NA,"Republican" +4,NA,2057,"tess",4,1,90,1,90,NA,NA,"Republican" +4,NA,2060,"tess",3,0,30,1,70,NA,NA,"Democrat" +4,NA,2061,"tess",4,0,95,1,5,NA,NA,"Democrat" +4,NA,2066,"tess",4,0,97,1,3,NA,NA,"Republican" +4,NA,2072,"tess",2,0,84,1,16,NA,NA,"Democrat" +4,NA,2080,"tess",3,0,79,1,21,NA,NA,"Democrat" +4,NA,2082,"tess",3,0,73,1,27,NA,NA,"Democrat" +4,NA,2088,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,2090,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,2097,"tess",3,1,96,1,96,NA,NA,"Republican" +4,NA,2099,"tess",1,1,65,1,65,NA,NA,"Republican" +4,NA,2100,"tess",2,1,50,1,50,NA,NA,"Democrat" +4,NA,2104,"tess",3,0,0,1,100,NA,NA,"Republican" +4,NA,2107,"tess",4,1,74,1,74,NA,NA,"Republican" +4,NA,2120,"tess",4,0,64,1,36,NA,NA,"Republican" +4,NA,2124,"tess",3,1,45,1,45,NA,NA,"Republican" +4,NA,2137,"tess",2,1,79,1,79,NA,NA,"Democrat" +4,NA,2141,"tess",4,0,51,1,49,NA,NA,"Democrat" +4,NA,2147,"tess",3,1,94,1,94,NA,NA,"Democrat" +4,NA,2153,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,2169,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,2179,"tess",1,1,91,1,91,NA,NA,"Democrat" +4,NA,2180,"tess",3,1,56,1,56,NA,NA,"Democrat" +4,NA,2187,"tess",3,1,51,1,51,NA,NA,"Democrat" +4,NA,2188,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,2190,"tess",4,0,93,1,7,NA,NA,"Neither" +4,NA,2195,"tess",1,1,50,1,50,NA,NA,"Republican" +4,NA,2196,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,2197,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,2207,"tess",1,1,70,1,70,NA,NA,"Republican" +4,NA,2208,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,2211,"tess",3,0,89,1,11,NA,NA,"Republican" +4,NA,2213,"tess",2,1,60,1,60,NA,NA,"Neither" +4,NA,2215,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,2218,"tess",1,0,94,1,6,NA,NA,"Republican" +4,NA,2225,"tess",2,1,75,1,75,NA,NA,"Republican" +4,NA,2228,"tess",3,0,94,1,6,NA,NA,"Democrat" +4,NA,2230,"tess",2,1,97,1,97,NA,NA,"Republican" +4,NA,2235,"tess",3,0,90,1,10,NA,NA,"Republican" +4,NA,2238,"tess",4,1,61,1,61,NA,NA,"Democrat" +4,NA,2242,"tess",2,0,86,1,14,NA,NA,"Republican" +4,NA,2248,"tess",4,0,52,1,48,NA,NA,"Democrat" +4,NA,2253,"tess",2,1,98,1,98,NA,NA,"Democrat" +4,NA,2271,"tess",2,0,86,1,14,NA,NA,"Democrat" +4,NA,2272,"tess",2,0,95,1,5,NA,NA,"Democrat" +4,NA,2275,"tess",4,0,83,1,17,NA,NA,"Republican" +4,NA,2278,"tess",2,0,80,1,20,NA,NA,"Neither" +4,NA,2283,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,2286,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,2287,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,2291,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,2308,"tess",3,0,61,1,39,NA,NA,"Democrat" +4,NA,2313,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,2315,"tess",1,0,77,1,23,NA,NA,"Democrat" +4,NA,2318,"tess",4,0,60,1,40,NA,NA,"Democrat" +4,NA,2322,"tess",3,1,65,1,65,NA,NA,"Republican" +4,NA,2337,"tess",3,0,10,1,90,NA,NA,"Democrat" +4,NA,2353,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,2356,"tess",4,1,91,1,91,NA,NA,"Republican" +4,NA,2359,"tess",1,1,50,1,50,NA,NA,"Democrat" +4,NA,2378,"tess",1,0,98,1,2,NA,NA,"Democrat" +4,NA,2379,"tess",2,1,81,1,81,NA,NA,"Republican" +4,NA,2381,"tess",3,1,76,1,76,NA,NA,"Democrat" +4,NA,2382,"tess",1,1,88,1,88,NA,NA,"Democrat" +4,NA,2383,"tess",2,1,20,1,20,NA,NA,"Republican" +4,NA,2393,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,2394,"tess",3,1,44,1,44,NA,NA,"Democrat" +4,NA,2398,"tess",4,1,80,1,80,NA,NA,"Democrat" +4,NA,2399,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,2405,"tess",2,0,56,1,44,NA,NA,"Democrat" +4,NA,2407,"tess",4,1,1,1,1,NA,NA,"Republican" +4,NA,2412,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,2424,"tess",1,0,80,1,20,NA,NA,"Republican" +4,NA,2434,"tess",4,0,70,1,30,NA,NA,"Democrat" +4,NA,2435,"tess",2,1,96,1,96,NA,NA,"Democrat" +4,NA,2445,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,2447,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,2459,"tess",1,0,60,1,40,NA,NA,"Democrat" +4,NA,2460,"tess",1,1,81,1,81,NA,NA,"Democrat" +4,NA,2468,"tess",4,1,84,1,84,NA,NA,"Democrat" +4,NA,2474,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,2483,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,2484,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,2485,"tess",2,0,70,1,30,NA,NA,"Democrat" +4,NA,2486,"tess",2,0,77,1,23,NA,NA,"Republican" +4,NA,2488,"tess",3,1,38,1,38,NA,NA,"Democrat" +4,NA,2492,"tess",1,0,59,1,41,NA,NA,"Democrat" +4,NA,2498,"tess",2,0,86,1,14,NA,NA,"Republican" +4,NA,2508,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,2511,"tess",3,1,63,1,63,NA,NA,"Democrat" +4,NA,2512,"tess",4,1,65,1,65,NA,NA,"Republican" +4,NA,2514,"tess",1,0,70,1,30,NA,NA,"Democrat" +4,NA,2518,"tess",2,0,56,1,44,NA,NA,"Republican" +4,NA,2519,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,2520,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,2525,"tess",1,0,98,1,2,NA,NA,"Republican" +4,NA,2528,"tess",4,0,70,1,30,NA,NA,"Democrat" +4,NA,2529,"tess",4,1,93,1,93,NA,NA,"Democrat" +4,NA,2532,"tess",2,0,10,1,90,NA,NA,"Democrat" +4,NA,2536,"tess",2,1,90,1,90,NA,NA,"Democrat" +4,NA,2537,"tess",4,1,72,1,72,NA,NA,"Republican" +4,NA,2542,"tess",4,0,44,1,56,NA,NA,"Neither" +4,NA,2545,"tess",2,1,98,1,98,NA,NA,"Democrat" +4,NA,2547,"tess",1,0,70,1,30,NA,NA,"Republican" +4,NA,2557,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,2578,"tess",1,0,99,1,1,NA,NA,"Republican" +4,NA,2581,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,2592,"tess",4,0,91,1,9,NA,NA,"Democrat" +4,NA,2599,"tess",1,0,69,1,31,NA,NA,"Republican" +4,NA,2608,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,2611,"tess",2,1,91,1,91,NA,NA,"Neither" +4,NA,2623,"tess",1,0,95,1,5,NA,NA,"Democrat" +4,NA,2630,"tess",2,1,80,1,80,NA,NA,"Republican" +4,NA,2632,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,2644,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,2658,"tess",3,1,94,1,94,NA,NA,"Republican" +4,NA,2659,"tess",1,1,33,1,33,NA,NA,"Republican" +4,NA,2664,"tess",2,1,93,1,93,NA,NA,"Democrat" +4,NA,2669,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,2670,"tess",2,1,40,1,40,NA,NA,"Neither" +4,NA,2671,"tess",1,0,40,1,60,NA,NA,"Republican" +4,NA,2695,"tess",3,0,51,1,49,NA,NA,"Republican" +4,NA,2698,"tess",3,1,31,1,31,NA,NA,"Republican" +4,NA,2700,"tess",1,1,70,1,70,NA,NA,"Democrat" +4,NA,2707,"tess",1,0,66,1,34,NA,NA,"Democrat" +4,NA,2709,"tess",1,0,92,1,8,NA,NA,"Democrat" +4,NA,2714,"tess",2,1,96,1,96,NA,NA,"Democrat" +4,NA,2715,"tess",2,0,75,1,25,NA,NA,"Republican" +4,NA,2720,"tess",3,0,74,1,26,NA,NA,"Republican" +4,NA,2722,"tess",3,0,48,1,52,NA,NA,"Democrat" +4,NA,2731,"tess",4,1,31,1,31,NA,NA,"Democrat" +4,NA,2733,"tess",4,1,98,1,98,NA,NA,"Democrat" +4,NA,2740,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,2741,"tess",3,1,75,1,75,NA,NA,"Democrat" +4,NA,2745,"tess",4,1,79,1,79,NA,NA,"Republican" +4,NA,2760,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,2764,"tess",2,0,80,1,20,NA,NA,"Republican" +4,NA,2765,"tess",2,0,37,1,63,NA,NA,"Republican" +4,NA,2767,"tess",4,1,43,1,43,NA,NA,"Democrat" +4,NA,2771,"tess",1,1,52,1,52,NA,NA,"Democrat" +4,NA,2773,"tess",3,1,10,1,10,NA,NA,"Republican" +4,NA,2774,"tess",3,1,94,1,94,NA,NA,"Republican" +4,NA,2778,"tess",4,1,91,1,91,NA,NA,"Republican" +4,NA,2779,"tess",1,0,50,1,50,NA,NA,"Democrat" +4,NA,2784,"tess",2,1,90,1,90,NA,NA,"Republican" +4,NA,2795,"tess",1,0,90,1,10,NA,NA,"Republican" +4,NA,2797,"tess",2,0,12,1,88,NA,NA,"Democrat" +4,NA,2799,"tess",1,1,50,1,50,NA,NA,"Republican" +4,NA,2804,"tess",2,0,80,1,20,NA,NA,"Republican" +4,NA,2808,"tess",3,0,92,1,8,NA,NA,"Democrat" +4,NA,2818,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,2827,"tess",3,0,3,1,97,NA,NA,"Democrat" +4,NA,2828,"tess",1,1,90,1,90,NA,NA,"Republican" +4,NA,2829,"tess",3,1,90,1,90,NA,NA,"Democrat" +4,NA,2843,"tess",4,0,98,1,2,NA,NA,"Democrat" +4,NA,2852,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,2863,"tess",2,1,80,1,80,NA,NA,"Republican" +4,NA,2885,"tess",2,1,70,1,70,NA,NA,"Republican" +4,NA,2888,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,2892,"tess",1,1,72,1,72,NA,NA,"Democrat" +4,NA,2893,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,2902,"tess",1,1,10,1,10,NA,NA,"Democrat" +4,NA,2903,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,2905,"tess",3,0,41,1,59,NA,NA,"Democrat" +4,NA,2906,"tess",1,0,80,1,20,NA,NA,"Democrat" +4,NA,2915,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,2917,"tess",4,1,4,1,4,NA,NA,"Republican" +4,NA,2923,"tess",1,0,42,1,58,NA,NA,"Neither" +4,NA,2934,"tess",2,1,10,1,10,NA,NA,"Democrat" +4,NA,2936,"tess",2,1,92,1,92,NA,NA,"Democrat" +4,NA,2938,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,2940,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,2945,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,2953,"tess",2,1,90,1,90,NA,NA,"Neither" +4,NA,2970,"tess",3,1,99,1,99,NA,NA,"Neither" +4,NA,2979,"tess",4,0,97,1,3,NA,NA,"Democrat" +4,NA,2981,"tess",2,1,3,1,3,NA,NA,"Democrat" +4,NA,2982,"tess",2,1,60,1,60,NA,NA,"Democrat" +4,NA,2983,"tess",4,1,96,1,96,NA,NA,"Democrat" +4,NA,2987,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,2988,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,2990,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,2998,"tess",4,0,86,1,14,NA,NA,"Republican" +4,NA,3006,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,3011,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,3020,"tess",2,0,91,1,9,NA,NA,"Democrat" +4,NA,3021,"tess",2,1,50,1,50,NA,NA,"Democrat" +4,NA,3025,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,3028,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,3029,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,3039,"tess",4,0,79,1,21,NA,NA,"Republican" +4,NA,3043,"tess",4,1,83,1,83,NA,NA,"Democrat" +4,NA,3047,"tess",2,1,47,1,47,NA,NA,"Democrat" +4,NA,3048,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,3051,"tess",4,1,70,1,70,NA,NA,"Republican" +4,NA,3062,"tess",4,0,65,1,35,NA,NA,"Neither" +4,NA,3068,"tess",3,1,90,1,90,NA,NA,"Democrat" +4,NA,3071,"tess",1,1,82,1,82,NA,NA,"Democrat" +4,NA,3072,"tess",2,1,99,1,99,NA,NA,"Republican" +4,NA,3074,"tess",4,0,91,1,9,NA,NA,"Democrat" +4,NA,3076,"tess",1,1,1,1,1,NA,NA,"Republican" +4,NA,3077,"tess",2,0,85,1,15,NA,NA,"Democrat" +4,NA,3082,"tess",1,1,62,1,62,NA,NA,"Neither" +4,NA,3086,"tess",4,0,28,1,72,NA,NA,"Republican" +4,NA,3089,"tess",1,0,29,1,71,NA,NA,"Democrat" +4,NA,3096,"tess",1,1,1,1,1,NA,NA,"Republican" +4,NA,3102,"tess",3,1,97,1,97,NA,NA,"Democrat" +4,NA,3107,"tess",4,1,97,1,97,NA,NA,"Democrat" +4,NA,3109,"tess",1,1,90,1,90,NA,NA,"Neither" +4,NA,3111,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,3115,"tess",1,1,92,1,92,NA,NA,"Neither" +4,NA,3123,"tess",2,1,50,1,50,NA,NA,"Democrat" +4,NA,3125,"tess",3,1,71,1,71,NA,NA,"Democrat" +4,NA,3128,"tess",4,1,80,1,80,NA,NA,"Republican" +4,NA,3137,"tess",1,0,71,1,29,NA,NA,"Democrat" +4,NA,3155,"tess",2,0,100,1,0,NA,NA,"Neither" +4,NA,3156,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,3170,"tess",3,0,60,1,40,NA,NA,"Democrat" +4,NA,3172,"tess",3,1,75,1,75,NA,NA,"Democrat" +4,NA,3176,"tess",2,1,50,1,50,NA,NA,"Republican" +4,NA,3186,"tess",4,0,81,1,19,NA,NA,"Democrat" +4,NA,3188,"tess",1,0,94,1,6,NA,NA,"Democrat" +4,NA,3190,"tess",4,1,92,1,92,NA,NA,"Democrat" +4,NA,3192,"tess",4,1,11,1,11,NA,NA,"Democrat" +4,NA,3195,"tess",4,0,89,1,11,NA,NA,"Democrat" +4,NA,3197,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,3201,"tess",3,0,99,1,1,NA,NA,"Republican" +4,NA,3205,"tess",3,1,53,1,53,NA,NA,"Republican" +4,NA,3206,"tess",3,0,87,1,13,NA,NA,"Democrat" +4,NA,3207,"tess",1,1,80,1,80,NA,NA,"Republican" +4,NA,3208,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,3214,"tess",1,0,86,1,14,NA,NA,"Democrat" +4,NA,3223,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,3225,"tess",1,0,52,1,48,NA,NA,"Republican" +4,NA,3226,"tess",2,0,94,1,6,NA,NA,"Republican" +4,NA,3230,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,3234,"tess",3,1,70,1,70,NA,NA,"Republican" +4,NA,3244,"tess",3,1,82,1,82,NA,NA,"Republican" +4,NA,3259,"tess",1,0,85,1,15,NA,NA,"Republican" +4,NA,3262,"tess",1,1,70,1,70,NA,NA,"Republican" +4,NA,3263,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,3274,"tess",4,1,0,1,0,NA,NA,"Democrat" +4,NA,3281,"tess",1,0,80,1,20,NA,NA,"Democrat" +4,NA,3288,"tess",3,1,75,1,75,NA,NA,"Republican" +4,NA,3295,"tess",1,1,86,1,86,NA,NA,"Democrat" +4,NA,3304,"tess",3,0,60,1,40,NA,NA,"Republican" +4,NA,3313,"tess",3,1,61,1,61,NA,NA,"Republican" +4,NA,3320,"tess",3,0,92,1,8,NA,NA,"Democrat" +4,NA,3333,"tess",3,1,53,1,53,NA,NA,"Democrat" +4,NA,3335,"tess",4,0,72,1,28,NA,NA,"Democrat" +4,NA,3342,"tess",1,1,91,1,91,NA,NA,"Republican" +4,NA,3344,"tess",4,0,86,1,14,NA,NA,"Democrat" +4,NA,3346,"tess",2,0,70,1,30,NA,NA,"Republican" +4,NA,3348,"tess",4,1,98,1,98,NA,NA,"Democrat" +4,NA,3356,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,3364,"tess",4,1,96,1,96,NA,NA,"Democrat" +4,NA,3365,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,3371,"tess",2,0,99,1,1,NA,NA,"Democrat" +4,NA,3407,"tess",3,0,70,1,30,NA,NA,"Republican" +4,NA,3412,"tess",1,0,64,1,36,NA,NA,"Democrat" +4,NA,3419,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,3424,"tess",2,0,53,1,47,NA,NA,"Democrat" +4,NA,3425,"tess",1,0,71,1,29,NA,NA,"Republican" +4,NA,3426,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,3430,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,3433,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,3435,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,3437,"tess",4,0,50,1,50,NA,NA,"Republican" +4,NA,3452,"tess",1,1,97,1,97,NA,NA,"Republican" +4,NA,3454,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,3462,"tess",4,1,43,1,43,NA,NA,"Republican" +4,NA,3464,"tess",3,1,60,1,60,NA,NA,"Republican" +4,NA,3468,"tess",2,0,77,1,23,NA,NA,"Democrat" +4,NA,3477,"tess",2,0,46,1,54,NA,NA,"Democrat" +4,NA,3488,"tess",3,0,9,1,91,NA,NA,"Republican" +4,NA,3494,"tess",1,0,50,1,50,NA,NA,"Democrat" +4,NA,3505,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,3507,"tess",3,0,40,1,60,NA,NA,"Democrat" +4,NA,3508,"tess",1,1,80,1,80,NA,NA,"Republican" +4,NA,3512,"tess",1,1,52,1,52,NA,NA,"Republican" +4,NA,3513,"tess",1,1,71,1,71,NA,NA,"Democrat" +4,NA,3515,"tess",2,1,0,1,0,NA,NA,"Republican" +4,NA,3517,"tess",1,1,94,1,94,NA,NA,"Republican" +4,NA,3522,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,3523,"tess",4,1,75,1,75,NA,NA,"Democrat" +4,NA,3535,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,3536,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,3544,"tess",4,1,64,1,64,NA,NA,"Neither" +4,NA,3545,"tess",3,0,70,1,30,NA,NA,"Democrat" +4,NA,3548,"tess",3,0,20,1,80,NA,NA,"Republican" +4,NA,3554,"tess",2,0,83,1,17,NA,NA,"Democrat" +4,NA,3562,"tess",1,1,49,1,49,NA,NA,"Democrat" +4,NA,3564,"tess",1,0,98,1,2,NA,NA,"Republican" +4,NA,3568,"tess",2,0,91,1,9,NA,NA,"Democrat" +4,NA,3573,"tess",2,0,84,1,16,NA,NA,"Democrat" +4,NA,3582,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,3587,"tess",4,1,10,1,10,NA,NA,"Democrat" +4,NA,3589,"tess",1,0,97,1,3,NA,NA,"Democrat" +4,NA,3593,"tess",3,1,64,1,64,NA,NA,"Democrat" +4,NA,3607,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,3609,"tess",1,0,81,1,19,NA,NA,"Republican" +4,NA,3610,"tess",4,1,70,1,70,NA,NA,"Democrat" +4,NA,3611,"tess",4,1,5,1,5,NA,NA,"Democrat" +4,NA,3612,"tess",4,1,30,1,30,NA,NA,"Republican" +4,NA,3627,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,3629,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,3631,"tess",2,0,10,1,90,NA,NA,"Democrat" +4,NA,3632,"tess",3,0,84,1,16,NA,NA,"Republican" +4,NA,3634,"tess",2,1,84,1,84,NA,NA,"Democrat" +4,NA,3635,"tess",1,1,10,1,10,NA,NA,"Republican" +4,NA,3643,"tess",4,0,70,1,30,NA,NA,"Democrat" +4,NA,3645,"tess",2,0,88,1,12,NA,NA,"Republican" +4,NA,3653,"tess",4,1,97,1,97,NA,NA,"Democrat" +4,NA,3656,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,3663,"tess",2,1,95,1,95,NA,NA,"Democrat" +4,NA,3673,"tess",4,0,92,1,8,NA,NA,"Republican" +4,NA,3676,"tess",1,1,40,1,40,NA,NA,"Republican" +4,NA,3678,"tess",4,1,80,1,80,NA,NA,"Republican" +4,NA,3681,"tess",3,0,96,1,4,NA,NA,"Democrat" +4,NA,3695,"tess",2,1,87,1,87,NA,NA,"Republican" +4,NA,3699,"tess",1,1,81,1,81,NA,NA,"Republican" +4,NA,3702,"tess",4,1,91,1,91,NA,NA,"Democrat" +4,NA,3704,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,3708,"tess",4,1,92,1,92,NA,NA,"Democrat" +4,NA,3710,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,3711,"tess",4,1,98,1,98,NA,NA,"Democrat" +4,NA,3722,"tess",2,1,29,1,29,NA,NA,"Democrat" +4,NA,3725,"tess",3,1,47,1,47,NA,NA,"Republican" +4,NA,3726,"tess",4,0,56,1,44,NA,NA,"Democrat" +4,NA,3728,"tess",2,1,90,1,90,NA,NA,"Republican" +4,NA,3736,"tess",1,0,91,1,9,NA,NA,"Democrat" +4,NA,3745,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,3747,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,3754,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,3759,"tess",2,0,50,1,50,NA,NA,"Republican" +4,NA,3767,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,3774,"tess",4,1,20,1,20,NA,NA,"Neither" +4,NA,3776,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,3779,"tess",4,0,20,1,80,NA,NA,"Republican" +4,NA,3782,"tess",4,0,62,1,38,NA,NA,"Democrat" +4,NA,3787,"tess",2,0,94,1,6,NA,NA,"Democrat" +4,NA,3793,"tess",1,0,50,1,50,NA,NA,"Republican" +4,NA,3795,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,3799,"tess",4,0,21,1,79,NA,NA,"Republican" +4,NA,3801,"tess",3,1,12,1,12,NA,NA,"Democrat" +4,NA,3806,"tess",2,1,92,1,92,NA,NA,"Republican" +4,NA,3810,"tess",4,1,80,1,80,NA,NA,"Democrat" +4,NA,3811,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,3813,"tess",2,1,70,1,70,NA,NA,"Republican" +4,NA,3814,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,3819,"tess",1,1,75,1,75,NA,NA,"Republican" +4,NA,3820,"tess",2,1,93,1,93,NA,NA,"Democrat" +4,NA,3845,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,3848,"tess",1,1,90,1,90,NA,NA,"Republican" +4,NA,3851,"tess",3,1,98,1,98,NA,NA,"Republican" +4,NA,3865,"tess",4,0,25,1,75,NA,NA,"Democrat" +4,NA,3868,"tess",1,0,0,1,100,NA,NA,"Democrat" +4,NA,3880,"tess",1,1,31,1,31,NA,NA,"Republican" +4,NA,3890,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,3895,"tess",3,1,50,1,50,NA,NA,"Republican" +4,NA,3898,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,3904,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,3909,"tess",3,1,70,1,70,NA,NA,"Democrat" +4,NA,3910,"tess",4,1,82,1,82,NA,NA,"Democrat" +4,NA,3915,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,3918,"tess",1,0,98,1,2,NA,NA,"Democrat" +4,NA,3919,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,3920,"tess",2,1,95,1,95,NA,NA,"Democrat" +4,NA,3923,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,3931,"tess",4,1,51,1,51,NA,NA,"Democrat" +4,NA,3946,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,3958,"tess",1,1,70,1,70,NA,NA,"Republican" +4,NA,3959,"tess",2,0,81,1,19,NA,NA,"Democrat" +4,NA,3961,"tess",2,0,7,1,93,NA,NA,"Democrat" +4,NA,3965,"tess",3,0,75,1,25,NA,NA,"Democrat" +4,NA,3966,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,3981,"tess",4,1,52,1,52,NA,NA,"Republican" +4,NA,4001,"tess",4,1,90,1,90,NA,NA,"Neither" +4,NA,4006,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,4007,"tess",3,0,80,1,20,NA,NA,"Republican" +4,NA,4008,"tess",1,1,82,1,82,NA,NA,"Republican" +4,NA,4015,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,4027,"tess",1,1,19,1,19,NA,NA,"Republican" +4,NA,4035,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,4039,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,4043,"tess",1,1,100,1,100,NA,NA,"Republican" +4,NA,4046,"tess",3,0,93,1,7,NA,NA,"Democrat" +4,NA,4049,"tess",4,0,50,1,50,NA,NA,"Neither" +4,NA,4065,"tess",3,1,80,1,80,NA,NA,"Democrat" +4,NA,4069,"tess",1,1,57,1,57,NA,NA,"Democrat" +4,NA,4072,"tess",3,1,83,1,83,NA,NA,"Democrat" +4,NA,4075,"tess",3,1,91,1,91,NA,NA,"Democrat" +4,NA,4076,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,4079,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,4084,"tess",4,0,44,1,56,NA,NA,"Republican" +4,NA,4096,"tess",3,0,79,1,21,NA,NA,"Democrat" +4,NA,4108,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,4120,"tess",3,0,50,1,50,NA,NA,"Republican" +4,NA,4139,"tess",4,0,97,1,3,NA,NA,"Republican" +4,NA,4141,"tess",1,0,63,1,37,NA,NA,"Democrat" +4,NA,4142,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,4149,"tess",2,0,79,1,21,NA,NA,"Republican" +4,NA,4153,"tess",1,1,95,1,95,NA,NA,"Republican" +4,NA,4160,"tess",2,0,25,1,75,NA,NA,"Democrat" +4,NA,4163,"tess",4,0,74,1,26,NA,NA,"Republican" +4,NA,4175,"tess",3,0,70,1,30,NA,NA,"Democrat" +4,NA,4178,"tess",1,1,48,1,48,NA,NA,"Democrat" +4,NA,4186,"tess",3,0,92,1,8,NA,NA,"Democrat" +4,NA,4195,"tess",4,0,60,1,40,NA,NA,"Republican" +4,NA,4197,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,4199,"tess",3,0,84,1,16,NA,NA,"Democrat" +4,NA,4200,"tess",4,0,71,1,29,NA,NA,"Democrat" +4,NA,4202,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,4209,"tess",2,0,68,1,32,NA,NA,"Democrat" +4,NA,4210,"tess",1,0,80,1,20,NA,NA,"Republican" +4,NA,4216,"tess",2,1,31,1,31,NA,NA,"Democrat" +4,NA,4217,"tess",1,1,20,1,20,NA,NA,"Democrat" +4,NA,4218,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,4222,"tess",1,0,64,1,36,NA,NA,"Democrat" +4,NA,4224,"tess",1,0,80,1,20,NA,NA,"Democrat" +4,NA,4227,"tess",4,1,95,1,95,NA,NA,"Democrat" +4,NA,4229,"tess",2,1,93,1,93,NA,NA,"Democrat" +4,NA,4237,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,4238,"tess",2,0,73,1,27,NA,NA,"Democrat" +4,NA,4241,"tess",1,1,60,1,60,NA,NA,"Republican" +4,NA,4251,"tess",2,0,86,1,14,NA,NA,"Republican" +4,NA,4252,"tess",3,0,69,1,31,NA,NA,"Republican" +4,NA,4253,"tess",1,1,50,1,50,NA,NA,"Democrat" +4,NA,4266,"tess",4,1,84,1,84,NA,NA,"Democrat" +4,NA,4269,"tess",4,1,93,1,93,NA,NA,"Republican" +4,NA,4277,"tess",3,1,97,1,97,NA,NA,"Democrat" +4,NA,4278,"tess",3,0,99,1,1,NA,NA,"Republican" +4,NA,4282,"tess",2,1,0,1,0,NA,NA,"Republican" +4,NA,4285,"tess",4,1,100,1,100,NA,NA,"Neither" +4,NA,4290,"tess",3,1,82,1,82,NA,NA,"Democrat" +4,NA,4291,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,4298,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,4302,"tess",4,0,93,1,7,NA,NA,"Democrat" +4,NA,4307,"tess",2,1,47,1,47,NA,NA,"Republican" +4,NA,4308,"tess",3,1,2,1,2,NA,NA,"Democrat" +4,NA,4311,"tess",3,0,94,1,6,NA,NA,"Democrat" +4,NA,4322,"tess",1,0,99,1,1,NA,NA,"Republican" +4,NA,4325,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,4326,"tess",4,0,56,1,44,NA,NA,"Democrat" +4,NA,4331,"tess",1,1,70,1,70,NA,NA,"Democrat" +4,NA,4332,"tess",2,0,30,1,70,NA,NA,"Democrat" +4,NA,4334,"tess",4,0,48,1,52,NA,NA,"Republican" +4,NA,4335,"tess",1,1,50,1,50,NA,NA,"Republican" +4,NA,4349,"tess",4,0,33,1,67,NA,NA,"Democrat" +4,NA,4356,"tess",1,1,100,1,100,NA,NA,"Republican" +4,NA,4357,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,4361,"tess",2,0,16,1,84,NA,NA,"Democrat" +4,NA,4365,"tess",3,1,60,1,60,NA,NA,"Republican" +4,NA,4367,"tess",2,1,99,1,99,NA,NA,"Republican" +4,NA,4370,"tess",3,0,83,1,17,NA,NA,"Republican" +4,NA,4380,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,4390,"tess",2,0,76,1,24,NA,NA,"Democrat" +4,NA,4391,"tess",2,1,49,1,49,NA,NA,"Democrat" +4,NA,4401,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,4403,"tess",1,0,83,1,17,NA,NA,"Republican" +4,NA,4412,"tess",2,0,89,1,11,NA,NA,"Republican" +4,NA,4416,"tess",3,1,70,1,70,NA,NA,"Republican" +4,NA,4420,"tess",1,1,87,1,87,NA,NA,"Democrat" +4,NA,4427,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,4431,"tess",4,0,89,1,11,NA,NA,"Democrat" +4,NA,4441,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,4447,"tess",4,1,98,1,98,NA,NA,"Republican" +4,NA,4451,"tess",4,1,97,1,97,NA,NA,"Republican" +4,NA,4452,"tess",4,0,99,1,1,NA,NA,"Republican" +4,NA,4455,"tess",3,0,46,1,54,NA,NA,"Democrat" +4,NA,4457,"tess",1,0,80,1,20,NA,NA,"Democrat" +4,NA,4458,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,4459,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,4470,"tess",2,1,94,1,94,NA,NA,"Democrat" +4,NA,4475,"tess",3,1,9,1,9,NA,NA,"Democrat" +4,NA,4476,"tess",1,0,40,1,60,NA,NA,"Democrat" +4,NA,4480,"tess",1,1,89,1,89,NA,NA,"Democrat" +4,NA,4482,"tess",3,1,50,1,50,NA,NA,"Neither" +4,NA,4484,"tess",3,0,99,1,1,NA,NA,"Democrat" +4,NA,4486,"tess",1,1,50,1,50,NA,NA,"Republican" +4,NA,4500,"tess",3,1,80,1,80,NA,NA,"Democrat" +4,NA,4512,"tess",2,0,94,1,6,NA,NA,"Democrat" +4,NA,4516,"tess",1,1,75,1,75,NA,NA,"Democrat" +4,NA,4523,"tess",2,0,61,1,39,NA,NA,"Republican" +4,NA,4524,"tess",3,0,80,1,20,NA,NA,"Republican" +4,NA,4525,"tess",4,0,98,1,2,NA,NA,"Republican" +4,NA,4548,"tess",3,0,90,1,10,NA,NA,"Republican" +4,NA,4552,"tess",3,0,93,1,7,NA,NA,"Democrat" +4,NA,4557,"tess",4,0,78,1,22,NA,NA,"Republican" +4,NA,4561,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,4574,"tess",3,1,50,1,50,NA,NA,"Democrat" +4,NA,4581,"tess",2,0,86,1,14,NA,NA,"Democrat" +4,NA,4584,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,4587,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,4606,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,4618,"tess",3,1,91,1,91,NA,NA,"Democrat" +4,NA,4624,"tess",4,1,85,1,85,NA,NA,"Republican" +4,NA,4627,"tess",1,1,4,1,4,NA,NA,"Democrat" +4,NA,4628,"tess",2,1,50,1,50,NA,NA,"Democrat" +4,NA,4632,"tess",2,0,95,1,5,NA,NA,"Democrat" +4,NA,4633,"tess",4,0,70,1,30,NA,NA,"Democrat" +4,NA,4642,"tess",2,0,10,1,90,NA,NA,"Democrat" +4,NA,4656,"tess",2,0,55,1,45,NA,NA,"Democrat" +4,NA,4663,"tess",4,0,97,1,3,NA,NA,"Democrat" +4,NA,4674,"tess",1,1,100,1,100,NA,NA,"Republican" +4,NA,4683,"tess",1,0,90,1,10,NA,NA,"Neither" +4,NA,4690,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,4691,"tess",2,1,78,1,78,NA,NA,"Democrat" +4,NA,4700,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,4708,"tess",3,1,16,1,16,NA,NA,"Democrat" +4,NA,4713,"tess",4,0,90,1,10,NA,NA,"Neither" +4,NA,4715,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,4722,"tess",4,1,12,1,12,NA,NA,"Democrat" +4,NA,4726,"tess",1,0,76,1,24,NA,NA,"Republican" +4,NA,4737,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,4739,"tess",1,0,99,1,1,NA,NA,"Republican" +4,NA,4740,"tess",2,1,80,1,80,NA,NA,"Republican" +4,NA,4742,"tess",3,0,20,1,80,NA,NA,"Democrat" +4,NA,4770,"tess",2,0,99,1,1,NA,NA,"Democrat" +4,NA,4774,"tess",4,1,80,1,80,NA,NA,"Republican" +4,NA,4780,"tess",3,0,80,1,20,NA,NA,"Republican" +4,NA,4782,"tess",2,0,NA,1,NA,NA,NA,"Democrat" +4,NA,4785,"tess",1,1,73,1,73,NA,NA,"Republican" +4,NA,4789,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,4792,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,4793,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,4795,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,4799,"tess",4,0,73,1,27,NA,NA,"Republican" +4,NA,4800,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,4807,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,4810,"tess",1,1,77,1,77,NA,NA,"Democrat" +4,NA,4813,"tess",2,0,71,1,29,NA,NA,"Democrat" +4,NA,4816,"tess",3,1,97,1,97,NA,NA,"Democrat" +4,NA,4817,"tess",4,0,23,1,77,NA,NA,"Democrat" +4,NA,4819,"tess",1,1,77,1,77,NA,NA,"Democrat" +4,NA,4820,"tess",3,1,50,1,50,NA,NA,"Republican" +4,NA,4821,"tess",2,1,44,1,44,NA,NA,"Neither" +4,NA,4823,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,4826,"tess",2,0,89,1,11,NA,NA,"Democrat" +4,NA,4831,"tess",2,1,24,1,24,NA,NA,"Neither" +4,NA,4833,"tess",1,0,94,1,6,NA,NA,"Democrat" +4,NA,4841,"tess",3,0,97,1,3,NA,NA,"Democrat" +4,NA,4863,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,4866,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,4869,"tess",2,1,1,1,1,NA,NA,"Democrat" +4,NA,4875,"tess",3,0,96,1,4,NA,NA,"Democrat" +4,NA,4880,"tess",1,0,95,1,5,NA,NA,"Republican" +4,NA,4883,"tess",4,0,92,1,8,NA,NA,"Democrat" +4,NA,4887,"tess",1,0,77,1,23,NA,NA,"Republican" +4,NA,4897,"tess",4,0,69,1,31,NA,NA,"Democrat" +4,NA,4899,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,4903,"tess",1,1,71,1,71,NA,NA,"Democrat" +4,NA,4905,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,4906,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,4908,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,4914,"tess",2,0,40,1,60,NA,NA,"Democrat" +4,NA,4921,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,4925,"tess",1,1,60,1,60,NA,NA,"Democrat" +4,NA,4926,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,4930,"tess",3,0,99,1,1,NA,NA,"Democrat" +4,NA,4932,"tess",2,1,70,1,70,NA,NA,"Republican" +4,NA,4935,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,4940,"tess",2,1,3,1,3,NA,NA,"Republican" +4,NA,4964,"tess",2,0,71,1,29,NA,NA,"Republican" +4,NA,4966,"tess",4,0,5,1,95,NA,NA,"Republican" +4,NA,4969,"tess",2,1,31,1,31,NA,NA,"Democrat" +4,NA,4971,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,4977,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,4990,"tess",1,1,90,1,90,NA,NA,"Republican" +4,NA,4998,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,5003,"tess",2,0,75,1,25,NA,NA,"Republican" +4,NA,5004,"tess",4,0,98,1,2,NA,NA,"Democrat" +4,NA,5008,"tess",2,1,71,1,71,NA,NA,"Republican" +4,NA,5016,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,5018,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,5025,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,5027,"tess",3,1,73,1,73,NA,NA,"Republican" +4,NA,5029,"tess",1,1,74,1,74,NA,NA,"Republican" +4,NA,5048,"tess",3,0,91,1,9,NA,NA,"Republican" +4,NA,5055,"tess",3,0,97,1,3,NA,NA,"Republican" +4,NA,5058,"tess",1,1,80,1,80,NA,NA,"Republican" +4,NA,5068,"tess",2,1,50,1,50,NA,NA,"Democrat" +4,NA,5073,"tess",2,1,84,1,84,NA,NA,"Democrat" +4,NA,5086,"tess",4,0,99,1,1,NA,NA,"Neither" +4,NA,5092,"tess",1,0,30,1,70,NA,NA,"Republican" +4,NA,5101,"tess",1,1,95,1,95,NA,NA,"Democrat" +4,NA,5108,"tess",2,0,71,1,29,NA,NA,"Republican" +4,NA,5114,"tess",3,1,48,1,48,NA,NA,"Democrat" +4,NA,5116,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,5128,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,5131,"tess",2,1,46,1,46,NA,NA,"Democrat" +4,NA,5132,"tess",1,1,51,1,51,NA,NA,"Republican" +4,NA,5133,"tess",1,1,0,1,0,NA,NA,"Republican" +4,NA,5137,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,5143,"tess",1,1,89,1,89,NA,NA,"Republican" +4,NA,5144,"tess",3,1,51,1,51,NA,NA,"Democrat" +4,NA,5147,"tess",2,1,43,1,43,NA,NA,"Republican" +4,NA,5151,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,5160,"tess",2,0,20,1,80,NA,NA,"Democrat" +4,NA,5162,"tess",1,0,40,1,60,NA,NA,"Neither" +4,NA,5165,"tess",3,1,94,1,94,NA,NA,"Republican" +4,NA,5172,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,5175,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,5186,"tess",4,1,97,1,97,NA,NA,"Republican" +4,NA,5192,"tess",4,1,96,1,96,NA,NA,"Democrat" +4,NA,5195,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,5221,"tess",3,0,86,1,14,NA,NA,"Republican" +4,NA,5222,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,5224,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,5225,"tess",3,1,83,1,83,NA,NA,"Democrat" +4,NA,5228,"tess",2,0,91,1,9,NA,NA,"Democrat" +4,NA,5268,"tess",2,0,70,1,30,NA,NA,"Democrat" +4,NA,5270,"tess",4,1,80,1,80,NA,NA,"Republican" +4,NA,5275,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,5279,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,5284,"tess",3,1,4,1,4,NA,NA,"Democrat" +4,NA,5288,"tess",1,0,47,1,53,NA,NA,"Democrat" +4,NA,5289,"tess",4,0,9,1,91,NA,NA,"Democrat" +4,NA,5290,"tess",3,1,86,1,86,NA,NA,"Republican" +4,NA,5299,"tess",2,0,61,1,39,NA,NA,"Democrat" +4,NA,5301,"tess",4,0,98,1,2,NA,NA,"Democrat" +4,NA,5308,"tess",1,0,10,1,90,NA,NA,"Democrat" +4,NA,5311,"tess",1,0,45,1,55,NA,NA,"Republican" +4,NA,5314,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,5316,"tess",3,1,76,1,76,NA,NA,"Republican" +4,NA,5318,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,5319,"tess",4,1,60,1,60,NA,NA,"Democrat" +4,NA,5325,"tess",1,0,95,1,5,NA,NA,"Democrat" +4,NA,5326,"tess",1,1,13,1,13,NA,NA,"Democrat" +4,NA,5327,"tess",2,0,69,1,31,NA,NA,"Republican" +4,NA,5331,"tess",2,1,90,1,90,NA,NA,"Democrat" +4,NA,5353,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,5363,"tess",4,0,50,1,50,NA,NA,"Republican" +4,NA,5378,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,5383,"tess",4,0,10,1,90,NA,NA,"Republican" +4,NA,5385,"tess",4,1,96,1,96,NA,NA,"Democrat" +4,NA,5386,"tess",2,0,0,1,100,NA,NA,"Republican" +4,NA,5388,"tess",2,1,50,1,50,NA,NA,"Republican" +4,NA,5389,"tess",4,1,10,1,10,NA,NA,"Republican" +4,NA,5392,"tess",2,1,3,1,3,NA,NA,"Democrat" +4,NA,5393,"tess",2,0,76,1,24,NA,NA,"Republican" +4,NA,5400,"tess",2,1,50,1,50,NA,NA,"Republican" +4,NA,5406,"tess",4,1,70,1,70,NA,NA,"Republican" +4,NA,5407,"tess",2,0,70,1,30,NA,NA,"Republican" +4,NA,5411,"tess",3,1,70,1,70,NA,NA,"Republican" +4,NA,5412,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,5416,"tess",2,0,86,1,14,NA,NA,"Democrat" +4,NA,5419,"tess",3,0,0,1,100,NA,NA,"Republican" +4,NA,5423,"tess",3,0,95,1,5,NA,NA,"Democrat" +4,NA,5428,"tess",3,0,94,1,6,NA,NA,"Republican" +4,NA,5430,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,5434,"tess",3,0,27,1,73,NA,NA,"Republican" +4,NA,5438,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,5447,"tess",3,0,84,1,16,NA,NA,"Democrat" +4,NA,5448,"tess",3,1,3,1,3,NA,NA,"Democrat" +4,NA,5450,"tess",4,0,94,1,6,NA,NA,"Republican" +4,NA,5456,"tess",2,0,99,1,1,NA,NA,"Democrat" +4,NA,5462,"tess",1,0,92,1,8,NA,NA,"Republican" +4,NA,5465,"tess",1,0,90,1,10,NA,NA,"Republican" +4,NA,5470,"tess",2,0,99,1,1,NA,NA,"Democrat" +4,NA,5475,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,5480,"tess",2,1,40,1,40,NA,NA,"Republican" +4,NA,5490,"tess",1,0,70,1,30,NA,NA,"Republican" +4,NA,5500,"tess",2,1,60,1,60,NA,NA,"Democrat" +4,NA,5504,"tess",4,0,99,1,1,NA,NA,"Republican" +4,NA,5509,"tess",1,1,86,1,86,NA,NA,"Democrat" +4,NA,5515,"tess",2,0,80,1,20,NA,NA,"Republican" +4,NA,5518,"tess",3,1,50,1,50,NA,NA,"Republican" +4,NA,5519,"tess",1,0,81,1,19,NA,NA,"Democrat" +4,NA,5523,"tess",2,0,99,1,1,NA,NA,"Democrat" +4,NA,5536,"tess",3,0,82,1,18,NA,NA,"Democrat" +4,NA,5540,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,5544,"tess",4,0,96,1,4,NA,NA,"Republican" +4,NA,5551,"tess",4,1,90,1,90,NA,NA,"Republican" +4,NA,5553,"tess",2,0,40,1,60,NA,NA,"Republican" +4,NA,5559,"tess",4,0,69,1,31,NA,NA,"Republican" +4,NA,5561,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,5567,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,5569,"tess",4,1,26,1,26,NA,NA,"Democrat" +4,NA,5570,"tess",2,0,75,1,25,NA,NA,"Democrat" +4,NA,5575,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,5576,"tess",4,0,93,1,7,NA,NA,"Democrat" +4,NA,5579,"tess",1,0,35,1,65,NA,NA,"Republican" +4,NA,5581,"tess",1,0,89,1,11,NA,NA,"Democrat" +4,NA,5584,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,5586,"tess",1,1,98,1,98,NA,NA,"Democrat" +4,NA,5590,"tess",1,1,83,1,83,NA,NA,"Democrat" +4,NA,5593,"tess",2,0,50,1,50,NA,NA,"Republican" +4,NA,5594,"tess",1,1,78,1,78,NA,NA,"Republican" +4,NA,5595,"tess",1,1,0,1,0,NA,NA,"Republican" +4,NA,5597,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,5611,"tess",4,0,53,1,47,NA,NA,"Republican" +4,NA,5612,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,5613,"tess",3,1,51,1,51,NA,NA,"Republican" +4,NA,5614,"tess",4,0,61,1,39,NA,NA,"Democrat" +4,NA,5615,"tess",1,0,50,1,50,NA,NA,"Democrat" +4,NA,5617,"tess",3,0,95,1,5,NA,NA,"Democrat" +4,NA,5620,"tess",2,0,21,1,79,NA,NA,"Democrat" +4,NA,5621,"tess",3,0,99,1,1,NA,NA,"Democrat" +4,NA,5626,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,5631,"tess",3,1,70,1,70,NA,NA,"Republican" +4,NA,5633,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,5635,"tess",4,1,50,1,50,NA,NA,"Republican" +4,NA,5646,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,5648,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,5654,"tess",2,1,91,1,91,NA,NA,"Democrat" +4,NA,5657,"tess",2,0,76,1,24,NA,NA,"Democrat" +4,NA,5660,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,5663,"tess",2,1,90,1,90,NA,NA,"Democrat" +4,NA,5664,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,5669,"tess",2,0,93,1,7,NA,NA,"Neither" +4,NA,5676,"tess",4,0,79,1,21,NA,NA,"Democrat" +4,NA,5677,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,5679,"tess",2,0,35,1,65,NA,NA,"Democrat" +4,NA,5681,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,5683,"tess",1,1,69,1,69,NA,NA,"Democrat" +4,NA,5684,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,5691,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,5706,"tess",1,0,30,1,70,NA,NA,"Republican" +4,NA,5715,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,5720,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,5721,"tess",3,0,99,1,1,NA,NA,"Republican" +4,NA,5725,"tess",3,1,99,1,99,NA,NA,"Republican" +4,NA,5726,"tess",1,0,94,1,6,NA,NA,"Democrat" +4,NA,5729,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,5730,"tess",1,0,75,1,25,NA,NA,"Republican" +4,NA,5731,"tess",3,0,99,1,1,NA,NA,"Democrat" +4,NA,5732,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,5734,"tess",3,1,91,1,91,NA,NA,"Democrat" +4,NA,5735,"tess",1,0,50,1,50,NA,NA,"Republican" +4,NA,5740,"tess",2,1,0,1,0,NA,NA,"Democrat" +4,NA,5743,"tess",3,0,50,1,50,NA,NA,"Republican" +4,NA,5744,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,5745,"tess",4,1,95,1,95,NA,NA,"Democrat" +4,NA,5746,"tess",1,1,7,1,7,NA,NA,"Democrat" +4,NA,5751,"tess",3,0,95,1,5,NA,NA,"Republican" +4,NA,5752,"tess",4,0,60,1,40,NA,NA,"Democrat" +4,NA,5757,"tess",1,0,87,1,13,NA,NA,"Republican" +4,NA,5760,"tess",2,0,96,1,4,NA,NA,"Democrat" +4,NA,5763,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,5772,"tess",2,0,71,1,29,NA,NA,"Democrat" +4,NA,5783,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,5787,"tess",1,1,93,1,93,NA,NA,"Republican" +4,NA,5802,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,5803,"tess",1,0,71,1,29,NA,NA,"Republican" +4,NA,5804,"tess",3,0,79,1,21,NA,NA,"Republican" +4,NA,5810,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,5815,"tess",1,0,62,1,38,NA,NA,"Democrat" +4,NA,5820,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,5824,"tess",1,0,20,1,80,NA,NA,"Democrat" +4,NA,5825,"tess",2,1,100,1,100,NA,NA,"Republican" +4,NA,5826,"tess",1,1,100,1,100,NA,NA,"Republican" +4,NA,5833,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,5838,"tess",4,1,0,1,0,NA,NA,"Republican" +4,NA,5842,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,5844,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,5854,"tess",1,0,1,1,99,NA,NA,"Democrat" +4,NA,5868,"tess",1,0,70,1,30,NA,NA,"Democrat" +4,NA,5873,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,5874,"tess",3,1,49,1,49,NA,NA,"Democrat" +4,NA,5884,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,5885,"tess",2,0,38,1,62,NA,NA,"Republican" +4,NA,5886,"tess",1,1,94,1,94,NA,NA,"Republican" +4,NA,5889,"tess",1,0,51,1,49,NA,NA,"Democrat" +4,NA,5896,"tess",1,1,24,1,24,NA,NA,"Republican" +4,NA,5899,"tess",2,0,11,1,89,NA,NA,"Democrat" +4,NA,5901,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,5902,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,5906,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,5914,"tess",4,0,73,1,27,NA,NA,"Republican" +4,NA,5916,"tess",2,1,80,1,80,NA,NA,"Republican" +4,NA,5918,"tess",4,1,91,1,91,NA,NA,"Republican" +4,NA,5920,"tess",3,0,80,1,20,NA,NA,"Republican" +4,NA,5922,"tess",4,1,92,1,92,NA,NA,"Republican" +4,NA,5925,"tess",1,1,63,1,63,NA,NA,"Republican" +4,NA,5926,"tess",3,1,81,1,81,NA,NA,"Democrat" +4,NA,5931,"tess",4,0,2,1,98,NA,NA,"Democrat" +4,NA,5934,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,5937,"tess",1,1,98,1,98,NA,NA,"Democrat" +4,NA,5940,"tess",4,0,66,1,34,NA,NA,"Democrat" +4,NA,5946,"tess",1,0,10,1,90,NA,NA,"Republican" +4,NA,5951,"tess",4,1,94,1,94,NA,NA,"Democrat" +4,NA,5954,"tess",2,0,60,1,40,NA,NA,"Democrat" +4,NA,5958,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,5959,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,5963,"tess",1,1,89,1,89,NA,NA,"Democrat" +4,NA,5964,"tess",1,0,50,1,50,NA,NA,"Democrat" +4,NA,5978,"tess",4,0,92,1,8,NA,NA,"Democrat" +4,NA,5981,"tess",3,1,96,1,96,NA,NA,"Republican" +4,NA,5982,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,5987,"tess",3,1,50,1,50,NA,NA,"Democrat" +4,NA,5988,"tess",1,1,10,1,10,NA,NA,"Democrat" +4,NA,5990,"tess",2,1,88,1,88,NA,NA,"Democrat" +4,NA,5994,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,5996,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,5998,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,5999,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,6000,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,6008,"tess",3,1,19,1,19,NA,NA,"Republican" +4,NA,6012,"tess",4,1,80,1,80,NA,NA,"Republican" +4,NA,6013,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,6039,"tess",1,0,81,1,19,NA,NA,"Republican" +4,NA,6041,"tess",1,1,29,1,29,NA,NA,"Democrat" +4,NA,6042,"tess",1,1,99,1,99,NA,NA,"Neither" +4,NA,6045,"tess",4,1,93,1,93,NA,NA,"Republican" +4,NA,6046,"tess",2,1,98,1,98,NA,NA,"Democrat" +4,NA,6048,"tess",1,0,1,1,99,NA,NA,"Republican" +4,NA,6050,"tess",3,1,29,1,29,NA,NA,"Republican" +4,NA,6053,"tess",4,0,97,1,3,NA,NA,"Republican" +4,NA,6061,"tess",1,0,70,1,30,NA,NA,"Democrat" +4,NA,6067,"tess",1,1,50,1,50,NA,NA,"Republican" +4,NA,6068,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,6069,"tess",1,0,88,1,12,NA,NA,"Democrat" +4,NA,6070,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,6073,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,6074,"tess",3,0,27,1,73,NA,NA,"Republican" +4,NA,6077,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,6084,"tess",2,0,75,1,25,NA,NA,"Democrat" +4,NA,6087,"tess",3,1,98,1,98,NA,NA,"Democrat" +4,NA,6088,"tess",2,0,51,1,49,NA,NA,"Republican" +4,NA,6090,"tess",3,0,94,1,6,NA,NA,"Democrat" +4,NA,6095,"tess",2,0,1,1,99,NA,NA,"Democrat" +4,NA,6096,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,6097,"tess",1,1,25,1,25,NA,NA,"Republican" +4,NA,6100,"tess",1,1,51,1,51,NA,NA,"Democrat" +4,NA,6101,"tess",2,0,81,1,19,NA,NA,"Democrat" +4,NA,6110,"tess",2,1,76,1,76,NA,NA,"Republican" +4,NA,6111,"tess",1,1,84,1,84,NA,NA,"Democrat" +4,NA,6116,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,6121,"tess",4,1,92,1,92,NA,NA,"Democrat" +4,NA,6130,"tess",1,0,21,1,79,NA,NA,"Republican" +4,NA,6131,"tess",2,0,80,1,20,NA,NA,"Neither" +4,NA,6132,"tess",4,0,90,1,10,NA,NA,"Neither" +4,NA,6136,"tess",3,0,81,1,19,NA,NA,"Democrat" +4,NA,6137,"tess",4,0,91,1,9,NA,NA,"Democrat" +4,NA,6138,"tess",3,0,90,1,10,NA,NA,"Democrat" +4,NA,6142,"tess",1,0,93,1,7,NA,NA,"Neither" +4,NA,6144,"tess",2,0,77,1,23,NA,NA,"Democrat" +4,NA,6146,"tess",2,0,91,1,9,NA,NA,"Republican" +4,NA,6151,"tess",1,1,60,1,60,NA,NA,"Democrat" +4,NA,6152,"tess",3,0,30,1,70,NA,NA,"Democrat" +4,NA,6155,"tess",2,0,3,1,97,NA,NA,"Democrat" +4,NA,6158,"tess",3,0,65,1,35,NA,NA,"Republican" +4,NA,6162,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,6164,"tess",1,0,83,1,17,NA,NA,"Democrat" +4,NA,6170,"tess",1,1,82,1,82,NA,NA,"Democrat" +4,NA,6171,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,6172,"tess",2,1,1,1,1,NA,NA,"Democrat" +4,NA,6179,"tess",3,1,37,1,37,NA,NA,"Democrat" +4,NA,6180,"tess",1,0,95,1,5,NA,NA,"Republican" +4,NA,6187,"tess",4,0,97,1,3,NA,NA,"Democrat" +4,NA,6188,"tess",1,1,79,1,79,NA,NA,"Republican" +4,NA,6193,"tess",4,0,11,1,89,NA,NA,"Democrat" +4,NA,6195,"tess",2,1,50,1,50,NA,NA,"Democrat" +4,NA,6196,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,6197,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,6199,"tess",2,0,93,1,7,NA,NA,"Republican" +4,NA,6204,"tess",2,0,60,1,40,NA,NA,"Republican" +4,NA,6209,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,6215,"tess",4,1,50,1,50,NA,NA,"Republican" +4,NA,6220,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,6224,"tess",2,1,97,1,97,NA,NA,"Democrat" +4,NA,6225,"tess",2,1,83,1,83,NA,NA,"Democrat" +4,NA,6226,"tess",2,0,30,1,70,NA,NA,"Democrat" +4,NA,6227,"tess",2,1,83,1,83,NA,NA,"Democrat" +4,NA,6231,"tess",4,0,60,1,40,NA,NA,"Democrat" +4,NA,6237,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,6242,"tess",3,0,90,1,10,NA,NA,"Democrat" +4,NA,6244,"tess",1,1,75,1,75,NA,NA,"Democrat" +4,NA,6245,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,6246,"tess",1,0,60,1,40,NA,NA,"Republican" +4,NA,6248,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,6249,"tess",2,1,89,1,89,NA,NA,"Democrat" +4,NA,6251,"tess",4,0,95,1,5,NA,NA,"Democrat" +4,NA,6254,"tess",2,1,44,1,44,NA,NA,"Democrat" +4,NA,6256,"tess",3,0,99,1,1,NA,NA,"Democrat" +4,NA,6257,"tess",2,0,27,1,73,NA,NA,"Democrat" +4,NA,6258,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,6259,"tess",3,0,0,1,100,NA,NA,"Democrat" +4,NA,6261,"tess",3,1,80,1,80,NA,NA,"Democrat" +4,NA,6263,"tess",4,0,81,1,19,NA,NA,"Democrat" +4,NA,6265,"tess",2,1,97,1,97,NA,NA,"Democrat" +4,NA,6268,"tess",3,0,50,1,50,NA,NA,"Republican" +4,NA,6269,"tess",3,1,66,1,66,NA,NA,"Democrat" +4,NA,6270,"tess",4,1,40,1,40,NA,NA,"Democrat" +4,NA,6271,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,6272,"tess",2,0,20,1,80,NA,NA,"Democrat" +4,NA,6279,"tess",4,1,84,1,84,NA,NA,"Republican" +4,NA,6280,"tess",2,1,96,1,96,NA,NA,"Democrat" +4,NA,6284,"tess",1,0,40,1,60,NA,NA,"Neither" +4,NA,6292,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,6294,"tess",3,0,1,1,99,NA,NA,"Republican" +4,NA,6298,"tess",4,1,100,1,100,NA,NA,"Neither" +4,NA,6301,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,6307,"tess",2,1,50,1,50,NA,NA,"Republican" +4,NA,6312,"tess",2,1,95,1,95,NA,NA,"Republican" +4,NA,6323,"tess",2,1,91,1,91,NA,NA,"Democrat" +4,NA,6326,"tess",1,0,80,1,20,NA,NA,"Democrat" +4,NA,6329,"tess",2,1,88,1,88,NA,NA,"Democrat" +4,NA,6333,"tess",3,0,40,1,60,NA,NA,"Republican" +4,NA,6354,"tess",4,0,64,1,36,NA,NA,"Republican" +4,NA,6361,"tess",2,0,9,1,91,NA,NA,"Democrat" +4,NA,6362,"tess",1,1,4,1,4,NA,NA,"Republican" +4,NA,6366,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,6367,"tess",4,1,80,1,80,NA,NA,"Democrat" +4,NA,6372,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,6373,"tess",3,1,59,1,59,NA,NA,"Democrat" +4,NA,6376,"tess",2,1,90,1,90,NA,NA,"Democrat" +4,NA,6382,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,6383,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,6385,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,6388,"tess",3,1,12,1,12,NA,NA,"Democrat" +4,NA,6391,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,6397,"tess",3,0,99,1,1,NA,NA,"Republican" +4,NA,6401,"tess",4,1,19,1,19,NA,NA,"Democrat" +4,NA,6402,"tess",3,1,85,1,85,NA,NA,"Democrat" +4,NA,6405,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,6411,"tess",4,0,98,1,2,NA,NA,"Democrat" +4,NA,6414,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,6419,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,6424,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,6427,"tess",3,1,96,1,96,NA,NA,"Republican" +4,NA,6428,"tess",1,0,29,1,71,NA,NA,"Neither" +4,NA,6430,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,6434,"tess",2,1,96,1,96,NA,NA,"Democrat" +4,NA,6440,"tess",3,0,80,1,20,NA,NA,"Republican" +4,NA,6449,"tess",2,1,11,1,11,NA,NA,"Republican" +4,NA,6452,"tess",3,1,99,1,99,NA,NA,"Republican" +4,NA,6458,"tess",4,0,50,1,50,NA,NA,"Republican" +4,NA,6462,"tess",1,0,40,1,60,NA,NA,"Democrat" +4,NA,6463,"tess",4,0,31,1,69,NA,NA,"Democrat" +4,NA,6466,"tess",3,1,97,1,97,NA,NA,"Democrat" +4,NA,6467,"tess",1,1,32,1,32,NA,NA,"Democrat" +4,NA,6468,"tess",4,1,20,1,20,NA,NA,"Republican" +4,NA,6469,"tess",3,1,41,1,41,NA,NA,"Democrat" +4,NA,6472,"tess",3,0,98,1,2,NA,NA,"Republican" +4,NA,6473,"tess",2,1,95,1,95,NA,NA,"Republican" +4,NA,6488,"tess",3,0,30,1,70,NA,NA,"Republican" +4,NA,6489,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,6491,"tess",4,1,81,1,81,NA,NA,"Neither" +4,NA,6496,"tess",1,1,91,1,91,NA,NA,"Democrat" +4,NA,6501,"tess",2,1,50,1,50,NA,NA,"Neither" +4,NA,6506,"tess",4,0,93,1,7,NA,NA,"Democrat" +4,NA,6507,"tess",3,0,87,1,13,NA,NA,"Republican" +4,NA,6508,"tess",1,0,70,1,30,NA,NA,"Republican" +4,NA,6513,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,6516,"tess",4,1,80,1,80,NA,NA,"Republican" +4,NA,6519,"tess",4,1,49,1,49,NA,NA,"Republican" +4,NA,6521,"tess",4,1,79,1,79,NA,NA,"Democrat" +4,NA,6522,"tess",4,0,45,1,55,NA,NA,"Democrat" +4,NA,6524,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,6527,"tess",3,1,90,1,90,NA,NA,"Democrat" +4,NA,6532,"tess",4,1,97,1,97,NA,NA,"Democrat" +4,NA,6534,"tess",2,0,70,1,30,NA,NA,"Republican" +4,NA,6538,"tess",4,0,84,1,16,NA,NA,"Republican" +4,NA,6540,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,6541,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,6545,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,6547,"tess",4,1,99,1,99,NA,NA,"Republican" +4,NA,6548,"tess",3,1,96,1,96,NA,NA,"Democrat" +4,NA,6549,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,6551,"tess",3,0,55,1,45,NA,NA,"Democrat" +4,NA,6553,"tess",2,1,65,1,65,NA,NA,"Republican" +4,NA,6557,"tess",4,0,58,1,42,NA,NA,"Republican" +4,NA,6558,"tess",4,0,99,1,1,NA,NA,"Republican" +4,NA,6561,"tess",4,0,68,1,32,NA,NA,"Democrat" +4,NA,6562,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,6565,"tess",1,0,10,1,90,NA,NA,"Democrat" +4,NA,6568,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,6571,"tess",2,1,62,1,62,NA,NA,"Republican" +4,NA,6572,"tess",1,1,61,1,61,NA,NA,"Democrat" +4,NA,6581,"tess",2,1,95,1,95,NA,NA,"Democrat" +4,NA,6587,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,6588,"tess",1,1,85,1,85,NA,NA,"Democrat" +4,NA,6589,"tess",1,1,46,1,46,NA,NA,"Democrat" +4,NA,6590,"tess",4,1,79,1,79,NA,NA,"Democrat" +4,NA,6592,"tess",2,0,86,1,14,NA,NA,"Democrat" +4,NA,6593,"tess",3,1,85,1,85,NA,NA,"Democrat" +4,NA,6596,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,6599,"tess",4,1,88,1,88,NA,NA,"Democrat" +4,NA,6600,"tess",3,0,69,1,31,NA,NA,"Republican" +4,NA,6607,"tess",2,1,69,1,69,NA,NA,"Democrat" +4,NA,6608,"tess",2,0,2,1,98,NA,NA,"Republican" +4,NA,6609,"tess",3,0,11,1,89,NA,NA,"Democrat" +4,NA,6610,"tess",2,1,85,1,85,NA,NA,"Democrat" +4,NA,6611,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,6615,"tess",1,0,99,1,1,NA,NA,"Democrat" +4,NA,6617,"tess",3,0,82,1,18,NA,NA,"Democrat" +4,NA,6619,"tess",1,1,68,1,68,NA,NA,"Republican" +4,NA,6621,"tess",4,0,75,1,25,NA,NA,"Democrat" +4,NA,6625,"tess",4,1,95,1,95,NA,NA,"Democrat" +4,NA,6626,"tess",4,0,4,1,96,NA,NA,"Republican" +4,NA,6633,"tess",2,0,96,1,4,NA,NA,"Republican" +4,NA,6634,"tess",4,0,67,1,33,NA,NA,"Republican" +4,NA,6635,"tess",1,0,90,1,10,NA,NA,"Republican" +4,NA,6636,"tess",2,1,92,1,92,NA,NA,"Republican" +4,NA,6640,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,6642,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,6646,"tess",3,0,20,1,80,NA,NA,"Republican" +4,NA,6647,"tess",4,1,82,1,82,NA,NA,"Democrat" +4,NA,6648,"tess",2,0,21,1,79,NA,NA,"Democrat" +4,NA,6652,"tess",4,0,75,1,25,NA,NA,"Republican" +4,NA,6656,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,6660,"tess",3,1,95,1,95,NA,NA,"Democrat" +4,NA,6661,"tess",1,1,88,1,88,NA,NA,"Republican" +4,NA,6665,"tess",3,0,91,1,9,NA,NA,"Democrat" +4,NA,6666,"tess",4,0,78,1,22,NA,NA,"Democrat" +4,NA,6667,"tess",1,0,91,1,9,NA,NA,"Democrat" +4,NA,6668,"tess",3,0,74,1,26,NA,NA,"Democrat" +4,NA,6670,"tess",4,1,35,1,35,NA,NA,"Democrat" +4,NA,6674,"tess",3,1,90,1,90,NA,NA,"Democrat" +4,NA,6675,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,6676,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,6680,"tess",2,1,62,1,62,NA,NA,"Republican" +4,NA,6682,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,6683,"tess",4,0,0,1,100,NA,NA,"Democrat" +4,NA,6685,"tess",1,0,63,1,37,NA,NA,"Republican" +4,NA,6686,"tess",1,0,40,1,60,NA,NA,"Republican" +4,NA,6688,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,6696,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,6698,"tess",1,0,1,1,99,NA,NA,"Democrat" +4,NA,6702,"tess",3,1,90,1,90,NA,NA,"Democrat" +4,NA,6703,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,6710,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,6712,"tess",4,1,44,1,44,NA,NA,"Democrat" +4,NA,6718,"tess",2,1,70,1,70,NA,NA,"Republican" +4,NA,6720,"tess",3,1,87,1,87,NA,NA,"Republican" +4,NA,6725,"tess",4,1,93,1,93,NA,NA,"Republican" +4,NA,6729,"tess",1,1,75,1,75,NA,NA,"Democrat" +4,NA,6730,"tess",3,0,13,1,87,NA,NA,"Democrat" +4,NA,6732,"tess",4,1,12,1,12,NA,NA,"Democrat" +4,NA,6733,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,6741,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,6742,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,6748,"tess",3,1,40,1,40,NA,NA,"Democrat" +4,NA,6755,"tess",2,0,20,1,80,NA,NA,"Republican" +4,NA,6758,"tess",1,1,73,1,73,NA,NA,"Republican" +4,NA,6760,"tess",2,0,60,1,40,NA,NA,"Democrat" +4,NA,6775,"tess",2,1,28,1,28,NA,NA,"Republican" +4,NA,6777,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,6780,"tess",2,1,70,1,70,NA,NA,"Democrat" +4,NA,6782,"tess",4,0,89,1,11,NA,NA,"Republican" +4,NA,6783,"tess",1,0,21,1,79,NA,NA,"Democrat" +4,NA,6788,"tess",4,0,95,1,5,NA,NA,"Democrat" +4,NA,6791,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,6792,"tess",3,1,1,1,1,NA,NA,"Democrat" +4,NA,6795,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,6797,"tess",1,0,70,1,30,NA,NA,"Democrat" +4,NA,6802,"tess",3,1,85,1,85,NA,NA,"Democrat" +4,NA,6803,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,6804,"tess",4,1,30,1,30,NA,NA,"Republican" +4,NA,6805,"tess",1,1,50,1,50,NA,NA,"Republican" +4,NA,6814,"tess",2,1,91,1,91,NA,NA,"Democrat" +4,NA,6820,"tess",3,0,95,1,5,NA,NA,"Republican" +4,NA,6825,"tess",1,1,1,1,1,NA,NA,"Democrat" +4,NA,6827,"tess",1,0,91,1,9,NA,NA,"Democrat" +4,NA,6831,"tess",2,1,50,1,50,NA,NA,"Republican" +4,NA,6833,"tess",3,1,99,1,99,NA,NA,"Neither" +4,NA,6835,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,6837,"tess",1,0,80,1,20,NA,NA,"Democrat" +4,NA,6838,"tess",2,1,96,1,96,NA,NA,"Democrat" +4,NA,6842,"tess",2,1,95,1,95,NA,NA,"Republican" +4,NA,6843,"tess",3,1,50,1,50,NA,NA,"Republican" +4,NA,6844,"tess",1,0,41,1,59,NA,NA,"Democrat" +4,NA,6853,"tess",4,1,80,1,80,NA,NA,"Democrat" +4,NA,6864,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,6865,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,6866,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,6868,"tess",3,1,72,1,72,NA,NA,"Republican" +4,NA,6869,"tess",3,1,62,1,62,NA,NA,"Democrat" +4,NA,6881,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,6882,"tess",2,1,98,1,98,NA,NA,"Democrat" +4,NA,6883,"tess",4,1,96,1,96,NA,NA,"Democrat" +4,NA,6891,"tess",2,0,91,1,9,NA,NA,"Democrat" +4,NA,6893,"tess",2,1,76,1,76,NA,NA,"Republican" +4,NA,6897,"tess",1,0,30,1,70,NA,NA,"Democrat" +4,NA,6908,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,6909,"tess",2,1,90,1,90,NA,NA,"Republican" +4,NA,6910,"tess",1,1,54,1,54,NA,NA,"Democrat" +4,NA,6911,"tess",1,1,75,1,75,NA,NA,"Democrat" +4,NA,6912,"tess",1,1,85,1,85,NA,NA,"Democrat" +4,NA,6913,"tess",2,0,94,1,6,NA,NA,"Democrat" +4,NA,6915,"tess",4,1,10,1,10,NA,NA,"Republican" +4,NA,6920,"tess",4,1,55,1,55,NA,NA,"Republican" +4,NA,6927,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,6930,"tess",3,0,21,1,79,NA,NA,"Republican" +4,NA,6932,"tess",3,0,38,1,62,NA,NA,"Democrat" +4,NA,6935,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,6936,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,6938,"tess",1,0,88,1,12,NA,NA,"Democrat" +4,NA,6951,"tess",2,0,33,1,67,NA,NA,"Democrat" +4,NA,6956,"tess",3,0,90,1,10,NA,NA,"Democrat" +4,NA,6963,"tess",4,1,65,1,65,NA,NA,"Democrat" +4,NA,6971,"tess",1,0,91,1,9,NA,NA,"Republican" +4,NA,6984,"tess",3,1,60,1,60,NA,NA,"Republican" +4,NA,6997,"tess",3,0,80,1,20,NA,NA,"Republican" +4,NA,6998,"tess",1,0,90,1,10,NA,NA,"Republican" +4,NA,7003,"tess",1,1,90,1,90,NA,NA,"Republican" +4,NA,7011,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,7022,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,7023,"tess",3,1,80,1,80,NA,NA,"Democrat" +4,NA,7027,"tess",4,1,61,1,61,NA,NA,"Republican" +4,NA,7031,"tess",3,1,5,1,5,NA,NA,"Republican" +4,NA,7036,"tess",2,0,55,1,45,NA,NA,"Republican" +4,NA,7046,"tess",3,0,59,1,41,NA,NA,"Democrat" +4,NA,7048,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,7049,"tess",3,1,27,1,27,NA,NA,"Democrat" +4,NA,7054,"tess",3,1,95,1,95,NA,NA,"Democrat" +4,NA,7055,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,7060,"tess",3,1,10,1,10,NA,NA,"Democrat" +4,NA,7061,"tess",1,0,70,1,30,NA,NA,"Democrat" +4,NA,7066,"tess",3,0,19,1,81,NA,NA,"Democrat" +4,NA,7073,"tess",2,0,99,1,1,NA,NA,"Republican" +4,NA,7078,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,7083,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,7087,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,7088,"tess",3,1,82,1,82,NA,NA,"Democrat" +4,NA,7094,"tess",3,1,70,1,70,NA,NA,"Republican" +4,NA,7099,"tess",2,0,14,1,86,NA,NA,"Democrat" +4,NA,7104,"tess",4,0,91,1,9,NA,NA,"Republican" +4,NA,7106,"tess",1,0,50,1,50,NA,NA,"Republican" +4,NA,7122,"tess",1,1,93,1,93,NA,NA,"Democrat" +4,NA,7124,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,7125,"tess",4,0,74,1,26,NA,NA,"Republican" +4,NA,7127,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,7128,"tess",2,1,100,1,100,NA,NA,"Republican" +4,NA,7133,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,7140,"tess",3,1,87,1,87,NA,NA,"Republican" +4,NA,7148,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,7153,"tess",2,1,98,1,98,NA,NA,"Democrat" +4,NA,7158,"tess",1,0,25,1,75,NA,NA,"Democrat" +4,NA,7161,"tess",4,0,81,1,19,NA,NA,"Democrat" +4,NA,7164,"tess",2,0,91,1,9,NA,NA,"Neither" +4,NA,7166,"tess",3,1,97,1,97,NA,NA,"Neither" +4,NA,7174,"tess",2,1,75,1,75,NA,NA,"Democrat" +4,NA,7182,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,7186,"tess",1,1,65,1,65,NA,NA,"Democrat" +4,NA,7190,"tess",2,0,93,1,7,NA,NA,"Democrat" +4,NA,7197,"tess",4,0,98,1,2,NA,NA,"Republican" +4,NA,7199,"tess",2,0,50,1,50,NA,NA,"Republican" +4,NA,7201,"tess",3,0,0,1,100,NA,NA,"Democrat" +4,NA,7210,"tess",3,1,1,1,1,NA,NA,"Neither" +4,NA,7216,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,7218,"tess",3,0,67,1,33,NA,NA,"Democrat" +4,NA,7222,"tess",4,0,20,1,80,NA,NA,"Democrat" +4,NA,7223,"tess",4,0,13,1,87,NA,NA,"Democrat" +4,NA,7224,"tess",2,1,54,1,54,NA,NA,"Republican" +4,NA,7225,"tess",1,0,50,1,50,NA,NA,"Democrat" +4,NA,7226,"tess",1,1,73,1,73,NA,NA,"Democrat" +4,NA,7228,"tess",3,1,40,1,40,NA,NA,"Democrat" +4,NA,7230,"tess",2,1,94,1,94,NA,NA,"Republican" +4,NA,7231,"tess",1,1,30,1,30,NA,NA,"Democrat" +4,NA,7235,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,7239,"tess",1,1,40,1,40,NA,NA,"Republican" +4,NA,7240,"tess",1,0,86,1,14,NA,NA,"Democrat" +4,NA,7241,"tess",2,1,100,1,100,NA,NA,"Neither" +4,NA,7248,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,7252,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,7253,"tess",4,0,54,1,46,NA,NA,"Neither" +4,NA,7266,"tess",4,1,10,1,10,NA,NA,"Republican" +4,NA,7273,"tess",4,1,39,1,39,NA,NA,"Democrat" +4,NA,7275,"tess",4,1,95,1,95,NA,NA,"Republican" +4,NA,7276,"tess",1,0,95,1,5,NA,NA,"Republican" +4,NA,7280,"tess",2,1,99,1,99,NA,NA,"Neither" +4,NA,7286,"tess",3,1,0,1,0,NA,NA,"Republican" +4,NA,7287,"tess",2,0,10,1,90,NA,NA,"Republican" +4,NA,7289,"tess",1,1,63,1,63,NA,NA,"Democrat" +4,NA,7297,"tess",4,0,95,1,5,NA,NA,"Democrat" +4,NA,7303,"tess",3,0,76,1,24,NA,NA,"Republican" +4,NA,7307,"tess",2,1,97,1,97,NA,NA,"Democrat" +4,NA,7311,"tess",4,1,49,1,49,NA,NA,"Republican" +4,NA,7315,"tess",2,1,84,1,84,NA,NA,"Neither" +4,NA,7323,"tess",3,0,0,1,100,NA,NA,"Republican" +4,NA,7325,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,7330,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,7338,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,7341,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,7353,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,7356,"tess",2,1,74,1,74,NA,NA,"Democrat" +4,NA,7360,"tess",1,0,76,1,24,NA,NA,"Democrat" +4,NA,7368,"tess",1,1,1,1,1,NA,NA,"Democrat" +4,NA,7370,"tess",1,1,99,1,99,NA,NA,"Republican" +4,NA,7373,"tess",1,1,86,1,86,NA,NA,"Democrat" +4,NA,7381,"tess",4,0,98,1,2,NA,NA,"Republican" +4,NA,7388,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,7395,"tess",2,0,91,1,9,NA,NA,"Republican" +4,NA,7397,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,7398,"tess",1,1,50,1,50,NA,NA,"Democrat" +4,NA,7404,"tess",2,0,3,1,97,NA,NA,"Democrat" +4,NA,7407,"tess",2,1,70,1,70,NA,NA,"Republican" +4,NA,7409,"tess",1,0,30,1,70,NA,NA,"Democrat" +4,NA,7412,"tess",3,0,97,1,3,NA,NA,"Republican" +4,NA,7418,"tess",3,1,97,1,97,NA,NA,"Democrat" +4,NA,7425,"tess",1,1,20,1,20,NA,NA,"Democrat" +4,NA,7427,"tess",2,0,11,1,89,NA,NA,"Democrat" +4,NA,7432,"tess",3,0,75,1,25,NA,NA,"Democrat" +4,NA,7437,"tess",4,1,75,1,75,NA,NA,"Democrat" +4,NA,7440,"tess",1,1,80,1,80,NA,NA,"Republican" +4,NA,7441,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,7446,"tess",2,0,85,1,15,NA,NA,"Democrat" +4,NA,7448,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,7450,"tess",4,0,85,1,15,NA,NA,"Democrat" +4,NA,7452,"tess",3,0,51,1,49,NA,NA,"Democrat" +4,NA,7453,"tess",3,1,40,1,40,NA,NA,"Republican" +4,NA,7466,"tess",2,1,80,1,80,NA,NA,"Republican" +4,NA,7470,"tess",4,0,88,1,12,NA,NA,"Republican" +4,NA,7472,"tess",3,0,99,1,1,NA,NA,"Republican" +4,NA,7475,"tess",2,1,90,1,90,NA,NA,"Neither" +4,NA,7477,"tess",3,1,50,1,50,NA,NA,"Republican" +4,NA,7479,"tess",1,1,0,1,0,NA,NA,"Democrat" +4,NA,7486,"tess",4,1,92,1,92,NA,NA,"Democrat" +4,NA,7494,"tess",1,1,71,1,71,NA,NA,"Republican" +4,NA,7497,"tess",3,0,94,1,6,NA,NA,"Democrat" +4,NA,7498,"tess",1,1,77,1,77,NA,NA,"Republican" +4,NA,7501,"tess",1,0,80,1,20,NA,NA,"Republican" +4,NA,7504,"tess",1,0,70,1,30,NA,NA,"Republican" +4,NA,7506,"tess",4,1,91,1,91,NA,NA,"Democrat" +4,NA,7524,"tess",4,0,58,1,42,NA,NA,"Democrat" +4,NA,7525,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,7528,"tess",2,0,50,1,50,NA,NA,"Republican" +4,NA,7534,"tess",2,0,99,1,1,NA,NA,"Democrat" +4,NA,7539,"tess",2,1,96,1,96,NA,NA,"Republican" +4,NA,7542,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,7543,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,7546,"tess",3,0,96,1,4,NA,NA,"Republican" +4,NA,7556,"tess",1,1,50,1,50,NA,NA,"Democrat" +4,NA,7558,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,7563,"tess",1,0,91,1,9,NA,NA,"Democrat" +4,NA,7564,"tess",4,1,95,1,95,NA,NA,"Democrat" +4,NA,7569,"tess",2,1,100,1,100,NA,NA,"Republican" +4,NA,7573,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,7577,"tess",4,1,80,1,80,NA,NA,"Democrat" +4,NA,7580,"tess",3,0,94,1,6,NA,NA,"Republican" +4,NA,7584,"tess",3,1,84,1,84,NA,NA,"Republican" +4,NA,7586,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,7587,"tess",1,0,96,1,4,NA,NA,"Democrat" +4,NA,7588,"tess",1,1,99,1,99,NA,NA,"Republican" +4,NA,7590,"tess",2,1,100,1,100,NA,NA,"Republican" +4,NA,7593,"tess",1,1,39,1,39,NA,NA,"Republican" +4,NA,7594,"tess",4,1,60,1,60,NA,NA,"Democrat" +4,NA,7597,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,7600,"tess",1,0,31,1,69,NA,NA,"Republican" +4,NA,7603,"tess",2,0,11,1,89,NA,NA,"Democrat" +4,NA,7605,"tess",3,1,100,1,100,NA,NA,"Republican" +4,NA,7607,"tess",4,0,80,1,20,NA,NA,"Neither" +4,NA,7608,"tess",2,1,80,1,80,NA,NA,"Republican" +4,NA,7615,"tess",2,1,98,1,98,NA,NA,"Republican" +4,NA,7622,"tess",1,0,99,1,1,NA,NA,"Democrat" +4,NA,7623,"tess",3,0,24,1,76,NA,NA,"Republican" +4,NA,7630,"tess",3,0,81,1,19,NA,NA,"Democrat" +4,NA,7631,"tess",3,1,27,1,27,NA,NA,"Democrat" +4,NA,7634,"tess",2,1,99,1,99,NA,NA,"Republican" +4,NA,7640,"tess",4,1,79,1,79,NA,NA,"Republican" +4,NA,7641,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,7656,"tess",1,0,60,1,40,NA,NA,"Republican" +4,NA,7659,"tess",3,0,99,1,1,NA,NA,"Republican" +4,NA,7662,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,7667,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,7668,"tess",1,0,75,1,25,NA,NA,"Republican" +4,NA,7688,"tess",2,0,78,1,22,NA,NA,"Democrat" +4,NA,7694,"tess",4,0,11,1,89,NA,NA,"Republican" +4,NA,7696,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,7699,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,7702,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,7711,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,7712,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,7717,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,7722,"tess",1,0,90,1,10,NA,NA,"Republican" +4,NA,7739,"tess",2,0,0,1,100,NA,NA,"Republican" +4,NA,7741,"tess",1,1,99,1,99,NA,NA,"Republican" +4,NA,7747,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,7754,"tess",1,1,81,1,81,NA,NA,"Neither" +4,NA,7759,"tess",1,1,99,1,99,NA,NA,"Democrat" +4,NA,7778,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,7783,"tess",2,0,69,1,31,NA,NA,"Republican" +4,NA,7784,"tess",4,1,95,1,95,NA,NA,"Neither" +4,NA,7786,"tess",3,1,19,1,19,NA,NA,"Democrat" +4,NA,7789,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,7792,"tess",4,1,80,1,80,NA,NA,"Neither" +4,NA,7793,"tess",2,1,90,1,90,NA,NA,"Republican" +4,NA,7799,"tess",4,0,90,1,10,NA,NA,"Democrat" +4,NA,7819,"tess",2,0,84,1,16,NA,NA,"Democrat" +4,NA,7820,"tess",1,0,80,1,20,NA,NA,"Republican" +4,NA,7822,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,7826,"tess",2,0,70,1,30,NA,NA,"Republican" +4,NA,7837,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,7844,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,7854,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,7856,"tess",2,0,71,1,29,NA,NA,"Republican" +4,NA,7861,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,7864,"tess",4,1,65,1,65,NA,NA,"Republican" +4,NA,7872,"tess",2,1,51,1,51,NA,NA,"Democrat" +4,NA,7880,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,7884,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,7891,"tess",1,1,99,1,99,NA,NA,"Republican" +4,NA,7906,"tess",2,1,90,1,90,NA,NA,"Republican" +4,NA,7908,"tess",3,1,99,1,99,NA,NA,"Republican" +4,NA,7910,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,7918,"tess",3,1,95,1,95,NA,NA,"Democrat" +4,NA,7922,"tess",2,1,92,1,92,NA,NA,"Democrat" +4,NA,7930,"tess",4,1,77,1,77,NA,NA,"Republican" +4,NA,7936,"tess",3,0,55,1,45,NA,NA,"Democrat" +4,NA,7942,"tess",4,1,73,1,73,NA,NA,"Republican" +4,NA,7946,"tess",1,0,50,1,50,NA,NA,"Democrat" +4,NA,7951,"tess",3,0,10,1,90,NA,NA,"Republican" +4,NA,7957,"tess",1,1,5,1,5,NA,NA,"Democrat" +4,NA,7959,"tess",3,1,95,1,95,NA,NA,"Democrat" +4,NA,7960,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,7965,"tess",1,0,18,1,82,NA,NA,"Democrat" +4,NA,7967,"tess",2,1,82,1,82,NA,NA,"Democrat" +4,NA,7968,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,7973,"tess",4,1,90,1,90,NA,NA,"Republican" +4,NA,7982,"tess",1,1,75,1,75,NA,NA,"Democrat" +4,NA,7983,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,7987,"tess",3,0,15,1,85,NA,NA,"Democrat" +4,NA,7988,"tess",4,1,61,1,61,NA,NA,"Democrat" +4,NA,7991,"tess",4,1,80,1,80,NA,NA,"Republican" +4,NA,7995,"tess",2,1,73,1,73,NA,NA,"Republican" +4,NA,7998,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,8000,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,8001,"tess",4,0,10,1,90,NA,NA,"Republican" +4,NA,8010,"tess",4,1,92,1,92,NA,NA,"Republican" +4,NA,8011,"tess",3,0,12,1,88,NA,NA,"Republican" +4,NA,8019,"tess",4,0,81,1,19,NA,NA,"Republican" +4,NA,8023,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,8041,"tess",4,1,40,1,40,NA,NA,"Republican" +4,NA,8042,"tess",4,1,75,1,75,NA,NA,"Republican" +4,NA,8049,"tess",2,0,80,1,20,NA,NA,"Republican" +4,NA,8050,"tess",4,0,100,1,0,NA,NA,"Neither" +4,NA,8055,"tess",2,1,20,1,20,NA,NA,"Democrat" +4,NA,8061,"tess",2,0,80,1,20,NA,NA,"Republican" +4,NA,8062,"tess",3,0,20,1,80,NA,NA,"Democrat" +4,NA,8063,"tess",3,0,99,1,1,NA,NA,"Republican" +4,NA,8064,"tess",4,1,52,1,52,NA,NA,"Democrat" +4,NA,8065,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,8069,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,8078,"tess",2,0,71,1,29,NA,NA,"Republican" +4,NA,8079,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,8081,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,8095,"tess",4,0,0,1,100,NA,NA,"Democrat" +4,NA,8096,"tess",1,0,99,1,1,NA,NA,"Republican" +4,NA,8097,"tess",3,1,75,1,75,NA,NA,"Republican" +4,NA,8101,"tess",4,0,77,1,23,NA,NA,"Republican" +4,NA,8104,"tess",2,1,25,1,25,NA,NA,"Republican" +4,NA,8110,"tess",2,1,85,1,85,NA,NA,"Democrat" +4,NA,8112,"tess",2,1,50,1,50,NA,NA,"Democrat" +4,NA,8116,"tess",4,1,95,1,95,NA,NA,"Democrat" +4,NA,8127,"tess",4,0,86,1,14,NA,NA,"Republican" +4,NA,8134,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,8141,"tess",3,0,0,1,100,NA,NA,"Democrat" +4,NA,8142,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,8146,"tess",1,1,99,1,99,NA,NA,"Republican" +4,NA,8152,"tess",4,0,71,1,29,NA,NA,"Democrat" +4,NA,8159,"tess",4,0,20,1,80,NA,NA,"Neither" +4,NA,8160,"tess",4,1,88,1,88,NA,NA,"Democrat" +4,NA,8170,"tess",2,0,11,1,89,NA,NA,"Democrat" +4,NA,8176,"tess",4,0,0,1,100,NA,NA,"Democrat" +4,NA,8181,"tess",2,1,90,1,90,NA,NA,"Republican" +4,NA,8190,"tess",1,0,89,1,11,NA,NA,"Democrat" +4,NA,8191,"tess",3,1,85,1,85,NA,NA,"Democrat" +4,NA,8196,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,8197,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,8199,"tess",3,0,90,1,10,NA,NA,"Democrat" +4,NA,8201,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,8202,"tess",2,0,27,1,73,NA,NA,"Republican" +4,NA,8203,"tess",2,1,84,1,84,NA,NA,"Republican" +4,NA,8207,"tess",1,1,94,1,94,NA,NA,"Democrat" +4,NA,8218,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,8221,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,8224,"tess",2,1,98,1,98,NA,NA,"Republican" +4,NA,8228,"tess",1,0,81,1,19,NA,NA,"Democrat" +4,NA,8232,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,8244,"tess",2,1,99,1,99,NA,NA,"Republican" +4,NA,8247,"tess",4,0,93,1,7,NA,NA,"Republican" +4,NA,8249,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,8250,"tess",4,1,70,1,70,NA,NA,"Democrat" +4,NA,8252,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,8253,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,8260,"tess",2,0,5,1,95,NA,NA,"Neither" +4,NA,8265,"tess",4,1,97,1,97,NA,NA,"Republican" +4,NA,8267,"tess",4,1,90,1,90,NA,NA,"Republican" +4,NA,8272,"tess",4,1,96,1,96,NA,NA,"Democrat" +4,NA,8274,"tess",2,0,99,1,1,NA,NA,"Republican" +4,NA,8276,"tess",3,0,50,1,50,NA,NA,"Republican" +4,NA,8280,"tess",1,1,48,1,48,NA,NA,"Democrat" +4,NA,8285,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,8287,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,8308,"tess",4,1,99,1,99,NA,NA,"Democrat" +4,NA,8317,"tess",3,1,99,1,99,NA,NA,"Republican" +4,NA,8324,"tess",4,1,90,1,90,NA,NA,"Republican" +4,NA,8327,"tess",2,1,90,1,90,NA,NA,"Democrat" +4,NA,8331,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,8333,"tess",1,1,14,1,14,NA,NA,"Democrat" +4,NA,8335,"tess",4,1,93,1,93,NA,NA,"Republican" +4,NA,8337,"tess",4,0,99,1,1,NA,NA,"Republican" +4,NA,8344,"tess",3,1,93,1,93,NA,NA,"Democrat" +4,NA,8345,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,8347,"tess",2,1,59,1,59,NA,NA,"Republican" +4,NA,8356,"tess",1,1,100,1,100,NA,NA,"Neither" +4,NA,8360,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,8361,"tess",1,1,50,1,50,NA,NA,"Republican" +4,NA,8371,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,8374,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,8378,"tess",2,1,100,1,100,NA,NA,"Republican" +4,NA,8386,"tess",2,1,82,1,82,NA,NA,"Republican" +4,NA,8397,"tess",1,1,80,1,80,NA,NA,"Republican" +4,NA,8400,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,8405,"tess",1,0,76,1,24,NA,NA,"Democrat" +4,NA,8406,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,8425,"tess",2,1,91,1,91,NA,NA,"Democrat" +4,NA,8432,"tess",1,1,97,1,97,NA,NA,"Democrat" +4,NA,8435,"tess",1,0,89,1,11,NA,NA,"Republican" +4,NA,8449,"tess",2,0,71,1,29,NA,NA,"Democrat" +4,NA,8452,"tess",2,1,0,1,0,NA,NA,"Republican" +4,NA,8455,"tess",1,1,1,1,1,NA,NA,"Republican" +4,NA,8466,"tess",4,1,90,1,90,NA,NA,"Democrat" +4,NA,8468,"tess",3,1,90,1,90,NA,NA,"Democrat" +4,NA,8476,"tess",2,0,70,1,30,NA,NA,"Democrat" +4,NA,8489,"tess",2,1,10,1,10,NA,NA,"Democrat" +4,NA,8503,"tess",4,0,30,1,70,NA,NA,"Republican" +4,NA,8507,"tess",4,1,50,1,50,NA,NA,"Democrat" +4,NA,8522,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,8541,"tess",4,0,92,1,8,NA,NA,"Republican" +4,NA,8544,"tess",2,1,79,1,79,NA,NA,"Democrat" +4,NA,8545,"tess",1,1,83,1,83,NA,NA,"Republican" +4,NA,8550,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,8552,"tess",2,1,10,1,10,NA,NA,"Democrat" +4,NA,8556,"tess",2,0,70,1,30,NA,NA,"Democrat" +4,NA,8558,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,8564,"tess",2,0,100,1,0,NA,NA,"Republican" +4,NA,8568,"tess",3,1,96,1,96,NA,NA,"Democrat" +4,NA,8573,"tess",1,1,48,1,48,NA,NA,"Democrat" +4,NA,8577,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,8579,"tess",2,0,50,1,50,NA,NA,"Democrat" +4,NA,8583,"tess",2,0,94,1,6,NA,NA,"Democrat" +4,NA,8589,"tess",1,1,50,1,50,NA,NA,"Democrat" +4,NA,8590,"tess",3,0,95,1,5,NA,NA,"Republican" +4,NA,8600,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,8607,"tess",2,1,85,1,85,NA,NA,"Republican" +4,NA,8608,"tess",2,1,94,1,94,NA,NA,"Republican" +4,NA,8618,"tess",4,0,80,1,20,NA,NA,"Republican" +4,NA,8619,"tess",3,0,100,1,0,NA,NA,"Republican" +4,NA,8638,"tess",3,1,90,1,90,NA,NA,"Neither" +4,NA,8640,"tess",3,1,90,1,90,NA,NA,"Democrat" +4,NA,8651,"tess",1,0,74,1,26,NA,NA,"Republican" +4,NA,8659,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,8669,"tess",2,1,45,1,45,NA,NA,"Democrat" +4,NA,8680,"tess",1,0,90,1,10,NA,NA,"Republican" +4,NA,8685,"tess",4,0,77,1,23,NA,NA,"Democrat" +4,NA,8686,"tess",4,1,1,1,1,NA,NA,"Republican" +4,NA,8706,"tess",4,1,75,1,75,NA,NA,"Republican" +4,NA,8707,"tess",1,1,95,1,95,NA,NA,"Republican" +4,NA,8709,"tess",2,0,52,1,48,NA,NA,"Republican" +4,NA,8710,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,8713,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,8714,"tess",3,0,97,1,3,NA,NA,"Democrat" +4,NA,8717,"tess",1,0,95,1,5,NA,NA,"Republican" +4,NA,8719,"tess",1,0,50,1,50,NA,NA,"Republican" +4,NA,8724,"tess",4,1,94,1,94,NA,NA,"Democrat" +4,NA,8727,"tess",4,1,60,1,60,NA,NA,"Democrat" +4,NA,8728,"tess",4,0,76,1,24,NA,NA,"Republican" +4,NA,8731,"tess",4,0,87,1,13,NA,NA,"Democrat" +4,NA,8739,"tess",3,0,67,1,33,NA,NA,"Republican" +4,NA,8746,"tess",2,0,51,1,49,NA,NA,"Republican" +4,NA,8755,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,8763,"tess",2,0,80,1,20,NA,NA,"Republican" +4,NA,8765,"tess",3,1,70,1,70,NA,NA,"Democrat" +4,NA,8768,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,8777,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,8779,"tess",1,0,99,1,1,NA,NA,"Republican" +4,NA,8782,"tess",3,1,53,1,53,NA,NA,"Republican" +4,NA,8790,"tess",3,0,75,1,25,NA,NA,"Republican" +4,NA,8797,"tess",2,0,70,1,30,NA,NA,"Republican" +4,NA,8806,"tess",4,0,9,1,91,NA,NA,"Neither" +4,NA,8810,"tess",4,1,89,1,89,NA,NA,"Democrat" +4,NA,8814,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,8816,"tess",4,1,80,1,80,NA,NA,"Democrat" +4,NA,8819,"tess",2,1,99,1,99,NA,NA,"Republican" +4,NA,8821,"tess",1,0,91,1,9,NA,NA,"Republican" +4,NA,8826,"tess",2,1,36,1,36,NA,NA,"Republican" +4,NA,8836,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,8837,"tess",2,1,99,1,99,NA,NA,"Democrat" +4,NA,8848,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,8853,"tess",3,0,78,1,22,NA,NA,"Democrat" +4,NA,8866,"tess",1,0,80,1,20,NA,NA,"Democrat" +4,NA,8877,"tess",3,1,88,1,88,NA,NA,"Republican" +4,NA,8881,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,8888,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,8890,"tess",3,1,94,1,94,NA,NA,"Republican" +4,NA,8892,"tess",1,0,20,1,80,NA,NA,"Democrat" +4,NA,8893,"tess",4,0,50,1,50,NA,NA,"Democrat" +4,NA,8894,"tess",3,1,71,1,71,NA,NA,"Democrat" +4,NA,8900,"tess",4,1,100,1,100,NA,NA,"Republican" +4,NA,8903,"tess",4,1,70,1,70,NA,NA,"Republican" +4,NA,8925,"tess",4,0,63,1,37,NA,NA,"Democrat" +4,NA,8932,"tess",3,1,100,1,100,NA,NA,"Democrat" +4,NA,8933,"tess",1,1,88,1,88,NA,NA,"Republican" +4,NA,8934,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,8939,"tess",3,0,10,1,90,NA,NA,"Democrat" +4,NA,8941,"tess",4,1,68,1,68,NA,NA,"Neither" +4,NA,8946,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,8953,"tess",3,0,48,1,52,NA,NA,"Republican" +4,NA,8956,"tess",2,0,94,1,6,NA,NA,"Republican" +4,NA,8970,"tess",3,0,10,1,90,NA,NA,"Republican" +4,NA,8973,"tess",3,1,99,1,99,NA,NA,"Republican" +4,NA,8981,"tess",2,0,10,1,90,NA,NA,"Democrat" +4,NA,8983,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,8988,"tess",1,0,89,1,11,NA,NA,"Republican" +4,NA,8990,"tess",1,1,0,1,0,NA,NA,"Republican" +4,NA,8995,"tess",2,0,90,1,10,NA,NA,"Republican" +4,NA,8999,"tess",1,0,100,1,0,NA,NA,"Democrat" +4,NA,9007,"tess",3,0,21,1,79,NA,NA,"Democrat" +4,NA,9018,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,9024,"tess",1,1,60,1,60,NA,NA,"Democrat" +4,NA,9025,"tess",2,1,89,1,89,NA,NA,"Republican" +4,NA,9029,"tess",3,0,50,1,50,NA,NA,"Neither" +4,NA,9034,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,9038,"tess",2,1,82,1,82,NA,NA,"Neither" +4,NA,9050,"tess",2,0,10,1,90,NA,NA,"Republican" +4,NA,9057,"tess",1,0,100,1,0,NA,NA,"Republican" +4,NA,9065,"tess",1,1,60,1,60,NA,NA,"Neither" +4,NA,9066,"tess",2,0,50,1,50,NA,NA,"Republican" +4,NA,9068,"tess",4,0,91,1,9,NA,NA,"Democrat" +4,NA,9070,"tess",1,1,91,1,91,NA,NA,"Democrat" +4,NA,9074,"tess",3,1,90,1,90,NA,NA,"Republican" +4,NA,9075,"tess",1,0,99,1,1,NA,NA,"Democrat" +4,NA,9081,"tess",3,1,60,1,60,NA,NA,"Republican" +4,NA,9083,"tess",4,0,12,1,88,NA,NA,"Neither" +4,NA,9084,"tess",3,0,80,1,20,NA,NA,"Democrat" +4,NA,9101,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,9105,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,9106,"tess",4,1,41,1,41,NA,NA,"Republican" +4,NA,9108,"tess",2,0,60,1,40,NA,NA,"Democrat" +4,NA,9109,"tess",2,0,85,1,15,NA,NA,"Democrat" +4,NA,9119,"tess",4,0,10,1,90,NA,NA,"Democrat" +4,NA,9120,"tess",3,0,51,1,49,NA,NA,"Democrat" +4,NA,9135,"tess",1,0,82,1,18,NA,NA,"Democrat" +4,NA,9146,"tess",1,0,97,1,3,NA,NA,"Republican" +4,NA,9148,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,9149,"tess",1,0,9,1,91,NA,NA,"Democrat" +4,NA,9150,"tess",1,1,11,1,11,NA,NA,"Republican" +4,NA,9152,"tess",4,0,74,1,26,NA,NA,"Democrat" +4,NA,9153,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,9154,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,9155,"tess",1,1,79,1,79,NA,NA,"Democrat" +4,NA,9166,"tess",2,1,98,1,98,NA,NA,"Republican" +4,NA,9169,"tess",3,0,70,1,30,NA,NA,"Republican" +4,NA,9184,"tess",2,0,88,1,12,NA,NA,"Democrat" +4,NA,9189,"tess",4,1,90,1,90,NA,NA,"Republican" +4,NA,9193,"tess",3,1,41,1,41,NA,NA,"Democrat" +4,NA,9198,"tess",2,0,98,1,2,NA,NA,"Democrat" +4,NA,9199,"tess",3,0,47,1,53,NA,NA,"Republican" +4,NA,9210,"tess",2,1,54,1,54,NA,NA,"Democrat" +4,NA,9211,"tess",3,1,91,1,91,NA,NA,"Republican" +4,NA,9230,"tess",2,0,100,1,0,NA,NA,"Democrat" +4,NA,9235,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,9236,"tess",4,0,64,1,36,NA,NA,"Republican" +4,NA,9239,"tess",1,0,99,1,1,NA,NA,"Democrat" +4,NA,9245,"tess",3,0,90,1,10,NA,NA,"Republican" +4,NA,9247,"tess",2,1,100,1,100,NA,NA,"Democrat" +4,NA,9260,"tess",2,1,29,1,29,NA,NA,"Republican" +4,NA,9267,"tess",3,0,97,1,3,NA,NA,"Democrat" +4,NA,9269,"tess",3,1,75,1,75,NA,NA,"Democrat" +4,NA,9279,"tess",2,0,79,1,21,NA,NA,"Democrat" +4,NA,9281,"tess",2,1,91,1,91,NA,NA,"Republican" +4,NA,9284,"tess",1,0,70,1,30,NA,NA,"Republican" +4,NA,9286,"tess",2,0,93,1,7,NA,NA,"Democrat" +4,NA,9292,"tess",2,1,75,1,75,NA,NA,"Republican" +4,NA,9295,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,9297,"tess",3,0,50,1,50,NA,NA,"Republican" +4,NA,9298,"tess",2,0,80,1,20,NA,NA,"Democrat" +4,NA,9301,"tess",4,1,30,1,30,NA,NA,"Democrat" +4,NA,9302,"tess",4,1,95,1,95,NA,NA,"Democrat" +4,NA,9314,"tess",4,0,53,1,47,NA,NA,"Republican" +4,NA,9316,"tess",2,0,48,1,52,NA,NA,"Republican" +4,NA,9319,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,9332,"tess",4,1,20,1,20,NA,NA,"Democrat" +4,NA,9337,"tess",2,1,90,1,90,NA,NA,"Republican" +4,NA,9340,"tess",2,0,69,1,31,NA,NA,"Democrat" +4,NA,9342,"tess",3,1,70,1,70,NA,NA,"Republican" +4,NA,9346,"tess",2,0,40,1,60,NA,NA,"Democrat" +4,NA,9352,"tess",1,0,49,1,51,NA,NA,"Democrat" +4,NA,9360,"tess",4,1,90,1,90,NA,NA,"Republican" +4,NA,9366,"tess",4,1,10,1,10,NA,NA,"Republican" +4,NA,9372,"tess",3,0,9,1,91,NA,NA,"Democrat" +4,NA,9383,"tess",1,0,28,1,72,NA,NA,"Republican" +4,NA,9395,"tess",1,1,10,1,10,NA,NA,"Democrat" +4,NA,9398,"tess",1,1,52,1,52,NA,NA,"Republican" +4,NA,9412,"tess",1,1,99,1,99,NA,NA,"Republican" +4,NA,9419,"tess",3,0,49,1,51,NA,NA,"Democrat" +4,NA,9420,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,9422,"tess",3,0,100,1,0,NA,NA,"Democrat" +4,NA,9424,"tess",3,0,10,1,90,NA,NA,"Democrat" +4,NA,9425,"tess",2,1,60,1,60,NA,NA,"Democrat" +4,NA,9431,"tess",3,0,90,1,10,NA,NA,"Democrat" +4,NA,9435,"tess",1,1,51,1,51,NA,NA,"Democrat" +4,NA,9440,"tess",1,1,90,1,90,NA,NA,"Republican" +4,NA,9443,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,9458,"tess",1,0,97,1,3,NA,NA,"Republican" +4,NA,9465,"tess",3,1,80,1,80,NA,NA,"Republican" +4,NA,9471,"tess",1,1,10,1,10,NA,NA,"Democrat" +4,NA,9475,"tess",2,0,70,1,30,NA,NA,"Republican" +4,NA,9479,"tess",2,0,97,1,3,NA,NA,"Democrat" +4,NA,9490,"tess",2,1,28,1,28,NA,NA,"Republican" +4,NA,9493,"tess",2,1,97,1,97,NA,NA,"Democrat" +4,NA,9499,"tess",1,0,85,1,15,NA,NA,"Democrat" +4,NA,9500,"tess",4,1,88,1,88,NA,NA,"Republican" +4,NA,9510,"tess",1,1,100,1,100,NA,NA,"Democrat" +4,NA,9512,"tess",4,0,100,1,0,NA,NA,"Democrat" +4,NA,9514,"tess",1,1,69,1,69,NA,NA,"Republican" +4,NA,9517,"tess",3,0,6,1,94,NA,NA,"Neither" +4,NA,9532,"tess",3,1,99,1,99,NA,NA,"Republican" +4,NA,9534,"tess",2,0,4,1,96,NA,NA,"Democrat" +4,NA,9536,"tess",4,0,99,1,1,NA,NA,"Democrat" +4,NA,9538,"tess",3,1,60,1,60,NA,NA,"Republican" +4,NA,9551,"tess",3,1,99,1,99,NA,NA,"Democrat" +4,NA,9563,"tess",3,1,95,1,95,NA,NA,"Republican" +4,NA,9570,"tess",4,0,84,1,16,NA,NA,"Democrat" +4,NA,9572,"tess",3,1,75,1,75,NA,NA,"Republican" +4,NA,9578,"tess",4,0,100,1,0,NA,NA,"Republican" +4,NA,9585,"tess",3,1,86,1,86,NA,NA,"Democrat" +4,NA,9590,"tess",3,0,74,1,26,NA,NA,"Republican" +4,NA,9601,"tess",3,0,70,1,30,NA,NA,"Republican" +4,NA,9603,"tess",1,0,90,1,10,NA,NA,"Democrat" +4,NA,9608,"tess",1,1,50,1,50,NA,NA,"Democrat" +4,NA,9626,"tess",1,1,80,1,80,NA,NA,"Democrat" +4,NA,9627,"tess",4,1,70,1,70,NA,NA,"Democrat" +4,NA,9631,"tess",1,1,90,1,90,NA,NA,"Democrat" +4,NA,9635,"tess",4,0,80,1,20,NA,NA,"Democrat" +4,NA,9642,"tess",3,0,50,1,50,NA,NA,"Republican" +4,NA,9645,"tess",1,0,59,1,41,NA,NA,"Democrat" +4,NA,9647,"tess",4,0,90,1,10,NA,NA,"Republican" +4,NA,9648,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,9649,"tess",2,0,97,1,3,NA,NA,"Democrat" +4,NA,9650,"tess",3,1,52,1,52,NA,NA,"Republican" +4,NA,9663,"tess",2,1,80,1,80,NA,NA,"Democrat" +4,NA,9664,"tess",3,0,77,1,23,NA,NA,"Republican" +4,NA,9666,"tess",2,1,5,1,5,NA,NA,"Republican" +4,NA,9671,"tess",3,1,55,1,55,NA,NA,"Democrat" +4,NA,9676,"tess",3,1,92,1,92,NA,NA,"Democrat" +4,NA,9679,"tess",3,1,49,1,49,NA,NA,"Republican" +4,NA,9681,"tess",4,1,100,1,100,NA,NA,"Democrat" +4,NA,9684,"tess",4,0,14,1,86,NA,NA,"Democrat" +4,NA,9685,"tess",4,0,0,1,100,NA,NA,"Republican" +4,NA,9686,"tess",2,0,85,1,15,NA,NA,"Democrat" +4,NA,9689,"tess",3,0,50,1,50,NA,NA,"Democrat" +4,NA,9692,"tess",2,1,47,1,47,NA,NA,"Democrat" +4,NA,9693,"tess",4,1,46,1,46,NA,NA,"Neither" +4,NA,9701,"tess",2,0,90,1,10,NA,NA,"Democrat" +4,NA,9703,"tess",3,1,80,1,80,NA,NA,"Democrat" +4,NA,9711,"tess",1,0,70,1,30,NA,NA,"Neither" +4,NA,9716,"tess",4,0,93,1,7,NA,NA,"Democrat" +4,NA,9717,"tess",4,0,80,1,20,NA,NA,"Neither" +4,NA,9729,"tess",3,1,25,1,25,NA,NA,"Republican" +4,NA,9731,"tess",1,0,94,1,6,NA,NA,"Democrat" +4,NA,9741,"tess",2,0,99,1,1,NA,NA,"Republican" +4,1,62,"tess",2,1,6,3,6,0,"CNN","Democrat" +4,1,69,"tess",3,1,50,3,50,46,"CNN","Neither" +4,1,72,"tess",3,1,89,2,89,96,"CNN","Democrat" +4,1,77,"tess",3,1,97,2,97,100,"CNN","Democrat" +4,1,96,"tess",3,1,70,3,70,62,"CNN","Democrat" +4,1,118,"tess",1,0,80,3,20,20,"CNN","Democrat" +4,1,120,"tess",1,0,50,3,50,10,"CNN","Democrat" +4,1,130,"tess",2,1,70,3,70,48,"CNN","Republican" +4,1,140,"tess",3,1,90,2,90,95,"CNN","Republican" +4,1,151,"tess",1,1,95,2,95,90,"CNN","Republican" +4,1,152,"tess",3,1,64,3,64,21,"CNN","Neither" +4,1,188,"tess",1,0,64,2,36,79,"CNN","Democrat" +4,1,206,"tess",2,0,10,3,90,8,"CNN","Republican" +4,1,216,"tess",4,0,51,2,49,0,"CNN","Democrat" +4,1,234,"tess",1,1,50,3,50,99,"CNN","Democrat" +4,1,262,"tess",1,0,99,3,1,1,"CNN","Democrat" +4,1,299,"tess",3,0,30,3,70,80,"CNN","Democrat" +4,1,334,"tess",4,1,50,2,50,97,"CNN","Democrat" +4,1,336,"tess",1,1,94,3,94,20,"CNN","Republican" +4,1,363,"tess",4,0,50,2,50,4,"CNN","Republican" +4,1,372,"tess",2,1,30,3,30,30,"CNN","Republican" +4,1,389,"tess",2,0,50,2,50,0,"CNN","Democrat" +4,1,399,"tess",4,1,28,2,28,85,"CNN","Neither" +4,1,413,"tess",3,1,100,2,100,100,"CNN","Democrat" +4,1,421,"tess",4,1,10,2,10,97,"CNN","Democrat" +4,1,426,"tess",3,1,60,3,60,50,"CNN","Republican" +4,1,440,"tess",2,1,50,3,50,100,"CNN","Democrat" +4,1,443,"tess",2,0,50,3,50,49,"CNN","Republican" +4,1,485,"tess",4,0,18,2,82,0,"CNN","Democrat" +4,1,491,"tess",1,0,91,3,9,2,"CNN","Neither" +4,1,493,"tess",1,0,30,2,70,30,"CNN","Republican" +4,1,512,"tess",2,0,80,2,20,20,"CNN","Democrat" +4,1,516,"tess",1,1,4,3,4,3,"CNN","Democrat" +4,1,567,"tess",3,1,99,3,99,0,"CNN","Democrat" +4,1,574,"tess",1,0,71,2,29,19,"CNN","Democrat" +4,1,589,"tess",3,1,96,2,96,3,"CNN","Republican" +4,1,596,"tess",4,1,100,2,100,100,"CNN","Democrat" +4,1,602,"tess",3,1,17,2,17,100,"CNN","Democrat" +4,1,622,"tess",3,1,28,2,28,5,"CNN","Democrat" +4,1,633,"tess",4,1,50,2,50,30,"CNN","Democrat" +4,1,638,"tess",2,0,48,3,52,52,"CNN","Republican" +4,1,649,"tess",2,1,100,3,100,100,"CNN","Democrat" +4,1,684,"tess",1,0,16,3,84,84,"CNN","Republican" +4,1,689,"tess",3,0,50,3,50,7,"CNN","Democrat" +4,1,693,"tess",3,1,58,2,58,100,"CNN","Republican" +4,1,711,"tess",1,1,28,2,28,69,"CNN","Democrat" +4,1,752,"tess",1,1,43,2,43,53,"CNN","Democrat" +4,1,772,"tess",2,1,72,2,72,50,"CNN","Republican" +4,1,804,"tess",3,0,57,3,43,6,"CNN","Democrat" +4,1,823,"tess",4,0,100,2,0,0,"CNN","Democrat" +4,1,828,"tess",3,1,3,3,3,80,"CNN","Neither" +4,1,836,"tess",4,1,98,2,98,100,"CNN","Democrat" +4,1,851,"tess",1,0,42,3,58,74,"CNN","Republican" +4,1,857,"tess",1,0,21,2,79,70,"CNN","Democrat" +4,1,861,"tess",4,1,98,2,98,98,"CNN","Democrat" +4,1,886,"tess",2,0,50,3,50,3,"CNN","Republican" +4,1,891,"tess",3,1,100,3,100,100,"CNN","Republican" +4,1,895,"tess",2,1,100,3,100,99,"CNN","Democrat" +4,1,898,"tess",3,1,54,2,54,53,"CNN","Republican" +4,1,922,"tess",4,1,98,2,98,100,"CNN","Republican" +4,1,928,"tess",2,0,90,3,10,50,"CNN","Republican" +4,1,943,"tess",2,1,11,2,11,95,"CNN","Republican" +4,1,952,"tess",2,0,4,2,96,11,"CNN","Republican" +4,1,968,"tess",1,1,99,2,99,99,"CNN","Democrat" +4,1,978,"tess",2,0,55,2,45,31,"CNN","Democrat" +4,1,985,"tess",3,1,99,3,99,99,"CNN","Republican" +4,1,990,"tess",2,0,79,3,21,31,"CNN","Republican" +4,1,1035,"tess",1,1,90,3,90,90,"CNN","Democrat" +4,1,1067,"tess",3,0,100,3,0,0,"CNN","Republican" +4,1,1068,"tess",3,0,61,3,39,48,"CNN","Republican" +4,1,1084,"tess",2,1,94,2,94,84,"CNN","Republican" +4,1,1096,"tess",3,1,51,3,51,100,"CNN","Democrat" +4,1,1097,"tess",1,0,38,3,62,93,"CNN","Republican" +4,1,1141,"tess",4,0,94,2,6,3,"CNN","Democrat" +4,1,1147,"tess",2,1,70,2,70,98,"CNN","Democrat" +4,1,1156,"tess",4,0,99,2,1,1,"CNN","Democrat" +4,1,1192,"tess",2,1,97,3,97,95,"CNN","Democrat" +4,1,1208,"tess",3,1,35,2,35,60,"CNN","Republican" +4,1,1220,"tess",3,1,100,2,100,50,"CNN","Democrat" +4,1,1246,"tess",2,0,9,2,91,35,"CNN","Republican" +4,1,1256,"tess",4,1,94,2,94,94,"CNN","Democrat" +4,1,1260,"tess",1,0,92,3,8,82,"CNN","Democrat" +4,1,1306,"tess",3,0,83,3,17,18,"CNN","Democrat" +4,1,1307,"tess",3,1,85,3,85,80,"CNN","Republican" +4,1,1314,"tess",1,0,90,3,10,40,"CNN","Democrat" +4,1,1330,"tess",2,0,99,3,1,0,"CNN","Republican" +4,1,1336,"tess",2,0,40,3,60,40,"CNN","Republican" +4,1,1356,"tess",1,1,95,2,95,91,"CNN","Republican" +4,1,1366,"tess",4,1,87,2,87,98,"CNN","Democrat" +4,1,1376,"tess",2,0,94,2,6,14,"CNN","Democrat" +4,1,1402,"tess",2,0,100,3,0,96,"CNN","Republican" +4,1,1416,"tess",2,1,91,2,91,80,"CNN","Republican" +4,1,1418,"tess",1,1,84,3,84,75,"CNN","Republican" +4,1,1419,"tess",4,1,72,2,72,82,"CNN","Republican" +4,1,1426,"tess",4,0,78,2,22,0,"CNN","Democrat" +4,1,1444,"tess",2,1,60,3,60,60,"CNN","Democrat" +4,1,1454,"tess",2,0,95,2,5,35,"CNN","Democrat" +4,1,1468,"tess",2,1,75,2,75,71,"CNN","Republican" +4,1,1486,"tess",2,0,87,2,13,48,"CNN","Democrat" +4,1,1500,"tess",2,1,70,2,70,80,"CNN","Democrat" +4,1,1507,"tess",3,1,50,3,50,50,"CNN","Democrat" +4,1,1510,"tess",1,1,88,2,88,65,"CNN","Republican" +4,1,1518,"tess",4,1,71,2,71,70,"CNN","Democrat" +4,1,1523,"tess",3,1,5,2,5,7,"CNN","Republican" +4,1,1556,"tess",3,0,60,2,40,25,"CNN","Democrat" +4,1,1563,"tess",1,0,51,2,49,9,"CNN","Republican" +4,1,1624,"tess",3,0,60,2,40,30,"CNN","Republican" +4,1,1631,"tess",2,1,88,3,88,61,"CNN","Democrat" +4,1,1634,"tess",2,1,99,2,99,81,"CNN","Democrat" +4,1,1657,"tess",3,1,80,3,80,80,"CNN","Republican" +4,1,1668,"tess",2,1,64,2,64,80,"CNN","Democrat" +4,1,1674,"tess",3,0,39,2,61,78,"CNN","Republican" +4,1,1702,"tess",1,1,90,2,90,40,"CNN","Neither" +4,1,1724,"tess",2,0,100,2,0,0,"CNN","Democrat" +4,1,1733,"tess",3,0,50,3,50,50,"CNN","Democrat" +4,1,1767,"tess",3,0,37,3,63,63,"CNN","Republican" +4,1,1798,"tess",4,0,100,2,0,0,"CNN","Democrat" +4,1,1832,"tess",3,1,80,3,80,80,"CNN","Republican" +4,1,1841,"tess",2,0,72,3,28,27,"CNN","Republican" +4,1,1847,"tess",4,0,64,2,36,65,"CNN","Republican" +4,1,1851,"tess",1,0,86,3,14,14,"CNN","Democrat" +4,1,1870,"tess",2,1,40,2,40,65,"CNN","Republican" +4,1,1891,"tess",4,1,75,2,75,40,"CNN","Republican" +4,1,1899,"tess",3,0,73,3,27,1,"CNN","Democrat" +4,1,1902,"tess",4,1,0,2,0,100,"CNN","Democrat" +4,1,1924,"tess",4,0,100,2,0,84,"CNN","Democrat" +4,1,1928,"tess",3,0,50,3,50,37,"CNN","Democrat" +4,1,1933,"tess",3,1,85,2,85,74,"CNN","Democrat" +4,1,1935,"tess",2,1,0,2,0,0,"CNN","Republican" +4,1,1939,"tess",1,1,96,2,96,89,"CNN","Democrat" +4,1,1950,"tess",3,0,90,3,10,79,"CNN","Republican" +4,1,1952,"tess",3,1,50,2,50,60,"CNN","Democrat" +4,1,1966,"tess",3,0,50,3,50,67,"CNN","Republican" +4,1,1981,"tess",3,0,99,3,1,24,"CNN","Democrat" +4,1,2001,"tess",2,0,50,2,50,50,"CNN","Republican" +4,1,2030,"tess",1,0,100,3,0,0,"CNN","Democrat" +4,1,2033,"tess",2,0,90,2,10,20,"CNN","Democrat" +4,1,2060,"tess",3,0,73,2,27,70,"CNN","Democrat" +4,1,2061,"tess",4,0,23,2,77,5,"CNN","Democrat" +4,1,2082,"tess",3,0,14,3,86,77,"CNN","Democrat" +4,1,2090,"tess",4,1,100,2,100,100,"CNN","Democrat" +4,1,2099,"tess",1,1,70,2,70,65,"CNN","Republican" +4,1,2104,"tess",3,0,99,2,1,100,"CNN","Republican" +4,1,2120,"tess",4,0,75,2,25,36,"CNN","Republican" +4,1,2124,"tess",3,1,62,3,62,56,"CNN","Republican" +4,1,2137,"tess",2,1,100,2,100,79,"CNN","Democrat" +4,1,2147,"tess",3,1,65,3,65,100,"CNN","Democrat" +4,1,2169,"tess",3,0,78,2,22,0,"CNN","Democrat" +4,1,2180,"tess",3,1,56,3,56,58,"CNN","Democrat" +4,1,2188,"tess",2,0,80,2,20,10,"CNN","Republican" +4,1,2207,"tess",1,1,78,2,78,70,"CNN","Republican" +4,1,2208,"tess",2,1,0,2,0,100,"CNN","Democrat" +4,1,2218,"tess",1,0,93,3,7,9,"CNN","Republican" +4,1,2230,"tess",2,1,16,3,16,11,"CNN","Republican" +4,1,2235,"tess",3,0,10,3,90,10,"CNN","Republican" +4,1,2283,"tess",3,0,80,2,20,20,"CNN","Democrat" +4,1,2308,"tess",3,0,12,2,88,39,"CNN","Democrat" +4,1,2322,"tess",3,1,65,2,65,65,"CNN","Republican" +4,1,2356,"tess",4,1,99,2,99,91,"CNN","Republican" +4,1,2359,"tess",1,1,99,2,99,50,"CNN","Democrat" +4,1,2378,"tess",1,0,58,2,42,2,"CNN","Democrat" +4,1,2379,"tess",2,1,74,2,74,81,"CNN","Republican" +4,1,2381,"tess",3,1,66,3,66,81,"CNN","Democrat" +4,1,2382,"tess",1,1,100,2,100,88,"CNN","Democrat" +4,1,2383,"tess",2,1,95,3,95,50,"CNN","Republican" +4,1,2394,"tess",3,1,56,2,56,44,"CNN","Democrat" +4,1,2435,"tess",2,1,72,3,72,65,"CNN","Democrat" +4,1,2445,"tess",3,1,96,2,96,100,"CNN","Republican" +4,1,2474,"tess",2,1,45,3,45,100,"CNN","Democrat" +4,1,2483,"tess",3,1,100,3,100,100,"CNN","Democrat" +4,1,2485,"tess",2,0,20,2,80,30,"CNN","Democrat" +4,1,2486,"tess",2,0,64,3,36,30,"CNN","Republican" +4,1,2492,"tess",1,0,80,3,20,20,"CNN","Democrat" +4,1,2511,"tess",3,1,80,3,80,70,"CNN","Democrat" +4,1,2514,"tess",1,0,30,3,70,30,"CNN","Democrat" +4,1,2518,"tess",2,0,22,2,78,44,"CNN","Republican" +4,1,2520,"tess",1,1,99,3,99,100,"CNN","Democrat" +4,1,2525,"tess",1,0,75,2,25,2,"CNN","Republican" +4,1,2529,"tess",4,1,94,2,94,93,"CNN","Democrat" +4,1,2542,"tess",4,0,61,2,39,56,"CNN","Neither" +4,1,2545,"tess",2,1,79,3,79,100,"CNN","Democrat" +4,1,2557,"tess",2,1,0,2,0,100,"CNN","Democrat" +4,1,2581,"tess",1,0,80,2,20,0,"CNN","Democrat" +4,1,2592,"tess",4,0,100,2,0,9,"CNN","Democrat" +4,1,2599,"tess",1,0,100,2,0,31,"CNN","Republican" +4,1,2608,"tess",3,0,99,2,1,0,"CNN","Democrat" +4,1,2611,"tess",2,1,94,3,94,94,"CNN","Neither" +4,1,2632,"tess",2,0,50,2,50,20,"CNN","Democrat" +4,1,2659,"tess",1,1,0,3,0,30,"CNN","Republican" +4,1,2669,"tess",2,1,52,3,52,98,"CNN","Democrat" +4,1,2671,"tess",1,0,59,3,41,18,"CNN","Republican" +4,1,2700,"tess",1,1,30,2,30,70,"CNN","Democrat" +4,1,2709,"tess",1,0,100,2,0,8,"CNN","Democrat" +4,1,2714,"tess",2,1,96,3,96,96,"CNN","Democrat" +4,1,2720,"tess",3,0,82,3,18,76,"CNN","Republican" +4,1,2722,"tess",3,0,92,3,8,1,"CNN","Democrat" +4,1,2740,"tess",4,1,97,2,97,100,"CNN","Democrat" +4,1,2764,"tess",2,0,31,2,69,20,"CNN","Republican" +4,1,2765,"tess",2,0,46,3,54,68,"CNN","Republican" +4,1,2771,"tess",1,1,77,3,77,54,"CNN","Democrat" +4,1,2799,"tess",1,1,0,2,0,50,"CNN","Republican" +4,1,2804,"tess",2,0,70,3,30,40,"CNN","Republican" +4,1,2829,"tess",3,1,80,2,80,90,"CNN","Democrat" +4,1,2843,"tess",4,0,0,2,100,2,"CNN","Democrat" +4,1,2885,"tess",2,1,95,2,95,70,"CNN","Republican" +4,1,2892,"tess",1,1,50,2,50,72,"CNN","Democrat" +4,1,2902,"tess",1,1,90,2,90,10,"CNN","Democrat" +4,1,2915,"tess",2,1,99,2,99,99,"CNN","Democrat" +4,1,2923,"tess",1,0,50,3,50,2,"CNN","Neither" +4,1,2934,"tess",2,1,90,3,90,90,"CNN","Democrat" +4,1,2936,"tess",2,1,42,3,42,89,"CNN","Democrat" +4,1,2970,"tess",3,1,79,3,79,95,"CNN","Neither" +4,1,2982,"tess",2,1,91,2,91,60,"CNN","Democrat" +4,1,2987,"tess",1,0,100,2,0,0,"CNN","Republican" +4,1,2988,"tess",1,1,51,2,51,99,"CNN","Democrat" +4,1,3011,"tess",1,0,100,2,0,0,"CNN","Republican" +4,1,3021,"tess",2,1,85,3,85,80,"CNN","Democrat" +4,1,3029,"tess",4,0,60,2,40,50,"CNN","Democrat" +4,1,3047,"tess",2,1,49,3,49,46,"CNN","Democrat" +4,1,3051,"tess",4,1,80,2,80,70,"CNN","Republican" +4,1,3068,"tess",3,1,95,2,95,90,"CNN","Democrat" +4,1,3071,"tess",1,1,98,3,98,78,"CNN","Democrat" +4,1,3072,"tess",2,1,50,2,50,99,"CNN","Republican" +4,1,3077,"tess",2,0,95,3,5,5,"CNN","Democrat" +4,1,3082,"tess",1,1,54,2,54,62,"CNN","Neither" +4,1,3102,"tess",3,1,58,3,58,86,"CNN","Democrat" +4,1,3107,"tess",4,1,96,2,96,97,"CNN","Democrat" +4,1,3123,"tess",2,1,75,2,75,50,"CNN","Democrat" +4,1,3125,"tess",3,1,66,2,66,71,"CNN","Democrat" +4,1,3137,"tess",1,0,95,2,5,29,"CNN","Democrat" +4,1,3170,"tess",3,0,51,3,49,49,"CNN","Democrat" +4,1,3172,"tess",3,1,85,2,85,75,"CNN","Democrat" +4,1,3176,"tess",2,1,NA,3,NA,50,"CNN","Republican" +4,1,3192,"tess",4,1,50,2,50,11,"CNN","Democrat" +4,1,3195,"tess",4,0,90,2,10,11,"CNN","Democrat" +4,1,3197,"tess",1,1,90,3,90,60,"CNN","Democrat" +4,1,3201,"tess",3,0,80,3,20,11,"CNN","Republican" +4,1,3205,"tess",3,1,49,2,49,53,"CNN","Republican" +4,1,3208,"tess",1,1,80,2,80,80,"CNN","Democrat" +4,1,3214,"tess",1,0,86,2,14,14,"CNN","Democrat" +4,1,3223,"tess",3,1,100,3,100,99,"CNN","Democrat" +4,1,3225,"tess",1,0,67,3,33,73,"CNN","Republican" +4,1,3234,"tess",3,1,70,2,70,70,"CNN","Republican" +4,1,3259,"tess",1,0,100,2,0,15,"CNN","Republican" +4,1,3262,"tess",1,1,90,2,90,70,"CNN","Republican" +4,1,3274,"tess",4,1,89,2,89,0,"CNN","Democrat" +4,1,3295,"tess",1,1,90,2,90,86,"CNN","Democrat" +4,1,3304,"tess",3,0,50,3,50,59,"CNN","Republican" +4,1,3313,"tess",3,1,73,2,73,61,"CNN","Republican" +4,1,3320,"tess",3,0,90,2,10,8,"CNN","Democrat" +4,1,3335,"tess",4,0,58,2,42,28,"CNN","Democrat" +4,1,3346,"tess",2,0,70,2,30,30,"CNN","Republican" +4,1,3348,"tess",4,1,99,2,99,98,"CNN","Democrat" +4,1,3371,"tess",2,0,100,3,0,1,"CNN","Democrat" +4,1,3412,"tess",1,0,0,2,100,36,"CNN","Democrat" +4,1,3419,"tess",1,1,50,2,50,100,"CNN","Democrat" +4,1,3424,"tess",2,0,29,3,71,18,"CNN","Democrat" +4,1,3426,"tess",3,1,100,2,100,100,"CNN","Democrat" +4,1,3433,"tess",4,0,81,2,19,20,"CNN","Democrat" +4,1,3437,"tess",4,0,80,2,20,50,"CNN","Republican" +4,1,3452,"tess",1,1,50,3,50,95,"CNN","Republican" +4,1,3464,"tess",3,1,61,3,61,60,"CNN","Republican" +4,1,3488,"tess",3,0,6,3,94,91,"CNN","Republican" +4,1,3505,"tess",3,1,99,2,99,90,"CNN","Republican" +4,1,3513,"tess",1,1,80,3,80,86,"CNN","Democrat" +4,1,3515,"tess",2,1,99,3,99,87,"CNN","Republican" +4,1,3517,"tess",1,1,NA,3,NA,20,"CNN","Republican" +4,1,3535,"tess",2,0,20,2,80,10,"CNN","Democrat" +4,1,3536,"tess",3,0,96,2,4,0,"CNN","Republican" +4,1,3545,"tess",3,0,NA,3,NA,30,"CNN","Democrat" +4,1,3564,"tess",1,0,10,3,90,90,"CNN","Republican" +4,1,3582,"tess",4,1,99,2,99,99,"CNN","Republican" +4,1,3593,"tess",3,1,8,3,8,98,"CNN","Democrat" +4,1,3607,"tess",3,0,92,2,8,0,"CNN","Republican" +4,1,3609,"tess",1,0,89,3,11,5,"CNN","Republican" +4,1,3612,"tess",4,1,30,2,30,30,"CNN","Republican" +4,1,3629,"tess",3,1,40,3,40,39,"CNN","Republican" +4,1,3631,"tess",2,0,90,3,10,100,"CNN","Democrat" +4,1,3632,"tess",3,0,70,2,30,16,"CNN","Republican" +4,1,3635,"tess",1,1,0,3,0,90,"CNN","Republican" +4,1,3653,"tess",4,1,99,2,99,97,"CNN","Democrat" +4,1,3663,"tess",2,1,71,2,71,95,"CNN","Democrat" +4,1,3695,"tess",2,1,51,3,51,51,"CNN","Republican" +4,1,3699,"tess",1,1,87,2,87,81,"CNN","Republican" +4,1,3702,"tess",4,1,91,2,91,91,"CNN","Democrat" +4,1,3708,"tess",4,1,92,2,92,92,"CNN","Democrat" +4,1,3711,"tess",4,1,50,2,50,98,"CNN","Democrat" +4,1,3722,"tess",2,1,87,3,87,62,"CNN","Democrat" +4,1,3728,"tess",2,1,92,3,92,91,"CNN","Republican" +4,1,3736,"tess",1,0,51,2,49,9,"CNN","Democrat" +4,1,3747,"tess",2,1,50,3,50,86,"CNN","Democrat" +4,1,3754,"tess",4,1,75,2,75,90,"CNN","Democrat" +4,1,3774,"tess",4,1,80,2,80,20,"CNN","Neither" +4,1,3779,"tess",4,0,20,2,80,80,"CNN","Republican" +4,1,3782,"tess",4,0,61,2,39,38,"CNN","Democrat" +4,1,3795,"tess",2,0,14,2,86,2,"CNN","Democrat" +4,1,3801,"tess",3,1,66,3,66,11,"CNN","Democrat" +4,1,3811,"tess",2,0,97,2,3,0,"CNN","Republican" +4,1,3813,"tess",2,1,11,2,11,70,"CNN","Republican" +4,1,3820,"tess",2,1,91,3,91,95,"CNN","Democrat" +4,1,3848,"tess",1,1,90,2,90,90,"CNN","Republican" +4,1,3851,"tess",3,1,69,2,69,98,"CNN","Republican" +4,1,3880,"tess",1,1,49,2,49,31,"CNN","Republican" +4,1,3895,"tess",3,1,50,2,50,50,"CNN","Republican" +4,1,3898,"tess",2,1,99,3,99,97,"CNN","Democrat" +4,1,3910,"tess",4,1,88,2,88,82,"CNN","Democrat" +4,1,3946,"tess",1,1,20,3,20,90,"CNN","Democrat" +4,1,3981,"tess",4,1,50,2,50,52,"CNN","Republican" +4,1,4006,"tess",1,1,90,3,90,80,"CNN","Democrat" +4,1,4027,"tess",1,1,17,3,17,19,"CNN","Republican" +4,1,4065,"tess",3,1,100,3,100,70,"CNN","Democrat" +4,1,4069,"tess",1,1,55,3,55,62,"CNN","Democrat" +4,1,4075,"tess",3,1,20,2,20,91,"CNN","Democrat" +4,1,4084,"tess",4,0,31,2,69,56,"CNN","Republican" +4,1,4141,"tess",1,0,97,3,3,14,"CNN","Democrat" +4,1,4142,"tess",3,1,0,2,0,100,"CNN","Democrat" +4,1,4163,"tess",4,0,87,2,13,26,"CNN","Republican" +4,1,4175,"tess",3,0,50,2,50,30,"CNN","Democrat" +4,1,4178,"tess",1,1,52,3,52,65,"CNN","Democrat" +4,1,4186,"tess",3,0,34,2,66,8,"CNN","Democrat" +4,1,4197,"tess",4,1,100,2,100,100,"CNN","Democrat" +4,1,4202,"tess",4,0,90,2,10,10,"CNN","Democrat" +4,1,4209,"tess",2,0,28,3,72,4,"CNN","Democrat" +4,1,4217,"tess",1,1,60,3,60,85,"CNN","Democrat" +4,1,4224,"tess",1,0,80,3,20,20,"CNN","Democrat" +4,1,4229,"tess",2,1,92,2,92,93,"CNN","Democrat" +4,1,4237,"tess",1,1,99,2,99,99,"CNN","Democrat" +4,1,4241,"tess",1,1,50,3,50,60,"CNN","Republican" +4,1,4251,"tess",2,0,91,3,9,7,"CNN","Republican" +4,1,4252,"tess",3,0,70,2,30,31,"CNN","Republican" +4,1,4253,"tess",1,1,85,2,85,50,"CNN","Democrat" +4,1,4266,"tess",4,1,91,2,91,84,"CNN","Democrat" +4,1,4277,"tess",3,1,100,2,100,97,"CNN","Democrat" +4,1,4282,"tess",2,1,0,3,0,78,"CNN","Republican" +4,1,4290,"tess",3,1,94,3,94,90,"CNN","Democrat" +4,1,4308,"tess",3,1,0,2,0,2,"CNN","Democrat" +4,1,4311,"tess",3,0,71,2,29,6,"CNN","Democrat" +4,1,4325,"tess",2,1,100,3,100,100,"CNN","Democrat" +4,1,4332,"tess",2,0,99,3,1,1,"CNN","Democrat" +4,1,4349,"tess",4,0,98,2,2,67,"CNN","Democrat" +4,1,4361,"tess",2,0,93,3,7,3,"CNN","Democrat" +4,1,4365,"tess",3,1,73,3,73,68,"CNN","Republican" +4,1,4367,"tess",2,1,92,2,92,99,"CNN","Republican" +4,1,4370,"tess",3,0,83,2,17,17,"CNN","Republican" +4,1,4391,"tess",2,1,50,3,50,50,"CNN","Democrat" +4,1,4401,"tess",1,1,80,2,80,100,"CNN","Democrat" +4,1,4420,"tess",1,1,89,2,89,87,"CNN","Democrat" +4,1,4431,"tess",4,0,90,2,10,11,"CNN","Democrat" +4,1,4455,"tess",3,0,40,3,60,55,"CNN","Democrat" +4,1,4457,"tess",1,0,38,3,62,0,"CNN","Democrat" +4,1,4470,"tess",2,1,97,3,97,97,"CNN","Democrat" +4,1,4476,"tess",1,0,40,3,60,60,"CNN","Democrat" +4,1,4482,"tess",3,1,50,3,50,50,"CNN","Neither" +4,1,4500,"tess",3,1,66,2,66,80,"CNN","Democrat" +4,1,4512,"tess",2,0,58,3,42,34,"CNN","Democrat" +4,1,4516,"tess",1,1,46,3,46,100,"CNN","Democrat" +4,1,4524,"tess",3,0,NA,3,NA,20,"CNN","Republican" +4,1,4552,"tess",3,0,100,2,0,7,"CNN","Democrat" +4,1,4561,"tess",4,0,90,2,10,10,"CNN","Democrat" +4,1,4581,"tess",2,0,87,3,13,13,"CNN","Democrat" +4,1,4587,"tess",3,1,100,2,100,90,"CNN","Republican" +4,1,4656,"tess",2,0,55,2,45,45,"CNN","Democrat" +4,1,4663,"tess",4,0,96,2,4,3,"CNN","Democrat" +4,1,4691,"tess",2,1,97,2,97,78,"CNN","Democrat" +4,1,4708,"tess",3,1,75,2,75,16,"CNN","Democrat" +4,1,4726,"tess",1,0,51,3,49,93,"CNN","Republican" +4,1,4737,"tess",4,0,94,2,6,0,"CNN","Democrat" +4,1,4739,"tess",1,0,76,2,24,1,"CNN","Republican" +4,1,4742,"tess",3,0,80,3,20,10,"CNN","Democrat" +4,1,4770,"tess",2,0,99,3,1,1,"CNN","Democrat" +4,1,4785,"tess",1,1,66,3,66,42,"CNN","Republican" +4,1,4799,"tess",4,0,73,2,27,27,"CNN","Republican" +4,1,4800,"tess",3,0,1,2,99,0,"CNN","Republican" +4,1,4817,"tess",4,0,93,2,7,77,"CNN","Democrat" +4,1,4819,"tess",1,1,83,3,83,94,"CNN","Democrat" +4,1,4821,"tess",2,1,38,3,38,40,"CNN","Neither" +4,1,4823,"tess",3,1,96,2,96,99,"CNN","Democrat" +4,1,4826,"tess",2,0,99,2,1,11,"CNN","Democrat" +4,1,4831,"tess",2,1,100,3,100,80,"CNN","Neither" +4,1,4833,"tess",1,0,96,2,4,6,"CNN","Democrat" +4,1,4866,"tess",4,1,100,2,100,100,"CNN","Democrat" +4,1,4875,"tess",3,0,100,2,0,4,"CNN","Democrat" +4,1,4883,"tess",4,0,88,2,12,8,"CNN","Democrat" +4,1,4887,"tess",1,0,81,2,19,23,"CNN","Republican" +4,1,4897,"tess",4,0,69,2,31,31,"CNN","Democrat" +4,1,4908,"tess",4,0,100,2,0,0,"CNN","Democrat" +4,1,4921,"tess",4,1,100,2,100,100,"CNN","Republican" +4,1,4932,"tess",2,1,70,3,70,70,"CNN","Republican" +4,1,4940,"tess",2,1,100,3,100,100,"CNN","Republican" +4,1,4969,"tess",2,1,18,2,18,31,"CNN","Democrat" +4,1,4971,"tess",1,1,49,3,49,80,"CNN","Democrat" +4,1,4998,"tess",1,1,86,2,86,100,"CNN","Democrat" +4,1,5003,"tess",2,0,91,3,9,20,"CNN","Republican" +4,1,5016,"tess",1,1,100,2,100,100,"CNN","Democrat" +4,1,5048,"tess",3,0,24,2,76,9,"CNN","Republican" +4,1,5092,"tess",1,0,31,2,69,70,"CNN","Republican" +4,1,5108,"tess",2,0,100,3,0,2,"CNN","Republican" +4,1,5116,"tess",3,1,100,2,100,100,"CNN","Republican" +4,1,5128,"tess",3,0,89,2,11,0,"CNN","Democrat" +4,1,5132,"tess",1,1,52,3,52,48,"CNN","Republican" +4,1,5133,"tess",1,1,80,2,80,0,"CNN","Republican" +4,1,5137,"tess",2,0,50,3,50,5,"CNN","Democrat" +4,1,5160,"tess",2,0,15,2,85,80,"CNN","Democrat" +4,1,5162,"tess",1,0,70,3,30,70,"CNN","Neither" +4,1,5165,"tess",3,1,98,3,98,100,"CNN","Republican" +4,1,5172,"tess",2,0,80,3,20,70,"CNN","Democrat" +4,1,5175,"tess",3,0,80,2,20,20,"CNN","Democrat" +4,1,5228,"tess",2,0,33,3,67,9,"CNN","Democrat" +4,1,5288,"tess",1,0,92,2,8,53,"CNN","Democrat" +4,1,5299,"tess",2,0,63,2,37,39,"CNN","Democrat" +4,1,5308,"tess",1,0,0,3,100,100,"CNN","Democrat" +4,1,5314,"tess",3,1,100,3,100,100,"CNN","Republican" +4,1,5316,"tess",3,1,59,2,59,76,"CNN","Republican" +4,1,5327,"tess",2,0,7,2,93,31,"CNN","Republican" +4,1,5353,"tess",1,1,99,2,99,99,"CNN","Democrat" +4,1,5388,"tess",2,1,60,2,60,50,"CNN","Republican" +4,1,5393,"tess",2,0,63,2,37,24,"CNN","Republican" +4,1,5400,"tess",2,1,90,3,90,91,"CNN","Republican" +4,1,5406,"tess",4,1,80,2,80,70,"CNN","Republican" +4,1,5411,"tess",3,1,75,3,75,75,"CNN","Republican" +4,1,5416,"tess",2,0,50,2,50,14,"CNN","Democrat" +4,1,5428,"tess",3,0,94,3,6,4,"CNN","Republican" +4,1,5430,"tess",2,1,100,2,100,100,"CNN","Democrat" +4,1,5438,"tess",4,0,59,2,41,10,"CNN","Democrat" +4,1,5447,"tess",3,0,88,3,12,61,"CNN","Democrat" +4,1,5448,"tess",3,1,6,3,6,100,"CNN","Democrat" +4,1,5462,"tess",1,0,70,2,30,8,"CNN","Republican" +4,1,5465,"tess",1,0,86,2,14,10,"CNN","Republican" +4,1,5480,"tess",2,1,NA,2,NA,40,"CNN","Republican" +4,1,5500,"tess",2,1,65,3,65,60,"CNN","Democrat" +4,1,5504,"tess",4,0,1,2,99,1,"CNN","Republican" +4,1,5515,"tess",2,0,61,3,39,30,"CNN","Republican" +4,1,5518,"tess",3,1,50,2,50,50,"CNN","Republican" +4,1,5519,"tess",1,0,100,3,0,1,"CNN","Democrat" +4,1,5567,"tess",3,1,90,3,90,90,"CNN","Republican" +4,1,5569,"tess",4,1,88,2,88,26,"CNN","Democrat" +4,1,5590,"tess",1,1,100,2,100,83,"CNN","Democrat" +4,1,5611,"tess",4,0,50,2,50,47,"CNN","Republican" +4,1,5614,"tess",4,0,66,2,34,39,"CNN","Democrat" +4,1,5620,"tess",2,0,81,3,19,10,"CNN","Democrat" +4,1,5621,"tess",3,0,97,3,3,2,"CNN","Democrat" +4,1,5626,"tess",1,0,99,3,1,1,"CNN","Democrat" +4,1,5648,"tess",4,1,100,2,100,100,"CNN","Democrat" +4,1,5660,"tess",4,0,100,2,0,1,"CNN","Democrat" +4,1,5663,"tess",2,1,91,3,91,91,"CNN","Democrat" +4,1,5664,"tess",1,1,73,3,73,91,"CNN","Democrat" +4,1,5669,"tess",2,0,92,2,8,7,"CNN","Neither" +4,1,5676,"tess",4,0,71,2,29,21,"CNN","Democrat" +4,1,5679,"tess",2,0,66,3,34,27,"CNN","Democrat" +4,1,5683,"tess",1,1,90,2,90,69,"CNN","Democrat" +4,1,5684,"tess",2,1,100,3,100,98,"CNN","Democrat" +4,1,5726,"tess",1,0,99,3,1,0,"CNN","Democrat" +4,1,5729,"tess",3,0,26,2,74,0,"CNN","Republican" +4,1,5730,"tess",1,0,75,2,25,25,"CNN","Republican" +4,1,5731,"tess",3,0,60,2,40,1,"CNN","Democrat" +4,1,5735,"tess",1,0,80,3,20,20,"CNN","Republican" +4,1,5744,"tess",1,0,20,3,80,20,"CNN","Democrat" +4,1,5745,"tess",4,1,90,2,90,95,"CNN","Democrat" +4,1,5746,"tess",1,1,10,2,10,7,"CNN","Democrat" +4,1,5760,"tess",2,0,96,2,4,4,"CNN","Democrat" +4,1,5763,"tess",2,0,76,2,24,20,"CNN","Democrat" +4,1,5783,"tess",4,0,84,2,16,10,"CNN","Democrat" +4,1,5802,"tess",3,1,50,2,50,90,"CNN","Republican" +4,1,5804,"tess",3,0,51,2,49,21,"CNN","Republican" +4,1,5810,"tess",2,0,81,2,19,10,"CNN","Democrat" +4,1,5820,"tess",1,0,93,2,7,10,"CNN","Democrat" +4,1,5824,"tess",1,0,9,3,91,92,"CNN","Democrat" +4,1,5854,"tess",1,0,2,2,98,99,"CNN","Democrat" +4,1,5873,"tess",1,0,10,3,90,80,"CNN","Democrat" +4,1,5874,"tess",3,1,39,2,39,49,"CNN","Democrat" +4,1,5884,"tess",3,0,40,3,60,80,"CNN","Democrat" +4,1,5896,"tess",1,1,50,3,50,25,"CNN","Republican" +4,1,5899,"tess",2,0,90,3,10,90,"CNN","Democrat" +4,1,5901,"tess",1,1,90,3,90,90,"CNN","Democrat" +4,1,5925,"tess",1,1,95,3,95,69,"CNN","Republican" +4,1,5937,"tess",1,1,100,2,100,98,"CNN","Democrat" +4,1,5951,"tess",4,1,91,2,91,94,"CNN","Democrat" +4,1,5963,"tess",1,1,35,2,35,89,"CNN","Democrat" +4,1,5981,"tess",3,1,85,2,85,96,"CNN","Republican" +4,1,5994,"tess",4,0,10,2,90,10,"CNN","Democrat" +4,1,5996,"tess",4,0,92,2,8,1,"CNN","Democrat" +4,1,5999,"tess",2,0,50,3,50,36,"CNN","Democrat" +4,1,6008,"tess",3,1,5,3,5,5,"CNN","Republican" +4,1,6012,"tess",4,1,70,2,70,80,"CNN","Republican" +4,1,6041,"tess",1,1,84,3,84,98,"CNN","Democrat" +4,1,6077,"tess",3,0,70,3,30,40,"CNN","Democrat" +4,1,6088,"tess",2,0,91,2,9,49,"CNN","Republican" +4,1,6090,"tess",3,0,0,2,100,6,"CNN","Democrat" +4,1,6096,"tess",3,1,3,3,3,7,"CNN","Republican" +4,1,6097,"tess",1,1,30,2,30,25,"CNN","Republican" +4,1,6100,"tess",1,1,77,3,77,50,"CNN","Democrat" +4,1,6101,"tess",2,0,70,3,30,69,"CNN","Democrat" +4,1,6111,"tess",1,1,79,2,79,84,"CNN","Democrat" +4,1,6116,"tess",4,0,50,2,50,50,"CNN","Democrat" +4,1,6131,"tess",2,0,80,2,20,20,"CNN","Neither" +4,1,6136,"tess",3,0,93,3,7,11,"CNN","Democrat" +4,1,6138,"tess",3,0,90,2,10,10,"CNN","Democrat" +4,1,6142,"tess",1,0,99,2,1,7,"CNN","Neither" +4,1,6162,"tess",3,0,42,2,58,20,"CNN","Democrat" +4,1,6170,"tess",1,1,74,2,74,82,"CNN","Democrat" +4,1,6171,"tess",4,0,100,2,0,0,"CNN","Democrat" +4,1,6180,"tess",1,0,92,3,8,1,"CNN","Republican" +4,1,6187,"tess",4,0,100,2,0,3,"CNN","Democrat" +4,1,6209,"tess",2,1,100,3,100,100,"CNN","Democrat" +4,1,6224,"tess",2,1,94,3,94,93,"CNN","Democrat" +4,1,6245,"tess",3,1,99,3,99,99,"CNN","Democrat" +4,1,6246,"tess",1,0,50,3,50,23,"CNN","Republican" +4,1,6248,"tess",3,1,24,3,24,48,"CNN","Republican" +4,1,6251,"tess",4,0,87,2,13,5,"CNN","Democrat" +4,1,6258,"tess",1,0,100,2,0,0,"CNN","Republican" +4,1,6259,"tess",3,0,41,3,59,0,"CNN","Democrat" +4,1,6263,"tess",4,0,72,2,28,19,"CNN","Democrat" +4,1,6265,"tess",2,1,90,2,90,97,"CNN","Democrat" +4,1,6268,"tess",3,0,49,2,51,50,"CNN","Republican" +4,1,6272,"tess",2,0,98,2,2,80,"CNN","Democrat" +4,1,6280,"tess",2,1,92,3,92,31,"CNN","Democrat" +4,1,6284,"tess",1,0,NA,2,NA,60,"CNN","Neither" +4,1,6292,"tess",1,1,10,3,10,90,"CNN","Democrat" +4,1,6294,"tess",3,0,100,3,0,99,"CNN","Republican" +4,1,6301,"tess",4,1,50,2,50,90,"CNN","Democrat" +4,1,6326,"tess",1,0,30,2,70,20,"CNN","Democrat" +4,1,6361,"tess",2,0,59,3,41,100,"CNN","Democrat" +4,1,6362,"tess",1,1,93,3,93,100,"CNN","Republican" +4,1,6372,"tess",4,1,100,2,100,99,"CNN","Democrat" +4,1,6373,"tess",3,1,49,3,49,50,"CNN","Democrat" +4,1,6385,"tess",3,0,43,3,57,43,"CNN","Democrat" +4,1,6388,"tess",3,1,70,3,70,19,"CNN","Democrat" +4,1,6391,"tess",2,1,80,2,80,80,"CNN","Democrat" +4,1,6402,"tess",3,1,92,2,92,85,"CNN","Democrat" +4,1,6405,"tess",4,1,50,2,50,99,"CNN","Republican" +4,1,6411,"tess",4,0,100,2,0,2,"CNN","Democrat" +4,1,6419,"tess",1,1,100,2,100,99,"CNN","Democrat" +4,1,6424,"tess",2,0,100,3,0,0,"CNN","Republican" +4,1,6427,"tess",3,1,87,2,87,96,"CNN","Republican" +4,1,6428,"tess",1,0,13,2,87,71,"CNN","Neither" +4,1,6434,"tess",2,1,50,2,50,96,"CNN","Democrat" +4,1,6440,"tess",3,0,66,3,34,44,"CNN","Republican" +4,1,6452,"tess",3,1,98,2,98,99,"CNN","Republican" +4,1,6488,"tess",3,0,NA,2,NA,70,"CNN","Republican" +4,1,6506,"tess",4,0,100,2,0,7,"CNN","Democrat" +4,1,6507,"tess",3,0,86,2,14,13,"CNN","Republican" +4,1,6508,"tess",1,0,79,3,21,10,"CNN","Republican" +4,1,6527,"tess",3,1,73,3,73,91,"CNN","Democrat" +4,1,6534,"tess",2,0,60,2,40,30,"CNN","Republican" +4,1,6540,"tess",1,1,50,2,50,100,"CNN","Democrat" +4,1,6541,"tess",2,0,97,2,3,0,"CNN","Democrat" +4,1,6548,"tess",3,1,99,2,99,96,"CNN","Democrat" +4,1,6549,"tess",1,1,42,3,42,80,"CNN","Democrat" +4,1,6551,"tess",3,0,65,3,35,50,"CNN","Democrat" +4,1,6553,"tess",2,1,50,2,50,65,"CNN","Republican" +4,1,6557,"tess",4,0,63,2,37,42,"CNN","Republican" +4,1,6565,"tess",1,0,96,3,4,95,"CNN","Democrat" +4,1,6568,"tess",1,1,67,2,67,100,"CNN","Democrat" +4,1,6571,"tess",2,1,81,2,81,62,"CNN","Republican" +4,1,6572,"tess",1,1,82,2,82,61,"CNN","Democrat" +4,1,6581,"tess",2,1,100,3,100,96,"CNN","Democrat" +4,1,6587,"tess",4,0,90,2,10,20,"CNN","Republican" +4,1,6588,"tess",1,1,60,2,60,85,"CNN","Democrat" +4,1,6593,"tess",3,1,90,3,90,90,"CNN","Democrat" +4,1,6596,"tess",3,0,2,3,98,0,"CNN","Democrat" +4,1,6610,"tess",2,1,85,2,85,85,"CNN","Democrat" +4,1,6615,"tess",1,0,97,2,3,1,"CNN","Democrat" +4,1,6625,"tess",4,1,92,2,92,95,"CNN","Democrat" +4,1,6635,"tess",1,0,36,3,64,94,"CNN","Republican" +4,1,6640,"tess",2,0,95,2,5,0,"CNN","Republican" +4,1,6642,"tess",4,0,100,2,0,0,"CNN","Democrat" +4,1,6660,"tess",3,1,40,3,40,79,"CNN","Democrat" +4,1,6667,"tess",1,0,73,3,27,38,"CNN","Democrat" +4,1,6668,"tess",3,0,55,3,45,5,"CNN","Democrat" +4,1,6670,"tess",4,1,100,2,100,35,"CNN","Democrat" +4,1,6675,"tess",1,0,99,3,1,30,"CNN","Democrat" +4,1,6680,"tess",2,1,50,2,50,62,"CNN","Republican" +4,1,6686,"tess",1,0,60,2,40,60,"CNN","Republican" +4,1,6688,"tess",1,0,51,3,49,24,"CNN","Republican" +4,1,6696,"tess",1,1,99,2,99,99,"CNN","Democrat" +4,1,6702,"tess",3,1,90,2,90,90,"CNN","Democrat" +4,1,6703,"tess",3,1,100,2,100,99,"CNN","Democrat" +4,1,6730,"tess",3,0,22,3,78,70,"CNN","Democrat" +4,1,6741,"tess",1,0,90,2,10,10,"CNN","Democrat" +4,1,6755,"tess",2,0,5,3,95,70,"CNN","Republican" +4,1,6760,"tess",2,0,60,2,40,40,"CNN","Democrat" +4,1,6775,"tess",2,1,38,3,38,87,"CNN","Republican" +4,1,6777,"tess",4,1,93,2,93,99,"CNN","Democrat" +4,1,6780,"tess",2,1,77,2,77,70,"CNN","Democrat" +4,1,6791,"tess",2,1,90,3,90,80,"CNN","Democrat" +4,1,6795,"tess",3,0,96,2,4,20,"CNN","Democrat" +4,1,6797,"tess",1,0,81,3,19,20,"CNN","Democrat" +4,1,6802,"tess",3,1,100,3,100,96,"CNN","Democrat" +4,1,6805,"tess",1,1,50,2,50,50,"CNN","Republican" +4,1,6820,"tess",3,0,95,3,5,7,"CNN","Republican" +4,1,6831,"tess",2,1,60,3,60,60,"CNN","Republican" +4,1,6833,"tess",3,1,99,3,99,98,"CNN","Neither" +4,1,6842,"tess",2,1,96,2,96,95,"CNN","Republican" +4,1,6843,"tess",3,1,70,2,70,50,"CNN","Republican" +4,1,6866,"tess",2,1,100,2,100,100,"CNN","Democrat" +4,1,6868,"tess",3,1,57,3,57,56,"CNN","Republican" +4,1,6869,"tess",3,1,93,2,93,62,"CNN","Democrat" +4,1,6882,"tess",2,1,99,2,99,98,"CNN","Democrat" +4,1,6883,"tess",4,1,97,2,97,96,"CNN","Democrat" +4,1,6891,"tess",2,0,52,3,48,59,"CNN","Democrat" +4,1,6897,"tess",1,0,70,2,30,70,"CNN","Democrat" +4,1,6911,"tess",1,1,80,2,80,75,"CNN","Democrat" +4,1,6912,"tess",1,1,99,3,99,96,"CNN","Democrat" +4,1,6913,"tess",2,0,29,3,71,16,"CNN","Democrat" +4,1,6938,"tess",1,0,31,3,69,16,"CNN","Democrat" +4,1,6951,"tess",2,0,20,3,80,51,"CNN","Democrat" +4,1,6956,"tess",3,0,44,3,56,10,"CNN","Democrat" +4,1,6971,"tess",1,0,49,3,51,0,"CNN","Republican" +4,1,6997,"tess",3,0,80,2,20,20,"CNN","Republican" +4,1,7003,"tess",1,1,90,2,90,90,"CNN","Republican" +4,1,7022,"tess",2,1,98,3,98,99,"CNN","Democrat" +4,1,7023,"tess",3,1,98,3,98,90,"CNN","Democrat" +4,1,7048,"tess",2,0,97,2,3,2,"CNN","Democrat" +4,1,7054,"tess",3,1,91,3,91,96,"CNN","Democrat" +4,1,7066,"tess",3,0,27,3,73,74,"CNN","Democrat" +4,1,7099,"tess",2,0,91,2,9,86,"CNN","Democrat" +4,1,7125,"tess",4,0,85,2,15,26,"CNN","Republican" +4,1,7128,"tess",2,1,97,3,97,51,"CNN","Republican" +4,1,7133,"tess",3,0,96,3,4,20,"CNN","Democrat" +4,1,7153,"tess",2,1,50,3,50,8,"CNN","Democrat" +4,1,7158,"tess",1,0,10,3,90,90,"CNN","Democrat" +4,1,7164,"tess",2,0,9,3,91,14,"CNN","Neither" +4,1,7166,"tess",3,1,50,3,50,48,"CNN","Neither" +4,1,7218,"tess",3,0,70,3,30,17,"CNN","Democrat" +4,1,7228,"tess",3,1,71,3,71,54,"CNN","Democrat" +4,1,7230,"tess",2,1,38,2,38,94,"CNN","Republican" +4,1,7231,"tess",1,1,90,3,90,100,"CNN","Democrat" +4,1,7235,"tess",1,1,85,3,85,90,"CNN","Democrat" +4,1,7248,"tess",2,0,19,3,81,24,"CNN","Democrat" +4,1,7253,"tess",4,0,0,2,100,46,"CNN","Neither" +4,1,7280,"tess",2,1,46,2,46,99,"CNN","Neither" +4,1,7287,"tess",2,0,50,3,50,40,"CNN","Republican" +4,1,7289,"tess",1,1,60,2,60,63,"CNN","Democrat" +4,1,7307,"tess",2,1,98,2,98,97,"CNN","Democrat" +4,1,7323,"tess",3,0,0,3,100,2,"CNN","Republican" +4,1,7341,"tess",2,1,51,2,51,99,"CNN","Democrat" +4,1,7353,"tess",1,0,100,3,0,2,"CNN","Democrat" +4,1,7360,"tess",1,0,75,2,25,24,"CNN","Democrat" +4,1,7368,"tess",1,1,71,2,71,1,"CNN","Democrat" +4,1,7370,"tess",1,1,28,2,28,99,"CNN","Republican" +4,1,7381,"tess",4,0,50,2,50,2,"CNN","Republican" +4,1,7412,"tess",3,0,3,3,97,100,"CNN","Republican" +4,1,7418,"tess",3,1,97,2,97,97,"CNN","Democrat" +4,1,7427,"tess",2,0,95,2,5,89,"CNN","Democrat" +4,1,7432,"tess",3,0,75,2,25,25,"CNN","Democrat" +4,1,7440,"tess",1,1,51,2,51,80,"CNN","Republican" +4,1,7441,"tess",2,0,80,2,20,10,"CNN","Democrat" +4,1,7446,"tess",2,0,50,3,50,89,"CNN","Democrat" +4,1,7448,"tess",1,0,95,2,5,0,"CNN","Democrat" +4,1,7452,"tess",3,0,53,2,47,49,"CNN","Democrat" +4,1,7453,"tess",3,1,10,3,10,30,"CNN","Republican" +4,1,7472,"tess",3,0,50,3,50,1,"CNN","Republican" +4,1,7475,"tess",2,1,98,2,98,90,"CNN","Neither" +4,1,7477,"tess",3,1,50,2,50,50,"CNN","Republican" +4,1,7479,"tess",1,1,98,2,98,0,"CNN","Democrat" +4,1,7494,"tess",1,1,52,2,52,71,"CNN","Republican" +4,1,7497,"tess",3,0,18,3,82,15,"CNN","Democrat" +4,1,7498,"tess",1,1,85,2,85,77,"CNN","Republican" +4,1,7504,"tess",1,0,40,3,60,40,"CNN","Republican" +4,1,7528,"tess",2,0,50,3,50,50,"CNN","Republican" +4,1,7546,"tess",3,0,30,2,70,4,"CNN","Republican" +4,1,7564,"tess",4,1,93,2,93,95,"CNN","Democrat" +4,1,7569,"tess",2,1,100,3,100,100,"CNN","Republican" +4,1,7577,"tess",4,1,51,2,51,80,"CNN","Democrat" +4,1,7584,"tess",3,1,91,3,91,53,"CNN","Republican" +4,1,7587,"tess",1,0,100,2,0,4,"CNN","Democrat" +4,1,7594,"tess",4,1,65,2,65,60,"CNN","Democrat" +4,1,7597,"tess",1,1,90,2,90,90,"CNN","Democrat" +4,1,7603,"tess",2,0,100,3,0,90,"CNN","Democrat" +4,1,7607,"tess",4,0,80,2,20,20,"CNN","Neither" +4,1,7622,"tess",1,0,75,3,25,100,"CNN","Democrat" +4,1,7623,"tess",3,0,40,3,60,40,"CNN","Republican" +4,1,7630,"tess",3,0,100,2,0,19,"CNN","Democrat" +4,1,7631,"tess",3,1,5,2,5,27,"CNN","Democrat" +4,1,7662,"tess",4,1,71,2,71,100,"CNN","Democrat" +4,1,7667,"tess",3,1,100,3,100,100,"CNN","Democrat" +4,1,7688,"tess",2,0,55,2,45,22,"CNN","Democrat" +4,1,7699,"tess",1,1,48,3,48,1,"CNN","Democrat" +4,1,7717,"tess",1,0,90,3,10,10,"CNN","Democrat" +4,1,7739,"tess",2,0,9,2,91,100,"CNN","Republican" +4,1,7747,"tess",2,0,100,2,0,2,"CNN","Democrat" +4,1,7754,"tess",1,1,50,3,50,11,"CNN","Neither" +4,1,7786,"tess",3,1,29,2,29,19,"CNN","Democrat" +4,1,7822,"tess",2,0,79,2,21,20,"CNN","Democrat" +4,1,7854,"tess",1,0,59,3,41,24,"CNN","Democrat" +4,1,7856,"tess",2,0,40,3,60,60,"CNN","Republican" +4,1,7861,"tess",1,0,10,3,90,50,"CNN","Republican" +4,1,7872,"tess",2,1,99,2,99,51,"CNN","Democrat" +4,1,7891,"tess",1,1,100,2,100,99,"CNN","Republican" +4,1,7906,"tess",2,1,90,2,90,90,"CNN","Republican" +4,1,7908,"tess",3,1,0,2,0,99,"CNN","Republican" +4,1,7910,"tess",1,0,94,2,6,0,"CNN","Democrat" +4,1,7936,"tess",3,0,61,2,39,45,"CNN","Democrat" +4,1,7946,"tess",1,0,60,3,40,39,"CNN","Democrat" +4,1,7965,"tess",1,0,69,2,31,82,"CNN","Democrat" +4,1,7968,"tess",3,0,90,3,10,15,"CNN","Democrat" +4,1,7973,"tess",4,1,84,2,84,90,"CNN","Republican" +4,1,7983,"tess",3,1,94,2,94,100,"CNN","Democrat" +4,1,7987,"tess",3,0,9,3,91,72,"CNN","Democrat" +4,1,8023,"tess",1,1,53,3,53,100,"CNN","Democrat" +4,1,8049,"tess",2,0,81,3,19,25,"CNN","Republican" +4,1,8055,"tess",2,1,80,2,80,20,"CNN","Democrat" +4,1,8063,"tess",3,0,91,3,9,3,"CNN","Republican" +4,1,8069,"tess",3,0,71,2,29,50,"CNN","Democrat" +4,1,8078,"tess",2,0,70,3,30,1,"CNN","Republican" +4,1,8081,"tess",2,1,100,2,100,99,"CNN","Democrat" +4,1,8104,"tess",2,1,98,2,98,25,"CNN","Republican" +4,1,8110,"tess",2,1,80,3,80,51,"CNN","Democrat" +4,1,8112,"tess",2,1,50,2,50,50,"CNN","Democrat" +4,1,8141,"tess",3,0,100,3,0,0,"CNN","Democrat" +4,1,8146,"tess",1,1,99,2,99,99,"CNN","Republican" +4,1,8160,"tess",4,1,18,2,18,88,"CNN","Democrat" +4,1,8181,"tess",2,1,50,3,50,50,"CNN","Republican" +4,1,8190,"tess",1,0,100,2,0,11,"CNN","Democrat" +4,1,8191,"tess",3,1,90,3,90,90,"CNN","Democrat" +4,1,8196,"tess",4,1,100,2,100,99,"CNN","Democrat" +4,1,8199,"tess",3,0,50,2,50,10,"CNN","Democrat" +4,1,8201,"tess",3,0,85,3,15,15,"CNN","Democrat" +4,1,8202,"tess",2,0,61,3,39,96,"CNN","Republican" +4,1,8203,"tess",2,1,85,3,85,54,"CNN","Republican" +4,1,8207,"tess",1,1,86,3,86,100,"CNN","Democrat" +4,1,8218,"tess",2,0,89,3,11,11,"CNN","Democrat" +4,1,8221,"tess",3,0,84,2,16,20,"CNN","Democrat" +4,1,8224,"tess",2,1,0,2,0,98,"CNN","Republican" +4,1,8228,"tess",1,0,95,2,5,19,"CNN","Democrat" +4,1,8244,"tess",2,1,50,3,50,99,"CNN","Republican" +4,1,8250,"tess",4,1,90,2,90,70,"CNN","Democrat" +4,1,8253,"tess",4,0,90,2,10,0,"CNN","Democrat" +4,1,8274,"tess",2,0,1,3,99,1,"CNN","Republican" +4,1,8276,"tess",3,0,80,3,20,30,"CNN","Republican" +4,1,8285,"tess",3,1,0,2,0,100,"CNN","Democrat" +4,1,8317,"tess",3,1,0,2,0,99,"CNN","Republican" +4,1,8327,"tess",2,1,78,2,78,90,"CNN","Democrat" +4,1,8335,"tess",4,1,58,2,58,93,"CNN","Republican" +4,1,8347,"tess",2,1,43,3,43,62,"CNN","Republican" +4,1,8356,"tess",1,1,100,3,100,100,"CNN","Neither" +4,1,8361,"tess",1,1,70,2,70,50,"CNN","Republican" +4,1,8400,"tess",4,1,100,2,100,100,"CNN","Democrat" +4,1,8405,"tess",1,0,75,2,25,24,"CNN","Democrat" +4,1,8425,"tess",2,1,91,2,91,91,"CNN","Democrat" +4,1,8435,"tess",1,0,92,3,8,10,"CNN","Republican" +4,1,8449,"tess",2,0,91,2,9,29,"CNN","Democrat" +4,1,8452,"tess",2,1,30,3,30,49,"CNN","Republican" +4,1,8455,"tess",1,1,98,3,98,4,"CNN","Republican" +4,1,8507,"tess",4,1,99,2,99,50,"CNN","Democrat" +4,1,8522,"tess",3,0,80,2,20,20,"CNN","Democrat" +4,1,8541,"tess",4,0,98,2,2,8,"CNN","Republican" +4,1,8544,"tess",2,1,50,2,50,79,"CNN","Democrat" +4,1,8577,"tess",2,0,51,2,49,50,"CNN","Democrat" +4,1,8579,"tess",2,0,60,3,40,50,"CNN","Democrat" +4,1,8583,"tess",2,0,94,2,6,6,"CNN","Democrat" +4,1,8589,"tess",1,1,50,3,50,50,"CNN","Democrat" +4,1,8590,"tess",3,0,48,2,52,5,"CNN","Republican" +4,1,8607,"tess",2,1,86,3,86,86,"CNN","Republican" +4,1,8640,"tess",3,1,90,3,90,10,"CNN","Democrat" +4,1,8651,"tess",1,0,61,2,39,26,"CNN","Republican" +4,1,8659,"tess",4,1,78,2,78,100,"CNN","Democrat" +4,1,8710,"tess",1,1,67,2,67,80,"CNN","Democrat" +4,1,8714,"tess",3,0,97,3,3,2,"CNN","Democrat" +4,1,8717,"tess",1,0,95,2,5,5,"CNN","Republican" +4,1,8719,"tess",1,0,50,3,50,50,"CNN","Republican" +4,1,8731,"tess",4,0,84,2,16,13,"CNN","Democrat" +4,1,8739,"tess",3,0,76,2,24,33,"CNN","Republican" +4,1,8755,"tess",2,0,93,2,7,0,"CNN","Democrat" +4,1,8763,"tess",2,0,80,3,20,20,"CNN","Republican" +4,1,8765,"tess",3,1,90,3,90,90,"CNN","Democrat" +4,1,8768,"tess",3,1,100,3,100,100,"CNN","Democrat" +4,1,8777,"tess",2,0,80,2,20,20,"CNN","Democrat" +4,1,8779,"tess",1,0,100,2,0,1,"CNN","Republican" +4,1,8782,"tess",3,1,51,2,51,53,"CNN","Republican" +4,1,8790,"tess",3,0,75,3,25,25,"CNN","Republican" +4,1,8810,"tess",4,1,95,2,95,89,"CNN","Democrat" +4,1,8821,"tess",1,0,70,2,30,9,"CNN","Republican" +4,1,8826,"tess",2,1,63,3,63,20,"CNN","Republican" +4,1,8836,"tess",3,0,78,3,22,68,"CNN","Democrat" +4,1,8848,"tess",4,1,100,2,100,100,"CNN","Democrat" +4,1,8853,"tess",3,0,94,2,6,22,"CNN","Democrat" +4,1,8866,"tess",1,0,80,3,20,80,"CNN","Democrat" +4,1,8881,"tess",2,1,100,3,100,0,"CNN","Democrat" +4,1,8890,"tess",3,1,100,3,100,99,"CNN","Republican" +4,1,8903,"tess",4,1,73,2,73,70,"CNN","Republican" +4,1,8946,"tess",2,1,100,3,100,100,"CNN","Democrat" +4,1,8956,"tess",2,0,87,2,13,6,"CNN","Republican" +4,1,8981,"tess",2,0,70,3,30,80,"CNN","Democrat" +4,1,8983,"tess",4,0,98,2,2,0,"CNN","Democrat" +4,1,8988,"tess",1,0,40,2,60,11,"CNN","Republican" +4,1,8990,"tess",1,1,0,3,0,0,"CNN","Republican" +4,1,8999,"tess",1,0,10,3,90,86,"CNN","Democrat" +4,1,9025,"tess",2,1,16,2,16,89,"CNN","Republican" +4,1,9038,"tess",2,1,21,3,21,71,"CNN","Neither" +4,1,9050,"tess",2,0,9,2,91,90,"CNN","Republican" +4,1,9057,"tess",1,0,51,2,49,0,"CNN","Republican" +4,1,9066,"tess",2,0,50,3,50,50,"CNN","Republican" +4,1,9068,"tess",4,0,92,2,8,9,"CNN","Democrat" +4,1,9070,"tess",1,1,70,3,70,90,"CNN","Democrat" +4,1,9074,"tess",3,1,80,2,80,90,"CNN","Republican" +4,1,9083,"tess",4,0,9,2,91,88,"CNN","Neither" +4,1,9084,"tess",3,0,99,3,1,1,"CNN","Democrat" +4,1,9108,"tess",2,0,70,2,30,40,"CNN","Democrat" +4,1,9119,"tess",4,0,91,2,9,90,"CNN","Democrat" +4,1,9120,"tess",3,0,50,3,50,49,"CNN","Democrat" +4,1,9146,"tess",1,0,90,2,10,3,"CNN","Republican" +4,1,9149,"tess",1,0,30,3,70,90,"CNN","Democrat" +4,1,9150,"tess",1,1,100,3,100,86,"CNN","Republican" +4,1,9152,"tess",4,0,11,2,89,26,"CNN","Democrat" +4,1,9153,"tess",2,0,97,2,3,2,"CNN","Democrat" +4,1,9154,"tess",3,0,100,2,0,0,"CNN","Democrat" +4,1,9155,"tess",1,1,80,3,80,79,"CNN","Democrat" +4,1,9184,"tess",2,0,100,3,0,2,"CNN","Democrat" +4,1,9210,"tess",2,1,NA,2,NA,54,"CNN","Democrat" +4,1,9236,"tess",4,0,100,2,0,36,"CNN","Republican" +4,1,9239,"tess",1,0,99,2,1,1,"CNN","Democrat" +4,1,9267,"tess",3,0,46,3,54,1,"CNN","Democrat" +4,1,9269,"tess",3,1,95,3,95,50,"CNN","Democrat" +4,1,9279,"tess",2,0,70,2,30,21,"CNN","Democrat" +4,1,9286,"tess",2,0,86,3,14,24,"CNN","Democrat" +4,1,9297,"tess",3,0,NA,2,NA,50,"CNN","Republican" +4,1,9298,"tess",2,0,88,2,12,20,"CNN","Democrat" +4,1,9337,"tess",2,1,94,2,94,90,"CNN","Republican" +4,1,9342,"tess",3,1,78,2,78,70,"CNN","Republican" +4,1,9346,"tess",2,0,50,2,50,60,"CNN","Democrat" +4,1,9352,"tess",1,0,0,2,100,51,"CNN","Democrat" +4,1,9360,"tess",4,1,23,2,23,90,"CNN","Republican" +4,1,9372,"tess",3,0,9,2,91,91,"CNN","Democrat" +4,1,9398,"tess",1,1,41,3,41,42,"CNN","Republican" +4,1,9412,"tess",1,1,1,2,1,99,"CNN","Republican" +4,1,9420,"tess",4,1,23,2,23,100,"CNN","Democrat" +4,1,9424,"tess",3,0,99,3,1,11,"CNN","Democrat" +4,1,9425,"tess",2,1,90,2,90,60,"CNN","Democrat" +4,1,9440,"tess",1,1,90,2,90,90,"CNN","Republican" +4,1,9458,"tess",1,0,66,3,34,69,"CNN","Republican" +4,1,9471,"tess",1,1,96,3,96,60,"CNN","Democrat" +4,1,9475,"tess",2,0,20,2,80,30,"CNN","Republican" +4,1,9479,"tess",2,0,97,2,3,3,"CNN","Democrat" +4,1,9514,"tess",1,1,82,2,82,69,"CNN","Republican" +4,1,9532,"tess",3,1,99,2,99,99,"CNN","Republican" +4,1,9534,"tess",2,0,0,2,100,96,"CNN","Democrat" +4,1,9536,"tess",4,0,100,2,0,1,"CNN","Democrat" +4,1,9538,"tess",3,1,NA,3,NA,NA,"CNN","Republican" +4,1,9563,"tess",3,1,98,2,98,95,"CNN","Republican" +4,1,9601,"tess",3,0,80,2,20,30,"CNN","Republican" +4,1,9603,"tess",1,0,99,3,1,1,"CNN","Democrat" +4,1,9608,"tess",1,1,50,2,50,50,"CNN","Democrat" +4,1,9626,"tess",1,1,2,3,2,20,"CNN","Democrat" +4,1,9631,"tess",1,1,90,3,90,90,"CNN","Democrat" +4,1,9635,"tess",4,0,90,2,10,20,"CNN","Democrat" +4,1,9645,"tess",1,0,66,2,34,41,"CNN","Democrat" +4,1,9647,"tess",4,0,97,2,3,10,"CNN","Republican" +4,1,9648,"tess",2,0,10,3,90,95,"CNN","Democrat" +4,1,9663,"tess",2,1,31,3,31,40,"CNN","Democrat" +4,1,9666,"tess",2,1,2,2,2,5,"CNN","Republican" +4,1,9671,"tess",3,1,70,3,70,55,"CNN","Democrat" +4,1,9676,"tess",3,1,89,2,89,92,"CNN","Democrat" +4,1,9679,"tess",3,1,50,3,50,50,"CNN","Republican" +4,1,9689,"tess",3,0,50,3,50,50,"CNN","Democrat" +4,1,9701,"tess",2,0,85,2,15,10,"CNN","Democrat" +4,1,9711,"tess",1,0,70,2,30,30,"CNN","Neither" +4,1,9716,"tess",4,0,95,2,5,7,"CNN","Democrat" +4,1,9731,"tess",1,0,98,3,2,0,"CNN","Democrat" +4,2,53,"tess",1,0,89,2,11,11,"Fox News","Democrat" +4,2,68,"tess",2,0,58,3,42,85,"Fox News","Democrat" +4,2,70,"tess",4,1,20,2,20,85,"Fox News","Republican" +4,2,94,"tess",2,0,90,3,10,10,"Fox News","Republican" +4,2,95,"tess",3,0,96,2,4,2,"Fox News","Democrat" +4,2,114,"tess",1,0,NA,2,NA,6,"Fox News","Republican" +4,2,120,"tess",1,0,90,2,10,10,"Fox News","Democrat" +4,2,130,"tess",2,1,48,2,48,70,"Fox News","Republican" +4,2,152,"tess",3,1,21,2,21,94,"Fox News","Neither" +4,2,165,"tess",2,0,10,3,90,18,"Fox News","Democrat" +4,2,187,"tess",2,1,80,3,80,80,"Fox News","Republican" +4,2,189,"tess",1,1,91,2,91,90,"Fox News","Republican" +4,2,196,"tess",1,1,72,2,72,86,"Fox News","Democrat" +4,2,206,"tess",2,0,92,2,8,49,"Fox News","Republican" +4,2,234,"tess",1,1,99,2,99,0,"Fox News","Democrat" +4,2,247,"tess",1,0,100,3,0,0,"Fox News","Republican" +4,2,263,"tess",2,1,72,2,72,84,"Fox News","Neither" +4,2,266,"tess",2,0,99,2,1,40,"Fox News","Democrat" +4,2,299,"tess",3,0,20,2,80,50,"Fox News","Democrat" +4,2,336,"tess",1,1,20,2,20,94,"Fox News","Republican" +4,2,342,"tess",3,1,90,3,90,100,"Fox News","Democrat" +4,2,379,"tess",2,1,99,3,99,99,"Fox News","Democrat" +4,2,405,"tess",4,0,2,2,98,99,"Fox News","Republican" +4,2,426,"tess",3,1,50,2,50,50,"Fox News","Republican" +4,2,430,"tess",4,0,61,2,39,40,"Fox News","Republican" +4,2,450,"tess",2,1,31,2,31,3,"Fox News","Republican" +4,2,461,"tess",2,1,49,3,49,21,"Fox News","Republican" +4,2,482,"tess",2,0,90,3,10,30,"Fox News","Democrat" +4,2,502,"tess",3,0,50,2,50,20,"Fox News","Democrat" +4,2,503,"tess",3,0,100,2,0,50,"Fox News","Republican" +4,2,508,"tess",4,0,88,2,12,35,"Fox News","Republican" +4,2,512,"tess",2,0,70,3,30,20,"Fox News","Democrat" +4,2,530,"tess",4,1,24,2,24,100,"Fox News","Republican" +4,2,542,"tess",4,1,15,2,15,12,"Fox News","Republican" +4,2,549,"tess",3,0,50,3,50,81,"Fox News","Democrat" +4,2,584,"tess",1,0,56,2,44,54,"Fox News","Democrat" +4,2,589,"tess",3,1,60,3,60,96,"Fox News","Republican" +4,2,591,"tess",1,0,50,2,50,67,"Fox News","Democrat" +4,2,603,"tess",2,0,90,3,10,10,"Fox News","Democrat" +4,2,608,"tess",4,1,99,2,99,99,"Fox News","Democrat" +4,2,611,"tess",1,1,14,3,14,90,"Fox News","Republican" +4,2,617,"tess",4,1,100,2,100,0,"Fox News","Republican" +4,2,627,"tess",3,0,10,3,90,80,"Fox News","Democrat" +4,2,649,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,680,"tess",2,0,79,2,21,35,"Fox News","Republican" +4,2,702,"tess",3,1,0,3,0,9,"Fox News","Democrat" +4,2,709,"tess",3,0,91,2,9,9,"Fox News","Republican" +4,2,717,"tess",2,0,90,2,10,25,"Fox News","Republican" +4,2,727,"tess",3,0,50,3,50,99,"Fox News","Republican" +4,2,734,"tess",4,1,90,2,90,85,"Fox News","Republican" +4,2,740,"tess",3,0,99,2,1,49,"Fox News","Democrat" +4,2,753,"tess",4,1,96,2,96,95,"Fox News","Republican" +4,2,766,"tess",3,1,97,2,97,100,"Fox News","Republican" +4,2,771,"tess",1,0,100,3,0,51,"Fox News","Democrat" +4,2,783,"tess",3,1,81,3,81,80,"Fox News","Democrat" +4,2,786,"tess",3,0,79,3,21,72,"Fox News","Republican" +4,2,803,"tess",1,1,71,3,71,71,"Fox News","Democrat" +4,2,804,"tess",3,0,94,2,6,76,"Fox News","Democrat" +4,2,806,"tess",2,1,49,2,49,50,"Fox News","Democrat" +4,2,829,"tess",3,1,80,3,80,65,"Fox News","Neither" +4,2,851,"tess",1,0,26,2,74,70,"Fox News","Republican" +4,2,855,"tess",2,0,97,3,3,1,"Fox News","Republican" +4,2,883,"tess",2,0,50,3,50,5,"Fox News","Democrat" +4,2,886,"tess",2,0,97,2,3,5,"Fox News","Republican" +4,2,890,"tess",3,0,89,3,11,23,"Fox News","Republican" +4,2,891,"tess",3,1,100,2,100,100,"Fox News","Republican" +4,2,895,"tess",2,1,99,2,99,99,"Fox News","Democrat" +4,2,903,"tess",1,0,56,2,44,41,"Fox News","Republican" +4,2,912,"tess",3,0,0,2,100,79,"Fox News","Democrat" +4,2,918,"tess",2,0,NA,3,NA,61,"Fox News","Republican" +4,2,919,"tess",2,1,2,2,2,91,"Fox News","Democrat" +4,2,958,"tess",3,0,100,3,0,0,"Fox News","Democrat" +4,2,997,"tess",2,1,99,3,99,100,"Fox News","Democrat" +4,2,1018,"tess",4,1,94,2,94,9,"Fox News","Republican" +4,2,1020,"tess",3,0,80,2,20,50,"Fox News","Republican" +4,2,1031,"tess",4,1,93,2,93,97,"Fox News","Democrat" +4,2,1036,"tess",3,0,1,3,99,99,"Fox News","Republican" +4,2,1046,"tess",1,1,99,3,99,40,"Fox News","Republican" +4,2,1051,"tess",3,1,86,3,86,80,"Fox News","Republican" +4,2,1055,"tess",1,0,80,2,20,30,"Fox News","Republican" +4,2,1058,"tess",4,1,95,2,95,95,"Fox News","Republican" +4,2,1064,"tess",2,1,NA,2,NA,79,"Fox News","Democrat" +4,2,1065,"tess",4,1,95,2,95,96,"Fox News","Republican" +4,2,1066,"tess",2,0,54,3,46,13,"Fox News","Democrat" +4,2,1067,"tess",3,0,100,2,0,0,"Fox News","Republican" +4,2,1068,"tess",3,0,52,2,48,43,"Fox News","Republican" +4,2,1081,"tess",1,1,50,2,50,97,"Fox News","Democrat" +4,2,1083,"tess",2,1,26,3,26,97,"Fox News","Democrat" +4,2,1100,"tess",3,1,9,2,9,24,"Fox News","Republican" +4,2,1110,"tess",2,0,94,2,6,5,"Fox News","Neither" +4,2,1119,"tess",4,0,70,2,30,20,"Fox News","Republican" +4,2,1122,"tess",4,1,0,2,0,99,"Fox News","Republican" +4,2,1133,"tess",4,0,90,2,10,50,"Fox News","Republican" +4,2,1149,"tess",3,1,97,3,97,100,"Fox News","Democrat" +4,2,1150,"tess",3,1,47,2,47,46,"Fox News","Democrat" +4,2,1178,"tess",3,1,89,2,89,99,"Fox News","Republican" +4,2,1182,"tess",4,1,100,2,100,94,"Fox News","Republican" +4,2,1259,"tess",3,1,90,3,90,38,"Fox News","Democrat" +4,2,1277,"tess",3,1,50,3,50,99,"Fox News","Republican" +4,2,1282,"tess",3,1,88,3,88,66,"Fox News","Republican" +4,2,1284,"tess",1,1,98,3,98,97,"Fox News","Democrat" +4,2,1285,"tess",2,0,92,3,8,49,"Fox News","Neither" +4,2,1288,"tess",3,1,65,3,65,70,"Fox News","Republican" +4,2,1304,"tess",2,0,85,2,15,50,"Fox News","Democrat" +4,2,1309,"tess",4,1,100,2,100,93,"Fox News","Democrat" +4,2,1336,"tess",2,0,60,2,40,50,"Fox News","Republican" +4,2,1397,"tess",3,1,NA,2,NA,99,"Fox News","Democrat" +4,2,1408,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,1444,"tess",2,1,60,2,60,51,"Fox News","Democrat" +4,2,1445,"tess",4,0,50,2,50,30,"Fox News","Republican" +4,2,1461,"tess",3,1,86,2,86,77,"Fox News","Democrat" +4,2,1468,"tess",2,1,97,3,97,75,"Fox News","Republican" +4,2,1500,"tess",2,1,85,3,85,70,"Fox News","Democrat" +4,2,1511,"tess",1,0,90,2,10,20,"Fox News","Republican" +4,2,1523,"tess",3,1,97,3,97,5,"Fox News","Republican" +4,2,1530,"tess",2,1,95,2,95,98,"Fox News","Republican" +4,2,1541,"tess",4,1,80,2,80,70,"Fox News","Republican" +4,2,1605,"tess",4,0,83,2,17,23,"Fox News","Republican" +4,2,1608,"tess",2,0,79,3,21,90,"Fox News","Republican" +4,2,1618,"tess",4,1,46,2,46,39,"Fox News","Republican" +4,2,1631,"tess",2,1,61,2,61,80,"Fox News","Democrat" +4,2,1634,"tess",2,1,100,3,100,99,"Fox News","Democrat" +4,2,1654,"tess",3,1,76,3,76,83,"Fox News","Democrat" +4,2,1663,"tess",4,1,76,2,76,65,"Fox News","Neither" +4,2,1706,"tess",4,1,30,2,30,20,"Fox News","Democrat" +4,2,1726,"tess",2,0,70,3,30,60,"Fox News","Democrat" +4,2,1739,"tess",1,0,NA,3,NA,NA,"Fox News","Republican" +4,2,1767,"tess",3,0,37,2,63,59,"Fox News","Republican" +4,2,1775,"tess",2,1,76,3,76,65,"Fox News","Democrat" +4,2,1813,"tess",1,0,77,3,23,53,"Fox News","Democrat" +4,2,1832,"tess",3,1,80,2,80,80,"Fox News","Republican" +4,2,1834,"tess",2,0,98,3,2,0,"Fox News","Neither" +4,2,1835,"tess",2,1,98,3,98,3,"Fox News","Neither" +4,2,1850,"tess",4,0,50,2,50,70,"Fox News","Republican" +4,2,1863,"tess",4,1,85,2,85,80,"Fox News","Republican" +4,2,1870,"tess",2,1,40,3,40,40,"Fox News","Republican" +4,2,1890,"tess",3,1,69,2,69,81,"Fox News","Democrat" +4,2,1898,"tess",4,0,59,2,41,50,"Fox News","Democrat" +4,2,1899,"tess",3,0,99,2,1,5,"Fox News","Democrat" +4,2,1900,"tess",3,1,100,3,100,90,"Fox News","Republican" +4,2,1939,"tess",1,1,100,3,100,96,"Fox News","Democrat" +4,2,1945,"tess",1,1,77,3,77,1,"Fox News","Democrat" +4,2,1950,"tess",3,0,21,2,79,63,"Fox News","Republican" +4,2,1952,"tess",3,1,80,3,80,50,"Fox News","Democrat" +4,2,1953,"tess",4,0,29,2,71,81,"Fox News","Republican" +4,2,1973,"tess",4,1,70,2,70,79,"Fox News","Democrat" +4,2,1976,"tess",1,1,70,2,70,97,"Fox News","Republican" +4,2,1981,"tess",3,0,76,2,24,15,"Fox News","Democrat" +4,2,1982,"tess",1,1,NA,2,NA,100,"Fox News","Democrat" +4,2,2017,"tess",3,0,41,3,59,35,"Fox News","Democrat" +4,2,2044,"tess",3,1,50,2,50,69,"Fox News","Republican" +4,2,2049,"tess",3,0,70,2,30,17,"Fox News","Democrat" +4,2,2057,"tess",4,1,90,2,90,90,"Fox News","Republican" +4,2,2066,"tess",4,0,98,2,2,3,"Fox News","Republican" +4,2,2072,"tess",2,0,28,2,72,16,"Fox News","Democrat" +4,2,2080,"tess",3,0,81,3,19,19,"Fox News","Democrat" +4,2,2088,"tess",3,1,70,3,70,90,"Fox News","Democrat" +4,2,2100,"tess",2,1,55,3,55,55,"Fox News","Democrat" +4,2,2124,"tess",3,1,56,2,56,45,"Fox News","Republican" +4,2,2137,"tess",2,1,100,3,100,100,"Fox News","Democrat" +4,2,2147,"tess",3,1,100,2,100,94,"Fox News","Democrat" +4,2,2179,"tess",1,1,NA,3,NA,NA,"Fox News","Democrat" +4,2,2187,"tess",3,1,52,3,52,49,"Fox News","Democrat" +4,2,2188,"tess",2,0,90,3,10,20,"Fox News","Republican" +4,2,2190,"tess",4,0,9,2,91,7,"Fox News","Neither" +4,2,2196,"tess",3,1,100,3,100,63,"Fox News","Republican" +4,2,2197,"tess",3,1,91,2,91,80,"Fox News","Republican" +4,2,2207,"tess",1,1,26,3,26,78,"Fox News","Republican" +4,2,2208,"tess",2,1,0,3,0,0,"Fox News","Democrat" +4,2,2215,"tess",2,0,90,2,10,0,"Fox News","Republican" +4,2,2225,"tess",2,1,100,2,100,75,"Fox News","Republican" +4,2,2228,"tess",3,0,91,3,9,11,"Fox News","Democrat" +4,2,2242,"tess",2,0,77,2,23,14,"Fox News","Republican" +4,2,2248,"tess",4,0,71,2,29,48,"Fox News","Democrat" +4,2,2272,"tess",2,0,94,3,6,11,"Fox News","Democrat" +4,2,2275,"tess",4,0,86,2,14,17,"Fox News","Republican" +4,2,2287,"tess",4,0,80,2,20,20,"Fox News","Democrat" +4,2,2291,"tess",4,0,50,2,50,20,"Fox News","Republican" +4,2,2313,"tess",2,0,50,3,50,50,"Fox News","Democrat" +4,2,2315,"tess",1,0,89,3,11,18,"Fox News","Democrat" +4,2,2359,"tess",1,1,99,3,99,99,"Fox News","Democrat" +4,2,2381,"tess",3,1,81,2,81,76,"Fox News","Democrat" +4,2,2394,"tess",3,1,71,3,71,56,"Fox News","Democrat" +4,2,2407,"tess",4,1,29,2,29,1,"Fox News","Republican" +4,2,2424,"tess",1,0,81,3,19,40,"Fox News","Republican" +4,2,2435,"tess",2,1,65,2,65,96,"Fox News","Democrat" +4,2,2445,"tess",3,1,33,3,33,96,"Fox News","Republican" +4,2,2459,"tess",1,0,80,2,20,40,"Fox News","Democrat" +4,2,2460,"tess",1,1,93,3,93,90,"Fox News","Democrat" +4,2,2474,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,2484,"tess",4,1,90,2,90,99,"Fox News","Republican" +4,2,2486,"tess",2,0,70,2,30,23,"Fox News","Republican" +4,2,2488,"tess",3,1,64,3,64,22,"Fox News","Democrat" +4,2,2511,"tess",3,1,70,2,70,63,"Fox News","Democrat" +4,2,2520,"tess",1,1,100,2,100,99,"Fox News","Democrat" +4,2,2536,"tess",2,1,90,3,90,90,"Fox News","Democrat" +4,2,2537,"tess",4,1,89,2,89,72,"Fox News","Republican" +4,2,2547,"tess",1,0,70,2,30,30,"Fox News","Republican" +4,2,2578,"tess",1,0,29,3,71,75,"Fox News","Republican" +4,2,2611,"tess",2,1,94,2,94,91,"Fox News","Neither" +4,2,2623,"tess",1,0,98,3,2,26,"Fox News","Democrat" +4,2,2630,"tess",2,1,37,3,37,82,"Fox News","Republican" +4,2,2644,"tess",4,1,100,2,100,99,"Fox News","Democrat" +4,2,2658,"tess",3,1,88,3,88,95,"Fox News","Republican" +4,2,2664,"tess",2,1,98,2,98,93,"Fox News","Democrat" +4,2,2671,"tess",1,0,82,2,18,60,"Fox News","Republican" +4,2,2695,"tess",3,0,49,2,51,49,"Fox News","Republican" +4,2,2698,"tess",3,1,50,3,50,40,"Fox News","Republican" +4,2,2707,"tess",1,0,69,3,31,31,"Fox News","Democrat" +4,2,2714,"tess",2,1,96,2,96,96,"Fox News","Democrat" +4,2,2715,"tess",2,0,86,2,14,25,"Fox News","Republican" +4,2,2720,"tess",3,0,24,2,76,26,"Fox News","Republican" +4,2,2741,"tess",3,1,95,2,95,75,"Fox News","Democrat" +4,2,2760,"tess",2,0,49,2,51,10,"Fox News","Republican" +4,2,2767,"tess",4,1,66,2,66,43,"Fox News","Democrat" +4,2,2773,"tess",3,1,78,3,78,29,"Fox News","Republican" +4,2,2774,"tess",3,1,92,2,92,94,"Fox News","Republican" +4,2,2778,"tess",4,1,70,2,70,91,"Fox News","Republican" +4,2,2779,"tess",1,0,100,3,0,2,"Fox News","Democrat" +4,2,2784,"tess",2,1,90,3,90,80,"Fox News","Republican" +4,2,2795,"tess",1,0,40,3,60,60,"Fox News","Republican" +4,2,2799,"tess",1,1,12,3,12,0,"Fox News","Republican" +4,2,2808,"tess",3,0,92,2,8,8,"Fox News","Democrat" +4,2,2829,"tess",3,1,90,3,90,80,"Fox News","Democrat" +4,2,2852,"tess",3,1,100,3,100,100,"Fox News","Republican" +4,2,2863,"tess",2,1,60,2,60,80,"Fox News","Republican" +4,2,2888,"tess",4,1,97,2,97,90,"Fox News","Democrat" +4,2,2892,"tess",1,1,57,3,57,50,"Fox News","Democrat" +4,2,2903,"tess",1,0,89,2,11,0,"Fox News","Democrat" +4,2,2905,"tess",3,0,50,3,50,63,"Fox News","Democrat" +4,2,2906,"tess",1,0,94,3,6,5,"Fox News","Democrat" +4,2,2915,"tess",2,1,60,3,60,99,"Fox News","Democrat" +4,2,2917,"tess",4,1,81,2,81,4,"Fox News","Republican" +4,2,2940,"tess",4,1,100,2,100,100,"Fox News","Republican" +4,2,2953,"tess",2,1,96,2,96,90,"Fox News","Neither" +4,2,2970,"tess",3,1,95,2,95,99,"Fox News","Neither" +4,2,2981,"tess",2,1,90,3,90,30,"Fox News","Democrat" +4,2,2982,"tess",2,1,80,3,80,91,"Fox News","Democrat" +4,2,2987,"tess",1,0,100,3,0,0,"Fox News","Republican" +4,2,2988,"tess",1,1,99,3,99,51,"Fox News","Democrat" +4,2,2990,"tess",4,0,80,2,20,20,"Fox News","Republican" +4,2,3006,"tess",2,0,NA,3,NA,9,"Fox News","Democrat" +4,2,3025,"tess",1,1,99,3,99,99,"Fox News","Democrat" +4,2,3048,"tess",2,0,100,2,0,0,"Fox News","Democrat" +4,2,3071,"tess",1,1,78,2,78,82,"Fox News","Democrat" +4,2,3076,"tess",1,1,0,2,0,1,"Fox News","Republican" +4,2,3077,"tess",2,0,95,2,5,15,"Fox News","Democrat" +4,2,3086,"tess",4,0,80,2,20,72,"Fox News","Republican" +4,2,3089,"tess",1,0,67,2,33,71,"Fox News","Democrat" +4,2,3096,"tess",1,1,1,2,1,1,"Fox News","Republican" +4,2,3111,"tess",2,0,50,3,50,50,"Fox News","Democrat" +4,2,3123,"tess",2,1,75,3,75,75,"Fox News","Democrat" +4,2,3188,"tess",1,0,92,2,8,6,"Fox News","Democrat" +4,2,3190,"tess",4,1,100,2,100,92,"Fox News","Democrat" +4,2,3208,"tess",1,1,50,3,50,80,"Fox News","Democrat" +4,2,3214,"tess",1,0,81,3,19,14,"Fox News","Democrat" +4,2,3226,"tess",2,0,96,3,4,0,"Fox News","Republican" +4,2,3259,"tess",1,0,84,3,16,0,"Fox News","Republican" +4,2,3263,"tess",2,1,80,2,80,80,"Fox News","Democrat" +4,2,3281,"tess",1,0,90,2,10,20,"Fox News","Democrat" +4,2,3288,"tess",3,1,NA,2,NA,75,"Fox News","Republican" +4,2,3313,"tess",3,1,69,3,69,73,"Fox News","Republican" +4,2,3342,"tess",1,1,75,2,75,91,"Fox News","Republican" +4,2,3344,"tess",4,0,87,2,13,14,"Fox News","Democrat" +4,2,3365,"tess",4,0,61,2,39,20,"Fox News","Democrat" +4,2,3371,"tess",2,0,99,2,1,1,"Fox News","Democrat" +4,2,3419,"tess",1,1,50,3,50,50,"Fox News","Democrat" +4,2,3424,"tess",2,0,82,2,18,47,"Fox News","Democrat" +4,2,3435,"tess",2,0,71,3,29,20,"Fox News","Republican" +4,2,3468,"tess",2,0,61,2,39,23,"Fox News","Democrat" +4,2,3494,"tess",1,0,55,3,45,40,"Fox News","Democrat" +4,2,3507,"tess",3,0,23,3,77,74,"Fox News","Democrat" +4,2,3508,"tess",1,1,91,2,91,80,"Fox News","Republican" +4,2,3512,"tess",1,1,49,3,49,2,"Fox News","Republican" +4,2,3513,"tess",1,1,86,2,86,71,"Fox News","Democrat" +4,2,3522,"tess",2,0,11,2,89,10,"Fox News","Republican" +4,2,3535,"tess",2,0,21,3,79,80,"Fox News","Democrat" +4,2,3554,"tess",2,0,87,3,13,14,"Fox News","Democrat" +4,2,3562,"tess",1,1,49,2,49,49,"Fox News","Democrat" +4,2,3573,"tess",2,0,70,3,30,26,"Fox News","Democrat" +4,2,3589,"tess",1,0,98,2,2,3,"Fox News","Democrat" +4,2,3593,"tess",3,1,98,2,98,64,"Fox News","Democrat" +4,2,3627,"tess",4,0,60,2,40,10,"Fox News","Republican" +4,2,3673,"tess",4,0,90,2,10,8,"Fox News","Republican" +4,2,3681,"tess",3,0,100,2,0,4,"Fox News","Democrat" +4,2,3704,"tess",3,1,100,3,100,100,"Fox News","Republican" +4,2,3710,"tess",1,1,100,2,100,90,"Fox News","Democrat" +4,2,3725,"tess",3,1,77,3,77,90,"Fox News","Republican" +4,2,3726,"tess",4,0,100,2,0,44,"Fox News","Democrat" +4,2,3736,"tess",1,0,100,3,0,49,"Fox News","Democrat" +4,2,3747,"tess",2,1,86,2,86,100,"Fox News","Democrat" +4,2,3767,"tess",3,1,100,2,100,100,"Fox News","Republican" +4,2,3776,"tess",1,0,100,2,0,0,"Fox News","Democrat" +4,2,3793,"tess",1,0,74,2,26,50,"Fox News","Republican" +4,2,3806,"tess",2,1,95,2,95,92,"Fox News","Republican" +4,2,3811,"tess",2,0,96,3,4,3,"Fox News","Republican" +4,2,3813,"tess",2,1,70,3,70,11,"Fox News","Republican" +4,2,3819,"tess",1,1,60,2,60,75,"Fox News","Republican" +4,2,3820,"tess",2,1,95,2,95,93,"Fox News","Democrat" +4,2,3845,"tess",2,0,86,2,14,20,"Fox News","Democrat" +4,2,3868,"tess",1,0,0,2,100,100,"Fox News","Democrat" +4,2,3880,"tess",1,1,39,3,39,49,"Fox News","Republican" +4,2,3890,"tess",4,1,96,2,96,100,"Fox News","Republican" +4,2,3918,"tess",1,0,99,3,1,99,"Fox News","Democrat" +4,2,3919,"tess",3,0,100,3,0,0,"Fox News","Democrat" +4,2,3923,"tess",4,0,80,2,20,0,"Fox News","Democrat" +4,2,3958,"tess",1,1,70,2,70,70,"Fox News","Republican" +4,2,3959,"tess",2,0,78,2,22,19,"Fox News","Democrat" +4,2,3965,"tess",3,0,75,3,25,20,"Fox News","Democrat" +4,2,3966,"tess",1,0,80,2,20,10,"Fox News","Democrat" +4,2,4006,"tess",1,1,80,2,80,80,"Fox News","Democrat" +4,2,4007,"tess",3,0,81,2,19,20,"Fox News","Republican" +4,2,4008,"tess",1,1,85,2,85,82,"Fox News","Republican" +4,2,4015,"tess",3,0,100,2,0,0,"Fox News","Democrat" +4,2,4035,"tess",4,1,99,2,99,100,"Fox News","Republican" +4,2,4043,"tess",1,1,14,2,14,100,"Fox News","Republican" +4,2,4065,"tess",3,1,70,2,70,80,"Fox News","Democrat" +4,2,4069,"tess",1,1,62,2,62,57,"Fox News","Democrat" +4,2,4076,"tess",4,0,22,2,78,10,"Fox News","Republican" +4,2,4079,"tess",2,1,95,2,95,100,"Fox News","Democrat" +4,2,4096,"tess",3,0,70,3,30,20,"Fox News","Democrat" +4,2,4108,"tess",3,1,100,2,100,99,"Fox News","Democrat" +4,2,4142,"tess",3,1,0,3,0,0,"Fox News","Democrat" +4,2,4149,"tess",2,0,100,2,0,21,"Fox News","Republican" +4,2,4153,"tess",1,1,98,2,98,95,"Fox News","Republican" +4,2,4175,"tess",3,0,70,3,30,50,"Fox News","Democrat" +4,2,4178,"tess",1,1,65,2,65,48,"Fox News","Democrat" +4,2,4186,"tess",3,0,100,3,0,66,"Fox News","Democrat" +4,2,4195,"tess",4,0,70,2,30,40,"Fox News","Republican" +4,2,4199,"tess",3,0,91,3,9,90,"Fox News","Democrat" +4,2,4210,"tess",1,0,95,3,5,20,"Fox News","Republican" +4,2,4217,"tess",1,1,85,2,85,20,"Fox News","Democrat" +4,2,4218,"tess",3,1,94,2,94,100,"Fox News","Democrat" +4,2,4227,"tess",4,1,85,2,85,95,"Fox News","Democrat" +4,2,4229,"tess",2,1,91,3,91,92,"Fox News","Democrat" +4,2,4251,"tess",2,0,93,2,7,14,"Fox News","Republican" +4,2,4253,"tess",1,1,55,3,55,85,"Fox News","Democrat" +4,2,4269,"tess",4,1,90,2,90,93,"Fox News","Republican" +4,2,4282,"tess",2,1,78,2,78,0,"Fox News","Republican" +4,2,4291,"tess",2,1,NA,3,NA,NA,"Fox News","Democrat" +4,2,4307,"tess",2,1,60,2,60,47,"Fox News","Republican" +4,2,4311,"tess",3,0,93,3,7,29,"Fox News","Democrat" +4,2,4322,"tess",1,0,99,2,1,1,"Fox News","Republican" +4,2,4331,"tess",1,1,50,2,50,70,"Fox News","Democrat" +4,2,4334,"tess",4,0,95,2,5,52,"Fox News","Republican" +4,2,4335,"tess",1,1,60,2,60,50,"Fox News","Republican" +4,2,4356,"tess",1,1,51,2,51,100,"Fox News","Republican" +4,2,4357,"tess",1,1,100,2,100,100,"Fox News","Democrat" +4,2,4361,"tess",2,0,97,2,3,84,"Fox News","Democrat" +4,2,4370,"tess",3,0,92,3,8,17,"Fox News","Republican" +4,2,4391,"tess",2,1,50,2,50,49,"Fox News","Democrat" +4,2,4401,"tess",1,1,100,3,100,80,"Fox News","Democrat" +4,2,4403,"tess",1,0,76,2,24,17,"Fox News","Republican" +4,2,4412,"tess",2,0,20,2,80,11,"Fox News","Republican" +4,2,4420,"tess",1,1,68,3,68,89,"Fox News","Democrat" +4,2,4441,"tess",3,1,100,3,100,100,"Fox News","Democrat" +4,2,4447,"tess",4,1,99,2,99,98,"Fox News","Republican" +4,2,4452,"tess",4,0,99,2,1,1,"Fox News","Republican" +4,2,4455,"tess",3,0,45,2,55,54,"Fox News","Democrat" +4,2,4484,"tess",3,0,95,3,5,6,"Fox News","Democrat" +4,2,4516,"tess",1,1,100,2,100,75,"Fox News","Democrat" +4,2,4524,"tess",3,0,80,2,20,20,"Fox News","Republican" +4,2,4525,"tess",4,0,97,2,3,2,"Fox News","Republican" +4,2,4548,"tess",3,0,50,3,50,50,"Fox News","Republican" +4,2,4574,"tess",3,1,16,3,16,60,"Fox News","Democrat" +4,2,4606,"tess",2,0,90,3,10,50,"Fox News","Republican" +4,2,4618,"tess",3,1,27,2,27,91,"Fox News","Democrat" +4,2,4624,"tess",4,1,50,2,50,85,"Fox News","Republican" +4,2,4642,"tess",2,0,31,2,69,90,"Fox News","Democrat" +4,2,4683,"tess",1,0,49,2,51,10,"Fox News","Neither" +4,2,4690,"tess",3,1,100,2,100,100,"Fox News","Democrat" +4,2,4700,"tess",4,0,80,2,20,20,"Fox News","Republican" +4,2,4713,"tess",4,0,2,2,98,10,"Fox News","Neither" +4,2,4740,"tess",2,1,70,3,70,20,"Fox News","Republican" +4,2,4742,"tess",3,0,90,2,10,80,"Fox News","Democrat" +4,2,4774,"tess",4,1,85,2,85,80,"Fox News","Republican" +4,2,4785,"tess",1,1,42,2,42,73,"Fox News","Republican" +4,2,4792,"tess",4,0,41,2,59,0,"Fox News","Republican" +4,2,4800,"tess",3,0,97,3,3,99,"Fox News","Republican" +4,2,4807,"tess",1,1,98,2,98,99,"Fox News","Democrat" +4,2,4810,"tess",1,1,90,2,90,77,"Fox News","Democrat" +4,2,4813,"tess",2,0,92,2,8,29,"Fox News","Democrat" +4,2,4863,"tess",3,0,100,3,0,90,"Fox News","Republican" +4,2,4869,"tess",2,1,0,3,0,99,"Fox News","Democrat" +4,2,4875,"tess",3,0,100,3,0,0,"Fox News","Democrat" +4,2,4880,"tess",1,0,100,2,0,5,"Fox News","Republican" +4,2,4887,"tess",1,0,47,3,53,19,"Fox News","Republican" +4,2,4903,"tess",1,1,70,3,70,70,"Fox News","Democrat" +4,2,4905,"tess",4,1,99,2,99,100,"Fox News","Democrat" +4,2,4906,"tess",4,1,93,2,93,99,"Fox News","Republican" +4,2,4925,"tess",1,1,50,3,50,60,"Fox News","Democrat" +4,2,4926,"tess",2,1,100,2,100,99,"Fox News","Democrat" +4,2,4935,"tess",3,1,24,3,24,46,"Fox News","Democrat" +4,2,4940,"tess",2,1,100,2,100,3,"Fox News","Republican" +4,2,4966,"tess",4,0,2,2,98,95,"Fox News","Republican" +4,2,4971,"tess",1,1,80,2,80,80,"Fox News","Democrat" +4,2,4990,"tess",1,1,80,2,80,90,"Fox News","Republican" +4,2,5008,"tess",2,1,100,3,100,54,"Fox News","Republican" +4,2,5016,"tess",1,1,69,3,69,100,"Fox News","Democrat" +4,2,5018,"tess",4,1,95,2,95,100,"Fox News","Democrat" +4,2,5025,"tess",3,1,100,2,100,100,"Fox News","Democrat" +4,2,5027,"tess",3,1,64,3,64,5,"Fox News","Republican" +4,2,5029,"tess",1,1,86,2,86,74,"Fox News","Republican" +4,2,5048,"tess",3,0,81,3,19,76,"Fox News","Republican" +4,2,5055,"tess",3,0,100,2,0,3,"Fox News","Republican" +4,2,5058,"tess",1,1,89,3,89,80,"Fox News","Republican" +4,2,5068,"tess",2,1,50,2,50,50,"Fox News","Democrat" +4,2,5073,"tess",2,1,100,3,100,89,"Fox News","Democrat" +4,2,5108,"tess",2,0,98,2,2,29,"Fox News","Republican" +4,2,5114,"tess",3,1,67,2,67,48,"Fox News","Democrat" +4,2,5131,"tess",2,1,73,2,73,46,"Fox News","Democrat" +4,2,5137,"tess",2,0,95,2,5,0,"Fox News","Democrat" +4,2,5143,"tess",1,1,96,2,96,89,"Fox News","Republican" +4,2,5144,"tess",3,1,95,3,95,97,"Fox News","Democrat" +4,2,5160,"tess",2,0,15,3,85,85,"Fox News","Democrat" +4,2,5162,"tess",1,0,30,2,70,60,"Fox News","Neither" +4,2,5195,"tess",3,0,100,2,0,0,"Fox News","Democrat" +4,2,5221,"tess",3,0,66,3,34,29,"Fox News","Republican" +4,2,5224,"tess",3,0,60,2,40,0,"Fox News","Republican" +4,2,5225,"tess",3,1,54,2,54,83,"Fox News","Democrat" +4,2,5268,"tess",2,0,76,2,24,30,"Fox News","Democrat" +4,2,5270,"tess",4,1,91,2,91,80,"Fox News","Republican" +4,2,5290,"tess",3,1,76,3,76,50,"Fox News","Republican" +4,2,5314,"tess",3,1,100,2,100,100,"Fox News","Republican" +4,2,5318,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,5326,"tess",1,1,90,2,90,13,"Fox News","Democrat" +4,2,5331,"tess",2,1,90,3,90,40,"Fox News","Democrat" +4,2,5353,"tess",1,1,99,3,99,99,"Fox News","Democrat" +4,2,5363,"tess",4,0,98,2,2,50,"Fox News","Republican" +4,2,5378,"tess",2,0,70,2,30,20,"Fox News","Democrat" +4,2,5383,"tess",4,0,10,2,90,90,"Fox News","Republican" +4,2,5389,"tess",4,1,90,2,90,10,"Fox News","Republican" +4,2,5392,"tess",2,1,20,3,20,99,"Fox News","Democrat" +4,2,5400,"tess",2,1,91,2,91,50,"Fox News","Republican" +4,2,5407,"tess",2,0,67,2,33,30,"Fox News","Republican" +4,2,5411,"tess",3,1,75,2,75,70,"Fox News","Republican" +4,2,5423,"tess",3,0,94,2,6,5,"Fox News","Democrat" +4,2,5428,"tess",3,0,96,2,4,6,"Fox News","Republican" +4,2,5434,"tess",3,0,72,3,28,26,"Fox News","Republican" +4,2,5447,"tess",3,0,39,2,61,16,"Fox News","Democrat" +4,2,5448,"tess",3,1,100,2,100,3,"Fox News","Democrat" +4,2,5456,"tess",2,0,98,2,2,1,"Fox News","Democrat" +4,2,5470,"tess",2,0,49,3,51,15,"Fox News","Democrat" +4,2,5475,"tess",3,1,1,2,1,99,"Fox News","Democrat" +4,2,5509,"tess",1,1,93,3,93,88,"Fox News","Democrat" +4,2,5519,"tess",1,0,99,2,1,19,"Fox News","Democrat" +4,2,5544,"tess",4,0,87,2,13,4,"Fox News","Republican" +4,2,5553,"tess",2,0,41,3,59,58,"Fox News","Republican" +4,2,5559,"tess",4,0,74,2,26,31,"Fox News","Republican" +4,2,5561,"tess",4,1,25,2,25,99,"Fox News","Republican" +4,2,5570,"tess",2,0,50,3,50,75,"Fox News","Democrat" +4,2,5576,"tess",4,0,86,2,14,7,"Fox News","Democrat" +4,2,5584,"tess",3,0,81,2,19,50,"Fox News","Democrat" +4,2,5586,"tess",1,1,62,3,62,100,"Fox News","Democrat" +4,2,5594,"tess",1,1,84,3,84,74,"Fox News","Republican" +4,2,5595,"tess",1,1,0,3,0,0,"Fox News","Republican" +4,2,5626,"tess",1,0,99,2,1,10,"Fox News","Democrat" +4,2,5631,"tess",3,1,70,2,70,70,"Fox News","Republican" +4,2,5633,"tess",2,0,100,2,0,10,"Fox News","Democrat" +4,2,5635,"tess",4,1,99,2,99,50,"Fox News","Republican" +4,2,5646,"tess",1,0,NA,3,NA,NA,"Fox News","Republican" +4,2,5657,"tess",2,0,32,3,68,36,"Fox News","Democrat" +4,2,5664,"tess",1,1,91,2,91,100,"Fox News","Democrat" +4,2,5669,"tess",2,0,84,3,16,8,"Fox News","Neither" +4,2,5691,"tess",2,0,100,3,0,63,"Fox News","Democrat" +4,2,5706,"tess",1,0,63,3,37,36,"Fox News","Republican" +4,2,5715,"tess",2,0,90,3,10,29,"Fox News","Republican" +4,2,5721,"tess",3,0,99,2,1,1,"Fox News","Republican" +4,2,5726,"tess",1,0,100,2,0,6,"Fox News","Democrat" +4,2,5732,"tess",4,0,80,2,20,20,"Fox News","Republican" +4,2,5734,"tess",3,1,91,3,91,80,"Fox News","Democrat" +4,2,5740,"tess",2,1,0,2,0,0,"Fox News","Democrat" +4,2,5743,"tess",3,0,70,2,30,50,"Fox News","Republican" +4,2,5746,"tess",1,1,90,3,90,10,"Fox News","Democrat" +4,2,5751,"tess",3,0,39,3,61,69,"Fox News","Republican" +4,2,5757,"tess",1,0,73,2,27,13,"Fox News","Republican" +4,2,5760,"tess",2,0,99,3,1,4,"Fox News","Democrat" +4,2,5803,"tess",1,0,27,3,73,74,"Fox News","Republican" +4,2,5815,"tess",1,0,89,3,11,7,"Fox News","Democrat" +4,2,5825,"tess",2,1,100,2,100,100,"Fox News","Republican" +4,2,5826,"tess",1,1,100,2,100,100,"Fox News","Republican" +4,2,5833,"tess",1,1,90,3,90,30,"Fox News","Democrat" +4,2,5838,"tess",4,1,0,2,0,0,"Fox News","Republican" +4,2,5842,"tess",2,1,100,3,100,100,"Fox News","Democrat" +4,2,5854,"tess",1,0,NA,3,NA,98,"Fox News","Democrat" +4,2,5868,"tess",1,0,80,3,20,25,"Fox News","Democrat" +4,2,5886,"tess",1,1,90,3,90,10,"Fox News","Republican" +4,2,5889,"tess",1,0,51,2,49,49,"Fox News","Democrat" +4,2,5899,"tess",2,0,10,2,90,89,"Fox News","Democrat" +4,2,5902,"tess",2,0,100,2,0,0,"Fox News","Republican" +4,2,5906,"tess",1,0,98,2,2,0,"Fox News","Democrat" +4,2,5914,"tess",4,0,79,2,21,27,"Fox News","Republican" +4,2,5916,"tess",2,1,80,2,80,80,"Fox News","Republican" +4,2,5918,"tess",4,1,95,2,95,91,"Fox News","Republican" +4,2,5920,"tess",3,0,67,3,33,59,"Fox News","Republican" +4,2,5922,"tess",4,1,92,2,92,92,"Fox News","Republican" +4,2,5926,"tess",3,1,89,2,89,81,"Fox News","Democrat" +4,2,5934,"tess",3,0,50,2,50,50,"Fox News","Democrat" +4,2,5946,"tess",1,0,7,2,93,90,"Fox News","Republican" +4,2,5954,"tess",2,0,40,3,60,50,"Fox News","Democrat" +4,2,5959,"tess",2,0,100,3,0,0,"Fox News","Republican" +4,2,5964,"tess",1,0,50,2,50,50,"Fox News","Democrat" +4,2,5982,"tess",2,1,2,2,2,99,"Fox News","Democrat" +4,2,5987,"tess",3,1,80,3,80,80,"Fox News","Democrat" +4,2,5988,"tess",1,1,16,3,16,11,"Fox News","Democrat" +4,2,5990,"tess",2,1,82,2,82,88,"Fox News","Democrat" +4,2,5998,"tess",2,0,56,3,44,26,"Fox News","Democrat" +4,2,6013,"tess",1,1,70,3,70,50,"Fox News","Democrat" +4,2,6041,"tess",1,1,98,2,98,29,"Fox News","Democrat" +4,2,6046,"tess",2,1,100,3,100,75,"Fox News","Democrat" +4,2,6048,"tess",1,0,100,2,0,99,"Fox News","Republican" +4,2,6053,"tess",4,0,86,2,14,3,"Fox News","Republican" +4,2,6067,"tess",1,1,62,3,62,63,"Fox News","Republican" +4,2,6068,"tess",3,0,71,3,29,40,"Fox News","Democrat" +4,2,6069,"tess",1,0,77,3,23,29,"Fox News","Democrat" +4,2,6070,"tess",3,1,90,2,90,90,"Fox News","Republican" +4,2,6073,"tess",2,0,100,3,0,1,"Fox News","Democrat" +4,2,6074,"tess",3,0,36,3,64,70,"Fox News","Republican" +4,2,6084,"tess",2,0,91,3,9,24,"Fox News","Democrat" +4,2,6088,"tess",2,0,100,3,0,9,"Fox News","Republican" +4,2,6096,"tess",3,1,7,2,7,90,"Fox News","Republican" +4,2,6110,"tess",2,1,87,3,87,86,"Fox News","Republican" +4,2,6111,"tess",1,1,100,3,100,79,"Fox News","Democrat" +4,2,6121,"tess",4,1,85,2,85,92,"Fox News","Democrat" +4,2,6130,"tess",1,0,20,3,80,17,"Fox News","Republican" +4,2,6132,"tess",4,0,81,2,19,10,"Fox News","Neither" +4,2,6137,"tess",4,0,94,2,6,9,"Fox News","Democrat" +4,2,6144,"tess",2,0,77,2,23,23,"Fox News","Democrat" +4,2,6146,"tess",2,0,91,3,9,7,"Fox News","Republican" +4,2,6152,"tess",3,0,30,2,70,70,"Fox News","Democrat" +4,2,6158,"tess",3,0,67,2,33,35,"Fox News","Republican" +4,2,6162,"tess",3,0,49,3,51,58,"Fox News","Democrat" +4,2,6164,"tess",1,0,83,2,17,17,"Fox News","Democrat" +4,2,6172,"tess",2,1,99,2,99,1,"Fox News","Democrat" +4,2,6179,"tess",3,1,34,3,34,37,"Fox News","Democrat" +4,2,6180,"tess",1,0,99,2,1,5,"Fox News","Republican" +4,2,6188,"tess",1,1,80,3,80,80,"Fox News","Republican" +4,2,6196,"tess",4,0,99,2,1,0,"Fox News","Democrat" +4,2,6199,"tess",2,0,92,2,8,7,"Fox News","Republican" +4,2,6209,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,6220,"tess",2,0,90,2,10,10,"Fox News","Democrat" +4,2,6225,"tess",2,1,65,2,65,83,"Fox News","Democrat" +4,2,6226,"tess",2,0,20,2,80,70,"Fox News","Democrat" +4,2,6245,"tess",3,1,99,2,99,99,"Fox News","Democrat" +4,2,6246,"tess",1,0,77,2,23,40,"Fox News","Republican" +4,2,6249,"tess",2,1,92,3,92,80,"Fox News","Democrat" +4,2,6254,"tess",2,1,50,2,50,44,"Fox News","Democrat" +4,2,6256,"tess",3,0,15,2,85,1,"Fox News","Democrat" +4,2,6257,"tess",2,0,87,3,13,49,"Fox News","Democrat" +4,2,6261,"tess",3,1,80,2,80,80,"Fox News","Democrat" +4,2,6268,"tess",3,0,20,3,80,51,"Fox News","Republican" +4,2,6269,"tess",3,1,71,2,71,66,"Fox News","Democrat" +4,2,6271,"tess",2,1,11,3,11,100,"Fox News","Democrat" +4,2,6279,"tess",4,1,100,2,100,84,"Fox News","Republican" +4,2,6280,"tess",2,1,31,2,31,96,"Fox News","Democrat" +4,2,6292,"tess",1,1,90,2,90,90,"Fox News","Democrat" +4,2,6307,"tess",2,1,54,3,54,20,"Fox News","Republican" +4,2,6312,"tess",2,1,100,3,100,100,"Fox News","Republican" +4,2,6329,"tess",2,1,93,2,93,88,"Fox News","Democrat" +4,2,6333,"tess",3,0,71,2,29,60,"Fox News","Republican" +4,2,6354,"tess",4,0,53,2,47,36,"Fox News","Republican" +4,2,6361,"tess",2,0,0,2,100,91,"Fox News","Democrat" +4,2,6362,"tess",1,1,100,2,100,4,"Fox News","Republican" +4,2,6366,"tess",1,0,90,3,10,10,"Fox News","Democrat" +4,2,6376,"tess",2,1,90,3,90,90,"Fox News","Democrat" +4,2,6382,"tess",2,1,100,3,100,50,"Fox News","Democrat" +4,2,6383,"tess",3,1,68,3,68,100,"Fox News","Democrat" +4,2,6388,"tess",3,1,19,2,19,12,"Fox News","Democrat" +4,2,6391,"tess",2,1,70,3,70,80,"Fox News","Democrat" +4,2,6401,"tess",4,1,96,2,96,19,"Fox News","Democrat" +4,2,6402,"tess",3,1,98,3,98,92,"Fox News","Democrat" +4,2,6427,"tess",3,1,97,3,97,87,"Fox News","Republican" +4,2,6452,"tess",3,1,16,3,16,98,"Fox News","Republican" +4,2,6462,"tess",1,0,40,2,60,60,"Fox News","Democrat" +4,2,6466,"tess",3,1,100,3,100,100,"Fox News","Democrat" +4,2,6468,"tess",4,1,21,2,21,20,"Fox News","Republican" +4,2,6469,"tess",3,1,51,2,51,41,"Fox News","Democrat" +4,2,6488,"tess",3,0,NA,3,NA,NA,"Fox News","Republican" +4,2,6496,"tess",1,1,97,3,97,97,"Fox News","Democrat" +4,2,6501,"tess",2,1,10,3,10,50,"Fox News","Neither" +4,2,6507,"tess",3,0,6,3,94,14,"Fox News","Republican" +4,2,6516,"tess",4,1,20,2,20,80,"Fox News","Republican" +4,2,6519,"tess",4,1,51,2,51,49,"Fox News","Republican" +4,2,6524,"tess",1,1,67,2,67,100,"Fox News","Democrat" +4,2,6540,"tess",1,1,100,3,100,50,"Fox News","Democrat" +4,2,6545,"tess",3,0,3,2,97,0,"Fox News","Democrat" +4,2,6548,"tess",3,1,75,3,75,99,"Fox News","Democrat" +4,2,6549,"tess",1,1,80,2,80,100,"Fox News","Democrat" +4,2,6558,"tess",4,0,99,2,1,1,"Fox News","Republican" +4,2,6561,"tess",4,0,68,2,32,32,"Fox News","Democrat" +4,2,6562,"tess",4,1,100,2,100,100,"Fox News","Republican" +4,2,6565,"tess",1,0,5,2,95,90,"Fox News","Democrat" +4,2,6568,"tess",1,1,89,3,89,67,"Fox News","Democrat" +4,2,6589,"tess",1,1,53,2,53,46,"Fox News","Democrat" +4,2,6592,"tess",2,0,74,3,26,19,"Fox News","Democrat" +4,2,6600,"tess",3,0,70,3,30,33,"Fox News","Republican" +4,2,6607,"tess",2,1,1,3,1,1,"Fox News","Democrat" +4,2,6608,"tess",2,0,90,2,10,98,"Fox News","Republican" +4,2,6610,"tess",2,1,85,3,85,85,"Fox News","Democrat" +4,2,6611,"tess",4,1,100,2,100,100,"Fox News","Republican" +4,2,6615,"tess",1,0,100,3,0,3,"Fox News","Democrat" +4,2,6617,"tess",3,0,100,2,0,18,"Fox News","Democrat" +4,2,6626,"tess",4,0,8,2,92,96,"Fox News","Republican" +4,2,6633,"tess",2,0,69,2,31,4,"Fox News","Republican" +4,2,6634,"tess",4,0,86,2,14,33,"Fox News","Republican" +4,2,6636,"tess",2,1,92,2,92,92,"Fox News","Republican" +4,2,6646,"tess",3,0,80,2,20,80,"Fox News","Republican" +4,2,6652,"tess",4,0,75,2,25,25,"Fox News","Republican" +4,2,6661,"tess",1,1,68,3,68,71,"Fox News","Republican" +4,2,6666,"tess",4,0,60,2,40,22,"Fox News","Democrat" +4,2,6674,"tess",3,1,90,3,90,90,"Fox News","Democrat" +4,2,6676,"tess",3,0,68,3,32,20,"Fox News","Democrat" +4,2,6682,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,6696,"tess",1,1,99,3,99,99,"Fox News","Democrat" +4,2,6718,"tess",2,1,80,2,80,70,"Fox News","Republican" +4,2,6720,"tess",3,1,85,2,85,87,"Fox News","Republican" +4,2,6725,"tess",4,1,13,2,13,93,"Fox News","Republican" +4,2,6732,"tess",4,1,69,2,69,12,"Fox News","Democrat" +4,2,6733,"tess",4,0,100,2,0,0,"Fox News","Republican" +4,2,6748,"tess",3,1,50,3,50,40,"Fox News","Democrat" +4,2,6758,"tess",1,1,76,2,76,73,"Fox News","Republican" +4,2,6760,"tess",2,0,60,3,40,40,"Fox News","Democrat" +4,2,6783,"tess",1,0,82,2,18,79,"Fox News","Democrat" +4,2,6792,"tess",3,1,98,2,98,1,"Fox News","Democrat" +4,2,6797,"tess",1,0,80,2,20,30,"Fox News","Democrat" +4,2,6803,"tess",2,0,100,2,0,0,"Fox News","Democrat" +4,2,6825,"tess",1,1,50,2,50,1,"Fox News","Democrat" +4,2,6827,"tess",1,0,100,2,0,9,"Fox News","Democrat" +4,2,6837,"tess",1,0,93,2,7,20,"Fox News","Democrat" +4,2,6838,"tess",2,1,96,2,96,96,"Fox News","Democrat" +4,2,6844,"tess",1,0,59,3,41,36,"Fox News","Democrat" +4,2,6864,"tess",4,0,80,2,20,10,"Fox News","Republican" +4,2,6869,"tess",3,1,95,3,95,93,"Fox News","Democrat" +4,2,6881,"tess",3,0,99,3,1,1,"Fox News","Democrat" +4,2,6882,"tess",2,1,100,3,100,99,"Fox News","Democrat" +4,2,6912,"tess",1,1,96,2,96,85,"Fox News","Democrat" +4,2,6927,"tess",3,0,50,3,50,31,"Fox News","Democrat" +4,2,6930,"tess",3,0,25,2,75,79,"Fox News","Republican" +4,2,6932,"tess",3,0,72,3,28,62,"Fox News","Democrat" +4,2,6956,"tess",3,0,90,2,10,10,"Fox News","Democrat" +4,2,6963,"tess",4,1,64,2,64,65,"Fox News","Democrat" +4,2,6984,"tess",3,1,80,2,80,60,"Fox News","Republican" +4,2,6998,"tess",1,0,90,3,10,70,"Fox News","Republican" +4,2,7011,"tess",1,1,99,3,99,0,"Fox News","Democrat" +4,2,7022,"tess",2,1,99,2,99,100,"Fox News","Democrat" +4,2,7031,"tess",3,1,39,2,39,5,"Fox News","Republican" +4,2,7046,"tess",3,0,59,3,41,59,"Fox News","Democrat" +4,2,7048,"tess",2,0,97,3,3,3,"Fox News","Democrat" +4,2,7049,"tess",3,1,66,3,66,76,"Fox News","Democrat" +4,2,7054,"tess",3,1,96,2,96,95,"Fox News","Democrat" +4,2,7055,"tess",4,1,100,2,100,100,"Fox News","Republican" +4,2,7060,"tess",3,1,10,3,10,10,"Fox News","Democrat" +4,2,7061,"tess",1,0,80,2,20,30,"Fox News","Democrat" +4,2,7073,"tess",2,0,100,3,0,100,"Fox News","Republican" +4,2,7078,"tess",2,0,70,2,30,10,"Fox News","Republican" +4,2,7083,"tess",4,0,100,2,0,1,"Fox News","Democrat" +4,2,7094,"tess",3,1,33,2,33,70,"Fox News","Republican" +4,2,7122,"tess",1,1,82,2,82,93,"Fox News","Democrat" +4,2,7124,"tess",3,0,53,3,47,20,"Fox News","Democrat" +4,2,7127,"tess",2,1,0,2,0,100,"Fox News","Democrat" +4,2,7140,"tess",3,1,87,3,87,53,"Fox News","Republican" +4,2,7174,"tess",2,1,98,2,98,75,"Fox News","Democrat" +4,2,7182,"tess",2,0,100,3,0,0,"Fox News","Democrat" +4,2,7186,"tess",1,1,94,3,94,55,"Fox News","Democrat" +4,2,7190,"tess",2,0,85,2,15,7,"Fox News","Democrat" +4,2,7197,"tess",4,0,98,2,2,2,"Fox News","Republican" +4,2,7199,"tess",2,0,50,3,50,99,"Fox News","Republican" +4,2,7201,"tess",3,0,100,2,0,100,"Fox News","Democrat" +4,2,7216,"tess",3,1,97,3,97,0,"Fox News","Democrat" +4,2,7218,"tess",3,0,83,2,17,33,"Fox News","Democrat" +4,2,7223,"tess",4,0,68,2,32,87,"Fox News","Democrat" +4,2,7224,"tess",2,1,67,2,67,54,"Fox News","Republican" +4,2,7225,"tess",1,0,97,3,3,20,"Fox News","Democrat" +4,2,7226,"tess",1,1,58,3,58,81,"Fox News","Democrat" +4,2,7231,"tess",1,1,100,2,100,30,"Fox News","Democrat" +4,2,7235,"tess",1,1,90,2,90,90,"Fox News","Democrat" +4,2,7239,"tess",1,1,50,3,50,50,"Fox News","Republican" +4,2,7252,"tess",1,0,100,3,0,0,"Fox News","Republican" +4,2,7266,"tess",4,1,30,2,30,10,"Fox News","Republican" +4,2,7275,"tess",4,1,100,2,100,95,"Fox News","Republican" +4,2,7276,"tess",1,0,91,2,9,5,"Fox News","Republican" +4,2,7280,"tess",2,1,49,3,49,46,"Fox News","Neither" +4,2,7286,"tess",3,1,80,3,80,0,"Fox News","Republican" +4,2,7289,"tess",1,1,81,3,81,60,"Fox News","Democrat" +4,2,7303,"tess",3,0,84,2,16,24,"Fox News","Republican" +4,2,7311,"tess",4,1,50,2,50,49,"Fox News","Republican" +4,2,7330,"tess",1,0,98,3,2,27,"Fox News","Democrat" +4,2,7353,"tess",1,0,98,2,2,0,"Fox News","Democrat" +4,2,7356,"tess",2,1,4,3,4,57,"Fox News","Democrat" +4,2,7360,"tess",1,0,75,3,25,25,"Fox News","Democrat" +4,2,7368,"tess",1,1,64,3,64,71,"Fox News","Democrat" +4,2,7370,"tess",1,1,88,3,88,28,"Fox News","Republican" +4,2,7398,"tess",1,1,99,3,99,50,"Fox News","Democrat" +4,2,7407,"tess",2,1,80,3,80,75,"Fox News","Republican" +4,2,7409,"tess",1,0,43,3,57,25,"Fox News","Democrat" +4,2,7425,"tess",1,1,66,3,66,28,"Fox News","Democrat" +4,2,7432,"tess",3,0,75,3,25,25,"Fox News","Democrat" +4,2,7450,"tess",4,0,77,2,23,15,"Fox News","Democrat" +4,2,7466,"tess",2,1,91,2,91,80,"Fox News","Republican" +4,2,7470,"tess",4,0,95,2,5,12,"Fox News","Republican" +4,2,7472,"tess",3,0,99,2,1,1,"Fox News","Republican" +4,2,7475,"tess",2,1,95,3,95,98,"Fox News","Neither" +4,2,7477,"tess",3,1,50,3,50,50,"Fox News","Republican" +4,2,7494,"tess",1,1,81,3,81,52,"Fox News","Republican" +4,2,7497,"tess",3,0,85,2,15,6,"Fox News","Democrat" +4,2,7539,"tess",2,1,90,3,90,95,"Fox News","Republican" +4,2,7543,"tess",4,0,14,2,86,0,"Fox News","Republican" +4,2,7556,"tess",1,1,81,3,81,91,"Fox News","Democrat" +4,2,7563,"tess",1,0,100,3,0,0,"Fox News","Democrat" +4,2,7569,"tess",2,1,100,2,100,100,"Fox News","Republican" +4,2,7590,"tess",2,1,91,2,91,100,"Fox News","Republican" +4,2,7593,"tess",1,1,69,2,69,39,"Fox News","Republican" +4,2,7603,"tess",2,0,10,2,90,89,"Fox News","Democrat" +4,2,7608,"tess",2,1,90,2,90,80,"Fox News","Republican" +4,2,7634,"tess",2,1,100,2,100,99,"Fox News","Republican" +4,2,7640,"tess",4,1,19,2,19,79,"Fox News","Republican" +4,2,7656,"tess",1,0,30,2,70,40,"Fox News","Republican" +4,2,7659,"tess",3,0,99,2,1,1,"Fox News","Republican" +4,2,7668,"tess",1,0,91,3,9,10,"Fox News","Republican" +4,2,7688,"tess",2,0,47,3,53,45,"Fox News","Democrat" +4,2,7702,"tess",2,0,100,2,0,2,"Fox News","Democrat" +4,2,7711,"tess",2,0,98,2,2,0,"Fox News","Republican" +4,2,7717,"tess",1,0,90,2,10,10,"Fox News","Democrat" +4,2,7741,"tess",1,1,100,2,100,99,"Fox News","Republican" +4,2,7786,"tess",3,1,52,3,52,29,"Fox News","Democrat" +4,2,7789,"tess",3,0,57,3,43,29,"Fox News","Republican" +4,2,7793,"tess",2,1,76,3,76,86,"Fox News","Republican" +4,2,7819,"tess",2,0,71,2,29,16,"Fox News","Democrat" +4,2,7820,"tess",1,0,70,3,30,90,"Fox News","Republican" +4,2,7826,"tess",2,0,80,3,20,50,"Fox News","Republican" +4,2,7837,"tess",4,1,100,2,100,100,"Fox News","Democrat" +4,2,7854,"tess",1,0,76,2,24,0,"Fox News","Democrat" +4,2,7861,"tess",1,0,50,2,50,0,"Fox News","Republican" +4,2,7864,"tess",4,1,48,2,48,65,"Fox News","Republican" +4,2,7880,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,7891,"tess",1,1,93,3,93,100,"Fox News","Republican" +4,2,7908,"tess",3,1,99,3,99,0,"Fox News","Republican" +4,2,7930,"tess",4,1,79,2,79,77,"Fox News","Republican" +4,2,7942,"tess",4,1,36,2,36,73,"Fox News","Republican" +4,2,7957,"tess",1,1,63,2,63,5,"Fox News","Democrat" +4,2,7959,"tess",3,1,100,2,100,95,"Fox News","Democrat" +4,2,7965,"tess",1,0,80,3,20,31,"Fox News","Democrat" +4,2,7968,"tess",3,0,85,2,15,20,"Fox News","Democrat" +4,2,7982,"tess",1,1,75,3,75,65,"Fox News","Democrat" +4,2,7991,"tess",4,1,70,2,70,80,"Fox News","Republican" +4,2,8000,"tess",3,0,71,3,29,29,"Fox News","Democrat" +4,2,8001,"tess",4,0,10,2,90,90,"Fox News","Republican" +4,2,8010,"tess",4,1,50,2,50,92,"Fox News","Republican" +4,2,8011,"tess",3,0,32,2,68,88,"Fox News","Republican" +4,2,8019,"tess",4,0,81,2,19,19,"Fox News","Republican" +4,2,8041,"tess",4,1,59,2,59,40,"Fox News","Republican" +4,2,8042,"tess",4,1,75,2,75,75,"Fox News","Republican" +4,2,8049,"tess",2,0,75,2,25,20,"Fox News","Republican" +4,2,8055,"tess",2,1,90,3,90,80,"Fox News","Democrat" +4,2,8061,"tess",2,0,47,2,53,20,"Fox News","Republican" +4,2,8062,"tess",3,0,50,2,50,80,"Fox News","Democrat" +4,2,8065,"tess",4,1,100,2,100,100,"Fox News","Democrat" +4,2,8078,"tess",2,0,99,2,1,29,"Fox News","Republican" +4,2,8079,"tess",2,1,100,3,100,32,"Fox News","Democrat" +4,2,8097,"tess",3,1,40,2,40,75,"Fox News","Republican" +4,2,8101,"tess",4,0,85,2,15,23,"Fox News","Republican" +4,2,8110,"tess",2,1,51,2,51,85,"Fox News","Democrat" +4,2,8127,"tess",4,0,90,2,10,14,"Fox News","Republican" +4,2,8134,"tess",3,1,99,3,99,99,"Fox News","Democrat" +4,2,8142,"tess",1,1,30,3,30,80,"Fox News","Democrat" +4,2,8146,"tess",1,1,100,3,100,99,"Fox News","Republican" +4,2,8159,"tess",4,0,29,2,71,80,"Fox News","Neither" +4,2,8170,"tess",2,0,10,2,90,89,"Fox News","Democrat" +4,2,8176,"tess",4,0,0,2,100,100,"Fox News","Democrat" +4,2,8197,"tess",4,0,90,2,10,10,"Fox News","Republican" +4,2,8201,"tess",3,0,85,2,15,50,"Fox News","Democrat" +4,2,8202,"tess",2,0,4,2,96,73,"Fox News","Republican" +4,2,8207,"tess",1,1,100,2,100,94,"Fox News","Democrat" +4,2,8224,"tess",2,1,0,3,0,0,"Fox News","Republican" +4,2,8228,"tess",1,0,70,3,30,5,"Fox News","Democrat" +4,2,8232,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,8247,"tess",4,0,60,2,40,7,"Fox News","Republican" +4,2,8260,"tess",2,0,80,2,20,95,"Fox News","Neither" +4,2,8265,"tess",4,1,50,2,50,97,"Fox News","Republican" +4,2,8276,"tess",3,0,70,2,30,50,"Fox News","Republican" +4,2,8327,"tess",2,1,58,3,58,78,"Fox News","Democrat" +4,2,8337,"tess",4,0,95,2,5,1,"Fox News","Republican" +4,2,8347,"tess",2,1,62,2,62,59,"Fox News","Republican" +4,2,8361,"tess",1,1,40,3,40,70,"Fox News","Republican" +4,2,8374,"tess",3,1,75,3,75,68,"Fox News","Republican" +4,2,8378,"tess",2,1,5,2,5,100,"Fox News","Republican" +4,2,8435,"tess",1,0,90,2,10,11,"Fox News","Republican" +4,2,8455,"tess",1,1,4,2,4,1,"Fox News","Republican" +4,2,8468,"tess",3,1,48,2,48,90,"Fox News","Democrat" +4,2,8476,"tess",2,0,95,2,5,30,"Fox News","Democrat" +4,2,8489,"tess",2,1,99,2,99,10,"Fox News","Democrat" +4,2,8503,"tess",4,0,30,2,70,70,"Fox News","Republican" +4,2,8522,"tess",3,0,70,3,30,20,"Fox News","Democrat" +4,2,8552,"tess",2,1,10,3,10,10,"Fox News","Democrat" +4,2,8556,"tess",2,0,35,2,65,30,"Fox News","Democrat" +4,2,8558,"tess",4,0,94,2,6,0,"Fox News","Republican" +4,2,8564,"tess",2,0,100,2,0,0,"Fox News","Republican" +4,2,8573,"tess",1,1,49,3,49,61,"Fox News","Democrat" +4,2,8579,"tess",2,0,50,2,50,50,"Fox News","Democrat" +4,2,8590,"tess",3,0,49,3,51,52,"Fox News","Republican" +4,2,8600,"tess",2,0,20,3,80,10,"Fox News","Democrat" +4,2,8618,"tess",4,0,94,2,6,20,"Fox News","Republican" +4,2,8619,"tess",3,0,97,3,3,3,"Fox News","Republican" +4,2,8638,"tess",3,1,90,2,90,90,"Fox News","Neither" +4,2,8640,"tess",3,1,10,2,10,90,"Fox News","Democrat" +4,2,8669,"tess",2,1,70,2,70,45,"Fox News","Democrat" +4,2,8680,"tess",1,0,97,2,3,10,"Fox News","Republican" +4,2,8685,"tess",4,0,76,2,24,23,"Fox News","Democrat" +4,2,8686,"tess",4,1,12,2,12,1,"Fox News","Republican" +4,2,8714,"tess",3,0,98,2,2,3,"Fox News","Democrat" +4,2,8727,"tess",4,1,75,2,75,60,"Fox News","Democrat" +4,2,8728,"tess",4,0,75,2,25,24,"Fox News","Republican" +4,2,8739,"tess",3,0,39,3,61,24,"Fox News","Republican" +4,2,8746,"tess",2,0,3,3,97,50,"Fox News","Republican" +4,2,8765,"tess",3,1,90,2,90,70,"Fox News","Democrat" +4,2,8779,"tess",1,0,100,3,0,0,"Fox News","Republican" +4,2,8790,"tess",3,0,75,2,25,25,"Fox News","Republican" +4,2,8797,"tess",2,0,40,2,60,30,"Fox News","Republican" +4,2,8806,"tess",4,0,76,2,24,91,"Fox News","Neither" +4,2,8819,"tess",2,1,98,3,98,99,"Fox News","Republican" +4,2,8821,"tess",1,0,53,3,47,30,"Fox News","Republican" +4,2,8837,"tess",2,1,100,2,100,99,"Fox News","Democrat" +4,2,8853,"tess",3,0,93,3,7,6,"Fox News","Democrat" +4,2,8877,"tess",3,1,90,2,90,88,"Fox News","Republican" +4,2,8888,"tess",1,0,100,2,0,0,"Fox News","Republican" +4,2,8934,"tess",3,1,99,3,99,99,"Fox News","Democrat" +4,2,8939,"tess",3,0,80,2,20,90,"Fox News","Democrat" +4,2,8946,"tess",2,1,100,2,100,100,"Fox News","Democrat" +4,2,8953,"tess",3,0,34,3,66,47,"Fox News","Republican" +4,2,8956,"tess",2,0,92,3,8,13,"Fox News","Republican" +4,2,8970,"tess",3,0,100,3,0,6,"Fox News","Republican" +4,2,8973,"tess",3,1,50,3,50,5,"Fox News","Republican" +4,2,9007,"tess",3,0,21,3,79,79,"Fox News","Democrat" +4,2,9018,"tess",1,1,100,2,100,100,"Fox News","Democrat" +4,2,9024,"tess",1,1,80,3,80,70,"Fox News","Democrat" +4,2,9025,"tess",2,1,NA,3,NA,16,"Fox News","Republican" +4,2,9029,"tess",3,0,50,3,50,50,"Fox News","Neither" +4,2,9034,"tess",1,0,100,2,0,0,"Fox News","Republican" +4,2,9050,"tess",2,0,7,3,93,91,"Fox News","Republican" +4,2,9066,"tess",2,0,50,2,50,50,"Fox News","Republican" +4,2,9081,"tess",3,1,80,2,80,60,"Fox News","Republican" +4,2,9101,"tess",3,0,64,2,36,0,"Fox News","Democrat" +4,2,9135,"tess",1,0,97,2,3,18,"Fox News","Democrat" +4,2,9146,"tess",1,0,5,3,95,10,"Fox News","Republican" +4,2,9149,"tess",1,0,10,2,90,91,"Fox News","Democrat" +4,2,9154,"tess",3,0,60,3,40,0,"Fox News","Democrat" +4,2,9166,"tess",2,1,50,2,50,98,"Fox News","Republican" +4,2,9184,"tess",2,0,98,2,2,12,"Fox News","Democrat" +4,2,9189,"tess",4,1,93,2,93,90,"Fox News","Republican" +4,2,9193,"tess",3,1,30,3,30,81,"Fox News","Democrat" +4,2,9199,"tess",3,0,56,2,44,53,"Fox News","Republican" +4,2,9211,"tess",3,1,91,3,91,91,"Fox News","Republican" +4,2,9230,"tess",2,0,100,2,0,0,"Fox News","Democrat" +4,2,9235,"tess",3,0,86,2,14,0,"Fox News","Democrat" +4,2,9247,"tess",2,1,97,2,97,100,"Fox News","Democrat" +4,2,9260,"tess",2,1,70,3,70,20,"Fox News","Republican" +4,2,9284,"tess",1,0,81,2,19,30,"Fox News","Republican" +4,2,9286,"tess",2,0,76,2,24,7,"Fox News","Democrat" +4,2,9292,"tess",2,1,9,2,9,75,"Fox News","Republican" +4,2,9295,"tess",4,0,90,2,10,10,"Fox News","Republican" +4,2,9298,"tess",2,0,93,3,7,12,"Fox News","Democrat" +4,2,9314,"tess",4,0,61,2,39,47,"Fox News","Republican" +4,2,9316,"tess",2,0,56,3,44,44,"Fox News","Republican" +4,2,9340,"tess",2,0,100,3,0,60,"Fox News","Democrat" +4,2,9352,"tess",1,0,47,3,53,100,"Fox News","Democrat" +4,2,9383,"tess",1,0,84,2,16,72,"Fox News","Republican" +4,2,9395,"tess",1,1,89,3,89,38,"Fox News","Democrat" +4,2,9419,"tess",3,0,50,2,50,51,"Fox News","Democrat" +4,2,9422,"tess",3,0,0,2,100,0,"Fox News","Democrat" +4,2,9431,"tess",3,0,90,3,10,10,"Fox News","Democrat" +4,2,9440,"tess",1,1,19,3,19,90,"Fox News","Republican" +4,2,9490,"tess",2,1,50,2,50,28,"Fox News","Republican" +4,2,9493,"tess",2,1,3,3,3,100,"Fox News","Democrat" +4,2,9499,"tess",1,0,100,2,0,15,"Fox News","Democrat" +4,2,9510,"tess",1,1,99,3,99,99,"Fox News","Democrat" +4,2,9514,"tess",1,1,69,3,69,82,"Fox News","Republican" +4,2,9517,"tess",3,0,100,3,0,51,"Fox News","Neither" +4,2,9551,"tess",3,1,51,3,51,77,"Fox News","Democrat" +4,2,9563,"tess",3,1,95,3,95,98,"Fox News","Republican" +4,2,9572,"tess",3,1,75,2,75,75,"Fox News","Republican" +4,2,9578,"tess",4,0,92,2,8,0,"Fox News","Republican" +4,2,9585,"tess",3,1,82,3,82,94,"Fox News","Democrat" +4,2,9590,"tess",3,0,75,2,25,26,"Fox News","Republican" +4,2,9642,"tess",3,0,50,3,50,50,"Fox News","Republican" +4,2,9645,"tess",1,0,30,3,70,34,"Fox News","Democrat" +4,2,9649,"tess",2,0,75,2,25,3,"Fox News","Democrat" +4,2,9663,"tess",2,1,40,2,40,80,"Fox News","Democrat" +4,2,9671,"tess",3,1,55,2,55,55,"Fox News","Democrat" +4,2,9676,"tess",3,1,72,3,72,89,"Fox News","Democrat" +4,2,9685,"tess",4,0,0,2,100,100,"Fox News","Republican" +4,2,9686,"tess",2,0,86,2,14,15,"Fox News","Democrat" +4,2,9689,"tess",3,0,50,2,50,50,"Fox News","Democrat" +4,2,9693,"tess",4,1,67,2,67,46,"Fox News","Neither" +4,2,9717,"tess",4,0,82,2,18,20,"Fox News","Neither" +4,2,9729,"tess",3,1,100,3,100,100,"Fox News","Republican" +4,2,9741,"tess",2,0,0,3,100,100,"Fox News","Republican" +4,3,51,"tess",2,0,67,2,33,62,"New York Times","Neither" +4,3,68,"tess",2,0,15,2,85,2,"New York Times","Democrat" +4,3,69,"tess",3,1,46,2,46,50,"New York Times","Neither" +4,3,77,"tess",3,1,27,3,27,97,"New York Times","Democrat" +4,3,80,"tess",3,0,83,2,17,0,"New York Times","Republican" +4,3,90,"tess",1,1,97,2,97,91,"New York Times","Democrat" +4,3,95,"tess",3,0,33,3,67,4,"New York Times","Democrat" +4,3,96,"tess",3,1,62,2,62,71,"New York Times","Democrat" +4,3,114,"tess",1,0,NA,3,NA,NA,"New York Times","Republican" +4,3,128,"tess",4,1,50,2,50,61,"New York Times","Republican" +4,3,182,"tess",4,1,80,2,80,89,"New York Times","Democrat" +4,3,207,"tess",2,0,100,3,0,49,"New York Times","Republican" +4,3,221,"tess",1,1,100,2,100,99,"New York Times","Democrat" +4,3,224,"tess",3,1,68,3,68,79,"New York Times","Democrat" +4,3,247,"tess",1,0,100,2,0,8,"New York Times","Republican" +4,3,263,"tess",2,1,69,3,69,72,"New York Times","Neither" +4,3,296,"tess",2,0,70,3,30,5,"New York Times","Republican" +4,3,308,"tess",1,0,69,3,31,21,"New York Times","Democrat" +4,3,342,"tess",3,1,100,2,100,100,"New York Times","Democrat" +4,3,347,"tess",3,0,57,3,43,90,"New York Times","Democrat" +4,3,366,"tess",4,1,97,2,97,5,"New York Times","Democrat" +4,3,397,"tess",4,0,82,2,18,20,"New York Times","Democrat" +4,3,413,"tess",3,1,78,3,78,100,"New York Times","Democrat" +4,3,431,"tess",2,0,NA,3,NA,NA,"New York Times","Democrat" +4,3,450,"tess",2,1,19,3,19,31,"New York Times","Republican" +4,3,478,"tess",3,0,60,2,40,0,"New York Times","Democrat" +4,3,493,"tess",1,0,10,3,90,70,"New York Times","Republican" +4,3,509,"tess",4,0,0,2,100,50,"New York Times","Democrat" +4,3,541,"tess",2,1,99,2,99,99,"New York Times","Democrat" +4,3,567,"tess",3,1,0,2,0,99,"New York Times","Democrat" +4,3,573,"tess",3,0,26,2,74,63,"New York Times","Democrat" +4,3,600,"tess",4,0,100,2,0,70,"New York Times","Republican" +4,3,611,"tess",1,1,90,2,90,100,"New York Times","Republican" +4,3,627,"tess",3,0,20,2,80,75,"New York Times","Democrat" +4,3,638,"tess",2,0,48,2,52,74,"New York Times","Republican" +4,3,639,"tess",4,1,12,2,12,0,"New York Times","Democrat" +4,3,684,"tess",1,0,16,2,84,78,"New York Times","Republican" +4,3,689,"tess",3,0,93,2,7,15,"New York Times","Democrat" +4,3,693,"tess",3,1,98,3,98,58,"New York Times","Republican" +4,3,709,"tess",3,0,91,3,9,9,"New York Times","Republican" +4,3,727,"tess",3,0,1,2,99,99,"New York Times","Republican" +4,3,728,"tess",2,0,4,3,96,10,"New York Times","Democrat" +4,3,740,"tess",3,0,99,3,1,1,"New York Times","Democrat" +4,3,770,"tess",4,0,100,2,0,0,"New York Times","Democrat" +4,3,771,"tess",1,0,49,2,51,1,"New York Times","Democrat" +4,3,772,"tess",2,1,18,3,18,72,"New York Times","Republican" +4,3,773,"tess",3,0,59,2,41,1,"New York Times","Democrat" +4,3,783,"tess",3,1,80,2,80,85,"New York Times","Democrat" +4,3,786,"tess",3,0,28,2,72,20,"New York Times","Republican" +4,3,794,"tess",4,0,92,2,8,11,"New York Times","Democrat" +4,3,806,"tess",2,1,50,3,50,49,"New York Times","Democrat" +4,3,828,"tess",3,1,80,2,80,32,"New York Times","Neither" +4,3,829,"tess",3,1,65,2,65,60,"New York Times","Neither" +4,3,847,"tess",1,0,34,3,66,19,"New York Times","Democrat" +4,3,852,"tess",1,0,100,3,0,27,"New York Times","Democrat" +4,3,855,"tess",2,0,99,2,1,1,"New York Times","Republican" +4,3,857,"tess",1,0,80,3,20,79,"New York Times","Democrat" +4,3,890,"tess",3,0,77,2,23,12,"New York Times","Republican" +4,3,903,"tess",1,0,54,3,46,44,"New York Times","Republican" +4,3,912,"tess",3,0,NA,3,NA,100,"New York Times","Democrat" +4,3,918,"tess",2,0,39,2,61,23,"New York Times","Republican" +4,3,950,"tess",4,1,85,2,85,84,"New York Times","Democrat" +4,3,961,"tess",4,0,85,2,15,12,"New York Times","Democrat" +4,3,968,"tess",1,1,99,3,99,99,"New York Times","Democrat" +4,3,985,"tess",3,1,99,2,99,80,"New York Times","Republican" +4,3,1020,"tess",3,0,50,3,50,20,"New York Times","Republican" +4,3,1035,"tess",1,1,90,2,90,60,"New York Times","Democrat" +4,3,1046,"tess",1,1,40,2,40,85,"New York Times","Republican" +4,3,1047,"tess",3,1,33,2,33,20,"New York Times","Republican" +4,3,1051,"tess",3,1,80,2,80,90,"New York Times","Republican" +4,3,1055,"tess",1,0,80,3,20,20,"New York Times","Republican" +4,3,1062,"tess",3,1,28,2,28,69,"New York Times","Democrat" +4,3,1064,"tess",2,1,NA,3,NA,NA,"New York Times","Democrat" +4,3,1081,"tess",1,1,1,3,1,50,"New York Times","Democrat" +4,3,1087,"tess",4,1,50,2,50,50,"New York Times","Democrat" +4,3,1104,"tess",1,1,68,2,68,90,"New York Times","Democrat" +4,3,1110,"tess",2,0,90,3,10,6,"New York Times","Neither" +4,3,1114,"tess",1,1,39,3,39,50,"New York Times","Neither" +4,3,1149,"tess",3,1,100,2,100,100,"New York Times","Democrat" +4,3,1172,"tess",3,1,50,2,50,85,"New York Times","Republican" +4,3,1178,"tess",3,1,31,3,31,89,"New York Times","Republican" +4,3,1193,"tess",2,0,98,2,2,2,"New York Times","Democrat" +4,3,1208,"tess",3,1,45,3,45,35,"New York Times","Republican" +4,3,1259,"tess",3,1,38,2,38,92,"New York Times","Democrat" +4,3,1260,"tess",1,0,18,2,82,35,"New York Times","Democrat" +4,3,1265,"tess",1,0,100,3,0,0,"New York Times","Republican" +4,3,1284,"tess",1,1,97,2,97,90,"New York Times","Democrat" +4,3,1285,"tess",2,0,51,2,49,10,"New York Times","Neither" +4,3,1288,"tess",3,1,70,2,70,60,"New York Times","Republican" +4,3,1304,"tess",2,0,85,3,15,15,"New York Times","Democrat" +4,3,1306,"tess",3,0,82,2,18,16,"New York Times","Democrat" +4,3,1307,"tess",3,1,80,2,80,70,"New York Times","Republican" +4,3,1311,"tess",2,1,90,2,90,75,"New York Times","Democrat" +4,3,1314,"tess",1,0,60,2,40,10,"New York Times","Democrat" +4,3,1321,"tess",2,1,89,3,89,90,"New York Times","Republican" +4,3,1348,"tess",4,1,99,2,99,98,"New York Times","Democrat" +4,3,1356,"tess",1,1,94,3,94,95,"New York Times","Republican" +4,3,1382,"tess",2,1,10,3,10,100,"New York Times","Republican" +4,3,1397,"tess",3,1,NA,3,NA,NA,"New York Times","Democrat" +4,3,1416,"tess",2,1,92,3,92,91,"New York Times","Republican" +4,3,1485,"tess",4,1,60,2,60,53,"New York Times","Democrat" +4,3,1491,"tess",3,0,99,2,1,99,"New York Times","Republican" +4,3,1506,"tess",4,1,26,2,26,100,"New York Times","Democrat" +4,3,1532,"tess",4,1,69,2,69,85,"New York Times","Republican" +4,3,1552,"tess",1,0,77,2,23,26,"New York Times","Republican" +4,3,1553,"tess",4,1,23,2,23,100,"New York Times","Democrat" +4,3,1563,"tess",1,0,NA,3,NA,49,"New York Times","Republican" +4,3,1565,"tess",4,1,20,2,20,99,"New York Times","Democrat" +4,3,1600,"tess",2,1,1,2,1,100,"New York Times","Republican" +4,3,1608,"tess",2,0,10,2,90,20,"New York Times","Republican" +4,3,1624,"tess",3,0,70,3,30,40,"New York Times","Republican" +4,3,1644,"tess",3,0,91,3,9,60,"New York Times","Democrat" +4,3,1669,"tess",2,1,31,2,31,88,"New York Times","Democrat" +4,3,1673,"tess",2,0,60,3,40,50,"New York Times","Democrat" +4,3,1689,"tess",1,0,91,2,9,8,"New York Times","Democrat" +4,3,1702,"tess",1,1,4,3,4,90,"New York Times","Neither" +4,3,1724,"tess",2,0,100,3,0,0,"New York Times","Democrat" +4,3,1728,"tess",4,1,50,2,50,100,"New York Times","Democrat" +4,3,1733,"tess",3,0,50,2,50,50,"New York Times","Democrat" +4,3,1739,"tess",1,0,NA,2,NA,54,"New York Times","Republican" +4,3,1775,"tess",2,1,65,2,65,88,"New York Times","Democrat" +4,3,1799,"tess",1,0,50,3,50,79,"New York Times","Republican" +4,3,1813,"tess",1,0,47,2,53,5,"New York Times","Democrat" +4,3,1815,"tess",1,1,67,3,67,60,"New York Times","Republican" +4,3,1824,"tess",1,1,1,2,1,1,"New York Times","Republican" +4,3,1835,"tess",2,1,3,2,3,0,"New York Times","Neither" +4,3,1857,"tess",1,0,100,2,0,2,"New York Times","Democrat" +4,3,1890,"tess",3,1,86,3,86,69,"New York Times","Democrat" +4,3,1910,"tess",3,0,0,3,100,100,"New York Times","Republican" +4,3,1928,"tess",3,0,63,2,37,0,"New York Times","Democrat" +4,3,1930,"tess",4,0,97,2,3,20,"New York Times","Democrat" +4,3,1933,"tess",3,1,26,3,26,85,"New York Times","Democrat" +4,3,1935,"tess",2,1,50,3,50,0,"New York Times","Republican" +4,3,1945,"tess",1,1,1,2,1,84,"New York Times","Democrat" +4,3,1960,"tess",2,1,100,2,100,96,"New York Times","Republican" +4,3,1982,"tess",1,1,NA,3,NA,NA,"New York Times","Democrat" +4,3,1992,"tess",4,1,99,2,99,99,"New York Times","Democrat" +4,3,2001,"tess",2,0,50,3,50,50,"New York Times","Republican" +4,3,2017,"tess",3,0,65,2,35,25,"New York Times","Democrat" +4,3,2030,"tess",1,0,100,2,0,13,"New York Times","Democrat" +4,3,2044,"tess",3,1,62,3,62,50,"New York Times","Republican" +4,3,2056,"tess",3,1,NA,3,NA,NA,"New York Times","Republican" +4,3,2060,"tess",3,0,63,3,37,27,"New York Times","Democrat" +4,3,2082,"tess",3,0,23,2,77,27,"New York Times","Democrat" +4,3,2088,"tess",3,1,90,2,90,99,"New York Times","Democrat" +4,3,2097,"tess",3,1,91,2,91,96,"New York Times","Republican" +4,3,2099,"tess",1,1,70,3,70,70,"New York Times","Republican" +4,3,2100,"tess",2,1,55,2,55,50,"New York Times","Democrat" +4,3,2107,"tess",4,1,60,2,60,74,"New York Times","Republican" +4,3,2141,"tess",4,0,85,2,15,49,"New York Times","Democrat" +4,3,2153,"tess",4,0,35,2,65,0,"New York Times","Democrat" +4,3,2169,"tess",3,0,100,3,0,22,"New York Times","Democrat" +4,3,2179,"tess",1,1,NA,2,NA,91,"New York Times","Democrat" +4,3,2180,"tess",3,1,58,2,58,56,"New York Times","Democrat" +4,3,2195,"tess",1,1,0,3,0,0,"New York Times","Republican" +4,3,2196,"tess",3,1,63,2,63,100,"New York Times","Republican" +4,3,2211,"tess",3,0,70,3,30,79,"New York Times","Republican" +4,3,2213,"tess",2,1,98,3,98,99,"New York Times","Neither" +4,3,2235,"tess",3,0,90,2,10,10,"New York Times","Republican" +4,3,2238,"tess",4,1,68,2,68,61,"New York Times","Democrat" +4,3,2253,"tess",2,1,3,3,3,99,"New York Times","Democrat" +4,3,2271,"tess",2,0,67,3,33,41,"New York Times","Democrat" +4,3,2272,"tess",2,0,89,2,11,5,"New York Times","Democrat" +4,3,2278,"tess",2,0,38,3,62,50,"New York Times","Neither" +4,3,2286,"tess",4,1,29,2,29,100,"New York Times","Democrat" +4,3,2315,"tess",1,0,82,2,18,23,"New York Times","Democrat" +4,3,2318,"tess",4,0,76,2,24,40,"New York Times","Democrat" +4,3,2337,"tess",3,0,80,3,20,20,"New York Times","Democrat" +4,3,2353,"tess",1,1,100,2,100,100,"New York Times","Democrat" +4,3,2379,"tess",2,1,43,3,43,74,"New York Times","Republican" +4,3,2393,"tess",4,0,9,2,91,10,"New York Times","Democrat" +4,3,2399,"tess",4,0,81,2,19,1,"New York Times","Democrat" +4,3,2405,"tess",2,0,28,3,72,19,"New York Times","Democrat" +4,3,2412,"tess",4,1,10,2,10,90,"New York Times","Democrat" +4,3,2434,"tess",4,0,66,2,34,30,"New York Times","Democrat" +4,3,2447,"tess",4,1,9,2,9,90,"New York Times","Democrat" +4,3,2492,"tess",1,0,80,2,20,41,"New York Times","Democrat" +4,3,2498,"tess",2,0,96,3,4,11,"New York Times","Republican" +4,3,2508,"tess",4,0,90,2,10,10,"New York Times","Democrat" +4,3,2518,"tess",2,0,35,3,65,78,"New York Times","Republican" +4,3,2519,"tess",4,0,100,2,0,0,"New York Times","Democrat" +4,3,2525,"tess",1,0,65,3,35,25,"New York Times","Republican" +4,3,2532,"tess",2,0,10,3,90,90,"New York Times","Democrat" +4,3,2547,"tess",1,0,30,3,70,30,"New York Times","Republican" +4,3,2557,"tess",2,1,39,3,39,0,"New York Times","Democrat" +4,3,2581,"tess",1,0,40,3,60,20,"New York Times","Democrat" +4,3,2599,"tess",1,0,99,3,1,0,"New York Times","Republican" +4,3,2608,"tess",3,0,91,3,9,1,"New York Times","Democrat" +4,3,2632,"tess",2,0,70,3,30,50,"New York Times","Democrat" +4,3,2658,"tess",3,1,95,2,95,94,"New York Times","Republican" +4,3,2664,"tess",2,1,100,3,100,98,"New York Times","Democrat" +4,3,2669,"tess",2,1,98,2,98,99,"New York Times","Democrat" +4,3,2670,"tess",2,1,30,3,30,30,"New York Times","Neither" +4,3,2695,"tess",3,0,50,3,50,51,"New York Times","Republican" +4,3,2707,"tess",1,0,69,2,31,34,"New York Times","Democrat" +4,3,2709,"tess",1,0,100,3,0,0,"New York Times","Democrat" +4,3,2731,"tess",4,1,86,2,86,31,"New York Times","Democrat" +4,3,2733,"tess",4,1,98,2,98,98,"New York Times","Democrat" +4,3,2745,"tess",4,1,20,2,20,79,"New York Times","Republican" +4,3,2760,"tess",2,0,30,3,70,51,"New York Times","Republican" +4,3,2764,"tess",2,0,64,3,36,69,"New York Times","Republican" +4,3,2765,"tess",2,0,32,2,68,63,"New York Times","Republican" +4,3,2771,"tess",1,1,54,2,54,52,"New York Times","Democrat" +4,3,2779,"tess",1,0,98,2,2,50,"New York Times","Democrat" +4,3,2784,"tess",2,1,80,2,80,90,"New York Times","Republican" +4,3,2795,"tess",1,0,40,2,60,10,"New York Times","Republican" +4,3,2797,"tess",2,0,17,3,83,89,"New York Times","Democrat" +4,3,2804,"tess",2,0,60,2,40,20,"New York Times","Republican" +4,3,2818,"tess",3,0,60,3,40,10,"New York Times","Democrat" +4,3,2827,"tess",3,0,99,2,1,97,"New York Times","Democrat" +4,3,2828,"tess",1,1,74,3,74,83,"New York Times","Republican" +4,3,2852,"tess",3,1,100,2,100,100,"New York Times","Republican" +4,3,2903,"tess",1,0,91,3,9,11,"New York Times","Democrat" +4,3,2905,"tess",3,0,37,2,63,59,"New York Times","Democrat" +4,3,2923,"tess",1,0,98,2,2,58,"New York Times","Neither" +4,3,2945,"tess",4,0,23,2,77,10,"New York Times","Democrat" +4,3,2981,"tess",2,1,30,2,30,3,"New York Times","Democrat" +4,3,2983,"tess",4,1,98,2,98,96,"New York Times","Democrat" +4,3,3006,"tess",2,0,91,2,9,10,"New York Times","Democrat" +4,3,3020,"tess",2,0,97,3,3,8,"New York Times","Democrat" +4,3,3021,"tess",2,1,80,2,80,50,"New York Times","Democrat" +4,3,3025,"tess",1,1,99,2,99,99,"New York Times","Democrat" +4,3,3028,"tess",2,1,70,3,70,69,"New York Times","Democrat" +4,3,3039,"tess",4,0,89,2,11,21,"New York Times","Republican" +4,3,3047,"tess",2,1,46,2,46,47,"New York Times","Democrat" +4,3,3068,"tess",3,1,99,3,99,95,"New York Times","Democrat" +4,3,3074,"tess",4,0,11,2,89,9,"New York Times","Democrat" +4,3,3082,"tess",1,1,45,3,45,54,"New York Times","Neither" +4,3,3089,"tess",1,0,83,3,17,33,"New York Times","Democrat" +4,3,3096,"tess",1,1,1,3,1,1,"New York Times","Republican" +4,3,3102,"tess",3,1,86,2,86,97,"New York Times","Democrat" +4,3,3109,"tess",1,1,NA,2,NA,90,"New York Times","Neither" +4,3,3111,"tess",2,0,50,2,50,50,"New York Times","Democrat" +4,3,3115,"tess",1,1,84,2,84,92,"New York Times","Neither" +4,3,3155,"tess",2,0,12,3,88,0,"New York Times","Neither" +4,3,3172,"tess",3,1,85,3,85,85,"New York Times","Democrat" +4,3,3176,"tess",2,1,50,2,50,50,"New York Times","Republican" +4,3,3201,"tess",3,0,89,2,11,1,"New York Times","Republican" +4,3,3206,"tess",3,0,60,2,40,13,"New York Times","Democrat" +4,3,3207,"tess",1,1,73,3,73,34,"New York Times","Republican" +4,3,3225,"tess",1,0,27,2,73,48,"New York Times","Republican" +4,3,3226,"tess",2,0,100,2,0,6,"New York Times","Republican" +4,3,3244,"tess",3,1,76,2,76,82,"New York Times","Republican" +4,3,3262,"tess",1,1,90,3,90,90,"New York Times","Republican" +4,3,3288,"tess",3,1,NA,3,NA,NA,"New York Times","Republican" +4,3,3295,"tess",1,1,50,3,50,90,"New York Times","Democrat" +4,3,3320,"tess",3,0,91,3,9,10,"New York Times","Democrat" +4,3,3333,"tess",3,1,91,2,91,53,"New York Times","Democrat" +4,3,3342,"tess",1,1,78,3,78,75,"New York Times","Republican" +4,3,3356,"tess",3,1,91,2,91,100,"New York Times","Democrat" +4,3,3407,"tess",3,0,65,3,35,40,"New York Times","Republican" +4,3,3425,"tess",1,0,80,3,20,28,"New York Times","Republican" +4,3,3430,"tess",3,1,40,2,40,100,"New York Times","Democrat" +4,3,3454,"tess",3,1,99,2,99,99,"New York Times","Democrat" +4,3,3462,"tess",4,1,57,2,57,43,"New York Times","Republican" +4,3,3477,"tess",2,0,77,2,23,54,"New York Times","Democrat" +4,3,3488,"tess",3,0,9,2,91,91,"New York Times","Republican" +4,3,3494,"tess",1,0,60,2,40,50,"New York Times","Democrat" +4,3,3507,"tess",3,0,26,2,74,60,"New York Times","Democrat" +4,3,3508,"tess",1,1,63,3,63,91,"New York Times","Republican" +4,3,3512,"tess",1,1,2,2,2,52,"New York Times","Republican" +4,3,3515,"tess",2,1,87,2,87,0,"New York Times","Republican" +4,3,3523,"tess",4,1,80,2,80,75,"New York Times","Democrat" +4,3,3545,"tess",3,0,70,2,30,30,"New York Times","Democrat" +4,3,3548,"tess",3,0,30,3,70,20,"New York Times","Republican" +4,3,3568,"tess",2,0,80,2,20,9,"New York Times","Democrat" +4,3,3607,"tess",3,0,99,3,1,8,"New York Times","Republican" +4,3,3609,"tess",1,0,95,2,5,19,"New York Times","Republican" +4,3,3611,"tess",4,1,5,2,5,5,"New York Times","Democrat" +4,3,3629,"tess",3,1,39,2,39,90,"New York Times","Republican" +4,3,3632,"tess",3,0,40,3,60,30,"New York Times","Republican" +4,3,3634,"tess",2,1,28,3,28,39,"New York Times","Democrat" +4,3,3635,"tess",1,1,90,2,90,10,"New York Times","Republican" +4,3,3643,"tess",4,0,70,2,30,30,"New York Times","Democrat" +4,3,3645,"tess",2,0,93,3,7,19,"New York Times","Republican" +4,3,3656,"tess",1,1,10,2,10,100,"New York Times","Democrat" +4,3,3663,"tess",2,1,20,3,20,71,"New York Times","Democrat" +4,3,3676,"tess",1,1,10,2,10,40,"New York Times","Republican" +4,3,3681,"tess",3,0,11,3,89,0,"New York Times","Democrat" +4,3,3695,"tess",2,1,51,2,51,87,"New York Times","Republican" +4,3,3710,"tess",1,1,40,3,40,100,"New York Times","Democrat" +4,3,3728,"tess",2,1,91,2,91,90,"New York Times","Republican" +4,3,3745,"tess",1,1,98,2,98,99,"New York Times","Democrat" +4,3,3759,"tess",2,0,60,3,40,61,"New York Times","Republican" +4,3,3767,"tess",3,1,100,3,100,100,"New York Times","Republican" +4,3,3776,"tess",1,0,77,3,23,0,"New York Times","Democrat" +4,3,3787,"tess",2,0,96,2,4,6,"New York Times","Democrat" +4,3,3801,"tess",3,1,11,2,11,12,"New York Times","Democrat" +4,3,3810,"tess",4,1,79,2,79,80,"New York Times","Democrat" +4,3,3814,"tess",4,1,51,2,51,100,"New York Times","Democrat" +4,3,3845,"tess",2,0,29,3,71,14,"New York Times","Democrat" +4,3,3848,"tess",1,1,90,3,90,90,"New York Times","Republican" +4,3,3865,"tess",4,0,81,2,19,75,"New York Times","Democrat" +4,3,3868,"tess",1,0,1,3,99,100,"New York Times","Democrat" +4,3,3895,"tess",3,1,40,3,40,50,"New York Times","Republican" +4,3,3898,"tess",2,1,97,2,97,100,"New York Times","Democrat" +4,3,3904,"tess",1,0,50,3,50,0,"New York Times","Democrat" +4,3,3909,"tess",3,1,90,3,90,79,"New York Times","Democrat" +4,3,3915,"tess",4,1,50,2,50,99,"New York Times","Democrat" +4,3,3918,"tess",1,0,1,2,99,2,"New York Times","Democrat" +4,3,3920,"tess",2,1,97,3,97,97,"New York Times","Democrat" +4,3,3931,"tess",4,1,59,2,59,51,"New York Times","Democrat" +4,3,3959,"tess",2,0,71,3,29,22,"New York Times","Democrat" +4,3,3961,"tess",2,0,6,2,94,93,"New York Times","Democrat" +4,3,4001,"tess",4,1,39,2,39,90,"New York Times","Neither" +4,3,4007,"tess",3,0,90,3,10,19,"New York Times","Republican" +4,3,4008,"tess",1,1,85,3,85,85,"New York Times","Republican" +4,3,4039,"tess",2,0,60,2,40,50,"New York Times","Democrat" +4,3,4046,"tess",3,0,74,2,26,7,"New York Times","Democrat" +4,3,4049,"tess",4,0,35,2,65,50,"New York Times","Neither" +4,3,4072,"tess",3,1,30,3,30,77,"New York Times","Democrat" +4,3,4075,"tess",3,1,10,3,10,20,"New York Times","Democrat" +4,3,4079,"tess",2,1,90,3,90,95,"New York Times","Democrat" +4,3,4096,"tess",3,0,80,2,20,21,"New York Times","Democrat" +4,3,4108,"tess",3,1,99,3,99,100,"New York Times","Democrat" +4,3,4120,"tess",3,0,50,3,50,49,"New York Times","Republican" +4,3,4139,"tess",4,0,3,2,97,3,"New York Times","Republican" +4,3,4153,"tess",1,1,96,3,96,98,"New York Times","Republican" +4,3,4160,"tess",2,0,35,3,65,65,"New York Times","Democrat" +4,3,4199,"tess",3,0,10,2,90,16,"New York Times","Democrat" +4,3,4200,"tess",4,0,80,2,20,29,"New York Times","Democrat" +4,3,4216,"tess",2,1,34,3,34,35,"New York Times","Democrat" +4,3,4222,"tess",1,0,18,3,82,50,"New York Times","Democrat" +4,3,4224,"tess",1,0,80,2,20,20,"New York Times","Democrat" +4,3,4238,"tess",2,0,65,2,35,27,"New York Times","Democrat" +4,3,4241,"tess",1,1,60,2,60,60,"New York Times","Republican" +4,3,4277,"tess",3,1,24,3,24,100,"New York Times","Democrat" +4,3,4278,"tess",3,0,99,3,1,1,"New York Times","Republican" +4,3,4285,"tess",4,1,100,2,100,100,"New York Times","Neither" +4,3,4290,"tess",3,1,90,2,90,82,"New York Times","Democrat" +4,3,4302,"tess",4,0,77,2,23,7,"New York Times","Democrat" +4,3,4308,"tess",3,1,50,3,50,0,"New York Times","Democrat" +4,3,4322,"tess",1,0,97,3,3,1,"New York Times","Republican" +4,3,4332,"tess",2,0,99,2,1,70,"New York Times","Democrat" +4,3,4335,"tess",1,1,70,3,70,60,"New York Times","Republican" +4,3,4356,"tess",1,1,51,3,51,51,"New York Times","Republican" +4,3,4357,"tess",1,1,100,3,100,100,"New York Times","Democrat" +4,3,4367,"tess",2,1,14,3,14,92,"New York Times","Republican" +4,3,4380,"tess",4,1,97,2,97,99,"New York Times","Republican" +4,3,4390,"tess",2,0,75,2,25,24,"New York Times","Democrat" +4,3,4403,"tess",1,0,31,3,69,24,"New York Times","Republican" +4,3,4412,"tess",2,0,80,3,20,80,"New York Times","Republican" +4,3,4416,"tess",3,1,40,3,40,19,"New York Times","Republican" +4,3,4427,"tess",2,0,1,2,99,2,"New York Times","Democrat" +4,3,4458,"tess",2,0,24,2,76,0,"New York Times","Republican" +4,3,4459,"tess",4,1,34,2,34,100,"New York Times","Democrat" +4,3,4475,"tess",3,1,90,2,90,9,"New York Times","Democrat" +4,3,4476,"tess",1,0,40,2,60,60,"New York Times","Democrat" +4,3,4480,"tess",1,1,61,3,61,100,"New York Times","Democrat" +4,3,4482,"tess",3,1,50,2,50,50,"New York Times","Neither" +4,3,4486,"tess",1,1,50,3,50,80,"New York Times","Republican" +4,3,4500,"tess",3,1,48,3,48,66,"New York Times","Democrat" +4,3,4523,"tess",2,0,50,3,50,72,"New York Times","Republican" +4,3,4552,"tess",3,0,58,3,42,0,"New York Times","Democrat" +4,3,4557,"tess",4,0,77,2,23,22,"New York Times","Republican" +4,3,4584,"tess",4,0,50,2,50,50,"New York Times","Democrat" +4,3,4587,"tess",3,1,100,3,100,100,"New York Times","Republican" +4,3,4606,"tess",2,0,50,2,50,0,"New York Times","Republican" +4,3,4618,"tess",3,1,25,3,25,27,"New York Times","Democrat" +4,3,4627,"tess",1,1,91,3,91,1,"New York Times","Democrat" +4,3,4628,"tess",2,1,50,3,50,50,"New York Times","Democrat" +4,3,4632,"tess",2,0,90,2,10,5,"New York Times","Democrat" +4,3,4633,"tess",4,0,50,2,50,30,"New York Times","Democrat" +4,3,4674,"tess",1,1,70,3,70,18,"New York Times","Republican" +4,3,4683,"tess",1,0,93,3,7,51,"New York Times","Neither" +4,3,4690,"tess",3,1,NA,3,NA,100,"New York Times","Democrat" +4,3,4708,"tess",3,1,50,3,50,75,"New York Times","Democrat" +4,3,4715,"tess",4,0,93,2,7,0,"New York Times","Republican" +4,3,4726,"tess",1,0,7,2,93,24,"New York Times","Republican" +4,3,4739,"tess",1,0,46,3,54,24,"New York Times","Republican" +4,3,4740,"tess",2,1,20,2,20,80,"New York Times","Republican" +4,3,4770,"tess",2,0,99,2,1,1,"New York Times","Democrat" +4,3,4780,"tess",3,0,87,2,13,20,"New York Times","Republican" +4,3,4782,"tess",2,0,NA,3,NA,NA,"New York Times","Democrat" +4,3,4789,"tess",4,0,30,2,70,0,"New York Times","Democrat" +4,3,4793,"tess",1,1,100,2,100,99,"New York Times","Democrat" +4,3,4795,"tess",4,1,98,2,98,99,"New York Times","Democrat" +4,3,4810,"tess",1,1,87,3,87,90,"New York Times","Democrat" +4,3,4816,"tess",3,1,46,3,46,95,"New York Times","Democrat" +4,3,4819,"tess",1,1,94,2,94,77,"New York Times","Democrat" +4,3,4820,"tess",3,1,50,3,50,50,"New York Times","Republican" +4,3,4821,"tess",2,1,40,2,40,44,"New York Times","Neither" +4,3,4823,"tess",3,1,53,3,53,96,"New York Times","Democrat" +4,3,4826,"tess",2,0,70,3,30,1,"New York Times","Democrat" +4,3,4831,"tess",2,1,80,2,80,24,"New York Times","Neither" +4,3,4833,"tess",1,0,89,3,11,4,"New York Times","Democrat" +4,3,4841,"tess",3,0,98,2,2,3,"New York Times","Democrat" +4,3,4863,"tess",3,0,10,2,90,0,"New York Times","Republican" +4,3,4869,"tess",2,1,99,2,99,1,"New York Times","Democrat" +4,3,4880,"tess",1,0,13,3,87,0,"New York Times","Republican" +4,3,4899,"tess",4,0,92,2,8,10,"New York Times","Democrat" +4,3,4914,"tess",2,0,79,2,21,60,"New York Times","Democrat" +4,3,4925,"tess",1,1,60,2,60,60,"New York Times","Democrat" +4,3,4926,"tess",2,1,100,3,100,100,"New York Times","Democrat" +4,3,4930,"tess",3,0,51,2,49,1,"New York Times","Democrat" +4,3,4932,"tess",2,1,70,2,70,70,"New York Times","Republican" +4,3,4935,"tess",3,1,46,2,46,100,"New York Times","Democrat" +4,3,4964,"tess",2,0,80,2,20,29,"New York Times","Republican" +4,3,4969,"tess",2,1,78,3,78,18,"New York Times","Democrat" +4,3,4977,"tess",4,0,12,2,88,0,"New York Times","Republican" +4,3,5008,"tess",2,1,54,2,54,71,"New York Times","Republican" +4,3,5025,"tess",3,1,73,3,73,100,"New York Times","Democrat" +4,3,5029,"tess",1,1,45,3,45,86,"New York Times","Republican" +4,3,5058,"tess",1,1,80,2,80,80,"New York Times","Republican" +4,3,5073,"tess",2,1,89,2,89,84,"New York Times","Democrat" +4,3,5101,"tess",1,1,33,2,33,95,"New York Times","Democrat" +4,3,5128,"tess",3,0,98,3,2,11,"New York Times","Democrat" +4,3,5133,"tess",1,1,99,3,99,80,"New York Times","Republican" +4,3,5143,"tess",1,1,15,3,15,96,"New York Times","Republican" +4,3,5147,"tess",2,1,39,3,39,35,"New York Times","Republican" +4,3,5151,"tess",4,0,99,2,1,1,"New York Times","Democrat" +4,3,5165,"tess",3,1,100,2,100,94,"New York Times","Republican" +4,3,5172,"tess",2,0,30,2,70,20,"New York Times","Democrat" +4,3,5175,"tess",3,0,40,3,60,20,"New York Times","Democrat" +4,3,5221,"tess",3,0,71,2,29,14,"New York Times","Republican" +4,3,5222,"tess",3,0,37,3,63,2,"New York Times","Democrat" +4,3,5224,"tess",3,0,53,3,47,40,"New York Times","Republican" +4,3,5268,"tess",2,0,81,3,19,24,"New York Times","Democrat" +4,3,5275,"tess",2,1,23,2,23,100,"New York Times","Democrat" +4,3,5279,"tess",3,0,100,2,0,0,"New York Times","Democrat" +4,3,5284,"tess",3,1,4,3,4,94,"New York Times","Democrat" +4,3,5289,"tess",4,0,9,2,91,91,"New York Times","Democrat" +4,3,5308,"tess",1,0,0,2,100,90,"New York Times","Democrat" +4,3,5311,"tess",1,0,97,2,3,55,"New York Times","Republican" +4,3,5316,"tess",3,1,92,3,92,59,"New York Times","Republican" +4,3,5318,"tess",2,1,39,3,39,100,"New York Times","Democrat" +4,3,5319,"tess",4,1,80,2,80,60,"New York Times","Democrat" +4,3,5325,"tess",1,0,85,2,15,5,"New York Times","Democrat" +4,3,5331,"tess",2,1,40,2,40,90,"New York Times","Democrat" +4,3,5386,"tess",2,0,0,2,100,100,"New York Times","Republican" +4,3,5407,"tess",2,0,90,3,10,33,"New York Times","Republican" +4,3,5412,"tess",2,0,87,2,13,0,"New York Times","Republican" +4,3,5419,"tess",3,0,10,3,90,11,"New York Times","Republican" +4,3,5423,"tess",3,0,5,3,95,6,"New York Times","Democrat" +4,3,5434,"tess",3,0,74,2,26,73,"New York Times","Republican" +4,3,5450,"tess",4,0,96,2,4,6,"New York Times","Republican" +4,3,5456,"tess",2,0,99,3,1,2,"New York Times","Democrat" +4,3,5465,"tess",1,0,95,3,5,14,"New York Times","Republican" +4,3,5470,"tess",2,0,85,2,15,1,"New York Times","Democrat" +4,3,5480,"tess",2,1,NA,3,NA,NA,"New York Times","Republican" +4,3,5490,"tess",1,0,18,3,82,80,"New York Times","Republican" +4,3,5500,"tess",2,1,60,2,60,60,"New York Times","Democrat" +4,3,5515,"tess",2,0,70,2,30,20,"New York Times","Republican" +4,3,5523,"tess",2,0,99,2,1,1,"New York Times","Democrat" +4,3,5536,"tess",3,0,3,3,97,41,"New York Times","Democrat" +4,3,5553,"tess",2,0,42,2,58,60,"New York Times","Republican" +4,3,5567,"tess",3,1,90,2,90,90,"New York Times","Republican" +4,3,5570,"tess",2,0,25,2,75,25,"New York Times","Democrat" +4,3,5575,"tess",4,0,100,2,0,0,"New York Times","Democrat" +4,3,5579,"tess",1,0,88,2,12,65,"New York Times","Republican" +4,3,5581,"tess",1,0,90,2,10,11,"New York Times","Democrat" +4,3,5593,"tess",2,0,50,3,50,20,"New York Times","Republican" +4,3,5612,"tess",4,1,41,2,41,90,"New York Times","Democrat" +4,3,5613,"tess",3,1,35,2,35,51,"New York Times","Republican" +4,3,5615,"tess",1,0,29,3,71,50,"New York Times","Democrat" +4,3,5617,"tess",3,0,100,3,0,0,"New York Times","Democrat" +4,3,5631,"tess",3,1,80,3,80,70,"New York Times","Republican" +4,3,5646,"tess",1,0,NA,2,NA,0,"New York Times","Republican" +4,3,5654,"tess",2,1,31,2,31,91,"New York Times","Democrat" +4,3,5657,"tess",2,0,64,2,36,24,"New York Times","Democrat" +4,3,5663,"tess",2,1,91,2,91,90,"New York Times","Democrat" +4,3,5677,"tess",1,0,73,2,27,0,"New York Times","Republican" +4,3,5681,"tess",4,0,50,2,50,10,"New York Times","Democrat" +4,3,5683,"tess",1,1,44,3,44,90,"New York Times","Democrat" +4,3,5684,"tess",2,1,98,2,98,100,"New York Times","Democrat" +4,3,5720,"tess",4,0,80,2,20,20,"New York Times","Republican" +4,3,5721,"tess",3,0,99,3,1,1,"New York Times","Republican" +4,3,5725,"tess",3,1,99,3,99,99,"New York Times","Republican" +4,3,5729,"tess",3,0,91,3,9,74,"New York Times","Republican" +4,3,5731,"tess",3,0,55,3,45,40,"New York Times","Democrat" +4,3,5734,"tess",3,1,80,2,80,91,"New York Times","Democrat" +4,3,5735,"tess",1,0,80,2,20,50,"New York Times","Republican" +4,3,5751,"tess",3,0,31,2,69,5,"New York Times","Republican" +4,3,5772,"tess",2,0,100,3,0,20,"New York Times","Democrat" +4,3,5787,"tess",1,1,80,2,80,93,"New York Times","Republican" +4,3,5802,"tess",3,1,80,3,80,50,"New York Times","Republican" +4,3,5803,"tess",1,0,26,2,74,29,"New York Times","Republican" +4,3,5815,"tess",1,0,93,2,7,38,"New York Times","Democrat" +4,3,5824,"tess",1,0,8,2,92,80,"New York Times","Democrat" +4,3,5825,"tess",2,1,100,3,100,100,"New York Times","Republican" +4,3,5833,"tess",1,1,30,2,30,100,"New York Times","Democrat" +4,3,5842,"tess",2,1,100,2,100,100,"New York Times","Democrat" +4,3,5868,"tess",1,0,75,2,25,30,"New York Times","Democrat" +4,3,5885,"tess",2,0,51,3,49,49,"New York Times","Republican" +4,3,5889,"tess",1,0,51,3,49,49,"New York Times","Democrat" +4,3,5896,"tess",1,1,25,2,25,24,"New York Times","Republican" +4,3,5902,"tess",2,0,85,3,15,0,"New York Times","Republican" +4,3,5916,"tess",2,1,80,3,80,80,"New York Times","Republican" +4,3,5925,"tess",1,1,69,2,69,63,"New York Times","Republican" +4,3,5926,"tess",3,1,93,3,93,89,"New York Times","Democrat" +4,3,5934,"tess",3,0,99,3,1,50,"New York Times","Democrat" +4,3,5937,"tess",1,1,0,3,0,100,"New York Times","Democrat" +4,3,5940,"tess",4,0,63,2,37,34,"New York Times","Democrat" +4,3,5946,"tess",1,0,2,3,98,93,"New York Times","Republican" +4,3,5958,"tess",4,1,0,2,0,100,"New York Times","Democrat" +4,3,5959,"tess",2,0,100,2,0,0,"New York Times","Republican" +4,3,5963,"tess",1,1,0,3,0,35,"New York Times","Democrat" +4,3,5964,"tess",1,0,49,3,51,50,"New York Times","Democrat" +4,3,5981,"tess",3,1,34,3,34,85,"New York Times","Republican" +4,3,5990,"tess",2,1,84,3,84,82,"New York Times","Democrat" +4,3,6000,"tess",4,0,90,2,10,10,"New York Times","Democrat" +4,3,6039,"tess",1,0,63,2,37,19,"New York Times","Republican" +4,3,6042,"tess",1,1,1,2,1,99,"New York Times","Neither" +4,3,6045,"tess",4,1,97,2,97,93,"New York Times","Republican" +4,3,6046,"tess",2,1,75,2,75,98,"New York Times","Democrat" +4,3,6050,"tess",3,1,23,3,23,22,"New York Times","Republican" +4,3,6061,"tess",1,0,68,2,32,30,"New York Times","Democrat" +4,3,6067,"tess",1,1,63,2,63,50,"New York Times","Republican" +4,3,6068,"tess",3,0,60,2,40,20,"New York Times","Democrat" +4,3,6070,"tess",3,1,69,3,69,90,"New York Times","Republican" +4,3,6074,"tess",3,0,30,2,70,73,"New York Times","Republican" +4,3,6077,"tess",3,0,60,2,40,20,"New York Times","Democrat" +4,3,6084,"tess",2,0,76,2,24,25,"New York Times","Democrat" +4,3,6087,"tess",3,1,62,3,62,85,"New York Times","Democrat" +4,3,6095,"tess",2,0,2,3,98,1,"New York Times","Democrat" +4,3,6097,"tess",1,1,50,3,50,30,"New York Times","Republican" +4,3,6100,"tess",1,1,50,2,50,51,"New York Times","Democrat" +4,3,6110,"tess",2,1,86,2,86,76,"New York Times","Republican" +4,3,6130,"tess",1,0,83,2,17,79,"New York Times","Republican" +4,3,6136,"tess",3,0,89,2,11,19,"New York Times","Democrat" +4,3,6142,"tess",1,0,20,3,80,1,"New York Times","Neither" +4,3,6146,"tess",2,0,93,2,7,9,"New York Times","Republican" +4,3,6151,"tess",1,1,30,3,30,80,"New York Times","Democrat" +4,3,6155,"tess",2,0,95,2,5,97,"New York Times","Democrat" +4,3,6158,"tess",3,0,43,3,57,33,"New York Times","Republican" +4,3,6170,"tess",1,1,50,3,50,74,"New York Times","Democrat" +4,3,6193,"tess",4,0,60,2,40,89,"New York Times","Democrat" +4,3,6195,"tess",2,1,25,3,25,24,"New York Times","Democrat" +4,3,6197,"tess",1,1,95,3,95,90,"New York Times","Democrat" +4,3,6204,"tess",2,0,60,3,40,40,"New York Times","Republican" +4,3,6226,"tess",2,0,11,3,89,80,"New York Times","Democrat" +4,3,6227,"tess",2,1,96,3,96,95,"New York Times","Democrat" +4,3,6242,"tess",3,0,92,3,8,11,"New York Times","Democrat" +4,3,6244,"tess",1,1,10,3,10,50,"New York Times","Democrat" +4,3,6254,"tess",2,1,84,3,84,50,"New York Times","Democrat" +4,3,6256,"tess",3,0,99,3,1,85,"New York Times","Democrat" +4,3,6257,"tess",2,0,51,2,49,73,"New York Times","Democrat" +4,3,6261,"tess",3,1,90,3,90,80,"New York Times","Democrat" +4,3,6265,"tess",2,1,85,3,85,90,"New York Times","Democrat" +4,3,6269,"tess",3,1,76,3,76,71,"New York Times","Democrat" +4,3,6270,"tess",4,1,89,2,89,40,"New York Times","Democrat" +4,3,6272,"tess",2,0,50,3,50,2,"New York Times","Democrat" +4,3,6284,"tess",1,0,NA,3,NA,NA,"New York Times","Neither" +4,3,6323,"tess",2,1,31,3,31,90,"New York Times","Democrat" +4,3,6326,"tess",1,0,20,3,80,70,"New York Times","Democrat" +4,3,6329,"tess",2,1,51,3,51,93,"New York Times","Democrat" +4,3,6367,"tess",4,1,100,2,100,80,"New York Times","Democrat" +4,3,6373,"tess",3,1,50,2,50,59,"New York Times","Democrat" +4,3,6382,"tess",2,1,50,2,50,100,"New York Times","Democrat" +4,3,6383,"tess",3,1,100,2,100,100,"New York Times","Democrat" +4,3,6397,"tess",3,0,99,3,1,1,"New York Times","Republican" +4,3,6414,"tess",3,1,60,2,60,80,"New York Times","Republican" +4,3,6428,"tess",1,0,14,3,86,87,"New York Times","Neither" +4,3,6430,"tess",3,1,100,3,100,99,"New York Times","Democrat" +4,3,6449,"tess",2,1,50,2,50,11,"New York Times","Republican" +4,3,6458,"tess",4,0,50,2,50,50,"New York Times","Republican" +4,3,6462,"tess",1,0,50,3,50,60,"New York Times","Democrat" +4,3,6463,"tess",4,0,83,2,17,69,"New York Times","Democrat" +4,3,6466,"tess",3,1,100,2,100,97,"New York Times","Democrat" +4,3,6467,"tess",1,1,82,2,82,32,"New York Times","Democrat" +4,3,6472,"tess",3,0,72,3,28,13,"New York Times","Republican" +4,3,6473,"tess",2,1,48,2,48,95,"New York Times","Republican" +4,3,6489,"tess",1,0,24,2,76,0,"New York Times","Democrat" +4,3,6491,"tess",4,1,94,2,94,81,"New York Times","Neither" +4,3,6501,"tess",2,1,50,2,50,50,"New York Times","Neither" +4,3,6508,"tess",1,0,90,2,10,30,"New York Times","Republican" +4,3,6513,"tess",4,1,99,2,99,99,"New York Times","Republican" +4,3,6521,"tess",4,1,90,2,90,79,"New York Times","Democrat" +4,3,6522,"tess",4,0,35,2,65,55,"New York Times","Democrat" +4,3,6524,"tess",1,1,99,3,99,67,"New York Times","Democrat" +4,3,6527,"tess",3,1,91,2,91,90,"New York Times","Democrat" +4,3,6532,"tess",4,1,90,2,90,97,"New York Times","Democrat" +4,3,6534,"tess",2,0,60,3,40,40,"New York Times","Republican" +4,3,6538,"tess",4,0,60,2,40,16,"New York Times","Republican" +4,3,6541,"tess",2,0,59,3,41,3,"New York Times","Democrat" +4,3,6545,"tess",3,0,7,3,93,97,"New York Times","Democrat" +4,3,6553,"tess",2,1,81,3,81,50,"New York Times","Republican" +4,3,6588,"tess",1,1,38,3,38,60,"New York Times","Democrat" +4,3,6589,"tess",1,1,56,3,56,53,"New York Times","Democrat" +4,3,6592,"tess",2,0,81,2,19,14,"New York Times","Democrat" +4,3,6596,"tess",3,0,100,2,0,0,"New York Times","Democrat" +4,3,6599,"tess",4,1,85,2,85,88,"New York Times","Democrat" +4,3,6600,"tess",3,0,67,2,33,31,"New York Times","Republican" +4,3,6609,"tess",3,0,98,2,2,89,"New York Times","Democrat" +4,3,6619,"tess",1,1,31,3,31,60,"New York Times","Republican" +4,3,6621,"tess",4,0,75,2,25,25,"New York Times","Democrat" +4,3,6633,"tess",2,0,62,3,38,31,"New York Times","Republican" +4,3,6640,"tess",2,0,10,3,90,5,"New York Times","Republican" +4,3,6646,"tess",3,0,80,3,20,20,"New York Times","Republican" +4,3,6647,"tess",4,1,91,2,91,82,"New York Times","Democrat" +4,3,6648,"tess",2,0,57,2,43,79,"New York Times","Democrat" +4,3,6656,"tess",4,1,99,2,99,99,"New York Times","Democrat" +4,3,6660,"tess",3,1,79,2,79,95,"New York Times","Democrat" +4,3,6665,"tess",3,0,91,2,9,9,"New York Times","Democrat" +4,3,6668,"tess",3,0,95,2,5,26,"New York Times","Democrat" +4,3,6674,"tess",3,1,90,2,90,90,"New York Times","Democrat" +4,3,6676,"tess",3,0,80,2,20,50,"New York Times","Democrat" +4,3,6680,"tess",2,1,56,3,56,50,"New York Times","Republican" +4,3,6682,"tess",2,1,100,3,100,100,"New York Times","Democrat" +4,3,6685,"tess",1,0,36,2,64,37,"New York Times","Republican" +4,3,6686,"tess",1,0,50,3,50,40,"New York Times","Republican" +4,3,6688,"tess",1,0,76,2,24,0,"New York Times","Republican" +4,3,6698,"tess",1,0,1,2,99,99,"New York Times","Democrat" +4,3,6702,"tess",3,1,99,3,99,90,"New York Times","Democrat" +4,3,6710,"tess",3,1,100,3,100,100,"New York Times","Republican" +4,3,6712,"tess",4,1,53,2,53,44,"New York Times","Democrat" +4,3,6718,"tess",2,1,50,3,50,80,"New York Times","Republican" +4,3,6720,"tess",3,1,31,3,31,85,"New York Times","Republican" +4,3,6729,"tess",1,1,90,2,90,75,"New York Times","Democrat" +4,3,6730,"tess",3,0,30,2,70,87,"New York Times","Democrat" +4,3,6741,"tess",1,0,90,3,10,10,"New York Times","Democrat" +4,3,6758,"tess",1,1,39,3,39,76,"New York Times","Republican" +4,3,6775,"tess",2,1,87,2,87,28,"New York Times","Republican" +4,3,6782,"tess",4,0,87,2,13,11,"New York Times","Republican" +4,3,6783,"tess",1,0,30,3,70,18,"New York Times","Democrat" +4,3,6788,"tess",4,0,96,2,4,5,"New York Times","Democrat" +4,3,6791,"tess",2,1,80,2,80,80,"New York Times","Democrat" +4,3,6802,"tess",3,1,96,2,96,85,"New York Times","Democrat" +4,3,6804,"tess",4,1,50,2,50,30,"New York Times","Republican" +4,3,6814,"tess",2,1,70,3,70,90,"New York Times","Democrat" +4,3,6820,"tess",3,0,93,2,7,5,"New York Times","Republican" +4,3,6831,"tess",2,1,60,2,60,50,"New York Times","Republican" +4,3,6833,"tess",3,1,98,2,98,99,"New York Times","Neither" +4,3,6835,"tess",4,0,83,2,17,10,"New York Times","Democrat" +4,3,6838,"tess",2,1,95,3,95,96,"New York Times","Democrat" +4,3,6843,"tess",3,1,80,3,80,70,"New York Times","Republican" +4,3,6844,"tess",1,0,64,2,36,59,"New York Times","Democrat" +4,3,6853,"tess",4,1,80,2,80,80,"New York Times","Democrat" +4,3,6865,"tess",3,1,96,2,96,100,"New York Times","Democrat" +4,3,6868,"tess",3,1,56,2,56,72,"New York Times","Republican" +4,3,6891,"tess",2,0,41,2,59,9,"New York Times","Democrat" +4,3,6893,"tess",2,1,35,3,35,8,"New York Times","Republican" +4,3,6909,"tess",2,1,80,3,80,82,"New York Times","Republican" +4,3,6910,"tess",1,1,61,2,61,54,"New York Times","Democrat" +4,3,6920,"tess",4,1,51,2,51,55,"New York Times","Republican" +4,3,6927,"tess",3,0,69,2,31,0,"New York Times","Democrat" +4,3,6930,"tess",3,0,33,3,67,75,"New York Times","Republican" +4,3,6935,"tess",1,1,91,2,91,100,"New York Times","Democrat" +4,3,6936,"tess",3,1,100,2,100,80,"New York Times","Republican" +4,3,6938,"tess",1,0,84,2,16,12,"New York Times","Democrat" +4,3,6951,"tess",2,0,49,2,51,67,"New York Times","Democrat" +4,3,6998,"tess",1,0,30,2,70,10,"New York Times","Republican" +4,3,7011,"tess",1,1,0,2,0,100,"New York Times","Democrat" +4,3,7031,"tess",3,1,41,3,41,39,"New York Times","Republican" +4,3,7036,"tess",2,0,74,3,26,65,"New York Times","Republican" +4,3,7046,"tess",3,0,41,2,59,41,"New York Times","Democrat" +4,3,7073,"tess",2,0,0,2,100,1,"New York Times","Republican" +4,3,7088,"tess",3,1,68,2,68,82,"New York Times","Democrat" +4,3,7099,"tess",2,0,17,3,83,9,"New York Times","Democrat" +4,3,7104,"tess",4,0,91,2,9,9,"New York Times","Republican" +4,3,7106,"tess",1,0,100,3,0,0,"New York Times","Republican" +4,3,7124,"tess",3,0,80,2,20,0,"New York Times","Democrat" +4,3,7133,"tess",3,0,80,2,20,20,"New York Times","Democrat" +4,3,7140,"tess",3,1,53,2,53,87,"New York Times","Republican" +4,3,7153,"tess",2,1,8,2,8,98,"New York Times","Democrat" +4,3,7161,"tess",4,0,21,2,79,19,"New York Times","Democrat" +4,3,7166,"tess",3,1,48,2,48,97,"New York Times","Neither" +4,3,7174,"tess",2,1,82,3,82,98,"New York Times","Democrat" +4,3,7186,"tess",1,1,55,2,55,65,"New York Times","Democrat" +4,3,7210,"tess",3,1,2,3,2,3,"New York Times","Neither" +4,3,7216,"tess",3,1,0,2,0,100,"New York Times","Democrat" +4,3,7222,"tess",4,0,90,2,10,80,"New York Times","Democrat" +4,3,7224,"tess",2,1,0,3,0,67,"New York Times","Republican" +4,3,7230,"tess",2,1,47,3,47,38,"New York Times","Republican" +4,3,7240,"tess",1,0,100,3,0,2,"New York Times","Democrat" +4,3,7241,"tess",2,1,100,2,100,100,"New York Times","Neither" +4,3,7248,"tess",2,0,76,2,24,0,"New York Times","Democrat" +4,3,7273,"tess",4,1,45,2,45,39,"New York Times","Democrat" +4,3,7276,"tess",1,0,88,3,12,9,"New York Times","Republican" +4,3,7287,"tess",2,0,60,2,40,90,"New York Times","Republican" +4,3,7297,"tess",4,0,100,2,0,5,"New York Times","Democrat" +4,3,7303,"tess",3,0,91,3,9,16,"New York Times","Republican" +4,3,7307,"tess",2,1,98,3,98,98,"New York Times","Democrat" +4,3,7315,"tess",2,1,24,3,24,27,"New York Times","Neither" +4,3,7330,"tess",1,0,73,2,27,10,"New York Times","Democrat" +4,3,7338,"tess",4,0,1,2,99,1,"New York Times","Democrat" +4,3,7356,"tess",2,1,57,2,57,74,"New York Times","Democrat" +4,3,7373,"tess",1,1,49,2,49,86,"New York Times","Democrat" +4,3,7388,"tess",3,0,80,3,20,20,"New York Times","Democrat" +4,3,7395,"tess",2,0,5,3,95,95,"New York Times","Republican" +4,3,7397,"tess",4,1,100,2,100,100,"New York Times","Democrat" +4,3,7398,"tess",1,1,50,2,50,50,"New York Times","Democrat" +4,3,7404,"tess",2,0,91,3,9,3,"New York Times","Democrat" +4,3,7407,"tess",2,1,75,2,75,70,"New York Times","Republican" +4,3,7409,"tess",1,0,75,2,25,70,"New York Times","Democrat" +4,3,7418,"tess",3,1,93,3,93,97,"New York Times","Democrat" +4,3,7425,"tess",1,1,28,2,28,20,"New York Times","Democrat" +4,3,7437,"tess",4,1,80,2,80,75,"New York Times","Democrat" +4,3,7440,"tess",1,1,70,3,70,51,"New York Times","Republican" +4,3,7441,"tess",2,0,88,3,12,20,"New York Times","Democrat" +4,3,7466,"tess",2,1,91,3,91,91,"New York Times","Republican" +4,3,7486,"tess",4,1,95,2,95,92,"New York Times","Democrat" +4,3,7498,"tess",1,1,58,3,58,85,"New York Times","Republican" +4,3,7501,"tess",1,0,62,3,38,36,"New York Times","Republican" +4,3,7504,"tess",1,0,60,2,40,30,"New York Times","Republican" +4,3,7524,"tess",4,0,98,2,2,42,"New York Times","Democrat" +4,3,7525,"tess",2,1,98,2,98,100,"New York Times","Democrat" +4,3,7528,"tess",2,0,50,2,50,50,"New York Times","Republican" +4,3,7534,"tess",2,0,44,3,56,50,"New York Times","Democrat" +4,3,7542,"tess",2,0,8,2,92,0,"New York Times","Republican" +4,3,7546,"tess",3,0,90,3,10,70,"New York Times","Republican" +4,3,7556,"tess",1,1,91,2,91,50,"New York Times","Democrat" +4,3,7558,"tess",3,0,100,3,0,2,"New York Times","Democrat" +4,3,7573,"tess",1,0,85,2,15,10,"New York Times","Democrat" +4,3,7580,"tess",3,0,82,3,18,40,"New York Times","Republican" +4,3,7584,"tess",3,1,53,2,53,84,"New York Times","Republican" +4,3,7586,"tess",1,1,0,3,0,0,"New York Times","Democrat" +4,3,7587,"tess",1,0,100,3,0,0,"New York Times","Democrat" +4,3,7588,"tess",1,1,95,2,95,99,"New York Times","Republican" +4,3,7590,"tess",2,1,51,3,51,91,"New York Times","Republican" +4,3,7600,"tess",1,0,20,2,80,69,"New York Times","Republican" +4,3,7605,"tess",3,1,16,3,16,57,"New York Times","Republican" +4,3,7608,"tess",2,1,85,3,85,90,"New York Times","Republican" +4,3,7615,"tess",2,1,100,2,100,98,"New York Times","Republican" +4,3,7622,"tess",1,0,0,2,100,1,"New York Times","Democrat" +4,3,7623,"tess",3,0,60,2,40,76,"New York Times","Republican" +4,3,7630,"tess",3,0,100,3,0,0,"New York Times","Democrat" +4,3,7631,"tess",3,1,8,3,8,5,"New York Times","Democrat" +4,3,7634,"tess",2,1,20,3,20,100,"New York Times","Republican" +4,3,7641,"tess",2,0,80,3,20,20,"New York Times","Democrat" +4,3,7656,"tess",1,0,20,3,80,70,"New York Times","Republican" +4,3,7659,"tess",3,0,50,3,50,1,"New York Times","Republican" +4,3,7667,"tess",3,1,100,2,100,100,"New York Times","Democrat" +4,3,7696,"tess",4,0,87,2,13,10,"New York Times","Democrat" +4,3,7699,"tess",1,1,1,2,1,100,"New York Times","Democrat" +4,3,7702,"tess",2,0,40,3,60,0,"New York Times","Democrat" +4,3,7712,"tess",1,1,31,3,31,80,"New York Times","Democrat" +4,3,7722,"tess",1,0,90,3,10,10,"New York Times","Republican" +4,3,7741,"tess",1,1,100,3,100,100,"New York Times","Republican" +4,3,7759,"tess",1,1,99,3,99,99,"New York Times","Democrat" +4,3,7778,"tess",4,0,0,2,100,0,"New York Times","Democrat" +4,3,7783,"tess",2,0,79,2,21,31,"New York Times","Republican" +4,3,7784,"tess",4,1,95,2,95,95,"New York Times","Neither" +4,3,7789,"tess",3,0,71,2,29,0,"New York Times","Republican" +4,3,7792,"tess",4,1,80,2,80,80,"New York Times","Neither" +4,3,7793,"tess",2,1,86,2,86,90,"New York Times","Republican" +4,3,7799,"tess",4,0,80,2,20,10,"New York Times","Democrat" +4,3,7819,"tess",2,0,77,3,23,29,"New York Times","Democrat" +4,3,7820,"tess",1,0,10,2,90,20,"New York Times","Republican" +4,3,7826,"tess",2,0,50,2,50,30,"New York Times","Republican" +4,3,7880,"tess",2,1,70,3,70,100,"New York Times","Democrat" +4,3,7884,"tess",1,1,80,3,80,80,"New York Times","Democrat" +4,3,7918,"tess",3,1,95,2,95,95,"New York Times","Democrat" +4,3,7922,"tess",2,1,91,2,91,92,"New York Times","Democrat" +4,3,7951,"tess",3,0,11,3,89,99,"New York Times","Republican" +4,3,7959,"tess",3,1,83,3,83,100,"New York Times","Democrat" +4,3,7967,"tess",2,1,93,2,93,82,"New York Times","Democrat" +4,3,7982,"tess",1,1,65,2,65,75,"New York Times","Democrat" +4,3,7988,"tess",4,1,68,2,68,61,"New York Times","Democrat" +4,3,7995,"tess",2,1,95,2,95,73,"New York Times","Republican" +4,3,7998,"tess",4,1,65,2,65,90,"New York Times","Democrat" +4,3,8000,"tess",3,0,71,2,29,50,"New York Times","Democrat" +4,3,8011,"tess",3,0,31,3,69,68,"New York Times","Republican" +4,3,8050,"tess",4,0,20,2,80,0,"New York Times","Neither" +4,3,8061,"tess",2,0,81,3,19,53,"New York Times","Republican" +4,3,8062,"tess",3,0,70,3,30,50,"New York Times","Democrat" +4,3,8064,"tess",4,1,94,2,94,52,"New York Times","Democrat" +4,3,8069,"tess",3,0,84,3,16,29,"New York Times","Democrat" +4,3,8081,"tess",2,1,100,3,100,100,"New York Times","Democrat" +4,3,8096,"tess",1,0,99,3,1,0,"New York Times","Republican" +4,3,8104,"tess",2,1,2,3,2,98,"New York Times","Republican" +4,3,8112,"tess",2,1,79,3,79,50,"New York Times","Democrat" +4,3,8116,"tess",4,1,98,2,98,95,"New York Times","Democrat" +4,3,8134,"tess",3,1,99,2,99,99,"New York Times","Democrat" +4,3,8142,"tess",1,1,80,2,80,90,"New York Times","Democrat" +4,3,8152,"tess",4,0,52,2,48,29,"New York Times","Democrat" +4,3,8218,"tess",2,0,89,2,11,10,"New York Times","Democrat" +4,3,8232,"tess",2,1,100,3,100,100,"New York Times","Democrat" +4,3,8244,"tess",2,1,99,2,99,99,"New York Times","Republican" +4,3,8249,"tess",4,1,100,2,100,100,"New York Times","Democrat" +4,3,8252,"tess",4,1,8,2,8,100,"New York Times","Democrat" +4,3,8267,"tess",4,1,90,2,90,90,"New York Times","Republican" +4,3,8272,"tess",4,1,96,2,96,96,"New York Times","Democrat" +4,3,8274,"tess",2,0,99,2,1,1,"New York Times","Republican" +4,3,8280,"tess",1,1,49,3,49,68,"New York Times","Democrat" +4,3,8285,"tess",3,1,94,3,94,0,"New York Times","Democrat" +4,3,8287,"tess",4,0,25,2,75,50,"New York Times","Democrat" +4,3,8308,"tess",4,1,19,2,19,99,"New York Times","Democrat" +4,3,8317,"tess",3,1,70,3,70,0,"New York Times","Republican" +4,3,8331,"tess",4,1,91,2,91,90,"New York Times","Democrat" +4,3,8333,"tess",1,1,13,3,13,34,"New York Times","Democrat" +4,3,8344,"tess",3,1,91,3,91,93,"New York Times","Democrat" +4,3,8345,"tess",4,0,40,2,60,50,"New York Times","Democrat" +4,3,8356,"tess",1,1,100,2,100,100,"New York Times","Neither" +4,3,8360,"tess",4,0,88,2,12,0,"New York Times","Democrat" +4,3,8371,"tess",1,0,100,3,0,5,"New York Times","Republican" +4,3,8378,"tess",2,1,23,3,23,5,"New York Times","Republican" +4,3,8386,"tess",2,1,74,2,74,82,"New York Times","Republican" +4,3,8397,"tess",1,1,20,3,20,80,"New York Times","Republican" +4,3,8406,"tess",4,0,60,2,40,20,"New York Times","Democrat" +4,3,8432,"tess",1,1,99,2,99,97,"New York Times","Democrat" +4,3,8449,"tess",2,0,NA,3,NA,9,"New York Times","Democrat" +4,3,8466,"tess",4,1,40,2,40,90,"New York Times","Democrat" +4,3,8489,"tess",2,1,98,3,98,99,"New York Times","Democrat" +4,3,8544,"tess",2,1,80,3,80,50,"New York Times","Democrat" +4,3,8545,"tess",1,1,77,3,77,86,"New York Times","Republican" +4,3,8550,"tess",4,1,48,2,48,100,"New York Times","Democrat" +4,3,8568,"tess",3,1,34,2,34,96,"New York Times","Democrat" +4,3,8573,"tess",1,1,61,2,61,48,"New York Times","Democrat" +4,3,8583,"tess",2,0,5,3,95,6,"New York Times","Democrat" +4,3,8600,"tess",2,0,90,2,10,10,"New York Times","Democrat" +4,3,8608,"tess",2,1,80,3,80,97,"New York Times","Republican" +4,3,8619,"tess",3,0,97,2,3,0,"New York Times","Republican" +4,3,8651,"tess",1,0,81,3,19,39,"New York Times","Republican" +4,3,8669,"tess",2,1,0,3,0,70,"New York Times","Democrat" +4,3,8706,"tess",4,1,100,2,100,75,"New York Times","Republican" +4,3,8707,"tess",1,1,73,3,73,96,"New York Times","Republican" +4,3,8709,"tess",2,0,60,2,40,48,"New York Times","Republican" +4,3,8710,"tess",1,1,38,3,38,67,"New York Times","Democrat" +4,3,8713,"tess",2,0,51,3,49,90,"New York Times","Republican" +4,3,8724,"tess",4,1,95,2,95,94,"New York Times","Democrat" +4,3,8746,"tess",2,0,50,2,50,49,"New York Times","Republican" +4,3,8755,"tess",2,0,98,3,2,7,"New York Times","Democrat" +4,3,8814,"tess",2,0,20,2,80,10,"New York Times","Democrat" +4,3,8816,"tess",4,1,80,2,80,80,"New York Times","Democrat" +4,3,8837,"tess",2,1,10,3,10,100,"New York Times","Democrat" +4,3,8866,"tess",1,0,20,2,80,20,"New York Times","Democrat" +4,3,8881,"tess",2,1,0,2,0,100,"New York Times","Democrat" +4,3,8888,"tess",1,0,98,3,2,0,"New York Times","Republican" +4,3,8890,"tess",3,1,99,2,99,94,"New York Times","Republican" +4,3,8892,"tess",1,0,30,2,70,80,"New York Times","Democrat" +4,3,8893,"tess",4,0,80,2,20,50,"New York Times","Democrat" +4,3,8894,"tess",3,1,90,2,90,71,"New York Times","Democrat" +4,3,8925,"tess",4,0,55,2,45,37,"New York Times","Democrat" +4,3,8932,"tess",3,1,41,3,41,100,"New York Times","Democrat" +4,3,8933,"tess",1,1,71,3,71,58,"New York Times","Republican" +4,3,8934,"tess",3,1,99,2,99,99,"New York Times","Democrat" +4,3,8953,"tess",3,0,53,2,47,52,"New York Times","Republican" +4,3,8970,"tess",3,0,94,2,6,90,"New York Times","Republican" +4,3,8973,"tess",3,1,5,2,5,99,"New York Times","Republican" +4,3,8981,"tess",2,0,20,2,80,90,"New York Times","Democrat" +4,3,8990,"tess",1,1,0,2,0,0,"New York Times","Republican" +4,3,8995,"tess",2,0,80,2,20,10,"New York Times","Republican" +4,3,9007,"tess",3,0,21,2,79,79,"New York Times","Democrat" +4,3,9018,"tess",1,1,90,3,90,100,"New York Times","Democrat" +4,3,9057,"tess",1,0,NA,3,NA,49,"New York Times","Republican" +4,3,9065,"tess",1,1,55,2,55,60,"New York Times","Neither" +4,3,9070,"tess",1,1,90,2,90,91,"New York Times","Democrat" +4,3,9074,"tess",3,1,70,3,70,80,"New York Times","Republican" +4,3,9075,"tess",1,0,99,3,1,1,"New York Times","Democrat" +4,3,9105,"tess",4,0,98,2,2,1,"New York Times","Democrat" +4,3,9109,"tess",2,0,41,3,59,8,"New York Times","Democrat" +4,3,9150,"tess",1,1,86,2,86,11,"New York Times","Republican" +4,3,9153,"tess",2,0,98,3,2,3,"New York Times","Democrat" +4,3,9166,"tess",2,1,8,3,8,50,"New York Times","Republican" +4,3,9169,"tess",3,0,10,3,90,40,"New York Times","Republican" +4,3,9198,"tess",2,0,99,2,1,2,"New York Times","Democrat" +4,3,9199,"tess",3,0,50,3,50,44,"New York Times","Republican" +4,3,9230,"tess",2,0,63,3,37,0,"New York Times","Democrat" +4,3,9235,"tess",3,0,60,3,40,14,"New York Times","Democrat" +4,3,9239,"tess",1,0,89,3,11,1,"New York Times","Democrat" +4,3,9245,"tess",3,0,91,3,9,9,"New York Times","Republican" +4,3,9247,"tess",2,1,100,3,100,97,"New York Times","Democrat" +4,3,9269,"tess",3,1,50,2,50,75,"New York Times","Democrat" +4,3,9279,"tess",2,0,41,3,59,30,"New York Times","Democrat" +4,3,9281,"tess",2,1,52,2,52,91,"New York Times","Republican" +4,3,9284,"tess",1,0,50,3,50,19,"New York Times","Republican" +4,3,9297,"tess",3,0,NA,3,NA,NA,"New York Times","Republican" +4,3,9301,"tess",4,1,90,2,90,30,"New York Times","Democrat" +4,3,9302,"tess",4,1,70,2,70,95,"New York Times","Democrat" +4,3,9319,"tess",3,1,99,3,99,50,"New York Times","Democrat" +4,3,9332,"tess",4,1,50,2,50,20,"New York Times","Democrat" +4,3,9342,"tess",3,1,86,3,86,78,"New York Times","Republican" +4,3,9346,"tess",2,0,20,3,80,50,"New York Times","Democrat" +4,3,9366,"tess",4,1,88,2,88,10,"New York Times","Republican" +4,3,9372,"tess",3,0,9,3,91,91,"New York Times","Democrat" +4,3,9395,"tess",1,1,38,2,38,10,"New York Times","Democrat" +4,3,9398,"tess",1,1,42,2,42,52,"New York Times","Republican" +4,3,9412,"tess",1,1,99,3,99,1,"New York Times","Republican" +4,3,9419,"tess",3,0,50,3,50,50,"New York Times","Democrat" +4,3,9422,"tess",3,0,71,3,29,100,"New York Times","Democrat" +4,3,9431,"tess",3,0,90,2,10,10,"New York Times","Democrat" +4,3,9435,"tess",1,1,51,3,51,66,"New York Times","Democrat" +4,3,9443,"tess",1,1,5,2,5,100,"New York Times","Democrat" +4,3,9458,"tess",1,0,31,2,69,3,"New York Times","Republican" +4,3,9465,"tess",3,1,81,2,81,80,"New York Times","Republican" +4,3,9475,"tess",2,0,60,3,40,80,"New York Times","Republican" +4,3,9479,"tess",2,0,10,3,90,3,"New York Times","Democrat" +4,3,9490,"tess",2,1,100,3,100,50,"New York Times","Republican" +4,3,9499,"tess",1,0,40,3,60,0,"New York Times","Democrat" +4,3,9510,"tess",1,1,99,2,99,100,"New York Times","Democrat" +4,3,9512,"tess",4,0,100,2,0,0,"New York Times","Democrat" +4,3,9517,"tess",3,0,49,2,51,94,"New York Times","Neither" +4,3,9551,"tess",3,1,77,2,77,99,"New York Times","Democrat" +4,3,9601,"tess",3,0,90,3,10,20,"New York Times","Republican" +4,3,9603,"tess",1,0,99,2,1,10,"New York Times","Democrat" +4,3,9626,"tess",1,1,20,2,20,80,"New York Times","Democrat" +4,3,9627,"tess",4,1,99,2,99,70,"New York Times","Democrat" +4,3,9642,"tess",3,0,50,2,50,50,"New York Times","Republican" +4,3,9648,"tess",2,0,5,2,95,10,"New York Times","Democrat" +4,3,9650,"tess",3,1,67,3,67,55,"New York Times","Republican" +4,3,9664,"tess",3,0,80,3,20,20,"New York Times","Republican" +4,3,9666,"tess",2,1,3,3,3,2,"New York Times","Republican" +4,3,9679,"tess",3,1,50,2,50,49,"New York Times","Republican" +4,3,9681,"tess",4,1,100,2,100,100,"New York Times","Democrat" +4,3,9692,"tess",2,1,72,2,72,47,"New York Times","Democrat" +4,3,9701,"tess",2,0,21,3,79,15,"New York Times","Democrat" +4,3,9703,"tess",3,1,80,2,80,80,"New York Times","Democrat" +4,3,9731,"tess",1,0,100,2,0,6,"New York Times","Democrat" +4,4,51,"tess",2,0,74,3,26,33,"USA Today","Neither" +4,4,53,"tess",1,0,98,3,2,11,"USA Today","Democrat" +4,4,62,"tess",2,1,0,2,0,5,"USA Today","Democrat" +4,4,64,"tess",4,1,89,2,89,100,"USA Today","Democrat" +4,4,72,"tess",3,1,94,3,94,89,"USA Today","Democrat" +4,4,78,"tess",4,0,93,2,7,31,"USA Today","Democrat" +4,4,80,"tess",3,0,15,3,85,17,"USA Today","Republican" +4,4,90,"tess",1,1,98,3,98,97,"USA Today","Democrat" +4,4,94,"tess",2,0,90,2,10,10,"USA Today","Republican" +4,4,118,"tess",1,0,80,2,20,60,"USA Today","Democrat" +4,4,136,"tess",4,1,99,2,99,70,"USA Today","Democrat" +4,4,140,"tess",3,1,98,3,98,90,"USA Today","Republican" +4,4,151,"tess",1,1,98,3,98,95,"USA Today","Republican" +4,4,165,"tess",2,0,82,2,18,63,"USA Today","Democrat" +4,4,187,"tess",2,1,80,2,80,80,"USA Today","Republican" +4,4,188,"tess",1,0,57,3,43,36,"USA Today","Democrat" +4,4,189,"tess",1,1,20,3,20,91,"USA Today","Republican" +4,4,196,"tess",1,1,NA,3,NA,72,"USA Today","Democrat" +4,4,207,"tess",2,0,51,2,49,1,"USA Today","Republican" +4,4,221,"tess",1,1,100,3,100,100,"USA Today","Democrat" +4,4,224,"tess",3,1,79,2,79,21,"USA Today","Democrat" +4,4,262,"tess",1,0,99,2,1,99,"USA Today","Democrat" +4,4,266,"tess",2,0,97,3,3,1,"USA Today","Democrat" +4,4,296,"tess",2,0,95,2,5,12,"USA Today","Republican" +4,4,301,"tess",4,0,70,2,30,20,"USA Today","Democrat" +4,4,308,"tess",1,0,79,2,21,15,"USA Today","Democrat" +4,4,315,"tess",4,0,40,2,60,0,"USA Today","Democrat" +4,4,347,"tess",3,0,10,2,90,89,"USA Today","Democrat" +4,4,372,"tess",2,1,30,2,30,30,"USA Today","Republican" +4,4,379,"tess",2,1,99,2,99,99,"USA Today","Democrat" +4,4,389,"tess",2,0,100,3,0,50,"USA Today","Democrat" +4,4,431,"tess",2,0,NA,2,NA,36,"USA Today","Democrat" +4,4,440,"tess",2,1,100,2,100,98,"USA Today","Democrat" +4,4,443,"tess",2,0,51,2,49,3,"USA Today","Republican" +4,4,461,"tess",2,1,21,2,21,11,"USA Today","Republican" +4,4,478,"tess",3,0,57,3,43,40,"USA Today","Democrat" +4,4,482,"tess",2,0,70,2,30,39,"USA Today","Democrat" +4,4,491,"tess",1,0,98,2,2,1,"USA Today","Neither" +4,4,502,"tess",3,0,70,3,30,50,"USA Today","Democrat" +4,4,503,"tess",3,0,NA,3,NA,0,"USA Today","Republican" +4,4,516,"tess",1,1,3,2,3,3,"USA Today","Democrat" +4,4,522,"tess",4,0,100,2,0,100,"USA Today","Democrat" +4,4,541,"tess",2,1,99,3,99,99,"USA Today","Democrat" +4,4,549,"tess",3,0,19,2,81,81,"USA Today","Democrat" +4,4,550,"tess",4,1,46,2,46,69,"USA Today","Republican" +4,4,573,"tess",3,0,25,3,75,74,"USA Today","Democrat" +4,4,574,"tess",1,0,40,3,60,29,"USA Today","Democrat" +4,4,584,"tess",1,0,33,3,67,44,"USA Today","Democrat" +4,4,591,"tess",1,0,8,3,92,50,"USA Today","Democrat" +4,4,602,"tess",3,1,99,3,99,17,"USA Today","Democrat" +4,4,603,"tess",2,0,90,2,10,10,"USA Today","Democrat" +4,4,622,"tess",3,1,15,3,15,28,"USA Today","Democrat" +4,4,675,"tess",4,1,98,2,98,98,"USA Today","Democrat" +4,4,680,"tess",2,0,66,3,34,21,"USA Today","Republican" +4,4,702,"tess",3,1,9,2,9,100,"USA Today","Democrat" +4,4,711,"tess",1,1,72,3,72,28,"USA Today","Democrat" +4,4,717,"tess",2,0,40,3,60,10,"USA Today","Republican" +4,4,728,"tess",2,0,90,2,10,90,"USA Today","Democrat" +4,4,752,"tess",1,1,30,3,30,43,"USA Today","Democrat" +4,4,766,"tess",3,1,16,3,16,97,"USA Today","Republican" +4,4,773,"tess",3,0,56,3,44,41,"USA Today","Democrat" +4,4,803,"tess",1,1,71,2,71,70,"USA Today","Democrat" +4,4,845,"tess",4,0,100,2,0,0,"USA Today","Republican" +4,4,847,"tess",1,0,81,2,19,11,"USA Today","Democrat" +4,4,852,"tess",1,0,73,2,27,50,"USA Today","Democrat" +4,4,878,"tess",4,0,94,2,6,3,"USA Today","Democrat" +4,4,883,"tess",2,0,95,2,5,6,"USA Today","Democrat" +4,4,898,"tess",3,1,53,3,53,54,"USA Today","Republican" +4,4,919,"tess",2,1,43,3,43,2,"USA Today","Democrat" +4,4,928,"tess",2,0,50,2,50,25,"USA Today","Republican" +4,4,943,"tess",2,1,10,3,10,11,"USA Today","Republican" +4,4,952,"tess",2,0,10,3,90,96,"USA Today","Republican" +4,4,958,"tess",3,0,100,2,0,0,"USA Today","Democrat" +4,4,978,"tess",2,0,56,3,44,45,"USA Today","Democrat" +4,4,990,"tess",2,0,69,2,31,19,"USA Today","Republican" +4,4,997,"tess",2,1,100,2,100,100,"USA Today","Democrat" +4,4,1036,"tess",3,0,1,2,99,99,"USA Today","Republican" +4,4,1047,"tess",3,1,38,3,38,33,"USA Today","Republican" +4,4,1062,"tess",3,1,74,3,74,28,"USA Today","Democrat" +4,4,1066,"tess",2,0,87,2,13,23,"USA Today","Democrat" +4,4,1083,"tess",2,1,97,2,97,70,"USA Today","Democrat" +4,4,1084,"tess",2,1,84,3,84,94,"USA Today","Republican" +4,4,1096,"tess",3,1,100,2,100,100,"USA Today","Democrat" +4,4,1097,"tess",1,0,7,2,93,7,"USA Today","Republican" +4,4,1100,"tess",3,1,9,3,9,9,"USA Today","Republican" +4,4,1104,"tess",1,1,90,3,90,68,"USA Today","Democrat" +4,4,1114,"tess",1,1,50,2,50,78,"USA Today","Neither" +4,4,1147,"tess",2,1,4,3,4,70,"USA Today","Democrat" +4,4,1148,"tess",4,0,94,2,6,13,"USA Today","Republican" +4,4,1150,"tess",3,1,51,3,51,47,"USA Today","Democrat" +4,4,1172,"tess",3,1,37,3,37,50,"USA Today","Republican" +4,4,1192,"tess",2,1,95,2,95,80,"USA Today","Democrat" +4,4,1193,"tess",2,0,98,3,2,2,"USA Today","Democrat" +4,4,1220,"tess",3,1,100,3,100,100,"USA Today","Democrat" +4,4,1235,"tess",4,1,40,2,40,60,"USA Today","Republican" +4,4,1246,"tess",2,0,20,3,80,91,"USA Today","Republican" +4,4,1265,"tess",1,0,100,2,0,28,"USA Today","Republican" +4,4,1277,"tess",3,1,99,2,99,98,"USA Today","Republican" +4,4,1282,"tess",3,1,66,2,66,75,"USA Today","Republican" +4,4,1311,"tess",2,1,89,3,89,90,"USA Today","Democrat" +4,4,1321,"tess",2,1,90,2,90,91,"USA Today","Republican" +4,4,1330,"tess",2,0,100,2,0,0,"USA Today","Republican" +4,4,1376,"tess",2,0,21,3,79,6,"USA Today","Democrat" +4,4,1382,"tess",2,1,100,2,100,51,"USA Today","Republican" +4,4,1402,"tess",2,0,4,2,96,0,"USA Today","Republican" +4,4,1408,"tess",2,1,100,3,100,100,"USA Today","Democrat" +4,4,1418,"tess",1,1,75,2,75,84,"USA Today","Republican" +4,4,1454,"tess",2,0,100,3,0,5,"USA Today","Democrat" +4,4,1461,"tess",3,1,49,3,49,86,"USA Today","Democrat" +4,4,1464,"tess",4,0,74,2,26,11,"USA Today","Democrat" +4,4,1486,"tess",2,0,91,3,9,13,"USA Today","Democrat" +4,4,1491,"tess",3,0,1,3,99,1,"USA Today","Republican" +4,4,1507,"tess",3,1,50,2,50,100,"USA Today","Democrat" +4,4,1510,"tess",1,1,51,3,51,88,"USA Today","Republican" +4,4,1511,"tess",1,0,91,3,9,10,"USA Today","Republican" +4,4,1530,"tess",2,1,95,3,95,95,"USA Today","Republican" +4,4,1551,"tess",4,1,82,2,82,100,"USA Today","Republican" +4,4,1552,"tess",1,0,80,3,20,23,"USA Today","Republican" +4,4,1556,"tess",3,0,60,3,40,40,"USA Today","Democrat" +4,4,1600,"tess",2,1,1,3,1,1,"USA Today","Republican" +4,4,1644,"tess",3,0,40,2,60,57,"USA Today","Democrat" +4,4,1654,"tess",3,1,83,2,83,82,"USA Today","Democrat" +4,4,1657,"tess",3,1,80,2,80,80,"USA Today","Republican" +4,4,1668,"tess",2,1,69,3,69,64,"USA Today","Democrat" +4,4,1669,"tess",2,1,1,3,1,31,"USA Today","Democrat" +4,4,1673,"tess",2,0,50,2,50,50,"USA Today","Democrat" +4,4,1674,"tess",3,0,31,3,69,61,"USA Today","Republican" +4,4,1689,"tess",1,0,94,3,6,9,"USA Today","Democrat" +4,4,1726,"tess",2,0,40,2,60,10,"USA Today","Democrat" +4,4,1756,"tess",4,0,97,2,3,2,"USA Today","Democrat" +4,4,1799,"tess",1,0,21,2,79,38,"USA Today","Republican" +4,4,1815,"tess",1,1,60,2,60,42,"USA Today","Republican" +4,4,1824,"tess",1,1,1,3,1,1,"USA Today","Republican" +4,4,1834,"tess",2,0,100,2,0,96,"USA Today","Neither" +4,4,1841,"tess",2,0,73,2,27,28,"USA Today","Republican" +4,4,1851,"tess",1,0,86,2,14,13,"USA Today","Democrat" +4,4,1856,"tess",4,0,68,2,32,33,"USA Today","Republican" +4,4,1857,"tess",1,0,100,3,0,0,"USA Today","Democrat" +4,4,1900,"tess",3,1,90,2,90,80,"USA Today","Republican" +4,4,1910,"tess",3,0,0,2,100,1,"USA Today","Republican" +4,4,1940,"tess",4,0,50,2,50,50,"USA Today","Democrat" +4,4,1960,"tess",2,1,100,3,100,100,"USA Today","Republican" +4,4,1966,"tess",3,0,33,2,67,10,"USA Today","Republican" +4,4,1976,"tess",1,1,89,3,89,70,"USA Today","Republican" +4,4,1994,"tess",4,0,80,2,20,2,"USA Today","Republican" +4,4,2033,"tess",2,0,100,3,0,10,"USA Today","Democrat" +4,4,2049,"tess",3,0,91,3,9,30,"USA Today","Democrat" +4,4,2056,"tess",3,1,NA,2,NA,67,"USA Today","Republican" +4,4,2072,"tess",2,0,80,3,20,72,"USA Today","Democrat" +4,4,2080,"tess",3,0,81,2,19,21,"USA Today","Democrat" +4,4,2097,"tess",3,1,96,3,96,91,"USA Today","Republican" +4,4,2104,"tess",3,0,74,3,26,1,"USA Today","Republican" +4,4,2187,"tess",3,1,49,2,49,51,"USA Today","Democrat" +4,4,2195,"tess",1,1,0,2,0,50,"USA Today","Republican" +4,4,2197,"tess",3,1,100,3,100,91,"USA Today","Republican" +4,4,2211,"tess",3,0,21,2,79,11,"USA Today","Republican" +4,4,2213,"tess",2,1,99,2,99,60,"USA Today","Neither" +4,4,2215,"tess",2,0,0,3,100,10,"USA Today","Republican" +4,4,2218,"tess",1,0,91,2,9,6,"USA Today","Republican" +4,4,2225,"tess",2,1,99,3,99,100,"USA Today","Republican" +4,4,2228,"tess",3,0,89,2,11,6,"USA Today","Democrat" +4,4,2230,"tess",2,1,11,2,11,97,"USA Today","Republican" +4,4,2242,"tess",2,0,77,3,23,23,"USA Today","Republican" +4,4,2253,"tess",2,1,99,2,99,98,"USA Today","Democrat" +4,4,2271,"tess",2,0,59,2,41,14,"USA Today","Democrat" +4,4,2278,"tess",2,0,50,2,50,20,"USA Today","Neither" +4,4,2283,"tess",3,0,80,3,20,20,"USA Today","Democrat" +4,4,2308,"tess",3,0,97,3,3,88,"USA Today","Democrat" +4,4,2313,"tess",2,0,50,2,50,50,"USA Today","Democrat" +4,4,2322,"tess",3,1,65,3,65,65,"USA Today","Republican" +4,4,2337,"tess",3,0,80,2,20,90,"USA Today","Democrat" +4,4,2353,"tess",1,1,100,3,100,100,"USA Today","Democrat" +4,4,2378,"tess",1,0,100,3,0,42,"USA Today","Democrat" +4,4,2382,"tess",1,1,70,3,70,100,"USA Today","Democrat" +4,4,2383,"tess",2,1,50,2,50,20,"USA Today","Republican" +4,4,2398,"tess",4,1,80,2,80,80,"USA Today","Democrat" +4,4,2405,"tess",2,0,81,2,19,44,"USA Today","Democrat" +4,4,2424,"tess",1,0,60,2,40,20,"USA Today","Republican" +4,4,2459,"tess",1,0,90,3,10,20,"USA Today","Democrat" +4,4,2460,"tess",1,1,90,2,90,81,"USA Today","Democrat" +4,4,2468,"tess",4,1,84,2,84,84,"USA Today","Democrat" +4,4,2483,"tess",3,1,100,2,100,100,"USA Today","Democrat" +4,4,2485,"tess",2,0,90,3,10,80,"USA Today","Democrat" +4,4,2488,"tess",3,1,22,2,22,38,"USA Today","Democrat" +4,4,2498,"tess",2,0,89,2,11,14,"USA Today","Republican" +4,4,2512,"tess",4,1,11,2,11,65,"USA Today","Republican" +4,4,2514,"tess",1,0,70,2,30,30,"USA Today","Democrat" +4,4,2528,"tess",4,0,50,2,50,30,"USA Today","Democrat" +4,4,2532,"tess",2,0,10,2,90,90,"USA Today","Democrat" +4,4,2536,"tess",2,1,90,2,90,90,"USA Today","Democrat" +4,4,2545,"tess",2,1,100,2,100,98,"USA Today","Democrat" +4,4,2578,"tess",1,0,25,2,75,1,"USA Today","Republican" +4,4,2623,"tess",1,0,74,2,26,5,"USA Today","Democrat" +4,4,2630,"tess",2,1,82,2,82,80,"USA Today","Republican" +4,4,2659,"tess",1,1,30,2,30,33,"USA Today","Republican" +4,4,2670,"tess",2,1,30,2,30,40,"USA Today","Neither" +4,4,2698,"tess",3,1,40,2,40,31,"USA Today","Republican" +4,4,2700,"tess",1,1,65,3,65,30,"USA Today","Democrat" +4,4,2715,"tess",2,0,99,3,1,14,"USA Today","Republican" +4,4,2722,"tess",3,0,99,2,1,52,"USA Today","Democrat" +4,4,2741,"tess",3,1,100,3,100,95,"USA Today","Democrat" +4,4,2773,"tess",3,1,29,2,29,10,"USA Today","Republican" +4,4,2774,"tess",3,1,15,3,15,92,"USA Today","Republican" +4,4,2797,"tess",2,0,11,2,89,88,"USA Today","Democrat" +4,4,2808,"tess",3,0,49,3,51,8,"USA Today","Democrat" +4,4,2818,"tess",3,0,90,2,10,20,"USA Today","Democrat" +4,4,2827,"tess",3,0,99,3,1,1,"USA Today","Democrat" +4,4,2828,"tess",1,1,83,2,83,90,"USA Today","Republican" +4,4,2863,"tess",2,1,65,3,65,60,"USA Today","Republican" +4,4,2885,"tess",2,1,95,3,95,95,"USA Today","Republican" +4,4,2893,"tess",4,0,10,2,90,10,"USA Today","Republican" +4,4,2902,"tess",1,1,70,3,70,90,"USA Today","Democrat" +4,4,2906,"tess",1,0,95,2,5,20,"USA Today","Democrat" +4,4,2934,"tess",2,1,90,2,90,10,"USA Today","Democrat" +4,4,2936,"tess",2,1,89,2,89,92,"USA Today","Democrat" +4,4,2938,"tess",4,0,100,2,0,0,"USA Today","Republican" +4,4,2953,"tess",2,1,91,3,91,96,"USA Today","Neither" +4,4,2979,"tess",4,0,91,2,9,3,"USA Today","Democrat" +4,4,2998,"tess",4,0,74,2,26,14,"USA Today","Republican" +4,4,3011,"tess",1,0,30,3,70,0,"USA Today","Republican" +4,4,3020,"tess",2,0,92,2,8,9,"USA Today","Democrat" +4,4,3028,"tess",2,1,69,2,69,80,"USA Today","Democrat" +4,4,3043,"tess",4,1,94,2,94,83,"USA Today","Democrat" +4,4,3048,"tess",2,0,100,3,0,0,"USA Today","Democrat" +4,4,3062,"tess",4,0,90,2,10,35,"USA Today","Neither" +4,4,3072,"tess",2,1,50,3,50,50,"USA Today","Republican" +4,4,3076,"tess",1,1,3,3,3,0,"USA Today","Republican" +4,4,3109,"tess",1,1,NA,3,NA,NA,"USA Today","Neither" +4,4,3115,"tess",1,1,50,3,50,84,"USA Today","Neither" +4,4,3125,"tess",3,1,97,3,97,66,"USA Today","Democrat" +4,4,3128,"tess",4,1,80,2,80,80,"USA Today","Republican" +4,4,3137,"tess",1,0,95,3,5,5,"USA Today","Democrat" +4,4,3155,"tess",2,0,100,2,0,0,"USA Today","Neither" +4,4,3156,"tess",4,0,90,2,10,20,"USA Today","Democrat" +4,4,3170,"tess",3,0,51,2,49,40,"USA Today","Democrat" +4,4,3186,"tess",4,0,30,2,70,19,"USA Today","Democrat" +4,4,3188,"tess",1,0,19,3,81,8,"USA Today","Democrat" +4,4,3197,"tess",1,1,60,2,60,80,"USA Today","Democrat" +4,4,3205,"tess",3,1,51,3,51,49,"USA Today","Republican" +4,4,3206,"tess",3,0,41,3,59,40,"USA Today","Democrat" +4,4,3207,"tess",1,1,34,2,34,80,"USA Today","Republican" +4,4,3223,"tess",3,1,99,2,99,100,"USA Today","Democrat" +4,4,3230,"tess",4,1,100,2,100,100,"USA Today","Republican" +4,4,3234,"tess",3,1,74,3,74,70,"USA Today","Republican" +4,4,3244,"tess",3,1,24,3,24,76,"USA Today","Republican" +4,4,3263,"tess",2,1,82,3,82,80,"USA Today","Democrat" +4,4,3281,"tess",1,0,90,3,10,10,"USA Today","Democrat" +4,4,3304,"tess",3,0,41,2,59,40,"USA Today","Republican" +4,4,3333,"tess",3,1,20,3,20,91,"USA Today","Democrat" +4,4,3346,"tess",2,0,70,3,30,30,"USA Today","Republican" +4,4,3356,"tess",3,1,100,3,100,91,"USA Today","Democrat" +4,4,3364,"tess",4,1,99,2,99,96,"USA Today","Democrat" +4,4,3407,"tess",3,0,60,2,40,30,"USA Today","Republican" +4,4,3412,"tess",1,0,78,3,22,100,"USA Today","Democrat" +4,4,3425,"tess",1,0,72,2,28,29,"USA Today","Republican" +4,4,3426,"tess",3,1,100,3,100,100,"USA Today","Democrat" +4,4,3430,"tess",3,1,98,3,98,40,"USA Today","Democrat" +4,4,3435,"tess",2,0,80,2,20,10,"USA Today","Republican" +4,4,3452,"tess",1,1,95,2,95,97,"USA Today","Republican" +4,4,3454,"tess",3,1,99,3,99,99,"USA Today","Democrat" +4,4,3464,"tess",3,1,60,2,60,60,"USA Today","Republican" +4,4,3468,"tess",2,0,55,3,45,39,"USA Today","Democrat" +4,4,3477,"tess",2,0,98,3,2,23,"USA Today","Democrat" +4,4,3505,"tess",3,1,99,3,99,99,"USA Today","Republican" +4,4,3517,"tess",1,1,20,2,20,94,"USA Today","Republican" +4,4,3522,"tess",2,0,93,3,7,89,"USA Today","Republican" +4,4,3536,"tess",3,0,100,3,0,4,"USA Today","Republican" +4,4,3544,"tess",4,1,80,2,80,64,"USA Today","Neither" +4,4,3548,"tess",3,0,80,2,20,80,"USA Today","Republican" +4,4,3554,"tess",2,0,86,2,14,17,"USA Today","Democrat" +4,4,3562,"tess",1,1,60,3,60,49,"USA Today","Democrat" +4,4,3564,"tess",1,0,10,2,90,2,"USA Today","Republican" +4,4,3568,"tess",2,0,99,3,1,20,"USA Today","Democrat" +4,4,3573,"tess",2,0,74,2,26,16,"USA Today","Democrat" +4,4,3587,"tess",4,1,10,2,10,10,"USA Today","Democrat" +4,4,3589,"tess",1,0,99,3,1,2,"USA Today","Democrat" +4,4,3610,"tess",4,1,49,2,49,70,"USA Today","Democrat" +4,4,3631,"tess",2,0,0,2,100,90,"USA Today","Democrat" +4,4,3634,"tess",2,1,39,2,39,84,"USA Today","Democrat" +4,4,3645,"tess",2,0,81,2,19,12,"USA Today","Republican" +4,4,3656,"tess",1,1,99,3,99,10,"USA Today","Democrat" +4,4,3676,"tess",1,1,0,3,0,10,"USA Today","Republican" +4,4,3678,"tess",4,1,50,2,50,80,"USA Today","Republican" +4,4,3699,"tess",1,1,60,3,60,87,"USA Today","Republican" +4,4,3704,"tess",3,1,100,2,100,100,"USA Today","Republican" +4,4,3722,"tess",2,1,62,2,62,29,"USA Today","Democrat" +4,4,3725,"tess",3,1,90,2,90,47,"USA Today","Republican" +4,4,3745,"tess",1,1,91,3,91,98,"USA Today","Democrat" +4,4,3759,"tess",2,0,39,2,61,50,"USA Today","Republican" +4,4,3787,"tess",2,0,100,3,0,4,"USA Today","Democrat" +4,4,3793,"tess",1,0,22,3,78,26,"USA Today","Republican" +4,4,3795,"tess",2,0,97,3,3,86,"USA Today","Democrat" +4,4,3799,"tess",4,0,30,2,70,79,"USA Today","Republican" +4,4,3806,"tess",2,1,95,3,95,95,"USA Today","Republican" +4,4,3819,"tess",1,1,42,3,42,60,"USA Today","Republican" +4,4,3851,"tess",3,1,82,3,82,69,"USA Today","Republican" +4,4,3904,"tess",1,0,100,2,0,0,"USA Today","Democrat" +4,4,3909,"tess",3,1,79,2,79,70,"USA Today","Democrat" +4,4,3919,"tess",3,0,100,2,0,0,"USA Today","Democrat" +4,4,3920,"tess",2,1,97,2,97,95,"USA Today","Democrat" +4,4,3946,"tess",1,1,90,2,90,90,"USA Today","Democrat" +4,4,3958,"tess",1,1,50,3,50,70,"USA Today","Republican" +4,4,3961,"tess",2,0,96,3,4,94,"USA Today","Democrat" +4,4,3965,"tess",3,0,80,2,20,25,"USA Today","Democrat" +4,4,3966,"tess",1,0,96,3,4,20,"USA Today","Democrat" +4,4,4015,"tess",3,0,100,3,0,0,"USA Today","Democrat" +4,4,4027,"tess",1,1,19,2,19,19,"USA Today","Republican" +4,4,4039,"tess",2,0,99,3,1,40,"USA Today","Democrat" +4,4,4043,"tess",1,1,89,3,89,14,"USA Today","Republican" +4,4,4046,"tess",3,0,84,3,16,26,"USA Today","Democrat" +4,4,4072,"tess",3,1,77,2,77,83,"USA Today","Democrat" +4,4,4120,"tess",3,0,51,2,49,50,"USA Today","Republican" +4,4,4141,"tess",1,0,86,2,14,37,"USA Today","Democrat" +4,4,4149,"tess",2,0,95,3,5,0,"USA Today","Republican" +4,4,4160,"tess",2,0,35,2,65,75,"USA Today","Democrat" +4,4,4209,"tess",2,0,96,2,4,32,"USA Today","Democrat" +4,4,4210,"tess",1,0,80,2,20,20,"USA Today","Republican" +4,4,4216,"tess",2,1,35,2,35,31,"USA Today","Democrat" +4,4,4218,"tess",3,1,90,3,90,94,"USA Today","Democrat" +4,4,4222,"tess",1,0,50,2,50,36,"USA Today","Democrat" +4,4,4237,"tess",1,1,99,3,99,99,"USA Today","Democrat" +4,4,4238,"tess",2,0,100,3,0,35,"USA Today","Democrat" +4,4,4252,"tess",3,0,76,3,24,30,"USA Today","Republican" +4,4,4278,"tess",3,0,99,2,1,1,"USA Today","Republican" +4,4,4291,"tess",2,1,NA,2,NA,80,"USA Today","Democrat" +4,4,4298,"tess",4,0,90,2,10,10,"USA Today","Democrat" +4,4,4307,"tess",2,1,60,3,60,60,"USA Today","Republican" +4,4,4325,"tess",2,1,100,2,100,100,"USA Today","Democrat" +4,4,4326,"tess",4,0,56,2,44,44,"USA Today","Democrat" +4,4,4331,"tess",1,1,40,3,40,50,"USA Today","Democrat" +4,4,4365,"tess",3,1,68,2,68,60,"USA Today","Republican" +4,4,4390,"tess",2,0,76,3,24,25,"USA Today","Democrat" +4,4,4416,"tess",3,1,19,2,19,70,"USA Today","Republican" +4,4,4427,"tess",2,0,1,3,99,99,"USA Today","Democrat" +4,4,4441,"tess",3,1,100,2,100,100,"USA Today","Democrat" +4,4,4451,"tess",4,1,100,2,100,97,"USA Today","Republican" +4,4,4457,"tess",1,0,100,2,0,20,"USA Today","Democrat" +4,4,4458,"tess",2,0,9,3,91,76,"USA Today","Republican" +4,4,4470,"tess",2,1,97,2,97,94,"USA Today","Democrat" +4,4,4475,"tess",3,1,89,3,89,90,"USA Today","Democrat" +4,4,4480,"tess",1,1,100,2,100,89,"USA Today","Democrat" +4,4,4484,"tess",3,0,94,2,6,1,"USA Today","Democrat" +4,4,4486,"tess",1,1,80,2,80,50,"USA Today","Republican" +4,4,4512,"tess",2,0,66,2,34,6,"USA Today","Democrat" +4,4,4523,"tess",2,0,28,2,72,39,"USA Today","Republican" +4,4,4548,"tess",3,0,50,2,50,10,"USA Today","Republican" +4,4,4574,"tess",3,1,60,2,60,50,"USA Today","Democrat" +4,4,4581,"tess",2,0,87,2,13,14,"USA Today","Democrat" +4,4,4627,"tess",1,1,1,2,1,4,"USA Today","Democrat" +4,4,4628,"tess",2,1,50,2,50,50,"USA Today","Democrat" +4,4,4632,"tess",2,0,86,3,14,10,"USA Today","Democrat" +4,4,4642,"tess",2,0,30,3,70,69,"USA Today","Democrat" +4,4,4656,"tess",2,0,56,3,44,45,"USA Today","Democrat" +4,4,4674,"tess",1,1,18,2,18,100,"USA Today","Republican" +4,4,4691,"tess",2,1,100,3,100,97,"USA Today","Democrat" +4,4,4722,"tess",4,1,90,2,90,12,"USA Today","Democrat" +4,4,4780,"tess",3,0,21,3,79,13,"USA Today","Republican" +4,4,4782,"tess",2,0,NA,2,NA,NA,"USA Today","Democrat" +4,4,4793,"tess",1,1,100,3,100,100,"USA Today","Democrat" +4,4,4807,"tess",1,1,98,3,98,98,"USA Today","Democrat" +4,4,4813,"tess",2,0,93,3,7,8,"USA Today","Democrat" +4,4,4816,"tess",3,1,95,2,95,97,"USA Today","Democrat" +4,4,4820,"tess",3,1,50,2,50,50,"USA Today","Republican" +4,4,4841,"tess",3,0,99,3,1,2,"USA Today","Democrat" +4,4,4903,"tess",1,1,70,2,70,71,"USA Today","Democrat" +4,4,4914,"tess",2,0,30,3,70,21,"USA Today","Democrat" +4,4,4930,"tess",3,0,100,3,0,49,"USA Today","Democrat" +4,4,4964,"tess",2,0,30,3,70,20,"USA Today","Republican" +4,4,4990,"tess",1,1,70,3,70,80,"USA Today","Republican" +4,4,4998,"tess",1,1,48,3,48,86,"USA Today","Democrat" +4,4,5003,"tess",2,0,80,2,20,25,"USA Today","Republican" +4,4,5004,"tess",4,0,23,2,77,2,"USA Today","Democrat" +4,4,5027,"tess",3,1,5,2,5,73,"USA Today","Republican" +4,4,5055,"tess",3,0,82,3,18,0,"USA Today","Republican" +4,4,5068,"tess",2,1,60,3,60,50,"USA Today","Democrat" +4,4,5086,"tess",4,0,90,2,10,1,"USA Today","Neither" +4,4,5092,"tess",1,0,10,3,90,69,"USA Today","Republican" +4,4,5101,"tess",1,1,99,3,99,33,"USA Today","Democrat" +4,4,5114,"tess",3,1,48,3,48,67,"USA Today","Democrat" +4,4,5116,"tess",3,1,100,3,100,100,"USA Today","Republican" +4,4,5131,"tess",2,1,51,3,51,73,"USA Today","Democrat" +4,4,5132,"tess",1,1,48,2,48,51,"USA Today","Republican" +4,4,5144,"tess",3,1,97,2,97,51,"USA Today","Democrat" +4,4,5147,"tess",2,1,35,2,35,43,"USA Today","Republican" +4,4,5186,"tess",4,1,98,2,98,97,"USA Today","Republican" +4,4,5192,"tess",4,1,81,2,81,96,"USA Today","Democrat" +4,4,5195,"tess",3,0,100,3,0,0,"USA Today","Democrat" +4,4,5222,"tess",3,0,98,2,2,50,"USA Today","Democrat" +4,4,5225,"tess",3,1,68,3,68,54,"USA Today","Democrat" +4,4,5228,"tess",2,0,91,2,9,9,"USA Today","Democrat" +4,4,5275,"tess",2,1,100,3,100,23,"USA Today","Democrat" +4,4,5279,"tess",3,0,100,3,0,0,"USA Today","Democrat" +4,4,5284,"tess",3,1,94,2,94,4,"USA Today","Democrat" +4,4,5288,"tess",1,0,99,3,1,8,"USA Today","Democrat" +4,4,5290,"tess",3,1,50,2,50,86,"USA Today","Republican" +4,4,5299,"tess",2,0,61,3,39,37,"USA Today","Democrat" +4,4,5301,"tess",4,0,50,2,50,2,"USA Today","Democrat" +4,4,5311,"tess",1,0,95,3,5,3,"USA Today","Republican" +4,4,5325,"tess",1,0,91,3,9,15,"USA Today","Democrat" +4,4,5326,"tess",1,1,59,3,59,90,"USA Today","Democrat" +4,4,5327,"tess",2,0,62,3,38,93,"USA Today","Republican" +4,4,5378,"tess",2,0,95,3,5,30,"USA Today","Democrat" +4,4,5385,"tess",4,1,86,2,86,96,"USA Today","Democrat" +4,4,5386,"tess",2,0,0,3,100,100,"USA Today","Republican" +4,4,5388,"tess",2,1,26,3,26,60,"USA Today","Republican" +4,4,5392,"tess",2,1,99,2,99,3,"USA Today","Democrat" +4,4,5393,"tess",2,0,80,3,20,37,"USA Today","Republican" +4,4,5412,"tess",2,0,55,3,45,13,"USA Today","Republican" +4,4,5416,"tess",2,0,50,3,50,50,"USA Today","Democrat" +4,4,5419,"tess",3,0,89,2,11,100,"USA Today","Republican" +4,4,5430,"tess",2,1,100,3,100,100,"USA Today","Democrat" +4,4,5462,"tess",1,0,59,3,41,30,"USA Today","Republican" +4,4,5475,"tess",3,1,99,3,99,1,"USA Today","Democrat" +4,4,5490,"tess",1,0,20,2,80,30,"USA Today","Republican" +4,4,5509,"tess",1,1,88,2,88,86,"USA Today","Democrat" +4,4,5518,"tess",3,1,50,3,50,50,"USA Today","Republican" +4,4,5523,"tess",2,0,99,3,1,1,"USA Today","Democrat" +4,4,5536,"tess",3,0,59,2,41,18,"USA Today","Democrat" +4,4,5540,"tess",4,0,97,2,3,1,"USA Today","Democrat" +4,4,5551,"tess",4,1,86,2,86,90,"USA Today","Republican" +4,4,5579,"tess",1,0,26,3,74,12,"USA Today","Republican" +4,4,5581,"tess",1,0,10,3,90,10,"USA Today","Democrat" +4,4,5584,"tess",3,0,71,3,29,19,"USA Today","Democrat" +4,4,5586,"tess",1,1,100,2,100,98,"USA Today","Democrat" +4,4,5590,"tess",1,1,100,3,100,100,"USA Today","Democrat" +4,4,5593,"tess",2,0,80,2,20,50,"USA Today","Republican" +4,4,5594,"tess",1,1,74,2,74,78,"USA Today","Republican" +4,4,5595,"tess",1,1,0,2,0,0,"USA Today","Republican" +4,4,5597,"tess",4,0,94,2,6,20,"USA Today","Republican" +4,4,5613,"tess",3,1,76,3,76,35,"USA Today","Republican" +4,4,5615,"tess",1,0,50,2,50,50,"USA Today","Democrat" +4,4,5617,"tess",3,0,100,2,0,5,"USA Today","Democrat" +4,4,5620,"tess",2,0,90,2,10,79,"USA Today","Democrat" +4,4,5621,"tess",3,0,98,2,2,1,"USA Today","Democrat" +4,4,5633,"tess",2,0,100,3,0,0,"USA Today","Democrat" +4,4,5654,"tess",2,1,52,3,52,31,"USA Today","Democrat" +4,4,5677,"tess",1,0,87,3,13,27,"USA Today","Republican" +4,4,5679,"tess",2,0,73,2,27,65,"USA Today","Democrat" +4,4,5691,"tess",2,0,37,2,63,0,"USA Today","Democrat" +4,4,5706,"tess",1,0,64,2,36,70,"USA Today","Republican" +4,4,5715,"tess",2,0,71,2,29,10,"USA Today","Republican" +4,4,5725,"tess",3,1,99,2,99,99,"USA Today","Republican" +4,4,5730,"tess",1,0,25,3,75,25,"USA Today","Republican" +4,4,5740,"tess",2,1,0,3,0,0,"USA Today","Democrat" +4,4,5743,"tess",3,0,70,3,30,30,"USA Today","Republican" +4,4,5744,"tess",1,0,80,2,20,10,"USA Today","Democrat" +4,4,5752,"tess",4,0,79,2,21,40,"USA Today","Democrat" +4,4,5757,"tess",1,0,33,3,67,27,"USA Today","Republican" +4,4,5763,"tess",2,0,55,3,45,24,"USA Today","Democrat" +4,4,5772,"tess",2,0,80,2,20,29,"USA Today","Democrat" +4,4,5787,"tess",1,1,97,3,97,80,"USA Today","Republican" +4,4,5804,"tess",3,0,30,3,70,49,"USA Today","Republican" +4,4,5810,"tess",2,0,60,3,40,19,"USA Today","Democrat" +4,4,5820,"tess",1,0,99,3,1,7,"USA Today","Democrat" +4,4,5826,"tess",1,1,76,3,76,100,"USA Today","Republican" +4,4,5844,"tess",4,0,99,2,1,1,"USA Today","Democrat" +4,4,5873,"tess",1,0,20,2,80,10,"USA Today","Democrat" +4,4,5874,"tess",3,1,50,3,50,39,"USA Today","Democrat" +4,4,5884,"tess",3,0,20,2,80,50,"USA Today","Democrat" +4,4,5885,"tess",2,0,51,2,49,62,"USA Today","Republican" +4,4,5886,"tess",1,1,10,2,10,94,"USA Today","Republican" +4,4,5901,"tess",1,1,90,2,90,90,"USA Today","Democrat" +4,4,5906,"tess",1,0,95,3,5,2,"USA Today","Democrat" +4,4,5920,"tess",3,0,41,2,59,20,"USA Today","Republican" +4,4,5931,"tess",4,0,8,2,92,98,"USA Today","Democrat" +4,4,5954,"tess",2,0,50,2,50,40,"USA Today","Democrat" +4,4,5978,"tess",4,0,91,2,9,8,"USA Today","Democrat" +4,4,5982,"tess",2,1,98,3,98,2,"USA Today","Democrat" +4,4,5987,"tess",3,1,80,2,80,50,"USA Today","Democrat" +4,4,5988,"tess",1,1,11,2,11,10,"USA Today","Democrat" +4,4,5998,"tess",2,0,74,2,26,50,"USA Today","Democrat" +4,4,5999,"tess",2,0,64,2,36,0,"USA Today","Democrat" +4,4,6008,"tess",3,1,5,2,5,19,"USA Today","Republican" +4,4,6013,"tess",1,1,50,2,50,90,"USA Today","Democrat" +4,4,6039,"tess",1,0,57,3,43,37,"USA Today","Republican" +4,4,6042,"tess",1,1,99,3,99,1,"USA Today","Neither" +4,4,6048,"tess",1,0,55,3,45,0,"USA Today","Republican" +4,4,6050,"tess",3,1,22,2,22,29,"USA Today","Republican" +4,4,6061,"tess",1,0,82,3,18,32,"USA Today","Democrat" +4,4,6069,"tess",1,0,71,2,29,12,"USA Today","Democrat" +4,4,6073,"tess",2,0,99,2,1,10,"USA Today","Democrat" +4,4,6087,"tess",3,1,85,2,85,98,"USA Today","Democrat" +4,4,6090,"tess",3,0,10,3,90,100,"USA Today","Democrat" +4,4,6095,"tess",2,0,99,2,1,99,"USA Today","Democrat" +4,4,6101,"tess",2,0,31,2,69,19,"USA Today","Democrat" +4,4,6131,"tess",2,0,80,3,20,20,"USA Today","Neither" +4,4,6138,"tess",3,0,95,3,5,10,"USA Today","Democrat" +4,4,6144,"tess",2,0,83,3,17,23,"USA Today","Democrat" +4,4,6151,"tess",1,1,80,2,80,60,"USA Today","Democrat" +4,4,6152,"tess",3,0,23,3,77,70,"USA Today","Democrat" +4,4,6155,"tess",2,0,96,3,4,5,"USA Today","Democrat" +4,4,6164,"tess",1,0,38,3,62,17,"USA Today","Democrat" +4,4,6172,"tess",2,1,99,3,99,99,"USA Today","Democrat" +4,4,6179,"tess",3,1,37,2,37,37,"USA Today","Democrat" +4,4,6188,"tess",1,1,80,2,80,79,"USA Today","Republican" +4,4,6195,"tess",2,1,24,2,24,50,"USA Today","Democrat" +4,4,6197,"tess",1,1,90,2,90,80,"USA Today","Democrat" +4,4,6199,"tess",2,0,9,3,91,8,"USA Today","Republican" +4,4,6204,"tess",2,0,60,2,40,40,"USA Today","Republican" +4,4,6215,"tess",4,1,50,2,50,50,"USA Today","Republican" +4,4,6220,"tess",2,0,90,3,10,10,"USA Today","Democrat" +4,4,6224,"tess",2,1,93,2,93,97,"USA Today","Democrat" +4,4,6225,"tess",2,1,88,3,88,65,"USA Today","Democrat" +4,4,6227,"tess",2,1,95,2,95,83,"USA Today","Democrat" +4,4,6231,"tess",4,0,68,2,32,40,"USA Today","Democrat" +4,4,6237,"tess",4,1,65,2,65,90,"USA Today","Democrat" +4,4,6242,"tess",3,0,89,2,11,10,"USA Today","Democrat" +4,4,6244,"tess",1,1,50,2,50,75,"USA Today","Democrat" +4,4,6248,"tess",3,1,48,2,48,100,"USA Today","Republican" +4,4,6249,"tess",2,1,80,2,80,89,"USA Today","Democrat" +4,4,6258,"tess",1,0,80,3,20,0,"USA Today","Republican" +4,4,6259,"tess",3,0,100,2,0,100,"USA Today","Democrat" +4,4,6271,"tess",2,1,100,2,100,100,"USA Today","Democrat" +4,4,6294,"tess",3,0,1,2,99,99,"USA Today","Republican" +4,4,6298,"tess",4,1,100,2,100,100,"USA Today","Neither" +4,4,6307,"tess",2,1,20,2,20,50,"USA Today","Republican" +4,4,6312,"tess",2,1,100,2,100,95,"USA Today","Republican" +4,4,6323,"tess",2,1,90,2,90,91,"USA Today","Democrat" +4,4,6333,"tess",3,0,71,3,29,29,"USA Today","Republican" +4,4,6366,"tess",1,0,90,2,10,10,"USA Today","Democrat" +4,4,6376,"tess",2,1,90,2,90,90,"USA Today","Democrat" +4,4,6385,"tess",3,0,57,2,43,0,"USA Today","Democrat" +4,4,6397,"tess",3,0,99,2,1,1,"USA Today","Republican" +4,4,6414,"tess",3,1,70,3,70,60,"USA Today","Republican" +4,4,6419,"tess",1,1,93,3,93,100,"USA Today","Democrat" +4,4,6424,"tess",2,0,100,2,0,0,"USA Today","Republican" +4,4,6430,"tess",3,1,99,2,99,100,"USA Today","Democrat" +4,4,6434,"tess",2,1,98,3,98,50,"USA Today","Democrat" +4,4,6440,"tess",3,0,56,2,44,20,"USA Today","Republican" +4,4,6449,"tess",2,1,48,3,48,50,"USA Today","Republican" +4,4,6467,"tess",1,1,83,3,83,82,"USA Today","Democrat" +4,4,6469,"tess",3,1,62,3,62,51,"USA Today","Democrat" +4,4,6472,"tess",3,0,87,2,13,2,"USA Today","Republican" +4,4,6473,"tess",2,1,96,3,96,48,"USA Today","Republican" +4,4,6489,"tess",1,0,93,3,7,76,"USA Today","Democrat" +4,4,6496,"tess",1,1,97,2,97,91,"USA Today","Democrat" +4,4,6547,"tess",4,1,99,2,99,99,"USA Today","Republican" +4,4,6551,"tess",3,0,50,2,50,45,"USA Today","Democrat" +4,4,6571,"tess",2,1,91,3,91,81,"USA Today","Republican" +4,4,6572,"tess",1,1,71,3,71,82,"USA Today","Democrat" +4,4,6581,"tess",2,1,96,2,96,95,"USA Today","Democrat" +4,4,6590,"tess",4,1,80,2,80,79,"USA Today","Democrat" +4,4,6593,"tess",3,1,90,2,90,85,"USA Today","Democrat" +4,4,6607,"tess",2,1,1,2,1,69,"USA Today","Democrat" +4,4,6608,"tess",2,0,97,3,3,10,"USA Today","Republican" +4,4,6609,"tess",3,0,100,3,0,2,"USA Today","Democrat" +4,4,6617,"tess",3,0,98,3,2,0,"USA Today","Democrat" +4,4,6619,"tess",1,1,60,2,60,68,"USA Today","Republican" +4,4,6635,"tess",1,0,6,2,94,10,"USA Today","Republican" +4,4,6636,"tess",2,1,93,3,93,92,"USA Today","Republican" +4,4,6648,"tess",2,0,77,3,23,43,"USA Today","Democrat" +4,4,6661,"tess",1,1,71,2,71,88,"USA Today","Republican" +4,4,6665,"tess",3,0,89,3,11,9,"USA Today","Democrat" +4,4,6667,"tess",1,0,62,2,38,9,"USA Today","Democrat" +4,4,6675,"tess",1,0,70,2,30,10,"USA Today","Democrat" +4,4,6683,"tess",4,0,100,2,0,100,"USA Today","Democrat" +4,4,6685,"tess",1,0,40,3,60,64,"USA Today","Republican" +4,4,6698,"tess",1,0,1,3,99,99,"USA Today","Democrat" +4,4,6703,"tess",3,1,100,3,100,100,"USA Today","Democrat" +4,4,6710,"tess",3,1,100,2,100,80,"USA Today","Republican" +4,4,6729,"tess",1,1,81,3,81,90,"USA Today","Democrat" +4,4,6742,"tess",4,0,80,2,20,50,"USA Today","Democrat" +4,4,6748,"tess",3,1,40,2,40,40,"USA Today","Democrat" +4,4,6755,"tess",2,0,30,2,70,80,"USA Today","Republican" +4,4,6780,"tess",2,1,94,3,94,77,"USA Today","Democrat" +4,4,6792,"tess",3,1,50,3,50,98,"USA Today","Democrat" +4,4,6795,"tess",3,0,98,3,2,4,"USA Today","Democrat" +4,4,6803,"tess",2,0,0,3,100,0,"USA Today","Democrat" +4,4,6805,"tess",1,1,49,3,49,50,"USA Today","Republican" +4,4,6814,"tess",2,1,90,2,90,91,"USA Today","Democrat" +4,4,6825,"tess",1,1,99,3,99,50,"USA Today","Democrat" +4,4,6827,"tess",1,0,90,3,10,0,"USA Today","Democrat" +4,4,6837,"tess",1,0,80,3,20,7,"USA Today","Democrat" +4,4,6842,"tess",2,1,97,3,97,96,"USA Today","Republican" +4,4,6865,"tess",3,1,100,3,100,96,"USA Today","Democrat" +4,4,6866,"tess",2,1,99,3,99,100,"USA Today","Democrat" +4,4,6881,"tess",3,0,99,2,1,50,"USA Today","Democrat" +4,4,6893,"tess",2,1,8,2,8,76,"USA Today","Republican" +4,4,6897,"tess",1,0,60,3,40,30,"USA Today","Democrat" +4,4,6908,"tess",4,0,68,2,32,0,"USA Today","Democrat" +4,4,6909,"tess",2,1,82,2,82,90,"USA Today","Republican" +4,4,6910,"tess",1,1,75,3,75,61,"USA Today","Democrat" +4,4,6911,"tess",1,1,80,3,80,80,"USA Today","Democrat" +4,4,6913,"tess",2,0,84,2,16,6,"USA Today","Democrat" +4,4,6915,"tess",4,1,10,2,10,10,"USA Today","Republican" +4,4,6932,"tess",3,0,38,2,62,62,"USA Today","Democrat" +4,4,6935,"tess",1,1,100,3,100,91,"USA Today","Democrat" +4,4,6936,"tess",3,1,26,3,26,100,"USA Today","Republican" +4,4,6971,"tess",1,0,100,2,0,9,"USA Today","Republican" +4,4,6984,"tess",3,1,30,3,30,80,"USA Today","Republican" +4,4,6997,"tess",3,0,30,3,70,20,"USA Today","Republican" +4,4,7003,"tess",1,1,79,3,79,90,"USA Today","Republican" +4,4,7023,"tess",3,1,90,2,90,80,"USA Today","Democrat" +4,4,7027,"tess",4,1,63,2,63,61,"USA Today","Republican" +4,4,7036,"tess",2,0,35,2,65,45,"USA Today","Republican" +4,4,7049,"tess",3,1,76,2,76,27,"USA Today","Democrat" +4,4,7060,"tess",3,1,10,2,10,10,"USA Today","Democrat" +4,4,7061,"tess",1,0,75,3,25,20,"USA Today","Democrat" +4,4,7066,"tess",3,0,26,2,74,81,"USA Today","Democrat" +4,4,7078,"tess",2,0,11,3,89,30,"USA Today","Republican" +4,4,7087,"tess",4,0,100,2,0,0,"USA Today","Democrat" +4,4,7088,"tess",3,1,93,3,93,68,"USA Today","Democrat" +4,4,7094,"tess",3,1,75,3,75,33,"USA Today","Republican" +4,4,7106,"tess",1,0,100,2,0,50,"USA Today","Republican" +4,4,7122,"tess",1,1,56,3,56,82,"USA Today","Democrat" +4,4,7127,"tess",2,1,100,3,100,0,"USA Today","Democrat" +4,4,7128,"tess",2,1,51,2,51,100,"USA Today","Republican" +4,4,7148,"tess",4,1,99,2,99,99,"USA Today","Democrat" +4,4,7158,"tess",1,0,10,2,90,75,"USA Today","Democrat" +4,4,7164,"tess",2,0,86,2,14,9,"USA Today","Neither" +4,4,7182,"tess",2,0,100,2,0,0,"USA Today","Democrat" +4,4,7190,"tess",2,0,76,3,24,15,"USA Today","Democrat" +4,4,7199,"tess",2,0,1,2,99,50,"USA Today","Republican" +4,4,7201,"tess",3,0,82,3,18,0,"USA Today","Democrat" +4,4,7210,"tess",3,1,3,2,3,1,"USA Today","Neither" +4,4,7225,"tess",1,0,80,2,20,50,"USA Today","Democrat" +4,4,7226,"tess",1,1,81,2,81,73,"USA Today","Democrat" +4,4,7228,"tess",3,1,54,2,54,40,"USA Today","Democrat" +4,4,7239,"tess",1,1,50,2,50,40,"USA Today","Republican" +4,4,7240,"tess",1,0,98,2,2,14,"USA Today","Democrat" +4,4,7241,"tess",2,1,98,3,98,100,"USA Today","Neither" +4,4,7252,"tess",1,0,100,2,0,0,"USA Today","Republican" +4,4,7286,"tess",3,1,0,2,0,0,"USA Today","Republican" +4,4,7315,"tess",2,1,27,2,27,84,"USA Today","Neither" +4,4,7323,"tess",3,0,98,2,2,100,"USA Today","Republican" +4,4,7325,"tess",4,0,90,2,10,10,"USA Today","Republican" +4,4,7341,"tess",2,1,1,3,1,51,"USA Today","Democrat" +4,4,7373,"tess",1,1,100,3,100,49,"USA Today","Democrat" +4,4,7388,"tess",3,0,80,2,20,20,"USA Today","Democrat" +4,4,7395,"tess",2,0,5,2,95,9,"USA Today","Republican" +4,4,7404,"tess",2,0,97,2,3,97,"USA Today","Democrat" +4,4,7412,"tess",3,0,0,2,100,3,"USA Today","Republican" +4,4,7427,"tess",2,0,60,3,40,5,"USA Today","Democrat" +4,4,7446,"tess",2,0,11,2,89,15,"USA Today","Democrat" +4,4,7448,"tess",1,0,99,3,1,5,"USA Today","Democrat" +4,4,7452,"tess",3,0,61,3,39,47,"USA Today","Democrat" +4,4,7453,"tess",3,1,30,2,30,40,"USA Today","Republican" +4,4,7479,"tess",1,1,99,3,99,98,"USA Today","Democrat" +4,4,7501,"tess",1,0,64,2,36,20,"USA Today","Republican" +4,4,7506,"tess",4,1,78,2,78,91,"USA Today","Democrat" +4,4,7525,"tess",2,1,98,3,98,98,"USA Today","Democrat" +4,4,7534,"tess",2,0,50,2,50,1,"USA Today","Democrat" +4,4,7539,"tess",2,1,95,2,95,96,"USA Today","Republican" +4,4,7542,"tess",2,0,82,3,18,92,"USA Today","Republican" +4,4,7558,"tess",3,0,98,2,2,0,"USA Today","Democrat" +4,4,7563,"tess",1,0,100,2,0,9,"USA Today","Democrat" +4,4,7573,"tess",1,0,5,3,95,15,"USA Today","Democrat" +4,4,7580,"tess",3,0,60,2,40,6,"USA Today","Republican" +4,4,7586,"tess",1,1,0,2,0,80,"USA Today","Democrat" +4,4,7588,"tess",1,1,27,3,27,95,"USA Today","Republican" +4,4,7593,"tess",1,1,61,3,61,69,"USA Today","Republican" +4,4,7597,"tess",1,1,90,3,90,90,"USA Today","Democrat" +4,4,7600,"tess",1,0,79,3,21,80,"USA Today","Republican" +4,4,7605,"tess",3,1,57,2,57,100,"USA Today","Republican" +4,4,7615,"tess",2,1,100,3,100,100,"USA Today","Republican" +4,4,7641,"tess",2,0,80,2,20,50,"USA Today","Democrat" +4,4,7668,"tess",1,0,90,2,10,25,"USA Today","Republican" +4,4,7694,"tess",4,0,90,2,10,89,"USA Today","Republican" +4,4,7711,"tess",2,0,82,3,18,2,"USA Today","Republican" +4,4,7712,"tess",1,1,80,2,80,80,"USA Today","Democrat" +4,4,7722,"tess",1,0,90,2,10,10,"USA Today","Republican" +4,4,7739,"tess",2,0,20,3,80,91,"USA Today","Republican" +4,4,7747,"tess",2,0,91,3,9,0,"USA Today","Democrat" +4,4,7754,"tess",1,1,11,2,11,81,"USA Today","Neither" +4,4,7759,"tess",1,1,99,2,99,99,"USA Today","Democrat" +4,4,7783,"tess",2,0,80,3,20,21,"USA Today","Republican" +4,4,7822,"tess",2,0,80,3,20,21,"USA Today","Democrat" +4,4,7844,"tess",4,0,10,2,90,10,"USA Today","Republican" +4,4,7856,"tess",2,0,40,2,60,29,"USA Today","Republican" +4,4,7872,"tess",2,1,NA,3,NA,99,"USA Today","Democrat" +4,4,7884,"tess",1,1,80,2,80,80,"USA Today","Democrat" +4,4,7906,"tess",2,1,91,3,91,90,"USA Today","Republican" +4,4,7910,"tess",1,0,24,3,76,6,"USA Today","Democrat" +4,4,7918,"tess",3,1,95,3,95,95,"USA Today","Democrat" +4,4,7922,"tess",2,1,89,3,89,91,"USA Today","Democrat" +4,4,7936,"tess",3,0,35,3,65,39,"USA Today","Democrat" +4,4,7946,"tess",1,0,61,2,39,50,"USA Today","Democrat" +4,4,7951,"tess",3,0,1,2,99,90,"USA Today","Republican" +4,4,7957,"tess",1,1,0,3,0,63,"USA Today","Democrat" +4,4,7960,"tess",4,1,100,2,100,100,"USA Today","Democrat" +4,4,7967,"tess",2,1,100,3,100,93,"USA Today","Democrat" +4,4,7983,"tess",3,1,100,3,100,94,"USA Today","Democrat" +4,4,7987,"tess",3,0,28,2,72,85,"USA Today","Democrat" +4,4,7995,"tess",2,1,96,3,96,95,"USA Today","Republican" +4,4,8023,"tess",1,1,100,2,100,100,"USA Today","Democrat" +4,4,8063,"tess",3,0,97,2,3,1,"USA Today","Republican" +4,4,8079,"tess",2,1,32,2,32,100,"USA Today","Democrat" +4,4,8095,"tess",4,0,100,2,0,100,"USA Today","Democrat" +4,4,8096,"tess",1,0,100,2,0,1,"USA Today","Republican" +4,4,8097,"tess",3,1,10,3,10,40,"USA Today","Republican" +4,4,8141,"tess",3,0,100,2,0,100,"USA Today","Democrat" +4,4,8170,"tess",2,0,9,3,91,90,"USA Today","Democrat" +4,4,8181,"tess",2,1,50,2,50,90,"USA Today","Republican" +4,4,8190,"tess",1,0,100,3,0,0,"USA Today","Democrat" +4,4,8191,"tess",3,1,90,2,90,85,"USA Today","Democrat" +4,4,8199,"tess",3,0,50,3,50,50,"USA Today","Democrat" +4,4,8203,"tess",2,1,54,2,54,84,"USA Today","Republican" +4,4,8221,"tess",3,0,72,3,28,16,"USA Today","Democrat" +4,4,8260,"tess",2,0,15,3,85,20,"USA Today","Neither" +4,4,8280,"tess",1,1,68,2,68,48,"USA Today","Democrat" +4,4,8324,"tess",4,1,100,2,100,90,"USA Today","Republican" +4,4,8333,"tess",1,1,34,2,34,14,"USA Today","Democrat" +4,4,8344,"tess",3,1,93,2,93,93,"USA Today","Democrat" +4,4,8371,"tess",1,0,95,2,5,0,"USA Today","Republican" +4,4,8374,"tess",3,1,68,2,68,90,"USA Today","Republican" +4,4,8386,"tess",2,1,85,3,85,74,"USA Today","Republican" +4,4,8397,"tess",1,1,80,2,80,80,"USA Today","Republican" +4,4,8405,"tess",1,0,75,3,25,25,"USA Today","Democrat" +4,4,8425,"tess",2,1,91,3,91,91,"USA Today","Democrat" +4,4,8432,"tess",1,1,99,3,99,99,"USA Today","Democrat" +4,4,8452,"tess",2,1,49,2,49,0,"USA Today","Republican" +4,4,8468,"tess",3,1,94,3,94,48,"USA Today","Democrat" +4,4,8476,"tess",2,0,76,3,24,5,"USA Today","Democrat" +4,4,8545,"tess",1,1,86,2,86,83,"USA Today","Republican" +4,4,8552,"tess",2,1,10,2,10,10,"USA Today","Democrat" +4,4,8556,"tess",2,0,65,3,35,65,"USA Today","Democrat" +4,4,8564,"tess",2,0,100,3,0,0,"USA Today","Republican" +4,4,8568,"tess",3,1,94,3,94,34,"USA Today","Democrat" +4,4,8577,"tess",2,0,96,3,4,49,"USA Today","Democrat" +4,4,8589,"tess",1,1,50,2,50,50,"USA Today","Democrat" +4,4,8607,"tess",2,1,86,2,86,85,"USA Today","Republican" +4,4,8608,"tess",2,1,97,2,97,94,"USA Today","Republican" +4,4,8638,"tess",3,1,90,3,90,90,"USA Today","Neither" +4,4,8680,"tess",1,0,81,3,19,3,"USA Today","Republican" +4,4,8707,"tess",1,1,96,2,96,95,"USA Today","Republican" +4,4,8709,"tess",2,0,62,3,38,40,"USA Today","Republican" +4,4,8713,"tess",2,0,10,2,90,10,"USA Today","Republican" +4,4,8717,"tess",1,0,29,3,71,5,"USA Today","Republican" +4,4,8719,"tess",1,0,50,2,50,50,"USA Today","Republican" +4,4,8763,"tess",2,0,80,2,20,20,"USA Today","Republican" +4,4,8768,"tess",3,1,100,2,100,99,"USA Today","Democrat" +4,4,8777,"tess",2,0,50,3,50,20,"USA Today","Democrat" +4,4,8782,"tess",3,1,59,3,59,51,"USA Today","Republican" +4,4,8797,"tess",2,0,51,3,49,60,"USA Today","Republican" +4,4,8814,"tess",2,0,94,3,6,80,"USA Today","Democrat" +4,4,8819,"tess",2,1,99,2,99,99,"USA Today","Republican" +4,4,8826,"tess",2,1,20,2,20,36,"USA Today","Republican" +4,4,8836,"tess",3,0,32,2,68,0,"USA Today","Democrat" +4,4,8877,"tess",3,1,90,3,90,90,"USA Today","Republican" +4,4,8892,"tess",1,0,30,3,70,70,"USA Today","Democrat" +4,4,8894,"tess",3,1,91,3,91,90,"USA Today","Democrat" +4,4,8900,"tess",4,1,100,2,100,100,"USA Today","Republican" +4,4,8932,"tess",3,1,100,2,100,100,"USA Today","Democrat" +4,4,8933,"tess",1,1,58,2,58,88,"USA Today","Republican" +4,4,8939,"tess",3,0,80,3,20,20,"USA Today","Democrat" +4,4,8941,"tess",4,1,89,2,89,68,"USA Today","Neither" +4,4,8988,"tess",1,0,70,3,30,60,"USA Today","Republican" +4,4,8995,"tess",2,0,90,3,10,20,"USA Today","Republican" +4,4,8999,"tess",1,0,14,2,86,0,"USA Today","Democrat" +4,4,9024,"tess",1,1,70,2,70,60,"USA Today","Democrat" +4,4,9029,"tess",3,0,50,2,50,50,"USA Today","Neither" +4,4,9034,"tess",1,0,100,3,0,0,"USA Today","Republican" +4,4,9038,"tess",2,1,71,2,71,82,"USA Today","Neither" +4,4,9065,"tess",1,1,50,3,50,55,"USA Today","Neither" +4,4,9075,"tess",1,0,99,2,1,1,"USA Today","Democrat" +4,4,9081,"tess",3,1,80,3,80,80,"USA Today","Republican" +4,4,9084,"tess",3,0,99,2,1,20,"USA Today","Democrat" +4,4,9101,"tess",3,0,91,3,9,36,"USA Today","Democrat" +4,4,9106,"tess",4,1,50,2,50,41,"USA Today","Republican" +4,4,9108,"tess",2,0,77,3,23,30,"USA Today","Democrat" +4,4,9109,"tess",2,0,92,2,8,15,"USA Today","Democrat" +4,4,9120,"tess",3,0,51,2,49,49,"USA Today","Democrat" +4,4,9135,"tess",1,0,55,3,45,3,"USA Today","Democrat" +4,4,9148,"tess",4,0,92,2,8,0,"USA Today","Republican" +4,4,9155,"tess",1,1,79,2,79,79,"USA Today","Democrat" +4,4,9169,"tess",3,0,60,2,40,30,"USA Today","Republican" +4,4,9193,"tess",3,1,81,2,81,41,"USA Today","Democrat" +4,4,9198,"tess",2,0,84,3,16,1,"USA Today","Democrat" +4,4,9210,"tess",2,1,NA,3,NA,NA,"USA Today","Democrat" +4,4,9211,"tess",3,1,91,2,91,91,"USA Today","Republican" +4,4,9245,"tess",3,0,91,2,9,10,"USA Today","Republican" +4,4,9260,"tess",2,1,20,2,20,29,"USA Today","Republican" +4,4,9267,"tess",3,0,99,2,1,3,"USA Today","Democrat" +4,4,9281,"tess",2,1,28,3,28,52,"USA Today","Republican" +4,4,9292,"tess",2,1,19,3,19,9,"USA Today","Republican" +4,4,9316,"tess",2,0,56,2,44,52,"USA Today","Republican" +4,4,9319,"tess",3,1,50,2,50,99,"USA Today","Democrat" +4,4,9337,"tess",2,1,95,3,95,94,"USA Today","Republican" +4,4,9340,"tess",2,0,40,2,60,31,"USA Today","Democrat" +4,4,9383,"tess",1,0,4,3,96,16,"USA Today","Republican" +4,4,9424,"tess",3,0,89,2,11,90,"USA Today","Democrat" +4,4,9425,"tess",2,1,80,3,80,90,"USA Today","Democrat" +4,4,9435,"tess",1,1,66,2,66,51,"USA Today","Democrat" +4,4,9443,"tess",1,1,100,3,100,5,"USA Today","Democrat" +4,4,9465,"tess",3,1,80,3,80,81,"USA Today","Republican" +4,4,9471,"tess",1,1,60,2,60,10,"USA Today","Democrat" +4,4,9493,"tess",2,1,100,2,100,97,"USA Today","Democrat" +4,4,9500,"tess",4,1,72,2,72,88,"USA Today","Republican" +4,4,9532,"tess",3,1,98,3,98,99,"USA Today","Republican" +4,4,9534,"tess",2,0,4,3,96,100,"USA Today","Democrat" +4,4,9538,"tess",3,1,NA,2,NA,60,"USA Today","Republican" +4,4,9570,"tess",4,0,79,2,21,16,"USA Today","Democrat" +4,4,9572,"tess",3,1,75,3,75,75,"USA Today","Republican" +4,4,9585,"tess",3,1,94,2,94,86,"USA Today","Democrat" +4,4,9590,"tess",3,0,85,3,15,25,"USA Today","Republican" +4,4,9608,"tess",1,1,50,3,50,50,"USA Today","Democrat" +4,4,9631,"tess",1,1,90,2,90,90,"USA Today","Democrat" +4,4,9649,"tess",2,0,16,3,84,25,"USA Today","Democrat" +4,4,9650,"tess",3,1,55,2,55,52,"USA Today","Republican" +4,4,9664,"tess",3,0,80,2,20,23,"USA Today","Republican" +4,4,9684,"tess",4,0,92,2,8,86,"USA Today","Democrat" +4,4,9686,"tess",2,0,95,3,5,14,"USA Today","Democrat" +4,4,9692,"tess",2,1,38,3,38,72,"USA Today","Democrat" +4,4,9703,"tess",3,1,80,3,80,80,"USA Today","Democrat" +4,4,9711,"tess",1,0,90,3,10,30,"USA Today","Neither" +4,4,9729,"tess",3,1,100,2,100,25,"USA Today","Republican" +4,4,9741,"tess",2,0,0,2,100,1,"USA Today","Republican" +5,NA,9743,"turk",2,0,30,1,70,NA,NA,"Democrat" +5,NA,9747,"turk",2,0,60,1,40,NA,NA,"Neither" +5,NA,9753,"turk",4,0,67,1,33,NA,NA,"Democrat" +5,NA,9755,"turk",4,0,50,1,50,NA,NA,"Republican" +5,NA,9756,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,9759,"turk",1,0,10,1,90,NA,NA,"Republican" +5,NA,9759,"turk",1,0,1,2,99,90,NA,"Republican" +5,NA,9759,"turk",1,0,75,3,25,99,NA,"Republican" +5,NA,9759,"turk",1,0,10,4,90,25,NA,"Republican" +5,NA,9759,"turk",1,0,10,5,90,90,NA,"Republican" +5,NA,9763,"turk",4,0,5,1,95,NA,NA,"Neither" +5,NA,9764,"turk",4,0,60,1,40,NA,NA,"Democrat" +5,NA,9765,"turk",2,0,50,1,50,NA,NA,"Neither" +5,NA,9767,"turk",3,0,97,1,3,NA,NA,"Neither" +5,NA,9773,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,9776,"turk",4,0,50,1,50,NA,NA,"Neither" +5,NA,9777,"turk",2,0,75,1,25,NA,NA,"Democrat" +5,NA,9778,"turk",2,0,50,1,50,NA,NA,"Neither" +5,NA,9779,"turk",4,0,65,1,35,NA,NA,"Democrat" +5,NA,9780,"turk",1,0,70,1,30,NA,NA,"Republican" +5,NA,9780,"turk",1,0,50,2,50,30,NA,"Republican" +5,NA,9780,"turk",1,0,99,3,1,50,NA,"Republican" +5,NA,9780,"turk",1,0,88,4,12,1,NA,"Republican" +5,NA,9780,"turk",1,0,0,5,100,12,NA,"Republican" +5,NA,9784,"turk",4,0,1,1,99,NA,NA,"Republican" +5,NA,9785,"turk",1,0,85,1,15,NA,NA,"Democrat" +5,NA,9785,"turk",1,0,50,2,50,15,NA,"Democrat" +5,NA,9785,"turk",1,0,45,3,55,50,NA,"Democrat" +5,NA,9785,"turk",1,0,30,4,70,55,NA,"Democrat" +5,NA,9785,"turk",1,0,10,5,90,70,NA,"Democrat" +5,NA,9787,"turk",5,0,20,1,80,NA,NA,"Democrat" +5,NA,9787,"turk",5,0,15,2,85,80,NA,"Democrat" +5,NA,9787,"turk",5,0,99,3,1,85,NA,"Democrat" +5,NA,9787,"turk",5,0,1,4,99,1,NA,"Democrat" +5,NA,9787,"turk",5,0,1,5,99,99,NA,"Democrat" +5,NA,9789,"turk",2,0,30,1,70,NA,NA,"Democrat" +5,NA,9791,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,9792,"turk",5,0,60,1,40,NA,NA,"Republican" +5,NA,9792,"turk",5,0,50,2,50,40,NA,"Republican" +5,NA,9792,"turk",5,0,55,3,45,50,NA,"Republican" +5,NA,9792,"turk",5,0,40,4,60,45,NA,"Republican" +5,NA,9792,"turk",5,0,30,5,70,60,NA,"Republican" +5,NA,9794,"turk",4,0,20,1,80,NA,NA,"Democrat" +5,NA,9796,"turk",1,0,60,1,40,NA,NA,"Democrat" +5,NA,9796,"turk",1,0,50,2,50,40,NA,"Democrat" +5,NA,9796,"turk",1,0,60,3,40,50,NA,"Democrat" +5,NA,9796,"turk",1,0,60,4,40,40,NA,"Democrat" +5,NA,9796,"turk",1,0,60,5,40,40,NA,"Democrat" +5,NA,9797,"turk",3,0,20,1,80,NA,NA,"Republican" +5,NA,9798,"turk",4,0,80,1,20,NA,NA,"Democrat" +5,NA,9799,"turk",1,0,99,1,1,NA,NA,"Democrat" +5,NA,9799,"turk",1,0,1,2,99,1,NA,"Democrat" +5,NA,9799,"turk",1,0,1,3,99,99,NA,"Democrat" +5,NA,9799,"turk",1,0,1,4,99,99,NA,"Democrat" +5,NA,9799,"turk",1,0,1,5,99,99,NA,"Democrat" +5,NA,9800,"turk",2,0,50,1,50,NA,NA,"Republican" +5,NA,9801,"turk",4,0,50,1,50,NA,NA,"Neither" +5,NA,9802,"turk",5,0,40,1,60,NA,NA,"Democrat" +5,NA,9802,"turk",5,0,50,2,50,60,NA,"Democrat" +5,NA,9802,"turk",5,0,30,3,70,50,NA,"Democrat" +5,NA,9802,"turk",5,0,20,4,80,70,NA,"Democrat" +5,NA,9802,"turk",5,0,20,5,80,80,NA,"Democrat" +5,NA,9804,"turk",2,0,98,1,2,NA,NA,"Republican" +5,NA,9807,"turk",3,0,50,1,50,NA,NA,"Republican" +5,NA,9809,"turk",3,0,10,1,90,NA,NA,"Neither" +5,NA,9814,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,9818,"turk",3,0,30,1,70,NA,NA,"Republican" +5,NA,9820,"turk",4,0,50,1,50,NA,NA,"Republican" +5,NA,9822,"turk",3,0,40,1,60,NA,NA,"Democrat" +5,NA,9827,"turk",3,0,1,1,99,NA,NA,"Republican" +5,NA,9828,"turk",2,0,70,1,30,NA,NA,"Democrat" +5,NA,9829,"turk",2,0,1,1,99,NA,NA,"Republican" +5,NA,9830,"turk",3,0,50,1,50,NA,NA,"Republican" +5,NA,9842,"turk",2,0,90,1,10,NA,NA,"Democrat" +5,NA,9843,"turk",3,0,1,1,99,NA,NA,"Neither" +5,NA,9845,"turk",3,0,90,1,10,NA,NA,"Neither" +5,NA,9846,"turk",3,0,30,1,70,NA,NA,"Democrat" +5,NA,9859,"turk",2,0,85,1,15,NA,NA,"Democrat" +5,NA,9860,"turk",3,0,1,1,99,NA,NA,"Republican" +5,NA,9861,"turk",5,0,99,1,1,NA,NA,"Neither" +5,NA,9861,"turk",5,0,99,2,1,1,NA,"Neither" +5,NA,9861,"turk",5,0,99,3,1,1,NA,"Neither" +5,NA,9861,"turk",5,0,99,4,1,1,NA,"Neither" +5,NA,9861,"turk",5,0,99,5,1,1,NA,"Neither" +5,NA,9862,"turk",1,0,85,1,15,NA,NA,"Democrat" +5,NA,9862,"turk",1,0,8,2,92,15,NA,"Democrat" +5,NA,9862,"turk",1,0,85,3,15,92,NA,"Democrat" +5,NA,9862,"turk",1,0,1,4,99,15,NA,"Democrat" +5,NA,9862,"turk",1,0,1,5,99,99,NA,"Democrat" +5,NA,9864,"turk",2,0,1,1,99,NA,NA,"Republican" +5,NA,9866,"turk",4,0,25,1,75,NA,NA,"Republican" +5,NA,9867,"turk",4,0,1,1,99,NA,NA,"Democrat" +5,NA,9868,"turk",3,0,80,1,20,NA,NA,"Democrat" +5,NA,9869,"turk",2,0,75,1,25,NA,NA,"Republican" +5,NA,9871,"turk",4,0,88,1,12,NA,NA,"Republican" +5,NA,9873,"turk",1,0,99,1,1,NA,NA,"Democrat" +5,NA,9873,"turk",1,0,99,2,1,1,NA,"Democrat" +5,NA,9873,"turk",1,0,99,3,1,1,NA,"Democrat" +5,NA,9873,"turk",1,0,80,4,20,1,NA,"Democrat" +5,NA,9873,"turk",1,0,99,5,1,20,NA,"Democrat" +5,NA,9875,"turk",3,0,60,1,40,NA,NA,"Democrat" +5,NA,9876,"turk",1,0,70,1,30,NA,NA,"Democrat" +5,NA,9876,"turk",1,0,1,2,99,30,NA,"Democrat" +5,NA,9876,"turk",1,0,1,3,99,99,NA,"Democrat" +5,NA,9876,"turk",1,0,1,4,99,99,NA,"Democrat" +5,NA,9876,"turk",1,0,1,5,99,99,NA,"Democrat" +5,NA,9877,"turk",2,0,25,1,75,NA,NA,"Neither" +5,NA,9880,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,9881,"turk",4,0,1,1,99,NA,NA,"Democrat" +5,NA,9882,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,9885,"turk",3,0,75,1,25,NA,NA,"Democrat" +5,NA,9886,"turk",2,0,99,1,1,NA,NA,"Republican" +5,NA,9889,"turk",4,0,15,1,85,NA,NA,"Neither" +5,NA,9892,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,9893,"turk",1,0,78,1,22,NA,NA,"Democrat" +5,NA,9893,"turk",1,0,77,2,23,22,NA,"Democrat" +5,NA,9893,"turk",1,0,10,3,90,23,NA,"Democrat" +5,NA,9893,"turk",1,0,5,4,95,90,NA,"Democrat" +5,NA,9893,"turk",1,0,1,5,99,95,NA,"Democrat" +5,NA,9897,"turk",2,0,15,1,85,NA,NA,"Democrat" +5,NA,9898,"turk",2,0,0,1,100,NA,NA,"Republican" +5,NA,9902,"turk",1,0,20,1,80,NA,NA,"Democrat" +5,NA,9902,"turk",1,0,20,2,80,80,NA,"Democrat" +5,NA,9902,"turk",1,0,15,3,85,80,NA,"Democrat" +5,NA,9902,"turk",1,0,5,4,95,85,NA,"Democrat" +5,NA,9902,"turk",1,0,1,5,99,95,NA,"Democrat" +5,NA,9905,"turk",2,0,99,1,1,NA,NA,"Republican" +5,NA,9906,"turk",3,0,1,1,99,NA,NA,"Democrat" +5,NA,9907,"turk",2,0,75,1,25,NA,NA,"Democrat" +5,NA,9909,"turk",1,0,1,1,99,NA,NA,"Neither" +5,NA,9909,"turk",1,0,100,2,0,99,NA,"Neither" +5,NA,9909,"turk",1,0,0,3,100,0,NA,"Neither" +5,NA,9909,"turk",1,0,99,4,1,100,NA,"Neither" +5,NA,9909,"turk",1,0,99,5,1,1,NA,"Neither" +5,NA,9911,"turk",3,0,0,1,100,NA,NA,"Democrat" +5,NA,9912,"turk",2,0,40,1,60,NA,NA,"Democrat" +5,NA,9913,"turk",4,0,70,1,30,NA,NA,"Neither" +5,NA,9915,"turk",4,0,1,1,99,NA,NA,"Democrat" +5,NA,9917,"turk",1,0,50,1,50,NA,NA,"Neither" +5,NA,9917,"turk",1,0,25,2,75,50,NA,"Neither" +5,NA,9917,"turk",1,0,25,3,75,75,NA,"Neither" +5,NA,9917,"turk",1,0,25,4,75,75,NA,"Neither" +5,NA,9917,"turk",1,0,30,5,70,75,NA,"Neither" +5,NA,9922,"turk",2,0,0,1,100,NA,NA,"Democrat" +5,NA,9928,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,9929,"turk",2,0,15,1,85,NA,NA,"Neither" +5,NA,9930,"turk",2,0,40,1,60,NA,NA,"Democrat" +5,NA,9934,"turk",2,0,75,1,25,NA,NA,"Democrat" +5,NA,9935,"turk",2,0,50,1,50,NA,NA,"Neither" +5,NA,9938,"turk",1,0,75,1,25,NA,NA,"Democrat" +5,NA,9938,"turk",1,0,25,2,75,25,NA,"Democrat" +5,NA,9938,"turk",1,0,1,3,99,75,NA,"Democrat" +5,NA,9938,"turk",1,0,1,4,99,99,NA,"Democrat" +5,NA,9938,"turk",1,0,1,5,99,99,NA,"Democrat" +5,NA,9947,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,9948,"turk",3,0,80,1,20,NA,NA,"Republican" +5,NA,9949,"turk",3,0,45,1,55,NA,NA,"Neither" +5,NA,9951,"turk",4,0,99,1,1,NA,NA,"Republican" +5,NA,9954,"turk",2,0,80,1,20,NA,NA,"Democrat" +5,NA,9956,"turk",3,0,60,1,40,NA,NA,"Democrat" +5,NA,9960,"turk",3,0,60,1,40,NA,NA,"Democrat" +5,NA,9961,"turk",4,0,1,1,99,NA,NA,"Republican" +5,NA,9964,"turk",2,0,15,1,85,NA,NA,"Democrat" +5,NA,9967,"turk",1,0,75,1,25,NA,NA,"Neither" +5,NA,9967,"turk",1,0,20,2,80,25,NA,"Neither" +5,NA,9967,"turk",1,0,10,3,90,80,NA,"Neither" +5,NA,9967,"turk",1,0,10,4,90,90,NA,"Neither" +5,NA,9967,"turk",1,0,1,5,99,90,NA,"Neither" +5,NA,9968,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,9969,"turk",4,0,1,1,99,NA,NA,"Democrat" +5,NA,9970,"turk",3,0,100,1,0,NA,NA,"Republican" +5,NA,9973,"turk",2,0,80,1,20,NA,NA,"Democrat" +5,NA,9976,"turk",1,0,75,1,25,NA,NA,"Republican" +5,NA,9976,"turk",1,0,1,2,99,25,NA,"Republican" +5,NA,9976,"turk",1,0,1,3,99,99,NA,"Republican" +5,NA,9976,"turk",1,0,1,4,99,99,NA,"Republican" +5,NA,9976,"turk",1,0,1,5,99,99,NA,"Republican" +5,NA,9978,"turk",4,0,99,1,1,NA,NA,"Republican" +5,NA,9979,"turk",2,0,20,1,80,NA,NA,"Republican" +5,NA,9980,"turk",3,0,5,1,95,NA,NA,"Republican" +5,NA,9981,"turk",3,0,1,1,99,NA,NA,"Democrat" +5,NA,9984,"turk",1,0,1,1,99,NA,NA,"Democrat" +5,NA,9984,"turk",1,0,1,2,99,99,NA,"Democrat" +5,NA,9984,"turk",1,0,99,3,1,99,NA,"Democrat" +5,NA,9984,"turk",1,0,1,4,99,1,NA,"Democrat" +5,NA,9984,"turk",1,0,99,5,1,99,NA,"Democrat" +5,NA,9985,"turk",2,0,10,1,90,NA,NA,"Democrat" +5,NA,9987,"turk",2,0,30,1,70,NA,NA,"Democrat" +5,NA,9990,"turk",5,0,65,1,35,NA,NA,"Democrat" +5,NA,9990,"turk",5,0,50,2,50,35,NA,"Democrat" +5,NA,9990,"turk",5,0,30,3,70,50,NA,"Democrat" +5,NA,9990,"turk",5,0,2,4,98,70,NA,"Democrat" +5,NA,9990,"turk",5,0,2,5,98,98,NA,"Democrat" +5,NA,9994,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,9996,"turk",1,0,60,1,40,NA,NA,"Democrat" +5,NA,9996,"turk",1,0,75,2,25,40,NA,"Democrat" +5,NA,9996,"turk",1,0,65,3,35,25,NA,"Democrat" +5,NA,9996,"turk",1,0,50,4,50,35,NA,"Democrat" +5,NA,9996,"turk",1,0,65,5,35,50,NA,"Democrat" +5,NA,10006,"turk",2,0,70,1,30,NA,NA,"Democrat" +5,NA,10007,"turk",2,0,80,1,20,NA,NA,"Republican" +5,NA,10008,"turk",3,0,2,1,98,NA,NA,"Republican" +5,NA,10010,"turk",4,0,60,1,40,NA,NA,"Democrat" +5,NA,10011,"turk",2,0,40,1,60,NA,NA,"Democrat" +5,NA,10015,"turk",3,0,30,1,70,NA,NA,"Neither" +5,NA,10017,"turk",2,0,5,1,95,NA,NA,"Democrat" +5,NA,10021,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,10022,"turk",5,0,1,1,99,NA,NA,"Neither" +5,NA,10022,"turk",5,0,50,2,50,99,NA,"Neither" +5,NA,10022,"turk",5,0,1,3,99,50,NA,"Neither" +5,NA,10022,"turk",5,0,1,4,99,99,NA,"Neither" +5,NA,10022,"turk",5,0,1,5,99,99,NA,"Neither" +5,NA,10025,"turk",1,0,80,1,20,NA,NA,"Democrat" +5,NA,10025,"turk",1,0,20,2,80,20,NA,"Democrat" +5,NA,10025,"turk",1,0,10,3,90,80,NA,"Democrat" +5,NA,10025,"turk",1,0,10,4,90,90,NA,"Democrat" +5,NA,10025,"turk",1,0,10,5,90,90,NA,"Democrat" +5,NA,10026,"turk",2,0,2,1,98,NA,NA,"Neither" +5,NA,10027,"turk",2,0,10,1,90,NA,NA,"Republican" +5,NA,10028,"turk",3,0,80,1,20,NA,NA,"Republican" +5,NA,10034,"turk",3,0,40,1,60,NA,NA,"Neither" +5,NA,10037,"turk",3,0,5,1,95,NA,NA,"Democrat" +5,NA,10038,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10039,"turk",2,0,10,1,90,NA,NA,"Democrat" +5,NA,10040,"turk",4,0,78,1,22,NA,NA,"Democrat" +5,NA,10042,"turk",2,0,50,1,50,NA,NA,"Democrat" +5,NA,10043,"turk",3,0,33,1,67,NA,NA,"Democrat" +5,NA,10044,"turk",3,0,20,1,80,NA,NA,"Republican" +5,NA,10045,"turk",5,0,75,1,25,NA,NA,"Neither" +5,NA,10045,"turk",5,0,10,2,90,25,NA,"Neither" +5,NA,10045,"turk",5,0,1,3,99,90,NA,"Neither" +5,NA,10045,"turk",5,0,1,4,99,99,NA,"Neither" +5,NA,10045,"turk",5,0,1,5,99,99,NA,"Neither" +5,NA,10046,"turk",2,0,3,1,97,NA,NA,"Neither" +5,NA,10050,"turk",3,0,60,1,40,NA,NA,"Democrat" +5,NA,10051,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10056,"turk",2,0,25,1,75,NA,NA,"Republican" +5,NA,10057,"turk",2,0,50,1,50,NA,NA,"Republican" +5,NA,10058,"turk",4,0,1,1,99,NA,NA,"Republican" +5,NA,10060,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,10062,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10063,"turk",3,0,50,1,50,NA,NA,"Republican" +5,NA,10064,"turk",4,0,99,1,1,NA,NA,"Republican" +5,NA,10066,"turk",2,0,50,1,50,NA,NA,"Democrat" +5,NA,10069,"turk",3,0,33,1,67,NA,NA,"Republican" +5,NA,10073,"turk",2,0,40,1,60,NA,NA,"Neither" +5,NA,10074,"turk",3,0,20,1,80,NA,NA,"Democrat" +5,NA,10075,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10077,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10078,"turk",2,0,50,1,50,NA,NA,"Republican" +5,NA,10079,"turk",4,0,70,1,30,NA,NA,"Republican" +5,NA,10082,"turk",3,0,99,1,1,NA,NA,"Neither" +5,NA,10086,"turk",4,0,0,1,100,NA,NA,"Neither" +5,NA,10087,"turk",2,0,15,1,85,NA,NA,"Neither" +5,NA,10091,"turk",2,0,40,1,60,NA,NA,"Democrat" +5,NA,10093,"turk",1,0,65,1,35,NA,NA,"Democrat" +5,NA,10093,"turk",1,0,99,2,1,35,NA,"Democrat" +5,NA,10093,"turk",1,0,65,3,35,1,NA,"Democrat" +5,NA,10093,"turk",1,0,1,4,99,35,NA,"Democrat" +5,NA,10093,"turk",1,0,50,5,50,99,NA,"Democrat" +5,NA,10096,"turk",5,0,99,1,1,NA,NA,"Democrat" +5,NA,10096,"turk",5,0,1,2,99,1,NA,"Democrat" +5,NA,10096,"turk",5,0,1,3,99,99,NA,"Democrat" +5,NA,10096,"turk",5,0,1,4,99,99,NA,"Democrat" +5,NA,10096,"turk",5,0,1,5,99,99,NA,"Democrat" +5,NA,10098,"turk",3,0,15,1,85,NA,NA,"Neither" +5,NA,10099,"turk",5,0,50,1,50,NA,NA,"Democrat" +5,NA,10099,"turk",5,0,10,2,90,50,NA,"Democrat" +5,NA,10099,"turk",5,0,1,3,99,90,NA,"Democrat" +5,NA,10099,"turk",5,0,1,4,99,99,NA,"Democrat" +5,NA,10099,"turk",5,0,1,5,99,99,NA,"Democrat" +5,NA,10101,"turk",1,0,75,1,25,NA,NA,"Democrat" +5,NA,10101,"turk",1,0,99,2,1,25,NA,"Democrat" +5,NA,10101,"turk",1,0,99,3,1,1,NA,"Democrat" +5,NA,10101,"turk",1,0,99,4,1,1,NA,"Democrat" +5,NA,10101,"turk",1,0,75,5,25,1,NA,"Democrat" +5,NA,10102,"turk",3,0,10,1,90,NA,NA,"Democrat" +5,NA,10104,"turk",4,0,25,1,75,NA,NA,"Democrat" +5,NA,10105,"turk",4,0,30,1,70,NA,NA,"Democrat" +5,NA,10112,"turk",5,0,65,1,35,NA,NA,"Democrat" +5,NA,10112,"turk",5,0,66,2,34,35,NA,"Democrat" +5,NA,10112,"turk",5,0,1,3,99,34,NA,"Democrat" +5,NA,10112,"turk",5,0,1,4,99,99,NA,"Democrat" +5,NA,10112,"turk",5,0,0,5,100,99,NA,"Democrat" +5,NA,10113,"turk",3,0,1,1,99,NA,NA,"Republican" +5,NA,10115,"turk",4,0,38,1,62,NA,NA,"Republican" +5,NA,10117,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10118,"turk",4,0,87,1,13,NA,NA,"Democrat" +5,NA,10119,"turk",4,0,1,1,99,NA,NA,"Neither" +5,NA,10121,"turk",3,0,50,1,50,NA,NA,"Neither" +5,NA,10122,"turk",3,0,60,1,40,NA,NA,"Democrat" +5,NA,10127,"turk",1,0,1,1,99,NA,NA,"Republican" +5,NA,10127,"turk",1,0,1,2,99,99,NA,"Republican" +5,NA,10127,"turk",1,0,1,3,99,99,NA,"Republican" +5,NA,10127,"turk",1,0,1,4,99,99,NA,"Republican" +5,NA,10127,"turk",1,0,1,5,99,99,NA,"Republican" +5,NA,10130,"turk",2,0,20,1,80,NA,NA,"Neither" +5,NA,10133,"turk",3,0,80,1,20,NA,NA,"Democrat" +5,NA,10134,"turk",2,0,10,1,90,NA,NA,"Republican" +5,NA,10135,"turk",1,0,60,1,40,NA,NA,"Democrat" +5,NA,10135,"turk",1,0,30,2,70,40,NA,"Democrat" +5,NA,10135,"turk",1,0,60,3,40,70,NA,"Democrat" +5,NA,10135,"turk",1,0,1,4,99,40,NA,"Democrat" +5,NA,10135,"turk",1,0,1,5,99,99,NA,"Democrat" +5,NA,10138,"turk",5,0,60,1,40,NA,NA,"Democrat" +5,NA,10138,"turk",5,0,35,2,65,40,NA,"Democrat" +5,NA,10138,"turk",5,0,1,3,99,65,NA,"Democrat" +5,NA,10138,"turk",5,0,0,4,100,99,NA,"Democrat" +5,NA,10138,"turk",5,0,1,5,99,100,NA,"Democrat" +5,NA,10139,"turk",1,0,82,1,18,NA,NA,"Republican" +5,NA,10139,"turk",1,0,50,2,50,18,NA,"Republican" +5,NA,10139,"turk",1,0,50,3,50,50,NA,"Republican" +5,NA,10139,"turk",1,0,30,4,70,50,NA,"Republican" +5,NA,10139,"turk",1,0,30,5,70,70,NA,"Republican" +5,NA,10141,"turk",1,0,50,1,50,NA,NA,"Republican" +5,NA,10141,"turk",1,0,1,2,99,50,NA,"Republican" +5,NA,10141,"turk",1,0,1,3,99,99,NA,"Republican" +5,NA,10141,"turk",1,0,1,4,99,99,NA,"Republican" +5,NA,10141,"turk",1,0,1,5,99,99,NA,"Republican" +5,NA,10145,"turk",5,0,50,1,50,NA,NA,"Democrat" +5,NA,10145,"turk",5,0,70,2,30,50,NA,"Democrat" +5,NA,10145,"turk",5,0,50,3,50,30,NA,"Democrat" +5,NA,10145,"turk",5,0,1,4,99,50,NA,"Democrat" +5,NA,10145,"turk",5,0,1,5,99,99,NA,"Democrat" +5,NA,10147,"turk",2,0,30,1,70,NA,NA,"Democrat" +5,NA,10148,"turk",3,0,99,1,1,NA,NA,"Republican" +5,NA,10151,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10152,"turk",3,0,50,1,50,NA,NA,"Neither" +5,NA,10154,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10158,"turk",3,0,40,1,60,NA,NA,"Democrat" +5,NA,10161,"turk",3,0,2,1,98,NA,NA,"Republican" +5,NA,10163,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10165,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10166,"turk",3,0,55,1,45,NA,NA,"Democrat" +5,NA,10167,"turk",2,0,88,1,12,NA,NA,"Democrat" +5,NA,10169,"turk",1,0,60,1,40,NA,NA,"Republican" +5,NA,10169,"turk",1,0,30,2,70,40,NA,"Republican" +5,NA,10169,"turk",1,0,10,3,90,70,NA,"Republican" +5,NA,10169,"turk",1,0,5,4,95,90,NA,"Republican" +5,NA,10169,"turk",1,0,1,5,99,95,NA,"Republican" +5,NA,10170,"turk",3,0,0,1,100,NA,NA,"Neither" +5,NA,10171,"turk",2,0,50,1,50,NA,NA,"Democrat" +5,NA,10172,"turk",1,0,75,1,25,NA,NA,"Republican" +5,NA,10172,"turk",1,0,80,2,20,25,NA,"Republican" +5,NA,10172,"turk",1,0,80,3,20,20,NA,"Republican" +5,NA,10172,"turk",1,0,8,4,92,20,NA,"Republican" +5,NA,10172,"turk",1,0,1,5,99,92,NA,"Republican" +5,NA,10174,"turk",4,0,80,1,20,NA,NA,"Democrat" +5,NA,10178,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10182,"turk",4,0,45,1,55,NA,NA,"Democrat" +5,NA,10183,"turk",2,0,0,1,100,NA,NA,"" +5,NA,10184,"turk",3,0,0,1,100,NA,NA,"Republican" +5,NA,10186,"turk",3,0,25,1,75,NA,NA,"Democrat" +5,NA,10187,"turk",5,0,70,1,30,NA,NA,"Democrat" +5,NA,10187,"turk",5,0,15,2,85,30,NA,"Democrat" +5,NA,10187,"turk",5,0,15,3,85,85,NA,"Democrat" +5,NA,10187,"turk",5,0,15,4,85,85,NA,"Democrat" +5,NA,10187,"turk",5,0,15,5,85,85,NA,"Democrat" +5,NA,10190,"turk",3,0,1,1,99,NA,NA,"Democrat" +5,NA,10193,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10195,"turk",4,0,25,1,75,NA,NA,"Republican" +5,NA,10196,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10198,"turk",2,0,70,1,30,NA,NA,"Democrat" +5,NA,10206,"turk",5,0,6,1,94,NA,NA,"Democrat" +5,NA,10206,"turk",5,0,2,2,98,94,NA,"Democrat" +5,NA,10206,"turk",5,0,6,3,94,98,NA,"Democrat" +5,NA,10206,"turk",5,0,8,4,92,94,NA,"Democrat" +5,NA,10206,"turk",5,0,15,5,85,92,NA,"Democrat" +5,NA,10207,"turk",4,0,30,1,70,NA,NA,"Republican" +5,NA,10210,"turk",2,0,50,1,50,NA,NA,"Republican" +5,NA,10211,"turk",2,0,10,1,90,NA,NA,"Democrat" +5,NA,10217,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10218,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10222,"turk",3,0,1,1,99,NA,NA,"Neither" +5,NA,10223,"turk",2,0,80,1,20,NA,NA,"Democrat" +5,NA,10225,"turk",3,0,90,1,10,NA,NA,"Republican" +5,NA,10226,"turk",2,0,1,1,99,NA,NA,"Republican" +5,NA,10229,"turk",2,0,1,1,99,NA,NA,"Democrat" +5,NA,10230,"turk",4,0,97,1,3,NA,NA,"Neither" +5,NA,10231,"turk",2,0,1,1,99,NA,NA,"Democrat" +5,NA,10233,"turk",4,0,50,1,50,NA,NA,"Neither" +5,NA,10234,"turk",5,0,76,1,24,NA,NA,"Republican" +5,NA,10234,"turk",5,0,25,2,75,24,NA,"Republican" +5,NA,10234,"turk",5,0,1,3,99,75,NA,"Republican" +5,NA,10234,"turk",5,0,25,4,75,99,NA,"Republican" +5,NA,10234,"turk",5,0,10,5,90,75,NA,"Republican" +5,NA,10236,"turk",3,0,60,1,40,NA,NA,"Democrat" +5,NA,10238,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10239,"turk",3,0,2,1,98,NA,NA,"Republican" +5,NA,10241,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10242,"turk",5,0,99,1,1,NA,NA,"Republican" +5,NA,10242,"turk",5,0,99,2,1,1,NA,"Republican" +5,NA,10242,"turk",5,0,99,3,1,1,NA,"Republican" +5,NA,10242,"turk",5,0,1,4,99,1,NA,"Republican" +5,NA,10242,"turk",5,0,1,5,99,99,NA,"Republican" +5,NA,10243,"turk",4,0,80,1,20,NA,NA,"Republican" +5,NA,10244,"turk",4,0,90,1,10,NA,NA,"Republican" +5,NA,10246,"turk",4,0,1,1,99,NA,NA,"Democrat" +5,NA,10247,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10248,"turk",4,0,55,1,45,NA,NA,"Democrat" +5,NA,10249,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10250,"turk",4,0,33,1,67,NA,NA,"Democrat" +5,NA,10251,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10252,"turk",4,0,50,1,50,NA,NA,"Republican" +5,NA,10253,"turk",1,0,75,1,25,NA,NA,"Democrat" +5,NA,10253,"turk",1,0,35,2,65,25,NA,"Democrat" +5,NA,10253,"turk",1,0,80,3,20,65,NA,"Democrat" +5,NA,10253,"turk",1,0,30,4,70,20,NA,"Democrat" +5,NA,10253,"turk",1,0,85,5,15,70,NA,"Democrat" +5,NA,10254,"turk",3,0,60,1,40,NA,NA,"Democrat" +5,NA,10256,"turk",4,0,50,1,50,NA,NA,"Neither" +5,NA,10270,"turk",5,0,1,1,99,NA,NA,"Republican" +5,NA,10270,"turk",5,0,1,2,99,99,NA,"Republican" +5,NA,10270,"turk",5,0,1,3,99,99,NA,"Republican" +5,NA,10270,"turk",5,0,1,4,99,99,NA,"Republican" +5,NA,10270,"turk",5,0,1,5,99,99,NA,"Republican" +5,NA,10273,"turk",2,0,80,1,20,NA,NA,"Democrat" +5,NA,10277,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10278,"turk",4,0,80,1,20,NA,NA,"Democrat" +5,NA,10280,"turk",2,0,99,1,1,NA,NA,"Republican" +5,NA,10284,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10285,"turk",2,0,1,1,99,NA,NA,"Republican" +5,NA,10289,"turk",2,0,99,1,1,NA,NA,"Republican" +5,NA,10290,"turk",2,0,79,1,21,NA,NA,"Neither" +5,NA,10292,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10295,"turk",2,0,68,1,32,NA,NA,"Democrat" +5,NA,10299,"turk",4,0,75,1,25,NA,NA,"Republican" +5,NA,10302,"turk",4,0,50,1,50,NA,NA,"Republican" +5,NA,10303,"turk",4,0,25,1,75,NA,NA,"Democrat" +5,NA,10304,"turk",4,0,1,1,99,NA,NA,"Democrat" +5,NA,10305,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10306,"turk",2,0,85,1,15,NA,NA,"Democrat" +5,NA,10307,"turk",4,0,50,1,50,NA,NA,"Republican" +5,NA,10308,"turk",1,0,0,1,100,NA,NA,"Democrat" +5,NA,10308,"turk",1,0,0,2,100,100,NA,"Democrat" +5,NA,10308,"turk",1,0,0,3,100,100,NA,"Democrat" +5,NA,10308,"turk",1,0,1,4,99,100,NA,"Democrat" +5,NA,10308,"turk",1,0,1,5,99,99,NA,"Democrat" +5,NA,10314,"turk",3,0,90,1,10,NA,NA,"" +5,NA,10316,"turk",4,0,1,1,99,NA,NA,"Neither" +5,NA,10317,"turk",3,0,80,1,20,NA,NA,"Democrat" +5,NA,10318,"turk",2,0,20,1,80,NA,NA,"Democrat" +5,NA,10319,"turk",4,0,1,1,99,NA,NA,"Neither" +5,NA,10321,"turk",4,0,50,1,50,NA,NA,"Republican" +5,NA,10322,"turk",3,0,3,1,97,NA,NA,"Republican" +5,NA,10323,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10327,"turk",2,0,89,1,11,NA,NA,"Democrat" +5,NA,10330,"turk",2,0,70,1,30,NA,NA,"Democrat" +5,NA,10335,"turk",4,0,60,1,40,NA,NA,"Democrat" +5,NA,10336,"turk",2,0,80,1,20,NA,NA,"Neither" +5,NA,10338,"turk",3,0,1,1,99,NA,NA,"Neither" +5,NA,10340,"turk",4,0,50,1,50,NA,NA,"Neither" +5,NA,10341,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10342,"turk",4,0,60,1,40,NA,NA,"Democrat" +5,NA,10344,"turk",3,0,50,1,50,NA,NA,"Neither" +5,NA,10345,"turk",3,0,99,1,1,NA,NA,"Republican" +5,NA,10346,"turk",4,0,60,1,40,NA,NA,"Democrat" +5,NA,10348,"turk",1,0,80,1,20,NA,NA,"Democrat" +5,NA,10348,"turk",1,0,90,2,10,20,NA,"Democrat" +5,NA,10348,"turk",1,0,95,3,5,10,NA,"Democrat" +5,NA,10348,"turk",1,0,95,4,5,5,NA,"Democrat" +5,NA,10348,"turk",1,0,95,5,5,5,NA,"Democrat" +5,NA,10349,"turk",5,0,35,1,65,NA,NA,"Republican" +5,NA,10349,"turk",5,0,25,2,75,65,NA,"Republican" +5,NA,10349,"turk",5,0,15,3,85,75,NA,"Republican" +5,NA,10349,"turk",5,0,1,4,99,85,NA,"Republican" +5,NA,10349,"turk",5,0,1,5,99,99,NA,"Republican" +5,NA,10352,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,10353,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,10357,"turk",3,0,30,1,70,NA,NA,"Democrat" +5,NA,10359,"turk",4,0,99,1,1,NA,NA,"Republican" +5,NA,10360,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10362,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10365,"turk",4,0,70,1,30,NA,NA,"Republican" +5,NA,10371,"turk",4,0,1,1,99,NA,NA,"Democrat" +5,NA,10375,"turk",3,0,69,1,31,NA,NA,"Democrat" +5,NA,10376,"turk",3,0,1,1,99,NA,NA,"Republican" +5,NA,10379,"turk",5,0,50,1,50,NA,NA,"Democrat" +5,NA,10379,"turk",5,0,89,2,11,50,NA,"Democrat" +5,NA,10379,"turk",5,0,89,3,11,11,NA,"Democrat" +5,NA,10379,"turk",5,0,90,4,10,11,NA,"Democrat" +5,NA,10379,"turk",5,0,91,5,9,10,NA,"Democrat" +5,NA,10384,"turk",2,0,80,1,20,NA,NA,"Democrat" +5,NA,10386,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10387,"turk",1,0,100,1,0,NA,NA,"Democrat" +5,NA,10387,"turk",1,0,0,2,100,0,NA,"Democrat" +5,NA,10387,"turk",1,0,1,3,99,100,NA,"Democrat" +5,NA,10387,"turk",1,0,1,4,99,99,NA,"Democrat" +5,NA,10387,"turk",1,0,1,5,99,99,NA,"Democrat" +5,NA,10392,"turk",2,0,80,1,20,NA,NA,"Democrat" +5,NA,10396,"turk",4,0,22,1,78,NA,NA,"Republican" +5,NA,10397,"turk",3,0,50,1,50,NA,NA,"Neither" +5,NA,10399,"turk",2,0,10,1,90,NA,NA,"Democrat" +5,NA,10402,"turk",3,0,90,1,10,NA,NA,"Democrat" +5,NA,10403,"turk",3,0,50,1,50,NA,NA,"Republican" +5,NA,10405,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10407,"turk",4,0,10,1,90,NA,NA,"Neither" +5,NA,10408,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10410,"turk",2,0,5,1,95,NA,NA,"Democrat" +5,NA,10414,"turk",2,0,99,1,1,NA,NA,"Neither" +5,NA,10417,"turk",2,0,85,1,15,NA,NA,"Neither" +5,NA,10418,"turk",2,0,24,1,76,NA,NA,"Democrat" +5,NA,10421,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10423,"turk",4,0,10,1,90,NA,NA,"Neither" +5,NA,10429,"turk",5,0,70,1,30,NA,NA,"Democrat" +5,NA,10429,"turk",5,0,25,2,75,30,NA,"Democrat" +5,NA,10429,"turk",5,0,40,3,60,75,NA,"Democrat" +5,NA,10429,"turk",5,0,10,4,90,60,NA,"Democrat" +5,NA,10429,"turk",5,0,2,5,98,90,NA,"Democrat" +5,NA,10430,"turk",4,0,65,1,35,NA,NA,"Neither" +5,NA,10431,"turk",4,0,90,1,10,NA,NA,"Republican" +5,NA,10433,"turk",4,0,1,1,99,NA,NA,"Democrat" +5,NA,10434,"turk",3,0,75,1,25,NA,NA,"Democrat" +5,NA,10436,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10440,"turk",2,0,89,1,11,NA,NA,"Democrat" +5,NA,10441,"turk",5,0,80,1,20,NA,NA,"Democrat" +5,NA,10441,"turk",5,0,15,2,85,20,NA,"Democrat" +5,NA,10441,"turk",5,0,10,3,90,85,NA,"Democrat" +5,NA,10441,"turk",5,0,10,4,90,90,NA,"Democrat" +5,NA,10441,"turk",5,0,10,5,90,90,NA,"Democrat" +5,NA,10445,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10446,"turk",2,0,60,1,40,NA,NA,"Democrat" +5,NA,10447,"turk",3,0,1,1,99,NA,NA,"Neither" +5,NA,10452,"turk",2,0,0,1,100,NA,NA,"Neither" +5,NA,10455,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,10456,"turk",3,0,99,1,1,NA,NA,"Democrat" +5,NA,10457,"turk",2,0,45,1,55,NA,NA,"Republican" +5,NA,10460,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10461,"turk",4,0,25,1,75,NA,NA,"Democrat" +5,NA,10463,"turk",4,0,50,1,50,NA,NA,"Republican" +5,NA,10464,"turk",3,0,30,1,70,NA,NA,"Democrat" +5,NA,10465,"turk",1,0,75,1,25,NA,NA,"Democrat" +5,NA,10465,"turk",1,0,75,2,25,25,NA,"Democrat" +5,NA,10465,"turk",1,0,75,3,25,25,NA,"Democrat" +5,NA,10465,"turk",1,0,0,4,100,25,NA,"Democrat" +5,NA,10465,"turk",1,0,75,5,25,100,NA,"Democrat" +5,NA,10466,"turk",2,0,85,1,15,NA,NA,"Neither" +5,NA,10468,"turk",3,0,50,1,50,NA,NA,"Democrat" +5,NA,10469,"turk",4,0,1,1,99,NA,NA,"Neither" +5,NA,10470,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10480,"turk",2,0,33,1,67,NA,NA,"Neither" +5,NA,10481,"turk",3,0,30,1,70,NA,NA,"Neither" +5,NA,10482,"turk",1,0,15,1,85,NA,NA,"Republican" +5,NA,10482,"turk",1,0,99,2,1,85,NA,"Republican" +5,NA,10482,"turk",1,0,75,3,25,1,NA,"Republican" +5,NA,10482,"turk",1,0,0,4,100,25,NA,"Republican" +5,NA,10482,"turk",1,0,50,5,50,100,NA,"Republican" +5,NA,10487,"turk",3,0,20,1,80,NA,NA,"Democrat" +5,NA,10488,"turk",2,0,1,1,99,NA,NA,"Republican" +5,NA,10491,"turk",2,0,65,1,35,NA,NA,"Democrat" +5,NA,10493,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10494,"turk",3,0,60,1,40,NA,NA,"Republican" +5,NA,10495,"turk",3,0,80,1,20,NA,NA,"Neither" +5,NA,10500,"turk",4,0,99,1,1,NA,NA,"Neither" +5,NA,10501,"turk",2,0,20,1,80,NA,NA,"Democrat" +5,NA,10504,"turk",3,0,0,1,100,NA,NA,"Democrat" +5,NA,10508,"turk",4,0,35,1,65,NA,NA,"Democrat" +5,NA,10509,"turk",4,0,50,1,50,NA,NA,"Democrat" +5,NA,10512,"turk",2,0,75,1,25,NA,NA,"Democrat" +5,NA,10513,"turk",2,0,0,1,100,NA,NA,"Republican" +5,NA,10516,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10517,"turk",3,0,50,1,50,NA,NA,"Republican" +5,NA,10519,"turk",4,0,1,1,99,NA,NA,"Republican" +5,NA,10520,"turk",4,0,99,1,1,NA,NA,"Democrat" +5,NA,10521,"turk",2,0,99,1,1,NA,NA,"Democrat" +5,NA,10525,"turk",2,0,1,1,99,NA,NA,"Neither" +5,NA,10526,"turk",3,0,50,1,50,NA,NA,"Neither" +5,NA,10528,"turk",4,0,50,1,50,NA,NA,"Neither" +5,NA,10530,"turk",2,0,65,1,35,NA,NA,"Democrat" +5,NA,10531,"turk",4,0,50,1,50,NA,NA,"Neither" +5,NA,10532,"turk",2,0,65,1,35,NA,NA,"Democrat" +5,NA,10533,"turk",2,0,20,1,80,NA,NA,"Democrat" +5,NA,9742,"turk",2,1,3,1,3,NA,NA,"Neither" +5,NA,9744,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,9745,"turk",2,1,60,1,60,NA,NA,"Republican" +5,NA,9748,"turk",3,1,10,1,10,NA,NA,"Democrat" +5,NA,9750,"turk",4,1,99,1,99,NA,NA,"Republican" +5,NA,9751,"turk",3,1,99,1,99,NA,NA,"Democrat" +5,NA,9752,"turk",4,1,80,1,80,NA,NA,"Democrat" +5,NA,9754,"turk",3,1,5,1,5,NA,NA,"Republican" +5,NA,9757,"turk",3,1,60,1,60,NA,NA,"Democrat" +5,NA,9758,"turk",2,1,50,1,50,NA,NA,"Neither" +5,NA,9760,"turk",2,1,25,1,25,NA,NA,"Neither" +5,NA,9761,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,9762,"turk",2,1,30,1,30,NA,NA,"Neither" +5,NA,9766,"turk",5,1,15,1,15,NA,NA,"Democrat" +5,NA,9766,"turk",5,1,15,2,15,15,NA,"Democrat" +5,NA,9766,"turk",5,1,10,3,10,15,NA,"Democrat" +5,NA,9766,"turk",5,1,10,4,10,10,NA,"Democrat" +5,NA,9766,"turk",5,1,10,5,10,10,NA,"Democrat" +5,NA,9768,"turk",2,1,55,1,55,NA,NA,"Democrat" +5,NA,9769,"turk",3,1,35,1,35,NA,NA,"Democrat" +5,NA,9772,"turk",4,1,45,1,45,NA,NA,"Democrat" +5,NA,9774,"turk",2,1,50,1,50,NA,NA,"Democrat" +5,NA,9775,"turk",3,1,70,1,70,NA,NA,"Neither" +5,NA,9781,"turk",2,1,50,1,50,NA,NA,"Neither" +5,NA,9783,"turk",3,1,70,1,70,NA,NA,"Neither" +5,NA,9786,"turk",5,1,30,1,30,NA,NA,"Democrat" +5,NA,9786,"turk",5,1,50,2,50,30,NA,"Democrat" +5,NA,9786,"turk",5,1,60,3,60,50,NA,"Democrat" +5,NA,9786,"turk",5,1,80,4,80,60,NA,"Democrat" +5,NA,9786,"turk",5,1,75,5,75,80,NA,"Democrat" +5,NA,9788,"turk",3,1,40,1,40,NA,NA,"Democrat" +5,NA,9790,"turk",1,1,5,1,5,NA,NA,"Neither" +5,NA,9790,"turk",1,1,5,2,5,5,NA,"Neither" +5,NA,9790,"turk",1,1,1,3,1,5,NA,"Neither" +5,NA,9790,"turk",1,1,1,4,1,1,NA,"Neither" +5,NA,9790,"turk",1,1,1,5,1,1,NA,"Neither" +5,NA,9793,"turk",3,1,1,1,1,NA,NA,"Neither" +5,NA,9795,"turk",5,1,90,1,90,NA,NA,"Republican" +5,NA,9795,"turk",5,1,99,2,99,90,NA,"Republican" +5,NA,9795,"turk",5,1,90,3,90,99,NA,"Republican" +5,NA,9795,"turk",5,1,99,4,99,90,NA,"Republican" +5,NA,9795,"turk",5,1,95,5,95,99,NA,"Republican" +5,NA,9803,"turk",5,1,1,1,1,NA,NA,"Democrat" +5,NA,9803,"turk",5,1,1,2,1,1,NA,"Democrat" +5,NA,9803,"turk",5,1,1,3,1,1,NA,"Democrat" +5,NA,9803,"turk",5,1,1,4,1,1,NA,"Democrat" +5,NA,9803,"turk",5,1,1,5,1,1,NA,"Democrat" +5,NA,9805,"turk",3,1,50,1,50,NA,NA,"Democrat" +5,NA,9806,"turk",4,1,0,1,0,NA,NA,"Neither" +5,NA,9808,"turk",4,1,50,1,50,NA,NA,"Neither" +5,NA,9810,"turk",1,1,80,1,80,NA,NA,"Democrat" +5,NA,9810,"turk",1,1,80,2,80,80,NA,"Democrat" +5,NA,9810,"turk",1,1,99,3,99,80,NA,"Democrat" +5,NA,9810,"turk",1,1,99,4,99,99,NA,"Democrat" +5,NA,9810,"turk",1,1,99,5,99,99,NA,"Democrat" +5,NA,9811,"turk",5,1,99,1,99,NA,NA,"Republican" +5,NA,9811,"turk",5,1,75,2,75,99,NA,"Republican" +5,NA,9811,"turk",5,1,99,3,99,75,NA,"Republican" +5,NA,9811,"turk",5,1,99,4,99,99,NA,"Republican" +5,NA,9811,"turk",5,1,99,5,99,99,NA,"Republican" +5,NA,9812,"turk",2,1,45,1,45,NA,NA,"Republican" +5,NA,9813,"turk",2,1,50,1,50,NA,NA,"Republican" +5,NA,9816,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,9817,"turk",1,1,99,1,99,NA,NA,"Republican" +5,NA,9817,"turk",1,1,1,2,1,99,NA,"Republican" +5,NA,9817,"turk",1,1,1,3,1,1,NA,"Republican" +5,NA,9817,"turk",1,1,1,4,1,1,NA,"Republican" +5,NA,9817,"turk",1,1,1,5,1,1,NA,"Republican" +5,NA,9819,"turk",4,1,75,1,75,NA,NA,"Republican" +5,NA,9821,"turk",5,1,50,1,50,NA,NA,"Democrat" +5,NA,9821,"turk",5,1,60,2,60,50,NA,"Democrat" +5,NA,9821,"turk",5,1,80,3,80,60,NA,"Democrat" +5,NA,9821,"turk",5,1,75,4,75,80,NA,"Democrat" +5,NA,9821,"turk",5,1,90,5,90,75,NA,"Democrat" +5,NA,9824,"turk",2,1,70,1,70,NA,NA,"Democrat" +5,NA,9825,"turk",3,1,1,1,1,NA,NA,"Neither" +5,NA,9826,"turk",3,1,50,1,50,NA,NA,"Republican" +5,NA,9831,"turk",2,1,75,1,75,NA,NA,"Democrat" +5,NA,9832,"turk",2,1,1,1,1,NA,NA,"Republican" +5,NA,9833,"turk",3,1,80,1,80,NA,NA,"Democrat" +5,NA,9834,"turk",2,1,75,1,75,NA,NA,"Democrat" +5,NA,9835,"turk",3,1,99,1,99,NA,NA,"Democrat" +5,NA,9837,"turk",4,1,1,1,1,NA,NA,"Republican" +5,NA,9838,"turk",2,1,63,1,63,NA,NA,"Democrat" +5,NA,9839,"turk",3,1,50,1,50,NA,NA,"Democrat" +5,NA,9840,"turk",5,1,5,1,5,NA,NA,"Democrat" +5,NA,9840,"turk",5,1,5,2,5,5,NA,"Democrat" +5,NA,9840,"turk",5,1,0,3,0,5,NA,"Democrat" +5,NA,9840,"turk",5,1,0,4,0,0,NA,"Democrat" +5,NA,9840,"turk",5,1,5,5,5,0,NA,"Democrat" +5,NA,9841,"turk",3,1,99,1,99,NA,NA,"Democrat" +5,NA,9844,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,9847,"turk",3,1,99,1,99,NA,NA,"Republican" +5,NA,9848,"turk",3,1,60,1,60,NA,NA,"Neither" +5,NA,9849,"turk",5,1,0,1,0,NA,NA,"Republican" +5,NA,9849,"turk",5,1,99,2,99,0,NA,"Republican" +5,NA,9849,"turk",5,1,99,3,99,99,NA,"Republican" +5,NA,9849,"turk",5,1,99,4,99,99,NA,"Republican" +5,NA,9849,"turk",5,1,99,5,99,99,NA,"Republican" +5,NA,9850,"turk",4,1,75,1,75,NA,NA,"Republican" +5,NA,9851,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,9853,"turk",1,1,85,1,85,NA,NA,"Neither" +5,NA,9853,"turk",1,1,85,2,85,85,NA,"Neither" +5,NA,9853,"turk",1,1,90,3,90,85,NA,"Neither" +5,NA,9853,"turk",1,1,99,4,99,90,NA,"Neither" +5,NA,9853,"turk",1,1,99,5,99,99,NA,"Neither" +5,NA,9854,"turk",3,1,25,1,25,NA,NA,"Neither" +5,NA,9857,"turk",4,1,1,1,1,NA,NA,"Democrat" +5,NA,9858,"turk",2,1,99,1,99,NA,NA,"Republican" +5,NA,9863,"turk",3,1,30,1,30,NA,NA,"Neither" +5,NA,9865,"turk",2,1,50,1,50,NA,NA,"Neither" +5,NA,9872,"turk",5,1,30,1,30,NA,NA,"Republican" +5,NA,9872,"turk",5,1,70,2,70,30,NA,"Republican" +5,NA,9872,"turk",5,1,70,3,70,70,NA,"Republican" +5,NA,9872,"turk",5,1,70,4,70,70,NA,"Republican" +5,NA,9872,"turk",5,1,90,5,90,70,NA,"Republican" +5,NA,9874,"turk",1,1,60,1,60,NA,NA,"Democrat" +5,NA,9874,"turk",1,1,80,2,80,60,NA,"Democrat" +5,NA,9874,"turk",1,1,66,3,66,80,NA,"Democrat" +5,NA,9874,"turk",1,1,80,4,80,66,NA,"Democrat" +5,NA,9874,"turk",1,1,99,5,99,80,NA,"Democrat" +5,NA,9878,"turk",3,1,80,1,80,NA,NA,"Republican" +5,NA,9879,"turk",2,1,40,1,40,NA,NA,"Democrat" +5,NA,9883,"turk",4,1,50,1,50,NA,NA,"Republican" +5,NA,9887,"turk",2,1,1,1,1,NA,NA,"Republican" +5,NA,9888,"turk",3,1,99,1,99,NA,NA,"Republican" +5,NA,9890,"turk",3,1,50,1,50,NA,NA,"Republican" +5,NA,9891,"turk",4,1,90,1,90,NA,NA,"Democrat" +5,NA,9894,"turk",2,1,70,1,70,NA,NA,"Democrat" +5,NA,9895,"turk",3,1,99,1,99,NA,NA,"Neither" +5,NA,9896,"turk",2,1,25,1,25,NA,NA,"Neither" +5,NA,9899,"turk",2,1,75,1,75,NA,NA,"Democrat" +5,NA,9900,"turk",3,1,88,1,88,NA,NA,"Democrat" +5,NA,9903,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,9908,"turk",4,1,25,1,25,NA,NA,"Democrat" +5,NA,9910,"turk",4,1,1,1,1,NA,NA,"Democrat" +5,NA,9914,"turk",2,1,40,1,40,NA,NA,"Republican" +5,NA,9916,"turk",4,1,1,1,1,NA,NA,"Republican" +5,NA,9919,"turk",1,1,99,1,99,NA,NA,"Democrat" +5,NA,9919,"turk",1,1,99,2,99,99,NA,"Democrat" +5,NA,9919,"turk",1,1,99,3,99,99,NA,"Democrat" +5,NA,9919,"turk",1,1,1,4,1,99,NA,"Democrat" +5,NA,9919,"turk",1,1,1,5,1,1,NA,"Democrat" +5,NA,9920,"turk",4,1,99,1,99,NA,NA,"Republican" +5,NA,9921,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,9923,"turk",5,1,2,1,2,NA,NA,"Neither" +5,NA,9923,"turk",5,1,99,2,99,2,NA,"Neither" +5,NA,9923,"turk",5,1,99,3,99,99,NA,"Neither" +5,NA,9923,"turk",5,1,99,4,99,99,NA,"Neither" +5,NA,9923,"turk",5,1,99,5,99,99,NA,"Neither" +5,NA,9924,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,9925,"turk",4,1,55,1,55,NA,NA,"Democrat" +5,NA,9926,"turk",3,1,50,1,50,NA,NA,"Republican" +5,NA,9927,"turk",4,1,75,1,75,NA,NA,"Republican" +5,NA,9931,"turk",4,1,70,1,70,NA,NA,"Neither" +5,NA,9932,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,9933,"turk",4,1,10,1,10,NA,NA,"Republican" +5,NA,9936,"turk",4,1,90,1,90,NA,NA,"Republican" +5,NA,9940,"turk",3,1,5,1,5,NA,NA,"Democrat" +5,NA,9941,"turk",5,1,60,1,60,NA,NA,"Republican" +5,NA,9941,"turk",5,1,65,2,65,60,NA,"Republican" +5,NA,9941,"turk",5,1,65,3,65,65,NA,"Republican" +5,NA,9941,"turk",5,1,75,4,75,65,NA,"Republican" +5,NA,9941,"turk",5,1,90,5,90,75,NA,"Republican" +5,NA,9942,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,9943,"turk",5,1,30,1,30,NA,NA,"Republican" +5,NA,9943,"turk",5,1,60,2,60,30,NA,"Republican" +5,NA,9943,"turk",5,1,80,3,80,60,NA,"Republican" +5,NA,9943,"turk",5,1,90,4,90,80,NA,"Republican" +5,NA,9943,"turk",5,1,90,5,90,90,NA,"Republican" +5,NA,9944,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,9945,"turk",1,1,99,1,99,NA,NA,"Democrat" +5,NA,9945,"turk",1,1,99,2,99,99,NA,"Democrat" +5,NA,9945,"turk",1,1,99,3,99,99,NA,"Democrat" +5,NA,9945,"turk",1,1,99,4,99,99,NA,"Democrat" +5,NA,9945,"turk",1,1,99,5,99,99,NA,"Democrat" +5,NA,9946,"turk",4,1,75,1,75,NA,NA,"Democrat" +5,NA,9953,"turk",3,1,1,1,1,NA,NA,"Neither" +5,NA,9955,"turk",2,1,75,1,75,NA,NA,"Republican" +5,NA,9957,"turk",3,1,99,1,99,NA,NA,"Republican" +5,NA,9958,"turk",2,1,75,1,75,NA,NA,"Republican" +5,NA,9959,"turk",3,1,30,1,30,NA,NA,"Democrat" +5,NA,9963,"turk",2,1,1,1,1,NA,NA,"Republican" +5,NA,9971,"turk",2,1,90,1,90,NA,NA,"Democrat" +5,NA,9972,"turk",4,1,1,1,1,NA,NA,"Democrat" +5,NA,9974,"turk",4,1,35,1,35,NA,NA,"Democrat" +5,NA,9975,"turk",2,1,80,1,80,NA,NA,"Democrat" +5,NA,9977,"turk",4,1,100,1,100,NA,NA,"Neither" +5,NA,9982,"turk",2,1,60,1,60,NA,NA,"Republican" +5,NA,9983,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,9986,"turk",2,1,80,1,80,NA,NA,"Democrat" +5,NA,9989,"turk",4,1,25,1,25,NA,NA,"Democrat" +5,NA,9991,"turk",4,1,60,1,60,NA,NA,"Neither" +5,NA,9992,"turk",4,1,1,1,1,NA,NA,"Republican" +5,NA,9993,"turk",2,1,40,1,40,NA,NA,"Neither" +5,NA,9995,"turk",1,1,85,1,85,NA,NA,"Republican" +5,NA,9995,"turk",1,1,90,2,90,85,NA,"Republican" +5,NA,9995,"turk",1,1,95,3,95,90,NA,"Republican" +5,NA,9995,"turk",1,1,98,4,98,95,NA,"Republican" +5,NA,9995,"turk",1,1,99,5,99,98,NA,"Republican" +5,NA,9997,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,9998,"turk",2,1,50,1,50,NA,NA,"Democrat" +5,NA,9999,"turk",3,1,30,1,30,NA,NA,"Democrat" +5,NA,10000,"turk",2,1,75,1,75,NA,NA,"Democrat" +5,NA,10001,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10003,"turk",2,1,50,1,50,NA,NA,"Democrat" +5,NA,10004,"turk",1,1,99,1,99,NA,NA,"Democrat" +5,NA,10004,"turk",1,1,1,2,1,99,NA,"Democrat" +5,NA,10004,"turk",1,1,99,3,99,1,NA,"Democrat" +5,NA,10004,"turk",1,1,1,4,1,99,NA,"Democrat" +5,NA,10004,"turk",1,1,1,5,1,1,NA,"Democrat" +5,NA,10012,"turk",4,1,60,1,60,NA,NA,"Neither" +5,NA,10013,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10014,"turk",2,1,10,1,10,NA,NA,"Republican" +5,NA,10016,"turk",5,1,1,1,1,NA,NA,"Neither" +5,NA,10016,"turk",5,1,1,2,1,1,NA,"Neither" +5,NA,10016,"turk",5,1,1,3,1,1,NA,"Neither" +5,NA,10016,"turk",5,1,99,4,99,1,NA,"Neither" +5,NA,10016,"turk",5,1,99,5,99,99,NA,"Neither" +5,NA,10019,"turk",3,1,90,1,90,NA,NA,"Neither" +5,NA,10020,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,10023,"turk",4,1,25,1,25,NA,NA,"Republican" +5,NA,10030,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10031,"turk",2,1,20,1,20,NA,NA,"Neither" +5,NA,10032,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10035,"turk",4,1,70,1,70,NA,NA,"Democrat" +5,NA,10048,"turk",3,1,80,1,80,NA,NA,"Democrat" +5,NA,10049,"turk",3,1,20,1,20,NA,NA,"Democrat" +5,NA,10052,"turk",2,1,100,1,100,NA,NA,"Democrat" +5,NA,10053,"turk",4,1,50,1,50,NA,NA,"Republican" +5,NA,10054,"turk",3,1,99,1,99,NA,NA,"Democrat" +5,NA,10055,"turk",2,1,25,1,25,NA,NA,"Republican" +5,NA,10059,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10061,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,10065,"turk",3,1,80,1,80,NA,NA,"Democrat" +5,NA,10067,"turk",4,1,1,1,1,NA,NA,"Democrat" +5,NA,10070,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10071,"turk",3,1,1,1,1,NA,NA,"Republican" +5,NA,10072,"turk",2,1,70,1,70,NA,NA,"Democrat" +5,NA,10076,"turk",1,1,50,1,50,NA,NA,"Neither" +5,NA,10076,"turk",1,1,99,2,99,50,NA,"Neither" +5,NA,10076,"turk",1,1,75,3,75,99,NA,"Neither" +5,NA,10076,"turk",1,1,99,4,99,75,NA,"Neither" +5,NA,10076,"turk",1,1,99,5,99,99,NA,"Neither" +5,NA,10083,"turk",2,1,1,1,1,NA,NA,"Republican" +5,NA,10084,"turk",4,1,85,1,85,NA,NA,"Neither" +5,NA,10088,"turk",2,1,25,1,25,NA,NA,"Republican" +5,NA,10089,"turk",4,1,99,1,99,NA,NA,"Neither" +5,NA,10090,"turk",3,1,50,1,50,NA,NA,"Democrat" +5,NA,10092,"turk",2,1,1,1,1,NA,NA,"Neither" +5,NA,10094,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,10095,"turk",2,1,80,1,80,NA,NA,"Democrat" +5,NA,10100,"turk",4,1,40,1,40,NA,NA,"Democrat" +5,NA,10103,"turk",4,1,60,1,60,NA,NA,"Democrat" +5,NA,10106,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,10107,"turk",2,1,80,1,80,NA,NA,"Democrat" +5,NA,10109,"turk",2,1,100,1,100,NA,NA,"Democrat" +5,NA,10110,"turk",5,1,78,1,78,NA,NA,"Republican" +5,NA,10110,"turk",5,1,99,2,99,78,NA,"Republican" +5,NA,10110,"turk",5,1,20,3,20,99,NA,"Republican" +5,NA,10110,"turk",5,1,5,4,5,20,NA,"Republican" +5,NA,10110,"turk",5,1,80,5,80,5,NA,"Republican" +5,NA,10111,"turk",5,1,1,1,1,NA,NA,"Neither" +5,NA,10111,"turk",5,1,1,2,1,1,NA,"Neither" +5,NA,10111,"turk",5,1,1,3,1,1,NA,"Neither" +5,NA,10111,"turk",5,1,1,4,1,1,NA,"Neither" +5,NA,10111,"turk",5,1,99,5,99,1,NA,"Neither" +5,NA,10114,"turk",1,1,99,1,99,NA,NA,"Republican" +5,NA,10114,"turk",1,1,1,2,1,99,NA,"Republican" +5,NA,10114,"turk",1,1,1,3,1,1,NA,"Republican" +5,NA,10114,"turk",1,1,0,4,0,1,NA,"Republican" +5,NA,10114,"turk",1,1,1,5,1,0,NA,"Republican" +5,NA,10123,"turk",5,1,40,1,40,NA,NA,"Republican" +5,NA,10123,"turk",5,1,50,2,50,40,NA,"Republican" +5,NA,10123,"turk",5,1,70,3,70,50,NA,"Republican" +5,NA,10123,"turk",5,1,99,4,99,70,NA,"Republican" +5,NA,10123,"turk",5,1,99,5,99,99,NA,"Republican" +5,NA,10124,"turk",3,1,99,1,99,NA,NA,"Republican" +5,NA,10125,"turk",3,1,50,1,50,NA,NA,"Democrat" +5,NA,10128,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,10129,"turk",4,1,1,1,1,NA,NA,"Democrat" +5,NA,10132,"turk",5,1,22,1,22,NA,NA,"Republican" +5,NA,10132,"turk",5,1,22,2,22,22,NA,"Republican" +5,NA,10132,"turk",5,1,22,3,22,22,NA,"Republican" +5,NA,10132,"turk",5,1,22,4,22,22,NA,"Republican" +5,NA,10132,"turk",5,1,22,5,22,22,NA,"Republican" +5,NA,10136,"turk",3,1,79,1,79,NA,NA,"Democrat" +5,NA,10137,"turk",4,1,70,1,70,NA,NA,"Democrat" +5,NA,10140,"turk",1,1,30,1,30,NA,NA,"Democrat" +5,NA,10140,"turk",1,1,75,2,75,30,NA,"Democrat" +5,NA,10140,"turk",1,1,75,3,75,75,NA,"Democrat" +5,NA,10140,"turk",1,1,75,4,75,75,NA,"Democrat" +5,NA,10140,"turk",1,1,75,5,75,75,NA,"Democrat" +5,NA,10142,"turk",3,1,50,1,50,NA,NA,"Republican" +5,NA,10143,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10144,"turk",2,1,60,1,60,NA,NA,"Democrat" +5,NA,10146,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10149,"turk",3,1,0,1,0,NA,NA,"Republican" +5,NA,10150,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,10153,"turk",4,1,20,1,20,NA,NA,"Republican" +5,NA,10155,"turk",1,1,70,1,70,NA,NA,"Republican" +5,NA,10155,"turk",1,1,1,2,1,70,NA,"Republican" +5,NA,10155,"turk",1,1,1,3,1,1,NA,"Republican" +5,NA,10155,"turk",1,1,70,4,70,1,NA,"Republican" +5,NA,10155,"turk",1,1,70,5,70,70,NA,"Republican" +5,NA,10156,"turk",3,1,60,1,60,NA,NA,"Democrat" +5,NA,10157,"turk",3,1,50,1,50,NA,NA,"Democrat" +5,NA,10159,"turk",4,1,30,1,30,NA,NA,"Republican" +5,NA,10160,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,10162,"turk",4,1,40,1,40,NA,NA,"Democrat" +5,NA,10168,"turk",4,1,20,1,20,NA,NA,"Democrat" +5,NA,10173,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,10175,"turk",2,1,40,1,40,NA,NA,"Neither" +5,NA,10176,"turk",2,1,80,1,80,NA,NA,"Democrat" +5,NA,10177,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,10179,"turk",2,1,70,1,70,NA,NA,"Republican" +5,NA,10180,"turk",4,1,90,1,90,NA,NA,"Neither" +5,NA,10181,"turk",3,1,99,1,99,NA,NA,"Democrat" +5,NA,10188,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,10189,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10191,"turk",3,1,50,1,50,NA,NA,"Democrat" +5,NA,10192,"turk",2,1,50,1,50,NA,NA,"Republican" +5,NA,10197,"turk",1,1,60,1,60,NA,NA,"Democrat" +5,NA,10197,"turk",1,1,70,2,70,60,NA,"Democrat" +5,NA,10197,"turk",1,1,80,3,80,70,NA,"Democrat" +5,NA,10197,"turk",1,1,30,4,30,80,NA,"Democrat" +5,NA,10197,"turk",1,1,70,5,70,30,NA,"Democrat" +5,NA,10199,"turk",2,1,1,1,1,NA,NA,"Republican" +5,NA,10200,"turk",4,1,20,1,20,NA,NA,"Democrat" +5,NA,10201,"turk",4,1,22,1,22,NA,NA,"Republican" +5,NA,10202,"turk",2,1,50,1,50,NA,NA,"Neither" +5,NA,10203,"turk",5,1,65,1,65,NA,NA,"Republican" +5,NA,10203,"turk",5,1,75,2,75,65,NA,"Republican" +5,NA,10203,"turk",5,1,80,3,80,75,NA,"Republican" +5,NA,10203,"turk",5,1,65,4,65,80,NA,"Republican" +5,NA,10203,"turk",5,1,80,5,80,65,NA,"Republican" +5,NA,10204,"turk",5,1,99,1,99,NA,NA,"Democrat" +5,NA,10204,"turk",5,1,99,2,99,99,NA,"Democrat" +5,NA,10204,"turk",5,1,99,3,99,99,NA,"Democrat" +5,NA,10204,"turk",5,1,99,4,99,99,NA,"Democrat" +5,NA,10204,"turk",5,1,99,5,99,99,NA,"Democrat" +5,NA,10208,"turk",4,1,75,1,75,NA,NA,"Democrat" +5,NA,10212,"turk",4,1,1,1,1,NA,NA,"Democrat" +5,NA,10213,"turk",3,1,25,1,25,NA,NA,"Republican" +5,NA,10214,"turk",4,1,40,1,40,NA,NA,"Neither" +5,NA,10219,"turk",3,1,80,1,80,NA,NA,"Democrat" +5,NA,10220,"turk",4,1,50,1,50,NA,NA,"Republican" +5,NA,10221,"turk",4,1,95,1,95,NA,NA,"Democrat" +5,NA,10224,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,10227,"turk",5,1,50,1,50,NA,NA,"Republican" +5,NA,10227,"turk",5,1,90,2,90,50,NA,"Republican" +5,NA,10227,"turk",5,1,99,3,99,90,NA,"Republican" +5,NA,10227,"turk",5,1,99,4,99,99,NA,"Republican" +5,NA,10227,"turk",5,1,99,5,99,99,NA,"Republican" +5,NA,10228,"turk",4,1,1,1,1,NA,NA,"Neither" +5,NA,10232,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,10237,"turk",1,1,80,1,80,NA,NA,"Democrat" +5,NA,10237,"turk",1,1,20,2,20,80,NA,"Democrat" +5,NA,10237,"turk",1,1,0,3,0,20,NA,"Democrat" +5,NA,10237,"turk",1,1,80,4,80,0,NA,"Democrat" +5,NA,10237,"turk",1,1,85,5,85,80,NA,"Democrat" +5,NA,10240,"turk",2,1,99,1,99,NA,NA,"Neither" +5,NA,10245,"turk",4,1,99,1,99,NA,NA,"Neither" +5,NA,10258,"turk",2,1,25,1,25,NA,NA,"Neither" +5,NA,10259,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,10260,"turk",4,1,99,1,99,NA,NA,"Neither" +5,NA,10261,"turk",4,1,1,1,1,NA,NA,"Neither" +5,NA,10263,"turk",4,1,50,1,50,NA,NA,"Republican" +5,NA,10264,"turk",2,1,99,1,99,NA,NA,"Neither" +5,NA,10265,"turk",4,1,30,1,30,NA,NA,"Republican" +5,NA,10266,"turk",2,1,10,1,10,NA,NA,"Republican" +5,NA,10267,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10268,"turk",3,1,60,1,60,NA,NA,"Democrat" +5,NA,10269,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10271,"turk",4,1,50,1,50,NA,NA,"Republican" +5,NA,10272,"turk",2,1,85,1,85,NA,NA,"Democrat" +5,NA,10275,"turk",4,1,100,1,100,NA,NA,"Democrat" +5,NA,10276,"turk",4,1,50,1,50,NA,NA,"Neither" +5,NA,10279,"turk",1,1,20,1,20,NA,NA,"Democrat" +5,NA,10279,"turk",1,1,40,2,40,20,NA,"Democrat" +5,NA,10279,"turk",1,1,40,3,40,40,NA,"Democrat" +5,NA,10279,"turk",1,1,75,4,75,40,NA,"Democrat" +5,NA,10279,"turk",1,1,70,5,70,75,NA,"Democrat" +5,NA,10281,"turk",2,1,75,1,75,NA,NA,"Democrat" +5,NA,10282,"turk",5,1,80,1,80,NA,NA,"Neither" +5,NA,10282,"turk",5,1,90,2,90,80,NA,"Neither" +5,NA,10282,"turk",5,1,98,3,98,90,NA,"Neither" +5,NA,10282,"turk",5,1,99,4,99,98,NA,"Neither" +5,NA,10282,"turk",5,1,99,5,99,99,NA,"Neither" +5,NA,10286,"turk",1,1,90,1,90,NA,NA,"Republican" +5,NA,10286,"turk",1,1,90,2,90,90,NA,"Republican" +5,NA,10286,"turk",1,1,90,3,90,90,NA,"Republican" +5,NA,10286,"turk",1,1,30,4,30,90,NA,"Republican" +5,NA,10286,"turk",1,1,99,5,99,30,NA,"Republican" +5,NA,10287,"turk",3,1,75,1,75,NA,NA,"Democrat" +5,NA,10288,"turk",2,1,1,1,1,NA,NA,"Neither" +5,NA,10291,"turk",3,1,10,1,10,NA,NA,"Neither" +5,NA,10293,"turk",3,1,65,1,65,NA,NA,"Democrat" +5,NA,10294,"turk",2,1,50,1,50,NA,NA,"Democrat" +5,NA,10296,"turk",4,1,5,1,5,NA,NA,"Republican" +5,NA,10298,"turk",3,1,66,1,66,NA,NA,"Neither" +5,NA,10300,"turk",4,1,80,1,80,NA,NA,"Democrat" +5,NA,10301,"turk",2,1,50,1,50,NA,NA,"Democrat" +5,NA,10309,"turk",2,1,70,1,70,NA,NA,"Republican" +5,NA,10311,"turk",3,1,5,1,5,NA,NA,"Democrat" +5,NA,10312,"turk",4,1,88,1,88,NA,NA,"Democrat" +5,NA,10315,"turk",5,1,99,1,99,NA,NA,"Republican" +5,NA,10315,"turk",5,1,99,2,99,99,NA,"Republican" +5,NA,10315,"turk",5,1,99,3,99,99,NA,"Republican" +5,NA,10315,"turk",5,1,99,4,99,99,NA,"Republican" +5,NA,10315,"turk",5,1,99,5,99,99,NA,"Republican" +5,NA,10320,"turk",1,1,99,1,99,NA,NA,"Republican" +5,NA,10320,"turk",1,1,99,2,99,99,NA,"Republican" +5,NA,10320,"turk",1,1,99,3,99,99,NA,"Republican" +5,NA,10320,"turk",1,1,99,4,99,99,NA,"Republican" +5,NA,10320,"turk",1,1,99,5,99,99,NA,"Republican" +5,NA,10324,"turk",3,1,30,1,30,NA,NA,"Neither" +5,NA,10325,"turk",3,1,99,1,99,NA,NA,"Democrat" +5,NA,10326,"turk",2,1,1,1,1,NA,NA,"Republican" +5,NA,10328,"turk",3,1,50,1,50,NA,NA,"Neither" +5,NA,10329,"turk",4,1,99,1,99,NA,NA,"Republican" +5,NA,10331,"turk",4,1,70,1,70,NA,NA,"Democrat" +5,NA,10333,"turk",1,1,75,1,75,NA,NA,"Neither" +5,NA,10333,"turk",1,1,20,2,20,75,NA,"Neither" +5,NA,10333,"turk",1,1,10,3,10,20,NA,"Neither" +5,NA,10333,"turk",1,1,10,4,10,10,NA,"Neither" +5,NA,10333,"turk",1,1,50,5,50,10,NA,"Neither" +5,NA,10334,"turk",4,1,70,1,70,NA,NA,"Neither" +5,NA,10337,"turk",2,1,50,1,50,NA,NA,"Democrat" +5,NA,10339,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,10343,"turk",4,1,50,1,50,NA,NA,"Republican" +5,NA,10347,"turk",3,1,20,1,20,NA,NA,"Democrat" +5,NA,10350,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10351,"turk",4,1,40,1,40,NA,NA,"Democrat" +5,NA,10354,"turk",2,1,1,1,1,NA,NA,"Neither" +5,NA,10356,"turk",2,1,99,1,99,NA,NA,"Republican" +5,NA,10358,"turk",3,1,1,1,1,NA,NA,"Republican" +5,NA,10361,"turk",2,1,1,1,1,NA,NA,"Neither" +5,NA,10364,"turk",5,1,99,1,99,NA,NA,"Democrat" +5,NA,10364,"turk",5,1,99,2,99,99,NA,"Democrat" +5,NA,10364,"turk",5,1,99,3,99,99,NA,"Democrat" +5,NA,10364,"turk",5,1,99,4,99,99,NA,"Democrat" +5,NA,10364,"turk",5,1,99,5,99,99,NA,"Democrat" +5,NA,10366,"turk",4,1,20,1,20,NA,NA,"Democrat" +5,NA,10367,"turk",2,1,25,1,25,NA,NA,"Republican" +5,NA,10368,"turk",2,1,70,1,70,NA,NA,"Democrat" +5,NA,10369,"turk",3,1,50,1,50,NA,NA,"Republican" +5,NA,10370,"turk",4,1,25,1,25,NA,NA,"Neither" +5,NA,10373,"turk",2,1,10,1,10,NA,NA,"Neither" +5,NA,10374,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,10380,"turk",1,1,99,1,99,NA,NA,"Republican" +5,NA,10380,"turk",1,1,99,2,99,99,NA,"Republican" +5,NA,10380,"turk",1,1,99,3,99,99,NA,"Republican" +5,NA,10380,"turk",1,1,99,4,99,99,NA,"Republican" +5,NA,10380,"turk",1,1,99,5,99,99,NA,"Republican" +5,NA,10381,"turk",2,1,1,1,1,NA,NA,"Democrat" +5,NA,10383,"turk",2,1,58,1,58,NA,NA,"Democrat" +5,NA,10385,"turk",3,1,45,1,45,NA,NA,"Republican" +5,NA,10388,"turk",2,1,70,1,70,NA,NA,"Neither" +5,NA,10389,"turk",2,1,99,1,99,NA,NA,"Neither" +5,NA,10390,"turk",4,1,98,1,98,NA,NA,"Democrat" +5,NA,10391,"turk",4,1,50,1,50,NA,NA,"Neither" +5,NA,10393,"turk",5,1,100,1,100,NA,NA,"Democrat" +5,NA,10393,"turk",5,1,99,2,99,100,NA,"Democrat" +5,NA,10393,"turk",5,1,98,3,98,99,NA,"Democrat" +5,NA,10393,"turk",5,1,97,4,97,98,NA,"Democrat" +5,NA,10393,"turk",5,1,96,5,96,97,NA,"Democrat" +5,NA,10394,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10400,"turk",3,1,70,1,70,NA,NA,"Neither" +5,NA,10404,"turk",4,1,99,1,99,NA,NA,"Republican" +5,NA,10406,"turk",5,1,1,1,1,NA,NA,"Democrat" +5,NA,10406,"turk",5,1,99,2,99,1,NA,"Democrat" +5,NA,10406,"turk",5,1,1,3,1,99,NA,"Democrat" +5,NA,10406,"turk",5,1,1,4,1,1,NA,"Democrat" +5,NA,10406,"turk",5,1,1,5,1,1,NA,"Democrat" +5,NA,10409,"turk",2,1,0,1,0,NA,NA,"Republican" +5,NA,10412,"turk",4,1,65,1,65,NA,NA,"Democrat" +5,NA,10413,"turk",5,1,50,1,50,NA,NA,"Republican" +5,NA,10413,"turk",5,1,60,2,60,50,NA,"Republican" +5,NA,10413,"turk",5,1,70,3,70,60,NA,"Republican" +5,NA,10413,"turk",5,1,90,4,90,70,NA,"Republican" +5,NA,10413,"turk",5,1,95,5,95,90,NA,"Republican" +5,NA,10415,"turk",2,1,95,1,95,NA,NA,"Democrat" +5,NA,10416,"turk",2,1,50,1,50,NA,NA,"Republican" +5,NA,10419,"turk",3,1,80,1,80,NA,NA,"Neither" +5,NA,10422,"turk",5,1,50,1,50,NA,NA,"Democrat" +5,NA,10422,"turk",5,1,50,2,50,50,NA,"Democrat" +5,NA,10422,"turk",5,1,25,3,25,50,NA,"Democrat" +5,NA,10422,"turk",5,1,10,4,10,25,NA,"Democrat" +5,NA,10422,"turk",5,1,1,5,1,10,NA,"Democrat" +5,NA,10424,"turk",2,1,99,1,99,NA,NA,"Republican" +5,NA,10425,"turk",1,1,1,1,1,NA,NA,"Democrat" +5,NA,10425,"turk",1,1,50,2,50,1,NA,"Democrat" +5,NA,10425,"turk",1,1,1,3,1,50,NA,"Democrat" +5,NA,10425,"turk",1,1,1,4,1,1,NA,"Democrat" +5,NA,10425,"turk",1,1,1,5,1,1,NA,"Democrat" +5,NA,10426,"turk",3,1,14,1,14,NA,NA,"Republican" +5,NA,10427,"turk",4,1,80,1,80,NA,NA,"Republican" +5,NA,10428,"turk",4,1,90,1,90,NA,NA,"Republican" +5,NA,10432,"turk",1,1,40,1,40,NA,NA,"Democrat" +5,NA,10432,"turk",1,1,40,2,40,40,NA,"Democrat" +5,NA,10432,"turk",1,1,45,3,45,40,NA,"Democrat" +5,NA,10432,"turk",1,1,10,4,10,45,NA,"Democrat" +5,NA,10432,"turk",1,1,30,5,30,10,NA,"Democrat" +5,NA,10437,"turk",3,1,70,1,70,NA,NA,"Democrat" +5,NA,10438,"turk",4,1,20,1,20,NA,NA,"Republican" +5,NA,10439,"turk",4,1,50,1,50,NA,NA,"Neither" +5,NA,10443,"turk",4,1,20,1,20,NA,NA,"Republican" +5,NA,10444,"turk",4,1,99,1,99,NA,NA,"Republican" +5,NA,10448,"turk",4,1,30,1,30,NA,NA,"Republican" +5,NA,10449,"turk",2,1,50,1,50,NA,NA,"Democrat" +5,NA,10450,"turk",2,1,75,1,75,NA,NA,"Democrat" +5,NA,10451,"turk",5,1,80,1,80,NA,NA,"Republican" +5,NA,10451,"turk",5,1,80,2,80,80,NA,"Republican" +5,NA,10451,"turk",5,1,60,3,60,80,NA,"Republican" +5,NA,10451,"turk",5,1,50,4,50,60,NA,"Republican" +5,NA,10451,"turk",5,1,45,5,45,50,NA,"Republican" +5,NA,10453,"turk",3,1,99,1,99,NA,NA,"Democrat" +5,NA,10458,"turk",4,1,1,1,1,NA,NA,"Republican" +5,NA,10459,"turk",3,1,99,1,99,NA,NA,"Democrat" +5,NA,10462,"turk",3,1,1,1,1,NA,NA,"Republican" +5,NA,10467,"turk",4,1,50,1,50,NA,NA,"Neither" +5,NA,10471,"turk",5,1,50,1,50,NA,NA,"Democrat" +5,NA,10471,"turk",5,1,80,2,80,50,NA,"Democrat" +5,NA,10471,"turk",5,1,90,3,90,80,NA,"Democrat" +5,NA,10471,"turk",5,1,99,4,99,90,NA,"Democrat" +5,NA,10471,"turk",5,1,20,5,20,99,NA,"Democrat" +5,NA,10472,"turk",1,1,50,1,50,NA,NA,"Republican" +5,NA,10472,"turk",1,1,75,2,75,50,NA,"Republican" +5,NA,10472,"turk",1,1,75,3,75,75,NA,"Republican" +5,NA,10472,"turk",1,1,99,4,99,75,NA,"Republican" +5,NA,10472,"turk",1,1,99,5,99,99,NA,"Republican" +5,NA,10473,"turk",2,1,1,1,1,NA,NA,"Democrat" +5,NA,10475,"turk",5,1,0,1,0,NA,NA,"Democrat" +5,NA,10475,"turk",5,1,50,2,50,0,NA,"Democrat" +5,NA,10475,"turk",5,1,50,3,50,50,NA,"Democrat" +5,NA,10475,"turk",5,1,50,4,50,50,NA,"Democrat" +5,NA,10475,"turk",5,1,0,5,0,50,NA,"Democrat" +5,NA,10476,"turk",3,1,25,1,25,NA,NA,"Neither" +5,NA,10477,"turk",4,1,53,1,53,NA,NA,"Republican" +5,NA,10478,"turk",4,1,50,1,50,NA,NA,"Neither" +5,NA,10479,"turk",3,1,90,1,90,NA,NA,"Democrat" +5,NA,10483,"turk",2,1,50,1,50,NA,NA,"Democrat" +5,NA,10486,"turk",3,1,50,1,50,NA,NA,"Neither" +5,NA,10489,"turk",2,1,70,1,70,NA,NA,"Democrat" +5,NA,10490,"turk",4,1,50,1,50,NA,NA,"Democrat" +5,NA,10496,"turk",2,1,80,1,80,NA,NA,"Republican" +5,NA,10497,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10498,"turk",5,1,1,1,1,NA,NA,"Republican" +5,NA,10498,"turk",5,1,50,2,50,1,NA,"Republican" +5,NA,10498,"turk",5,1,75,3,75,50,NA,"Republican" +5,NA,10498,"turk",5,1,75,4,75,75,NA,"Republican" +5,NA,10498,"turk",5,1,80,5,80,75,NA,"Republican" +5,NA,10499,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,10502,"turk",4,1,20,1,20,NA,NA,"Democrat" +5,NA,10503,"turk",5,1,99,1,99,NA,NA,"Democrat" +5,NA,10503,"turk",5,1,99,2,99,99,NA,"Democrat" +5,NA,10503,"turk",5,1,99,3,99,99,NA,"Democrat" +5,NA,10503,"turk",5,1,99,4,99,99,NA,"Democrat" +5,NA,10503,"turk",5,1,99,5,99,99,NA,"Democrat" +5,NA,10506,"turk",3,1,1,1,1,NA,NA,"Democrat" +5,NA,10507,"turk",4,1,99,1,99,NA,NA,"Democrat" +5,NA,10510,"turk",3,1,80,1,80,NA,NA,"Democrat" +5,NA,10514,"turk",2,1,99,1,99,NA,NA,"Democrat" +5,NA,10515,"turk",3,1,1,1,1,NA,NA,"Republican" +5,NA,10518,"turk",3,1,1,1,1,NA,NA,"Republican" +5,NA,10522,"turk",5,1,20,1,20,NA,NA,"Republican" +5,NA,10522,"turk",5,1,5,2,5,20,NA,"Republican" +5,NA,10522,"turk",5,1,5,3,5,5,NA,"Republican" +5,NA,10522,"turk",5,1,60,4,60,5,NA,"Republican" +5,NA,10522,"turk",5,1,99,5,99,60,NA,"Republican" +5,NA,10524,"turk",4,1,0,1,0,NA,NA,"Democrat" +5,NA,10527,"turk",5,1,50,1,50,NA,NA,"Democrat" +5,NA,10527,"turk",5,1,70,2,70,50,NA,"Democrat" +5,NA,10527,"turk",5,1,90,3,90,70,NA,"Democrat" +5,NA,10527,"turk",5,1,99,4,99,90,NA,"Democrat" +5,NA,10527,"turk",5,1,99,5,99,99,NA,"Democrat" +5,NA,10529,"turk",4,1,50,1,50,NA,NA,"Republican" +5,NA,10534,"turk",3,1,98,1,98,NA,NA,"Republican" +5,NA,10535,"turk",4,1,33,1,33,NA,NA,"Republican" +5,1,9743,"turk",2,0,80,3,20,30,"New York Times","Democrat" +5,1,9747,"turk",2,0,60,3,40,40,"New York Times","Neither" +5,1,9753,"turk",4,0,68,4,32,14,"New York Times","Democrat" +5,1,9755,"turk",4,0,75,5,25,40,"New York Times","Republican" +5,1,9756,"turk",4,0,99,5,1,1,"New York Times","Democrat" +5,1,9763,"turk",4,0,1,5,99,55,"New York Times","Neither" +5,1,9764,"turk",4,0,70,3,30,30,"New York Times","Democrat" +5,1,9765,"turk",2,0,99,3,1,1,"New York Times","Neither" +5,1,9767,"turk",3,0,30,4,70,55,"New York Times","Neither" +5,1,9773,"turk",4,0,99,2,1,1,"New York Times","Democrat" +5,1,9776,"turk",4,0,99,4,1,1,"New York Times","Neither" +5,1,9777,"turk",2,0,99,2,1,25,"New York Times","Democrat" +5,1,9778,"turk",2,0,55,3,45,50,"New York Times","Neither" +5,1,9779,"turk",4,0,89,3,11,20,"New York Times","Democrat" +5,1,9784,"turk",4,0,99,2,1,99,"New York Times","Republican" +5,1,9789,"turk",2,0,1,3,99,70,"New York Times","Democrat" +5,1,9791,"turk",4,0,80,2,20,50,"New York Times","Democrat" +5,1,9794,"turk",4,0,20,2,80,80,"New York Times","Democrat" +5,1,9797,"turk",3,0,30,5,70,70,"New York Times","Republican" +5,1,9798,"turk",4,0,95,5,5,10,"New York Times","Democrat" +5,1,9800,"turk",2,0,29,4,71,70,"New York Times","Republican" +5,1,9801,"turk",4,0,80,4,20,30,"New York Times","Neither" +5,1,9804,"turk",2,0,58,5,42,35,"New York Times","Republican" +5,1,9807,"turk",3,0,60,2,40,50,"New York Times","Republican" +5,1,9809,"turk",3,0,20,3,80,85,"New York Times","Neither" +5,1,9814,"turk",3,0,60,2,40,50,"New York Times","Democrat" +5,1,9818,"turk",3,0,99,2,1,70,"New York Times","Republican" +5,1,9820,"turk",4,0,99,3,1,1,"New York Times","Republican" +5,1,9822,"turk",3,0,80,4,20,30,"New York Times","Democrat" +5,1,9827,"turk",3,0,0,2,100,99,"New York Times","Republican" +5,1,9828,"turk",2,0,65,2,35,30,"New York Times","Democrat" +5,1,9829,"turk",2,0,45,4,55,70,"New York Times","Republican" +5,1,9830,"turk",3,0,50,4,50,50,"New York Times","Republican" +5,1,9842,"turk",2,0,90,4,10,10,"New York Times","Democrat" +5,1,9843,"turk",3,0,99,5,1,99,"New York Times","Neither" +5,1,9845,"turk",3,0,80,4,20,20,"New York Times","Neither" +5,1,9846,"turk",3,0,80,5,20,20,"New York Times","Democrat" +5,1,9859,"turk",2,0,75,4,25,10,"New York Times","Democrat" +5,1,9860,"turk",3,0,99,5,1,1,"New York Times","Republican" +5,1,9864,"turk",2,0,99,4,1,1,"New York Times","Republican" +5,1,9866,"turk",4,0,70,3,30,75,"New York Times","Republican" +5,1,9867,"turk",4,0,10,3,90,90,"New York Times","Democrat" +5,1,9868,"turk",3,0,90,5,10,15,"New York Times","Democrat" +5,1,9869,"turk",2,0,0,5,100,1,"New York Times","Republican" +5,1,9871,"turk",4,0,91,2,9,12,"New York Times","Republican" +5,1,9875,"turk",3,0,99,4,1,1,"New York Times","Democrat" +5,1,9877,"turk",2,0,60,5,40,50,"New York Times","Neither" +5,1,9880,"turk",3,0,90,3,10,25,"New York Times","Democrat" +5,1,9881,"turk",4,0,1,5,99,99,"New York Times","Democrat" +5,1,9882,"turk",3,0,65,4,35,40,"New York Times","Democrat" +5,1,9885,"turk",3,0,95,4,5,15,"New York Times","Democrat" +5,1,9886,"turk",2,0,99,4,1,100,"New York Times","Republican" +5,1,9889,"turk",4,0,99,4,1,5,"New York Times","Neither" +5,1,9892,"turk",4,0,65,5,35,35,"New York Times","Democrat" +5,1,9897,"turk",2,0,15,3,85,40,"New York Times","Democrat" +5,1,9898,"turk",2,0,99,5,1,1,"New York Times","Republican" +5,1,9905,"turk",2,0,99,2,1,1,"New York Times","Republican" +5,1,9906,"turk",3,0,90,2,10,99,"New York Times","Democrat" +5,1,9907,"turk",2,0,99,2,1,25,"New York Times","Democrat" +5,1,9911,"turk",3,0,30,4,70,65,"New York Times","Democrat" +5,1,9912,"turk",2,0,80,2,20,60,"New York Times","Democrat" +5,1,9913,"turk",4,0,80,3,20,20,"New York Times","Neither" +5,1,9915,"turk",4,0,1,2,99,99,"New York Times","Democrat" +5,1,9922,"turk",2,0,68,2,32,100,"New York Times","Democrat" +5,1,9928,"turk",4,0,99,5,1,1,"New York Times","Democrat" +5,1,9929,"turk",2,0,25,5,75,75,"New York Times","Neither" +5,1,9930,"turk",2,0,75,5,25,25,"New York Times","Democrat" +5,1,9934,"turk",2,0,75,5,25,25,"New York Times","Democrat" +5,1,9935,"turk",2,0,50,3,50,55,"New York Times","Neither" +5,1,9947,"turk",2,0,99,4,1,1,"New York Times","Democrat" +5,1,9948,"turk",3,0,99,5,1,1,"New York Times","Republican" +5,1,9949,"turk",3,0,68,5,32,35,"New York Times","Neither" +5,1,9951,"turk",4,0,99,5,1,1,"New York Times","Republican" +5,1,9954,"turk",2,0,95,5,5,5,"New York Times","Democrat" +5,1,9956,"turk",3,0,65,3,35,35,"New York Times","Democrat" +5,1,9960,"turk",3,0,70,2,30,40,"New York Times","Democrat" +5,1,9961,"turk",4,0,1,2,99,99,"New York Times","Republican" +5,1,9964,"turk",2,0,20,4,80,65,"New York Times","Democrat" +5,1,9968,"turk",3,0,99,2,1,1,"New York Times","Democrat" +5,1,9969,"turk",4,0,1,2,99,99,"New York Times","Democrat" +5,1,9970,"turk",3,0,100,3,0,0,"New York Times","Republican" +5,1,9973,"turk",2,0,99,3,1,10,"New York Times","Democrat" +5,1,9978,"turk",4,0,99,2,1,1,"New York Times","Republican" +5,1,9979,"turk",2,0,50,4,50,50,"New York Times","Republican" +5,1,9980,"turk",3,0,75,3,25,10,"New York Times","Republican" +5,1,9981,"turk",3,0,40,3,60,95,"New York Times","Democrat" +5,1,9985,"turk",2,0,60,4,40,80,"New York Times","Democrat" +5,1,9987,"turk",2,0,40,4,60,45,"New York Times","Democrat" +5,1,9994,"turk",3,0,99,2,1,50,"New York Times","Democrat" +5,1,10006,"turk",2,0,50,5,50,30,"New York Times","Democrat" +5,1,10007,"turk",2,0,99,3,1,1,"New York Times","Republican" +5,1,10008,"turk",3,0,85,4,15,80,"New York Times","Republican" +5,1,10010,"turk",4,0,80,3,20,30,"New York Times","Democrat" +5,1,10011,"turk",2,0,80,2,20,60,"New York Times","Democrat" +5,1,10015,"turk",3,0,50,2,50,70,"New York Times","Neither" +5,1,10017,"turk",2,0,99,3,1,1,"New York Times","Democrat" +5,1,10021,"turk",3,0,60,2,40,50,"New York Times","Democrat" +5,1,10026,"turk",2,0,99,3,1,40,"New York Times","Neither" +5,1,10027,"turk",2,0,80,3,20,50,"New York Times","Republican" +5,1,10028,"turk",3,0,75,4,25,10,"New York Times","Republican" +5,1,10034,"turk",3,0,80,2,20,60,"New York Times","Neither" +5,1,10037,"turk",3,0,95,2,5,95,"New York Times","Democrat" +5,1,10038,"turk",4,0,1,5,99,99,"New York Times","Democrat" +5,1,10039,"turk",2,0,80,4,20,30,"New York Times","Democrat" +5,1,10040,"turk",4,0,89,4,11,30,"New York Times","Democrat" +5,1,10042,"turk",2,0,95,2,5,50,"New York Times","Democrat" +5,1,10043,"turk",3,0,40,2,60,67,"New York Times","Democrat" +5,1,10044,"turk",3,0,75,4,25,50,"New York Times","Republican" +5,1,10046,"turk",2,0,30,2,70,97,"New York Times","Neither" +5,1,10050,"turk",3,0,90,3,10,10,"New York Times","Democrat" +5,1,10051,"turk",4,0,67,3,33,33,"New York Times","Democrat" +5,1,10056,"turk",2,0,35,4,65,35,"New York Times","Republican" +5,1,10057,"turk",2,0,99,3,1,25,"New York Times","Republican" +5,1,10058,"turk",4,0,1,4,99,50,"New York Times","Republican" +5,1,10060,"turk",3,0,70,3,30,40,"New York Times","Democrat" +5,1,10062,"turk",3,0,1,4,99,99,"New York Times","Democrat" +5,1,10063,"turk",3,0,99,2,1,50,"New York Times","Republican" +5,1,10064,"turk",4,0,99,5,1,1,"New York Times","Republican" +5,1,10066,"turk",2,0,99,3,1,10,"New York Times","Democrat" +5,1,10069,"turk",3,0,75,3,25,67,"New York Times","Republican" +5,1,10073,"turk",2,0,40,2,60,60,"New York Times","Neither" +5,1,10074,"turk",3,0,99,5,1,5,"New York Times","Democrat" +5,1,10075,"turk",3,0,0,2,100,1,"New York Times","Democrat" +5,1,10077,"turk",4,0,85,4,15,20,"New York Times","Democrat" +5,1,10078,"turk",2,0,50,5,50,50,"New York Times","Republican" +5,1,10079,"turk",4,0,95,5,5,10,"New York Times","Republican" +5,1,10082,"turk",3,0,99,2,1,1,"New York Times","Neither" +5,1,10086,"turk",4,0,45,3,55,70,"New York Times","Neither" +5,1,10087,"turk",2,0,79,3,21,55,"New York Times","Neither" +5,1,10091,"turk",2,0,85,3,15,35,"New York Times","Democrat" +5,1,10098,"turk",3,0,80,4,20,25,"New York Times","Neither" +5,1,10102,"turk",3,0,15,2,85,90,"New York Times","Democrat" +5,1,10104,"turk",4,0,95,5,5,15,"New York Times","Democrat" +5,1,10105,"turk",4,0,30,2,70,70,"New York Times","Democrat" +5,1,10113,"turk",3,0,99,4,1,99,"New York Times","Republican" +5,1,10115,"turk",4,0,38,2,62,62,"New York Times","Republican" +5,1,10117,"turk",4,0,99,5,1,20,"New York Times","Democrat" +5,1,10118,"turk",4,0,99,2,1,13,"New York Times","Democrat" +5,1,10119,"turk",4,0,99,5,1,1,"New York Times","Neither" +5,1,10121,"turk",3,0,55,5,45,45,"New York Times","Neither" +5,1,10122,"turk",3,0,80,5,20,20,"New York Times","Democrat" +5,1,10130,"turk",2,0,50,5,50,76,"New York Times","Neither" +5,1,10133,"turk",3,0,90,4,10,10,"New York Times","Democrat" +5,1,10134,"turk",2,0,80,5,20,90,"New York Times","Republican" +5,1,10147,"turk",2,0,65,2,35,70,"New York Times","Democrat" +5,1,10148,"turk",3,0,99,3,1,1,"New York Times","Republican" +5,1,10151,"turk",2,0,99,2,1,1,"New York Times","Democrat" +5,1,10152,"turk",3,0,50,2,50,50,"New York Times","Neither" +5,1,10154,"turk",2,0,80,5,20,1,"New York Times","Democrat" +5,1,10158,"turk",3,0,40,2,60,60,"New York Times","Democrat" +5,1,10161,"turk",3,0,3,2,97,98,"New York Times","Republican" +5,1,10163,"turk",2,0,1,5,99,99,"New York Times","Democrat" +5,1,10165,"turk",3,0,99,5,1,1,"New York Times","Democrat" +5,1,10166,"turk",3,0,75,5,25,20,"New York Times","Democrat" +5,1,10167,"turk",2,0,50,5,50,90,"New York Times","Democrat" +5,1,10170,"turk",3,0,100,4,0,0,"New York Times","Neither" +5,1,10171,"turk",2,0,99,5,1,10,"New York Times","Democrat" +5,1,10174,"turk",4,0,100,3,0,10,"New York Times","Democrat" +5,1,10178,"turk",3,0,99,2,1,1,"New York Times","Democrat" +5,1,10182,"turk",4,0,85,3,15,30,"New York Times","Democrat" +5,1,10183,"turk",2,0,99,4,1,1,"New York Times","" +5,1,10184,"turk",3,0,80,4,20,30,"New York Times","Republican" +5,1,10186,"turk",3,0,15,3,85,64,"New York Times","Democrat" +5,1,10190,"turk",3,0,15,4,85,40,"New York Times","Democrat" +5,1,10193,"turk",4,0,80,5,20,20,"New York Times","Democrat" +5,1,10195,"turk",4,0,60,2,40,75,"New York Times","Republican" +5,1,10196,"turk",4,0,99,3,1,1,"New York Times","Democrat" +5,1,10198,"turk",2,0,99,4,1,1,"New York Times","Democrat" +5,1,10207,"turk",4,0,75,2,25,70,"New York Times","Republican" +5,1,10210,"turk",2,0,99,2,1,50,"New York Times","Republican" +5,1,10211,"turk",2,0,50,4,50,50,"New York Times","Democrat" +5,1,10217,"turk",2,0,99,2,1,1,"New York Times","Democrat" +5,1,10218,"turk",3,0,1,4,99,99,"New York Times","Democrat" +5,1,10222,"turk",3,0,1,5,99,50,"New York Times","Neither" +5,1,10223,"turk",2,0,99,3,1,1,"New York Times","Democrat" +5,1,10225,"turk",3,0,80,2,20,10,"New York Times","Republican" +5,1,10226,"turk",2,0,60,3,40,50,"New York Times","Republican" +5,1,10229,"turk",2,0,1,3,99,99,"New York Times","Democrat" +5,1,10230,"turk",4,0,99,3,1,5,"New York Times","Neither" +5,1,10231,"turk",2,0,99,5,1,1,"New York Times","Democrat" +5,1,10233,"turk",4,0,100,2,0,50,"New York Times","Neither" +5,1,10236,"turk",3,0,75,3,25,30,"New York Times","Democrat" +5,1,10238,"turk",2,0,99,5,1,1,"New York Times","Democrat" +5,1,10239,"turk",3,0,2,3,98,98,"New York Times","Republican" +5,1,10241,"turk",4,0,50,2,50,1,"New York Times","Democrat" +5,1,10243,"turk",4,0,99,3,1,20,"New York Times","Republican" +5,1,10244,"turk",4,0,99,3,1,10,"New York Times","Republican" +5,1,10246,"turk",4,0,50,2,50,99,"New York Times","Democrat" +5,1,10247,"turk",4,0,99,3,1,1,"New York Times","Democrat" +5,1,10248,"turk",4,0,70,3,30,35,"New York Times","Democrat" +5,1,10249,"turk",4,0,60,4,40,45,"New York Times","Democrat" +5,1,10250,"turk",4,0,55,5,45,56,"New York Times","Democrat" +5,1,10251,"turk",2,0,99,3,1,1,"New York Times","Democrat" +5,1,10252,"turk",4,0,99,3,1,30,"New York Times","Republican" +5,1,10254,"turk",3,0,80,2,20,40,"New York Times","Democrat" +5,1,10256,"turk",4,0,99,2,1,50,"New York Times","Neither" +5,1,10273,"turk",2,0,50,4,50,20,"New York Times","Democrat" +5,1,10277,"turk",2,0,99,3,1,1,"New York Times","Democrat" +5,1,10278,"turk",4,0,99,3,1,10,"New York Times","Democrat" +5,1,10280,"turk",2,0,99,4,1,1,"New York Times","Republican" +5,1,10284,"turk",2,0,50,4,50,99,"New York Times","Democrat" +5,1,10285,"turk",2,0,75,4,25,50,"New York Times","Republican" +5,1,10289,"turk",2,0,99,3,1,1,"New York Times","Republican" +5,1,10290,"turk",2,0,44,4,56,1,"New York Times","Neither" +5,1,10292,"turk",4,0,1,5,99,1,"New York Times","Democrat" +5,1,10295,"turk",2,0,90,4,10,14,"New York Times","Democrat" +5,1,10299,"turk",4,0,99,5,1,25,"New York Times","Republican" +5,1,10302,"turk",4,0,75,4,25,25,"New York Times","Republican" +5,1,10303,"turk",4,0,45,2,55,75,"New York Times","Democrat" +5,1,10304,"turk",4,0,1,4,99,99,"New York Times","Democrat" +5,1,10305,"turk",4,0,99,5,1,1,"New York Times","Democrat" +5,1,10306,"turk",2,0,100,4,0,2,"New York Times","Democrat" +5,1,10307,"turk",4,0,85,5,15,25,"New York Times","Republican" +5,1,10314,"turk",3,0,90,5,10,8,"New York Times","" +5,1,10316,"turk",4,0,50,4,50,1,"New York Times","Neither" +5,1,10317,"turk",3,0,90,3,10,20,"New York Times","Democrat" +5,1,10318,"turk",2,0,40,3,60,71,"New York Times","Democrat" +5,1,10319,"turk",4,0,11,5,89,99,"New York Times","Neither" +5,1,10321,"turk",4,0,50,2,50,50,"New York Times","Republican" +5,1,10322,"turk",3,0,50,3,50,97,"New York Times","Republican" +5,1,10323,"turk",4,0,99,3,1,1,"New York Times","Democrat" +5,1,10327,"turk",2,0,89,3,11,11,"New York Times","Democrat" +5,1,10330,"turk",2,0,80,4,20,25,"New York Times","Democrat" +5,1,10335,"turk",4,0,90,3,10,20,"New York Times","Democrat" +5,1,10336,"turk",2,0,90,2,10,20,"New York Times","Neither" +5,1,10338,"turk",3,0,1,4,99,99,"New York Times","Neither" +5,1,10340,"turk",4,0,70,2,30,50,"New York Times","Neither" +5,1,10341,"turk",4,0,60,4,40,40,"New York Times","Democrat" +5,1,10342,"turk",4,0,70,2,30,40,"New York Times","Democrat" +5,1,10344,"turk",3,0,85,3,15,30,"New York Times","Neither" +5,1,10345,"turk",3,0,99,3,1,1,"New York Times","Republican" +5,1,10346,"turk",4,0,95,5,5,10,"New York Times","Democrat" +5,1,10352,"turk",3,0,75,4,25,25,"New York Times","Democrat" +5,1,10353,"turk",3,0,70,2,30,50,"New York Times","Democrat" +5,1,10357,"turk",3,0,50,4,50,40,"New York Times","Democrat" +5,1,10359,"turk",4,0,99,3,1,1,"New York Times","Republican" +5,1,10360,"turk",3,0,99,3,1,1,"New York Times","Democrat" +5,1,10362,"turk",2,0,100,4,0,0,"New York Times","Democrat" +5,1,10365,"turk",4,0,75,2,25,30,"New York Times","Republican" +5,1,10371,"turk",4,0,1,3,99,99,"New York Times","Democrat" +5,1,10375,"turk",3,0,5,4,95,1,"New York Times","Democrat" +5,1,10376,"turk",3,0,1,4,99,99,"New York Times","Republican" +5,1,10384,"turk",2,0,80,2,20,20,"New York Times","Democrat" +5,1,10386,"turk",4,0,99,5,1,1,"New York Times","Democrat" +5,1,10392,"turk",2,0,85,3,15,12,"New York Times","Democrat" +5,1,10396,"turk",4,0,62,4,38,92,"New York Times","Republican" +5,1,10397,"turk",3,0,99,2,1,50,"New York Times","Neither" +5,1,10399,"turk",2,0,1,5,99,98,"New York Times","Democrat" +5,1,10402,"turk",3,0,95,2,5,10,"New York Times","Democrat" +5,1,10403,"turk",3,0,90,4,10,10,"New York Times","Republican" +5,1,10405,"turk",4,0,80,2,20,1,"New York Times","Democrat" +5,1,10407,"turk",4,0,65,4,35,40,"New York Times","Neither" +5,1,10408,"turk",3,0,99,3,1,50,"New York Times","Democrat" +5,1,10410,"turk",2,0,5,5,95,90,"New York Times","Democrat" +5,1,10414,"turk",2,0,33,5,67,45,"New York Times","Neither" +5,1,10417,"turk",2,0,93,3,7,14,"New York Times","Neither" +5,1,10418,"turk",2,0,40,3,60,66,"New York Times","Democrat" +5,1,10421,"turk",3,0,99,4,1,1,"New York Times","Democrat" +5,1,10423,"turk",4,0,10,2,90,90,"New York Times","Neither" +5,1,10430,"turk",4,0,99,2,1,35,"New York Times","Neither" +5,1,10431,"turk",4,0,99,2,1,10,"New York Times","Republican" +5,1,10433,"turk",4,0,1,4,99,99,"New York Times","Democrat" +5,1,10434,"turk",3,0,60,3,40,20,"New York Times","Democrat" +5,1,10436,"turk",2,0,99,3,1,1,"New York Times","Democrat" +5,1,10440,"turk",2,0,23,5,77,55,"New York Times","Democrat" +5,1,10445,"turk",4,0,99,4,1,1,"New York Times","Democrat" +5,1,10446,"turk",2,0,75,5,25,80,"New York Times","Democrat" +5,1,10447,"turk",3,0,99,5,1,99,"New York Times","Neither" +5,1,10452,"turk",2,0,1,3,99,100,"New York Times","Neither" +5,1,10455,"turk",3,0,1,3,99,99,"New York Times","Democrat" +5,1,10456,"turk",3,0,99,3,1,1,"New York Times","Democrat" +5,1,10457,"turk",2,0,65,5,35,35,"New York Times","Republican" +5,1,10460,"turk",2,0,1,3,99,1,"New York Times","Democrat" +5,1,10461,"turk",4,0,90,4,10,30,"New York Times","Democrat" +5,1,10463,"turk",4,0,75,4,25,75,"New York Times","Republican" +5,1,10464,"turk",3,0,50,2,50,70,"New York Times","Democrat" +5,1,10466,"turk",2,0,90,4,10,10,"New York Times","Neither" +5,1,10468,"turk",3,0,50,5,50,50,"New York Times","Democrat" +5,1,10469,"turk",4,0,1,2,99,99,"New York Times","Neither" +5,1,10470,"turk",4,0,99,5,1,1,"New York Times","Democrat" +5,1,10480,"turk",2,0,66,4,34,34,"New York Times","Neither" +5,1,10481,"turk",3,0,70,2,30,70,"New York Times","Neither" +5,1,10487,"turk",3,0,45,4,55,60,"New York Times","Democrat" +5,1,10488,"turk",2,0,100,3,0,99,"New York Times","Republican" +5,1,10491,"turk",2,0,80,3,20,30,"New York Times","Democrat" +5,1,10493,"turk",2,0,99,3,1,1,"New York Times","Democrat" +5,1,10494,"turk",3,0,58,5,42,30,"New York Times","Republican" +5,1,10495,"turk",3,0,85,4,15,15,"New York Times","Neither" +5,1,10500,"turk",4,0,99,5,1,1,"New York Times","Neither" +5,1,10501,"turk",2,0,99,2,1,80,"New York Times","Democrat" +5,1,10504,"turk",3,0,25,3,75,85,"New York Times","Democrat" +5,1,10508,"turk",4,0,20,3,80,65,"New York Times","Democrat" +5,1,10509,"turk",4,0,50,2,50,50,"New York Times","Democrat" +5,1,10512,"turk",2,0,100,2,0,25,"New York Times","Democrat" +5,1,10513,"turk",2,0,50,4,50,50,"New York Times","Republican" +5,1,10516,"turk",4,0,99,3,1,1,"New York Times","Democrat" +5,1,10517,"turk",3,0,50,4,50,50,"New York Times","Republican" +5,1,10519,"turk",4,0,1,4,99,99,"New York Times","Republican" +5,1,10520,"turk",4,0,99,2,1,1,"New York Times","Democrat" +5,1,10521,"turk",2,0,99,3,1,1,"New York Times","Democrat" +5,1,10525,"turk",2,0,1,3,99,99,"New York Times","Neither" +5,1,10526,"turk",3,0,65,5,35,40,"New York Times","Neither" +5,1,10528,"turk",4,0,99,5,1,1,"New York Times","Neither" +5,1,10530,"turk",2,0,55,3,45,30,"New York Times","Democrat" +5,1,10531,"turk",4,0,22,5,78,95,"New York Times","Neither" +5,1,10532,"turk",2,0,90,3,10,25,"New York Times","Democrat" +5,1,10533,"turk",2,0,90,4,10,30,"New York Times","Democrat" +5,1,9742,"turk",2,1,99,2,99,3,"New York Times","Neither" +5,1,9744,"turk",4,1,99,2,99,99,"New York Times","Democrat" +5,1,9745,"turk",2,1,99,2,99,60,"New York Times","Republican" +5,1,9748,"turk",3,1,40,3,40,10,"New York Times","Democrat" +5,1,9750,"turk",4,1,99,4,99,99,"New York Times","Republican" +5,1,9751,"turk",3,1,99,5,99,99,"New York Times","Democrat" +5,1,9752,"turk",4,1,100,4,100,90,"New York Times","Democrat" +5,1,9754,"turk",3,1,95,2,95,5,"New York Times","Republican" +5,1,9757,"turk",3,1,99,3,99,70,"New York Times","Democrat" +5,1,9758,"turk",2,1,100,2,100,50,"New York Times","Neither" +5,1,9760,"turk",2,1,80,5,80,50,"New York Times","Neither" +5,1,9761,"turk",3,1,90,2,90,1,"New York Times","Democrat" +5,1,9762,"turk",2,1,80,5,80,65,"New York Times","Neither" +5,1,9768,"turk",2,1,75,2,75,55,"New York Times","Democrat" +5,1,9769,"turk",3,1,70,4,70,45,"New York Times","Democrat" +5,1,9772,"turk",4,1,60,2,60,45,"New York Times","Democrat" +5,1,9774,"turk",2,1,99,5,99,80,"New York Times","Democrat" +5,1,9775,"turk",3,1,80,2,80,70,"New York Times","Neither" +5,1,9781,"turk",2,1,70,2,70,50,"New York Times","Neither" +5,1,9783,"turk",3,1,99,3,99,80,"New York Times","Neither" +5,1,9788,"turk",3,1,89,5,89,85,"New York Times","Democrat" +5,1,9793,"turk",3,1,50,2,50,1,"New York Times","Neither" +5,1,9805,"turk",3,1,70,3,70,65,"New York Times","Democrat" +5,1,9806,"turk",4,1,90,2,90,0,"New York Times","Neither" +5,1,9808,"turk",4,1,90,5,90,70,"New York Times","Neither" +5,1,9812,"turk",2,1,98,3,98,45,"New York Times","Republican" +5,1,9813,"turk",2,1,99,4,99,99,"New York Times","Republican" +5,1,9816,"turk",2,1,99,3,99,99,"New York Times","Democrat" +5,1,9819,"turk",4,1,99,5,99,90,"New York Times","Republican" +5,1,9824,"turk",2,1,99,4,99,99,"New York Times","Democrat" +5,1,9825,"turk",3,1,1,4,1,1,"New York Times","Neither" +5,1,9826,"turk",3,1,75,3,75,50,"New York Times","Republican" +5,1,9831,"turk",2,1,75,4,75,75,"New York Times","Democrat" +5,1,9832,"turk",2,1,1,2,1,1,"New York Times","Republican" +5,1,9833,"turk",3,1,75,2,75,80,"New York Times","Democrat" +5,1,9834,"turk",2,1,99,4,99,75,"New York Times","Democrat" +5,1,9835,"turk",3,1,99,3,99,99,"New York Times","Democrat" +5,1,9837,"turk",4,1,1,3,1,1,"New York Times","Republican" +5,1,9838,"turk",2,1,50,4,50,56,"New York Times","Democrat" +5,1,9839,"turk",3,1,99,2,99,50,"New York Times","Democrat" +5,1,9841,"turk",3,1,99,3,99,99,"New York Times","Democrat" +5,1,9844,"turk",4,1,99,4,99,99,"New York Times","Democrat" +5,1,9847,"turk",3,1,99,4,99,99,"New York Times","Republican" +5,1,9848,"turk",3,1,60,2,60,60,"New York Times","Neither" +5,1,9850,"turk",4,1,99,5,99,75,"New York Times","Republican" +5,1,9851,"turk",4,1,99,3,99,99,"New York Times","Democrat" +5,1,9854,"turk",3,1,85,4,85,75,"New York Times","Neither" +5,1,9857,"turk",4,1,99,2,99,1,"New York Times","Democrat" +5,1,9858,"turk",2,1,99,4,99,99,"New York Times","Republican" +5,1,9863,"turk",3,1,75,4,75,70,"New York Times","Neither" +5,1,9865,"turk",2,1,50,2,50,50,"New York Times","Neither" +5,1,9878,"turk",3,1,90,2,90,80,"New York Times","Republican" +5,1,9879,"turk",2,1,70,3,70,47,"New York Times","Democrat" +5,1,9883,"turk",4,1,99,5,99,99,"New York Times","Republican" +5,1,9887,"turk",2,1,25,5,25,25,"New York Times","Republican" +5,1,9888,"turk",3,1,99,3,99,99,"New York Times","Republican" +5,1,9890,"turk",3,1,90,5,90,80,"New York Times","Republican" +5,1,9891,"turk",4,1,99,5,99,90,"New York Times","Democrat" +5,1,9894,"turk",2,1,90,2,90,70,"New York Times","Democrat" +5,1,9895,"turk",3,1,99,5,99,99,"New York Times","Neither" +5,1,9896,"turk",2,1,80,3,80,75,"New York Times","Neither" +5,1,9899,"turk",2,1,99,5,99,99,"New York Times","Democrat" +5,1,9900,"turk",3,1,99,4,99,99,"New York Times","Democrat" +5,1,9903,"turk",4,1,90,3,90,75,"New York Times","Democrat" +5,1,9908,"turk",4,1,75,4,75,75,"New York Times","Democrat" +5,1,9910,"turk",4,1,1,3,1,1,"New York Times","Democrat" +5,1,9914,"turk",2,1,99,5,99,90,"New York Times","Republican" +5,1,9916,"turk",4,1,1,4,1,50,"New York Times","Republican" +5,1,9920,"turk",4,1,99,4,99,99,"New York Times","Republican" +5,1,9921,"turk",4,1,99,3,99,99,"New York Times","Democrat" +5,1,9924,"turk",3,1,99,2,99,1,"New York Times","Democrat" +5,1,9925,"turk",4,1,55,5,55,77,"New York Times","Democrat" +5,1,9926,"turk",3,1,50,5,50,99,"New York Times","Republican" +5,1,9927,"turk",4,1,100,2,100,75,"New York Times","Republican" +5,1,9931,"turk",4,1,99,4,99,99,"New York Times","Neither" +5,1,9932,"turk",2,1,99,3,99,99,"New York Times","Democrat" +5,1,9933,"turk",4,1,70,2,70,10,"New York Times","Republican" +5,1,9936,"turk",4,1,80,5,80,90,"New York Times","Republican" +5,1,9940,"turk",3,1,75,3,75,50,"New York Times","Democrat" +5,1,9942,"turk",4,1,100,5,100,100,"New York Times","Democrat" +5,1,9944,"turk",4,1,51,3,51,50,"New York Times","Democrat" +5,1,9946,"turk",4,1,99,4,99,99,"New York Times","Democrat" +5,1,9953,"turk",3,1,60,3,60,40,"New York Times","Neither" +5,1,9955,"turk",2,1,75,3,75,75,"New York Times","Republican" +5,1,9957,"turk",3,1,1,3,1,99,"New York Times","Republican" +5,1,9958,"turk",2,1,90,5,90,90,"New York Times","Republican" +5,1,9959,"turk",3,1,40,3,40,40,"New York Times","Democrat" +5,1,9963,"turk",2,1,25,2,25,1,"New York Times","Republican" +5,1,9971,"turk",2,1,95,2,95,90,"New York Times","Democrat" +5,1,9972,"turk",4,1,50,3,50,50,"New York Times","Democrat" +5,1,9974,"turk",4,1,85,5,85,70,"New York Times","Democrat" +5,1,9975,"turk",2,1,90,3,90,85,"New York Times","Democrat" +5,1,9977,"turk",4,1,100,2,100,100,"New York Times","Neither" +5,1,9982,"turk",2,1,75,2,75,60,"New York Times","Republican" +5,1,9983,"turk",2,1,50,5,50,99,"New York Times","Democrat" +5,1,9986,"turk",2,1,90,3,90,80,"New York Times","Democrat" +5,1,9989,"turk",4,1,35,5,35,35,"New York Times","Democrat" +5,1,9991,"turk",4,1,80,5,80,70,"New York Times","Neither" +5,1,9992,"turk",4,1,50,5,50,50,"New York Times","Republican" +5,1,9993,"turk",2,1,30,5,30,50,"New York Times","Neither" +5,1,9997,"turk",2,1,99,5,99,99,"New York Times","Democrat" +5,1,9998,"turk",2,1,99,5,99,99,"New York Times","Democrat" +5,1,9999,"turk",3,1,90,3,90,70,"New York Times","Democrat" +5,1,10000,"turk",2,1,75,2,75,75,"New York Times","Democrat" +5,1,10001,"turk",2,1,99,2,99,99,"New York Times","Democrat" +5,1,10003,"turk",2,1,70,3,70,60,"New York Times","Democrat" +5,1,10012,"turk",4,1,99,2,99,60,"New York Times","Neither" +5,1,10013,"turk",2,1,99,2,99,99,"New York Times","Democrat" +5,1,10014,"turk",2,1,90,4,90,25,"New York Times","Republican" +5,1,10019,"turk",3,1,95,2,95,90,"New York Times","Neither" +5,1,10020,"turk",4,1,99,4,99,99,"New York Times","Democrat" +5,1,10023,"turk",4,1,25,4,25,25,"New York Times","Republican" +5,1,10030,"turk",2,1,99,5,99,99,"New York Times","Democrat" +5,1,10031,"turk",2,1,75,2,75,20,"New York Times","Neither" +5,1,10032,"turk",2,1,99,5,99,50,"New York Times","Democrat" +5,1,10035,"turk",4,1,70,5,70,70,"New York Times","Democrat" +5,1,10048,"turk",3,1,80,3,80,80,"New York Times","Democrat" +5,1,10049,"turk",3,1,20,3,20,20,"New York Times","Democrat" +5,1,10052,"turk",2,1,1,5,1,99,"New York Times","Democrat" +5,1,10053,"turk",4,1,75,2,75,50,"New York Times","Republican" +5,1,10054,"turk",3,1,99,4,99,99,"New York Times","Democrat" +5,1,10055,"turk",2,1,10,5,10,60,"New York Times","Republican" +5,1,10059,"turk",2,1,99,3,99,99,"New York Times","Democrat" +5,1,10061,"turk",3,1,5,3,5,4,"New York Times","Democrat" +5,1,10065,"turk",3,1,80,5,80,80,"New York Times","Democrat" +5,1,10067,"turk",4,1,1,5,1,99,"New York Times","Democrat" +5,1,10070,"turk",2,1,100,3,100,99,"New York Times","Democrat" +5,1,10071,"turk",3,1,99,2,99,1,"New York Times","Republican" +5,1,10072,"turk",2,1,90,2,90,70,"New York Times","Democrat" +5,1,10083,"turk",2,1,1,5,1,1,"New York Times","Republican" +5,1,10084,"turk",4,1,99,2,99,85,"New York Times","Neither" +5,1,10088,"turk",2,1,80,3,80,60,"New York Times","Republican" +5,1,10089,"turk",4,1,99,4,99,99,"New York Times","Neither" +5,1,10090,"turk",3,1,80,5,80,50,"New York Times","Democrat" +5,1,10092,"turk",2,1,99,3,99,50,"New York Times","Neither" +5,1,10094,"turk",4,1,99,4,99,99,"New York Times","Democrat" +5,1,10095,"turk",2,1,99,4,99,95,"New York Times","Democrat" +5,1,10100,"turk",4,1,70,4,70,75,"New York Times","Democrat" +5,1,10103,"turk",4,1,95,5,95,95,"New York Times","Democrat" +5,1,10106,"turk",3,1,40,5,40,20,"New York Times","Democrat" +5,1,10107,"turk",2,1,97,4,97,95,"New York Times","Democrat" +5,1,10109,"turk",2,1,99,4,99,100,"New York Times","Democrat" +5,1,10124,"turk",3,1,99,5,99,99,"New York Times","Republican" +5,1,10125,"turk",3,1,70,3,70,50,"New York Times","Democrat" +5,1,10128,"turk",4,1,0,3,0,99,"New York Times","Democrat" +5,1,10129,"turk",4,1,40,4,40,50,"New York Times","Democrat" +5,1,10136,"turk",3,1,99,4,99,99,"New York Times","Democrat" +5,1,10137,"turk",4,1,97,5,97,95,"New York Times","Democrat" +5,1,10142,"turk",3,1,99,3,99,99,"New York Times","Republican" +5,1,10143,"turk",2,1,99,2,99,99,"New York Times","Democrat" +5,1,10144,"turk",2,1,99,4,99,75,"New York Times","Democrat" +5,1,10146,"turk",2,1,99,2,99,99,"New York Times","Democrat" +5,1,10149,"turk",3,1,99,5,99,99,"New York Times","Republican" +5,1,10150,"turk",4,1,99,2,99,50,"New York Times","Democrat" +5,1,10153,"turk",4,1,60,5,60,80,"New York Times","Republican" +5,1,10156,"turk",3,1,99,3,99,75,"New York Times","Democrat" +5,1,10157,"turk",3,1,85,4,85,75,"New York Times","Democrat" +5,1,10159,"turk",4,1,20,4,20,40,"New York Times","Republican" +5,1,10160,"turk",4,1,1,2,1,99,"New York Times","Democrat" +5,1,10162,"turk",4,1,80,4,80,80,"New York Times","Democrat" +5,1,10168,"turk",4,1,45,5,45,40,"New York Times","Democrat" +5,1,10173,"turk",4,1,95,4,95,81,"New York Times","Democrat" +5,1,10175,"turk",2,1,99,2,99,40,"New York Times","Neither" +5,1,10176,"turk",2,1,99,3,99,90,"New York Times","Democrat" +5,1,10177,"turk",4,1,80,4,80,70,"New York Times","Democrat" +5,1,10179,"turk",2,1,99,2,99,70,"New York Times","Republican" +5,1,10180,"turk",4,1,50,4,50,60,"New York Times","Neither" +5,1,10181,"turk",3,1,100,5,100,100,"New York Times","Democrat" +5,1,10188,"turk",3,1,1,4,1,1,"New York Times","Democrat" +5,1,10189,"turk",2,1,99,2,99,99,"New York Times","Democrat" +5,1,10191,"turk",3,1,100,4,100,90,"New York Times","Democrat" +5,1,10192,"turk",2,1,99,5,99,99,"New York Times","Republican" +5,1,10199,"turk",2,1,99,4,99,99,"New York Times","Republican" +5,1,10200,"turk",4,1,70,4,70,23,"New York Times","Democrat" +5,1,10201,"turk",4,1,35,2,35,22,"New York Times","Republican" +5,1,10202,"turk",2,1,50,4,50,50,"New York Times","Neither" +5,1,10208,"turk",4,1,88,2,88,75,"New York Times","Democrat" +5,1,10212,"turk",4,1,99,5,99,99,"New York Times","Democrat" +5,1,10213,"turk",3,1,80,5,80,75,"New York Times","Republican" +5,1,10214,"turk",4,1,50,4,50,40,"New York Times","Neither" +5,1,10219,"turk",3,1,100,5,100,100,"New York Times","Democrat" +5,1,10220,"turk",4,1,99,2,99,50,"New York Times","Republican" +5,1,10221,"turk",4,1,99,5,99,99,"New York Times","Democrat" +5,1,10224,"turk",3,1,100,3,100,1,"New York Times","Democrat" +5,1,10228,"turk",4,1,99,3,99,99,"New York Times","Neither" +5,1,10232,"turk",4,1,70,2,70,50,"New York Times","Democrat" +5,1,10240,"turk",2,1,99,3,99,99,"New York Times","Neither" +5,1,10245,"turk",4,1,50,4,50,99,"New York Times","Neither" +5,1,10258,"turk",2,1,80,2,80,25,"New York Times","Neither" +5,1,10259,"turk",3,1,1,5,1,99,"New York Times","Democrat" +5,1,10260,"turk",4,1,99,2,99,99,"New York Times","Neither" +5,1,10261,"turk",4,1,99,2,99,1,"New York Times","Neither" +5,1,10263,"turk",4,1,95,3,95,90,"New York Times","Republican" +5,1,10264,"turk",2,1,99,4,99,99,"New York Times","Neither" +5,1,10265,"turk",4,1,99,4,99,80,"New York Times","Republican" +5,1,10266,"turk",2,1,99,5,99,99,"New York Times","Republican" +5,1,10267,"turk",2,1,99,2,99,99,"New York Times","Democrat" +5,1,10268,"turk",3,1,99,3,99,85,"New York Times","Democrat" +5,1,10269,"turk",2,1,99,5,99,1,"New York Times","Democrat" +5,1,10271,"turk",4,1,75,2,75,50,"New York Times","Republican" +5,1,10272,"turk",2,1,65,5,65,80,"New York Times","Democrat" +5,1,10275,"turk",4,1,99,4,99,50,"New York Times","Democrat" +5,1,10276,"turk",4,1,30,5,30,50,"New York Times","Neither" +5,1,10281,"turk",2,1,80,2,80,75,"New York Times","Democrat" +5,1,10287,"turk",3,1,90,2,90,75,"New York Times","Democrat" +5,1,10288,"turk",2,1,1,4,1,1,"New York Times","Neither" +5,1,10291,"turk",3,1,90,3,90,90,"New York Times","Neither" +5,1,10293,"turk",3,1,89,3,89,70,"New York Times","Democrat" +5,1,10294,"turk",2,1,75,5,75,70,"New York Times","Democrat" +5,1,10296,"turk",4,1,95,4,95,95,"New York Times","Republican" +5,1,10298,"turk",3,1,95,4,95,85,"New York Times","Neither" +5,1,10300,"turk",4,1,90,3,90,90,"New York Times","Democrat" +5,1,10301,"turk",2,1,85,4,85,60,"New York Times","Democrat" +5,1,10309,"turk",2,1,89,4,89,75,"New York Times","Republican" +5,1,10311,"turk",3,1,87,4,87,75,"New York Times","Democrat" +5,1,10312,"turk",4,1,95,2,95,88,"New York Times","Democrat" +5,1,10324,"turk",3,1,85,5,85,85,"New York Times","Neither" +5,1,10325,"turk",3,1,99,5,99,99,"New York Times","Democrat" +5,1,10326,"turk",2,1,75,5,75,50,"New York Times","Republican" +5,1,10328,"turk",3,1,99,4,99,99,"New York Times","Neither" +5,1,10329,"turk",4,1,1,4,1,69,"New York Times","Republican" +5,1,10331,"turk",4,1,90,4,90,90,"New York Times","Democrat" +5,1,10334,"turk",4,1,1,5,1,1,"New York Times","Neither" +5,1,10337,"turk",2,1,55,2,55,50,"New York Times","Democrat" +5,1,10339,"turk",4,1,50,3,50,99,"New York Times","Democrat" +5,1,10343,"turk",4,1,85,3,85,75,"New York Times","Republican" +5,1,10347,"turk",3,1,5,4,5,10,"New York Times","Democrat" +5,1,10350,"turk",2,1,99,5,99,99,"New York Times","Democrat" +5,1,10351,"turk",4,1,88,4,88,75,"New York Times","Democrat" +5,1,10354,"turk",2,1,99,4,99,1,"New York Times","Neither" +5,1,10356,"turk",2,1,99,2,99,99,"New York Times","Republican" +5,1,10358,"turk",3,1,50,4,50,10,"New York Times","Republican" +5,1,10361,"turk",2,1,1,5,1,1,"New York Times","Neither" +5,1,10366,"turk",4,1,20,5,20,15,"New York Times","Democrat" +5,1,10367,"turk",2,1,50,5,50,75,"New York Times","Republican" +5,1,10368,"turk",2,1,99,3,99,85,"New York Times","Democrat" +5,1,10369,"turk",3,1,99,4,99,99,"New York Times","Republican" +5,1,10370,"turk",4,1,75,2,75,25,"New York Times","Neither" +5,1,10373,"turk",2,1,95,3,95,90,"New York Times","Neither" +5,1,10374,"turk",3,1,99,2,99,1,"New York Times","Democrat" +5,1,10381,"turk",2,1,60,3,60,0,"New York Times","Democrat" +5,1,10383,"turk",2,1,68,3,68,45,"New York Times","Democrat" +5,1,10385,"turk",3,1,95,3,95,85,"New York Times","Republican" +5,1,10388,"turk",2,1,100,3,100,80,"New York Times","Neither" +5,1,10389,"turk",2,1,99,5,99,98,"New York Times","Neither" +5,1,10390,"turk",4,1,98,3,98,98,"New York Times","Democrat" +5,1,10391,"turk",4,1,50,3,50,50,"New York Times","Neither" +5,1,10394,"turk",2,1,99,2,99,99,"New York Times","Democrat" +5,1,10400,"turk",3,1,85,2,85,70,"New York Times","Neither" +5,1,10404,"turk",4,1,99,2,99,99,"New York Times","Republican" +5,1,10409,"turk",2,1,75,2,75,0,"New York Times","Republican" +5,1,10412,"turk",4,1,35,5,35,25,"New York Times","Democrat" +5,1,10415,"turk",2,1,99,4,99,98,"New York Times","Democrat" +5,1,10416,"turk",2,1,75,3,75,50,"New York Times","Republican" +5,1,10419,"turk",3,1,80,4,80,80,"New York Times","Neither" +5,1,10424,"turk",2,1,1,5,1,99,"New York Times","Republican" +5,1,10426,"turk",3,1,99,2,99,14,"New York Times","Republican" +5,1,10427,"turk",4,1,88,2,88,80,"New York Times","Republican" +5,1,10428,"turk",4,1,99,3,99,95,"New York Times","Republican" +5,1,10437,"turk",3,1,95,4,95,90,"New York Times","Democrat" +5,1,10438,"turk",4,1,60,4,60,50,"New York Times","Republican" +5,1,10439,"turk",4,1,75,2,75,50,"New York Times","Neither" +5,1,10443,"turk",4,1,30,2,30,20,"New York Times","Republican" +5,1,10444,"turk",4,1,99,4,99,99,"New York Times","Republican" +5,1,10448,"turk",4,1,99,4,99,60,"New York Times","Republican" +5,1,10449,"turk",2,1,80,5,80,80,"New York Times","Democrat" +5,1,10450,"turk",2,1,85,3,85,80,"New York Times","Democrat" +5,1,10453,"turk",3,1,99,3,99,99,"New York Times","Democrat" +5,1,10458,"turk",4,1,1,2,1,1,"New York Times","Republican" +5,1,10459,"turk",3,1,100,4,100,100,"New York Times","Democrat" +5,1,10462,"turk",3,1,1,5,1,1,"New York Times","Republican" +5,1,10467,"turk",4,1,99,4,99,99,"New York Times","Neither" +5,1,10473,"turk",2,1,1,4,1,1,"New York Times","Democrat" +5,1,10476,"turk",3,1,90,5,90,80,"New York Times","Neither" +5,1,10477,"turk",4,1,99,5,99,96,"New York Times","Republican" +5,1,10478,"turk",4,1,70,2,70,50,"New York Times","Neither" +5,1,10479,"turk",3,1,90,4,90,90,"New York Times","Democrat" +5,1,10483,"turk",2,1,90,4,90,70,"New York Times","Democrat" +5,1,10486,"turk",3,1,50,3,50,50,"New York Times","Neither" +5,1,10489,"turk",2,1,90,3,90,88,"New York Times","Democrat" +5,1,10490,"turk",4,1,99,5,99,99,"New York Times","Democrat" +5,1,10496,"turk",2,1,85,5,85,65,"New York Times","Republican" +5,1,10497,"turk",2,1,1,2,1,99,"New York Times","Democrat" +5,1,10499,"turk",4,1,99,4,99,99,"New York Times","Democrat" +5,1,10502,"turk",4,1,80,4,80,60,"New York Times","Democrat" +5,1,10506,"turk",3,1,99,4,99,99,"New York Times","Democrat" +5,1,10507,"turk",4,1,99,3,99,1,"New York Times","Democrat" +5,1,10510,"turk",3,1,99,5,99,99,"New York Times","Democrat" +5,1,10514,"turk",2,1,99,4,99,99,"New York Times","Democrat" +5,1,10515,"turk",3,1,1,5,1,1,"New York Times","Republican" +5,1,10518,"turk",3,1,1,4,1,1,"New York Times","Republican" +5,1,10524,"turk",4,1,10,3,10,0,"New York Times","Democrat" +5,1,10529,"turk",4,1,99,5,99,99,"New York Times","Republican" +5,1,10534,"turk",3,1,78,4,78,70,"New York Times","Republican" +5,1,10535,"turk",4,1,75,5,75,45,"New York Times","Republican" +5,2,9743,"turk",2,0,70,2,30,70,"Fox News","Democrat" +5,2,9747,"turk",2,0,60,5,40,40,"Fox News","Neither" +5,2,9753,"turk",4,0,86,2,14,33,"Fox News","Democrat" +5,2,9755,"turk",4,0,60,4,40,40,"Fox News","Republican" +5,2,9756,"turk",4,0,99,4,1,1,"Fox News","Democrat" +5,2,9763,"turk",4,0,45,4,55,99,"Fox News","Neither" +5,2,9764,"turk",4,0,70,5,30,25,"Fox News","Democrat" +5,2,9765,"turk",2,0,99,5,1,1,"Fox News","Neither" +5,2,9767,"turk",3,0,20,5,80,70,"Fox News","Neither" +5,2,9773,"turk",4,0,100,4,0,1,"Fox News","Democrat" +5,2,9776,"turk",4,0,99,3,1,1,"Fox News","Neither" +5,2,9777,"turk",2,0,99,3,1,1,"Fox News","Democrat" +5,2,9778,"turk",2,0,50,2,50,50,"Fox News","Neither" +5,2,9779,"turk",4,0,95,4,5,11,"Fox News","Democrat" +5,2,9784,"turk",4,0,99,4,1,1,"Fox News","Republican" +5,2,9789,"turk",2,0,30,2,70,70,"Fox News","Democrat" +5,2,9791,"turk",4,0,90,4,10,50,"Fox News","Democrat" +5,2,9794,"turk",4,0,30,3,70,80,"Fox News","Democrat" +5,2,9797,"turk",3,0,30,4,70,50,"Fox News","Republican" +5,2,9798,"turk",4,0,90,3,10,20,"Fox News","Democrat" +5,2,9800,"turk",2,0,60,5,40,71,"Fox News","Republican" +5,2,9801,"turk",4,0,85,5,15,20,"Fox News","Neither" +5,2,9804,"turk",2,0,66,3,34,22,"Fox News","Republican" +5,2,9807,"turk",3,0,80,3,20,40,"Fox News","Republican" +5,2,9809,"turk",3,0,15,2,85,90,"Fox News","Neither" +5,2,9814,"turk",3,0,99,4,1,20,"Fox News","Democrat" +5,2,9818,"turk",3,0,99,3,1,1,"Fox News","Republican" +5,2,9820,"turk",4,0,99,2,1,50,"Fox News","Republican" +5,2,9822,"turk",3,0,70,3,30,30,"Fox News","Democrat" +5,2,9827,"turk",3,0,99,3,1,100,"Fox News","Republican" +5,2,9828,"turk",2,0,70,5,30,20,"Fox News","Democrat" +5,2,9829,"turk",2,0,45,5,55,55,"Fox News","Republican" +5,2,9830,"turk",3,0,50,3,50,50,"Fox News","Republican" +5,2,9842,"turk",2,0,90,5,10,10,"Fox News","Democrat" +5,2,9843,"turk",3,0,1,2,99,99,"Fox News","Neither" +5,2,9845,"turk",3,0,80,2,20,10,"Fox News","Neither" +5,2,9846,"turk",3,0,80,2,20,70,"Fox News","Democrat" +5,2,9859,"turk",2,0,75,5,25,25,"Fox News","Democrat" +5,2,9860,"turk",3,0,99,4,1,1,"Fox News","Republican" +5,2,9864,"turk",2,0,1,2,99,99,"Fox News","Republican" +5,2,9866,"turk",4,0,25,2,75,75,"Fox News","Republican" +5,2,9867,"turk",4,0,10,2,90,99,"Fox News","Democrat" +5,2,9868,"turk",3,0,80,3,20,20,"Fox News","Democrat" +5,2,9869,"turk",2,0,99,4,1,1,"Fox News","Republican" +5,2,9871,"turk",4,0,99,3,1,9,"Fox News","Republican" +5,2,9875,"turk",3,0,99,5,1,1,"Fox News","Democrat" +5,2,9877,"turk",2,0,30,2,70,75,"Fox News","Neither" +5,2,9880,"turk",3,0,90,5,10,10,"Fox News","Democrat" +5,2,9881,"turk",4,0,1,4,99,99,"Fox News","Democrat" +5,2,9882,"turk",3,0,65,5,35,35,"Fox News","Democrat" +5,2,9885,"turk",3,0,100,5,0,5,"Fox News","Democrat" +5,2,9886,"turk",2,0,99,5,1,1,"Fox News","Republican" +5,2,9889,"turk",4,0,99,5,1,1,"Fox News","Neither" +5,2,9892,"turk",4,0,65,4,35,35,"Fox News","Democrat" +5,2,9897,"turk",2,0,60,2,40,85,"Fox News","Democrat" +5,2,9898,"turk",2,0,99,3,1,50,"Fox News","Republican" +5,2,9905,"turk",2,0,99,3,1,1,"Fox News","Republican" +5,2,9906,"turk",3,0,80,3,20,10,"Fox News","Democrat" +5,2,9907,"turk",2,0,99,3,1,1,"Fox News","Democrat" +5,2,9911,"turk",3,0,30,5,70,70,"Fox News","Democrat" +5,2,9912,"turk",2,0,99,3,1,20,"Fox News","Democrat" +5,2,9913,"turk",4,0,90,4,10,20,"Fox News","Neither" +5,2,9915,"turk",4,0,1,4,99,99,"Fox News","Democrat" +5,2,9922,"turk",2,0,80,5,20,20,"Fox News","Democrat" +5,2,9928,"turk",4,0,99,3,1,1,"Fox News","Democrat" +5,2,9929,"turk",2,0,25,3,75,80,"Fox News","Neither" +5,2,9930,"turk",2,0,60,2,40,60,"Fox News","Democrat" +5,2,9934,"turk",2,0,75,4,25,50,"Fox News","Democrat" +5,2,9935,"turk",2,0,50,5,50,50,"Fox News","Neither" +5,2,9947,"turk",2,0,99,5,1,1,"Fox News","Democrat" +5,2,9948,"turk",3,0,99,3,1,1,"Fox News","Republican" +5,2,9949,"turk",3,0,50,3,50,55,"Fox News","Neither" +5,2,9951,"turk",4,0,1,3,99,1,"Fox News","Republican" +5,2,9954,"turk",2,0,95,4,5,10,"Fox News","Democrat" +5,2,9956,"turk",3,0,65,4,35,35,"Fox News","Democrat" +5,2,9960,"turk",3,0,45,5,55,10,"Fox News","Democrat" +5,2,9961,"turk",4,0,1,4,99,99,"Fox News","Republican" +5,2,9964,"turk",2,0,20,2,80,85,"Fox News","Democrat" +5,2,9968,"turk",3,0,99,5,1,1,"Fox News","Democrat" +5,2,9969,"turk",4,0,1,4,99,99,"Fox News","Democrat" +5,2,9970,"turk",3,0,100,4,0,0,"Fox News","Republican" +5,2,9973,"turk",2,0,90,2,10,20,"Fox News","Democrat" +5,2,9978,"turk",4,0,99,5,1,1,"Fox News","Republican" +5,2,9979,"turk",2,0,35,5,65,50,"Fox News","Republican" +5,2,9980,"turk",3,0,80,4,20,25,"Fox News","Republican" +5,2,9981,"turk",3,0,5,2,95,99,"Fox News","Democrat" +5,2,9985,"turk",2,0,80,5,20,40,"Fox News","Democrat" +5,2,9987,"turk",2,0,55,3,45,55,"Fox News","Democrat" +5,2,9994,"turk",3,0,99,4,1,1,"Fox News","Democrat" +5,2,10006,"turk",2,0,70,4,30,65,"Fox News","Democrat" +5,2,10007,"turk",2,0,99,4,1,1,"Fox News","Republican" +5,2,10008,"turk",3,0,15,2,85,98,"Fox News","Republican" +5,2,10010,"turk",4,0,80,5,20,20,"Fox News","Democrat" +5,2,10011,"turk",2,0,80,5,20,20,"Fox News","Democrat" +5,2,10015,"turk",3,0,40,4,60,25,"Fox News","Neither" +5,2,10017,"turk",2,0,99,4,1,1,"Fox News","Democrat" +5,2,10021,"turk",3,0,70,5,30,30,"Fox News","Democrat" +5,2,10026,"turk",2,0,80,5,20,1,"Fox News","Neither" +5,2,10027,"turk",2,0,50,2,50,90,"Fox News","Republican" +5,2,10028,"turk",3,0,90,3,10,20,"Fox News","Republican" +5,2,10034,"turk",3,0,22,3,78,20,"Fox News","Neither" +5,2,10037,"turk",3,0,95,4,5,5,"Fox News","Democrat" +5,2,10038,"turk",4,0,1,4,99,1,"Fox News","Democrat" +5,2,10039,"turk",2,0,60,2,40,90,"Fox News","Democrat" +5,2,10040,"turk",4,0,50,5,50,11,"Fox News","Democrat" +5,2,10042,"turk",2,0,95,3,5,5,"Fox News","Democrat" +5,2,10043,"turk",3,0,65,5,35,40,"Fox News","Democrat" +5,2,10044,"turk",3,0,75,5,25,25,"Fox News","Republican" +5,2,10046,"turk",2,0,25,5,75,80,"Fox News","Neither" +5,2,10050,"turk",3,0,90,4,10,10,"Fox News","Democrat" +5,2,10051,"turk",4,0,78,4,22,33,"Fox News","Democrat" +5,2,10056,"turk",2,0,85,2,15,75,"Fox News","Republican" +5,2,10057,"turk",2,0,99,4,1,1,"Fox News","Republican" +5,2,10058,"turk",4,0,99,5,1,99,"Fox News","Republican" +5,2,10060,"turk",3,0,70,4,30,30,"Fox News","Democrat" +5,2,10062,"turk",3,0,1,5,99,99,"Fox News","Democrat" +5,2,10063,"turk",3,0,99,5,1,1,"Fox News","Republican" +5,2,10064,"turk",4,0,1,2,99,1,"Fox News","Republican" +5,2,10066,"turk",2,0,99,4,1,1,"Fox News","Democrat" +5,2,10069,"turk",3,0,33,2,67,67,"Fox News","Republican" +5,2,10073,"turk",2,0,50,4,50,60,"Fox News","Neither" +5,2,10074,"turk",3,0,20,2,80,80,"Fox News","Democrat" +5,2,10075,"turk",3,0,0,3,100,100,"Fox News","Democrat" +5,2,10077,"turk",4,0,75,2,25,50,"Fox News","Democrat" +5,2,10078,"turk",2,0,50,4,50,50,"Fox News","Republican" +5,2,10079,"turk",4,0,90,4,10,20,"Fox News","Republican" +5,2,10082,"turk",3,0,99,3,1,1,"Fox News","Neither" +5,2,10086,"turk",4,0,30,2,70,100,"Fox News","Neither" +5,2,10087,"turk",2,0,88,4,12,21,"Fox News","Neither" +5,2,10091,"turk",2,0,65,2,35,60,"Fox News","Democrat" +5,2,10098,"turk",3,0,75,5,25,20,"Fox News","Neither" +5,2,10102,"turk",3,0,99,5,1,1,"Fox News","Democrat" +5,2,10104,"turk",4,0,75,3,25,25,"Fox News","Democrat" +5,2,10105,"turk",4,0,30,5,70,70,"Fox News","Democrat" +5,2,10113,"turk",3,0,99,5,1,1,"Fox News","Republican" +5,2,10115,"turk",4,0,38,5,62,62,"Fox News","Republican" +5,2,10117,"turk",4,0,80,4,20,20,"Fox News","Democrat" +5,2,10118,"turk",4,0,99,5,1,1,"Fox News","Democrat" +5,2,10119,"turk",4,0,99,2,1,99,"Fox News","Neither" +5,2,10121,"turk",3,0,55,3,45,45,"Fox News","Neither" +5,2,10122,"turk",3,0,80,3,20,30,"Fox News","Democrat" +5,2,10130,"turk",2,0,24,4,76,60,"Fox News","Neither" +5,2,10133,"turk",3,0,85,2,15,20,"Fox News","Democrat" +5,2,10134,"turk",2,0,75,3,25,90,"Fox News","Republican" +5,2,10147,"turk",2,0,75,3,25,35,"Fox News","Democrat" +5,2,10148,"turk",3,0,99,2,1,1,"Fox News","Republican" +5,2,10151,"turk",2,0,99,3,1,1,"Fox News","Democrat" +5,2,10152,"turk",3,0,75,3,25,50,"Fox News","Neither" +5,2,10154,"turk",2,0,99,3,1,22,"Fox News","Democrat" +5,2,10158,"turk",3,0,54,4,46,50,"Fox News","Democrat" +5,2,10161,"turk",3,0,3,3,97,97,"Fox News","Republican" +5,2,10163,"turk",2,0,1,3,99,1,"Fox News","Democrat" +5,2,10165,"turk",3,0,99,3,1,1,"Fox News","Democrat" +5,2,10166,"turk",3,0,80,4,20,40,"Fox News","Democrat" +5,2,10167,"turk",2,0,20,3,80,12,"Fox News","Democrat" +5,2,10170,"turk",3,0,100,5,0,0,"Fox News","Neither" +5,2,10171,"turk",2,0,90,4,10,20,"Fox News","Democrat" +5,2,10174,"turk",4,0,100,4,0,0,"Fox News","Democrat" +5,2,10178,"turk",3,0,99,3,1,1,"Fox News","Democrat" +5,2,10182,"turk",4,0,85,5,15,15,"Fox News","Democrat" +5,2,10183,"turk",2,0,99,3,1,1,"Fox News","" +5,2,10184,"turk",3,0,50,2,50,100,"Fox News","Republican" +5,2,10186,"turk",3,0,24,5,76,38,"Fox News","Democrat" +5,2,10190,"turk",3,0,60,3,40,75,"Fox News","Democrat" +5,2,10193,"turk",4,0,75,2,25,50,"Fox News","Democrat" +5,2,10195,"turk",4,0,90,5,10,10,"Fox News","Republican" +5,2,10196,"turk",4,0,99,4,1,1,"Fox News","Democrat" +5,2,10198,"turk",2,0,85,2,15,30,"Fox News","Democrat" +5,2,10207,"turk",4,0,90,3,10,25,"Fox News","Republican" +5,2,10210,"turk",2,0,99,5,1,1,"Fox News","Republican" +5,2,10211,"turk",2,0,50,3,50,50,"Fox News","Democrat" +5,2,10217,"turk",2,0,1,3,99,1,"Fox News","Democrat" +5,2,10218,"turk",3,0,1,2,99,1,"Fox News","Democrat" +5,2,10222,"turk",3,0,1,2,99,99,"Fox News","Neither" +5,2,10223,"turk",2,0,99,4,1,1,"Fox News","Democrat" +5,2,10225,"turk",3,0,95,4,5,5,"Fox News","Republican" +5,2,10226,"turk",2,0,99,5,1,1,"Fox News","Republican" +5,2,10229,"turk",2,0,1,2,99,99,"Fox News","Democrat" +5,2,10230,"turk",4,0,95,2,5,3,"Fox News","Neither" +5,2,10231,"turk",2,0,99,2,1,99,"Fox News","Democrat" +5,2,10233,"turk",4,0,100,5,0,0,"Fox News","Neither" +5,2,10236,"turk",3,0,70,2,30,40,"Fox News","Democrat" +5,2,10238,"turk",2,0,99,4,1,1,"Fox News","Democrat" +5,2,10239,"turk",3,0,2,4,98,98,"Fox News","Republican" +5,2,10241,"turk",4,0,55,4,45,1,"Fox News","Democrat" +5,2,10243,"turk",4,0,99,5,1,1,"Fox News","Republican" +5,2,10244,"turk",4,0,99,4,1,1,"Fox News","Republican" +5,2,10246,"turk",4,0,100,4,0,50,"Fox News","Democrat" +5,2,10247,"turk",4,0,99,5,1,1,"Fox News","Democrat" +5,2,10248,"turk",4,0,65,2,35,45,"Fox News","Democrat" +5,2,10249,"turk",4,0,50,5,50,40,"Fox News","Democrat" +5,2,10250,"turk",4,0,23,3,77,35,"Fox News","Democrat" +5,2,10251,"turk",2,0,99,2,1,1,"Fox News","Democrat" +5,2,10252,"turk",4,0,70,2,30,50,"Fox News","Republican" +5,2,10254,"turk",3,0,90,4,10,10,"Fox News","Democrat" +5,2,10256,"turk",4,0,99,4,1,1,"Fox News","Neither" +5,2,10273,"turk",2,0,80,2,20,20,"Fox News","Democrat" +5,2,10277,"turk",2,0,99,5,1,1,"Fox News","Democrat" +5,2,10278,"turk",4,0,70,5,30,1,"Fox News","Democrat" +5,2,10280,"turk",2,0,99,5,1,1,"Fox News","Republican" +5,2,10284,"turk",2,0,1,3,99,1,"Fox News","Democrat" +5,2,10285,"turk",2,0,1,2,99,99,"Fox News","Republican" +5,2,10289,"turk",2,0,99,5,1,1,"Fox News","Republican" +5,2,10290,"turk",2,0,99,3,1,1,"Fox News","Neither" +5,2,10292,"turk",4,0,99,4,1,1,"Fox News","Democrat" +5,2,10295,"turk",2,0,80,2,20,32,"Fox News","Democrat" +5,2,10299,"turk",4,0,75,3,25,25,"Fox News","Republican" +5,2,10302,"turk",4,0,75,5,25,25,"Fox News","Republican" +5,2,10303,"turk",4,0,90,5,10,21,"Fox News","Democrat" +5,2,10304,"turk",4,0,1,5,99,99,"Fox News","Democrat" +5,2,10305,"turk",4,0,99,3,1,99,"Fox News","Democrat" +5,2,10306,"turk",2,0,100,5,0,0,"Fox News","Democrat" +5,2,10307,"turk",4,0,65,3,35,40,"Fox News","Republican" +5,2,10314,"turk",3,0,92,4,8,10,"Fox News","" +5,2,10316,"turk",4,0,99,3,1,1,"Fox News","Neither" +5,2,10317,"turk",3,0,90,4,10,10,"Fox News","Democrat" +5,2,10318,"turk",2,0,1,4,99,60,"Fox News","Democrat" +5,2,10319,"turk",4,0,1,4,99,99,"Fox News","Neither" +5,2,10321,"turk",4,0,50,5,50,50,"Fox News","Republican" +5,2,10322,"turk",3,0,60,5,40,50,"Fox News","Republican" +5,2,10323,"turk",4,0,100,5,0,1,"Fox News","Democrat" +5,2,10327,"turk",2,0,99,4,1,11,"Fox News","Democrat" +5,2,10330,"turk",2,0,80,5,20,20,"Fox News","Democrat" +5,2,10335,"turk",4,0,99,4,1,10,"Fox News","Democrat" +5,2,10336,"turk",2,0,95,3,5,10,"Fox News","Neither" +5,2,10338,"turk",3,0,1,3,99,99,"Fox News","Neither" +5,2,10340,"turk",4,0,85,5,15,15,"Fox News","Neither" +5,2,10341,"turk",4,0,60,3,40,30,"Fox News","Democrat" +5,2,10342,"turk",4,0,85,4,15,20,"Fox News","Democrat" +5,2,10344,"turk",3,0,70,2,30,50,"Fox News","Neither" +5,2,10345,"turk",3,0,99,5,1,1,"Fox News","Republican" +5,2,10346,"turk",4,0,90,4,10,20,"Fox News","Democrat" +5,2,10352,"turk",3,0,80,5,20,25,"Fox News","Democrat" +5,2,10353,"turk",3,0,80,3,20,30,"Fox News","Democrat" +5,2,10357,"turk",3,0,60,2,40,70,"Fox News","Democrat" +5,2,10359,"turk",4,0,99,5,1,1,"Fox News","Republican" +5,2,10360,"turk",3,0,99,2,1,1,"Fox News","Democrat" +5,2,10362,"turk",2,0,100,3,0,1,"Fox News","Democrat" +5,2,10365,"turk",4,0,60,3,40,25,"Fox News","Republican" +5,2,10371,"turk",4,0,1,4,99,99,"Fox News","Democrat" +5,2,10375,"turk",3,0,99,3,1,1,"Fox News","Democrat" +5,2,10376,"turk",3,0,1,2,99,99,"Fox News","Republican" +5,2,10384,"turk",2,0,95,5,5,20,"Fox News","Democrat" +5,2,10386,"turk",4,0,99,2,1,1,"Fox News","Democrat" +5,2,10392,"turk",2,0,88,2,12,20,"Fox News","Democrat" +5,2,10396,"turk",4,0,5,2,95,78,"Fox News","Republican" +5,2,10397,"turk",3,0,99,5,1,41,"Fox News","Neither" +5,2,10399,"turk",2,0,2,3,98,98,"Fox News","Democrat" +5,2,10402,"turk",3,0,99,5,1,1,"Fox News","Democrat" +5,2,10403,"turk",3,0,90,3,10,30,"Fox News","Republican" +5,2,10405,"turk",4,0,80,3,20,20,"Fox News","Democrat" +5,2,10407,"turk",4,0,55,5,45,35,"Fox News","Neither" +5,2,10408,"turk",3,0,50,2,50,1,"Fox News","Democrat" +5,2,10410,"turk",2,0,10,4,90,25,"Fox News","Democrat" +5,2,10414,"turk",2,0,55,3,45,1,"Fox News","Neither" +5,2,10417,"turk",2,0,86,2,14,15,"Fox News","Neither" +5,2,10418,"turk",2,0,40,4,60,60,"Fox News","Democrat" +5,2,10421,"turk",3,0,99,5,1,1,"Fox News","Democrat" +5,2,10423,"turk",4,0,10,4,90,90,"Fox News","Neither" +5,2,10430,"turk",4,0,99,5,1,1,"Fox News","Neither" +5,2,10431,"turk",4,0,99,5,1,40,"Fox News","Republican" +5,2,10433,"turk",4,0,1,5,99,99,"Fox News","Democrat" +5,2,10434,"turk",3,0,60,5,40,40,"Fox News","Democrat" +5,2,10436,"turk",2,0,99,2,1,1,"Fox News","Democrat" +5,2,10440,"turk",2,0,45,4,55,38,"Fox News","Democrat" +5,2,10445,"turk",4,0,99,3,1,40,"Fox News","Democrat" +5,2,10446,"turk",2,0,75,2,25,40,"Fox News","Democrat" +5,2,10447,"turk",3,0,1,2,99,99,"Fox News","Neither" +5,2,10452,"turk",2,0,0,2,100,100,"Fox News","Neither" +5,2,10455,"turk",3,0,1,5,99,99,"Fox News","Democrat" +5,2,10456,"turk",3,0,99,4,1,1,"Fox News","Democrat" +5,2,10457,"turk",2,0,65,3,35,35,"Fox News","Republican" +5,2,10460,"turk",2,0,99,2,1,1,"Fox News","Democrat" +5,2,10461,"turk",4,0,70,3,30,35,"Fox News","Democrat" +5,2,10463,"turk",4,0,75,2,25,50,"Fox News","Republican" +5,2,10464,"turk",3,0,30,4,70,99,"Fox News","Democrat" +5,2,10466,"turk",2,0,85,2,15,15,"Fox News","Neither" +5,2,10468,"turk",3,0,50,4,50,45,"Fox News","Democrat" +5,2,10469,"turk",4,0,1,5,99,99,"Fox News","Neither" +5,2,10470,"turk",4,0,99,3,1,25,"Fox News","Democrat" +5,2,10480,"turk",2,0,88,5,12,34,"Fox News","Neither" +5,2,10481,"turk",3,0,90,5,10,10,"Fox News","Neither" +5,2,10487,"turk",3,0,30,2,70,80,"Fox News","Democrat" +5,2,10488,"turk",2,0,1,5,99,0,"Fox News","Republican" +5,2,10491,"turk",2,0,90,4,10,20,"Fox News","Democrat" +5,2,10493,"turk",2,0,99,5,1,1,"Fox News","Democrat" +5,2,10494,"turk",3,0,70,4,30,38,"Fox News","Republican" +5,2,10495,"turk",3,0,70,2,30,20,"Fox News","Neither" +5,2,10500,"turk",4,0,99,4,1,1,"Fox News","Neither" +5,2,10501,"turk",2,0,100,3,0,1,"Fox News","Democrat" +5,2,10504,"turk",3,0,15,2,85,100,"Fox News","Democrat" +5,2,10508,"turk",4,0,12,5,88,88,"Fox News","Democrat" +5,2,10509,"turk",4,0,99,3,1,50,"Fox News","Democrat" +5,2,10512,"turk",2,0,100,3,0,0,"Fox News","Democrat" +5,2,10513,"turk",2,0,50,3,50,50,"Fox News","Republican" +5,2,10516,"turk",4,0,99,5,1,1,"Fox News","Democrat" +5,2,10517,"turk",3,0,50,5,50,50,"Fox News","Republican" +5,2,10519,"turk",4,0,1,3,99,99,"Fox News","Republican" +5,2,10520,"turk",4,0,99,5,1,1,"Fox News","Democrat" +5,2,10521,"turk",2,0,50,5,50,1,"Fox News","Democrat" +5,2,10525,"turk",2,0,1,2,99,99,"Fox News","Neither" +5,2,10526,"turk",3,0,60,2,40,50,"Fox News","Neither" +5,2,10528,"turk",4,0,99,2,1,50,"Fox News","Neither" +5,2,10530,"turk",2,0,69,5,31,31,"Fox News","Democrat" +5,2,10531,"turk",4,0,99,3,1,45,"Fox News","Neither" +5,2,10532,"turk",2,0,99,5,1,1,"Fox News","Democrat" +5,2,10533,"turk",2,0,50,2,50,80,"Fox News","Democrat" +5,2,9742,"turk",2,1,100,4,100,99,"Fox News","Neither" +5,2,9744,"turk",4,1,99,3,99,99,"Fox News","Democrat" +5,2,9745,"turk",2,1,99,4,99,99,"Fox News","Republican" +5,2,9748,"turk",3,1,10,2,10,10,"Fox News","Democrat" +5,2,9750,"turk",4,1,99,3,99,99,"Fox News","Republican" +5,2,9751,"turk",3,1,99,3,99,99,"Fox News","Democrat" +5,2,9752,"turk",4,1,90,3,90,90,"Fox News","Democrat" +5,2,9754,"turk",3,1,95,3,95,95,"Fox News","Republican" +5,2,9757,"turk",3,1,99,4,99,99,"Fox News","Democrat" +5,2,9758,"turk",2,1,100,4,100,100,"Fox News","Neither" +5,2,9760,"turk",2,1,75,3,75,50,"Fox News","Neither" +5,2,9761,"turk",3,1,99,3,99,90,"Fox News","Democrat" +5,2,9762,"turk",2,1,40,2,40,30,"Fox News","Neither" +5,2,9768,"turk",2,1,80,3,80,75,"Fox News","Democrat" +5,2,9769,"turk",3,1,45,3,45,40,"Fox News","Democrat" +5,2,9772,"turk",4,1,65,5,65,65,"Fox News","Democrat" +5,2,9774,"turk",2,1,70,2,70,50,"Fox News","Democrat" +5,2,9775,"turk",3,1,85,4,85,85,"Fox News","Neither" +5,2,9781,"turk",2,1,99,4,99,90,"Fox News","Neither" +5,2,9783,"turk",3,1,80,2,80,70,"Fox News","Neither" +5,2,9788,"turk",3,1,85,4,85,75,"Fox News","Democrat" +5,2,9793,"turk",3,1,99,5,99,99,"Fox News","Neither" +5,2,9805,"turk",3,1,65,5,65,70,"Fox News","Democrat" +5,2,9806,"turk",4,1,99,4,99,95,"Fox News","Neither" +5,2,9808,"turk",4,1,60,2,60,50,"Fox News","Neither" +5,2,9812,"turk",2,1,45,2,45,45,"Fox News","Republican" +5,2,9813,"turk",2,1,99,3,99,99,"Fox News","Republican" +5,2,9816,"turk",2,1,99,2,99,99,"Fox News","Democrat" +5,2,9819,"turk",4,1,85,3,85,85,"Fox News","Republican" +5,2,9824,"turk",2,1,99,3,99,90,"Fox News","Democrat" +5,2,9825,"turk",3,1,50,2,50,1,"Fox News","Neither" +5,2,9826,"turk",3,1,50,2,50,50,"Fox News","Republican" +5,2,9831,"turk",2,1,75,3,75,75,"Fox News","Democrat" +5,2,9832,"turk",2,1,1,4,1,1,"Fox News","Republican" +5,2,9833,"turk",3,1,80,4,80,0,"Fox News","Democrat" +5,2,9834,"turk",2,1,99,5,99,99,"Fox News","Democrat" +5,2,9835,"turk",3,1,99,4,99,99,"Fox News","Democrat" +5,2,9837,"turk",4,1,1,4,1,1,"Fox News","Republican" +5,2,9838,"turk",2,1,56,3,56,46,"Fox News","Democrat" +5,2,9839,"turk",3,1,99,3,99,99,"Fox News","Democrat" +5,2,9841,"turk",3,1,99,4,99,99,"Fox News","Democrat" +5,2,9844,"turk",4,1,99,3,99,99,"Fox News","Democrat" +5,2,9847,"turk",3,1,99,2,99,99,"Fox News","Republican" +5,2,9848,"turk",3,1,49,4,49,60,"Fox News","Neither" +5,2,9850,"turk",4,1,75,3,75,75,"Fox News","Republican" +5,2,9851,"turk",4,1,1,4,1,99,"Fox News","Democrat" +5,2,9854,"turk",3,1,75,2,75,25,"Fox News","Neither" +5,2,9857,"turk",4,1,99,4,99,99,"Fox News","Democrat" +5,2,9858,"turk",2,1,99,3,99,99,"Fox News","Republican" +5,2,9863,"turk",3,1,70,3,70,70,"Fox News","Neither" +5,2,9865,"turk",2,1,50,4,50,50,"Fox News","Neither" +5,2,9878,"turk",3,1,90,3,90,90,"Fox News","Republican" +5,2,9879,"turk",2,1,47,2,47,40,"Fox News","Democrat" +5,2,9883,"turk",4,1,99,2,99,50,"Fox News","Republican" +5,2,9887,"turk",2,1,25,2,25,1,"Fox News","Republican" +5,2,9888,"turk",3,1,99,5,99,99,"Fox News","Republican" +5,2,9890,"turk",3,1,80,4,80,80,"Fox News","Republican" +5,2,9891,"turk",4,1,90,3,90,90,"Fox News","Democrat" +5,2,9894,"turk",2,1,99,5,99,99,"Fox News","Democrat" +5,2,9895,"turk",3,1,99,2,99,99,"Fox News","Neither" +5,2,9896,"turk",2,1,99,5,99,80,"Fox News","Neither" +5,2,9899,"turk",2,1,99,2,99,75,"Fox News","Democrat" +5,2,9900,"turk",3,1,99,5,99,99,"Fox News","Democrat" +5,2,9903,"turk",4,1,90,4,90,90,"Fox News","Democrat" +5,2,9908,"turk",4,1,75,3,75,65,"Fox News","Democrat" +5,2,9910,"turk",4,1,1,5,1,50,"Fox News","Democrat" +5,2,9914,"turk",2,1,90,3,90,90,"Fox News","Republican" +5,2,9916,"turk",4,1,1,5,1,1,"Fox News","Republican" +5,2,9920,"turk",4,1,99,2,99,99,"Fox News","Republican" +5,2,9921,"turk",4,1,99,5,99,99,"Fox News","Democrat" +5,2,9924,"turk",3,1,99,4,99,99,"Fox News","Democrat" +5,2,9925,"turk",4,1,77,3,77,55,"Fox News","Democrat" +5,2,9926,"turk",3,1,99,4,99,99,"Fox News","Republican" +5,2,9927,"turk",4,1,100,3,100,100,"Fox News","Republican" +5,2,9931,"turk",4,1,99,5,99,99,"Fox News","Neither" +5,2,9932,"turk",2,1,1,5,1,99,"Fox News","Democrat" +5,2,9933,"turk",4,1,80,4,80,0,"Fox News","Republican" +5,2,9936,"turk",4,1,90,4,90,90,"Fox News","Republican" +5,2,9940,"turk",3,1,95,5,95,90,"Fox News","Democrat" +5,2,9942,"turk",4,1,50,2,50,50,"Fox News","Democrat" +5,2,9944,"turk",4,1,51,4,51,51,"Fox News","Democrat" +5,2,9946,"turk",4,1,98,2,98,75,"Fox News","Democrat" +5,2,9953,"turk",3,1,75,4,75,60,"Fox News","Neither" +5,2,9955,"turk",2,1,75,2,75,75,"Fox News","Republican" +5,2,9957,"turk",3,1,99,2,99,99,"Fox News","Republican" +5,2,9958,"turk",2,1,90,4,90,80,"Fox News","Republican" +5,2,9959,"turk",3,1,40,2,40,30,"Fox News","Democrat" +5,2,9963,"turk",2,1,25,5,25,25,"Fox News","Republican" +5,2,9971,"turk",2,1,99,4,99,99,"Fox News","Democrat" +5,2,9972,"turk",4,1,50,4,50,50,"Fox News","Democrat" +5,2,9974,"turk",4,1,70,4,70,65,"Fox News","Democrat" +5,2,9975,"turk",2,1,85,2,85,80,"Fox News","Democrat" +5,2,9977,"turk",4,1,100,3,100,100,"Fox News","Neither" +5,2,9982,"turk",2,1,75,3,75,75,"Fox News","Republican" +5,2,9983,"turk",2,1,1,2,1,99,"Fox News","Democrat" +5,2,9986,"turk",2,1,80,2,80,80,"Fox News","Democrat" +5,2,9989,"turk",4,1,35,4,35,60,"Fox News","Democrat" +5,2,9991,"turk",4,1,70,2,70,60,"Fox News","Neither" +5,2,9992,"turk",4,1,50,4,50,1,"Fox News","Republican" +5,2,9993,"turk",2,1,10,3,10,10,"Fox News","Neither" +5,2,9997,"turk",2,1,99,2,99,99,"Fox News","Democrat" +5,2,9998,"turk",2,1,99,3,99,85,"Fox News","Democrat" +5,2,9999,"turk",3,1,70,2,70,30,"Fox News","Democrat" +5,2,10000,"turk",2,1,30,3,30,75,"Fox News","Democrat" +5,2,10001,"turk",2,1,99,5,99,99,"Fox News","Democrat" +5,2,10003,"turk",2,1,75,5,75,75,"Fox News","Democrat" +5,2,10012,"turk",4,1,99,5,99,99,"Fox News","Neither" +5,2,10013,"turk",2,1,99,5,99,99,"Fox News","Democrat" +5,2,10014,"turk",2,1,10,2,10,10,"Fox News","Republican" +5,2,10019,"turk",3,1,95,4,95,98,"Fox News","Neither" +5,2,10020,"turk",4,1,99,2,99,99,"Fox News","Democrat" +5,2,10023,"turk",4,1,25,5,25,25,"Fox News","Republican" +5,2,10030,"turk",2,1,99,2,99,99,"Fox News","Democrat" +5,2,10031,"turk",2,1,99,5,99,85,"Fox News","Neither" +5,2,10032,"turk",2,1,50,3,50,99,"Fox News","Democrat" +5,2,10035,"turk",4,1,70,3,70,70,"Fox News","Democrat" +5,2,10048,"turk",3,1,90,5,90,90,"Fox News","Democrat" +5,2,10049,"turk",3,1,20,5,20,20,"Fox News","Democrat" +5,2,10052,"turk",2,1,99,4,99,100,"Fox News","Democrat" +5,2,10053,"turk",4,1,75,4,75,75,"Fox News","Republican" +5,2,10054,"turk",3,1,1,2,1,99,"Fox News","Democrat" +5,2,10055,"turk",2,1,60,4,60,25,"Fox News","Republican" +5,2,10059,"turk",2,1,99,4,99,99,"Fox News","Democrat" +5,2,10061,"turk",3,1,26,4,26,5,"Fox News","Democrat" +5,2,10065,"turk",3,1,80,3,80,80,"Fox News","Democrat" +5,2,10067,"turk",4,1,99,4,99,1,"Fox News","Democrat" +5,2,10070,"turk",2,1,100,5,100,100,"Fox News","Democrat" +5,2,10071,"turk",3,1,1,3,1,99,"Fox News","Republican" +5,2,10072,"turk",2,1,100,5,100,100,"Fox News","Democrat" +5,2,10083,"turk",2,1,1,3,1,1,"Fox News","Republican" +5,2,10084,"turk",4,1,99,5,99,99,"Fox News","Neither" +5,2,10088,"turk",2,1,60,2,60,25,"Fox News","Republican" +5,2,10089,"turk",4,1,99,3,99,99,"Fox News","Neither" +5,2,10090,"turk",3,1,70,3,70,65,"Fox News","Democrat" +5,2,10092,"turk",2,1,50,2,50,1,"Fox News","Neither" +5,2,10094,"turk",4,1,1,2,1,99,"Fox News","Democrat" +5,2,10095,"turk",2,1,90,2,90,80,"Fox News","Democrat" +5,2,10100,"turk",4,1,80,2,80,40,"Fox News","Democrat" +5,2,10103,"turk",4,1,95,4,95,95,"Fox News","Democrat" +5,2,10106,"turk",3,1,20,4,20,60,"Fox News","Democrat" +5,2,10107,"turk",2,1,95,2,95,80,"Fox News","Democrat" +5,2,10109,"turk",2,1,99,5,99,99,"Fox News","Democrat" +5,2,10124,"turk",3,1,99,4,99,99,"Fox News","Republican" +5,2,10125,"turk",3,1,50,2,50,50,"Fox News","Democrat" +5,2,10128,"turk",4,1,99,4,99,0,"Fox News","Democrat" +5,2,10129,"turk",4,1,99,2,99,1,"Fox News","Democrat" +5,2,10136,"turk",3,1,80,2,80,79,"Fox News","Democrat" +5,2,10137,"turk",4,1,95,4,95,85,"Fox News","Democrat" +5,2,10142,"turk",3,1,99,5,99,99,"Fox News","Republican" +5,2,10143,"turk",2,1,99,4,99,99,"Fox News","Democrat" +5,2,10144,"turk",2,1,68,2,68,60,"Fox News","Democrat" +5,2,10146,"turk",2,1,99,4,99,99,"Fox News","Democrat" +5,2,10149,"turk",3,1,99,3,99,99,"Fox News","Republican" +5,2,10150,"turk",4,1,99,4,99,99,"Fox News","Democrat" +5,2,10153,"turk",4,1,50,2,50,20,"Fox News","Republican" +5,2,10156,"turk",3,1,75,2,75,60,"Fox News","Democrat" +5,2,10157,"turk",3,1,70,2,70,50,"Fox News","Democrat" +5,2,10159,"turk",4,1,40,3,40,10,"Fox News","Republican" +5,2,10160,"turk",4,1,99,3,99,1,"Fox News","Democrat" +5,2,10162,"turk",4,1,80,3,80,80,"Fox News","Democrat" +5,2,10168,"turk",4,1,20,2,20,20,"Fox News","Democrat" +5,2,10173,"turk",4,1,90,5,90,95,"Fox News","Democrat" +5,2,10175,"turk",2,1,99,3,99,99,"Fox News","Neither" +5,2,10176,"turk",2,1,90,2,90,80,"Fox News","Democrat" +5,2,10177,"turk",4,1,60,2,60,50,"Fox News","Democrat" +5,2,10179,"turk",2,1,99,3,99,99,"Fox News","Republican" +5,2,10180,"turk",4,1,60,2,60,90,"Fox News","Neither" +5,2,10181,"turk",3,1,100,3,100,100,"Fox News","Democrat" +5,2,10188,"turk",3,1,1,2,1,1,"Fox News","Democrat" +5,2,10189,"turk",2,1,50,5,50,0,"Fox News","Democrat" +5,2,10191,"turk",3,1,90,3,90,80,"Fox News","Democrat" +5,2,10192,"turk",2,1,50,2,50,50,"Fox News","Republican" +5,2,10199,"turk",2,1,99,3,99,50,"Fox News","Republican" +5,2,10200,"turk",4,1,25,2,25,20,"Fox News","Democrat" +5,2,10201,"turk",4,1,45,3,45,35,"Fox News","Republican" +5,2,10202,"turk",2,1,50,3,50,50,"Fox News","Neither" +5,2,10208,"turk",4,1,78,3,78,88,"Fox News","Democrat" +5,2,10212,"turk",4,1,99,4,99,99,"Fox News","Democrat" +5,2,10213,"turk",3,1,55,3,55,50,"Fox News","Republican" +5,2,10214,"turk",4,1,40,2,40,40,"Fox News","Neither" +5,2,10219,"turk",3,1,99,3,99,99,"Fox News","Democrat" +5,2,10220,"turk",4,1,99,3,99,99,"Fox News","Republican" +5,2,10221,"turk",4,1,99,4,99,99,"Fox News","Democrat" +5,2,10224,"turk",3,1,1,2,1,1,"Fox News","Democrat" +5,2,10228,"turk",4,1,99,5,99,99,"Fox News","Neither" +5,2,10232,"turk",4,1,20,5,20,70,"Fox News","Democrat" +5,2,10240,"turk",2,1,99,4,99,99,"Fox News","Neither" +5,2,10245,"turk",4,1,50,5,50,50,"Fox News","Neither" +5,2,10258,"turk",2,1,95,3,95,80,"Fox News","Neither" +5,2,10259,"turk",3,1,99,4,99,50,"Fox News","Democrat" +5,2,10260,"turk",4,1,99,5,99,99,"Fox News","Neither" +5,2,10261,"turk",4,1,1,4,1,99,"Fox News","Neither" +5,2,10263,"turk",4,1,99,5,99,99,"Fox News","Republican" +5,2,10264,"turk",2,1,99,3,99,99,"Fox News","Neither" +5,2,10265,"turk",4,1,99,5,99,99,"Fox News","Republican" +5,2,10266,"turk",2,1,99,3,99,75,"Fox News","Republican" +5,2,10267,"turk",2,1,89,3,89,99,"Fox News","Democrat" +5,2,10268,"turk",3,1,99,4,99,99,"Fox News","Democrat" +5,2,10269,"turk",2,1,99,3,99,99,"Fox News","Democrat" +5,2,10271,"turk",4,1,95,3,95,75,"Fox News","Republican" +5,2,10272,"turk",2,1,80,4,80,50,"Fox News","Democrat" +5,2,10275,"turk",4,1,1,2,1,100,"Fox News","Democrat" +5,2,10276,"turk",4,1,50,4,50,70,"Fox News","Neither" +5,2,10281,"turk",2,1,81,3,81,80,"Fox News","Democrat" +5,2,10287,"turk",3,1,100,4,100,99,"Fox News","Democrat" +5,2,10288,"turk",2,1,1,2,1,1,"Fox News","Neither" +5,2,10291,"turk",3,1,90,4,90,90,"Fox News","Neither" +5,2,10293,"turk",3,1,94,5,94,93,"Fox News","Democrat" +5,2,10294,"turk",2,1,70,2,70,50,"Fox News","Democrat" +5,2,10296,"turk",4,1,95,3,95,95,"Fox News","Republican" +5,2,10298,"turk",3,1,85,2,85,66,"Fox News","Neither" +5,2,10300,"turk",4,1,90,2,90,80,"Fox News","Democrat" +5,2,10301,"turk",2,1,65,2,65,50,"Fox News","Democrat" +5,2,10309,"turk",2,1,75,3,75,75,"Fox News","Republican" +5,2,10311,"turk",3,1,70,2,70,5,"Fox News","Democrat" +5,2,10312,"turk",4,1,98,3,98,95,"Fox News","Democrat" +5,2,10324,"turk",3,1,70,2,70,30,"Fox News","Neither" +5,2,10325,"turk",3,1,99,4,99,99,"Fox News","Democrat" +5,2,10326,"turk",2,1,1,3,1,1,"Fox News","Republican" +5,2,10328,"turk",3,1,50,2,50,50,"Fox News","Neither" +5,2,10329,"turk",4,1,69,3,69,99,"Fox News","Republican" +5,2,10331,"turk",4,1,90,3,90,90,"Fox News","Democrat" +5,2,10334,"turk",4,1,15,2,15,70,"Fox News","Neither" +5,2,10337,"turk",2,1,80,4,80,60,"Fox News","Democrat" +5,2,10339,"turk",4,1,99,4,99,50,"Fox News","Democrat" +5,2,10343,"turk",4,1,85,5,85,85,"Fox News","Republican" +5,2,10347,"turk",3,1,45,5,45,5,"Fox News","Democrat" +5,2,10350,"turk",2,1,99,3,99,99,"Fox News","Democrat" +5,2,10351,"turk",4,1,75,3,75,60,"Fox News","Democrat" +5,2,10354,"turk",2,1,75,5,75,99,"Fox News","Neither" +5,2,10356,"turk",2,1,99,5,99,99,"Fox News","Republican" +5,2,10358,"turk",3,1,100,5,100,50,"Fox News","Republican" +5,2,10361,"turk",2,1,80,2,80,1,"Fox News","Neither" +5,2,10366,"turk",4,1,15,4,15,50,"Fox News","Democrat" +5,2,10367,"turk",2,1,75,3,75,50,"Fox News","Republican" +5,2,10368,"turk",2,1,85,2,85,70,"Fox News","Democrat" +5,2,10369,"turk",3,1,99,5,99,99,"Fox News","Republican" +5,2,10370,"turk",4,1,80,3,80,75,"Fox News","Neither" +5,2,10373,"turk",2,1,98,5,98,98,"Fox News","Neither" +5,2,10374,"turk",3,1,NA,5,NA,56,"Fox News","Democrat" +5,2,10381,"turk",2,1,0,2,0,1,"Fox News","Democrat" +5,2,10383,"turk",2,1,55,4,55,68,"Fox News","Democrat" +5,2,10385,"turk",3,1,95,5,95,95,"Fox News","Republican" +5,2,10388,"turk",2,1,80,2,80,70,"Fox News","Neither" +5,2,10389,"turk",2,1,98,4,98,99,"Fox News","Neither" +5,2,10390,"turk",4,1,98,2,98,98,"Fox News","Democrat" +5,2,10391,"turk",4,1,50,5,50,50,"Fox News","Neither" +5,2,10394,"turk",2,1,99,5,99,99,"Fox News","Democrat" +5,2,10400,"turk",3,1,95,5,95,90,"Fox News","Neither" +5,2,10404,"turk",4,1,99,4,99,99,"Fox News","Republican" +5,2,10409,"turk",2,1,80,3,80,75,"Fox News","Republican" +5,2,10412,"turk",4,1,85,3,85,25,"Fox News","Democrat" +5,2,10415,"turk",2,1,98,3,98,98,"Fox News","Democrat" +5,2,10416,"turk",2,1,50,5,50,50,"Fox News","Republican" +5,2,10419,"turk",3,1,80,3,80,80,"Fox News","Neither" +5,2,10424,"turk",2,1,99,3,99,1,"Fox News","Republican" +5,2,10426,"turk",3,1,99,4,99,99,"Fox News","Republican" +5,2,10427,"turk",4,1,99,4,99,99,"Fox News","Republican" +5,2,10428,"turk",4,1,90,5,90,95,"Fox News","Republican" +5,2,10437,"turk",3,1,70,2,70,70,"Fox News","Democrat" +5,2,10438,"turk",4,1,50,3,50,30,"Fox News","Republican" +5,2,10439,"turk",4,1,80,5,80,80,"Fox News","Neither" +5,2,10443,"turk",4,1,79,5,79,40,"Fox News","Republican" +5,2,10444,"turk",4,1,99,3,99,99,"Fox News","Republican" +5,2,10448,"turk",4,1,50,2,50,30,"Fox News","Republican" +5,2,10449,"turk",2,1,80,3,80,80,"Fox News","Democrat" +5,2,10450,"turk",2,1,99,4,99,85,"Fox News","Democrat" +5,2,10453,"turk",3,1,99,2,99,99,"Fox News","Democrat" +5,2,10458,"turk",4,1,1,3,1,1,"Fox News","Republican" +5,2,10459,"turk",3,1,100,5,100,100,"Fox News","Democrat" +5,2,10462,"turk",3,1,1,3,1,1,"Fox News","Republican" +5,2,10467,"turk",4,1,99,2,99,50,"Fox News","Neither" +5,2,10473,"turk",2,1,1,3,1,1,"Fox News","Democrat" +5,2,10476,"turk",3,1,75,3,75,50,"Fox News","Neither" +5,2,10477,"turk",4,1,96,4,96,91,"Fox News","Republican" +5,2,10478,"turk",4,1,90,5,90,90,"Fox News","Neither" +5,2,10479,"turk",3,1,90,5,90,90,"Fox News","Democrat" +5,2,10483,"turk",2,1,99,5,99,90,"Fox News","Democrat" +5,2,10486,"turk",3,1,50,4,50,50,"Fox News","Neither" +5,2,10489,"turk",2,1,99,5,99,99,"Fox News","Democrat" +5,2,10490,"turk",4,1,80,2,80,50,"Fox News","Democrat" +5,2,10496,"turk",2,1,85,2,85,80,"Fox News","Republican" +5,2,10497,"turk",2,1,99,4,99,99,"Fox News","Democrat" +5,2,10499,"turk",4,1,99,5,99,99,"Fox News","Democrat" +5,2,10502,"turk",4,1,50,2,50,20,"Fox News","Democrat" +5,2,10506,"turk",3,1,99,5,99,99,"Fox News","Democrat" +5,2,10507,"turk",4,1,1,2,1,99,"Fox News","Democrat" +5,2,10510,"turk",3,1,99,4,99,99,"Fox News","Democrat" +5,2,10514,"turk",2,1,99,3,99,99,"Fox News","Democrat" +5,2,10515,"turk",3,1,1,2,1,1,"Fox News","Republican" +5,2,10518,"turk",3,1,1,2,1,1,"Fox News","Republican" +5,2,10524,"turk",4,1,10,4,10,10,"Fox News","Democrat" +5,2,10529,"turk",4,1,99,3,99,80,"Fox News","Republican" +5,2,10534,"turk",3,1,70,3,70,98,"Fox News","Republican" +5,2,10535,"turk",4,1,33,2,33,33,"Fox News","Republican" +5,3,9743,"turk",2,0,85,4,15,20,"USA Today","Democrat" +5,3,9747,"turk",2,0,60,4,40,40,"USA Today","Neither" +5,3,9753,"turk",4,0,88,5,12,32,"USA Today","Democrat" +5,3,9755,"turk",4,0,60,3,40,50,"USA Today","Republican" +5,3,9756,"turk",4,0,99,3,1,1,"USA Today","Democrat" +5,3,9763,"turk",4,0,1,3,99,99,"USA Today","Neither" +5,3,9764,"turk",4,0,75,4,25,30,"USA Today","Democrat" +5,3,9765,"turk",2,0,99,4,1,1,"USA Today","Neither" +5,3,9767,"turk",3,0,65,2,35,3,"USA Today","Neither" +5,3,9773,"turk",4,0,99,3,1,1,"USA Today","Democrat" +5,3,9776,"turk",4,0,99,5,1,1,"USA Today","Neither" +5,3,9777,"turk",2,0,92,4,8,1,"USA Today","Democrat" +5,3,9778,"turk",2,0,85,5,15,21,"USA Today","Neither" +5,3,9779,"turk",4,0,80,2,20,35,"USA Today","Democrat" +5,3,9784,"turk",4,0,99,3,1,1,"USA Today","Republican" +5,3,9789,"turk",2,0,1,4,99,99,"USA Today","Democrat" +5,3,9791,"turk",4,0,90,5,10,10,"USA Today","Democrat" +5,3,9794,"turk",4,0,60,4,40,70,"USA Today","Democrat" +5,3,9797,"turk",3,0,50,3,50,74,"USA Today","Republican" +5,3,9798,"turk",4,0,80,2,20,20,"USA Today","Democrat" +5,3,9800,"turk",2,0,30,3,70,50,"USA Today","Republican" +5,3,9801,"turk",4,0,70,3,30,30,"USA Today","Neither" +5,3,9804,"turk",2,0,65,4,35,34,"USA Today","Republican" +5,3,9807,"turk",3,0,50,4,50,20,"USA Today","Republican" +5,3,9809,"turk",3,0,20,4,80,80,"USA Today","Neither" +5,3,9814,"turk",3,0,80,3,20,40,"USA Today","Democrat" +5,3,9818,"turk",3,0,99,4,1,1,"USA Today","Republican" +5,3,9820,"turk",4,0,1,4,99,1,"USA Today","Republican" +5,3,9822,"turk",3,0,70,2,30,60,"USA Today","Democrat" +5,3,9827,"turk",3,0,99,4,1,1,"USA Today","Republican" +5,3,9828,"turk",2,0,70,3,30,35,"USA Today","Democrat" +5,3,9829,"turk",2,0,30,3,70,90,"USA Today","Republican" +5,3,9830,"turk",3,0,50,5,50,50,"USA Today","Republican" +5,3,9842,"turk",2,0,90,3,10,30,"USA Today","Democrat" +5,3,9843,"turk",3,0,1,3,99,99,"USA Today","Neither" +5,3,9845,"turk",3,0,80,3,20,20,"USA Today","Neither" +5,3,9846,"turk",3,0,80,4,20,20,"USA Today","Democrat" +5,3,9859,"turk",2,0,90,3,10,10,"USA Today","Democrat" +5,3,9860,"turk",3,0,99,3,1,30,"USA Today","Republican" +5,3,9864,"turk",2,0,99,5,1,1,"USA Today","Republican" +5,3,9866,"turk",4,0,70,4,30,30,"USA Today","Republican" +5,3,9867,"turk",4,0,10,5,90,90,"USA Today","Democrat" +5,3,9868,"turk",3,0,80,2,20,20,"USA Today","Democrat" +5,3,9869,"turk",2,0,99,3,1,11,"USA Today","Republican" +5,3,9871,"turk",4,0,78,4,22,1,"USA Today","Republican" +5,3,9875,"turk",3,0,99,3,1,20,"USA Today","Democrat" +5,3,9877,"turk",2,0,50,4,50,50,"USA Today","Neither" +5,3,9880,"turk",3,0,90,4,10,10,"USA Today","Democrat" +5,3,9881,"turk",4,0,1,3,99,99,"USA Today","Democrat" +5,3,9882,"turk",3,0,59,2,41,50,"USA Today","Democrat" +5,3,9885,"turk",3,0,80,2,20,25,"USA Today","Democrat" +5,3,9886,"turk",2,0,99,2,1,1,"USA Today","Republican" +5,3,9889,"turk",4,0,95,3,5,85,"USA Today","Neither" +5,3,9892,"turk",4,0,65,3,35,35,"USA Today","Democrat" +5,3,9897,"turk",2,0,15,4,85,85,"USA Today","Democrat" +5,3,9898,"turk",2,0,50,2,50,100,"USA Today","Republican" +5,3,9905,"turk",2,0,99,4,1,1,"USA Today","Republican" +5,3,9906,"turk",3,0,80,5,20,5,"USA Today","Democrat" +5,3,9907,"turk",2,0,99,5,1,1,"USA Today","Democrat" +5,3,9911,"turk",3,0,40,2,60,100,"USA Today","Democrat" +5,3,9912,"turk",2,0,100,4,0,1,"USA Today","Democrat" +5,3,9913,"turk",4,0,90,5,10,10,"USA Today","Neither" +5,3,9915,"turk",4,0,1,5,99,99,"USA Today","Democrat" +5,3,9922,"turk",2,0,70,3,30,32,"USA Today","Democrat" +5,3,9928,"turk",4,0,99,4,1,1,"USA Today","Democrat" +5,3,9929,"turk",2,0,20,2,80,85,"USA Today","Neither" +5,3,9930,"turk",2,0,70,3,30,40,"USA Today","Democrat" +5,3,9934,"turk",2,0,50,2,50,25,"USA Today","Democrat" +5,3,9935,"turk",2,0,45,2,55,50,"USA Today","Neither" +5,3,9947,"turk",2,0,99,3,1,1,"USA Today","Democrat" +5,3,9948,"turk",3,0,99,2,1,20,"USA Today","Republican" +5,3,9949,"turk",3,0,65,4,35,50,"USA Today","Neither" +5,3,9951,"turk",4,0,99,4,1,99,"USA Today","Republican" +5,3,9954,"turk",2,0,90,3,10,15,"USA Today","Democrat" +5,3,9956,"turk",3,0,65,5,35,35,"USA Today","Democrat" +5,3,9960,"turk",3,0,90,4,10,2,"USA Today","Democrat" +5,3,9961,"turk",4,0,1,3,99,99,"USA Today","Republican" +5,3,9964,"turk",2,0,20,5,80,80,"USA Today","Democrat" +5,3,9968,"turk",3,0,99,4,1,1,"USA Today","Democrat" +5,3,9969,"turk",4,0,1,5,99,99,"USA Today","Democrat" +5,3,9970,"turk",3,0,100,2,0,0,"USA Today","Republican" +5,3,9973,"turk",2,0,99,4,1,1,"USA Today","Democrat" +5,3,9978,"turk",4,0,99,4,1,1,"USA Today","Republican" +5,3,9979,"turk",2,0,50,2,50,80,"USA Today","Republican" +5,3,9980,"turk",3,0,80,5,20,20,"USA Today","Republican" +5,3,9981,"turk",3,0,35,4,65,60,"USA Today","Democrat" +5,3,9985,"turk",2,0,40,2,60,90,"USA Today","Democrat" +5,3,9987,"turk",2,0,38,5,62,60,"USA Today","Democrat" +5,3,9994,"turk",3,0,99,3,1,1,"USA Today","Democrat" +5,3,10006,"turk",2,0,50,2,50,30,"USA Today","Democrat" +5,3,10007,"turk",2,0,99,2,1,20,"USA Today","Republican" +5,3,10008,"turk",3,0,20,3,80,85,"USA Today","Republican" +5,3,10010,"turk",4,0,70,2,30,40,"USA Today","Democrat" +5,3,10011,"turk",2,0,80,4,20,20,"USA Today","Democrat" +5,3,10015,"turk",3,0,75,3,25,50,"USA Today","Neither" +5,3,10017,"turk",2,0,99,5,1,1,"USA Today","Democrat" +5,3,10021,"turk",3,0,70,4,30,30,"USA Today","Democrat" +5,3,10026,"turk",2,0,60,2,40,98,"USA Today","Neither" +5,3,10027,"turk",2,0,99,4,1,20,"USA Today","Republican" +5,3,10028,"turk",3,0,75,5,25,25,"USA Today","Republican" +5,3,10034,"turk",3,0,55,4,45,78,"USA Today","Neither" +5,3,10037,"turk",3,0,99,5,1,5,"USA Today","Democrat" +5,3,10038,"turk",4,0,99,3,1,1,"USA Today","Democrat" +5,3,10039,"turk",2,0,70,3,30,40,"USA Today","Democrat" +5,3,10040,"turk",4,0,70,3,30,20,"USA Today","Democrat" +5,3,10042,"turk",2,0,95,5,5,5,"USA Today","Democrat" +5,3,10043,"turk",3,0,50,3,50,60,"USA Today","Democrat" +5,3,10044,"turk",3,0,50,3,50,70,"USA Today","Republican" +5,3,10046,"turk",2,0,20,3,80,70,"USA Today","Neither" +5,3,10050,"turk",3,0,90,2,10,40,"USA Today","Democrat" +5,3,10051,"turk",4,0,67,2,33,50,"USA Today","Democrat" +5,3,10056,"turk",2,0,55,5,45,65,"USA Today","Republican" +5,3,10057,"turk",2,0,75,2,25,50,"USA Today","Republican" +5,3,10058,"turk",4,0,50,2,50,99,"USA Today","Republican" +5,3,10060,"turk",3,0,70,5,30,30,"USA Today","Democrat" +5,3,10062,"turk",3,0,1,3,99,50,"USA Today","Democrat" +5,3,10063,"turk",3,0,99,4,1,1,"USA Today","Republican" +5,3,10064,"turk",4,0,99,4,1,99,"USA Today","Republican" +5,3,10066,"turk",2,0,99,5,1,1,"USA Today","Democrat" +5,3,10069,"turk",3,0,75,5,25,25,"USA Today","Republican" +5,3,10073,"turk",2,0,60,5,40,50,"USA Today","Neither" +5,3,10074,"turk",3,0,95,4,5,1,"USA Today","Democrat" +5,3,10075,"turk",3,0,99,4,1,100,"USA Today","Democrat" +5,3,10077,"turk",4,0,80,3,20,25,"USA Today","Democrat" +5,3,10078,"turk",2,0,50,2,50,50,"USA Today","Republican" +5,3,10079,"turk",4,0,80,3,20,25,"USA Today","Republican" +5,3,10082,"turk",3,0,99,5,1,99,"USA Today","Neither" +5,3,10086,"turk",4,0,65,4,35,55,"USA Today","Neither" +5,3,10087,"turk",2,0,45,2,55,85,"USA Today","Neither" +5,3,10091,"turk",2,0,99,5,1,1,"USA Today","Democrat" +5,3,10098,"turk",3,0,80,2,20,85,"USA Today","Neither" +5,3,10102,"turk",3,0,80,3,20,85,"USA Today","Democrat" +5,3,10104,"turk",4,0,85,4,15,25,"USA Today","Democrat" +5,3,10105,"turk",4,0,30,3,70,70,"USA Today","Democrat" +5,3,10113,"turk",3,0,1,3,99,99,"USA Today","Republican" +5,3,10115,"turk",4,0,38,4,62,62,"USA Today","Republican" +5,3,10117,"turk",4,0,80,3,20,25,"USA Today","Democrat" +5,3,10118,"turk",4,0,99,3,1,1,"USA Today","Democrat" +5,3,10119,"turk",4,0,99,3,1,1,"USA Today","Neither" +5,3,10121,"turk",3,0,55,2,45,50,"USA Today","Neither" +5,3,10122,"turk",3,0,70,2,30,40,"USA Today","Democrat" +5,3,10130,"turk",2,0,90,2,10,80,"USA Today","Neither" +5,3,10133,"turk",3,0,90,3,10,15,"USA Today","Democrat" +5,3,10134,"turk",2,0,10,2,90,90,"USA Today","Republican" +5,3,10147,"turk",2,0,78,5,22,22,"USA Today","Democrat" +5,3,10148,"turk",3,0,99,4,1,1,"USA Today","Republican" +5,3,10151,"turk",2,0,99,4,1,1,"USA Today","Democrat" +5,3,10152,"turk",3,0,75,4,25,25,"USA Today","Neither" +5,3,10154,"turk",2,0,99,4,1,1,"USA Today","Democrat" +5,3,10158,"turk",3,0,50,3,50,60,"USA Today","Democrat" +5,3,10161,"turk",3,0,3,4,97,97,"USA Today","Republican" +5,3,10163,"turk",2,0,99,2,1,1,"USA Today","Democrat" +5,3,10165,"turk",3,0,99,4,1,1,"USA Today","Democrat" +5,3,10166,"turk",3,0,60,3,40,60,"USA Today","Democrat" +5,3,10167,"turk",2,0,88,2,12,12,"USA Today","Democrat" +5,3,10170,"turk",3,0,0,2,100,100,"USA Today","Neither" +5,3,10171,"turk",2,0,80,2,20,50,"USA Today","Democrat" +5,3,10174,"turk",4,0,100,5,0,0,"USA Today","Democrat" +5,3,10178,"turk",3,0,99,4,1,1,"USA Today","Democrat" +5,3,10182,"turk",4,0,70,2,30,55,"USA Today","Democrat" +5,3,10183,"turk",2,0,99,2,1,100,"USA Today","" +5,3,10184,"turk",3,0,70,3,30,50,"USA Today","Republican" +5,3,10186,"turk",3,0,62,4,38,85,"USA Today","Democrat" +5,3,10190,"turk",3,0,65,5,35,85,"USA Today","Democrat" +5,3,10193,"turk",4,0,80,4,20,21,"USA Today","Democrat" +5,3,10195,"turk",4,0,90,3,10,40,"USA Today","Republican" +5,3,10196,"turk",4,0,99,2,1,1,"USA Today","Democrat" +5,3,10198,"turk",2,0,99,5,1,1,"USA Today","Democrat" +5,3,10207,"turk",4,0,99,4,1,10,"USA Today","Republican" +5,3,10210,"turk",2,0,99,3,1,1,"USA Today","Republican" +5,3,10211,"turk",2,0,50,5,50,50,"USA Today","Democrat" +5,3,10217,"turk",2,0,99,4,1,99,"USA Today","Democrat" +5,3,10218,"turk",3,0,1,5,99,99,"USA Today","Democrat" +5,3,10222,"turk",3,0,1,3,99,99,"USA Today","Neither" +5,3,10223,"turk",2,0,99,2,1,20,"USA Today","Democrat" +5,3,10225,"turk",3,0,99,5,1,5,"USA Today","Republican" +5,3,10226,"turk",2,0,50,2,50,99,"USA Today","Republican" +5,3,10229,"turk",2,0,1,4,99,99,"USA Today","Democrat" +5,3,10230,"turk",4,0,92,5,8,8,"USA Today","Neither" +5,3,10231,"turk",2,0,99,3,1,1,"USA Today","Democrat" +5,3,10233,"turk",4,0,100,3,0,0,"USA Today","Neither" +5,3,10236,"turk",3,0,75,5,25,30,"USA Today","Democrat" +5,3,10238,"turk",2,0,99,3,1,1,"USA Today","Democrat" +5,3,10239,"turk",3,0,2,5,98,98,"USA Today","Republican" +5,3,10241,"turk",4,0,99,3,1,50,"USA Today","Democrat" +5,3,10243,"turk",4,0,99,4,1,1,"USA Today","Republican" +5,3,10244,"turk",4,0,90,2,10,10,"USA Today","Republican" +5,3,10246,"turk",4,0,0,5,100,0,"USA Today","Democrat" +5,3,10247,"turk",4,0,99,4,1,1,"USA Today","Democrat" +5,3,10248,"turk",4,0,85,5,15,23,"USA Today","Democrat" +5,3,10249,"turk",4,0,55,3,45,45,"USA Today","Democrat" +5,3,10250,"turk",4,0,65,2,35,67,"USA Today","Democrat" +5,3,10251,"turk",2,0,99,4,1,1,"USA Today","Democrat" +5,3,10252,"turk",4,0,99,5,1,1,"USA Today","Republican" +5,3,10254,"turk",3,0,90,3,10,20,"USA Today","Democrat" +5,3,10256,"turk",4,0,99,5,1,1,"USA Today","Neither" +5,3,10273,"turk",2,0,80,3,20,20,"USA Today","Democrat" +5,3,10277,"turk",2,0,99,4,1,1,"USA Today","Democrat" +5,3,10278,"turk",4,0,90,2,10,20,"USA Today","Democrat" +5,3,10280,"turk",2,0,99,2,1,1,"USA Today","Republican" +5,3,10284,"turk",2,0,99,5,1,50,"USA Today","Democrat" +5,3,10285,"turk",2,0,50,3,50,99,"USA Today","Republican" +5,3,10289,"turk",2,0,99,4,1,1,"USA Today","Republican" +5,3,10290,"turk",2,0,99,2,1,21,"USA Today","Neither" +5,3,10292,"turk",4,0,99,3,1,99,"USA Today","Democrat" +5,3,10295,"turk",2,0,88,5,12,10,"USA Today","Democrat" +5,3,10299,"turk",4,0,75,2,25,25,"USA Today","Republican" +5,3,10302,"turk",4,0,75,3,25,25,"USA Today","Republican" +5,3,10303,"turk",4,0,79,4,21,32,"USA Today","Democrat" +5,3,10304,"turk",4,0,1,2,99,99,"USA Today","Democrat" +5,3,10305,"turk",4,0,99,4,1,1,"USA Today","Democrat" +5,3,10306,"turk",2,0,98,3,2,15,"USA Today","Democrat" +5,3,10307,"turk",4,0,60,2,40,50,"USA Today","Republican" +5,3,10314,"turk",3,0,90,2,10,10,"USA Today","" +5,3,10316,"turk",4,0,99,5,1,50,"USA Today","Neither" +5,3,10317,"turk",3,0,99,5,1,10,"USA Today","Democrat" +5,3,10318,"turk",2,0,29,2,71,80,"USA Today","Democrat" +5,3,10319,"turk",4,0,99,2,1,99,"USA Today","Neither" +5,3,10321,"turk",4,0,50,3,50,50,"USA Today","Republican" +5,3,10322,"turk",3,0,50,4,50,50,"USA Today","Republican" +5,3,10323,"turk",4,0,99,2,1,50,"USA Today","Democrat" +5,3,10327,"turk",2,0,99,5,1,1,"USA Today","Democrat" +5,3,10330,"turk",2,0,75,2,25,30,"USA Today","Democrat" +5,3,10335,"turk",4,0,100,5,0,1,"USA Today","Democrat" +5,3,10336,"turk",2,0,99,4,1,5,"USA Today","Neither" +5,3,10338,"turk",3,0,99,5,1,99,"USA Today","Neither" +5,3,10340,"turk",4,0,75,3,25,30,"USA Today","Neither" +5,3,10341,"turk",4,0,60,5,40,40,"USA Today","Democrat" +5,3,10342,"turk",4,0,80,3,20,30,"USA Today","Democrat" +5,3,10344,"turk",3,0,85,4,15,15,"USA Today","Neither" +5,3,10345,"turk",3,0,99,4,1,1,"USA Today","Republican" +5,3,10346,"turk",4,0,80,3,20,35,"USA Today","Democrat" +5,3,10352,"turk",3,0,65,2,35,50,"USA Today","Democrat" +5,3,10353,"turk",3,0,90,4,10,20,"USA Today","Democrat" +5,3,10357,"turk",3,0,70,5,30,50,"USA Today","Democrat" +5,3,10359,"turk",4,0,99,2,1,1,"USA Today","Republican" +5,3,10360,"turk",3,0,1,5,99,99,"USA Today","Democrat" +5,3,10362,"turk",2,0,100,5,0,0,"USA Today","Democrat" +5,3,10365,"turk",4,0,70,4,30,40,"USA Today","Republican" +5,3,10371,"turk",4,0,1,2,99,99,"USA Today","Democrat" +5,3,10375,"turk",3,0,99,2,1,31,"USA Today","Democrat" +5,3,10376,"turk",3,0,1,5,99,99,"USA Today","Republican" +5,3,10384,"turk",2,0,80,4,20,20,"USA Today","Democrat" +5,3,10386,"turk",4,0,99,4,1,1,"USA Today","Democrat" +5,3,10392,"turk",2,0,90,5,10,16,"USA Today","Democrat" +5,3,10396,"turk",4,0,8,3,92,95,"USA Today","Republican" +5,3,10397,"turk",3,0,99,3,1,1,"USA Today","Neither" +5,3,10399,"turk",2,0,2,4,98,98,"USA Today","Democrat" +5,3,10402,"turk",3,0,99,4,1,1,"USA Today","Democrat" +5,3,10403,"turk",3,0,70,2,30,50,"USA Today","Republican" +5,3,10405,"turk",4,0,99,5,1,25,"USA Today","Democrat" +5,3,10407,"turk",4,0,60,3,40,30,"USA Today","Neither" +5,3,10408,"turk",3,0,99,5,1,50,"USA Today","Democrat" +5,3,10410,"turk",2,0,50,2,50,95,"USA Today","Democrat" +5,3,10414,"turk",2,0,99,2,1,1,"USA Today","Neither" +5,3,10417,"turk",2,0,95,4,5,7,"USA Today","Neither" +5,3,10418,"turk",2,0,34,2,66,76,"USA Today","Democrat" +5,3,10421,"turk",3,0,99,3,1,1,"USA Today","Democrat" +5,3,10423,"turk",4,0,10,3,90,90,"USA Today","Neither" +5,3,10430,"turk",4,0,99,3,1,1,"USA Today","Neither" +5,3,10431,"turk",4,0,60,4,40,100,"USA Today","Republican" +5,3,10433,"turk",4,0,1,3,99,51,"USA Today","Democrat" +5,3,10434,"turk",3,0,60,4,40,40,"USA Today","Democrat" +5,3,10436,"turk",2,0,99,4,1,1,"USA Today","Democrat" +5,3,10440,"turk",2,0,62,3,38,48,"USA Today","Democrat" +5,3,10445,"turk",4,0,60,2,40,50,"USA Today","Democrat" +5,3,10446,"turk",2,0,70,3,30,25,"USA Today","Democrat" +5,3,10447,"turk",3,0,1,4,99,1,"USA Today","Neither" +5,3,10452,"turk",2,0,1,5,99,99,"USA Today","Neither" +5,3,10455,"turk",3,0,1,2,99,50,"USA Today","Democrat" +5,3,10456,"turk",3,0,99,5,1,1,"USA Today","Democrat" +5,3,10457,"turk",2,0,65,4,35,35,"USA Today","Republican" +5,3,10460,"turk",2,0,1,4,99,99,"USA Today","Democrat" +5,3,10461,"turk",4,0,99,5,1,10,"USA Today","Democrat" +5,3,10463,"turk",4,0,75,5,25,25,"USA Today","Republican" +5,3,10464,"turk",3,0,1,3,99,50,"USA Today","Democrat" +5,3,10466,"turk",2,0,90,5,10,10,"USA Today","Neither" +5,3,10468,"turk",3,0,55,3,45,45,"USA Today","Democrat" +5,3,10469,"turk",4,0,1,4,99,99,"USA Today","Neither" +5,3,10470,"turk",4,0,75,2,25,50,"USA Today","Democrat" +5,3,10480,"turk",2,0,33,2,67,67,"USA Today","Neither" +5,3,10481,"turk",3,0,75,3,25,30,"USA Today","Neither" +5,3,10487,"turk",3,0,50,5,50,55,"USA Today","Democrat" +5,3,10488,"turk",2,0,100,4,0,0,"USA Today","Republican" +5,3,10491,"turk",2,0,90,5,10,10,"USA Today","Democrat" +5,3,10493,"turk",2,0,99,2,1,1,"USA Today","Democrat" +5,3,10494,"turk",3,0,62,3,38,45,"USA Today","Republican" +5,3,10495,"turk",3,0,87,5,13,15,"USA Today","Neither" +5,3,10500,"turk",4,0,99,2,1,1,"USA Today","Neither" +5,3,10501,"turk",2,0,100,4,0,0,"USA Today","Democrat" +5,3,10504,"turk",3,0,60,4,40,75,"USA Today","Democrat" +5,3,10508,"turk",4,0,35,2,65,65,"USA Today","Democrat" +5,3,10509,"turk",4,0,99,4,1,1,"USA Today","Democrat" +5,3,10512,"turk",2,0,100,4,0,0,"USA Today","Democrat" +5,3,10513,"turk",2,0,50,5,50,50,"USA Today","Republican" +5,3,10516,"turk",4,0,99,4,1,1,"USA Today","Democrat" +5,3,10517,"turk",3,0,50,2,50,50,"USA Today","Republican" +5,3,10519,"turk",4,0,1,2,99,99,"USA Today","Republican" +5,3,10520,"turk",4,0,99,3,1,1,"USA Today","Democrat" +5,3,10521,"turk",2,0,99,2,1,1,"USA Today","Democrat" +5,3,10525,"turk",2,0,1,5,99,99,"USA Today","Neither" +5,3,10526,"turk",3,0,60,3,40,40,"USA Today","Neither" +5,3,10528,"turk",4,0,99,3,1,1,"USA Today","Neither" +5,3,10530,"turk",2,0,69,4,31,45,"USA Today","Democrat" +5,3,10531,"turk",4,0,5,4,95,1,"USA Today","Neither" +5,3,10532,"turk",2,0,75,2,25,35,"USA Today","Democrat" +5,3,10533,"turk",2,0,70,3,30,50,"USA Today","Democrat" +5,3,9742,"turk",2,1,99,3,99,99,"USA Today","Neither" +5,3,9744,"turk",4,1,99,5,99,99,"USA Today","Democrat" +5,3,9745,"turk",2,1,99,3,99,99,"USA Today","Republican" +5,3,9748,"turk",3,1,68,5,68,50,"USA Today","Democrat" +5,3,9750,"turk",4,1,99,5,99,99,"USA Today","Republican" +5,3,9751,"turk",3,1,99,4,99,99,"USA Today","Democrat" +5,3,9752,"turk",4,1,100,5,100,100,"USA Today","Democrat" +5,3,9754,"turk",3,1,100,5,100,95,"USA Today","Republican" +5,3,9757,"turk",3,1,70,2,70,60,"USA Today","Democrat" +5,3,9758,"turk",2,1,100,5,100,100,"USA Today","Neither" +5,3,9760,"turk",2,1,50,4,50,75,"USA Today","Neither" +5,3,9761,"turk",3,1,99,4,99,99,"USA Today","Democrat" +5,3,9762,"turk",2,1,45,3,45,40,"USA Today","Neither" +5,3,9768,"turk",2,1,80,4,80,80,"USA Today","Democrat" +5,3,9769,"turk",3,1,90,5,90,70,"USA Today","Democrat" +5,3,9772,"turk",4,1,65,4,65,60,"USA Today","Democrat" +5,3,9774,"turk",2,1,80,4,80,80,"USA Today","Democrat" +5,3,9775,"turk",3,1,85,5,85,85,"USA Today","Neither" +5,3,9781,"turk",2,1,90,3,90,70,"USA Today","Neither" +5,3,9783,"turk",3,1,99,4,99,99,"USA Today","Neither" +5,3,9788,"turk",3,1,75,3,75,65,"USA Today","Democrat" +5,3,9793,"turk",3,1,99,3,99,50,"USA Today","Neither" +5,3,9805,"turk",3,1,65,2,65,50,"USA Today","Democrat" +5,3,9806,"turk",4,1,95,3,95,90,"USA Today","Neither" +5,3,9808,"turk",4,1,70,4,70,70,"USA Today","Neither" +5,3,9812,"turk",2,1,98,4,98,98,"USA Today","Republican" +5,3,9813,"turk",2,1,99,2,99,50,"USA Today","Republican" +5,3,9816,"turk",2,1,99,4,99,99,"USA Today","Democrat" +5,3,9819,"turk",4,1,90,4,90,85,"USA Today","Republican" +5,3,9824,"turk",2,1,99,5,99,99,"USA Today","Democrat" +5,3,9825,"turk",3,1,1,3,1,50,"USA Today","Neither" +5,3,9826,"turk",3,1,75,5,75,75,"USA Today","Republican" +5,3,9831,"turk",2,1,75,5,75,75,"USA Today","Democrat" +5,3,9832,"turk",2,1,1,3,1,1,"USA Today","Republican" +5,3,9833,"turk",3,1,0,3,0,75,"USA Today","Democrat" +5,3,9834,"turk",2,1,75,3,75,75,"USA Today","Democrat" +5,3,9835,"turk",3,1,99,5,99,99,"USA Today","Democrat" +5,3,9837,"turk",4,1,1,2,1,1,"USA Today","Republican" +5,3,9838,"turk",2,1,46,2,46,63,"USA Today","Democrat" +5,3,9839,"turk",3,1,99,4,99,99,"USA Today","Democrat" +5,3,9841,"turk",3,1,99,5,99,99,"USA Today","Democrat" +5,3,9844,"turk",4,1,99,2,99,99,"USA Today","Democrat" +5,3,9847,"turk",3,1,99,3,99,99,"USA Today","Republican" +5,3,9848,"turk",3,1,60,3,60,60,"USA Today","Neither" +5,3,9850,"turk",4,1,75,2,75,75,"USA Today","Republican" +5,3,9851,"turk",4,1,99,2,99,99,"USA Today","Democrat" +5,3,9854,"turk",3,1,85,5,85,85,"USA Today","Neither" +5,3,9857,"turk",4,1,99,5,99,99,"USA Today","Democrat" +5,3,9858,"turk",2,1,99,5,99,99,"USA Today","Republican" +5,3,9863,"turk",3,1,75,5,75,75,"USA Today","Neither" +5,3,9865,"turk",2,1,50,3,50,50,"USA Today","Neither" +5,3,9878,"turk",3,1,99,5,99,99,"USA Today","Republican" +5,3,9879,"turk",2,1,78,4,78,70,"USA Today","Democrat" +5,3,9883,"turk",4,1,99,4,99,99,"USA Today","Republican" +5,3,9887,"turk",2,1,25,3,25,25,"USA Today","Republican" +5,3,9888,"turk",3,1,99,4,99,99,"USA Today","Republican" +5,3,9890,"turk",3,1,65,2,65,50,"USA Today","Republican" +5,3,9891,"turk",4,1,90,4,90,90,"USA Today","Democrat" +5,3,9894,"turk",2,1,90,3,90,90,"USA Today","Democrat" +5,3,9895,"turk",3,1,99,4,99,99,"USA Today","Neither" +5,3,9896,"turk",2,1,75,2,75,25,"USA Today","Neither" +5,3,9899,"turk",2,1,99,4,99,99,"USA Today","Democrat" +5,3,9900,"turk",3,1,99,2,99,88,"USA Today","Democrat" +5,3,9903,"turk",4,1,99,5,99,90,"USA Today","Democrat" +5,3,9908,"turk",4,1,65,2,65,25,"USA Today","Democrat" +5,3,9910,"turk",4,1,50,4,50,1,"USA Today","Democrat" +5,3,9914,"turk",2,1,90,4,90,90,"USA Today","Republican" +5,3,9916,"turk",4,1,50,3,50,1,"USA Today","Republican" +5,3,9920,"turk",4,1,99,5,99,99,"USA Today","Republican" +5,3,9921,"turk",4,1,99,2,99,50,"USA Today","Democrat" +5,3,9924,"turk",3,1,99,3,99,99,"USA Today","Democrat" +5,3,9925,"turk",4,1,55,2,55,55,"USA Today","Democrat" +5,3,9926,"turk",3,1,50,2,50,50,"USA Today","Republican" +5,3,9927,"turk",4,1,100,4,100,100,"USA Today","Republican" +5,3,9931,"turk",4,1,99,3,99,99,"USA Today","Neither" +5,3,9932,"turk",2,1,99,2,99,99,"USA Today","Democrat" +5,3,9933,"turk",4,1,0,3,0,70,"USA Today","Republican" +5,3,9936,"turk",4,1,90,3,90,80,"USA Today","Republican" +5,3,9940,"turk",3,1,50,2,50,5,"USA Today","Democrat" +5,3,9942,"turk",4,1,100,4,100,99,"USA Today","Democrat" +5,3,9944,"turk",4,1,50,2,50,50,"USA Today","Democrat" +5,3,9946,"turk",4,1,99,3,99,98,"USA Today","Democrat" +5,3,9953,"turk",3,1,40,2,40,1,"USA Today","Neither" +5,3,9955,"turk",2,1,75,5,75,75,"USA Today","Republican" +5,3,9957,"turk",3,1,99,4,99,1,"USA Today","Republican" +5,3,9958,"turk",2,1,80,2,80,75,"USA Today","Republican" +5,3,9959,"turk",3,1,40,5,40,40,"USA Today","Democrat" +5,3,9963,"turk",2,1,25,3,25,25,"USA Today","Republican" +5,3,9971,"turk",2,1,99,5,99,99,"USA Today","Democrat" +5,3,9972,"turk",4,1,50,2,50,1,"USA Today","Democrat" +5,3,9974,"turk",4,1,55,2,55,35,"USA Today","Democrat" +5,3,9975,"turk",2,1,90,5,90,90,"USA Today","Democrat" +5,3,9977,"turk",4,1,100,4,100,100,"USA Today","Neither" +5,3,9982,"turk",2,1,80,4,80,75,"USA Today","Republican" +5,3,9983,"turk",2,1,99,3,99,1,"USA Today","Democrat" +5,3,9986,"turk",2,1,90,5,90,90,"USA Today","Democrat" +5,3,9989,"turk",4,1,60,3,60,55,"USA Today","Democrat" +5,3,9991,"turk",4,1,70,3,70,70,"USA Today","Neither" +5,3,9992,"turk",4,1,1,2,1,1,"USA Today","Republican" +5,3,9993,"turk",2,1,50,4,50,10,"USA Today","Neither" +5,3,9997,"turk",2,1,99,3,99,99,"USA Today","Democrat" +5,3,9998,"turk",2,1,85,2,85,50,"USA Today","Democrat" +5,3,9999,"turk",3,1,99,5,99,99,"USA Today","Democrat" +5,3,10000,"turk",2,1,50,4,50,30,"USA Today","Democrat" +5,3,10001,"turk",2,1,99,3,99,99,"USA Today","Democrat" +5,3,10003,"turk",2,1,75,4,75,70,"USA Today","Democrat" +5,3,10012,"turk",4,1,99,4,99,99,"USA Today","Neither" +5,3,10013,"turk",2,1,99,3,99,99,"USA Today","Democrat" +5,3,10014,"turk",2,1,95,5,95,90,"USA Today","Republican" +5,3,10019,"turk",3,1,98,5,98,95,"USA Today","Neither" +5,3,10020,"turk",4,1,99,5,99,99,"USA Today","Democrat" +5,3,10023,"turk",4,1,25,3,25,25,"USA Today","Republican" +5,3,10030,"turk",2,1,99,4,99,99,"USA Today","Democrat" +5,3,10031,"turk",2,1,85,4,85,80,"USA Today","Neither" +5,3,10032,"turk",2,1,50,4,50,50,"USA Today","Democrat" +5,3,10035,"turk",4,1,70,4,70,70,"USA Today","Democrat" +5,3,10048,"turk",3,1,80,2,80,80,"USA Today","Democrat" +5,3,10049,"turk",3,1,20,4,20,20,"USA Today","Democrat" +5,3,10052,"turk",2,1,100,2,100,100,"USA Today","Democrat" +5,3,10053,"turk",4,1,99,5,99,75,"USA Today","Republican" +5,3,10054,"turk",3,1,99,5,99,99,"USA Today","Democrat" +5,3,10055,"turk",2,1,1,2,1,25,"USA Today","Republican" +5,3,10059,"turk",2,1,99,2,99,99,"USA Today","Democrat" +5,3,10061,"turk",3,1,4,2,4,1,"USA Today","Democrat" +5,3,10065,"turk",3,1,80,2,80,80,"USA Today","Democrat" +5,3,10067,"turk",4,1,1,2,1,1,"USA Today","Democrat" +5,3,10070,"turk",2,1,100,4,100,100,"USA Today","Democrat" +5,3,10071,"turk",3,1,50,5,50,1,"USA Today","Republican" +5,3,10072,"turk",2,1,100,4,100,100,"USA Today","Democrat" +5,3,10083,"turk",2,1,1,4,1,1,"USA Today","Republican" +5,3,10084,"turk",4,1,99,3,99,99,"USA Today","Neither" +5,3,10088,"turk",2,1,90,4,90,80,"USA Today","Republican" +5,3,10089,"turk",4,1,99,2,99,99,"USA Today","Neither" +5,3,10090,"turk",3,1,50,4,50,70,"USA Today","Democrat" +5,3,10092,"turk",2,1,6,5,6,1,"USA Today","Neither" +5,3,10094,"turk",4,1,99,3,99,1,"USA Today","Democrat" +5,3,10095,"turk",2,1,99,5,99,99,"USA Today","Democrat" +5,3,10100,"turk",4,1,70,5,70,70,"USA Today","Democrat" +5,3,10103,"turk",4,1,95,3,95,80,"USA Today","Democrat" +5,3,10106,"turk",3,1,80,2,80,1,"USA Today","Democrat" +5,3,10107,"turk",2,1,97,5,97,97,"USA Today","Democrat" +5,3,10109,"turk",2,1,100,2,100,100,"USA Today","Democrat" +5,3,10124,"turk",3,1,99,3,99,99,"USA Today","Republican" +5,3,10125,"turk",3,1,85,4,85,70,"USA Today","Democrat" +5,3,10128,"turk",4,1,99,2,99,99,"USA Today","Democrat" +5,3,10129,"turk",4,1,50,3,50,99,"USA Today","Democrat" +5,3,10136,"turk",3,1,99,5,99,99,"USA Today","Democrat" +5,3,10137,"turk",4,1,85,3,85,75,"USA Today","Democrat" +5,3,10142,"turk",3,1,99,4,99,99,"USA Today","Republican" +5,3,10143,"turk",2,1,99,5,99,99,"USA Today","Democrat" +5,3,10144,"turk",2,1,75,3,75,68,"USA Today","Democrat" +5,3,10146,"turk",2,1,99,5,99,99,"USA Today","Democrat" +5,3,10149,"turk",3,1,99,2,99,0,"USA Today","Republican" +5,3,10150,"turk",4,1,99,5,99,99,"USA Today","Democrat" +5,3,10153,"turk",4,1,70,3,70,50,"USA Today","Republican" +5,3,10156,"turk",3,1,100,5,100,100,"USA Today","Democrat" +5,3,10157,"turk",3,1,75,3,75,70,"USA Today","Democrat" +5,3,10159,"turk",4,1,10,2,10,30,"USA Today","Republican" +5,3,10160,"turk",4,1,99,4,99,99,"USA Today","Democrat" +5,3,10162,"turk",4,1,80,5,80,80,"USA Today","Democrat" +5,3,10168,"turk",4,1,40,3,40,20,"USA Today","Democrat" +5,3,10173,"turk",4,1,81,3,81,90,"USA Today","Democrat" +5,3,10175,"turk",2,1,99,4,99,99,"USA Today","Neither" +5,3,10176,"turk",2,1,99,5,99,99,"USA Today","Democrat" +5,3,10177,"turk",4,1,70,3,70,60,"USA Today","Democrat" +5,3,10179,"turk",2,1,99,4,99,99,"USA Today","Republican" +5,3,10180,"turk",4,1,60,3,60,60,"USA Today","Neither" +5,3,10181,"turk",3,1,100,2,100,99,"USA Today","Democrat" +5,3,10188,"turk",3,1,1,3,1,1,"USA Today","Democrat" +5,3,10189,"turk",2,1,99,3,99,99,"USA Today","Democrat" +5,3,10191,"turk",3,1,80,2,80,50,"USA Today","Democrat" +5,3,10192,"turk",2,1,99,4,99,1,"USA Today","Republican" +5,3,10199,"turk",2,1,50,2,50,1,"USA Today","Republican" +5,3,10200,"turk",4,1,23,3,23,25,"USA Today","Democrat" +5,3,10201,"turk",4,1,67,5,67,65,"USA Today","Republican" +5,3,10202,"turk",2,1,50,2,50,50,"USA Today","Neither" +5,3,10208,"turk",4,1,88,5,88,78,"USA Today","Democrat" +5,3,10212,"turk",4,1,99,3,99,99,"USA Today","Democrat" +5,3,10213,"turk",3,1,50,2,50,25,"USA Today","Republican" +5,3,10214,"turk",4,1,40,3,40,40,"USA Today","Neither" +5,3,10219,"turk",3,1,99,2,99,80,"USA Today","Democrat" +5,3,10220,"turk",4,1,99,5,99,99,"USA Today","Republican" +5,3,10221,"turk",4,1,99,3,99,99,"USA Today","Democrat" +5,3,10224,"turk",3,1,100,4,100,100,"USA Today","Democrat" +5,3,10228,"turk",4,1,99,4,99,99,"USA Today","Neither" +5,3,10232,"turk",4,1,20,3,20,70,"USA Today","Democrat" +5,3,10240,"turk",2,1,99,5,99,99,"USA Today","Neither" +5,3,10245,"turk",4,1,99,3,99,99,"USA Today","Neither" +5,3,10258,"turk",2,1,99,4,99,95,"USA Today","Neither" +5,3,10259,"turk",3,1,50,2,50,1,"USA Today","Democrat" +5,3,10260,"turk",4,1,99,4,99,99,"USA Today","Neither" +5,3,10261,"turk",4,1,99,3,99,99,"USA Today","Neither" +5,3,10263,"turk",4,1,99,4,99,95,"USA Today","Republican" +5,3,10264,"turk",2,1,99,2,99,99,"USA Today","Neither" +5,3,10265,"turk",4,1,80,3,80,70,"USA Today","Republican" +5,3,10266,"turk",2,1,99,4,99,99,"USA Today","Republican" +5,3,10267,"turk",2,1,99,5,99,99,"USA Today","Democrat" +5,3,10268,"turk",3,1,99,5,99,99,"USA Today","Democrat" +5,3,10269,"turk",2,1,1,4,1,99,"USA Today","Democrat" +5,3,10271,"turk",4,1,98,5,98,98,"USA Today","Republican" +5,3,10272,"turk",2,1,85,2,85,85,"USA Today","Democrat" +5,3,10275,"turk",4,1,50,3,50,1,"USA Today","Democrat" +5,3,10276,"turk",4,1,70,3,70,40,"USA Today","Neither" +5,3,10281,"turk",2,1,75,5,75,85,"USA Today","Democrat" +5,3,10287,"turk",3,1,100,5,100,100,"USA Today","Democrat" +5,3,10288,"turk",2,1,99,5,99,1,"USA Today","Neither" +5,3,10291,"turk",3,1,90,2,90,10,"USA Today","Neither" +5,3,10293,"turk",3,1,93,4,93,89,"USA Today","Democrat" +5,3,10294,"turk",2,1,70,4,70,75,"USA Today","Democrat" +5,3,10296,"turk",4,1,95,2,95,5,"USA Today","Republican" +5,3,10298,"turk",3,1,90,5,90,95,"USA Today","Neither" +5,3,10300,"turk",4,1,90,4,90,90,"USA Today","Democrat" +5,3,10301,"turk",2,1,60,3,60,65,"USA Today","Democrat" +5,3,10309,"turk",2,1,75,2,75,70,"USA Today","Republican" +5,3,10311,"turk",3,1,75,3,75,70,"USA Today","Democrat" +5,3,10312,"turk",4,1,99,5,99,99,"USA Today","Democrat" +5,3,10324,"turk",3,1,85,4,85,80,"USA Today","Neither" +5,3,10325,"turk",3,1,99,2,99,99,"USA Today","Democrat" +5,3,10326,"turk",2,1,50,4,50,1,"USA Today","Republican" +5,3,10328,"turk",3,1,1,5,1,99,"USA Today","Neither" +5,3,10329,"turk",4,1,99,5,99,1,"USA Today","Republican" +5,3,10331,"turk",4,1,90,2,90,70,"USA Today","Democrat" +5,3,10334,"turk",4,1,1,3,1,15,"USA Today","Neither" +5,3,10337,"turk",2,1,60,3,60,55,"USA Today","Democrat" +5,3,10339,"turk",4,1,99,2,99,99,"USA Today","Democrat" +5,3,10343,"turk",4,1,75,2,75,50,"USA Today","Republican" +5,3,10347,"turk",3,1,15,2,15,20,"USA Today","Democrat" +5,3,10350,"turk",2,1,99,4,99,99,"USA Today","Democrat" +5,3,10351,"turk",4,1,93,5,93,88,"USA Today","Democrat" +5,3,10354,"turk",2,1,1,2,1,1,"USA Today","Neither" +5,3,10356,"turk",2,1,99,4,99,99,"USA Today","Republican" +5,3,10358,"turk",3,1,25,2,25,1,"USA Today","Republican" +5,3,10361,"turk",2,1,50,3,50,80,"USA Today","Neither" +5,3,10366,"turk",4,1,50,3,50,10,"USA Today","Democrat" +5,3,10367,"turk",2,1,75,4,75,75,"USA Today","Republican" +5,3,10368,"turk",2,1,99,4,99,99,"USA Today","Democrat" +5,3,10369,"turk",3,1,99,2,99,50,"USA Today","Republican" +5,3,10370,"turk",4,1,99,4,99,80,"USA Today","Neither" +5,3,10373,"turk",2,1,98,4,98,95,"USA Today","Neither" +5,3,10374,"turk",3,1,56,4,56,33,"USA Today","Democrat" +5,3,10381,"turk",2,1,70,4,70,60,"USA Today","Democrat" +5,3,10383,"turk",2,1,47,5,47,55,"USA Today","Democrat" +5,3,10385,"turk",3,1,95,4,95,95,"USA Today","Republican" +5,3,10388,"turk",2,1,100,4,100,100,"USA Today","Neither" +5,3,10389,"turk",2,1,99,2,99,99,"USA Today","Neither" +5,3,10390,"turk",4,1,99,5,99,99,"USA Today","Democrat" +5,3,10391,"turk",4,1,50,2,50,50,"USA Today","Neither" +5,3,10394,"turk",2,1,99,4,99,99,"USA Today","Democrat" +5,3,10400,"turk",3,1,90,4,90,85,"USA Today","Neither" +5,3,10404,"turk",4,1,99,5,99,99,"USA Today","Republican" +5,3,10409,"turk",2,1,100,4,100,80,"USA Today","Republican" +5,3,10412,"turk",4,1,25,2,25,65,"USA Today","Democrat" +5,3,10415,"turk",2,1,98,2,98,95,"USA Today","Democrat" +5,3,10416,"turk",2,1,50,2,50,50,"USA Today","Republican" +5,3,10419,"turk",3,1,80,2,80,80,"USA Today","Neither" +5,3,10424,"turk",2,1,99,4,99,99,"USA Today","Republican" +5,3,10426,"turk",3,1,99,5,99,99,"USA Today","Republican" +5,3,10427,"turk",4,1,99,5,99,99,"USA Today","Republican" +5,3,10428,"turk",4,1,95,2,95,90,"USA Today","Republican" +5,3,10437,"turk",3,1,90,3,90,70,"USA Today","Democrat" +5,3,10438,"turk",4,1,70,5,70,60,"USA Today","Republican" +5,3,10439,"turk",4,1,90,3,90,75,"USA Today","Neither" +5,3,10443,"turk",4,1,10,3,10,30,"USA Today","Republican" +5,3,10444,"turk",4,1,99,5,99,99,"USA Today","Republican" +5,3,10448,"turk",4,1,60,3,60,50,"USA Today","Republican" +5,3,10449,"turk",2,1,80,4,80,80,"USA Today","Democrat" +5,3,10450,"turk",2,1,80,2,80,75,"USA Today","Democrat" +5,3,10453,"turk",3,1,99,4,99,99,"USA Today","Democrat" +5,3,10458,"turk",4,1,1,4,1,1,"USA Today","Republican" +5,3,10459,"turk",3,1,100,3,100,100,"USA Today","Democrat" +5,3,10462,"turk",3,1,1,2,1,1,"USA Today","Republican" +5,3,10467,"turk",4,1,9,5,9,99,"USA Today","Neither" +5,3,10473,"turk",2,1,1,2,1,1,"USA Today","Democrat" +5,3,10476,"turk",3,1,80,4,80,75,"USA Today","Neither" +5,3,10477,"turk",4,1,91,3,91,78,"USA Today","Republican" +5,3,10478,"turk",4,1,80,3,80,70,"USA Today","Neither" +5,3,10479,"turk",3,1,90,3,90,90,"USA Today","Democrat" +5,3,10483,"turk",2,1,60,2,60,50,"USA Today","Democrat" +5,3,10486,"turk",3,1,50,2,50,50,"USA Today","Neither" +5,3,10489,"turk",2,1,99,4,99,90,"USA Today","Democrat" +5,3,10490,"turk",4,1,90,3,90,80,"USA Today","Democrat" +5,3,10496,"turk",2,1,65,4,65,55,"USA Today","Republican" +5,3,10497,"turk",2,1,1,5,1,99,"USA Today","Democrat" +5,3,10499,"turk",4,1,50,2,50,99,"USA Today","Democrat" +5,3,10502,"turk",4,1,80,5,80,80,"USA Today","Democrat" +5,3,10506,"turk",3,1,99,3,99,50,"USA Today","Democrat" +5,3,10507,"turk",4,1,99,5,99,99,"USA Today","Democrat" +5,3,10510,"turk",3,1,99,3,99,99,"USA Today","Democrat" +5,3,10514,"turk",2,1,99,2,99,99,"USA Today","Democrat" +5,3,10515,"turk",3,1,1,4,1,1,"USA Today","Republican" +5,3,10518,"turk",3,1,1,3,1,1,"USA Today","Republican" +5,3,10524,"turk",4,1,0,2,0,0,"USA Today","Democrat" +5,3,10529,"turk",4,1,99,4,99,99,"USA Today","Republican" +5,3,10534,"turk",3,1,70,5,70,78,"USA Today","Republican" +5,3,10535,"turk",4,1,33,3,33,33,"USA Today","Republican" +5,4,9743,"turk",2,0,90,5,10,15,"CNN","Democrat" +5,4,9747,"turk",2,0,60,2,40,40,"CNN","Neither" +5,4,9753,"turk",4,0,86,3,14,14,"CNN","Democrat" +5,4,9755,"turk",4,0,50,2,50,50,"CNN","Republican" +5,4,9756,"turk",4,0,99,2,1,1,"CNN","Democrat" +5,4,9763,"turk",4,0,1,2,99,95,"CNN","Neither" +5,4,9764,"turk",4,0,70,2,30,40,"CNN","Democrat" +5,4,9765,"turk",2,0,99,2,1,50,"CNN","Neither" +5,4,9767,"turk",3,0,45,3,55,35,"CNN","Neither" +5,4,9773,"turk",4,0,100,5,0,0,"CNN","Democrat" +5,4,9776,"turk",4,0,99,2,1,50,"CNN","Neither" +5,4,9777,"turk",2,0,92,5,8,8,"CNN","Democrat" +5,4,9778,"turk",2,0,79,4,21,45,"CNN","Neither" +5,4,9779,"turk",4,0,99,5,1,5,"CNN","Democrat" +5,4,9784,"turk",4,0,99,5,1,1,"CNN","Republican" +5,4,9789,"turk",2,0,99,5,1,99,"CNN","Democrat" +5,4,9791,"turk",4,0,50,3,50,20,"CNN","Democrat" +5,4,9794,"turk",4,0,80,5,20,40,"CNN","Democrat" +5,4,9797,"turk",3,0,26,2,74,80,"CNN","Republican" +5,4,9798,"turk",4,0,90,4,10,10,"CNN","Democrat" +5,4,9800,"turk",2,0,50,2,50,50,"CNN","Republican" +5,4,9801,"turk",4,0,70,2,30,50,"CNN","Neither" +5,4,9804,"turk",2,0,78,2,22,2,"CNN","Republican" +5,4,9807,"turk",3,0,50,5,50,50,"CNN","Republican" +5,4,9809,"turk",3,0,20,5,80,80,"CNN","Neither" +5,4,9814,"turk",3,0,80,5,20,1,"CNN","Democrat" +5,4,9818,"turk",3,0,99,5,1,1,"CNN","Republican" +5,4,9820,"turk",4,0,1,5,99,99,"CNN","Republican" +5,4,9822,"turk",3,0,85,5,15,20,"CNN","Democrat" +5,4,9827,"turk",3,0,99,5,1,1,"CNN","Republican" +5,4,9828,"turk",2,0,80,4,20,30,"CNN","Democrat" +5,4,9829,"turk",2,0,10,2,90,99,"CNN","Republican" +5,4,9830,"turk",3,0,50,2,50,50,"CNN","Republican" +5,4,9842,"turk",2,0,70,2,30,10,"CNN","Democrat" +5,4,9843,"turk",3,0,1,4,99,99,"CNN","Neither" +5,4,9845,"turk",3,0,60,5,40,20,"CNN","Neither" +5,4,9846,"turk",3,0,80,3,20,20,"CNN","Democrat" +5,4,9859,"turk",2,0,90,2,10,15,"CNN","Democrat" +5,4,9860,"turk",3,0,70,2,30,99,"CNN","Republican" +5,4,9864,"turk",2,0,99,3,1,99,"CNN","Republican" +5,4,9866,"turk",4,0,75,5,25,30,"CNN","Republican" +5,4,9867,"turk",4,0,10,4,90,90,"CNN","Democrat" +5,4,9868,"turk",3,0,85,4,15,20,"CNN","Democrat" +5,4,9869,"turk",2,0,89,2,11,25,"CNN","Republican" +5,4,9871,"turk",4,0,99,5,1,22,"CNN","Republican" +5,4,9875,"turk",3,0,80,2,20,40,"CNN","Democrat" +5,4,9877,"turk",2,0,50,3,50,70,"CNN","Neither" +5,4,9880,"turk",3,0,75,2,25,50,"CNN","Democrat" +5,4,9881,"turk",4,0,1,2,99,99,"CNN","Democrat" +5,4,9882,"turk",3,0,60,3,40,41,"CNN","Democrat" +5,4,9885,"turk",3,0,85,3,15,20,"CNN","Democrat" +5,4,9886,"turk",2,0,0,3,100,1,"CNN","Republican" +5,4,9889,"turk",4,0,15,2,85,85,"CNN","Neither" +5,4,9892,"turk",4,0,65,2,35,50,"CNN","Democrat" +5,4,9897,"turk",2,0,50,5,50,85,"CNN","Democrat" +5,4,9898,"turk",2,0,99,4,1,1,"CNN","Republican" +5,4,9905,"turk",2,0,99,5,1,1,"CNN","Republican" +5,4,9906,"turk",3,0,95,4,5,20,"CNN","Democrat" +5,4,9907,"turk",2,0,99,4,1,1,"CNN","Democrat" +5,4,9911,"turk",3,0,35,3,65,60,"CNN","Democrat" +5,4,9912,"turk",2,0,99,5,1,0,"CNN","Democrat" +5,4,9913,"turk",4,0,80,2,20,30,"CNN","Neither" +5,4,9915,"turk",4,0,1,3,99,99,"CNN","Democrat" +5,4,9922,"turk",2,0,80,4,20,30,"CNN","Democrat" +5,4,9928,"turk",4,0,99,2,1,1,"CNN","Democrat" +5,4,9929,"turk",2,0,25,4,75,75,"CNN","Neither" +5,4,9930,"turk",2,0,75,4,25,30,"CNN","Democrat" +5,4,9934,"turk",2,0,50,3,50,50,"CNN","Democrat" +5,4,9935,"turk",2,0,50,4,50,50,"CNN","Neither" +5,4,9947,"turk",2,0,99,2,1,1,"CNN","Democrat" +5,4,9948,"turk",3,0,99,4,1,1,"CNN","Republican" +5,4,9949,"turk",3,0,45,2,55,55,"CNN","Neither" +5,4,9951,"turk",4,0,99,2,1,1,"CNN","Republican" +5,4,9954,"turk",2,0,85,2,15,20,"CNN","Democrat" +5,4,9956,"turk",3,0,65,2,35,40,"CNN","Democrat" +5,4,9960,"turk",3,0,98,3,2,30,"CNN","Democrat" +5,4,9961,"turk",4,0,99,5,1,99,"CNN","Republican" +5,4,9964,"turk",2,0,35,3,65,80,"CNN","Democrat" +5,4,9968,"turk",3,0,99,3,1,1,"CNN","Democrat" +5,4,9969,"turk",4,0,1,3,99,99,"CNN","Democrat" +5,4,9970,"turk",3,0,100,5,0,0,"CNN","Republican" +5,4,9973,"turk",2,0,99,5,1,1,"CNN","Democrat" +5,4,9978,"turk",4,0,99,3,1,1,"CNN","Republican" +5,4,9979,"turk",2,0,50,3,50,50,"CNN","Republican" +5,4,9980,"turk",3,0,90,2,10,95,"CNN","Republican" +5,4,9981,"turk",3,0,89,5,11,65,"CNN","Democrat" +5,4,9985,"turk",2,0,20,3,80,60,"CNN","Democrat" +5,4,9987,"turk",2,0,45,2,55,70,"CNN","Democrat" +5,4,9994,"turk",3,0,99,5,1,1,"CNN","Democrat" +5,4,10006,"turk",2,0,35,3,65,50,"CNN","Democrat" +5,4,10007,"turk",2,0,99,5,1,1,"CNN","Republican" +5,4,10008,"turk",3,0,90,5,10,15,"CNN","Republican" +5,4,10010,"turk",4,0,80,4,20,20,"CNN","Democrat" +5,4,10011,"turk",2,0,80,3,20,20,"CNN","Democrat" +5,4,10015,"turk",3,0,25,5,75,60,"CNN","Neither" +5,4,10017,"turk",2,0,99,2,1,95,"CNN","Democrat" +5,4,10021,"turk",3,0,70,3,30,40,"CNN","Democrat" +5,4,10026,"turk",2,0,99,4,1,1,"CNN","Neither" +5,4,10027,"turk",2,0,99,5,1,1,"CNN","Republican" +5,4,10028,"turk",3,0,80,2,20,20,"CNN","Republican" +5,4,10034,"turk",3,0,44,5,56,45,"CNN","Neither" +5,4,10037,"turk",3,0,95,3,5,5,"CNN","Democrat" +5,4,10038,"turk",4,0,99,2,1,1,"CNN","Democrat" +5,4,10039,"turk",2,0,90,5,10,20,"CNN","Democrat" +5,4,10040,"turk",4,0,80,2,20,22,"CNN","Democrat" +5,4,10042,"turk",2,0,95,4,5,5,"CNN","Democrat" +5,4,10043,"turk",3,0,60,4,40,50,"CNN","Democrat" +5,4,10044,"turk",3,0,30,2,70,80,"CNN","Republican" +5,4,10046,"turk",2,0,20,4,80,80,"CNN","Neither" +5,4,10050,"turk",3,0,95,5,5,10,"CNN","Democrat" +5,4,10051,"turk",4,0,78,5,22,22,"CNN","Democrat" +5,4,10056,"turk",2,0,65,3,35,15,"CNN","Republican" +5,4,10057,"turk",2,0,99,5,1,1,"CNN","Republican" +5,4,10058,"turk",4,0,50,3,50,50,"CNN","Republican" +5,4,10060,"turk",3,0,60,2,40,50,"CNN","Democrat" +5,4,10062,"turk",3,0,50,2,50,1,"CNN","Democrat" +5,4,10063,"turk",3,0,99,3,1,1,"CNN","Republican" +5,4,10064,"turk",4,0,1,3,99,99,"CNN","Republican" +5,4,10066,"turk",2,0,90,2,10,50,"CNN","Democrat" +5,4,10069,"turk",3,0,75,4,25,25,"CNN","Republican" +5,4,10073,"turk",2,0,40,3,60,60,"CNN","Neither" +5,4,10074,"turk",3,0,99,3,1,80,"CNN","Democrat" +5,4,10075,"turk",3,0,99,5,1,1,"CNN","Democrat" +5,4,10077,"turk",4,0,90,5,10,15,"CNN","Democrat" +5,4,10078,"turk",2,0,50,3,50,50,"CNN","Republican" +5,4,10079,"turk",4,0,75,2,25,30,"CNN","Republican" +5,4,10082,"turk",3,0,1,4,99,1,"CNN","Neither" +5,4,10086,"turk",4,0,70,5,30,35,"CNN","Neither" +5,4,10087,"turk",2,0,93,5,7,12,"CNN","Neither" +5,4,10091,"turk",2,0,99,4,1,15,"CNN","Democrat" +5,4,10098,"turk",3,0,75,3,25,20,"CNN","Neither" +5,4,10102,"turk",3,0,99,4,1,20,"CNN","Democrat" +5,4,10104,"turk",4,0,75,2,25,75,"CNN","Democrat" +5,4,10105,"turk",4,0,30,4,70,70,"CNN","Democrat" +5,4,10113,"turk",3,0,1,2,99,99,"CNN","Republican" +5,4,10115,"turk",4,0,38,3,62,62,"CNN","Republican" +5,4,10117,"turk",4,0,75,2,25,50,"CNN","Democrat" +5,4,10118,"turk",4,0,99,4,1,1,"CNN","Democrat" +5,4,10119,"turk",4,0,99,4,1,1,"CNN","Neither" +5,4,10121,"turk",3,0,55,4,45,45,"CNN","Neither" +5,4,10122,"turk",3,0,80,4,20,20,"CNN","Democrat" +5,4,10130,"turk",2,0,40,3,60,10,"CNN","Neither" +5,4,10133,"turk",3,0,90,5,10,10,"CNN","Democrat" +5,4,10134,"turk",2,0,10,4,90,25,"CNN","Republican" +5,4,10147,"turk",2,0,78,4,22,25,"CNN","Democrat" +5,4,10148,"turk",3,0,99,5,1,1,"CNN","Republican" +5,4,10151,"turk",2,0,99,5,1,1,"CNN","Democrat" +5,4,10152,"turk",3,0,80,5,20,25,"CNN","Neither" +5,4,10154,"turk",2,0,78,2,22,1,"CNN","Democrat" +5,4,10158,"turk",3,0,78,5,22,46,"CNN","Democrat" +5,4,10161,"turk",3,0,3,5,97,97,"CNN","Republican" +5,4,10163,"turk",2,0,1,4,99,99,"CNN","Democrat" +5,4,10165,"turk",3,0,99,2,1,1,"CNN","Democrat" +5,4,10166,"turk",3,0,40,2,60,45,"CNN","Democrat" +5,4,10167,"turk",2,0,10,4,90,80,"CNN","Democrat" +5,4,10170,"turk",3,0,100,3,0,100,"CNN","Neither" +5,4,10171,"turk",2,0,80,3,20,20,"CNN","Democrat" +5,4,10174,"turk",4,0,90,2,10,20,"CNN","Democrat" +5,4,10178,"turk",3,0,99,5,1,1,"CNN","Democrat" +5,4,10182,"turk",4,0,85,4,15,15,"CNN","Democrat" +5,4,10183,"turk",2,0,99,5,1,1,"CNN","" +5,4,10184,"turk",3,0,80,5,20,20,"CNN","Republican" +5,4,10186,"turk",3,0,36,2,64,75,"CNN","Democrat" +5,4,10190,"turk",3,0,25,2,75,99,"CNN","Democrat" +5,4,10193,"turk",4,0,79,3,21,25,"CNN","Democrat" +5,4,10195,"turk",4,0,90,4,10,10,"CNN","Republican" +5,4,10196,"turk",4,0,99,5,1,1,"CNN","Democrat" +5,4,10198,"turk",2,0,99,3,1,15,"CNN","Democrat" +5,4,10207,"turk",4,0,100,5,0,1,"CNN","Republican" +5,4,10210,"turk",2,0,99,4,1,1,"CNN","Republican" +5,4,10211,"turk",2,0,50,2,50,90,"CNN","Democrat" +5,4,10217,"turk",2,0,1,5,99,1,"CNN","Democrat" +5,4,10218,"turk",3,0,1,3,99,99,"CNN","Democrat" +5,4,10222,"turk",3,0,50,4,50,99,"CNN","Neither" +5,4,10223,"turk",2,0,99,5,1,1,"CNN","Democrat" +5,4,10225,"turk",3,0,95,3,5,20,"CNN","Republican" +5,4,10226,"turk",2,0,99,4,1,40,"CNN","Republican" +5,4,10229,"turk",2,0,1,5,99,99,"CNN","Democrat" +5,4,10230,"turk",4,0,92,4,8,1,"CNN","Neither" +5,4,10231,"turk",2,0,99,4,1,1,"CNN","Democrat" +5,4,10233,"turk",4,0,100,4,0,0,"CNN","Neither" +5,4,10236,"turk",3,0,70,4,30,25,"CNN","Democrat" +5,4,10238,"turk",2,0,99,2,1,1,"CNN","Democrat" +5,4,10239,"turk",3,0,2,2,98,98,"CNN","Republican" +5,4,10241,"turk",4,0,65,5,35,45,"CNN","Democrat" +5,4,10243,"turk",4,0,80,2,20,20,"CNN","Republican" +5,4,10244,"turk",4,0,99,5,1,1,"CNN","Republican" +5,4,10246,"turk",4,0,50,3,50,50,"CNN","Democrat" +5,4,10247,"turk",4,0,99,2,1,1,"CNN","Democrat" +5,4,10248,"turk",4,0,77,4,23,30,"CNN","Democrat" +5,4,10249,"turk",4,0,55,2,45,50,"CNN","Democrat" +5,4,10250,"turk",4,0,44,4,56,77,"CNN","Democrat" +5,4,10251,"turk",2,0,99,5,1,1,"CNN","Democrat" +5,4,10252,"turk",4,0,99,4,1,1,"CNN","Republican" +5,4,10254,"turk",3,0,95,5,5,10,"CNN","Democrat" +5,4,10256,"turk",4,0,99,3,1,1,"CNN","Neither" +5,4,10273,"turk",2,0,70,5,30,50,"CNN","Democrat" +5,4,10277,"turk",2,0,99,2,1,1,"CNN","Democrat" +5,4,10278,"turk",4,0,99,4,1,1,"CNN","Democrat" +5,4,10280,"turk",2,0,99,3,1,1,"CNN","Republican" +5,4,10284,"turk",2,0,99,2,1,1,"CNN","Democrat" +5,4,10285,"turk",2,0,75,5,25,25,"CNN","Republican" +5,4,10289,"turk",2,0,99,2,1,1,"CNN","Republican" +5,4,10290,"turk",2,0,20,5,80,56,"CNN","Neither" +5,4,10292,"turk",4,0,1,2,99,1,"CNN","Democrat" +5,4,10295,"turk",2,0,86,3,14,20,"CNN","Democrat" +5,4,10299,"turk",4,0,75,4,25,25,"CNN","Republican" +5,4,10302,"turk",4,0,75,2,25,50,"CNN","Republican" +5,4,10303,"turk",4,0,68,3,32,55,"CNN","Democrat" +5,4,10304,"turk",4,0,1,3,99,99,"CNN","Democrat" +5,4,10305,"turk",4,0,1,2,99,1,"CNN","Democrat" +5,4,10306,"turk",2,0,85,2,15,15,"CNN","Democrat" +5,4,10307,"turk",4,0,75,4,25,35,"CNN","Republican" +5,4,10314,"turk",3,0,90,3,10,10,"CNN","" +5,4,10316,"turk",4,0,99,2,1,99,"CNN","Neither" +5,4,10317,"turk",3,0,80,2,20,20,"CNN","Democrat" +5,4,10318,"turk",2,0,10,5,90,99,"CNN","Democrat" +5,4,10319,"turk",4,0,1,3,99,1,"CNN","Neither" +5,4,10321,"turk",4,0,50,4,50,50,"CNN","Republican" +5,4,10322,"turk",3,0,3,2,97,97,"CNN","Republican" +5,4,10323,"turk",4,0,99,4,1,1,"CNN","Democrat" +5,4,10327,"turk",2,0,89,2,11,11,"CNN","Democrat" +5,4,10330,"turk",2,0,75,3,25,25,"CNN","Democrat" +5,4,10335,"turk",4,0,80,2,20,40,"CNN","Democrat" +5,4,10336,"turk",2,0,99,5,1,1,"CNN","Neither" +5,4,10338,"turk",3,0,1,2,99,99,"CNN","Neither" +5,4,10340,"turk",4,0,85,4,15,25,"CNN","Neither" +5,4,10341,"turk",4,0,70,2,30,50,"CNN","Democrat" +5,4,10342,"turk",4,0,95,5,5,15,"CNN","Democrat" +5,4,10344,"turk",3,0,90,5,10,15,"CNN","Neither" +5,4,10345,"turk",3,0,99,2,1,1,"CNN","Republican" +5,4,10346,"turk",4,0,65,2,35,40,"CNN","Democrat" +5,4,10352,"turk",3,0,75,3,25,35,"CNN","Democrat" +5,4,10353,"turk",3,0,70,5,30,10,"CNN","Democrat" +5,4,10357,"turk",3,0,60,3,40,40,"CNN","Democrat" +5,4,10359,"turk",4,0,99,4,1,1,"CNN","Republican" +5,4,10360,"turk",3,0,1,4,99,1,"CNN","Democrat" +5,4,10362,"turk",2,0,99,2,1,1,"CNN","Democrat" +5,4,10365,"turk",4,0,70,5,30,30,"CNN","Republican" +5,4,10371,"turk",4,0,1,5,99,99,"CNN","Democrat" +5,4,10375,"turk",3,0,4,5,96,95,"CNN","Democrat" +5,4,10376,"turk",3,0,1,3,99,99,"CNN","Republican" +5,4,10384,"turk",2,0,80,3,20,20,"CNN","Democrat" +5,4,10386,"turk",4,0,99,3,1,1,"CNN","Democrat" +5,4,10392,"turk",2,0,84,4,16,15,"CNN","Democrat" +5,4,10396,"turk",4,0,58,5,42,38,"CNN","Republican" +5,4,10397,"turk",3,0,59,4,41,1,"CNN","Neither" +5,4,10399,"turk",2,0,2,2,98,90,"CNN","Democrat" +5,4,10402,"turk",3,0,99,3,1,5,"CNN","Democrat" +5,4,10403,"turk",3,0,90,5,10,10,"CNN","Republican" +5,4,10405,"turk",4,0,75,4,25,20,"CNN","Democrat" +5,4,10407,"turk",4,0,70,2,30,90,"CNN","Neither" +5,4,10408,"turk",3,0,50,4,50,1,"CNN","Democrat" +5,4,10410,"turk",2,0,75,3,25,50,"CNN","Democrat" +5,4,10414,"turk",2,0,55,4,45,45,"CNN","Neither" +5,4,10417,"turk",2,0,99,5,1,5,"CNN","Neither" +5,4,10418,"turk",2,0,40,5,60,60,"CNN","Democrat" +5,4,10421,"turk",3,0,99,2,1,1,"CNN","Democrat" +5,4,10423,"turk",4,0,10,5,90,90,"CNN","Neither" +5,4,10430,"turk",4,0,99,4,1,1,"CNN","Neither" +5,4,10431,"turk",4,0,0,3,100,1,"CNN","Republican" +5,4,10433,"turk",4,0,49,2,51,99,"CNN","Democrat" +5,4,10434,"turk",3,0,80,2,20,25,"CNN","Democrat" +5,4,10436,"turk",2,0,99,5,1,1,"CNN","Democrat" +5,4,10440,"turk",2,0,52,2,48,11,"CNN","Democrat" +5,4,10445,"turk",4,0,99,5,1,1,"CNN","Democrat" +5,4,10446,"turk",2,0,20,4,80,30,"CNN","Democrat" +5,4,10447,"turk",3,0,99,3,1,99,"CNN","Neither" +5,4,10452,"turk",2,0,1,4,99,99,"CNN","Neither" +5,4,10455,"turk",3,0,1,4,99,99,"CNN","Democrat" +5,4,10456,"turk",3,0,99,2,1,1,"CNN","Democrat" +5,4,10457,"turk",2,0,65,2,35,55,"CNN","Republican" +5,4,10460,"turk",2,0,99,5,1,99,"CNN","Democrat" +5,4,10461,"turk",4,0,65,2,35,75,"CNN","Democrat" +5,4,10463,"turk",4,0,25,3,75,25,"CNN","Republican" +5,4,10464,"turk",3,0,1,5,99,70,"CNN","Democrat" +5,4,10466,"turk",2,0,90,3,10,15,"CNN","Neither" +5,4,10468,"turk",3,0,55,2,45,50,"CNN","Democrat" +5,4,10469,"turk",4,0,1,3,99,99,"CNN","Neither" +5,4,10470,"turk",4,0,99,4,1,1,"CNN","Democrat" +5,4,10480,"turk",2,0,66,3,34,67,"CNN","Neither" +5,4,10481,"turk",3,0,90,4,10,25,"CNN","Neither" +5,4,10487,"turk",3,0,40,3,60,70,"CNN","Democrat" +5,4,10488,"turk",2,0,1,2,99,99,"CNN","Republican" +5,4,10491,"turk",2,0,70,2,30,35,"CNN","Democrat" +5,4,10493,"turk",2,0,99,4,1,1,"CNN","Democrat" +5,4,10494,"turk",3,0,55,2,45,40,"CNN","Republican" +5,4,10495,"turk",3,0,85,3,15,30,"CNN","Neither" +5,4,10500,"turk",4,0,99,3,1,1,"CNN","Neither" +5,4,10501,"turk",2,0,100,5,0,0,"CNN","Democrat" +5,4,10504,"turk",3,0,90,5,10,40,"CNN","Democrat" +5,4,10508,"turk",4,0,12,4,88,80,"CNN","Democrat" +5,4,10509,"turk",4,0,99,5,1,1,"CNN","Democrat" +5,4,10512,"turk",2,0,100,5,0,0,"CNN","Democrat" +5,4,10513,"turk",2,0,50,2,50,100,"CNN","Republican" +5,4,10516,"turk",4,0,99,2,1,1,"CNN","Democrat" +5,4,10517,"turk",3,0,50,3,50,50,"CNN","Republican" +5,4,10519,"turk",4,0,1,5,99,99,"CNN","Republican" +5,4,10520,"turk",4,0,99,4,1,1,"CNN","Democrat" +5,4,10521,"turk",2,0,99,4,1,1,"CNN","Democrat" +5,4,10525,"turk",2,0,1,4,99,99,"CNN","Neither" +5,4,10526,"turk",3,0,60,4,40,40,"CNN","Neither" +5,4,10528,"turk",4,0,99,4,1,1,"CNN","Neither" +5,4,10530,"turk",2,0,70,2,30,35,"CNN","Democrat" +5,4,10531,"turk",4,0,55,2,45,50,"CNN","Neither" +5,4,10532,"turk",2,0,99,4,1,10,"CNN","Democrat" +5,4,10533,"turk",2,0,90,5,10,10,"CNN","Democrat" +5,4,9742,"turk",2,1,100,5,100,100,"CNN","Neither" +5,4,9744,"turk",4,1,99,4,99,99,"CNN","Democrat" +5,4,9745,"turk",2,1,99,5,99,99,"CNN","Republican" +5,4,9748,"turk",3,1,50,4,50,40,"CNN","Democrat" +5,4,9750,"turk",4,1,99,2,99,99,"CNN","Republican" +5,4,9751,"turk",3,1,99,2,99,99,"CNN","Democrat" +5,4,9752,"turk",4,1,90,2,90,80,"CNN","Democrat" +5,4,9754,"turk",3,1,95,4,95,95,"CNN","Republican" +5,4,9757,"turk",3,1,99,5,99,99,"CNN","Democrat" +5,4,9758,"turk",2,1,100,3,100,100,"CNN","Neither" +5,4,9760,"turk",2,1,50,2,50,25,"CNN","Neither" +5,4,9761,"turk",3,1,99,5,99,99,"CNN","Democrat" +5,4,9762,"turk",2,1,65,4,65,45,"CNN","Neither" +5,4,9768,"turk",2,1,80,5,80,80,"CNN","Democrat" +5,4,9769,"turk",3,1,40,2,40,35,"CNN","Democrat" +5,4,9772,"turk",4,1,60,3,60,60,"CNN","Democrat" +5,4,9774,"turk",2,1,80,3,80,70,"CNN","Democrat" +5,4,9775,"turk",3,1,85,3,85,80,"CNN","Neither" +5,4,9781,"turk",2,1,99,5,99,99,"CNN","Neither" +5,4,9783,"turk",3,1,99,5,99,99,"CNN","Neither" +5,4,9788,"turk",3,1,65,2,65,40,"CNN","Democrat" +5,4,9793,"turk",3,1,99,4,99,99,"CNN","Neither" +5,4,9805,"turk",3,1,70,4,70,70,"CNN","Democrat" +5,4,9806,"turk",4,1,99,5,99,99,"CNN","Neither" +5,4,9808,"turk",4,1,70,3,70,60,"CNN","Neither" +5,4,9812,"turk",2,1,98,5,98,98,"CNN","Republican" +5,4,9813,"turk",2,1,99,5,99,99,"CNN","Republican" +5,4,9816,"turk",2,1,9,5,9,99,"CNN","Democrat" +5,4,9819,"turk",4,1,85,2,85,75,"CNN","Republican" +5,4,9824,"turk",2,1,90,2,90,70,"CNN","Democrat" +5,4,9825,"turk",3,1,1,5,1,1,"CNN","Neither" +5,4,9826,"turk",3,1,75,4,75,75,"CNN","Republican" +5,4,9831,"turk",2,1,75,2,75,75,"CNN","Democrat" +5,4,9832,"turk",2,1,1,5,1,1,"CNN","Republican" +5,4,9833,"turk",3,1,99,5,99,80,"CNN","Democrat" +5,4,9834,"turk",2,1,75,2,75,75,"CNN","Democrat" +5,4,9835,"turk",3,1,99,2,99,99,"CNN","Democrat" +5,4,9837,"turk",4,1,1,5,1,1,"CNN","Republican" +5,4,9838,"turk",2,1,50,5,50,50,"CNN","Democrat" +5,4,9839,"turk",3,1,99,5,99,99,"CNN","Democrat" +5,4,9841,"turk",3,1,99,2,99,99,"CNN","Democrat" +5,4,9844,"turk",4,1,99,5,99,99,"CNN","Democrat" +5,4,9847,"turk",3,1,99,5,99,99,"CNN","Republican" +5,4,9848,"turk",3,1,49,5,49,49,"CNN","Neither" +5,4,9850,"turk",4,1,75,4,75,75,"CNN","Republican" +5,4,9851,"turk",4,1,75,5,75,1,"CNN","Democrat" +5,4,9854,"turk",3,1,75,3,75,75,"CNN","Neither" +5,4,9857,"turk",4,1,99,3,99,99,"CNN","Democrat" +5,4,9858,"turk",2,1,99,2,99,99,"CNN","Republican" +5,4,9863,"turk",3,1,70,2,70,30,"CNN","Neither" +5,4,9865,"turk",2,1,50,5,50,50,"CNN","Neither" +5,4,9878,"turk",3,1,99,4,99,90,"CNN","Republican" +5,4,9879,"turk",2,1,70,5,70,78,"CNN","Democrat" +5,4,9883,"turk",4,1,99,3,99,99,"CNN","Republican" +5,4,9887,"turk",2,1,25,4,25,25,"CNN","Republican" +5,4,9888,"turk",3,1,99,2,99,99,"CNN","Republican" +5,4,9890,"turk",3,1,80,3,80,65,"CNN","Republican" +5,4,9891,"turk",4,1,90,2,90,90,"CNN","Democrat" +5,4,9894,"turk",2,1,99,4,99,90,"CNN","Democrat" +5,4,9895,"turk",3,1,99,3,99,99,"CNN","Neither" +5,4,9896,"turk",2,1,80,4,80,80,"CNN","Neither" +5,4,9899,"turk",2,1,99,3,99,99,"CNN","Democrat" +5,4,9900,"turk",3,1,99,3,99,99,"CNN","Democrat" +5,4,9903,"turk",4,1,75,2,75,50,"CNN","Democrat" +5,4,9908,"turk",4,1,60,5,60,75,"CNN","Democrat" +5,4,9910,"turk",4,1,1,2,1,1,"CNN","Democrat" +5,4,9914,"turk",2,1,90,2,90,40,"CNN","Republican" +5,4,9916,"turk",4,1,1,2,1,1,"CNN","Republican" +5,4,9920,"turk",4,1,99,3,99,99,"CNN","Republican" +5,4,9921,"turk",4,1,99,4,99,99,"CNN","Democrat" +5,4,9924,"turk",3,1,99,5,99,99,"CNN","Democrat" +5,4,9925,"turk",4,1,77,4,77,77,"CNN","Democrat" +5,4,9926,"turk",3,1,99,3,99,50,"CNN","Republican" +5,4,9927,"turk",4,1,100,5,100,100,"CNN","Republican" +5,4,9931,"turk",4,1,99,2,99,70,"CNN","Neither" +5,4,9932,"turk",2,1,99,4,99,99,"CNN","Democrat" +5,4,9933,"turk",4,1,80,5,80,80,"CNN","Republican" +5,4,9936,"turk",4,1,80,2,80,90,"CNN","Republican" +5,4,9940,"turk",3,1,90,4,90,75,"CNN","Democrat" +5,4,9942,"turk",4,1,99,3,99,50,"CNN","Democrat" +5,4,9944,"turk",4,1,53,5,53,51,"CNN","Democrat" +5,4,9946,"turk",4,1,99,5,99,99,"CNN","Democrat" +5,4,9953,"turk",3,1,80,5,80,75,"CNN","Neither" +5,4,9955,"turk",2,1,75,4,75,75,"CNN","Republican" +5,4,9957,"turk",3,1,99,5,99,99,"CNN","Republican" +5,4,9958,"turk",2,1,80,3,80,80,"CNN","Republican" +5,4,9959,"turk",3,1,40,4,40,40,"CNN","Democrat" +5,4,9963,"turk",2,1,25,4,25,25,"CNN","Republican" +5,4,9971,"turk",2,1,99,3,99,95,"CNN","Democrat" +5,4,9972,"turk",4,1,50,5,50,50,"CNN","Democrat" +5,4,9974,"turk",4,1,65,3,65,55,"CNN","Democrat" +5,4,9975,"turk",2,1,90,4,90,90,"CNN","Democrat" +5,4,9977,"turk",4,1,100,5,100,100,"CNN","Neither" +5,4,9982,"turk",2,1,95,5,95,80,"CNN","Republican" +5,4,9983,"turk",2,1,99,4,99,99,"CNN","Democrat" +5,4,9986,"turk",2,1,90,4,90,90,"CNN","Democrat" +5,4,9989,"turk",4,1,55,2,55,25,"CNN","Democrat" +5,4,9991,"turk",4,1,70,4,70,70,"CNN","Neither" +5,4,9992,"turk",4,1,1,3,1,1,"CNN","Republican" +5,4,9993,"turk",2,1,10,2,10,40,"CNN","Neither" +5,4,9997,"turk",2,1,99,4,99,99,"CNN","Democrat" +5,4,9998,"turk",2,1,99,4,99,99,"CNN","Democrat" +5,4,9999,"turk",3,1,99,4,99,90,"CNN","Democrat" +5,4,10000,"turk",2,1,25,5,25,50,"CNN","Democrat" +5,4,10001,"turk",2,1,99,4,99,99,"CNN","Democrat" +5,4,10003,"turk",2,1,60,2,60,50,"CNN","Democrat" +5,4,10012,"turk",4,1,99,3,99,99,"CNN","Neither" +5,4,10013,"turk",2,1,99,4,99,99,"CNN","Democrat" +5,4,10014,"turk",2,1,25,3,25,10,"CNN","Republican" +5,4,10019,"turk",3,1,98,3,98,95,"CNN","Neither" +5,4,10020,"turk",4,1,99,3,99,99,"CNN","Democrat" +5,4,10023,"turk",4,1,25,2,25,25,"CNN","Republican" +5,4,10030,"turk",2,1,99,3,99,99,"CNN","Democrat" +5,4,10031,"turk",2,1,80,3,80,75,"CNN","Neither" +5,4,10032,"turk",2,1,99,2,99,99,"CNN","Democrat" +5,4,10035,"turk",4,1,70,2,70,70,"CNN","Democrat" +5,4,10048,"turk",3,1,90,4,90,80,"CNN","Democrat" +5,4,10049,"turk",3,1,20,2,20,20,"CNN","Democrat" +5,4,10052,"turk",2,1,100,3,100,100,"CNN","Democrat" +5,4,10053,"turk",4,1,75,3,75,75,"CNN","Republican" +5,4,10054,"turk",3,1,99,3,99,1,"CNN","Democrat" +5,4,10055,"turk",2,1,25,3,25,1,"CNN","Republican" +5,4,10059,"turk",2,1,99,5,99,99,"CNN","Democrat" +5,4,10061,"turk",3,1,1,5,1,26,"CNN","Democrat" +5,4,10065,"turk",3,1,80,4,80,80,"CNN","Democrat" +5,4,10067,"turk",4,1,1,3,1,1,"CNN","Democrat" +5,4,10070,"turk",2,1,99,2,99,99,"CNN","Democrat" +5,4,10071,"turk",3,1,1,4,1,1,"CNN","Republican" +5,4,10072,"turk",2,1,100,3,100,90,"CNN","Democrat" +5,4,10083,"turk",2,1,1,2,1,1,"CNN","Republican" +5,4,10084,"turk",4,1,99,4,99,99,"CNN","Neither" +5,4,10088,"turk",2,1,90,5,90,90,"CNN","Republican" +5,4,10089,"turk",4,1,99,5,99,99,"CNN","Neither" +5,4,10090,"turk",3,1,65,2,65,50,"CNN","Democrat" +5,4,10092,"turk",2,1,1,4,1,99,"CNN","Neither" +5,4,10094,"turk",4,1,99,5,99,99,"CNN","Democrat" +5,4,10095,"turk",2,1,95,3,95,90,"CNN","Democrat" +5,4,10100,"turk",4,1,75,3,75,80,"CNN","Democrat" +5,4,10103,"turk",4,1,80,2,80,60,"CNN","Democrat" +5,4,10106,"turk",3,1,60,3,60,80,"CNN","Democrat" +5,4,10107,"turk",2,1,95,3,95,95,"CNN","Democrat" +5,4,10109,"turk",2,1,100,3,100,100,"CNN","Democrat" +5,4,10124,"turk",3,1,99,2,99,99,"CNN","Republican" +5,4,10125,"turk",3,1,99,5,99,85,"CNN","Democrat" +5,4,10128,"turk",4,1,99,5,99,99,"CNN","Democrat" +5,4,10129,"turk",4,1,50,5,50,40,"CNN","Democrat" +5,4,10136,"turk",3,1,99,3,99,80,"CNN","Democrat" +5,4,10137,"turk",4,1,75,2,75,70,"CNN","Democrat" +5,4,10142,"turk",3,1,99,2,99,50,"CNN","Republican" +5,4,10143,"turk",2,1,99,3,99,99,"CNN","Democrat" +5,4,10144,"turk",2,1,99,5,99,99,"CNN","Democrat" +5,4,10146,"turk",2,1,99,3,99,99,"CNN","Democrat" +5,4,10149,"turk",3,1,99,4,99,99,"CNN","Republican" +5,4,10150,"turk",4,1,99,3,99,99,"CNN","Democrat" +5,4,10153,"turk",4,1,80,4,80,70,"CNN","Republican" +5,4,10156,"turk",3,1,100,4,100,99,"CNN","Democrat" +5,4,10157,"turk",3,1,90,5,90,85,"CNN","Democrat" +5,4,10159,"turk",4,1,10,5,10,20,"CNN","Republican" +5,4,10160,"turk",4,1,1,5,1,99,"CNN","Democrat" +5,4,10162,"turk",4,1,80,2,80,40,"CNN","Democrat" +5,4,10168,"turk",4,1,40,4,40,40,"CNN","Democrat" +5,4,10173,"turk",4,1,90,2,90,50,"CNN","Democrat" +5,4,10175,"turk",2,1,99,5,99,99,"CNN","Neither" +5,4,10176,"turk",2,1,99,4,99,99,"CNN","Democrat" +5,4,10177,"turk",4,1,90,5,90,80,"CNN","Democrat" +5,4,10179,"turk",2,1,99,5,99,99,"CNN","Republican" +5,4,10180,"turk",4,1,50,5,50,50,"CNN","Neither" +5,4,10181,"turk",3,1,100,4,100,100,"CNN","Democrat" +5,4,10188,"turk",3,1,1,5,1,1,"CNN","Democrat" +5,4,10189,"turk",2,1,0,4,0,99,"CNN","Democrat" +5,4,10191,"turk",3,1,100,5,100,100,"CNN","Democrat" +5,4,10192,"turk",2,1,1,3,1,50,"CNN","Republican" +5,4,10199,"turk",2,1,70,5,70,99,"CNN","Republican" +5,4,10200,"turk",4,1,80,5,80,70,"CNN","Democrat" +5,4,10201,"turk",4,1,65,4,65,45,"CNN","Republican" +5,4,10202,"turk",2,1,99,5,99,50,"CNN","Neither" +5,4,10208,"turk",4,1,78,4,78,78,"CNN","Democrat" +5,4,10212,"turk",4,1,99,2,99,1,"CNN","Democrat" +5,4,10213,"turk",3,1,75,4,75,55,"CNN","Republican" +5,4,10214,"turk",4,1,40,5,40,50,"CNN","Neither" +5,4,10219,"turk",3,1,100,4,100,99,"CNN","Democrat" +5,4,10220,"turk",4,1,99,4,99,99,"CNN","Republican" +5,4,10221,"turk",4,1,99,2,99,95,"CNN","Democrat" +5,4,10224,"turk",3,1,1,5,1,100,"CNN","Democrat" +5,4,10228,"turk",4,1,99,2,99,1,"CNN","Neither" +5,4,10232,"turk",4,1,70,4,70,20,"CNN","Democrat" +5,4,10240,"turk",2,1,99,2,99,99,"CNN","Neither" +5,4,10245,"turk",4,1,99,2,99,99,"CNN","Neither" +5,4,10258,"turk",2,1,99,5,99,99,"CNN","Neither" +5,4,10259,"turk",3,1,50,3,50,50,"CNN","Democrat" +5,4,10260,"turk",4,1,99,3,99,99,"CNN","Neither" +5,4,10261,"turk",4,1,1,5,1,1,"CNN","Neither" +5,4,10263,"turk",4,1,90,2,90,50,"CNN","Republican" +5,4,10264,"turk",2,1,99,5,99,99,"CNN","Neither" +5,4,10265,"turk",4,1,70,2,70,30,"CNN","Republican" +5,4,10266,"turk",2,1,75,2,75,10,"CNN","Republican" +5,4,10267,"turk",2,1,99,4,99,89,"CNN","Democrat" +5,4,10268,"turk",3,1,85,2,85,60,"CNN","Democrat" +5,4,10269,"turk",2,1,99,2,99,99,"CNN","Democrat" +5,4,10271,"turk",4,1,98,4,98,95,"CNN","Republican" +5,4,10272,"turk",2,1,50,3,50,85,"CNN","Democrat" +5,4,10275,"turk",4,1,50,5,50,99,"CNN","Democrat" +5,4,10276,"turk",4,1,40,2,40,50,"CNN","Neither" +5,4,10281,"turk",2,1,85,4,85,81,"CNN","Democrat" +5,4,10287,"turk",3,1,99,3,99,90,"CNN","Democrat" +5,4,10288,"turk",2,1,1,3,1,1,"CNN","Neither" +5,4,10291,"turk",3,1,90,5,90,90,"CNN","Neither" +5,4,10293,"turk",3,1,70,2,70,65,"CNN","Democrat" +5,4,10294,"turk",2,1,75,3,75,70,"CNN","Democrat" +5,4,10296,"turk",4,1,95,5,95,95,"CNN","Republican" +5,4,10298,"turk",3,1,85,3,85,85,"CNN","Neither" +5,4,10300,"turk",4,1,90,5,90,90,"CNN","Democrat" +5,4,10301,"turk",2,1,80,5,80,85,"CNN","Democrat" +5,4,10309,"turk",2,1,90,5,90,89,"CNN","Republican" +5,4,10311,"turk",3,1,95,5,95,87,"CNN","Democrat" +5,4,10312,"turk",4,1,99,4,99,98,"CNN","Democrat" +5,4,10324,"turk",3,1,80,3,80,70,"CNN","Neither" +5,4,10325,"turk",3,1,99,3,99,99,"CNN","Democrat" +5,4,10326,"turk",2,1,1,2,1,1,"CNN","Republican" +5,4,10328,"turk",3,1,99,3,99,50,"CNN","Neither" +5,4,10329,"turk",4,1,99,2,99,99,"CNN","Republican" +5,4,10331,"turk",4,1,99,5,99,90,"CNN","Democrat" +5,4,10334,"turk",4,1,1,4,1,1,"CNN","Neither" +5,4,10337,"turk",2,1,90,5,90,80,"CNN","Democrat" +5,4,10339,"turk",4,1,99,5,99,99,"CNN","Democrat" +5,4,10343,"turk",4,1,85,4,85,85,"CNN","Republican" +5,4,10347,"turk",3,1,10,3,10,15,"CNN","Democrat" +5,4,10350,"turk",2,1,99,2,99,99,"CNN","Democrat" +5,4,10351,"turk",4,1,60,2,60,40,"CNN","Democrat" +5,4,10354,"turk",2,1,1,3,1,1,"CNN","Neither" +5,4,10356,"turk",2,1,99,3,99,99,"CNN","Republican" +5,4,10358,"turk",3,1,10,3,10,25,"CNN","Republican" +5,4,10361,"turk",2,1,1,4,1,50,"CNN","Neither" +5,4,10366,"turk",4,1,10,2,10,20,"CNN","Democrat" +5,4,10367,"turk",2,1,50,2,50,25,"CNN","Republican" +5,4,10368,"turk",2,1,99,5,99,99,"CNN","Democrat" +5,4,10369,"turk",3,1,99,3,99,99,"CNN","Republican" +5,4,10370,"turk",4,1,99,5,99,99,"CNN","Neither" +5,4,10373,"turk",2,1,90,2,90,10,"CNN","Neither" +5,4,10374,"turk",3,1,33,3,33,99,"CNN","Democrat" +5,4,10381,"turk",2,1,76,5,76,70,"CNN","Democrat" +5,4,10383,"turk",2,1,45,2,45,58,"CNN","Democrat" +5,4,10385,"turk",3,1,85,2,85,45,"CNN","Republican" +5,4,10388,"turk",2,1,100,5,100,100,"CNN","Neither" +5,4,10389,"turk",2,1,99,3,99,99,"CNN","Neither" +5,4,10390,"turk",4,1,99,4,99,98,"CNN","Democrat" +5,4,10391,"turk",4,1,50,4,50,50,"CNN","Neither" +5,4,10394,"turk",2,1,99,3,99,99,"CNN","Democrat" +5,4,10400,"turk",3,1,85,3,85,85,"CNN","Neither" +5,4,10404,"turk",4,1,99,3,99,99,"CNN","Republican" +5,4,10409,"turk",2,1,100,5,100,100,"CNN","Republican" +5,4,10412,"turk",4,1,25,4,25,85,"CNN","Democrat" +5,4,10415,"turk",2,1,99,5,99,99,"CNN","Democrat" +5,4,10416,"turk",2,1,50,4,50,75,"CNN","Republican" +5,4,10419,"turk",3,1,90,5,90,80,"CNN","Neither" +5,4,10424,"turk",2,1,1,2,1,99,"CNN","Republican" +5,4,10426,"turk",3,1,99,3,99,99,"CNN","Republican" +5,4,10427,"turk",4,1,99,3,99,88,"CNN","Republican" +5,4,10428,"turk",4,1,95,4,95,99,"CNN","Republican" +5,4,10437,"turk",3,1,99,5,99,95,"CNN","Democrat" +5,4,10438,"turk",4,1,30,2,30,20,"CNN","Republican" +5,4,10439,"turk",4,1,80,4,80,90,"CNN","Neither" +5,4,10443,"turk",4,1,40,4,40,10,"CNN","Republican" +5,4,10444,"turk",4,1,99,2,99,99,"CNN","Republican" +5,4,10448,"turk",4,1,99,5,99,99,"CNN","Republican" +5,4,10449,"turk",2,1,80,2,80,50,"CNN","Democrat" +5,4,10450,"turk",2,1,90,5,90,99,"CNN","Democrat" +5,4,10453,"turk",3,1,99,5,99,99,"CNN","Democrat" +5,4,10458,"turk",4,1,1,5,1,1,"CNN","Republican" +5,4,10459,"turk",3,1,100,2,100,99,"CNN","Democrat" +5,4,10462,"turk",3,1,1,4,1,1,"CNN","Republican" +5,4,10467,"turk",4,1,99,3,99,99,"CNN","Neither" +5,4,10473,"turk",2,1,1,5,1,1,"CNN","Democrat" +5,4,10476,"turk",3,1,50,2,50,25,"CNN","Neither" +5,4,10477,"turk",4,1,78,2,78,53,"CNN","Republican" +5,4,10478,"turk",4,1,90,4,90,80,"CNN","Neither" +5,4,10479,"turk",3,1,90,2,90,90,"CNN","Democrat" +5,4,10483,"turk",2,1,70,3,70,60,"CNN","Democrat" +5,4,10486,"turk",3,1,50,5,50,50,"CNN","Neither" +5,4,10489,"turk",2,1,88,2,88,70,"CNN","Democrat" +5,4,10490,"turk",4,1,99,4,99,90,"CNN","Democrat" +5,4,10496,"turk",2,1,55,3,55,85,"CNN","Republican" +5,4,10497,"turk",2,1,99,3,99,1,"CNN","Democrat" +5,4,10499,"turk",4,1,99,3,99,50,"CNN","Democrat" +5,4,10502,"turk",4,1,60,3,60,50,"CNN","Democrat" +5,4,10506,"turk",3,1,50,2,50,1,"CNN","Democrat" +5,4,10507,"turk",4,1,99,4,99,99,"CNN","Democrat" +5,4,10510,"turk",3,1,99,2,99,80,"CNN","Democrat" +5,4,10514,"turk",2,1,99,5,99,99,"CNN","Democrat" +5,4,10515,"turk",3,1,1,3,1,1,"CNN","Republican" +5,4,10518,"turk",3,1,1,5,1,1,"CNN","Republican" +5,4,10524,"turk",4,1,0,5,0,10,"CNN","Democrat" +5,4,10529,"turk",4,1,80,2,80,50,"CNN","Republican" +5,4,10534,"turk",3,1,98,2,98,98,"CNN","Republican" +5,4,10535,"turk",4,1,45,4,45,33,"CNN","Republican" +101,NA,144,"2019",3,0,13,1,87,NA,NA,NA +101,NA,145,"2019",5,1,21,1,21,NA,NA,NA +101,NA,146,"2019",6,0,40,1,60,NA,NA,NA +101,NA,147,"2019",6,1,29,1,29,NA,NA,NA +101,NA,149,"2019",6,1,65,1,65,NA,NA,NA +101,NA,150,"2019",5,0,50,1,50,NA,NA,NA +101,NA,151,"2019",4,1,100,1,100,NA,NA,NA +101,NA,153,"2019",4,1,17,1,17,NA,NA,NA +101,NA,154,"2019",6,0,90,1,10,NA,NA,NA +101,NA,155,"2019",6,0,60,1,40,NA,NA,NA +101,NA,156,"2019",6,1,39,1,39,NA,NA,NA +101,NA,158,"2019",5,0,12,1,88,NA,NA,NA +101,NA,159,"2019",2,0,35,1,65,NA,NA,NA +101,NA,160,"2019",2,1,100,1,100,NA,NA,NA +101,NA,161,"2019",6,0,82,1,18,NA,NA,NA +101,NA,162,"2019",3,1,22,1,22,NA,NA,NA +101,NA,164,"2019",3,1,37,1,37,NA,NA,NA +101,NA,165,"2019",5,0,1,1,99,NA,NA,NA +101,NA,166,"2019",4,0,80,1,20,NA,NA,NA +101,NA,167,"2019",4,1,22,1,22,NA,NA,NA +101,NA,168,"2019",5,0,8,1,92,NA,NA,NA +101,NA,169,"2019",2,1,71,1,71,NA,NA,NA +101,NA,170,"2019",5,1,4,1,4,NA,NA,NA +101,NA,171,"2019",3,1,51,1,51,NA,NA,NA +101,NA,173,"2019",5,0,21,1,79,NA,NA,NA +101,NA,174,"2019",4,0,79,1,21,NA,NA,NA +101,NA,176,"2019",4,0,100,1,0,NA,NA,NA +101,NA,177,"2019",6,0,50,1,50,NA,NA,NA +101,NA,179,"2019",4,0,70,1,30,NA,NA,NA +101,NA,180,"2019",6,0,39,1,61,NA,NA,NA +101,NA,181,"2019",4,0,50,1,50,NA,NA,NA +101,NA,182,"2019",2,0,78,1,22,NA,NA,NA +101,NA,184,"2019",2,0,0,1,100,NA,NA,NA +101,NA,186,"2019",3,0,73,1,27,NA,NA,NA +101,NA,188,"2019",6,0,40,1,60,NA,NA,NA +101,NA,189,"2019",5,0,30,1,70,NA,NA,NA +101,NA,190,"2019",2,0,89,1,11,NA,NA,NA +101,NA,191,"2019",3,0,30,1,70,NA,NA,NA +101,NA,193,"2019",5,0,51,1,49,NA,NA,NA +101,NA,194,"2019",4,0,10,1,90,NA,NA,NA +101,NA,195,"2019",6,0,100,1,0,NA,NA,NA +101,NA,196,"2019",5,1,50,1,50,NA,NA,NA +101,NA,197,"2019",2,0,21,1,79,NA,NA,NA +101,NA,198,"2019",5,1,83,1,83,NA,NA,NA +101,NA,199,"2019",2,0,50,1,50,NA,NA,NA +101,NA,200,"2019",5,1,71,1,71,NA,NA,NA +101,NA,201,"2019",2,1,50,1,50,NA,NA,NA +101,NA,202,"2019",5,1,30,1,30,NA,NA,NA +101,NA,203,"2019",5,0,68,1,32,NA,NA,NA +101,NA,204,"2019",5,1,70,1,70,NA,NA,NA +101,NA,205,"2019",2,0,0,1,100,NA,NA,NA +101,NA,206,"2019",5,0,50,1,50,NA,NA,NA +101,NA,207,"2019",2,0,25,1,75,NA,NA,NA +101,NA,210,"2019",5,0,91,1,9,NA,NA,NA +101,NA,211,"2019",4,0,100,1,0,NA,NA,NA +101,NA,212,"2019",2,0,80,1,20,NA,NA,NA +101,NA,213,"2019",5,1,91,1,91,NA,NA,NA +101,NA,214,"2019",3,0,49,1,51,NA,NA,NA +101,NA,215,"2019",6,0,19,1,81,NA,NA,NA +101,NA,216,"2019",6,1,99,1,99,NA,NA,NA +101,NA,219,"2019",4,1,100,1,100,NA,NA,NA +101,NA,220,"2019",2,0,41,1,59,NA,NA,NA +101,NA,221,"2019",4,1,0,1,0,NA,NA,NA +101,NA,222,"2019",5,1,51,1,51,NA,NA,NA +101,NA,224,"2019",3,0,84,1,16,NA,NA,NA +101,NA,225,"2019",6,0,10,1,90,NA,NA,NA +101,NA,228,"2019",3,1,87,1,87,NA,NA,NA +101,NA,229,"2019",5,0,50,1,50,NA,NA,NA +101,NA,230,"2019",6,0,50,1,50,NA,NA,NA +101,NA,231,"2019",6,1,50,1,50,NA,NA,NA +101,NA,232,"2019",4,1,68,1,68,NA,NA,NA +101,NA,233,"2019",4,0,50,1,50,NA,NA,NA +101,NA,234,"2019",4,0,42,1,58,NA,NA,NA +101,NA,235,"2019",3,1,3,1,3,NA,NA,NA +101,NA,236,"2019",6,0,50,1,50,NA,NA,NA +101,NA,237,"2019",2,0,0,1,100,NA,NA,NA +101,NA,240,"2019",6,1,83,1,83,NA,NA,NA +101,NA,241,"2019",6,0,72,1,28,NA,NA,NA +101,NA,242,"2019",3,0,99,1,1,NA,NA,NA +101,NA,243,"2019",5,0,15,1,85,NA,NA,NA +101,NA,245,"2019",2,1,60,1,60,NA,NA,NA +101,NA,246,"2019",3,0,86,1,14,NA,NA,NA +101,NA,247,"2019",6,1,100,1,100,NA,NA,NA +101,NA,248,"2019",2,1,50,1,50,NA,NA,NA +101,NA,249,"2019",5,0,70,1,30,NA,NA,NA +101,NA,250,"2019",3,1,35,1,35,NA,NA,NA +101,NA,252,"2019",3,1,95,1,95,NA,NA,NA +101,NA,253,"2019",4,1,50,1,50,NA,NA,NA +101,NA,254,"2019",5,1,100,1,100,NA,NA,NA +101,NA,257,"2019",3,0,73,1,27,NA,NA,NA +101,NA,258,"2019",2,0,63,1,37,NA,NA,NA +101,NA,259,"2019",4,0,6,1,94,NA,NA,NA +101,NA,261,"2019",4,0,40,1,60,NA,NA,NA +101,NA,262,"2019",3,1,41,1,41,NA,NA,NA +101,NA,263,"2019",5,0,35,1,65,NA,NA,NA +101,NA,264,"2019",6,1,62,1,62,NA,NA,NA +101,NA,265,"2019",4,0,60,1,40,NA,NA,NA +101,NA,266,"2019",5,0,60,1,40,NA,NA,NA +101,NA,267,"2019",3,1,67,1,67,NA,NA,NA +101,NA,269,"2019",2,0,50,1,50,NA,NA,NA +101,NA,270,"2019",3,1,100,1,100,NA,NA,NA +101,NA,271,"2019",2,0,50,1,50,NA,NA,NA +101,NA,272,"2019",6,1,31,1,31,NA,NA,NA +101,NA,273,"2019",2,0,74,1,26,NA,NA,NA +101,NA,274,"2019",3,1,5,1,5,NA,NA,NA +101,NA,276,"2019",5,0,77,1,23,NA,NA,NA +101,NA,277,"2019",2,0,83,1,17,NA,NA,NA +101,NA,278,"2019",2,1,92,1,92,NA,NA,NA +101,NA,279,"2019",6,0,100,1,0,NA,NA,NA +101,NA,280,"2019",3,1,67,1,67,NA,NA,NA +101,NA,281,"2019",5,1,40,1,40,NA,NA,NA +101,NA,282,"2019",4,0,78,1,22,NA,NA,NA +101,NA,283,"2019",5,0,75,1,25,NA,NA,NA +101,NA,285,"2019",6,1,99,1,99,NA,NA,NA +101,NA,286,"2019",5,0,67,1,33,NA,NA,NA +101,NA,287,"2019",3,1,50,1,50,NA,NA,NA +101,NA,288,"2019",2,1,81,1,81,NA,NA,NA +101,NA,289,"2019",3,0,30,1,70,NA,NA,NA +101,NA,290,"2019",2,1,90,1,90,NA,NA,NA +101,NA,292,"2019",6,1,50,1,50,NA,NA,NA +101,NA,293,"2019",6,0,50,1,50,NA,NA,NA +101,NA,294,"2019",6,0,61,1,39,NA,NA,NA +101,NA,295,"2019",3,0,50,1,50,NA,NA,NA +101,NA,296,"2019",4,1,100,1,100,NA,NA,NA +101,NA,297,"2019",2,1,36,1,36,NA,NA,NA +101,NA,298,"2019",4,1,50,1,50,NA,NA,NA +101,NA,299,"2019",4,0,100,1,0,NA,NA,NA +101,NA,300,"2019",4,1,69,1,69,NA,NA,NA +101,NA,301,"2019",5,0,100,1,0,NA,NA,NA +101,NA,302,"2019",5,0,21,1,79,NA,NA,NA +101,NA,303,"2019",5,0,31,1,69,NA,NA,NA +101,NA,304,"2019",4,0,53,1,47,NA,NA,NA +101,NA,305,"2019",3,0,91,1,9,NA,NA,NA +101,NA,306,"2019",5,1,100,1,100,NA,NA,NA +101,NA,307,"2019",2,1,50,1,50,NA,NA,NA +101,NA,308,"2019",4,1,76,1,76,NA,NA,NA +101,NA,309,"2019",2,1,68,1,68,NA,NA,NA +101,NA,313,"2019",6,0,100,1,0,NA,NA,NA +101,NA,314,"2019",2,0,70,1,30,NA,NA,NA +101,NA,315,"2019",4,0,0,1,100,NA,NA,NA +101,NA,316,"2019",4,0,41,1,59,NA,NA,NA +101,NA,318,"2019",3,1,50,1,50,NA,NA,NA +101,NA,319,"2019",2,0,8,1,92,NA,NA,NA +101,NA,320,"2019",4,1,0,1,0,NA,NA,NA +101,NA,321,"2019",4,1,38,1,38,NA,NA,NA +101,NA,322,"2019",2,0,50,1,50,NA,NA,NA +101,NA,323,"2019",4,1,50,1,50,NA,NA,NA +101,NA,324,"2019",4,1,84,1,84,NA,NA,NA +101,NA,325,"2019",4,1,100,1,100,NA,NA,NA +101,NA,326,"2019",2,0,0,1,100,NA,NA,NA +101,NA,327,"2019",2,1,41,1,41,NA,NA,NA +101,NA,328,"2019",5,1,50,1,50,NA,NA,NA +101,NA,330,"2019",5,0,79,1,21,NA,NA,NA +101,NA,331,"2019",3,1,91,1,91,NA,NA,NA +101,NA,332,"2019",3,1,92,1,92,NA,NA,NA +101,NA,333,"2019",6,0,100,1,0,NA,NA,NA +101,NA,334,"2019",3,1,50,1,50,NA,NA,NA +101,NA,335,"2019",3,1,73,1,73,NA,NA,NA +101,NA,336,"2019",4,0,65,1,35,NA,NA,NA +101,NA,337,"2019",5,1,100,1,100,NA,NA,NA +101,NA,338,"2019",2,0,92,1,8,NA,NA,NA +101,NA,339,"2019",3,1,42,1,42,NA,NA,NA +101,NA,340,"2019",3,0,85,1,15,NA,NA,NA +101,NA,341,"2019",3,1,70,1,70,NA,NA,NA +101,NA,342,"2019",6,0,72,1,28,NA,NA,NA +101,NA,343,"2019",5,0,64,1,36,NA,NA,NA +101,NA,344,"2019",2,0,81,1,19,NA,NA,NA +101,NA,345,"2019",4,1,50,1,50,NA,NA,NA +101,NA,346,"2019",6,1,0,1,0,NA,NA,NA +101,NA,347,"2019",2,0,9,1,91,NA,NA,NA +101,NA,349,"2019",3,0,68,1,32,NA,NA,NA +101,NA,350,"2019",3,1,36,1,36,NA,NA,NA +101,NA,351,"2019",4,0,0,1,100,NA,NA,NA +101,NA,354,"2019",6,0,100,1,0,NA,NA,NA +101,NA,355,"2019",2,0,67,1,33,NA,NA,NA +101,NA,356,"2019",3,1,89,1,89,NA,NA,NA +101,NA,357,"2019",5,0,18,1,82,NA,NA,NA +101,NA,358,"2019",3,0,82,1,18,NA,NA,NA +101,NA,359,"2019",6,1,36,1,36,NA,NA,NA +101,NA,360,"2019",3,0,100,1,0,NA,NA,NA +101,NA,361,"2019",2,0,100,1,0,NA,NA,NA +101,NA,363,"2019",4,0,60,1,40,NA,NA,NA +101,NA,364,"2019",5,0,100,1,0,NA,NA,NA +101,NA,365,"2019",4,1,91,1,91,NA,NA,NA +101,NA,366,"2019",3,1,0,1,0,NA,NA,NA +101,NA,367,"2019",2,1,71,1,71,NA,NA,NA +101,NA,368,"2019",6,1,72,1,72,NA,NA,NA +101,NA,369,"2019",6,0,50,1,50,NA,NA,NA +101,NA,371,"2019",5,1,81,1,81,NA,NA,NA +101,NA,372,"2019",2,1,50,1,50,NA,NA,NA +101,NA,373,"2019",5,0,0,1,100,NA,NA,NA +101,NA,374,"2019",3,1,100,1,100,NA,NA,NA +101,NA,375,"2019",2,1,100,1,100,NA,NA,NA +101,NA,377,"2019",4,1,62,1,62,NA,NA,NA +101,NA,378,"2019",2,1,35,1,35,NA,NA,NA +101,NA,379,"2019",3,0,88,1,12,NA,NA,NA +101,NA,380,"2019",4,0,100,1,0,NA,NA,NA +101,NA,381,"2019",2,1,92,1,92,NA,NA,NA +101,NA,382,"2019",5,1,92,1,92,NA,NA,NA +101,NA,383,"2019",2,1,50,1,50,NA,NA,NA +101,NA,384,"2019",4,0,0,1,100,NA,NA,NA +101,NA,385,"2019",6,1,0,1,0,NA,NA,NA +101,NA,386,"2019",6,0,50,1,50,NA,NA,NA +101,NA,387,"2019",2,0,86,1,14,NA,NA,NA +101,NA,388,"2019",6,1,2,1,2,NA,NA,NA +101,NA,389,"2019",4,1,51,1,51,NA,NA,NA +101,NA,390,"2019",4,0,0,1,100,NA,NA,NA +101,NA,391,"2019",3,0,27,1,73,NA,NA,NA +101,NA,394,"2019",4,1,71,1,71,NA,NA,NA +101,NA,395,"2019",2,1,53,1,53,NA,NA,NA +101,NA,397,"2019",3,1,10,1,10,NA,NA,NA +101,NA,398,"2019",2,0,50,1,50,NA,NA,NA +101,NA,399,"2019",5,0,76,1,24,NA,NA,NA +101,NA,400,"2019",6,1,50,1,50,NA,NA,NA +101,NA,401,"2019",2,0,40,1,60,NA,NA,NA +101,NA,402,"2019",6,1,46,1,46,NA,NA,NA +101,NA,403,"2019",4,0,50,1,50,NA,NA,NA +101,NA,404,"2019",3,0,97,1,3,NA,NA,NA +101,NA,405,"2019",3,0,35,1,65,NA,NA,NA +101,NA,406,"2019",2,1,68,1,68,NA,NA,NA +101,NA,408,"2019",3,1,68,1,68,NA,NA,NA +101,NA,410,"2019",3,1,50,1,50,NA,NA,NA +101,NA,411,"2019",4,1,50,1,50,NA,NA,NA +101,NA,412,"2019",4,0,86,1,14,NA,NA,NA +101,NA,415,"2019",2,0,50,1,50,NA,NA,NA +101,NA,416,"2019",6,1,71,1,71,NA,NA,NA +101,NA,417,"2019",5,1,0,1,0,NA,NA,NA +101,NA,418,"2019",5,0,83,1,17,NA,NA,NA +101,NA,419,"2019",6,0,80,1,20,NA,NA,NA +101,NA,420,"2019",5,1,50,1,50,NA,NA,NA +101,NA,421,"2019",5,1,81,1,81,NA,NA,NA +101,NA,422,"2019",3,0,50,1,50,NA,NA,NA +101,NA,425,"2019",5,0,100,1,0,NA,NA,NA +101,NA,426,"2019",4,1,51,1,51,NA,NA,NA +101,NA,427,"2019",5,0,100,1,0,NA,NA,NA +101,NA,428,"2019",6,1,22,1,22,NA,NA,NA +101,NA,429,"2019",3,0,45,1,55,NA,NA,NA +101,NA,430,"2019",3,1,54,1,54,NA,NA,NA +101,NA,431,"2019",6,1,56,1,56,NA,NA,NA +101,NA,432,"2019",6,0,70,1,30,NA,NA,NA +101,NA,434,"2019",4,0,66,1,34,NA,NA,NA +101,NA,435,"2019",6,0,50,1,50,NA,NA,NA +101,NA,436,"2019",4,0,45,1,55,NA,NA,NA +101,NA,437,"2019",2,1,0,1,0,NA,NA,NA +101,NA,438,"2019",3,0,41,1,59,NA,NA,NA +101,NA,439,"2019",3,1,68,1,68,NA,NA,NA +101,NA,440,"2019",3,1,93,1,93,NA,NA,NA +101,NA,441,"2019",2,0,46,1,54,NA,NA,NA +101,NA,442,"2019",3,0,72,1,28,NA,NA,NA +101,NA,443,"2019",5,1,65,1,65,NA,NA,NA +101,NA,444,"2019",6,1,100,1,100,NA,NA,NA +101,NA,445,"2019",5,1,83,1,83,NA,NA,NA +101,NA,446,"2019",2,0,50,1,50,NA,NA,NA +101,NA,448,"2019",3,1,93,1,93,NA,NA,NA +101,NA,450,"2019",2,0,0,1,100,NA,NA,NA +101,NA,451,"2019",2,0,0,1,100,NA,NA,NA +101,NA,452,"2019",5,0,81,1,19,NA,NA,NA +101,NA,453,"2019",3,1,50,1,50,NA,NA,NA +101,NA,454,"2019",2,0,50,1,50,NA,NA,NA +101,NA,455,"2019",3,1,0,1,0,NA,NA,NA +101,NA,458,"2019",2,0,69,1,31,NA,NA,NA +101,NA,459,"2019",2,0,33,1,67,NA,NA,NA +101,NA,460,"2019",3,0,22,1,78,NA,NA,NA +101,NA,461,"2019",4,1,100,1,100,NA,NA,NA +101,NA,462,"2019",3,1,21,1,21,NA,NA,NA +101,NA,463,"2019",4,1,58,1,58,NA,NA,NA +101,NA,464,"2019",4,0,92,1,8,NA,NA,NA +101,NA,465,"2019",3,1,58,1,58,NA,NA,NA +101,NA,466,"2019",2,0,0,1,100,NA,NA,NA +101,NA,467,"2019",3,1,0,1,0,NA,NA,NA +101,NA,468,"2019",6,0,65,1,35,NA,NA,NA +101,NA,469,"2019",6,1,27,1,27,NA,NA,NA +101,NA,470,"2019",2,1,24,1,24,NA,NA,NA +101,NA,471,"2019",6,1,94,1,94,NA,NA,NA +101,NA,472,"2019",3,0,81,1,19,NA,NA,NA +101,NA,473,"2019",6,1,100,1,100,NA,NA,NA +101,NA,475,"2019",2,0,56,1,44,NA,NA,NA +101,NA,476,"2019",6,1,39,1,39,NA,NA,NA +101,NA,477,"2019",6,0,75,1,25,NA,NA,NA +101,NA,479,"2019",3,1,85,1,85,NA,NA,NA +101,NA,480,"2019",6,1,66,1,66,NA,NA,NA +101,NA,481,"2019",5,1,80,1,80,NA,NA,NA +101,NA,482,"2019",2,0,50,1,50,NA,NA,NA +101,NA,483,"2019",5,1,100,1,100,NA,NA,NA +101,NA,485,"2019",3,0,71,1,29,NA,NA,NA +101,NA,486,"2019",4,1,50,1,50,NA,NA,NA +101,NA,487,"2019",3,0,78,1,22,NA,NA,NA +101,NA,488,"2019",5,0,64,1,36,NA,NA,NA +101,NA,489,"2019",5,0,65,1,35,NA,NA,NA +101,NA,490,"2019",6,0,70,1,30,NA,NA,NA +101,NA,491,"2019",3,0,81,1,19,NA,NA,NA +101,NA,492,"2019",6,1,70,1,70,NA,NA,NA +101,NA,494,"2019",4,0,72,1,28,NA,NA,NA +101,NA,496,"2019",3,1,66,1,66,NA,NA,NA +101,NA,497,"2019",4,1,68,1,68,NA,NA,NA +101,NA,498,"2019",6,0,100,1,0,NA,NA,NA +101,NA,499,"2019",4,1,68,1,68,NA,NA,NA +101,NA,500,"2019",5,1,0,1,0,NA,NA,NA +101,NA,501,"2019",6,1,81,1,81,NA,NA,NA +101,NA,503,"2019",5,1,50,1,50,NA,NA,NA +101,NA,504,"2019",5,1,50,1,50,NA,NA,NA +101,NA,505,"2019",5,0,50,1,50,NA,NA,NA +101,NA,506,"2019",6,1,50,1,50,NA,NA,NA +101,NA,507,"2019",6,1,72,1,72,NA,NA,NA +101,NA,509,"2019",5,1,40,1,40,NA,NA,NA +101,NA,510,"2019",2,0,89,1,11,NA,NA,NA +101,NA,511,"2019",3,0,28,1,72,NA,NA,NA +101,NA,512,"2019",5,0,39,1,61,NA,NA,NA +101,NA,513,"2019",6,0,70,1,30,NA,NA,NA +101,NA,514,"2019",6,0,73,1,27,NA,NA,NA +101,NA,515,"2019",6,1,33,1,33,NA,NA,NA +101,NA,516,"2019",5,1,72,1,72,NA,NA,NA +101,NA,517,"2019",5,1,30,1,30,NA,NA,NA +101,NA,518,"2019",2,1,40,1,40,NA,NA,NA +101,NA,519,"2019",4,1,56,1,56,NA,NA,NA +101,NA,520,"2019",6,1,44,1,44,NA,NA,NA +101,NA,521,"2019",4,1,76,1,76,NA,NA,NA +101,NA,522,"2019",4,1,50,1,50,NA,NA,NA +101,NA,523,"2019",6,1,100,1,100,NA,NA,NA +101,NA,524,"2019",6,1,17,1,17,NA,NA,NA +101,NA,525,"2019",3,1,74,1,74,NA,NA,NA +101,NA,526,"2019",3,0,66,1,34,NA,NA,NA +101,NA,527,"2019",4,0,50,1,50,NA,NA,NA +101,NA,530,"2019",5,0,92,1,8,NA,NA,NA +101,NA,531,"2019",6,0,37,1,63,NA,NA,NA +101,NA,532,"2019",5,1,100,1,100,NA,NA,NA +101,NA,533,"2019",3,1,6,1,6,NA,NA,NA +101,NA,534,"2019",5,1,79,1,79,NA,NA,NA +101,NA,535,"2019",3,1,74,1,74,NA,NA,NA +101,NA,539,"2019",5,1,13,1,13,NA,NA,NA +101,NA,540,"2019",4,1,82,1,82,NA,NA,NA +101,NA,542,"2019",3,1,63,1,63,NA,NA,NA +101,NA,543,"2019",3,1,56,1,56,NA,NA,NA +101,NA,544,"2019",5,1,78,1,78,NA,NA,NA +101,NA,545,"2019",2,0,48,1,52,NA,NA,NA +101,NA,546,"2019",2,0,73,1,27,NA,NA,NA +101,NA,547,"2019",4,0,50,1,50,NA,NA,NA +101,NA,548,"2019",3,1,56,1,56,NA,NA,NA +101,NA,550,"2019",6,0,0,1,100,NA,NA,NA +101,NA,551,"2019",3,0,76,1,24,NA,NA,NA +101,NA,552,"2019",3,1,83,1,83,NA,NA,NA +101,NA,553,"2019",3,0,2,1,98,NA,NA,NA +101,NA,555,"2019",5,0,22,1,78,NA,NA,NA +101,NA,556,"2019",3,1,80,1,80,NA,NA,NA +101,NA,557,"2019",5,0,0,1,100,NA,NA,NA +101,NA,558,"2019",4,0,70,1,30,NA,NA,NA +101,NA,559,"2019",3,0,16,1,84,NA,NA,NA +101,NA,560,"2019",4,0,34,1,66,NA,NA,NA +101,NA,561,"2019",6,1,50,1,50,NA,NA,NA +101,NA,562,"2019",2,0,17,1,83,NA,NA,NA +101,NA,563,"2019",5,0,97,1,3,NA,NA,NA +101,NA,564,"2019",5,1,80,1,80,NA,NA,NA +101,NA,565,"2019",4,0,50,1,50,NA,NA,NA +101,NA,566,"2019",5,1,82,1,82,NA,NA,NA +101,NA,567,"2019",3,0,7,1,93,NA,NA,NA +101,NA,568,"2019",2,0,43,1,57,NA,NA,NA +101,NA,569,"2019",3,0,10,1,90,NA,NA,NA +101,NA,570,"2019",5,1,50,1,50,NA,NA,NA +101,NA,571,"2019",4,0,100,1,0,NA,NA,NA +101,NA,572,"2019",2,1,50,1,50,NA,NA,NA +101,NA,573,"2019",6,0,0,1,100,NA,NA,NA +101,NA,575,"2019",3,1,0,1,0,NA,NA,NA +101,NA,576,"2019",5,1,100,1,100,NA,NA,NA +101,NA,577,"2019",6,0,50,1,50,NA,NA,NA +101,NA,578,"2019",4,0,29,1,71,NA,NA,NA +101,NA,579,"2019",6,0,50,1,50,NA,NA,NA +101,NA,580,"2019",4,0,100,1,0,NA,NA,NA +101,NA,581,"2019",4,1,83,1,83,NA,NA,NA +101,NA,582,"2019",5,1,41,1,41,NA,NA,NA +101,NA,583,"2019",6,0,37,1,63,NA,NA,NA +101,NA,584,"2019",6,0,44,1,56,NA,NA,NA +101,NA,585,"2019",6,0,67,1,33,NA,NA,NA +101,NA,586,"2019",3,0,82,1,18,NA,NA,NA +101,NA,587,"2019",3,0,67,1,33,NA,NA,NA +101,NA,588,"2019",3,0,67,1,33,NA,NA,NA +101,NA,589,"2019",4,1,50,1,50,NA,NA,NA +101,NA,590,"2019",6,1,56,1,56,NA,NA,NA +101,NA,591,"2019",4,1,43,1,43,NA,NA,NA +101,NA,592,"2019",5,1,73,1,73,NA,NA,NA +101,NA,593,"2019",6,1,42,1,42,NA,NA,NA +101,NA,594,"2019",2,0,22,1,78,NA,NA,NA +101,NA,595,"2019",3,0,100,1,0,NA,NA,NA +101,NA,596,"2019",5,0,50,1,50,NA,NA,NA +101,NA,597,"2019",3,0,56,1,44,NA,NA,NA +101,NA,598,"2019",2,1,53,1,53,NA,NA,NA +101,NA,599,"2019",6,0,31,1,69,NA,NA,NA +101,NA,600,"2019",5,1,31,1,31,NA,NA,NA +101,NA,601,"2019",6,0,64,1,36,NA,NA,NA +101,NA,602,"2019",5,0,68,1,32,NA,NA,NA +101,NA,603,"2019",3,0,69,1,31,NA,NA,NA +101,NA,604,"2019",2,0,65,1,35,NA,NA,NA +101,NA,605,"2019",6,1,63,1,63,NA,NA,NA +101,NA,606,"2019",2,0,65,1,35,NA,NA,NA +101,NA,607,"2019",5,0,86,1,14,NA,NA,NA +101,NA,608,"2019",3,0,18,1,82,NA,NA,NA +101,NA,609,"2019",2,1,50,1,50,NA,NA,NA +101,NA,610,"2019",4,1,61,1,61,NA,NA,NA +101,NA,612,"2019",3,0,50,1,50,NA,NA,NA +101,NA,613,"2019",5,1,40,1,40,NA,NA,NA +101,NA,614,"2019",2,0,73,1,27,NA,NA,NA +101,NA,615,"2019",3,1,79,1,79,NA,NA,NA +101,NA,616,"2019",2,0,50,1,50,NA,NA,NA +101,NA,617,"2019",4,1,50,1,50,NA,NA,NA +101,NA,618,"2019",6,0,4,1,96,NA,NA,NA +101,NA,620,"2019",2,1,0,1,0,NA,NA,NA +101,NA,621,"2019",2,1,50,1,50,NA,NA,NA +101,NA,622,"2019",6,0,47,1,53,NA,NA,NA +101,NA,623,"2019",6,1,100,1,100,NA,NA,NA +101,NA,624,"2019",6,0,95,1,5,NA,NA,NA +101,NA,625,"2019",3,1,50,1,50,NA,NA,NA +101,NA,626,"2019",5,0,9,1,91,NA,NA,NA +101,NA,627,"2019",5,1,100,1,100,NA,NA,NA +101,NA,628,"2019",6,1,50,1,50,NA,NA,NA +101,NA,629,"2019",3,1,50,1,50,NA,NA,NA +101,NA,630,"2019",2,0,100,1,0,NA,NA,NA +101,NA,631,"2019",2,1,76,1,76,NA,NA,NA +101,NA,632,"2019",4,0,78,1,22,NA,NA,NA +101,NA,633,"2019",2,1,100,1,100,NA,NA,NA +101,NA,634,"2019",3,0,51,1,49,NA,NA,NA +101,NA,636,"2019",2,1,50,1,50,NA,NA,NA +101,NA,637,"2019",6,0,0,1,100,NA,NA,NA +101,NA,638,"2019",2,0,100,1,0,NA,NA,NA +101,NA,639,"2019",4,0,50,1,50,NA,NA,NA +101,NA,641,"2019",3,1,71,1,71,NA,NA,NA +101,NA,642,"2019",2,1,61,1,61,NA,NA,NA +101,NA,643,"2019",4,1,25,1,25,NA,NA,NA +101,NA,644,"2019",4,0,50,1,50,NA,NA,NA +101,NA,645,"2019",5,1,90,1,90,NA,NA,NA +101,NA,646,"2019",6,1,37,1,37,NA,NA,NA +101,NA,647,"2019",2,1,33,1,33,NA,NA,NA +101,NA,648,"2019",4,1,85,1,85,NA,NA,NA +101,NA,649,"2019",6,1,100,1,100,NA,NA,NA +101,NA,651,"2019",3,0,5,1,95,NA,NA,NA +101,NA,653,"2019",6,1,100,1,100,NA,NA,NA +101,NA,654,"2019",4,1,40,1,40,NA,NA,NA +101,NA,655,"2019",2,1,58,1,58,NA,NA,NA +101,NA,656,"2019",5,0,51,1,49,NA,NA,NA +101,NA,657,"2019",6,0,91,1,9,NA,NA,NA +101,NA,658,"2019",3,0,56,1,44,NA,NA,NA +101,NA,659,"2019",5,0,50,1,50,NA,NA,NA +101,NA,660,"2019",2,1,50,1,50,NA,NA,NA +101,NA,661,"2019",6,1,55,1,55,NA,NA,NA +101,NA,662,"2019",5,0,42,1,58,NA,NA,NA +101,NA,663,"2019",2,0,100,1,0,NA,NA,NA +101,NA,664,"2019",2,1,58,1,58,NA,NA,NA +101,NA,666,"2019",4,0,100,1,0,NA,NA,NA +101,NA,667,"2019",2,0,100,1,0,NA,NA,NA +101,NA,668,"2019",6,0,50,1,50,NA,NA,NA +101,NA,670,"2019",5,0,90,1,10,NA,NA,NA +101,NA,671,"2019",6,0,100,1,0,NA,NA,NA +101,NA,672,"2019",4,1,100,1,100,NA,NA,NA +101,NA,673,"2019",6,0,50,1,50,NA,NA,NA +101,NA,674,"2019",2,0,50,1,50,NA,NA,NA +101,NA,675,"2019",5,1,50,1,50,NA,NA,NA +101,NA,676,"2019",5,0,0,1,100,NA,NA,NA +101,NA,677,"2019",5,1,100,1,100,NA,NA,NA +101,NA,679,"2019",5,1,66,1,66,NA,NA,NA +101,NA,680,"2019",4,0,52,1,48,NA,NA,NA +101,NA,681,"2019",3,0,42,1,58,NA,NA,NA +101,NA,683,"2019",6,1,9,1,9,NA,NA,NA +101,NA,685,"2019",3,1,50,1,50,NA,NA,NA +101,NA,686,"2019",5,1,100,1,100,NA,NA,NA +101,NA,687,"2019",2,0,50,1,50,NA,NA,NA +101,NA,688,"2019",6,0,93,1,7,NA,NA,NA +101,NA,690,"2019",5,1,87,1,87,NA,NA,NA +101,NA,692,"2019",2,0,76,1,24,NA,NA,NA +101,NA,693,"2019",4,0,100,1,0,NA,NA,NA +101,NA,694,"2019",5,0,6,1,94,NA,NA,NA +101,NA,695,"2019",4,1,100,1,100,NA,NA,NA +101,NA,696,"2019",2,1,0,1,0,NA,NA,NA +101,NA,697,"2019",4,1,50,1,50,NA,NA,NA +101,NA,698,"2019",6,0,0,1,100,NA,NA,NA +101,NA,700,"2019",6,0,100,1,0,NA,NA,NA +101,NA,701,"2019",2,1,72,1,72,NA,NA,NA +101,NA,702,"2019",5,0,75,1,25,NA,NA,NA +101,NA,703,"2019",3,1,73,1,73,NA,NA,NA +101,NA,704,"2019",5,1,45,1,45,NA,NA,NA +101,NA,705,"2019",4,1,21,1,21,NA,NA,NA +101,NA,707,"2019",2,0,0,1,100,NA,NA,NA +101,NA,708,"2019",4,0,62,1,38,NA,NA,NA +101,NA,709,"2019",2,1,0,1,0,NA,NA,NA +101,NA,712,"2019",6,1,50,1,50,NA,NA,NA +101,NA,713,"2019",3,0,58,1,42,NA,NA,NA +101,NA,714,"2019",6,0,50,1,50,NA,NA,NA +101,NA,716,"2019",3,1,50,1,50,NA,NA,NA +101,NA,717,"2019",6,1,50,1,50,NA,NA,NA +101,NA,718,"2019",2,1,60,1,60,NA,NA,NA +101,NA,719,"2019",4,0,50,1,50,NA,NA,NA +101,NA,720,"2019",2,0,0,1,100,NA,NA,NA +101,NA,721,"2019",3,0,100,1,0,NA,NA,NA +101,NA,722,"2019",5,0,50,1,50,NA,NA,NA +101,NA,723,"2019",2,0,99,1,1,NA,NA,NA +101,NA,724,"2019",3,1,85,1,85,NA,NA,NA +101,NA,725,"2019",6,1,73,1,73,NA,NA,NA +101,NA,726,"2019",4,1,100,1,100,NA,NA,NA +101,NA,727,"2019",5,0,20,1,80,NA,NA,NA +101,NA,729,"2019",4,1,68,1,68,NA,NA,NA +101,NA,730,"2019",4,0,50,1,50,NA,NA,NA +101,NA,731,"2019",5,1,65,1,65,NA,NA,NA +101,NA,732,"2019",2,0,54,1,46,NA,NA,NA +101,NA,733,"2019",6,1,50,1,50,NA,NA,NA +101,NA,734,"2019",6,0,50,1,50,NA,NA,NA +101,NA,735,"2019",2,0,50,1,50,NA,NA,NA +101,NA,736,"2019",2,1,90,1,90,NA,NA,NA +101,NA,738,"2019",3,1,22,1,22,NA,NA,NA +101,NA,739,"2019",5,0,50,1,50,NA,NA,NA +101,NA,740,"2019",3,0,50,1,50,NA,NA,NA +101,NA,743,"2019",5,1,100,1,100,NA,NA,NA +101,NA,744,"2019",3,0,50,1,50,NA,NA,NA +101,NA,745,"2019",4,0,77,1,23,NA,NA,NA +101,NA,746,"2019",5,0,50,1,50,NA,NA,NA +101,NA,747,"2019",3,1,47,1,47,NA,NA,NA +101,NA,748,"2019",4,0,50,1,50,NA,NA,NA +101,NA,749,"2019",5,0,50,1,50,NA,NA,NA +101,NA,750,"2019",5,1,52,1,52,NA,NA,NA +101,NA,752,"2019",4,0,71,1,29,NA,NA,NA +101,NA,754,"2019",4,0,31,1,69,NA,NA,NA +101,NA,755,"2019",5,1,50,1,50,NA,NA,NA +101,NA,756,"2019",2,0,50,1,50,NA,NA,NA +101,NA,757,"2019",5,0,47,1,53,NA,NA,NA +101,NA,758,"2019",4,1,20,1,20,NA,NA,NA +101,NA,759,"2019",2,0,61,1,39,NA,NA,NA +101,NA,760,"2019",5,1,62,1,62,NA,NA,NA +101,NA,761,"2019",3,0,0,1,100,NA,NA,NA +101,NA,762,"2019",6,1,100,1,100,NA,NA,NA +101,NA,763,"2019",5,0,50,1,50,NA,NA,NA +101,NA,764,"2019",2,1,100,1,100,NA,NA,NA +101,NA,765,"2019",4,0,100,1,0,NA,NA,NA +101,NA,766,"2019",5,1,50,1,50,NA,NA,NA +101,NA,767,"2019",2,0,0,1,100,NA,NA,NA +101,NA,768,"2019",5,0,49,1,51,NA,NA,NA +101,NA,769,"2019",6,0,50,1,50,NA,NA,NA +101,NA,770,"2019",3,1,0,1,0,NA,NA,NA +101,NA,771,"2019",5,0,26,1,74,NA,NA,NA +101,NA,772,"2019",3,0,100,1,0,NA,NA,NA +101,NA,773,"2019",5,1,19,1,19,NA,NA,NA +101,NA,774,"2019",4,1,0,1,0,NA,NA,NA +101,NA,775,"2019",3,0,100,1,0,NA,NA,NA +101,NA,776,"2019",4,1,90,1,90,NA,NA,NA +101,NA,777,"2019",3,0,50,1,50,NA,NA,NA +101,NA,778,"2019",6,0,0,1,100,NA,NA,NA +101,NA,779,"2019",5,0,0,1,100,NA,NA,NA +101,NA,780,"2019",3,0,2,1,98,NA,NA,NA +101,NA,781,"2019",5,0,62,1,38,NA,NA,NA +101,NA,782,"2019",2,0,3,1,97,NA,NA,NA +101,NA,783,"2019",6,1,43,1,43,NA,NA,NA +101,NA,784,"2019",6,0,50,1,50,NA,NA,NA +101,NA,785,"2019",5,1,96,1,96,NA,NA,NA +101,NA,786,"2019",4,0,50,1,50,NA,NA,NA +101,NA,787,"2019",5,1,50,1,50,NA,NA,NA +101,NA,788,"2019",2,0,23,1,77,NA,NA,NA +101,NA,789,"2019",3,0,38,1,62,NA,NA,NA +101,NA,790,"2019",4,1,100,1,100,NA,NA,NA +101,NA,791,"2019",6,1,88,1,88,NA,NA,NA +101,NA,792,"2019",2,0,0,1,100,NA,NA,NA +101,NA,793,"2019",5,0,18,1,82,NA,NA,NA +101,NA,794,"2019",3,1,50,1,50,NA,NA,NA +101,NA,795,"2019",6,0,92,1,8,NA,NA,NA +101,NA,796,"2019",6,1,50,1,50,NA,NA,NA +101,NA,797,"2019",2,0,0,1,100,NA,NA,NA +101,NA,798,"2019",4,1,100,1,100,NA,NA,NA +101,NA,799,"2019",3,0,94,1,6,NA,NA,NA +101,NA,800,"2019",5,1,99,1,99,NA,NA,NA +101,NA,801,"2019",6,0,1,1,99,NA,NA,NA +101,NA,802,"2019",4,0,80,1,20,NA,NA,NA +101,NA,803,"2019",4,1,100,1,100,NA,NA,NA +101,NA,804,"2019",2,0,50,1,50,NA,NA,NA +101,NA,805,"2019",4,0,50,1,50,NA,NA,NA +101,NA,807,"2019",5,0,80,1,20,NA,NA,NA +101,NA,808,"2019",2,0,0,1,100,NA,NA,NA +101,NA,809,"2019",6,0,100,1,0,NA,NA,NA +101,NA,810,"2019",4,1,50,1,50,NA,NA,NA +101,NA,811,"2019",5,1,95,1,95,NA,NA,NA +101,NA,812,"2019",4,1,60,1,60,NA,NA,NA +101,NA,813,"2019",5,0,50,1,50,NA,NA,NA +101,NA,816,"2019",2,1,50,1,50,NA,NA,NA +101,NA,817,"2019",2,0,29,1,71,NA,NA,NA +101,NA,820,"2019",2,1,50,1,50,NA,NA,NA +101,NA,821,"2019",4,0,50,1,50,NA,NA,NA +101,NA,824,"2019",5,0,53,1,47,NA,NA,NA +101,NA,825,"2019",4,0,100,1,0,NA,NA,NA +101,NA,826,"2019",4,0,72,1,28,NA,NA,NA +101,NA,827,"2019",3,1,50,1,50,NA,NA,NA +101,NA,829,"2019",2,1,69,1,69,NA,NA,NA +101,NA,830,"2019",3,1,97,1,97,NA,NA,NA +101,NA,831,"2019",5,0,50,1,50,NA,NA,NA +101,NA,832,"2019",2,0,100,1,0,NA,NA,NA +101,NA,833,"2019",2,1,0,1,0,NA,NA,NA +101,NA,834,"2019",5,1,100,1,100,NA,NA,NA +101,NA,836,"2019",5,0,50,1,50,NA,NA,NA +101,NA,837,"2019",4,0,89,1,11,NA,NA,NA +101,NA,838,"2019",2,0,2,1,98,NA,NA,NA +101,NA,839,"2019",3,0,68,1,32,NA,NA,NA +101,NA,841,"2019",5,1,50,1,50,NA,NA,NA +101,NA,842,"2019",2,0,40,1,60,NA,NA,NA +101,NA,843,"2019",3,0,78,1,22,NA,NA,NA +101,NA,844,"2019",4,0,30,1,70,NA,NA,NA +101,NA,845,"2019",4,0,50,1,50,NA,NA,NA +101,NA,846,"2019",2,0,2,1,98,NA,NA,NA +101,NA,847,"2019",5,1,100,1,100,NA,NA,NA +101,NA,849,"2019",2,1,32,1,32,NA,NA,NA +101,NA,851,"2019",6,0,70,1,30,NA,NA,NA +101,NA,852,"2019",2,1,18,1,18,NA,NA,NA +101,NA,853,"2019",2,1,75,1,75,NA,NA,NA +101,NA,854,"2019",5,1,28,1,28,NA,NA,NA +101,NA,855,"2019",2,0,50,1,50,NA,NA,NA +101,NA,857,"2019",6,0,0,1,100,NA,NA,NA +101,NA,858,"2019",3,0,30,1,70,NA,NA,NA +101,NA,859,"2019",5,0,86,1,14,NA,NA,NA +101,NA,860,"2019",5,0,38,1,62,NA,NA,NA +101,NA,861,"2019",4,0,100,1,0,NA,NA,NA +101,NA,863,"2019",6,1,81,1,81,NA,NA,NA +101,NA,864,"2019",4,1,86,1,86,NA,NA,NA +101,NA,865,"2019",5,0,100,1,0,NA,NA,NA +101,NA,866,"2019",2,0,82,1,18,NA,NA,NA +101,NA,867,"2019",3,1,71,1,71,NA,NA,NA +101,NA,868,"2019",3,1,2,1,2,NA,NA,NA +101,NA,869,"2019",5,1,81,1,81,NA,NA,NA +101,NA,870,"2019",4,0,50,1,50,NA,NA,NA +101,NA,871,"2019",5,1,93,1,93,NA,NA,NA +101,NA,872,"2019",6,0,43,1,57,NA,NA,NA +101,NA,873,"2019",3,1,87,1,87,NA,NA,NA +101,NA,874,"2019",2,0,50,1,50,NA,NA,NA +101,NA,875,"2019",5,0,51,1,49,NA,NA,NA +101,NA,876,"2019",5,0,50,1,50,NA,NA,NA +101,NA,878,"2019",2,0,50,1,50,NA,NA,NA +101,NA,879,"2019",3,0,100,1,0,NA,NA,NA +101,NA,880,"2019",5,1,78,1,78,NA,NA,NA +101,NA,881,"2019",3,1,98,1,98,NA,NA,NA +101,NA,882,"2019",5,0,50,1,50,NA,NA,NA +101,NA,883,"2019",4,0,53,1,47,NA,NA,NA +101,NA,884,"2019",5,0,50,1,50,NA,NA,NA +101,NA,885,"2019",6,0,50,1,50,NA,NA,NA +101,NA,886,"2019",5,1,50,1,50,NA,NA,NA +101,NA,887,"2019",4,0,100,1,0,NA,NA,NA +101,NA,888,"2019",6,1,16,1,16,NA,NA,NA +101,NA,889,"2019",4,0,50,1,50,NA,NA,NA +101,NA,890,"2019",3,0,16,1,84,NA,NA,NA +101,NA,891,"2019",5,0,50,1,50,NA,NA,NA +101,NA,892,"2019",3,1,50,1,50,NA,NA,NA +101,NA,893,"2019",6,1,50,1,50,NA,NA,NA +101,NA,894,"2019",5,1,91,1,91,NA,NA,NA +101,NA,895,"2019",4,0,51,1,49,NA,NA,NA +101,NA,897,"2019",3,0,88,1,12,NA,NA,NA +101,NA,898,"2019",6,1,0,1,0,NA,NA,NA +101,NA,900,"2019",2,0,27,1,73,NA,NA,NA +101,NA,901,"2019",3,0,71,1,29,NA,NA,NA +101,NA,903,"2019",3,0,50,1,50,NA,NA,NA +101,NA,905,"2019",3,1,50,1,50,NA,NA,NA +101,NA,906,"2019",3,1,72,1,72,NA,NA,NA +101,NA,907,"2019",6,1,38,1,38,NA,NA,NA +101,NA,908,"2019",5,1,72,1,72,NA,NA,NA +101,NA,909,"2019",5,0,18,1,82,NA,NA,NA +101,NA,910,"2019",6,1,73,1,73,NA,NA,NA +101,NA,911,"2019",4,0,50,1,50,NA,NA,NA +101,NA,913,"2019",6,1,75,1,75,NA,NA,NA +101,NA,914,"2019",5,0,0,1,100,NA,NA,NA +101,NA,915,"2019",2,0,0,1,100,NA,NA,NA +101,NA,916,"2019",3,0,7,1,93,NA,NA,NA +101,NA,917,"2019",2,1,64,1,64,NA,NA,NA +101,NA,919,"2019",6,0,40,1,60,NA,NA,NA +101,NA,920,"2019",3,0,81,1,19,NA,NA,NA +101,NA,921,"2019",6,1,50,1,50,NA,NA,NA +101,NA,922,"2019",4,1,50,1,50,NA,NA,NA +101,NA,923,"2019",2,1,50,1,50,NA,NA,NA +101,NA,924,"2019",5,1,99,1,99,NA,NA,NA +101,NA,925,"2019",3,0,100,1,0,NA,NA,NA +101,NA,927,"2019",5,1,80,1,80,NA,NA,NA +101,NA,929,"2019",4,1,73,1,73,NA,NA,NA +101,NA,930,"2019",4,0,100,1,0,NA,NA,NA +101,NA,931,"2019",3,0,79,1,21,NA,NA,NA +101,NA,932,"2019",3,0,72,1,28,NA,NA,NA +101,NA,933,"2019",6,0,3,1,97,NA,NA,NA +101,NA,934,"2019",6,1,20,1,20,NA,NA,NA +101,NA,935,"2019",3,1,71,1,71,NA,NA,NA +101,NA,936,"2019",3,1,50,1,50,NA,NA,NA +101,NA,937,"2019",6,1,50,1,50,NA,NA,NA +101,NA,938,"2019",2,1,50,1,50,NA,NA,NA +101,NA,939,"2019",6,0,49,1,51,NA,NA,NA +101,NA,940,"2019",5,1,53,1,53,NA,NA,NA +101,NA,941,"2019",5,1,41,1,41,NA,NA,NA +101,NA,942,"2019",2,1,50,1,50,NA,NA,NA +101,NA,943,"2019",4,1,0,1,0,NA,NA,NA +101,NA,944,"2019",5,1,75,1,75,NA,NA,NA +101,NA,945,"2019",2,0,50,1,50,NA,NA,NA +101,NA,946,"2019",4,1,91,1,91,NA,NA,NA +101,NA,947,"2019",3,0,61,1,39,NA,NA,NA +101,NA,949,"2019",3,1,0,1,0,NA,NA,NA +101,NA,950,"2019",3,1,77,1,77,NA,NA,NA +101,NA,951,"2019",6,1,50,1,50,NA,NA,NA +101,NA,952,"2019",4,1,50,1,50,NA,NA,NA +101,NA,954,"2019",4,0,0,1,100,NA,NA,NA +101,NA,956,"2019",2,1,9,1,9,NA,NA,NA +101,NA,957,"2019",5,1,39,1,39,NA,NA,NA +101,NA,958,"2019",3,1,33,1,33,NA,NA,NA +101,NA,960,"2019",3,1,45,1,45,NA,NA,NA +101,NA,961,"2019",6,1,50,1,50,NA,NA,NA +101,NA,962,"2019",4,0,100,1,0,NA,NA,NA +101,NA,963,"2019",5,1,40,1,40,NA,NA,NA +101,NA,964,"2019",3,0,0,1,100,NA,NA,NA +101,NA,965,"2019",2,0,0,1,100,NA,NA,NA +101,NA,966,"2019",5,1,81,1,81,NA,NA,NA +101,NA,967,"2019",5,0,0,1,100,NA,NA,NA +101,NA,970,"2019",4,0,83,1,17,NA,NA,NA +101,NA,971,"2019",2,1,100,1,100,NA,NA,NA +101,NA,972,"2019",6,1,80,1,80,NA,NA,NA +101,NA,975,"2019",4,0,29,1,71,NA,NA,NA +101,NA,976,"2019",5,1,100,1,100,NA,NA,NA +101,NA,977,"2019",6,1,71,1,71,NA,NA,NA +101,NA,978,"2019",4,0,100,1,0,NA,NA,NA +101,NA,979,"2019",3,0,80,1,20,NA,NA,NA +101,NA,980,"2019",2,0,24,1,76,NA,NA,NA +101,NA,981,"2019",6,1,14,1,14,NA,NA,NA +101,NA,982,"2019",6,0,13,1,87,NA,NA,NA +101,NA,983,"2019",4,0,17,1,83,NA,NA,NA +101,NA,984,"2019",2,1,50,1,50,NA,NA,NA +101,NA,985,"2019",6,1,83,1,83,NA,NA,NA +101,NA,986,"2019",3,0,13,1,87,NA,NA,NA +101,NA,987,"2019",3,1,32,1,32,NA,NA,NA +101,NA,988,"2019",6,0,29,1,71,NA,NA,NA +101,NA,989,"2019",5,0,51,1,49,NA,NA,NA +101,NA,990,"2019",5,0,73,1,27,NA,NA,NA +101,NA,991,"2019",4,1,57,1,57,NA,NA,NA +101,NA,992,"2019",6,0,42,1,58,NA,NA,NA +101,NA,993,"2019",3,1,39,1,39,NA,NA,NA +101,NA,994,"2019",6,0,100,1,0,NA,NA,NA +101,NA,995,"2019",6,0,100,1,0,NA,NA,NA +101,NA,996,"2019",2,1,69,1,69,NA,NA,NA +101,NA,997,"2019",4,1,50,1,50,NA,NA,NA +101,NA,998,"2019",5,0,0,1,100,NA,NA,NA +101,NA,999,"2019",3,0,51,1,49,NA,NA,NA +101,NA,1000,"2019",2,1,49,1,49,NA,NA,NA +101,NA,1002,"2019",3,1,72,1,72,NA,NA,NA +101,NA,1003,"2019",4,1,24,1,24,NA,NA,NA +101,NA,1004,"2019",3,0,1,1,99,NA,NA,NA +101,NA,1005,"2019",5,1,74,1,74,NA,NA,NA +101,NA,1006,"2019",5,0,53,1,47,NA,NA,NA +101,NA,1007,"2019",6,1,100,1,100,NA,NA,NA +101,NA,1009,"2019",3,1,28,1,28,NA,NA,NA +101,NA,1010,"2019",5,0,81,1,19,NA,NA,NA +101,NA,1012,"2019",4,1,51,1,51,NA,NA,NA +101,NA,1013,"2019",6,0,100,1,0,NA,NA,NA +101,NA,1014,"2019",2,0,81,1,19,NA,NA,NA +101,NA,1015,"2019",6,0,9,1,91,NA,NA,NA +101,NA,1017,"2019",6,0,29,1,71,NA,NA,NA +101,NA,1018,"2019",3,0,91,1,9,NA,NA,NA +101,NA,1019,"2019",4,0,63,1,37,NA,NA,NA +101,NA,1020,"2019",6,0,9,1,91,NA,NA,NA +101,NA,1021,"2019",2,1,84,1,84,NA,NA,NA +101,NA,1023,"2019",2,1,81,1,81,NA,NA,NA +101,NA,1024,"2019",2,1,99,1,99,NA,NA,NA +101,NA,1025,"2019",3,0,46,1,54,NA,NA,NA +101,NA,1026,"2019",3,1,59,1,59,NA,NA,NA +101,NA,1027,"2019",3,0,9,1,91,NA,NA,NA +101,NA,1028,"2019",4,1,50,1,50,NA,NA,NA +101,NA,1029,"2019",6,1,100,1,100,NA,NA,NA +101,NA,1030,"2019",6,1,51,1,51,NA,NA,NA +101,NA,1031,"2019",4,0,50,1,50,NA,NA,NA +101,NA,1032,"2019",3,0,20,1,80,NA,NA,NA +101,NA,1034,"2019",4,0,0,1,100,NA,NA,NA +101,NA,1036,"2019",4,1,100,1,100,NA,NA,NA +101,NA,1037,"2019",5,1,100,1,100,NA,NA,NA +101,NA,1038,"2019",5,0,50,1,50,NA,NA,NA +101,NA,1039,"2019",4,1,71,1,71,NA,NA,NA +101,NA,1040,"2019",6,0,68,1,32,NA,NA,NA +101,NA,1041,"2019",5,0,91,1,9,NA,NA,NA +101,NA,1042,"2019",6,0,99,1,1,NA,NA,NA +101,NA,1043,"2019",2,1,51,1,51,NA,NA,NA +101,NA,1044,"2019",5,1,83,1,83,NA,NA,NA +101,NA,1045,"2019",5,1,40,1,40,NA,NA,NA +101,NA,1046,"2019",4,0,39,1,61,NA,NA,NA +101,NA,1047,"2019",4,0,30,1,70,NA,NA,NA +101,NA,1048,"2019",4,0,0,1,100,NA,NA,NA +101,NA,1050,"2019",2,0,53,1,47,NA,NA,NA +101,NA,1051,"2019",3,1,21,1,21,NA,NA,NA +101,NA,1052,"2019",4,1,42,1,42,NA,NA,NA +101,NA,1054,"2019",4,1,45,1,45,NA,NA,NA +101,NA,1055,"2019",3,1,11,1,11,NA,NA,NA +101,NA,1056,"2019",2,1,100,1,100,NA,NA,NA +101,NA,1057,"2019",2,1,50,1,50,NA,NA,NA +101,NA,1058,"2019",2,0,0,1,100,NA,NA,NA +101,NA,1059,"2019",4,1,21,1,21,NA,NA,NA +101,NA,1060,"2019",5,0,0,1,100,NA,NA,NA +101,NA,1061,"2019",5,1,0,1,0,NA,NA,NA +101,NA,1062,"2019",4,1,95,1,95,NA,NA,NA +101,NA,1063,"2019",5,0,51,1,49,NA,NA,NA +101,NA,1064,"2019",5,0,52,1,48,NA,NA,NA +101,NA,1066,"2019",5,1,50,1,50,NA,NA,NA +101,NA,1068,"2019",5,1,11,1,11,NA,NA,NA +101,NA,1070,"2019",2,1,51,1,51,NA,NA,NA +101,NA,1071,"2019",4,0,50,1,50,NA,NA,NA +101,NA,1072,"2019",6,1,50,1,50,NA,NA,NA +101,NA,1073,"2019",2,1,82,1,82,NA,NA,NA +101,NA,1074,"2019",6,0,50,1,50,NA,NA,NA +101,NA,1075,"2019",2,1,100,1,100,NA,NA,NA +101,NA,1076,"2019",2,0,50,1,50,NA,NA,NA +101,NA,1077,"2019",4,0,50,1,50,NA,NA,NA +101,NA,1078,"2019",4,1,35,1,35,NA,NA,NA +101,NA,1080,"2019",6,1,20,1,20,NA,NA,NA +101,NA,1081,"2019",4,0,82,1,18,NA,NA,NA +101,NA,1082,"2019",2,1,91,1,91,NA,NA,NA +101,NA,1083,"2019",5,1,30,1,30,NA,NA,NA +101,NA,1084,"2019",4,1,63,1,63,NA,NA,NA +101,NA,1085,"2019",4,1,100,1,100,NA,NA,NA +101,NA,1087,"2019",2,1,90,1,90,NA,NA,NA +101,NA,1088,"2019",6,1,50,1,50,NA,NA,NA +101,NA,1089,"2019",3,0,38,1,62,NA,NA,NA +101,NA,1090,"2019",2,0,30,1,70,NA,NA,NA +101,NA,1091,"2019",4,1,50,1,50,NA,NA,NA +101,NA,1093,"2019",4,0,39,1,61,NA,NA,NA +101,NA,1094,"2019",6,0,43,1,57,NA,NA,NA +101,NA,1096,"2019",3,1,20,1,20,NA,NA,NA +101,NA,1097,"2019",4,0,79,1,21,NA,NA,NA +101,NA,1098,"2019",5,0,69,1,31,NA,NA,NA +101,NA,1099,"2019",4,1,89,1,89,NA,NA,NA +101,NA,1100,"2019",6,0,14,1,86,NA,NA,NA +101,NA,1101,"2019",6,0,59,1,41,NA,NA,NA +101,NA,1102,"2019",3,0,100,1,0,NA,NA,NA +101,NA,1103,"2019",4,1,81,1,81,NA,NA,NA +101,NA,1104,"2019",6,0,12,1,88,NA,NA,NA +101,NA,1105,"2019",5,0,70,1,30,NA,NA,NA +101,NA,1106,"2019",3,0,87,1,13,NA,NA,NA +101,NA,1107,"2019",4,0,81,1,19,NA,NA,NA +101,NA,1109,"2019",2,0,42,1,58,NA,NA,NA +101,NA,1110,"2019",4,0,88,1,12,NA,NA,NA +101,NA,1111,"2019",6,0,0,1,100,NA,NA,NA +101,NA,1112,"2019",3,1,18,1,18,NA,NA,NA +101,NA,1113,"2019",3,1,84,1,84,NA,NA,NA +101,NA,1114,"2019",5,0,50,1,50,NA,NA,NA +101,NA,1115,"2019",2,0,100,1,0,NA,NA,NA +101,NA,1116,"2019",4,1,80,1,80,NA,NA,NA +101,NA,1117,"2019",4,1,50,1,50,NA,NA,NA +101,NA,1118,"2019",6,1,85,1,85,NA,NA,NA +101,NA,1119,"2019",6,1,50,1,50,NA,NA,NA +101,NA,1120,"2019",5,1,82,1,82,NA,NA,NA +101,NA,1121,"2019",5,0,91,1,9,NA,NA,NA +101,NA,1122,"2019",3,1,40,1,40,NA,NA,NA +101,NA,1123,"2019",2,0,82,1,18,NA,NA,NA +101,NA,1124,"2019",3,1,80,1,80,NA,NA,NA +101,NA,1126,"2019",5,1,73,1,73,NA,NA,NA +101,NA,1127,"2019",2,1,100,1,100,NA,NA,NA +101,NA,1132,"2019",6,0,5,1,95,NA,NA,NA +101,NA,1133,"2019",4,1,83,1,83,NA,NA,NA +101,NA,1134,"2019",2,0,38,1,62,NA,NA,NA +101,NA,1135,"2019",4,1,100,1,100,NA,NA,NA +101,NA,1136,"2019",2,0,83,1,17,NA,NA,NA +101,NA,1138,"2019",3,0,50,1,50,NA,NA,NA +101,NA,1141,"2019",4,1,100,1,100,NA,NA,NA +101,NA,1142,"2019",6,1,7,1,7,NA,NA,NA +101,NA,1143,"2019",5,1,93,1,93,NA,NA,NA +101,NA,1144,"2019",3,1,95,1,95,NA,NA,NA +101,NA,1145,"2019",3,1,76,1,76,NA,NA,NA +101,NA,1146,"2019",3,0,11,1,89,NA,NA,NA +101,NA,1147,"2019",6,1,55,1,55,NA,NA,NA +101,NA,1148,"2019",2,1,91,1,91,NA,NA,NA +101,NA,1149,"2019",4,1,79,1,79,NA,NA,NA +101,NA,1150,"2019",5,0,87,1,13,NA,NA,NA +101,NA,1151,"2019",2,0,50,1,50,NA,NA,NA +101,NA,1152,"2019",2,0,62,1,38,NA,NA,NA +101,NA,1153,"2019",6,0,64,1,36,NA,NA,NA +101,NA,1155,"2019",2,1,82,1,82,NA,NA,NA +101,NA,1156,"2019",3,1,100,1,100,NA,NA,NA +101,NA,1159,"2019",5,0,62,1,38,NA,NA,NA +101,NA,1161,"2019",4,0,86,1,14,NA,NA,NA +101,NA,1162,"2019",5,1,86,1,86,NA,NA,NA +101,NA,1163,"2019",3,1,85,1,85,NA,NA,NA +101,NA,1164,"2019",2,1,86,1,86,NA,NA,NA +101,NA,1165,"2019",5,1,87,1,87,NA,NA,NA +101,106,146,"2019",6,0,13,3,87,73,"BBC",NA +101,106,154,"2019",6,0,90,2,10,10,"BBC",NA +101,106,156,"2019",6,1,27,2,27,39,"BBC",NA +101,106,158,"2019",5,0,9,2,91,88,"BBC",NA +101,106,160,"2019",2,1,100,3,100,100,"BBC",NA +101,106,164,"2019",3,1,69,2,69,37,"BBC",NA +101,106,165,"2019",5,0,94,3,6,99,"BBC",NA +101,106,169,"2019",2,1,42,3,42,42,"BBC",NA +101,106,173,"2019",5,0,21,2,79,79,"BBC",NA +101,106,181,"2019",4,0,80,3,20,NA,"BBC",NA +101,106,186,"2019",3,0,80,2,20,27,"BBC",NA +101,106,188,"2019",6,0,50,2,50,60,"BBC",NA +101,106,189,"2019",5,0,62,2,38,70,"BBC",NA +101,106,190,"2019",2,0,80,2,20,11,"BBC",NA +101,106,193,"2019",5,0,55,2,45,49,"BBC",NA +101,106,195,"2019",6,0,100,2,0,0,"BBC",NA +101,106,196,"2019",5,1,37,2,37,50,"BBC",NA +101,106,197,"2019",2,0,93,2,7,79,"BBC",NA +101,106,199,"2019",2,0,70,2,30,50,"BBC",NA +101,106,201,"2019",2,1,13,3,13,13,"BBC",NA +101,106,202,"2019",5,1,83,3,83,70,"BBC",NA +101,106,203,"2019",5,0,71,2,29,32,"BBC",NA +101,106,204,"2019",5,1,92,3,92,80,"BBC",NA +101,106,206,"2019",5,0,68,2,32,50,"BBC",NA +101,106,207,"2019",2,0,56,2,44,75,"BBC",NA +101,106,213,"2019",5,1,86,2,86,91,"BBC",NA +101,106,214,"2019",3,0,49,2,51,51,"BBC",NA +101,106,229,"2019",5,0,92,2,8,50,"BBC",NA +101,106,231,"2019",6,1,100,3,100,50,"BBC",NA +101,106,233,"2019",4,0,100,3,0,NA,"BBC",NA +101,106,236,"2019",6,0,50,3,50,50,"BBC",NA +101,106,241,"2019",6,0,86,2,14,28,"BBC",NA +101,106,242,"2019",3,0,100,3,0,0,"BBC",NA +101,106,243,"2019",5,0,15,3,85,85,"BBC",NA +101,106,248,"2019",2,1,50,2,50,50,"BBC",NA +101,106,249,"2019",5,0,70,2,30,30,"BBC",NA +101,106,250,"2019",3,1,70,3,70,70,"BBC",NA +101,106,252,"2019",3,1,51,2,51,95,"BBC",NA +101,106,254,"2019",5,1,31,3,31,31,"BBC",NA +101,106,262,"2019",3,1,18,3,18,30,"BBC",NA +101,106,266,"2019",5,0,60,2,40,40,"BBC",NA +101,106,267,"2019",3,1,54,2,54,67,"BBC",NA +101,106,269,"2019",2,0,50,2,50,50,"BBC",NA +101,106,271,"2019",2,0,100,2,0,50,"BBC",NA +101,106,272,"2019",6,1,58,2,58,31,"BBC",NA +101,106,273,"2019",2,0,87,2,13,26,"BBC",NA +101,106,274,"2019",3,1,68,3,68,68,"BBC",NA +101,106,277,"2019",2,0,83,3,17,30,"BBC",NA +101,106,278,"2019",2,1,51,3,51,92,"BBC",NA +101,106,280,"2019",3,1,34,2,34,67,"BBC",NA +101,106,285,"2019",6,1,100,3,100,0,"BBC",NA +101,106,286,"2019",5,0,74,2,26,33,"BBC",NA +101,106,288,"2019",2,1,83,2,83,81,"BBC",NA +101,106,293,"2019",6,0,10,3,90,90,"BBC",NA +101,106,294,"2019",6,0,82,2,18,39,"BBC",NA +101,106,295,"2019",3,0,100,3,0,50,"BBC",NA +101,106,297,"2019",2,1,36,2,36,36,"BBC",NA +101,106,301,"2019",5,0,100,2,0,0,"BBC",NA +101,106,302,"2019",5,0,61,3,39,99,"BBC",NA +101,106,307,"2019",2,1,64,2,64,50,"BBC",NA +101,106,309,"2019",2,1,22,3,22,28,"BBC",NA +101,106,313,"2019",6,0,100,3,0,0,"BBC",NA +101,106,314,"2019",2,0,50,3,50,50,"BBC",NA +101,106,319,"2019",2,0,100,3,0,92,"BBC",NA +101,106,320,"2019",4,1,0,3,0,NA,"BBC",NA +101,106,322,"2019",2,0,0,2,100,50,"BBC",NA +101,106,324,"2019",4,1,84,3,84,NA,"BBC",NA +101,106,328,"2019",5,1,49,3,49,100,"BBC",NA +101,106,332,"2019",3,1,82,3,82,71,"BBC",NA +101,106,335,"2019",3,1,73,2,73,73,"BBC",NA +101,106,340,"2019",3,0,85,3,15,15,"BBC",NA +101,106,341,"2019",3,1,80,3,80,70,"BBC",NA +101,106,342,"2019",6,0,31,3,69,28,"BBC",NA +101,106,344,"2019",2,0,70,2,30,19,"BBC",NA +101,106,346,"2019",6,1,0,3,0,0,"BBC",NA +101,106,347,"2019",2,0,9,2,91,91,"BBC",NA +101,106,349,"2019",3,0,68,3,32,32,"BBC",NA +101,106,354,"2019",6,0,100,3,0,50,"BBC",NA +101,106,357,"2019",5,0,18,2,82,82,"BBC",NA +101,106,358,"2019",3,0,72,3,28,18,"BBC",NA +101,106,359,"2019",6,1,0,3,0,6,"BBC",NA +101,106,360,"2019",3,0,100,2,0,0,"BBC",NA +101,106,361,"2019",2,0,100,2,0,0,"BBC",NA +101,106,367,"2019",2,1,61,3,61,71,"BBC",NA +101,106,368,"2019",6,1,72,3,72,72,"BBC",NA +101,106,371,"2019",5,1,21,2,21,81,"BBC",NA +101,106,373,"2019",5,0,0,2,100,100,"BBC",NA +101,106,378,"2019",2,1,29,3,29,58,"BBC",NA +101,106,379,"2019",3,0,88,3,12,12,"BBC",NA +101,106,381,"2019",2,1,83,3,83,82,"BBC",NA +101,106,383,"2019",2,1,38,3,38,38,"BBC",NA +101,106,386,"2019",6,0,100,2,0,50,"BBC",NA +101,106,388,"2019",6,1,2,3,2,2,"BBC",NA +101,106,391,"2019",3,0,27,2,73,73,"BBC",NA +101,106,395,"2019",2,1,53,2,53,53,"BBC",NA +101,106,397,"2019",3,1,50,3,50,86,"BBC",NA +101,106,401,"2019",2,0,40,2,60,60,"BBC",NA +101,106,404,"2019",3,0,97,3,3,3,"BBC",NA +101,106,406,"2019",2,1,74,3,74,63,"BBC",NA +101,106,408,"2019",3,1,68,2,68,68,"BBC",NA +101,106,415,"2019",2,0,50,2,50,50,"BBC",NA +101,106,419,"2019",6,0,80,2,20,20,"BBC",NA +101,106,421,"2019",5,1,89,2,89,81,"BBC",NA +101,106,427,"2019",5,0,100,2,0,0,"BBC",NA +101,106,429,"2019",3,0,48,3,52,49,"BBC",NA +101,106,430,"2019",3,1,57,3,57,58,"BBC",NA +101,106,431,"2019",6,1,64,3,64,59,"BBC",NA +101,106,432,"2019",6,0,0,3,100,0,"BBC",NA +101,106,435,"2019",6,0,50,2,50,50,"BBC",NA +101,106,440,"2019",3,1,93,2,93,93,"BBC",NA +101,106,441,"2019",2,0,69,2,31,54,"BBC",NA +101,106,444,"2019",6,1,100,2,100,100,"BBC",NA +101,106,446,"2019",2,0,41,3,59,35,"BBC",NA +101,106,448,"2019",3,1,93,3,93,93,"BBC",NA +101,106,450,"2019",2,0,0,2,100,100,"BBC",NA +101,106,452,"2019",5,0,93,2,7,19,"BBC",NA +101,106,460,"2019",3,0,10,2,90,78,"BBC",NA +101,106,467,"2019",3,1,50,2,50,0,"BBC",NA +101,106,470,"2019",2,1,6,3,6,22,"BBC",NA +101,106,471,"2019",6,1,94,2,94,94,"BBC",NA +101,106,473,"2019",6,1,0,3,0,26,"BBC",NA +101,106,475,"2019",2,0,47,2,53,44,"BBC",NA +101,106,479,"2019",3,1,87,2,87,85,"BBC",NA +101,106,480,"2019",6,1,66,3,66,66,"BBC",NA +101,106,481,"2019",5,1,100,2,100,80,"BBC",NA +101,106,485,"2019",3,0,87,3,13,20,"BBC",NA +101,106,487,"2019",3,0,89,2,11,22,"BBC",NA +101,106,490,"2019",6,0,70,2,30,30,"BBC",NA +101,106,496,"2019",3,1,78,3,78,73,"BBC",NA +101,106,497,"2019",4,1,61,3,61,NA,"BBC",NA +101,106,500,"2019",5,1,99,2,99,0,"BBC",NA +101,106,501,"2019",6,1,62,2,62,81,"BBC",NA +101,106,503,"2019",5,1,56,3,56,50,"BBC",NA +101,106,506,"2019",6,1,0,2,0,50,"BBC",NA +101,106,509,"2019",5,1,61,3,61,29,"BBC",NA +101,106,511,"2019",3,0,51,3,49,34,"BBC",NA +101,106,515,"2019",6,1,54,3,54,33,"BBC",NA +101,106,516,"2019",5,1,63,2,63,72,"BBC",NA +101,106,517,"2019",5,1,30,2,30,30,"BBC",NA +101,106,518,"2019",2,1,62,2,62,40,"BBC",NA +101,106,520,"2019",6,1,71,3,71,44,"BBC",NA +101,106,523,"2019",6,1,35,3,35,100,"BBC",NA +101,106,530,"2019",5,0,92,2,8,8,"BBC",NA +101,106,533,"2019",3,1,0,2,0,6,"BBC",NA +101,106,534,"2019",5,1,23,2,23,79,"BBC",NA +101,106,535,"2019",3,1,91,2,91,74,"BBC",NA +101,106,542,"2019",3,1,48,2,48,63,"BBC",NA +101,106,544,"2019",5,1,32,3,32,32,"BBC",NA +101,106,546,"2019",2,0,73,2,27,27,"BBC",NA +101,106,548,"2019",3,1,61,2,61,56,"BBC",NA +101,106,550,"2019",6,0,0,3,100,100,"BBC",NA +101,106,552,"2019",3,1,84,2,84,83,"BBC",NA +101,106,553,"2019",3,0,2,2,98,98,"BBC",NA +101,106,563,"2019",5,0,97,2,3,3,"BBC",NA +101,106,564,"2019",5,1,71,3,71,71,"BBC",NA +101,106,565,"2019",4,0,50,3,50,NA,"BBC",NA +101,106,567,"2019",3,0,96,2,4,93,"BBC",NA +101,106,573,"2019",6,0,0,3,100,100,"BBC",NA +101,106,575,"2019",3,1,100,3,100,100,"BBC",NA +101,106,577,"2019",6,0,100,2,0,50,"BBC",NA +101,106,582,"2019",5,1,59,2,59,41,"BBC",NA +101,106,583,"2019",6,0,37,3,63,63,"BBC",NA +101,106,584,"2019",6,0,44,2,56,56,"BBC",NA +101,106,585,"2019",6,0,67,2,33,33,"BBC",NA +101,106,586,"2019",3,0,82,2,18,18,"BBC",NA +101,106,590,"2019",6,1,56,2,56,56,"BBC",NA +101,106,595,"2019",3,0,100,2,0,0,"BBC",NA +101,106,596,"2019",5,0,50,3,50,50,"BBC",NA +101,106,597,"2019",3,0,46,2,54,44,"BBC",NA +101,106,600,"2019",5,1,66,2,66,31,"BBC",NA +101,106,601,"2019",6,0,63,3,37,26,"BBC",NA +101,106,602,"2019",5,0,42,2,58,32,"BBC",NA +101,106,604,"2019",2,0,66,3,34,56,"BBC",NA +101,106,605,"2019",6,1,68,2,68,63,"BBC",NA +101,106,606,"2019",2,0,65,2,35,35,"BBC",NA +101,106,607,"2019",5,0,80,2,20,14,"BBC",NA +101,106,609,"2019",2,1,78,3,78,37,"BBC",NA +101,106,612,"2019",3,0,42,3,58,50,"BBC",NA +101,106,613,"2019",5,1,32,2,32,40,"BBC",NA +101,106,615,"2019",3,1,79,3,79,79,"BBC",NA +101,106,616,"2019",2,0,32,3,68,60,"BBC",NA +101,106,624,"2019",6,0,84,3,16,0,"BBC",NA +101,106,626,"2019",5,0,72,3,28,15,"BBC",NA +101,106,627,"2019",5,1,100,3,100,100,"BBC",NA +101,106,629,"2019",3,1,50,2,50,50,"BBC",NA +101,106,641,"2019",3,1,77,2,77,71,"BBC",NA +101,106,642,"2019",2,1,27,2,27,61,"BBC",NA +101,106,649,"2019",6,1,100,2,100,100,"BBC",NA +101,106,657,"2019",6,0,91,2,9,9,"BBC",NA +101,106,658,"2019",3,0,56,2,44,44,"BBC",NA +101,106,659,"2019",5,0,75,2,25,50,"BBC",NA +101,106,660,"2019",2,1,50,2,50,50,"BBC",NA +101,106,664,"2019",2,1,33,2,33,58,"BBC",NA +101,106,667,"2019",2,0,100,3,0,0,"BBC",NA +101,106,668,"2019",6,0,50,3,50,50,"BBC",NA +101,106,670,"2019",5,0,90,2,10,10,"BBC",NA +101,106,675,"2019",5,1,50,2,50,50,"BBC",NA +101,106,677,"2019",5,1,100,2,100,100,"BBC",NA +101,106,679,"2019",5,1,94,3,94,94,"BBC",NA +101,106,680,"2019",4,0,52,3,48,NA,"BBC",NA +101,106,683,"2019",6,1,93,2,93,9,"BBC",NA +101,106,685,"2019",3,1,75,2,75,50,"BBC",NA +101,106,687,"2019",2,0,50,2,50,50,"BBC",NA +101,106,694,"2019",5,0,19,3,81,96,"BBC",NA +101,106,698,"2019",6,0,0,2,100,100,"BBC",NA +101,106,700,"2019",6,0,100,3,0,0,"BBC",NA +101,106,702,"2019",5,0,75,2,25,25,"BBC",NA +101,106,704,"2019",5,1,100,2,100,45,"BBC",NA +101,106,705,"2019",4,1,13,3,13,NA,"BBC",NA +101,106,709,"2019",2,1,100,2,100,0,"BBC",NA +101,106,712,"2019",6,1,50,2,50,50,"BBC",NA +101,106,713,"2019",3,0,58,2,42,42,"BBC",NA +101,106,714,"2019",6,0,100,3,0,0,"BBC",NA +101,106,716,"2019",3,1,55,3,55,55,"BBC",NA +101,106,717,"2019",6,1,50,3,50,50,"BBC",NA +101,106,718,"2019",2,1,44,2,44,60,"BBC",NA +101,106,720,"2019",2,0,0,2,100,100,"BBC",NA +101,106,721,"2019",3,0,100,2,0,0,"BBC",NA +101,106,722,"2019",5,0,50,2,50,50,"BBC",NA +101,106,723,"2019",2,0,99,2,1,1,"BBC",NA +101,106,725,"2019",6,1,75,2,75,73,"BBC",NA +101,106,727,"2019",5,0,13,3,87,80,"BBC",NA +101,106,730,"2019",4,0,50,3,50,NA,"BBC",NA +101,106,732,"2019",2,0,69,3,31,22,"BBC",NA +101,106,733,"2019",6,1,50,3,50,50,"BBC",NA +101,106,738,"2019",3,1,22,2,22,22,"BBC",NA +101,106,744,"2019",3,0,73,2,27,50,"BBC",NA +101,106,746,"2019",5,0,99,2,1,50,"BBC",NA +101,106,749,"2019",5,0,50,2,50,50,"BBC",NA +101,106,750,"2019",5,1,0,2,0,52,"BBC",NA +101,106,759,"2019",2,0,0,3,100,62,"BBC",NA +101,106,760,"2019",5,1,62,2,62,62,"BBC",NA +101,106,764,"2019",2,1,50,2,50,100,"BBC",NA +101,106,766,"2019",5,1,50,3,50,50,"BBC",NA +101,106,768,"2019",5,0,49,3,51,51,"BBC",NA +101,106,772,"2019",3,0,100,2,0,0,"BBC",NA +101,106,777,"2019",3,0,50,3,50,50,"BBC",NA +101,106,779,"2019",5,0,0,2,100,100,"BBC",NA +101,106,780,"2019",3,0,9,3,91,94,"BBC",NA +101,106,783,"2019",6,1,43,2,43,43,"BBC",NA +101,106,784,"2019",6,0,100,2,0,50,"BBC",NA +101,106,785,"2019",5,1,96,2,96,96,"BBC",NA +101,106,787,"2019",5,1,18,3,18,25,"BBC",NA +101,106,788,"2019",2,0,40,3,60,50,"BBC",NA +101,106,791,"2019",6,1,81,3,81,81,"BBC",NA +101,106,796,"2019",6,1,7,2,7,50,"BBC",NA +101,106,799,"2019",3,0,28,3,72,6,"BBC",NA +101,106,801,"2019",6,0,0,3,100,99,"BBC",NA +101,106,816,"2019",2,1,50,3,50,50,"BBC",NA +101,106,830,"2019",3,1,97,2,97,97,"BBC",NA +101,106,832,"2019",2,0,100,2,0,0,"BBC",NA +101,106,842,"2019",2,0,43,2,57,60,"BBC",NA +101,106,843,"2019",3,0,91,2,9,22,"BBC",NA +101,106,846,"2019",2,0,2,2,98,98,"BBC",NA +101,106,849,"2019",2,1,100,3,100,65,"BBC",NA +101,106,851,"2019",6,0,70,2,30,30,"BBC",NA +101,106,852,"2019",2,1,21,3,21,72,"BBC",NA +101,106,853,"2019",2,1,51,2,51,75,"BBC",NA +101,106,855,"2019",2,0,50,2,50,50,"BBC",NA +101,106,857,"2019",6,0,0,3,100,100,"BBC",NA +101,106,858,"2019",3,0,30,2,70,70,"BBC",NA +101,106,865,"2019",5,0,100,2,0,0,"BBC",NA +101,106,867,"2019",3,1,62,2,62,71,"BBC",NA +101,106,868,"2019",3,1,94,3,94,2,"BBC",NA +101,106,876,"2019",5,0,100,3,0,0,"BBC",NA +101,106,878,"2019",2,0,58,3,42,42,"BBC",NA +101,106,879,"2019",3,0,100,3,0,0,"BBC",NA +101,106,884,"2019",5,0,50,3,50,50,"BBC",NA +101,106,885,"2019",6,0,96,3,4,4,"BBC",NA +101,106,886,"2019",5,1,3,3,3,50,"BBC",NA +101,106,890,"2019",3,0,58,3,42,84,"BBC",NA +101,106,891,"2019",5,0,50,2,50,50,"BBC",NA +101,106,892,"2019",3,1,50,2,50,50,"BBC",NA +101,106,893,"2019",6,1,0,3,0,0,"BBC",NA +101,106,900,"2019",2,0,27,2,73,73,"BBC",NA +101,106,901,"2019",3,0,71,3,29,29,"BBC",NA +101,106,905,"2019",3,1,100,2,100,50,"BBC",NA +101,106,907,"2019",6,1,17,3,17,38,"BBC",NA +101,106,909,"2019",5,0,27,3,73,75,"BBC",NA +101,106,914,"2019",5,0,0,2,100,100,"BBC",NA +101,106,916,"2019",3,0,2,2,98,93,"BBC",NA +101,106,920,"2019",3,0,88,2,12,19,"BBC",NA +101,106,921,"2019",6,1,33,2,33,50,"BBC",NA +101,106,923,"2019",2,1,65,2,65,50,"BBC",NA +101,106,925,"2019",3,0,0,3,100,0,"BBC",NA +101,106,932,"2019",3,0,72,2,28,28,"BBC",NA +101,106,934,"2019",6,1,81,3,81,20,"BBC",NA +101,106,935,"2019",3,1,58,2,58,71,"BBC",NA +101,106,936,"2019",3,1,80,2,80,50,"BBC",NA +101,106,939,"2019",6,0,60,3,40,40,"BBC",NA +101,106,940,"2019",5,1,50,2,50,53,"BBC",NA +101,106,941,"2019",5,1,0,2,0,41,"BBC",NA +101,106,943,"2019",4,1,0,3,0,NA,"BBC",NA +101,106,945,"2019",2,0,50,2,50,50,"BBC",NA +101,106,949,"2019",3,1,12,2,12,0,"BBC",NA +101,106,951,"2019",6,1,51,3,51,51,"BBC",NA +101,106,957,"2019",5,1,49,2,49,39,"BBC",NA +101,106,958,"2019",3,1,55,2,55,33,"BBC",NA +101,106,961,"2019",6,1,50,2,50,50,"BBC",NA +101,106,964,"2019",3,0,0,3,100,100,"BBC",NA +101,106,965,"2019",2,0,0,2,100,100,"BBC",NA +101,106,966,"2019",5,1,91,3,91,87,"BBC",NA +101,106,972,"2019",6,1,84,2,84,80,"BBC",NA +101,106,975,"2019",4,0,9,3,91,NA,"BBC",NA +101,106,976,"2019",5,1,0,3,0,100,"BBC",NA +101,106,979,"2019",3,0,80,2,20,20,"BBC",NA +101,106,987,"2019",3,1,28,3,28,32,"BBC",NA +101,106,988,"2019",6,0,29,2,71,71,"BBC",NA +101,106,990,"2019",5,0,91,2,9,27,"BBC",NA +101,106,995,"2019",6,0,100,2,0,0,"BBC",NA +101,106,996,"2019",2,1,68,3,68,20,"BBC",NA +101,106,998,"2019",5,0,52,2,48,100,"BBC",NA +101,106,999,"2019",3,0,92,2,8,49,"BBC",NA +101,106,1006,"2019",5,0,49,2,51,47,"BBC",NA +101,106,1009,"2019",3,1,37,2,37,28,"BBC",NA +101,106,1013,"2019",6,0,100,3,0,0,"BBC",NA +101,106,1018,"2019",3,0,71,3,29,29,"BBC",NA +101,106,1020,"2019",6,0,39,2,61,91,"BBC",NA +101,106,1021,"2019",2,1,75,2,75,84,"BBC",NA +101,106,1023,"2019",2,1,3,3,3,81,"BBC",NA +101,106,1024,"2019",2,1,95,2,95,99,"BBC",NA +101,106,1026,"2019",3,1,59,2,59,59,"BBC",NA +101,106,1029,"2019",6,1,100,2,100,100,"BBC",NA +101,106,1032,"2019",3,0,17,2,83,80,"BBC",NA +101,106,1038,"2019",5,0,90,2,10,50,"BBC",NA +101,106,1041,"2019",5,0,91,2,9,9,"BBC",NA +101,106,1042,"2019",6,0,99,3,1,1,"BBC",NA +101,106,1044,"2019",5,1,27,3,27,28,"BBC",NA +101,106,1045,"2019",5,1,16,2,16,40,"BBC",NA +101,106,1050,"2019",2,0,53,2,47,47,"BBC",NA +101,106,1051,"2019",3,1,49,2,49,21,"BBC",NA +101,106,1055,"2019",3,1,11,2,11,11,"BBC",NA +101,106,1057,"2019",2,1,50,2,50,50,"BBC",NA +101,106,1058,"2019",2,0,0,3,100,0,"BBC",NA +101,106,1060,"2019",5,0,0,2,100,100,"BBC",NA +101,106,1066,"2019",5,1,87,3,87,87,"BBC",NA +101,106,1070,"2019",2,1,0,2,0,51,"BBC",NA +101,106,1072,"2019",6,1,50,3,50,50,"BBC",NA +101,106,1076,"2019",2,0,51,2,49,50,"BBC",NA +101,106,1081,"2019",4,0,82,3,18,NA,"BBC",NA +101,106,1082,"2019",2,1,53,3,53,53,"BBC",NA +101,106,1083,"2019",5,1,49,2,49,30,"BBC",NA +101,106,1085,"2019",4,1,0,3,0,NA,"BBC",NA +101,106,1088,"2019",6,1,50,2,50,50,"BBC",NA +101,106,1089,"2019",3,0,39,3,61,70,"BBC",NA +101,106,1096,"2019",3,1,16,2,16,20,"BBC",NA +101,106,1098,"2019",5,0,73,2,27,31,"BBC",NA +101,106,1101,"2019",6,0,70,2,30,41,"BBC",NA +101,106,1102,"2019",3,0,100,2,0,0,"BBC",NA +101,106,1104,"2019",6,0,4,3,96,96,"BBC",NA +101,106,1106,"2019",3,0,83,3,17,13,"BBC",NA +101,106,1109,"2019",2,0,82,3,18,19,"BBC",NA +101,106,1112,"2019",3,1,67,2,67,18,"BBC",NA +101,106,1115,"2019",2,0,100,2,0,0,"BBC",NA +101,106,1120,"2019",5,1,75,3,75,79,"BBC",NA +101,106,1123,"2019",2,0,100,3,0,4,"BBC",NA +101,106,1126,"2019",5,1,32,3,32,32,"BBC",NA +101,106,1133,"2019",4,1,83,3,83,NA,"BBC",NA +101,106,1138,"2019",3,0,100,2,0,50,"BBC",NA +101,106,1142,"2019",6,1,7,3,7,7,"BBC",NA +101,106,1144,"2019",3,1,95,2,95,95,"BBC",NA +101,106,1146,"2019",3,0,5,3,95,95,"BBC",NA +101,106,1147,"2019",6,1,60,2,60,55,"BBC",NA +101,106,1148,"2019",2,1,98,3,98,91,"BBC",NA +101,106,1150,"2019",5,0,87,3,13,13,"BBC",NA +101,106,1152,"2019",2,0,51,3,49,38,"BBC",NA +101,106,1159,"2019",5,0,83,3,17,25,"BBC",NA +101,106,1163,"2019",3,1,80,2,80,85,"BBC",NA +101,106,1164,"2019",2,1,80,2,80,86,"BBC",NA +101,116,144,"2019",3,0,71,3,29,87,"Xinhua",NA +101,116,145,"2019",5,1,0,2,0,21,"Xinhua",NA +101,116,149,"2019",6,1,7,3,7,23,"Xinhua",NA +101,116,150,"2019",5,0,70,2,30,50,"Xinhua",NA +101,116,151,"2019",4,1,50,2,50,100,"Xinhua",NA +101,116,153,"2019",4,1,17,2,17,17,"Xinhua",NA +101,116,159,"2019",2,0,58,2,42,65,"Xinhua",NA +101,116,161,"2019",6,0,82,2,18,18,"Xinhua",NA +101,116,166,"2019",4,0,80,2,20,20,"Xinhua",NA +101,116,171,"2019",3,1,29,2,29,51,"Xinhua",NA +101,116,176,"2019",4,0,100,2,0,0,"Xinhua",NA +101,116,177,"2019",6,0,98,2,2,50,"Xinhua",NA +101,116,179,"2019",4,0,77,2,23,30,"Xinhua",NA +101,116,191,"2019",3,0,100,3,0,0,"Xinhua",NA +101,116,198,"2019",5,1,92,2,92,83,"Xinhua",NA +101,116,199,"2019",2,0,80,3,20,30,"Xinhua",NA +101,116,202,"2019",5,1,70,2,70,30,"Xinhua",NA +101,116,205,"2019",2,0,100,3,0,19,"Xinhua",NA +101,116,212,"2019",2,0,100,2,0,20,"Xinhua",NA +101,116,215,"2019",6,0,96,3,4,31,"Xinhua",NA +101,116,220,"2019",2,0,87,3,13,86,"Xinhua",NA +101,116,222,"2019",5,1,51,3,51,52,"Xinhua",NA +101,116,224,"2019",3,0,68,2,32,16,"Xinhua",NA +101,116,225,"2019",6,0,38,3,62,93,"Xinhua",NA +101,116,228,"2019",3,1,1,3,1,90,"Xinhua",NA +101,116,232,"2019",4,1,77,2,77,68,"Xinhua",NA +101,116,234,"2019",4,0,60,2,40,58,"Xinhua",NA +101,116,235,"2019",3,1,2,2,2,3,"Xinhua",NA +101,116,237,"2019",2,0,1,2,99,100,"Xinhua",NA +101,116,242,"2019",3,0,100,2,0,1,"Xinhua",NA +101,116,243,"2019",5,0,15,2,85,85,"Xinhua",NA +101,116,245,"2019",2,1,60,2,60,60,"Xinhua",NA +101,116,246,"2019",3,0,100,3,0,6,"Xinhua",NA +101,116,247,"2019",6,1,0,3,0,6,"Xinhua",NA +101,116,250,"2019",3,1,70,2,70,35,"Xinhua",NA +101,116,252,"2019",3,1,7,3,7,51,"Xinhua",NA +101,116,254,"2019",5,1,31,2,31,100,"Xinhua",NA +101,116,257,"2019",3,0,78,3,22,79,"Xinhua",NA +101,116,258,"2019",2,0,65,2,35,37,"Xinhua",NA +101,116,259,"2019",4,0,100,2,0,94,"Xinhua",NA +101,116,263,"2019",5,0,35,2,65,65,"Xinhua",NA +101,116,264,"2019",6,1,49,3,49,40,"Xinhua",NA +101,116,270,"2019",3,1,100,3,100,100,"Xinhua",NA +101,116,277,"2019",2,0,70,2,30,17,"Xinhua",NA +101,116,278,"2019",2,1,92,2,92,92,"Xinhua",NA +101,116,281,"2019",5,1,29,3,29,29,"Xinhua",NA +101,116,282,"2019",4,0,94,2,6,22,"Xinhua",NA +101,116,286,"2019",5,0,88,3,12,26,"Xinhua",NA +101,116,287,"2019",3,1,6,2,6,50,"Xinhua",NA +101,116,288,"2019",2,1,79,3,79,83,"Xinhua",NA +101,116,289,"2019",3,0,7,3,93,96,"Xinhua",NA +101,116,290,"2019",2,1,11,3,11,59,"Xinhua",NA +101,116,292,"2019",6,1,0,2,0,50,"Xinhua",NA +101,116,298,"2019",4,1,50,2,50,50,"Xinhua",NA +101,116,299,"2019",4,0,100,2,0,0,"Xinhua",NA +101,116,300,"2019",4,1,23,2,23,69,"Xinhua",NA +101,116,301,"2019",5,0,100,3,0,0,"Xinhua",NA +101,116,303,"2019",5,0,55,2,45,69,"Xinhua",NA +101,116,305,"2019",3,0,100,3,0,9,"Xinhua",NA +101,116,306,"2019",5,1,100,2,100,100,"Xinhua",NA +101,116,308,"2019",4,1,87,2,87,76,"Xinhua",NA +101,116,315,"2019",4,0,0,2,100,100,"Xinhua",NA +101,116,316,"2019",4,0,39,2,61,59,"Xinhua",NA +101,116,321,"2019",4,1,79,2,79,38,"Xinhua",NA +101,116,325,"2019",4,1,0,2,0,100,"Xinhua",NA +101,116,327,"2019",2,1,41,2,41,41,"Xinhua",NA +101,116,331,"2019",3,1,91,3,91,91,"Xinhua",NA +101,116,333,"2019",6,0,100,3,0,100,"Xinhua",NA +101,116,334,"2019",3,1,50,2,50,50,"Xinhua",NA +101,116,335,"2019",3,1,73,3,73,73,"Xinhua",NA +101,116,336,"2019",4,0,100,2,0,35,"Xinhua",NA +101,116,339,"2019",3,1,70,3,70,57,"Xinhua",NA +101,116,343,"2019",5,0,64,2,36,36,"Xinhua",NA +101,116,344,"2019",2,0,88,3,12,30,"Xinhua",NA +101,116,345,"2019",4,1,0,2,0,50,"Xinhua",NA +101,116,347,"2019",2,0,83,3,17,91,"Xinhua",NA +101,116,355,"2019",2,0,67,2,33,33,"Xinhua",NA +101,116,356,"2019",3,1,0,3,0,0,"Xinhua",NA +101,116,357,"2019",5,0,79,3,21,82,"Xinhua",NA +101,116,359,"2019",6,1,6,2,6,36,"Xinhua",NA +101,116,364,"2019",5,0,100,3,0,0,"Xinhua",NA +101,116,365,"2019",4,1,11,2,11,91,"Xinhua",NA +101,116,369,"2019",6,0,78,3,22,22,"Xinhua",NA +101,116,372,"2019",2,1,50,2,50,50,"Xinhua",NA +101,116,375,"2019",2,1,100,3,100,100,"Xinhua",NA +101,116,379,"2019",3,0,88,2,12,12,"Xinhua",NA +101,116,380,"2019",4,0,100,2,0,0,"Xinhua",NA +101,116,381,"2019",2,1,82,2,82,92,"Xinhua",NA +101,116,382,"2019",5,1,0,3,0,0,"Xinhua",NA +101,116,384,"2019",4,0,0,2,100,100,"Xinhua",NA +101,116,386,"2019",6,0,100,3,0,0,"Xinhua",NA +101,116,387,"2019",2,0,86,3,14,14,"Xinhua",NA +101,116,390,"2019",4,0,100,2,0,100,"Xinhua",NA +101,116,399,"2019",5,0,100,2,0,24,"Xinhua",NA +101,116,403,"2019",4,0,100,2,0,50,"Xinhua",NA +101,116,410,"2019",3,1,0,3,0,0,"Xinhua",NA +101,116,412,"2019",4,0,98,2,2,14,"Xinhua",NA +101,116,416,"2019",6,1,92,3,92,31,"Xinhua",NA +101,116,417,"2019",5,1,34,3,34,100,"Xinhua",NA +101,116,418,"2019",5,0,83,2,17,17,"Xinhua",NA +101,116,419,"2019",6,0,60,3,40,20,"Xinhua",NA +101,116,420,"2019",5,1,60,2,60,50,"Xinhua",NA +101,116,421,"2019",5,1,19,3,19,89,"Xinhua",NA +101,116,422,"2019",3,0,84,2,16,50,"Xinhua",NA +101,116,426,"2019",4,1,90,2,90,51,"Xinhua",NA +101,116,428,"2019",6,1,75,3,75,75,"Xinhua",NA +101,116,430,"2019",3,1,58,2,58,54,"Xinhua",NA +101,116,434,"2019",4,0,66,2,34,34,"Xinhua",NA +101,116,436,"2019",4,0,48,2,52,55,"Xinhua",NA +101,116,437,"2019",2,1,0,2,0,0,"Xinhua",NA +101,116,438,"2019",3,0,100,3,0,100,"Xinhua",NA +101,116,442,"2019",3,0,84,2,16,28,"Xinhua",NA +101,116,443,"2019",5,1,71,3,71,46,"Xinhua",NA +101,116,445,"2019",5,1,68,2,68,83,"Xinhua",NA +101,116,446,"2019",2,0,65,2,35,50,"Xinhua",NA +101,116,448,"2019",3,1,93,2,93,93,"Xinhua",NA +101,116,450,"2019",2,0,0,3,100,100,"Xinhua",NA +101,116,451,"2019",2,0,50,3,50,100,"Xinhua",NA +101,116,453,"2019",3,1,0,3,0,0,"Xinhua",NA +101,116,454,"2019",2,0,91,3,9,50,"Xinhua",NA +101,116,455,"2019",3,1,5,2,5,0,"Xinhua",NA +101,116,459,"2019",2,0,33,2,67,67,"Xinhua",NA +101,116,460,"2019",3,0,20,3,80,90,"Xinhua",NA +101,116,463,"2019",4,1,58,2,58,58,"Xinhua",NA +101,116,464,"2019",4,0,92,2,8,8,"Xinhua",NA +101,116,465,"2019",3,1,71,3,71,67,"Xinhua",NA +101,116,469,"2019",6,1,5,2,5,27,"Xinhua",NA +101,116,473,"2019",6,1,26,2,26,100,"Xinhua",NA +101,116,476,"2019",6,1,51,3,51,51,"Xinhua",NA +101,116,477,"2019",6,0,75,3,25,25,"Xinhua",NA +101,116,482,"2019",2,0,77,2,23,50,"Xinhua",NA +101,116,483,"2019",5,1,30,3,30,100,"Xinhua",NA +101,116,485,"2019",3,0,80,2,20,29,"Xinhua",NA +101,116,486,"2019",4,1,50,2,50,50,"Xinhua",NA +101,116,488,"2019",5,0,73,3,27,27,"Xinhua",NA +101,116,489,"2019",5,0,65,3,35,35,"Xinhua",NA +101,116,491,"2019",3,0,81,2,19,19,"Xinhua",NA +101,116,494,"2019",4,0,59,2,41,28,"Xinhua",NA +101,116,500,"2019",5,1,3,3,3,99,"Xinhua",NA +101,116,504,"2019",5,1,50,2,50,50,"Xinhua",NA +101,116,505,"2019",5,0,47,3,53,80,"Xinhua",NA +101,116,509,"2019",5,1,29,2,29,40,"Xinhua",NA +101,116,512,"2019",5,0,85,3,15,39,"Xinhua",NA +101,116,513,"2019",6,0,70,2,30,30,"Xinhua",NA +101,116,514,"2019",6,0,84,3,16,22,"Xinhua",NA +101,116,518,"2019",2,1,59,3,59,62,"Xinhua",NA +101,116,523,"2019",6,1,100,2,100,100,"Xinhua",NA +101,116,524,"2019",6,1,17,2,17,17,"Xinhua",NA +101,116,525,"2019",3,1,87,2,87,74,"Xinhua",NA +101,116,526,"2019",3,0,66,2,34,34,"Xinhua",NA +101,116,532,"2019",5,1,100,3,100,100,"Xinhua",NA +101,116,534,"2019",5,1,70,3,70,23,"Xinhua",NA +101,116,539,"2019",5,1,92,2,92,13,"Xinhua",NA +101,116,540,"2019",4,1,43,2,43,82,"Xinhua",NA +101,116,542,"2019",3,1,57,3,57,48,"Xinhua",NA +101,116,544,"2019",5,1,32,2,32,78,"Xinhua",NA +101,116,545,"2019",2,0,69,2,31,52,"Xinhua",NA +101,116,555,"2019",5,0,22,3,78,83,"Xinhua",NA +101,116,557,"2019",5,0,90,2,10,100,"Xinhua",NA +101,116,558,"2019",4,0,70,2,30,30,"Xinhua",NA +101,116,559,"2019",3,0,20,3,80,84,"Xinhua",NA +101,116,566,"2019",5,1,72,3,72,82,"Xinhua",NA +101,116,568,"2019",2,0,36,3,64,63,"Xinhua",NA +101,116,569,"2019",3,0,10,3,90,90,"Xinhua",NA +101,116,572,"2019",2,1,50,2,50,50,"Xinhua",NA +101,116,578,"2019",4,0,39,2,61,71,"Xinhua",NA +101,116,579,"2019",6,0,37,3,63,35,"Xinhua",NA +101,116,583,"2019",6,0,37,2,63,63,"Xinhua",NA +101,116,584,"2019",6,0,44,3,56,56,"Xinhua",NA +101,116,587,"2019",3,0,67,2,33,33,"Xinhua",NA +101,116,588,"2019",3,0,72,2,28,33,"Xinhua",NA +101,116,591,"2019",4,1,58,2,58,43,"Xinhua",NA +101,116,592,"2019",5,1,88,3,88,63,"Xinhua",NA +101,116,594,"2019",2,0,72,3,28,35,"Xinhua",NA +101,116,595,"2019",3,0,100,3,0,0,"Xinhua",NA +101,116,599,"2019",6,0,41,2,59,69,"Xinhua",NA +101,116,600,"2019",5,1,37,3,37,66,"Xinhua",NA +101,116,602,"2019",5,0,59,3,41,58,"Xinhua",NA +101,116,603,"2019",3,0,48,3,52,52,"Xinhua",NA +101,116,604,"2019",2,0,44,2,56,35,"Xinhua",NA +101,116,605,"2019",6,1,63,3,63,68,"Xinhua",NA +101,116,615,"2019",3,1,79,2,79,79,"Xinhua",NA +101,116,617,"2019",4,1,53,2,53,50,"Xinhua",NA +101,116,618,"2019",6,0,4,2,96,96,"Xinhua",NA +101,116,620,"2019",2,1,5,3,5,0,"Xinhua",NA +101,116,622,"2019",6,0,47,3,53,53,"Xinhua",NA +101,116,623,"2019",6,1,97,3,97,83,"Xinhua",NA +101,116,624,"2019",6,0,100,2,0,5,"Xinhua",NA +101,116,625,"2019",3,1,65,3,65,58,"Xinhua",NA +101,116,628,"2019",6,1,50,2,50,50,"Xinhua",NA +101,116,629,"2019",3,1,50,3,50,50,"Xinhua",NA +101,116,630,"2019",2,0,100,2,0,0,"Xinhua",NA +101,116,632,"2019",4,0,78,2,22,22,"Xinhua",NA +101,116,634,"2019",3,0,97,2,3,49,"Xinhua",NA +101,116,636,"2019",2,1,64,3,64,25,"Xinhua",NA +101,116,637,"2019",6,0,0,2,100,100,"Xinhua",NA +101,116,638,"2019",2,0,100,3,0,0,"Xinhua",NA +101,116,639,"2019",4,0,50,2,50,50,"Xinhua",NA +101,116,641,"2019",3,1,87,3,87,77,"Xinhua",NA +101,116,645,"2019",5,1,90,3,90,90,"Xinhua",NA +101,116,646,"2019",6,1,25,3,25,25,"Xinhua",NA +101,116,651,"2019",3,0,44,2,56,95,"Xinhua",NA +101,116,653,"2019",6,1,100,3,100,100,"Xinhua",NA +101,116,656,"2019",5,0,53,3,47,48,"Xinhua",NA +101,116,658,"2019",3,0,56,3,44,44,"Xinhua",NA +101,116,660,"2019",2,1,90,3,90,50,"Xinhua",NA +101,116,661,"2019",6,1,81,2,81,55,"Xinhua",NA +101,116,662,"2019",5,0,96,3,4,100,"Xinhua",NA +101,116,671,"2019",6,0,100,3,0,100,"Xinhua",NA +101,116,673,"2019",6,0,100,2,0,50,"Xinhua",NA +101,116,674,"2019",2,0,2,2,98,50,"Xinhua",NA +101,116,677,"2019",5,1,71,3,71,100,"Xinhua",NA +101,116,679,"2019",5,1,94,2,94,66,"Xinhua",NA +101,116,681,"2019",3,0,60,3,40,79,"Xinhua",NA +101,116,683,"2019",6,1,11,3,11,93,"Xinhua",NA +101,116,685,"2019",3,1,24,3,24,75,"Xinhua",NA +101,116,686,"2019",5,1,100,2,100,100,"Xinhua",NA +101,116,688,"2019",6,0,93,3,7,7,"Xinhua",NA +101,116,694,"2019",5,0,4,2,96,94,"Xinhua",NA +101,116,695,"2019",4,1,100,2,100,100,"Xinhua",NA +101,116,696,"2019",2,1,95,3,95,0,"Xinhua",NA +101,116,697,"2019",4,1,30,2,30,50,"Xinhua",NA +101,116,701,"2019",2,1,100,2,100,72,"Xinhua",NA +101,116,703,"2019",3,1,100,2,100,73,"Xinhua",NA +101,116,704,"2019",5,1,100,3,100,100,"Xinhua",NA +101,116,707,"2019",2,0,100,2,0,100,"Xinhua",NA +101,116,709,"2019",2,1,100,3,100,100,"Xinhua",NA +101,116,714,"2019",6,0,100,2,0,50,"Xinhua",NA +101,116,717,"2019",6,1,50,2,50,50,"Xinhua",NA +101,116,718,"2019",2,1,79,3,79,44,"Xinhua",NA +101,116,724,"2019",3,1,18,2,18,85,"Xinhua",NA +101,116,726,"2019",4,1,0,2,0,100,"Xinhua",NA +101,116,729,"2019",4,1,68,2,68,68,"Xinhua",NA +101,116,731,"2019",5,1,65,2,65,65,"Xinhua",NA +101,116,732,"2019",2,0,78,2,22,46,"Xinhua",NA +101,116,734,"2019",6,0,50,2,50,50,"Xinhua",NA +101,116,735,"2019",2,0,50,2,50,50,"Xinhua",NA +101,116,736,"2019",2,1,90,3,90,90,"Xinhua",NA +101,116,738,"2019",3,1,11,3,11,22,"Xinhua",NA +101,116,739,"2019",5,0,85,2,15,50,"Xinhua",NA +101,116,745,"2019",4,0,77,2,23,23,"Xinhua",NA +101,116,755,"2019",5,1,50,3,50,50,"Xinhua",NA +101,116,757,"2019",5,0,100,3,0,40,"Xinhua",NA +101,116,760,"2019",5,1,62,3,62,62,"Xinhua",NA +101,116,762,"2019",6,1,100,2,100,100,"Xinhua",NA +101,116,767,"2019",2,0,87,2,13,100,"Xinhua",NA +101,116,770,"2019",3,1,0,2,0,0,"Xinhua",NA +101,116,771,"2019",5,0,50,3,50,100,"Xinhua",NA +101,116,776,"2019",4,1,90,2,90,90,"Xinhua",NA +101,116,781,"2019",5,0,62,2,38,38,"Xinhua",NA +101,116,785,"2019",5,1,96,3,96,96,"Xinhua",NA +101,116,787,"2019",5,1,25,2,25,50,"Xinhua",NA +101,116,792,"2019",2,0,9,2,91,100,"Xinhua",NA +101,116,793,"2019",5,0,46,3,54,33,"Xinhua",NA +101,116,794,"2019",3,1,50,2,50,50,"Xinhua",NA +101,116,796,"2019",6,1,14,3,14,7,"Xinhua",NA +101,116,797,"2019",2,0,48,2,52,100,"Xinhua",NA +101,116,800,"2019",5,1,99,2,99,99,"Xinhua",NA +101,116,804,"2019",2,0,50,3,50,50,"Xinhua",NA +101,116,805,"2019",4,0,50,2,50,50,"Xinhua",NA +101,116,808,"2019",2,0,0,3,100,100,"Xinhua",NA +101,116,809,"2019",6,0,100,2,0,0,"Xinhua",NA +101,116,813,"2019",5,0,69,3,31,50,"Xinhua",NA +101,116,817,"2019",2,0,17,3,83,71,"Xinhua",NA +101,116,820,"2019",2,1,50,2,50,50,"Xinhua",NA +101,116,824,"2019",5,0,79,3,21,47,"Xinhua",NA +101,116,825,"2019",4,0,100,2,0,0,"Xinhua",NA +101,116,827,"2019",3,1,92,3,92,92,"Xinhua",NA +101,116,831,"2019",5,0,100,3,0,100,"Xinhua",NA +101,116,832,"2019",2,0,100,3,0,0,"Xinhua",NA +101,116,833,"2019",2,1,0,2,0,0,"Xinhua",NA +101,116,834,"2019",5,1,0,2,0,100,"Xinhua",NA +101,116,837,"2019",4,0,89,2,11,11,"Xinhua",NA +101,116,839,"2019",3,0,68,3,32,32,"Xinhua",NA +101,116,841,"2019",5,1,0,3,0,0,"Xinhua",NA +101,116,842,"2019",2,0,100,3,0,57,"Xinhua",NA +101,116,843,"2019",3,0,100,3,0,9,"Xinhua",NA +101,116,844,"2019",4,0,79,2,21,70,"Xinhua",NA +101,116,846,"2019",2,0,99,3,1,98,"Xinhua",NA +101,116,847,"2019",5,1,0,2,0,100,"Xinhua",NA +101,116,852,"2019",2,1,72,2,72,18,"Xinhua",NA +101,116,853,"2019",2,1,66,3,66,51,"Xinhua",NA +101,116,859,"2019",5,0,91,3,9,70,"Xinhua",NA +101,116,860,"2019",5,0,48,2,52,62,"Xinhua",NA +101,116,863,"2019",6,1,81,2,81,81,"Xinhua",NA +101,116,869,"2019",5,1,81,3,81,81,"Xinhua",NA +101,116,870,"2019",4,0,50,2,50,50,"Xinhua",NA +101,116,871,"2019",5,1,50,3,50,93,"Xinhua",NA +101,116,873,"2019",3,1,0,3,0,87,"Xinhua",NA +101,116,875,"2019",5,0,52,2,48,49,"Xinhua",NA +101,116,880,"2019",5,1,0,3,0,24,"Xinhua",NA +101,116,881,"2019",3,1,98,3,98,98,"Xinhua",NA +101,116,882,"2019",5,0,100,2,0,50,"Xinhua",NA +101,116,884,"2019",5,0,50,2,50,50,"Xinhua",NA +101,116,885,"2019",6,0,96,2,4,50,"Xinhua",NA +101,116,891,"2019",5,0,50,3,50,50,"Xinhua",NA +101,116,892,"2019",3,1,12,3,12,50,"Xinhua",NA +101,116,894,"2019",5,1,58,2,58,91,"Xinhua",NA +101,116,895,"2019",4,0,100,2,0,49,"Xinhua",NA +101,116,897,"2019",3,0,99,3,1,7,"Xinhua",NA +101,116,898,"2019",6,1,0,2,0,0,"Xinhua",NA +101,116,901,"2019",3,0,71,2,29,29,"Xinhua",NA +101,116,903,"2019",3,0,50,2,50,50,"Xinhua",NA +101,116,905,"2019",3,1,100,3,100,100,"Xinhua",NA +101,116,906,"2019",3,1,67,3,67,79,"Xinhua",NA +101,116,911,"2019",4,0,15,2,85,50,"Xinhua",NA +101,116,914,"2019",5,0,100,3,0,100,"Xinhua",NA +101,116,915,"2019",2,0,100,3,0,99,"Xinhua",NA +101,116,916,"2019",3,0,11,3,89,98,"Xinhua",NA +101,116,919,"2019",6,0,50,3,50,40,"Xinhua",NA +101,116,920,"2019",3,0,79,3,21,12,"Xinhua",NA +101,116,921,"2019",6,1,0,3,0,33,"Xinhua",NA +101,116,922,"2019",4,1,10,2,10,50,"Xinhua",NA +101,116,923,"2019",2,1,22,3,22,65,"Xinhua",NA +101,116,927,"2019",5,1,100,2,100,80,"Xinhua",NA +101,116,929,"2019",4,1,79,2,79,73,"Xinhua",NA +101,116,930,"2019",4,0,100,2,0,0,"Xinhua",NA +101,116,931,"2019",3,0,76,2,24,21,"Xinhua",NA +101,116,933,"2019",6,0,3,3,97,97,"Xinhua",NA +101,116,935,"2019",3,1,19,3,19,58,"Xinhua",NA +101,116,936,"2019",3,1,100,3,100,80,"Xinhua",NA +101,116,944,"2019",5,1,0,3,0,75,"Xinhua",NA +101,116,947,"2019",3,0,71,3,29,39,"Xinhua",NA +101,116,956,"2019",2,1,9,2,9,9,"Xinhua",NA +101,116,957,"2019",5,1,66,3,66,49,"Xinhua",NA +101,116,960,"2019",3,1,45,3,45,45,"Xinhua",NA +101,116,963,"2019",5,1,9,3,9,41,"Xinhua",NA +101,116,966,"2019",5,1,87,2,87,81,"Xinhua",NA +101,116,967,"2019",5,0,0,3,100,100,"Xinhua",NA +101,116,970,"2019",4,0,92,2,8,17,"Xinhua",NA +101,116,972,"2019",6,1,91,3,91,84,"Xinhua",NA +101,116,977,"2019",6,1,64,2,64,71,"Xinhua",NA +101,116,979,"2019",3,0,86,3,14,20,"Xinhua",NA +101,116,980,"2019",2,0,24,3,76,76,"Xinhua",NA +101,116,981,"2019",6,1,14,2,14,14,"Xinhua",NA +101,116,982,"2019",6,0,98,2,2,87,"Xinhua",NA +101,116,984,"2019",2,1,50,2,50,50,"Xinhua",NA +101,116,985,"2019",6,1,100,2,100,83,"Xinhua",NA +101,116,988,"2019",6,0,82,3,18,71,"Xinhua",NA +101,116,989,"2019",5,0,51,3,49,51,"Xinhua",NA +101,116,992,"2019",6,0,76,2,24,58,"Xinhua",NA +101,116,993,"2019",3,1,50,3,50,40,"Xinhua",NA +101,116,994,"2019",6,0,100,3,0,0,"Xinhua",NA +101,116,997,"2019",4,1,73,2,73,50,"Xinhua",NA +101,116,998,"2019",5,0,79,3,21,48,"Xinhua",NA +101,116,999,"2019",3,0,92,3,8,8,"Xinhua",NA +101,116,1000,"2019",2,1,0,2,0,49,"Xinhua",NA +101,116,1002,"2019",3,1,62,3,62,72,"Xinhua",NA +101,116,1003,"2019",4,1,31,2,31,24,"Xinhua",NA +101,116,1004,"2019",3,0,18,3,82,90,"Xinhua",NA +101,116,1005,"2019",5,1,86,2,86,74,"Xinhua",NA +101,116,1006,"2019",5,0,77,3,23,51,"Xinhua",NA +101,116,1007,"2019",6,1,100,3,100,100,"Xinhua",NA +101,116,1012,"2019",4,1,28,2,28,51,"Xinhua",NA +101,116,1014,"2019",2,0,81,2,19,19,"Xinhua",NA +101,116,1015,"2019",6,0,50,3,50,91,"Xinhua",NA +101,116,1017,"2019",6,0,26,2,74,71,"Xinhua",NA +101,116,1018,"2019",3,0,71,2,29,9,"Xinhua",NA +101,116,1019,"2019",4,0,63,2,37,37,"Xinhua",NA +101,116,1021,"2019",2,1,28,3,28,75,"Xinhua",NA +101,116,1025,"2019",3,0,61,2,39,54,"Xinhua",NA +101,116,1027,"2019",3,0,0,3,100,100,"Xinhua",NA +101,116,1028,"2019",4,1,50,2,50,50,"Xinhua",NA +101,116,1030,"2019",6,1,2,3,2,19,"Xinhua",NA +101,116,1034,"2019",4,0,0,2,100,100,"Xinhua",NA +101,116,1036,"2019",4,1,0,2,0,100,"Xinhua",NA +101,116,1038,"2019",5,0,100,3,0,10,"Xinhua",NA +101,116,1039,"2019",4,1,40,2,40,71,"Xinhua",NA +101,116,1040,"2019",6,0,75,3,25,25,"Xinhua",NA +101,116,1041,"2019",5,0,91,3,9,9,"Xinhua",NA +101,116,1043,"2019",2,1,83,3,83,99,"Xinhua",NA +101,116,1051,"2019",3,1,42,3,42,49,"Xinhua",NA +101,116,1052,"2019",4,1,43,2,43,42,"Xinhua",NA +101,116,1054,"2019",4,1,52,2,52,45,"Xinhua",NA +101,116,1055,"2019",3,1,0,3,0,11,"Xinhua",NA +101,116,1056,"2019",2,1,50,3,50,100,"Xinhua",NA +101,116,1061,"2019",5,1,0,3,0,0,"Xinhua",NA +101,116,1062,"2019",4,1,96,2,96,95,"Xinhua",NA +101,116,1064,"2019",5,0,62,3,38,52,"Xinhua",NA +101,116,1071,"2019",4,0,97,2,3,50,"Xinhua",NA +101,116,1073,"2019",2,1,85,2,85,82,"Xinhua",NA +101,116,1075,"2019",2,1,0,2,0,100,"Xinhua",NA +101,116,1077,"2019",4,0,51,2,49,50,"Xinhua",NA +101,116,1078,"2019",4,1,57,2,57,35,"Xinhua",NA +101,116,1080,"2019",6,1,20,2,20,20,"Xinhua",NA +101,116,1084,"2019",4,1,27,2,27,63,"Xinhua",NA +101,116,1087,"2019",2,1,40,3,40,90,"Xinhua",NA +101,116,1088,"2019",6,1,50,3,50,50,"Xinhua",NA +101,116,1089,"2019",3,0,30,2,70,62,"Xinhua",NA +101,116,1091,"2019",4,1,70,2,70,50,"Xinhua",NA +101,116,1093,"2019",4,0,41,2,59,61,"Xinhua",NA +101,116,1094,"2019",6,0,82,2,18,57,"Xinhua",NA +101,116,1097,"2019",4,0,88,2,12,21,"Xinhua",NA +101,116,1099,"2019",4,1,98,2,98,89,"Xinhua",NA +101,116,1100,"2019",6,0,5,3,95,90,"Xinhua",NA +101,116,1102,"2019",3,0,50,3,50,0,"Xinhua",NA +101,116,1105,"2019",5,0,98,3,2,12,"Xinhua",NA +101,116,1106,"2019",3,0,87,2,13,13,"Xinhua",NA +101,116,1107,"2019",4,0,74,2,26,19,"Xinhua",NA +101,116,1110,"2019",4,0,82,2,18,12,"Xinhua",NA +101,116,1111,"2019",6,0,0,3,100,100,"Xinhua",NA +101,116,1112,"2019",3,1,41,3,41,67,"Xinhua",NA +101,116,1114,"2019",5,0,100,2,0,50,"Xinhua",NA +101,116,1116,"2019",4,1,80,2,80,80,"Xinhua",NA +101,116,1117,"2019",4,1,100,2,100,50,"Xinhua",NA +101,116,1118,"2019",6,1,85,2,85,85,"Xinhua",NA +101,116,1119,"2019",6,1,35,2,35,50,"Xinhua",NA +101,116,1121,"2019",5,0,96,3,4,5,"Xinhua",NA +101,116,1122,"2019",3,1,27,2,27,40,"Xinhua",NA +101,116,1132,"2019",6,0,1,2,99,95,"Xinhua",NA +101,116,1134,"2019",2,0,52,2,48,62,"Xinhua",NA +101,116,1138,"2019",3,0,100,3,0,0,"Xinhua",NA +101,116,1141,"2019",4,1,100,2,100,100,"Xinhua",NA +101,116,1142,"2019",6,1,7,2,7,7,"Xinhua",NA +101,116,1143,"2019",5,1,93,3,93,93,"Xinhua",NA +101,116,1145,"2019",3,1,92,3,92,87,"Xinhua",NA +101,116,1149,"2019",4,1,79,2,79,79,"Xinhua",NA +101,116,1150,"2019",5,0,87,2,13,13,"Xinhua",NA +101,116,1151,"2019",2,0,99,3,1,40,"Xinhua",NA +101,116,1152,"2019",2,0,62,2,38,38,"Xinhua",NA +101,116,1153,"2019",6,0,64,3,36,35,"Xinhua",NA +101,116,1155,"2019",2,1,82,3,82,82,"Xinhua",NA +101,116,1161,"2019",4,0,82,2,18,14,"Xinhua",NA +101,116,1162,"2019",5,1,73,3,73,78,"Xinhua",NA +101,116,1165,"2019",5,1,81,2,81,87,"Xinhua",NA +101,127,144,"2019",3,0,13,2,87,87,"Nanfang Dushibao",NA +101,127,146,"2019",6,0,27,2,73,60,"Nanfang Dushibao",NA +101,127,147,"2019",6,1,19,2,19,29,"Nanfang Dushibao",NA +101,127,149,"2019",6,1,23,2,23,65,"Nanfang Dushibao",NA +101,127,150,"2019",5,0,20,3,80,30,"Nanfang Dushibao",NA +101,127,155,"2019",6,0,52,2,48,40,"Nanfang Dushibao",NA +101,127,156,"2019",6,1,29,3,29,27,"Nanfang Dushibao",NA +101,127,158,"2019",5,0,0,3,100,91,"Nanfang Dushibao",NA +101,127,160,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +101,127,161,"2019",6,0,82,3,18,18,"Nanfang Dushibao",NA +101,127,162,"2019",3,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,168,"2019",5,0,8,2,92,92,"Nanfang Dushibao",NA +101,127,170,"2019",5,1,4,2,4,4,"Nanfang Dushibao",NA +101,127,177,"2019",6,0,98,3,2,2,"Nanfang Dushibao",NA +101,127,180,"2019",6,0,56,3,44,52,"Nanfang Dushibao",NA +101,127,182,"2019",2,0,62,2,38,22,"Nanfang Dushibao",NA +101,127,184,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,193,"2019",5,0,51,3,49,45,"Nanfang Dushibao",NA +101,127,195,"2019",6,0,0,3,100,0,"Nanfang Dushibao",NA +101,127,198,"2019",5,1,70,3,70,92,"Nanfang Dushibao",NA +101,127,200,"2019",5,1,74,2,74,71,"Nanfang Dushibao",NA +101,127,203,"2019",5,0,50,3,50,29,"Nanfang Dushibao",NA +101,127,206,"2019",5,0,68,3,32,32,"Nanfang Dushibao",NA +101,127,210,"2019",5,0,91,3,9,9,"Nanfang Dushibao",NA +101,127,211,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +101,127,213,"2019",5,1,17,3,17,86,"Nanfang Dushibao",NA +101,127,214,"2019",3,0,29,3,71,51,"Nanfang Dushibao",NA +101,127,216,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,220,"2019",2,0,14,2,86,59,"Nanfang Dushibao",NA +101,127,225,"2019",6,0,7,2,93,90,"Nanfang Dushibao",NA +101,127,229,"2019",5,0,52,3,48,8,"Nanfang Dushibao",NA +101,127,230,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +101,127,235,"2019",3,1,0,3,0,2,"Nanfang Dushibao",NA +101,127,236,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,237,"2019",2,0,0,3,100,99,"Nanfang Dushibao",NA +101,127,240,"2019",6,1,83,3,83,83,"Nanfang Dushibao",NA +101,127,246,"2019",3,0,94,2,6,14,"Nanfang Dushibao",NA +101,127,248,"2019",2,1,50,3,50,50,"Nanfang Dushibao",NA +101,127,249,"2019",5,0,60,3,40,30,"Nanfang Dushibao",NA +101,127,263,"2019",5,0,38,3,62,65,"Nanfang Dushibao",NA +101,127,271,"2019",2,0,82,3,18,0,"Nanfang Dushibao",NA +101,127,276,"2019",5,0,90,3,10,10,"Nanfang Dushibao",NA +101,127,279,"2019",6,0,0,2,100,0,"Nanfang Dushibao",NA +101,127,280,"2019",3,1,34,3,34,34,"Nanfang Dushibao",NA +101,127,283,"2019",5,0,85,2,15,25,"Nanfang Dushibao",NA +101,127,287,"2019",3,1,6,3,6,6,"Nanfang Dushibao",NA +101,127,289,"2019",3,0,4,2,96,70,"Nanfang Dushibao",NA +101,127,292,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,293,"2019",6,0,10,2,90,50,"Nanfang Dushibao",NA +101,127,294,"2019",6,0,82,3,18,18,"Nanfang Dushibao",NA +101,127,295,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,297,"2019",2,1,9,3,9,36,"Nanfang Dushibao",NA +101,127,302,"2019",5,0,1,2,99,79,"Nanfang Dushibao",NA +101,127,304,"2019",4,0,51,4,49,NA,"Nanfang Dushibao",NA +101,127,305,"2019",3,0,91,2,9,9,"Nanfang Dushibao",NA +101,127,309,"2019",2,1,28,2,28,68,"Nanfang Dushibao",NA +101,127,313,"2019",6,0,100,2,0,0,"Nanfang Dushibao",NA +101,127,314,"2019",2,0,50,2,50,30,"Nanfang Dushibao",NA +101,127,318,"2019",3,1,72,2,72,50,"Nanfang Dushibao",NA +101,127,319,"2019",2,0,8,2,92,92,"Nanfang Dushibao",NA +101,127,322,"2019",2,0,64,3,36,100,"Nanfang Dushibao",NA +101,127,326,"2019",2,0,0,3,100,95,"Nanfang Dushibao",NA +101,127,327,"2019",2,1,0,3,0,41,"Nanfang Dushibao",NA +101,127,330,"2019",5,0,57,2,43,21,"Nanfang Dushibao",NA +101,127,331,"2019",3,1,91,2,91,91,"Nanfang Dushibao",NA +101,127,333,"2019",6,0,0,2,100,0,"Nanfang Dushibao",NA +101,127,337,"2019",5,1,82,3,82,100,"Nanfang Dushibao",NA +101,127,338,"2019",2,0,92,3,8,8,"Nanfang Dushibao",NA +101,127,340,"2019",3,0,85,2,15,15,"Nanfang Dushibao",NA +101,127,341,"2019",3,1,70,2,70,70,"Nanfang Dushibao",NA +101,127,342,"2019",6,0,72,2,28,28,"Nanfang Dushibao",NA +101,127,350,"2019",3,1,78,3,78,78,"Nanfang Dushibao",NA +101,127,354,"2019",6,0,50,2,50,0,"Nanfang Dushibao",NA +101,127,355,"2019",2,0,67,3,33,33,"Nanfang Dushibao",NA +101,127,358,"2019",3,0,82,2,18,18,"Nanfang Dushibao",NA +101,127,364,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +101,127,366,"2019",3,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,367,"2019",2,1,71,2,71,71,"Nanfang Dushibao",NA +101,127,368,"2019",6,1,72,2,72,72,"Nanfang Dushibao",NA +101,127,371,"2019",5,1,21,3,21,21,"Nanfang Dushibao",NA +101,127,374,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,375,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +101,127,382,"2019",5,1,0,2,0,92,"Nanfang Dushibao",NA +101,127,385,"2019",6,1,0,3,0,100,"Nanfang Dushibao",NA +101,127,387,"2019",2,0,86,2,14,14,"Nanfang Dushibao",NA +101,127,388,"2019",6,1,2,2,2,2,"Nanfang Dushibao",NA +101,127,397,"2019",3,1,86,2,86,10,"Nanfang Dushibao",NA +101,127,398,"2019",2,0,99,3,1,1,"Nanfang Dushibao",NA +101,127,400,"2019",6,1,38,2,38,50,"Nanfang Dushibao",NA +101,127,401,"2019",2,0,32,3,68,60,"Nanfang Dushibao",NA +101,127,405,"2019",3,0,24,2,76,65,"Nanfang Dushibao",NA +101,127,406,"2019",2,1,63,2,63,68,"Nanfang Dushibao",NA +101,127,410,"2019",3,1,0,2,0,50,"Nanfang Dushibao",NA +101,127,415,"2019",2,0,50,3,50,50,"Nanfang Dushibao",NA +101,127,416,"2019",6,1,31,2,31,71,"Nanfang Dushibao",NA +101,127,425,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +101,127,427,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +101,127,429,"2019",3,0,51,2,49,55,"Nanfang Dushibao",NA +101,127,432,"2019",6,0,100,2,0,30,"Nanfang Dushibao",NA +101,127,435,"2019",6,0,17,3,83,50,"Nanfang Dushibao",NA +101,127,437,"2019",2,1,92,3,92,0,"Nanfang Dushibao",NA +101,127,438,"2019",3,0,0,2,100,59,"Nanfang Dushibao",NA +101,127,439,"2019",3,1,87,3,87,87,"Nanfang Dushibao",NA +101,127,444,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,451,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,452,"2019",5,0,27,3,73,7,"Nanfang Dushibao",NA +101,127,454,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,458,"2019",2,0,39,3,61,4,"Nanfang Dushibao",NA +101,127,462,"2019",3,1,21,2,21,21,"Nanfang Dushibao",NA +101,127,466,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,467,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +101,127,468,"2019",6,0,65,2,35,35,"Nanfang Dushibao",NA +101,127,470,"2019",2,1,22,2,22,24,"Nanfang Dushibao",NA +101,127,471,"2019",6,1,94,3,94,94,"Nanfang Dushibao",NA +101,127,472,"2019",3,0,81,2,19,19,"Nanfang Dushibao",NA +101,127,475,"2019",2,0,59,3,41,53,"Nanfang Dushibao",NA +101,127,476,"2019",6,1,51,2,51,39,"Nanfang Dushibao",NA +101,127,477,"2019",6,0,75,2,25,25,"Nanfang Dushibao",NA +101,127,482,"2019",2,0,32,3,68,23,"Nanfang Dushibao",NA +101,127,488,"2019",5,0,73,2,27,36,"Nanfang Dushibao",NA +101,127,489,"2019",5,0,65,2,35,35,"Nanfang Dushibao",NA +101,127,490,"2019",6,0,64,3,36,30,"Nanfang Dushibao",NA +101,127,491,"2019",3,0,81,3,19,19,"Nanfang Dushibao",NA +101,127,492,"2019",6,1,40,2,40,70,"Nanfang Dushibao",NA +101,127,498,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +101,127,501,"2019",6,1,62,3,62,62,"Nanfang Dushibao",NA +101,127,504,"2019",5,1,100,3,100,50,"Nanfang Dushibao",NA +101,127,505,"2019",5,0,20,2,80,50,"Nanfang Dushibao",NA +101,127,506,"2019",6,1,24,3,24,0,"Nanfang Dushibao",NA +101,127,507,"2019",6,1,57,3,57,57,"Nanfang Dushibao",NA +101,127,510,"2019",2,0,89,3,11,11,"Nanfang Dushibao",NA +101,127,511,"2019",3,0,66,2,34,72,"Nanfang Dushibao",NA +101,127,513,"2019",6,0,52,3,48,30,"Nanfang Dushibao",NA +101,127,515,"2019",6,1,33,2,33,33,"Nanfang Dushibao",NA +101,127,516,"2019",5,1,70,3,70,63,"Nanfang Dushibao",NA +101,127,519,"2019",4,1,56,4,56,NA,"Nanfang Dushibao",NA +101,127,520,"2019",6,1,44,2,44,44,"Nanfang Dushibao",NA +101,127,521,"2019",4,1,58,4,58,NA,"Nanfang Dushibao",NA +101,127,525,"2019",3,1,80,3,80,87,"Nanfang Dushibao",NA +101,127,530,"2019",5,0,91,3,9,8,"Nanfang Dushibao",NA +101,127,531,"2019",6,0,51,2,49,63,"Nanfang Dushibao",NA +101,127,532,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +101,127,533,"2019",3,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,535,"2019",3,1,31,3,31,91,"Nanfang Dushibao",NA +101,127,539,"2019",5,1,100,3,100,92,"Nanfang Dushibao",NA +101,127,543,"2019",3,1,55,3,55,60,"Nanfang Dushibao",NA +101,127,545,"2019",2,0,69,3,31,31,"Nanfang Dushibao",NA +101,127,546,"2019",2,0,73,3,27,27,"Nanfang Dushibao",NA +101,127,547,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +101,127,548,"2019",3,1,55,3,55,61,"Nanfang Dushibao",NA +101,127,551,"2019",3,0,6,2,94,24,"Nanfang Dushibao",NA +101,127,553,"2019",3,0,2,3,98,98,"Nanfang Dushibao",NA +101,127,556,"2019",3,1,51,3,51,100,"Nanfang Dushibao",NA +101,127,557,"2019",5,0,50,3,50,10,"Nanfang Dushibao",NA +101,127,560,"2019",4,0,34,4,66,NA,"Nanfang Dushibao",NA +101,127,561,"2019",6,1,49,3,49,36,"Nanfang Dushibao",NA +101,127,562,"2019",2,0,23,2,77,83,"Nanfang Dushibao",NA +101,127,563,"2019",5,0,25,3,75,3,"Nanfang Dushibao",NA +101,127,564,"2019",5,1,71,2,71,80,"Nanfang Dushibao",NA +101,127,568,"2019",2,0,37,2,63,57,"Nanfang Dushibao",NA +101,127,570,"2019",5,1,50,2,50,50,"Nanfang Dushibao",NA +101,127,572,"2019",2,1,50,3,50,50,"Nanfang Dushibao",NA +101,127,575,"2019",3,1,100,2,100,0,"Nanfang Dushibao",NA +101,127,576,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,580,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +101,127,581,"2019",4,1,70,4,70,NA,"Nanfang Dushibao",NA +101,127,582,"2019",5,1,60,3,60,59,"Nanfang Dushibao",NA +101,127,585,"2019",6,0,67,3,33,33,"Nanfang Dushibao",NA +101,127,587,"2019",3,0,67,3,33,33,"Nanfang Dushibao",NA +101,127,588,"2019",3,0,78,3,22,28,"Nanfang Dushibao",NA +101,127,589,"2019",4,1,78,4,78,NA,"Nanfang Dushibao",NA +101,127,590,"2019",6,1,56,3,56,56,"Nanfang Dushibao",NA +101,127,593,"2019",6,1,43,3,43,71,"Nanfang Dushibao",NA +101,127,594,"2019",2,0,65,2,35,78,"Nanfang Dushibao",NA +101,127,597,"2019",3,0,69,3,31,54,"Nanfang Dushibao",NA +101,127,598,"2019",2,1,53,2,53,53,"Nanfang Dushibao",NA +101,127,601,"2019",6,0,74,2,26,36,"Nanfang Dushibao",NA +101,127,608,"2019",3,0,75,2,25,82,"Nanfang Dushibao",NA +101,127,610,"2019",4,1,51,4,51,NA,"Nanfang Dushibao",NA +101,127,614,"2019",2,0,84,3,16,8,"Nanfang Dushibao",NA +101,127,616,"2019",2,0,40,2,60,50,"Nanfang Dushibao",NA +101,127,618,"2019",6,0,4,3,96,96,"Nanfang Dushibao",NA +101,127,620,"2019",2,1,0,2,0,0,"Nanfang Dushibao",NA +101,127,621,"2019",2,1,6,3,6,6,"Nanfang Dushibao",NA +101,127,623,"2019",6,1,83,2,83,100,"Nanfang Dushibao",NA +101,127,627,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +101,127,628,"2019",6,1,50,3,50,50,"Nanfang Dushibao",NA +101,127,631,"2019",2,1,76,2,76,76,"Nanfang Dushibao",NA +101,127,633,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,636,"2019",2,1,25,2,25,50,"Nanfang Dushibao",NA +101,127,637,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +101,127,642,"2019",2,1,27,3,27,27,"Nanfang Dushibao",NA +101,127,643,"2019",4,1,25,4,25,NA,"Nanfang Dushibao",NA +101,127,645,"2019",5,1,90,2,90,90,"Nanfang Dushibao",NA +101,127,647,"2019",2,1,24,2,24,33,"Nanfang Dushibao",NA +101,127,649,"2019",6,1,37,3,37,100,"Nanfang Dushibao",NA +101,127,653,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +101,127,655,"2019",2,1,43,3,43,70,"Nanfang Dushibao",NA +101,127,656,"2019",5,0,52,2,48,49,"Nanfang Dushibao",NA +101,127,657,"2019",6,0,91,3,9,9,"Nanfang Dushibao",NA +101,127,661,"2019",6,1,81,3,81,81,"Nanfang Dushibao",NA +101,127,663,"2019",2,0,100,2,0,0,"Nanfang Dushibao",NA +101,127,664,"2019",2,1,19,3,19,33,"Nanfang Dushibao",NA +101,127,666,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +101,127,667,"2019",2,0,100,2,0,0,"Nanfang Dushibao",NA +101,127,668,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,670,"2019",5,0,90,3,10,10,"Nanfang Dushibao",NA +101,127,671,"2019",6,0,0,2,100,0,"Nanfang Dushibao",NA +101,127,672,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +101,127,673,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +101,127,674,"2019",2,0,2,3,98,98,"Nanfang Dushibao",NA +101,127,675,"2019",5,1,50,3,50,50,"Nanfang Dushibao",NA +101,127,676,"2019",5,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,686,"2019",5,1,78,3,78,100,"Nanfang Dushibao",NA +101,127,687,"2019",2,0,3,3,97,50,"Nanfang Dushibao",NA +101,127,690,"2019",5,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,692,"2019",2,0,76,2,24,24,"Nanfang Dushibao",NA +101,127,693,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +101,127,703,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,708,"2019",4,0,39,4,61,NA,"Nanfang Dushibao",NA +101,127,712,"2019",6,1,50,3,50,50,"Nanfang Dushibao",NA +101,127,716,"2019",3,1,55,2,55,50,"Nanfang Dushibao",NA +101,127,721,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +101,127,735,"2019",2,0,91,3,9,50,"Nanfang Dushibao",NA +101,127,739,"2019",5,0,85,3,15,15,"Nanfang Dushibao",NA +101,127,740,"2019",3,0,54,3,46,31,"Nanfang Dushibao",NA +101,127,743,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,747,"2019",3,1,39,3,39,39,"Nanfang Dushibao",NA +101,127,749,"2019",5,0,50,3,50,50,"Nanfang Dushibao",NA +101,127,750,"2019",5,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,756,"2019",2,0,60,3,40,40,"Nanfang Dushibao",NA +101,127,758,"2019",4,1,91,4,91,NA,"Nanfang Dushibao",NA +101,127,759,"2019",2,0,38,2,62,39,"Nanfang Dushibao",NA +101,127,761,"2019",3,0,16,3,84,93,"Nanfang Dushibao",NA +101,127,762,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,763,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,764,"2019",2,1,83,3,83,50,"Nanfang Dushibao",NA +101,127,768,"2019",5,0,49,2,51,51,"Nanfang Dushibao",NA +101,127,769,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,770,"2019",3,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,771,"2019",5,0,0,2,100,74,"Nanfang Dushibao",NA +101,127,773,"2019",5,1,19,2,19,19,"Nanfang Dushibao",NA +101,127,774,"2019",4,1,0,4,0,NA,"Nanfang Dushibao",NA +101,127,775,"2019",3,0,50,3,50,0,"Nanfang Dushibao",NA +101,127,777,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,778,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,780,"2019",3,0,6,2,94,98,"Nanfang Dushibao",NA +101,127,782,"2019",2,0,3,2,97,97,"Nanfang Dushibao",NA +101,127,783,"2019",6,1,43,3,43,43,"Nanfang Dushibao",NA +101,127,784,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +101,127,786,"2019",4,0,67,4,33,NA,"Nanfang Dushibao",NA +101,127,789,"2019",3,0,11,2,89,62,"Nanfang Dushibao",NA +101,127,792,"2019",2,0,10,3,90,91,"Nanfang Dushibao",NA +101,127,793,"2019",5,0,67,2,33,82,"Nanfang Dushibao",NA +101,127,795,"2019",6,0,92,2,8,8,"Nanfang Dushibao",NA +101,127,799,"2019",3,0,94,2,6,6,"Nanfang Dushibao",NA +101,127,800,"2019",5,1,100,3,100,99,"Nanfang Dushibao",NA +101,127,801,"2019",6,0,1,2,99,99,"Nanfang Dushibao",NA +101,127,807,"2019",5,0,80,3,20,20,"Nanfang Dushibao",NA +101,127,808,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,809,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +101,127,811,"2019",5,1,97,2,97,95,"Nanfang Dushibao",NA +101,127,813,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,816,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +101,127,817,"2019",2,0,29,2,71,71,"Nanfang Dushibao",NA +101,127,820,"2019",2,1,53,3,53,50,"Nanfang Dushibao",NA +101,127,824,"2019",5,0,53,2,47,47,"Nanfang Dushibao",NA +101,127,827,"2019",3,1,92,2,92,50,"Nanfang Dushibao",NA +101,127,829,"2019",2,1,69,2,69,69,"Nanfang Dushibao",NA +101,127,831,"2019",5,0,0,2,100,50,"Nanfang Dushibao",NA +101,127,834,"2019",5,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,836,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,838,"2019",2,0,2,2,98,98,"Nanfang Dushibao",NA +101,127,839,"2019",3,0,68,2,32,32,"Nanfang Dushibao",NA +101,127,847,"2019",5,1,0,3,0,0,"Nanfang Dushibao",NA +101,127,854,"2019",5,1,80,2,80,28,"Nanfang Dushibao",NA +101,127,855,"2019",2,0,20,3,80,50,"Nanfang Dushibao",NA +101,127,857,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,858,"2019",3,0,30,3,70,70,"Nanfang Dushibao",NA +101,127,859,"2019",5,0,30,2,70,14,"Nanfang Dushibao",NA +101,127,866,"2019",2,0,2,2,98,18,"Nanfang Dushibao",NA +101,127,867,"2019",3,1,79,3,79,62,"Nanfang Dushibao",NA +101,127,868,"2019",3,1,2,2,2,2,"Nanfang Dushibao",NA +101,127,869,"2019",5,1,81,2,81,81,"Nanfang Dushibao",NA +101,127,872,"2019",6,0,82,3,18,18,"Nanfang Dushibao",NA +101,127,873,"2019",3,1,87,2,87,87,"Nanfang Dushibao",NA +101,127,874,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +101,127,875,"2019",5,0,53,3,47,48,"Nanfang Dushibao",NA +101,127,886,"2019",5,1,50,2,50,50,"Nanfang Dushibao",NA +101,127,888,"2019",6,1,17,2,17,16,"Nanfang Dushibao",NA +101,127,890,"2019",3,0,16,2,84,84,"Nanfang Dushibao",NA +101,127,893,"2019",6,1,0,2,0,50,"Nanfang Dushibao",NA +101,127,894,"2019",5,1,54,3,54,58,"Nanfang Dushibao",NA +101,127,897,"2019",3,0,93,2,7,12,"Nanfang Dushibao",NA +101,127,906,"2019",3,1,79,2,79,72,"Nanfang Dushibao",NA +101,127,908,"2019",5,1,27,2,27,72,"Nanfang Dushibao",NA +101,127,910,"2019",6,1,81,2,81,73,"Nanfang Dushibao",NA +101,127,913,"2019",6,1,75,3,75,65,"Nanfang Dushibao",NA +101,127,917,"2019",2,1,65,3,65,65,"Nanfang Dushibao",NA +101,127,919,"2019",6,0,60,2,40,60,"Nanfang Dushibao",NA +101,127,924,"2019",5,1,51,2,51,99,"Nanfang Dushibao",NA +101,127,927,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,932,"2019",3,0,72,3,28,28,"Nanfang Dushibao",NA +101,127,934,"2019",6,1,20,2,20,20,"Nanfang Dushibao",NA +101,127,937,"2019",6,1,15,2,15,50,"Nanfang Dushibao",NA +101,127,938,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +101,127,940,"2019",5,1,46,3,46,50,"Nanfang Dushibao",NA +101,127,942,"2019",2,1,38,2,38,50,"Nanfang Dushibao",NA +101,127,944,"2019",5,1,75,2,75,75,"Nanfang Dushibao",NA +101,127,945,"2019",2,0,59,3,41,50,"Nanfang Dushibao",NA +101,127,947,"2019",3,0,61,2,39,39,"Nanfang Dushibao",NA +101,127,950,"2019",3,1,92,3,92,77,"Nanfang Dushibao",NA +101,127,952,"2019",4,1,0,4,0,NA,"Nanfang Dushibao",NA +101,127,954,"2019",4,0,0,4,100,NA,"Nanfang Dushibao",NA +101,127,958,"2019",3,1,80,3,80,55,"Nanfang Dushibao",NA +101,127,960,"2019",3,1,45,2,45,45,"Nanfang Dushibao",NA +101,127,961,"2019",6,1,50,3,50,50,"Nanfang Dushibao",NA +101,127,963,"2019",5,1,41,2,41,40,"Nanfang Dushibao",NA +101,127,964,"2019",3,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,967,"2019",5,0,0,2,100,100,"Nanfang Dushibao",NA +101,127,971,"2019",2,1,50,2,50,100,"Nanfang Dushibao",NA +101,127,977,"2019",6,1,64,3,64,64,"Nanfang Dushibao",NA +101,127,978,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +101,127,980,"2019",2,0,24,2,76,76,"Nanfang Dushibao",NA +101,127,984,"2019",2,1,79,3,79,50,"Nanfang Dushibao",NA +101,127,985,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +101,127,986,"2019",3,0,24,3,76,32,"Nanfang Dushibao",NA +101,127,987,"2019",3,1,32,2,32,32,"Nanfang Dushibao",NA +101,127,989,"2019",5,0,49,2,51,49,"Nanfang Dushibao",NA +101,127,991,"2019",4,1,37,4,37,NA,"Nanfang Dushibao",NA +101,127,992,"2019",6,0,78,3,22,24,"Nanfang Dushibao",NA +101,127,996,"2019",2,1,20,2,20,69,"Nanfang Dushibao",NA +101,127,1005,"2019",5,1,47,3,47,86,"Nanfang Dushibao",NA +101,127,1009,"2019",3,1,11,3,11,37,"Nanfang Dushibao",NA +101,127,1010,"2019",5,0,62,2,38,19,"Nanfang Dushibao",NA +101,127,1014,"2019",2,0,50,3,50,19,"Nanfang Dushibao",NA +101,127,1025,"2019",3,0,48,3,52,39,"Nanfang Dushibao",NA +101,127,1026,"2019",3,1,65,3,65,59,"Nanfang Dushibao",NA +101,127,1030,"2019",6,1,19,2,19,51,"Nanfang Dushibao",NA +101,127,1032,"2019",3,0,20,3,80,83,"Nanfang Dushibao",NA +101,127,1037,"2019",5,1,93,3,93,92,"Nanfang Dushibao",NA +101,127,1050,"2019",2,0,53,3,47,47,"Nanfang Dushibao",NA +101,127,1056,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +101,127,1058,"2019",2,0,100,2,0,100,"Nanfang Dushibao",NA +101,127,1060,"2019",5,0,1,3,99,100,"Nanfang Dushibao",NA +101,127,1061,"2019",5,1,0,2,0,0,"Nanfang Dushibao",NA +101,127,1063,"2019",5,0,52,2,48,49,"Nanfang Dushibao",NA +101,127,1064,"2019",5,0,48,2,52,48,"Nanfang Dushibao",NA +101,127,1066,"2019",5,1,87,2,87,50,"Nanfang Dushibao",NA +101,127,1068,"2019",5,1,85,2,85,11,"Nanfang Dushibao",NA +101,127,1072,"2019",6,1,50,2,50,50,"Nanfang Dushibao",NA +101,127,1074,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +101,127,1080,"2019",6,1,20,3,20,20,"Nanfang Dushibao",NA +101,127,1082,"2019",2,1,53,2,53,91,"Nanfang Dushibao",NA +101,127,1083,"2019",5,1,49,3,49,49,"Nanfang Dushibao",NA +101,127,1090,"2019",2,0,30,2,70,70,"Nanfang Dushibao",NA +101,127,1094,"2019",6,0,82,3,18,18,"Nanfang Dushibao",NA +101,127,1098,"2019",5,0,65,3,35,27,"Nanfang Dushibao",NA +101,127,1100,"2019",6,0,10,2,90,86,"Nanfang Dushibao",NA +101,127,1101,"2019",6,0,76,3,24,30,"Nanfang Dushibao",NA +101,127,1103,"2019",4,1,91,4,91,NA,"Nanfang Dushibao",NA +101,127,1104,"2019",6,0,4,2,96,88,"Nanfang Dushibao",NA +101,127,1113,"2019",3,1,84,2,84,84,"Nanfang Dushibao",NA +101,127,1115,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +101,127,1118,"2019",6,1,85,3,85,85,"Nanfang Dushibao",NA +101,127,1119,"2019",6,1,35,3,35,35,"Nanfang Dushibao",NA +101,127,1122,"2019",3,1,22,3,22,27,"Nanfang Dushibao",NA +101,127,1124,"2019",3,1,86,2,86,80,"Nanfang Dushibao",NA +101,127,1127,"2019",2,1,9,2,9,100,"Nanfang Dushibao",NA +101,127,1132,"2019",6,0,0,3,100,99,"Nanfang Dushibao",NA +101,127,1134,"2019",2,0,62,3,38,48,"Nanfang Dushibao",NA +101,127,1135,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +101,127,1136,"2019",2,0,83,3,17,17,"Nanfang Dushibao",NA +101,127,1143,"2019",5,1,93,2,93,93,"Nanfang Dushibao",NA +101,127,1144,"2019",3,1,95,3,95,95,"Nanfang Dushibao",NA +101,127,1145,"2019",3,1,87,2,87,76,"Nanfang Dushibao",NA +101,127,1146,"2019",3,0,5,2,95,89,"Nanfang Dushibao",NA +101,127,1148,"2019",2,1,91,2,91,91,"Nanfang Dushibao",NA +101,127,1155,"2019",2,1,82,2,82,82,"Nanfang Dushibao",NA +101,127,1156,"2019",3,1,58,3,58,31,"Nanfang Dushibao",NA +101,127,1159,"2019",5,0,75,2,25,38,"Nanfang Dushibao",NA +101,144,145,"2019",5,1,0,3,0,0,"Huanqiu",NA +101,144,147,"2019",6,1,9,3,9,19,"Huanqiu",NA +101,144,154,"2019",6,0,90,3,10,10,"Huanqiu",NA +101,144,155,"2019",6,0,53,3,47,48,"Huanqiu",NA +101,144,159,"2019",2,0,58,3,42,42,"Huanqiu",NA +101,144,162,"2019",3,1,0,2,0,22,"Huanqiu",NA +101,144,164,"2019",3,1,1,3,1,69,"Huanqiu",NA +101,144,165,"2019",5,0,1,2,99,99,"Huanqiu",NA +101,144,167,"2019",4,1,8,5,8,NA,"Huanqiu",NA +101,144,168,"2019",5,0,71,3,29,92,"Huanqiu",NA +101,144,169,"2019",2,1,42,2,42,71,"Huanqiu",NA +101,144,170,"2019",5,1,4,3,4,4,"Huanqiu",NA +101,144,171,"2019",3,1,13,3,13,29,"Huanqiu",NA +101,144,173,"2019",5,0,15,3,85,79,"Huanqiu",NA +101,144,174,"2019",4,0,92,5,8,NA,"Huanqiu",NA +101,144,180,"2019",6,0,48,2,52,61,"Huanqiu",NA +101,144,182,"2019",2,0,37,3,63,38,"Huanqiu",NA +101,144,184,"2019",2,0,1,3,99,100,"Huanqiu",NA +101,144,186,"2019",3,0,74,3,26,20,"Huanqiu",NA +101,144,188,"2019",6,0,80,3,20,50,"Huanqiu",NA +101,144,189,"2019",5,0,51,3,49,38,"Huanqiu",NA +101,144,190,"2019",2,0,72,3,28,20,"Huanqiu",NA +101,144,191,"2019",3,0,100,2,0,70,"Huanqiu",NA +101,144,194,"2019",4,0,92,5,8,NA,"Huanqiu",NA +101,144,196,"2019",5,1,0,3,0,37,"Huanqiu",NA +101,144,197,"2019",2,0,93,3,7,7,"Huanqiu",NA +101,144,200,"2019",5,1,65,3,65,74,"Huanqiu",NA +101,144,201,"2019",2,1,13,2,13,50,"Huanqiu",NA +101,144,204,"2019",5,1,80,2,80,70,"Huanqiu",NA +101,144,205,"2019",2,0,81,2,19,100,"Huanqiu",NA +101,144,207,"2019",2,0,64,3,36,44,"Huanqiu",NA +101,144,210,"2019",5,0,91,2,9,9,"Huanqiu",NA +101,144,212,"2019",2,0,100,3,0,0,"Huanqiu",NA +101,144,215,"2019",6,0,69,2,31,81,"Huanqiu",NA +101,144,216,"2019",6,1,0,2,0,99,"Huanqiu",NA +101,144,219,"2019",4,1,100,5,100,NA,"Huanqiu",NA +101,144,221,"2019",4,1,0,5,0,NA,"Huanqiu",NA +101,144,222,"2019",5,1,52,2,52,51,"Huanqiu",NA +101,144,224,"2019",3,0,68,3,32,32,"Huanqiu",NA +101,144,228,"2019",3,1,90,2,90,87,"Huanqiu",NA +101,144,230,"2019",6,0,50,2,50,50,"Huanqiu",NA +101,144,231,"2019",6,1,50,2,50,50,"Huanqiu",NA +101,144,240,"2019",6,1,83,2,83,83,"Huanqiu",NA +101,144,241,"2019",6,0,99,3,1,14,"Huanqiu",NA +101,144,245,"2019",2,1,68,3,68,60,"Huanqiu",NA +101,144,247,"2019",6,1,6,2,6,100,"Huanqiu",NA +101,144,253,"2019",4,1,80,5,80,NA,"Huanqiu",NA +101,144,257,"2019",3,0,21,2,79,27,"Huanqiu",NA +101,144,258,"2019",2,0,65,3,35,35,"Huanqiu",NA +101,144,261,"2019",4,0,62,5,38,NA,"Huanqiu",NA +101,144,262,"2019",3,1,30,2,30,41,"Huanqiu",NA +101,144,264,"2019",6,1,40,2,40,62,"Huanqiu",NA +101,144,265,"2019",4,0,75,5,25,NA,"Huanqiu",NA +101,144,266,"2019",5,0,60,3,40,40,"Huanqiu",NA +101,144,267,"2019",3,1,64,3,64,54,"Huanqiu",NA +101,144,269,"2019",2,0,100,3,0,50,"Huanqiu",NA +101,144,270,"2019",3,1,100,2,100,100,"Huanqiu",NA +101,144,272,"2019",6,1,31,3,31,58,"Huanqiu",NA +101,144,273,"2019",2,0,100,3,0,13,"Huanqiu",NA +101,144,274,"2019",3,1,68,2,68,5,"Huanqiu",NA +101,144,276,"2019",5,0,90,2,10,23,"Huanqiu",NA +101,144,279,"2019",6,0,100,3,0,100,"Huanqiu",NA +101,144,281,"2019",5,1,29,2,29,40,"Huanqiu",NA +101,144,283,"2019",5,0,93,3,7,15,"Huanqiu",NA +101,144,285,"2019",6,1,0,2,0,99,"Huanqiu",NA +101,144,290,"2019",2,1,59,2,59,90,"Huanqiu",NA +101,144,296,"2019",4,1,100,5,100,NA,"Huanqiu",NA +101,144,303,"2019",5,0,65,3,35,45,"Huanqiu",NA +101,144,306,"2019",5,1,71,3,71,100,"Huanqiu",NA +101,144,307,"2019",2,1,98,3,98,64,"Huanqiu",NA +101,144,318,"2019",3,1,72,3,72,72,"Huanqiu",NA +101,144,323,"2019",4,1,50,5,50,NA,"Huanqiu",NA +101,144,326,"2019",2,0,5,2,95,100,"Huanqiu",NA +101,144,328,"2019",5,1,100,2,100,50,"Huanqiu",NA +101,144,330,"2019",5,0,84,3,16,43,"Huanqiu",NA +101,144,332,"2019",3,1,71,2,71,92,"Huanqiu",NA +101,144,334,"2019",3,1,50,3,50,50,"Huanqiu",NA +101,144,337,"2019",5,1,100,2,100,100,"Huanqiu",NA +101,144,338,"2019",2,0,92,2,8,8,"Huanqiu",NA +101,144,339,"2019",3,1,57,2,57,42,"Huanqiu",NA +101,144,343,"2019",5,0,64,3,36,36,"Huanqiu",NA +101,144,349,"2019",3,0,68,2,32,32,"Huanqiu",NA +101,144,350,"2019",3,1,78,2,78,36,"Huanqiu",NA +101,144,351,"2019",4,0,1,5,99,NA,"Huanqiu",NA +101,144,356,"2019",3,1,0,2,0,89,"Huanqiu",NA +101,144,360,"2019",3,0,100,3,0,0,"Huanqiu",NA +101,144,361,"2019",2,0,100,3,0,0,"Huanqiu",NA +101,144,363,"2019",4,0,74,5,26,NA,"Huanqiu",NA +101,144,366,"2019",3,1,0,2,0,0,"Huanqiu",NA +101,144,369,"2019",6,0,78,2,22,50,"Huanqiu",NA +101,144,372,"2019",2,1,100,3,100,50,"Huanqiu",NA +101,144,373,"2019",5,0,0,3,100,100,"Huanqiu",NA +101,144,374,"2019",3,1,100,2,100,100,"Huanqiu",NA +101,144,377,"2019",4,1,62,5,62,NA,"Huanqiu",NA +101,144,378,"2019",2,1,58,2,58,35,"Huanqiu",NA +101,144,383,"2019",2,1,38,2,38,50,"Huanqiu",NA +101,144,385,"2019",6,1,100,2,100,0,"Huanqiu",NA +101,144,389,"2019",4,1,49,5,49,NA,"Huanqiu",NA +101,144,391,"2019",3,0,98,3,2,73,"Huanqiu",NA +101,144,395,"2019",2,1,53,3,53,53,"Huanqiu",NA +101,144,398,"2019",2,0,99,2,1,50,"Huanqiu",NA +101,144,399,"2019",5,0,100,3,0,0,"Huanqiu",NA +101,144,400,"2019",6,1,38,3,38,38,"Huanqiu",NA +101,144,402,"2019",6,1,46,3,46,46,"Huanqiu",NA +101,144,404,"2019",3,0,97,2,3,3,"Huanqiu",NA +101,144,405,"2019",3,0,68,3,32,76,"Huanqiu",NA +101,144,408,"2019",3,1,26,3,26,68,"Huanqiu",NA +101,144,411,"2019",4,1,22,5,22,NA,"Huanqiu",NA +101,144,417,"2019",5,1,100,2,100,0,"Huanqiu",NA +101,144,418,"2019",5,0,83,3,17,17,"Huanqiu",NA +101,144,420,"2019",5,1,60,3,60,60,"Huanqiu",NA +101,144,422,"2019",3,0,84,3,16,16,"Huanqiu",NA +101,144,425,"2019",5,0,100,3,0,0,"Huanqiu",NA +101,144,428,"2019",6,1,75,2,75,22,"Huanqiu",NA +101,144,431,"2019",6,1,59,2,59,56,"Huanqiu",NA +101,144,439,"2019",3,1,87,2,87,68,"Huanqiu",NA +101,144,440,"2019",3,1,93,3,93,93,"Huanqiu",NA +101,144,441,"2019",2,0,83,3,17,31,"Huanqiu",NA +101,144,442,"2019",3,0,63,3,37,16,"Huanqiu",NA +101,144,443,"2019",5,1,46,2,46,65,"Huanqiu",NA +101,144,445,"2019",5,1,50,3,50,68,"Huanqiu",NA +101,144,453,"2019",3,1,0,2,0,50,"Huanqiu",NA +101,144,455,"2019",3,1,83,3,83,5,"Huanqiu",NA +101,144,458,"2019",2,0,96,2,4,31,"Huanqiu",NA +101,144,459,"2019",2,0,33,3,67,67,"Huanqiu",NA +101,144,461,"2019",4,1,100,5,100,NA,"Huanqiu",NA +101,144,462,"2019",3,1,12,3,12,21,"Huanqiu",NA +101,144,465,"2019",3,1,67,2,67,58,"Huanqiu",NA +101,144,466,"2019",2,0,19,3,81,100,"Huanqiu",NA +101,144,468,"2019",6,0,65,3,35,35,"Huanqiu",NA +101,144,469,"2019",6,1,5,3,5,5,"Huanqiu",NA +101,144,472,"2019",3,0,81,3,19,19,"Huanqiu",NA +101,144,479,"2019",3,1,98,3,98,87,"Huanqiu",NA +101,144,480,"2019",6,1,66,2,66,66,"Huanqiu",NA +101,144,481,"2019",5,1,100,3,100,100,"Huanqiu",NA +101,144,483,"2019",5,1,100,2,100,100,"Huanqiu",NA +101,144,487,"2019",3,0,89,3,11,11,"Huanqiu",NA +101,144,492,"2019",6,1,62,3,62,40,"Huanqiu",NA +101,144,496,"2019",3,1,73,2,73,66,"Huanqiu",NA +101,144,498,"2019",6,0,100,2,0,0,"Huanqiu",NA +101,144,499,"2019",4,1,36,5,36,NA,"Huanqiu",NA +101,144,503,"2019",5,1,50,2,50,50,"Huanqiu",NA +101,144,507,"2019",6,1,57,2,57,72,"Huanqiu",NA +101,144,510,"2019",2,0,89,2,11,11,"Huanqiu",NA +101,144,512,"2019",5,0,61,2,39,61,"Huanqiu",NA +101,144,514,"2019",6,0,78,2,22,27,"Huanqiu",NA +101,144,517,"2019",5,1,11,3,11,30,"Huanqiu",NA +101,144,522,"2019",4,1,30,5,30,NA,"Huanqiu",NA +101,144,524,"2019",6,1,17,3,17,17,"Huanqiu",NA +101,144,526,"2019",3,0,66,3,34,34,"Huanqiu",NA +101,144,527,"2019",4,0,50,5,50,NA,"Huanqiu",NA +101,144,531,"2019",6,0,38,3,62,49,"Huanqiu",NA +101,144,543,"2019",3,1,60,2,60,56,"Huanqiu",NA +101,144,550,"2019",6,0,0,2,100,100,"Huanqiu",NA +101,144,551,"2019",3,0,17,3,83,94,"Huanqiu",NA +101,144,552,"2019",3,1,50,3,50,84,"Huanqiu",NA +101,144,555,"2019",5,0,17,2,83,78,"Huanqiu",NA +101,144,556,"2019",3,1,100,2,100,80,"Huanqiu",NA +101,144,559,"2019",3,0,16,2,84,84,"Huanqiu",NA +101,144,561,"2019",6,1,36,2,36,50,"Huanqiu",NA +101,144,562,"2019",2,0,28,3,72,77,"Huanqiu",NA +101,144,566,"2019",5,1,82,2,82,82,"Huanqiu",NA +101,144,567,"2019",3,0,96,3,4,4,"Huanqiu",NA +101,144,569,"2019",3,0,10,2,90,90,"Huanqiu",NA +101,144,570,"2019",5,1,81,3,81,50,"Huanqiu",NA +101,144,571,"2019",4,0,100,5,0,NA,"Huanqiu",NA +101,144,573,"2019",6,0,0,2,100,100,"Huanqiu",NA +101,144,576,"2019",5,1,100,2,100,100,"Huanqiu",NA +101,144,577,"2019",6,0,100,3,0,0,"Huanqiu",NA +101,144,579,"2019",6,0,65,2,35,50,"Huanqiu",NA +101,144,586,"2019",3,0,99,3,1,18,"Huanqiu",NA +101,144,592,"2019",5,1,63,2,63,73,"Huanqiu",NA +101,144,593,"2019",6,1,71,2,71,42,"Huanqiu",NA +101,144,596,"2019",5,0,50,2,50,50,"Huanqiu",NA +101,144,598,"2019",2,1,53,3,53,53,"Huanqiu",NA +101,144,599,"2019",6,0,72,3,28,59,"Huanqiu",NA +101,144,603,"2019",3,0,48,2,52,31,"Huanqiu",NA +101,144,606,"2019",2,0,65,3,35,35,"Huanqiu",NA +101,144,607,"2019",5,0,72,3,28,20,"Huanqiu",NA +101,144,608,"2019",3,0,29,3,71,25,"Huanqiu",NA +101,144,609,"2019",2,1,37,2,37,50,"Huanqiu",NA +101,144,612,"2019",3,0,50,2,50,50,"Huanqiu",NA +101,144,613,"2019",5,1,32,3,32,32,"Huanqiu",NA +101,144,614,"2019",2,0,92,2,8,27,"Huanqiu",NA +101,144,621,"2019",2,1,6,2,6,50,"Huanqiu",NA +101,144,622,"2019",6,0,47,2,53,53,"Huanqiu",NA +101,144,625,"2019",3,1,58,2,58,50,"Huanqiu",NA +101,144,626,"2019",5,0,85,2,15,91,"Huanqiu",NA +101,144,630,"2019",2,0,100,3,0,0,"Huanqiu",NA +101,144,631,"2019",2,1,76,3,76,76,"Huanqiu",NA +101,144,633,"2019",2,1,100,2,100,100,"Huanqiu",NA +101,144,634,"2019",3,0,97,3,3,3,"Huanqiu",NA +101,144,638,"2019",2,0,100,2,0,0,"Huanqiu",NA +101,144,644,"2019",4,0,67,5,33,NA,"Huanqiu",NA +101,144,646,"2019",6,1,25,2,25,37,"Huanqiu",NA +101,144,647,"2019",2,1,24,3,24,24,"Huanqiu",NA +101,144,648,"2019",4,1,85,5,85,NA,"Huanqiu",NA +101,144,651,"2019",3,0,100,3,0,56,"Huanqiu",NA +101,144,654,"2019",4,1,40,5,40,NA,"Huanqiu",NA +101,144,655,"2019",2,1,70,2,70,58,"Huanqiu",NA +101,144,659,"2019",5,0,100,3,0,25,"Huanqiu",NA +101,144,662,"2019",5,0,0,2,100,58,"Huanqiu",NA +101,144,663,"2019",2,0,59,3,41,0,"Huanqiu",NA +101,144,676,"2019",5,0,0,3,100,100,"Huanqiu",NA +101,144,681,"2019",3,0,21,2,79,58,"Huanqiu",NA +101,144,688,"2019",6,0,93,2,7,7,"Huanqiu",NA +101,144,690,"2019",5,1,0,2,0,87,"Huanqiu",NA +101,144,692,"2019",2,0,76,3,24,24,"Huanqiu",NA +101,144,696,"2019",2,1,0,2,0,0,"Huanqiu",NA +101,144,698,"2019",6,0,0,3,100,100,"Huanqiu",NA +101,144,700,"2019",6,0,100,2,0,0,"Huanqiu",NA +101,144,701,"2019",2,1,100,3,100,100,"Huanqiu",NA +101,144,702,"2019",5,0,82,3,18,25,"Huanqiu",NA +101,144,707,"2019",2,0,57,3,43,0,"Huanqiu",NA +101,144,713,"2019",3,0,58,3,42,42,"Huanqiu",NA +101,144,719,"2019",4,0,76,5,24,NA,"Huanqiu",NA +101,144,720,"2019",2,0,0,3,100,100,"Huanqiu",NA +101,144,722,"2019",5,0,50,3,50,50,"Huanqiu",NA +101,144,723,"2019",2,0,99,3,1,1,"Huanqiu",NA +101,144,724,"2019",3,1,18,3,18,18,"Huanqiu",NA +101,144,725,"2019",6,1,68,3,68,75,"Huanqiu",NA +101,144,727,"2019",5,0,20,2,80,80,"Huanqiu",NA +101,144,731,"2019",5,1,67,3,67,65,"Huanqiu",NA +101,144,733,"2019",6,1,50,2,50,50,"Huanqiu",NA +101,144,734,"2019",6,0,50,3,50,50,"Huanqiu",NA +101,144,736,"2019",2,1,90,2,90,90,"Huanqiu",NA +101,144,740,"2019",3,0,69,2,31,50,"Huanqiu",NA +101,144,743,"2019",5,1,100,2,100,100,"Huanqiu",NA +101,144,744,"2019",3,0,59,3,41,27,"Huanqiu",NA +101,144,746,"2019",5,0,99,3,1,1,"Huanqiu",NA +101,144,747,"2019",3,1,39,2,39,47,"Huanqiu",NA +101,144,748,"2019",4,0,38,5,62,NA,"Huanqiu",NA +101,144,752,"2019",4,0,94,5,6,NA,"Huanqiu",NA +101,144,754,"2019",4,0,50,5,50,NA,"Huanqiu",NA +101,144,755,"2019",5,1,50,2,50,50,"Huanqiu",NA +101,144,756,"2019",2,0,60,2,40,50,"Huanqiu",NA +101,144,757,"2019",5,0,60,2,40,53,"Huanqiu",NA +101,144,761,"2019",3,0,7,2,93,100,"Huanqiu",NA +101,144,763,"2019",5,0,50,3,50,50,"Huanqiu",NA +101,144,765,"2019",4,0,100,5,0,NA,"Huanqiu",NA +101,144,766,"2019",5,1,50,2,50,50,"Huanqiu",NA +101,144,767,"2019",2,0,87,3,13,13,"Huanqiu",NA +101,144,769,"2019",6,0,100,3,0,50,"Huanqiu",NA +101,144,772,"2019",3,0,100,3,0,0,"Huanqiu",NA +101,144,773,"2019",5,1,6,3,6,19,"Huanqiu",NA +101,144,775,"2019",3,0,100,2,0,0,"Huanqiu",NA +101,144,778,"2019",6,0,0,3,100,100,"Huanqiu",NA +101,144,779,"2019",5,0,0,3,100,100,"Huanqiu",NA +101,144,781,"2019",5,0,26,3,74,38,"Huanqiu",NA +101,144,782,"2019",2,0,3,3,97,97,"Huanqiu",NA +101,144,788,"2019",2,0,50,2,50,77,"Huanqiu",NA +101,144,789,"2019",3,0,38,3,62,89,"Huanqiu",NA +101,144,791,"2019",6,1,81,2,81,88,"Huanqiu",NA +101,144,794,"2019",3,1,50,3,50,50,"Huanqiu",NA +101,144,795,"2019",6,0,92,3,8,8,"Huanqiu",NA +101,144,797,"2019",2,0,89,3,11,52,"Huanqiu",NA +101,144,798,"2019",4,1,100,5,100,NA,"Huanqiu",NA +101,144,802,"2019",4,0,100,5,0,NA,"Huanqiu",NA +101,144,803,"2019",4,1,100,5,100,NA,"Huanqiu",NA +101,144,804,"2019",2,0,50,2,50,50,"Huanqiu",NA +101,144,807,"2019",5,0,80,2,20,20,"Huanqiu",NA +101,144,810,"2019",4,1,97,5,97,NA,"Huanqiu",NA +101,144,811,"2019",5,1,97,3,97,97,"Huanqiu",NA +101,144,812,"2019",4,1,50,5,50,NA,"Huanqiu",NA +101,144,821,"2019",4,0,61,5,39,NA,"Huanqiu",NA +101,144,826,"2019",4,0,87,5,13,NA,"Huanqiu",NA +101,144,829,"2019",2,1,69,3,69,69,"Huanqiu",NA +101,144,830,"2019",3,1,4,3,4,97,"Huanqiu",NA +101,144,833,"2019",2,1,0,3,0,0,"Huanqiu",NA +101,144,836,"2019",5,0,100,3,0,50,"Huanqiu",NA +101,144,838,"2019",2,0,11,3,89,98,"Huanqiu",NA +101,144,841,"2019",5,1,0,2,0,50,"Huanqiu",NA +101,144,845,"2019",4,0,50,5,50,NA,"Huanqiu",NA +101,144,849,"2019",2,1,65,2,65,32,"Huanqiu",NA +101,144,851,"2019",6,0,70,3,30,30,"Huanqiu",NA +101,144,854,"2019",5,1,80,3,80,80,"Huanqiu",NA +101,144,860,"2019",5,0,60,3,40,52,"Huanqiu",NA +101,144,861,"2019",4,0,100,5,0,NA,"Huanqiu",NA +101,144,863,"2019",6,1,81,3,81,81,"Huanqiu",NA +101,144,864,"2019",4,1,86,5,86,NA,"Huanqiu",NA +101,144,865,"2019",5,0,100,3,0,0,"Huanqiu",NA +101,144,866,"2019",2,0,98,3,2,98,"Huanqiu",NA +101,144,871,"2019",5,1,93,2,93,93,"Huanqiu",NA +101,144,872,"2019",6,0,82,2,18,57,"Huanqiu",NA +101,144,874,"2019",2,0,93,3,7,50,"Huanqiu",NA +101,144,876,"2019",5,0,100,2,0,50,"Huanqiu",NA +101,144,878,"2019",2,0,58,2,42,50,"Huanqiu",NA +101,144,879,"2019",3,0,100,2,0,0,"Huanqiu",NA +101,144,880,"2019",5,1,24,2,24,78,"Huanqiu",NA +101,144,881,"2019",3,1,98,2,98,98,"Huanqiu",NA +101,144,882,"2019",5,0,100,3,0,0,"Huanqiu",NA +101,144,883,"2019",4,0,80,5,20,NA,"Huanqiu",NA +101,144,887,"2019",4,0,100,5,0,NA,"Huanqiu",NA +101,144,888,"2019",6,1,73,3,73,17,"Huanqiu",NA +101,144,889,"2019",4,0,100,5,0,NA,"Huanqiu",NA +101,144,898,"2019",6,1,0,3,0,0,"Huanqiu",NA +101,144,900,"2019",2,0,38,3,62,73,"Huanqiu",NA +101,144,903,"2019",3,0,51,3,49,50,"Huanqiu",NA +101,144,907,"2019",6,1,38,2,38,38,"Huanqiu",NA +101,144,908,"2019",5,1,47,3,47,27,"Huanqiu",NA +101,144,909,"2019",5,0,25,2,75,82,"Huanqiu",NA +101,144,910,"2019",6,1,61,3,61,81,"Huanqiu",NA +101,144,913,"2019",6,1,65,2,65,75,"Huanqiu",NA +101,144,915,"2019",2,0,1,2,99,100,"Huanqiu",NA +101,144,917,"2019",2,1,65,2,65,64,"Huanqiu",NA +101,144,924,"2019",5,1,0,3,0,51,"Huanqiu",NA +101,144,925,"2019",3,0,100,2,0,0,"Huanqiu",NA +101,144,931,"2019",3,0,73,3,27,24,"Huanqiu",NA +101,144,933,"2019",6,0,3,2,97,97,"Huanqiu",NA +101,144,937,"2019",6,1,86,3,86,15,"Huanqiu",NA +101,144,938,"2019",2,1,9,3,9,50,"Huanqiu",NA +101,144,939,"2019",6,0,60,2,40,51,"Huanqiu",NA +101,144,941,"2019",5,1,0,3,0,0,"Huanqiu",NA +101,144,942,"2019",2,1,28,3,28,38,"Huanqiu",NA +101,144,946,"2019",4,1,91,5,91,NA,"Huanqiu",NA +101,144,949,"2019",3,1,70,3,70,12,"Huanqiu",NA +101,144,950,"2019",3,1,77,2,77,77,"Huanqiu",NA +101,144,951,"2019",6,1,51,2,51,50,"Huanqiu",NA +101,144,956,"2019",2,1,53,3,53,9,"Huanqiu",NA +101,144,962,"2019",4,0,100,5,0,NA,"Huanqiu",NA +101,144,965,"2019",2,0,98,3,2,100,"Huanqiu",NA +101,144,971,"2019",2,1,17,3,17,50,"Huanqiu",NA +101,144,976,"2019",5,1,100,2,100,100,"Huanqiu",NA +101,144,981,"2019",6,1,1,3,1,14,"Huanqiu",NA +101,144,982,"2019",6,0,100,3,0,2,"Huanqiu",NA +101,144,983,"2019",4,0,17,5,83,NA,"Huanqiu",NA +101,144,986,"2019",3,0,68,2,32,87,"Huanqiu",NA +101,144,990,"2019",5,0,91,3,9,9,"Huanqiu",NA +101,144,993,"2019",3,1,40,2,40,39,"Huanqiu",NA +101,144,994,"2019",6,0,100,2,0,0,"Huanqiu",NA +101,144,995,"2019",6,0,100,3,0,0,"Huanqiu",NA +101,144,1000,"2019",2,1,0,3,0,0,"Huanqiu",NA +101,144,1002,"2019",3,1,72,2,72,72,"Huanqiu",NA +101,144,1004,"2019",3,0,10,2,90,99,"Huanqiu",NA +101,144,1007,"2019",6,1,100,2,100,100,"Huanqiu",NA +101,144,1010,"2019",5,0,79,3,21,38,"Huanqiu",NA +101,144,1013,"2019",6,0,100,2,0,0,"Huanqiu",NA +101,144,1015,"2019",6,0,9,2,91,91,"Huanqiu",NA +101,144,1017,"2019",6,0,26,3,74,74,"Huanqiu",NA +101,144,1020,"2019",6,0,39,3,61,61,"Huanqiu",NA +101,144,1023,"2019",2,1,81,2,81,81,"Huanqiu",NA +101,144,1024,"2019",2,1,95,3,95,95,"Huanqiu",NA +101,144,1027,"2019",3,0,0,2,100,91,"Huanqiu",NA +101,144,1029,"2019",6,1,100,3,100,100,"Huanqiu",NA +101,144,1031,"2019",4,0,80,5,20,NA,"Huanqiu",NA +101,144,1037,"2019",5,1,92,2,92,100,"Huanqiu",NA +101,144,1040,"2019",6,0,75,2,25,32,"Huanqiu",NA +101,144,1042,"2019",6,0,99,2,1,1,"Huanqiu",NA +101,144,1043,"2019",2,1,99,2,99,51,"Huanqiu",NA +101,144,1044,"2019",5,1,28,2,28,83,"Huanqiu",NA +101,144,1045,"2019",5,1,0,3,0,16,"Huanqiu",NA +101,144,1046,"2019",4,0,33,5,67,NA,"Huanqiu",NA +101,144,1047,"2019",4,0,25,5,75,NA,"Huanqiu",NA +101,144,1048,"2019",4,0,1,5,99,NA,"Huanqiu",NA +101,144,1057,"2019",2,1,31,3,31,50,"Huanqiu",NA +101,144,1059,"2019",4,1,21,5,21,NA,"Huanqiu",NA +101,144,1063,"2019",5,0,53,3,47,48,"Huanqiu",NA +101,144,1068,"2019",5,1,83,3,83,85,"Huanqiu",NA +101,144,1070,"2019",2,1,0,3,0,0,"Huanqiu",NA +101,144,1073,"2019",2,1,91,3,91,85,"Huanqiu",NA +101,144,1074,"2019",6,0,50,2,50,50,"Huanqiu",NA +101,144,1075,"2019",2,1,0,3,0,0,"Huanqiu",NA +101,144,1076,"2019",2,0,100,3,0,49,"Huanqiu",NA +101,144,1087,"2019",2,1,90,2,90,90,"Huanqiu",NA +101,144,1090,"2019",2,0,30,3,70,70,"Huanqiu",NA +101,144,1096,"2019",3,1,2,3,2,16,"Huanqiu",NA +101,144,1105,"2019",5,0,88,2,12,30,"Huanqiu",NA +101,144,1109,"2019",2,0,81,2,19,58,"Huanqiu",NA +101,144,1111,"2019",6,0,0,2,100,100,"Huanqiu",NA +101,144,1113,"2019",3,1,84,3,84,84,"Huanqiu",NA +101,144,1114,"2019",5,0,100,3,0,0,"Huanqiu",NA +101,144,1120,"2019",5,1,79,2,79,82,"Huanqiu",NA +101,144,1121,"2019",5,0,95,2,5,9,"Huanqiu",NA +101,144,1123,"2019",2,0,96,2,4,18,"Huanqiu",NA +101,144,1124,"2019",3,1,91,3,91,86,"Huanqiu",NA +101,144,1126,"2019",5,1,32,2,32,73,"Huanqiu",NA +101,144,1127,"2019",2,1,67,3,67,9,"Huanqiu",NA +101,144,1136,"2019",2,0,83,2,17,17,"Huanqiu",NA +101,144,1147,"2019",6,1,64,3,64,60,"Huanqiu",NA +101,144,1151,"2019",2,0,60,2,40,50,"Huanqiu",NA +101,144,1153,"2019",6,0,65,2,35,36,"Huanqiu",NA +101,144,1156,"2019",3,1,31,2,31,100,"Huanqiu",NA +101,144,1162,"2019",5,1,78,2,78,86,"Huanqiu",NA +101,144,1163,"2019",3,1,75,3,75,80,"Huanqiu",NA +101,144,1164,"2019",2,1,86,3,86,80,"Huanqiu",NA +101,144,1165,"2019",5,1,76,3,76,81,"Huanqiu",NA +102,NA,2,"2017",2,1,NA,1,NA,NA,NA,NA +102,NA,3,"2017",2,1,NA,1,NA,NA,NA,NA +102,NA,4,"2017",3,1,NA,1,NA,NA,NA,NA +102,NA,5,"2017",6,0,NA,1,NA,NA,NA,NA +102,NA,6,"2017",4,1,0,1,0,NA,NA,NA +102,NA,7,"2017",1,0,50,2,50,20,NA,NA +102,NA,7,"2017",1,0,30,4,70,10,NA,NA +102,NA,7,"2017",1,0,80,1,20,NA,NA,NA +102,NA,7,"2017",1,0,90,3,10,50,NA,NA +102,NA,8,"2017",6,1,99,1,99,NA,NA,NA +102,NA,9,"2017",4,1,99,1,99,NA,NA,NA +102,NA,10,"2017",5,1,99,1,99,NA,NA,NA +102,NA,11,"2017",2,1,50,1,50,NA,NA,NA +102,NA,12,"2017",3,0,1,1,99,NA,NA,NA +102,NA,13,"2017",1,0,1,4,99,99,NA,NA +102,NA,13,"2017",1,0,1,1,99,NA,NA,NA +102,NA,13,"2017",1,0,1,3,99,99,NA,NA +102,NA,13,"2017",1,0,1,2,99,99,NA,NA +102,NA,14,"2017",6,0,50,1,50,NA,NA,NA +102,NA,15,"2017",2,1,99,1,99,NA,NA,NA +102,NA,16,"2017",6,0,50,1,50,NA,NA,NA +102,NA,17,"2017",3,1,99,1,99,NA,NA,NA +102,NA,18,"2017",1,0,99,2,1,NA,NA,NA +102,NA,18,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,18,"2017",1,0,1,4,99,1,NA,NA +102,NA,18,"2017",1,0,99,3,1,1,NA,NA +102,NA,19,"2017",6,1,99,1,99,NA,NA,NA +102,NA,20,"2017",2,0,1,1,99,NA,NA,NA +102,NA,21,"2017",2,0,50,1,50,NA,NA,NA +102,NA,22,"2017",2,0,10,1,90,NA,NA,NA +102,NA,23,"2017",2,1,99,1,99,NA,NA,NA +102,NA,24,"2017",1,0,90,4,10,20,NA,NA +102,NA,24,"2017",1,0,50,1,50,NA,NA,NA +102,NA,24,"2017",1,0,80,3,20,0,NA,NA +102,NA,24,"2017",1,0,100,2,0,50,NA,NA +102,NA,25,"2017",6,0,99,1,1,NA,NA,NA +102,NA,26,"2017",3,1,99,1,99,NA,NA,NA +102,NA,27,"2017",1,1,80,3,80,80,NA,NA +102,NA,27,"2017",1,1,80,2,80,80,NA,NA +102,NA,27,"2017",1,1,80,4,80,80,NA,NA +102,NA,27,"2017",1,1,80,1,80,NA,NA,NA +102,NA,28,"2017",1,1,99,2,99,99,NA,NA +102,NA,28,"2017",1,1,99,3,99,99,NA,NA +102,NA,28,"2017",1,1,99,1,99,NA,NA,NA +102,NA,28,"2017",1,1,NA,4,NA,99,NA,NA +102,NA,29,"2017",1,1,90,3,90,80,NA,NA +102,NA,29,"2017",1,1,80,2,80,20,NA,NA +102,NA,29,"2017",1,1,80,4,80,90,NA,NA +102,NA,29,"2017",1,1,20,1,20,NA,NA,NA +102,NA,30,"2017",4,0,NA,1,NA,NA,NA,NA +102,NA,31,"2017",4,0,NA,1,NA,NA,NA,NA +102,NA,32,"2017",4,0,NA,1,NA,NA,NA,NA +102,NA,33,"2017",3,1,99,1,99,NA,NA,NA +102,NA,34,"2017",5,0,1,1,99,NA,NA,NA +102,NA,35,"2017",4,0,1,1,99,NA,NA,NA +102,NA,36,"2017",6,1,55,1,55,NA,NA,NA +102,NA,37,"2017",6,1,99,1,99,NA,NA,NA +102,NA,38,"2017",6,1,99,1,99,NA,NA,NA +102,NA,39,"2017",2,1,40,1,40,NA,NA,NA +102,NA,40,"2017",3,1,98,1,98,NA,NA,NA +102,NA,41,"2017",4,1,40,1,40,NA,NA,NA +102,NA,42,"2017",5,1,80,1,80,NA,NA,NA +102,NA,43,"2017",1,1,99,4,99,99,NA,NA +102,NA,43,"2017",1,1,99,2,99,99,NA,NA +102,NA,43,"2017",1,1,99,1,99,NA,NA,NA +102,NA,43,"2017",1,1,99,3,99,99,NA,NA +102,NA,44,"2017",2,1,99,1,99,NA,NA,NA +102,NA,45,"2017",4,0,22,1,78,NA,NA,NA +102,NA,46,"2017",1,0,2,4,98,99,NA,NA +102,NA,46,"2017",1,0,1,2,99,99,NA,NA +102,NA,46,"2017",1,0,1,3,99,99,NA,NA +102,NA,46,"2017",1,0,1,1,99,NA,NA,NA +102,NA,47,"2017",6,0,1,1,99,NA,NA,NA +102,NA,48,"2017",6,1,100,1,100,NA,NA,NA +102,NA,49,"2017",4,0,20,1,80,NA,NA,NA +102,NA,50,"2017",3,0,30,1,70,NA,NA,NA +102,NA,51,"2017",2,1,50,1,50,NA,NA,NA +102,NA,52,"2017",6,0,20,1,80,NA,NA,NA +102,NA,53,"2017",6,1,99,1,99,NA,NA,NA +102,NA,54,"2017",4,0,50,1,50,NA,NA,NA +102,NA,55,"2017",2,1,99,1,99,NA,NA,NA +102,NA,56,"2017",2,0,60,1,40,NA,NA,NA +102,NA,57,"2017",5,0,65,1,35,NA,NA,NA +102,NA,58,"2017",5,1,70,1,70,NA,NA,NA +102,NA,59,"2017",5,0,90,1,10,NA,NA,NA +102,NA,60,"2017",2,0,99,1,1,NA,NA,NA +102,NA,61,"2017",6,1,NA,1,NA,NA,NA,NA +102,NA,62,"2017",3,0,1,1,99,NA,NA,NA +102,NA,63,"2017",5,1,99,1,99,NA,NA,NA +102,NA,64,"2017",1,1,99,2,99,99,NA,NA +102,NA,64,"2017",1,1,99,1,99,NA,NA,NA +102,NA,64,"2017",1,1,99,4,99,99,NA,NA +102,NA,65,"2017",1,1,80,2,80,75,NA,NA +102,NA,65,"2017",1,1,95,3,95,80,NA,NA +102,NA,65,"2017",1,1,99,4,99,95,NA,NA +102,NA,65,"2017",1,1,75,1,75,NA,NA,NA +102,NA,66,"2017",6,1,50,1,50,NA,NA,NA +102,NA,67,"2017",6,0,3,1,97,NA,NA,NA +102,NA,68,"2017",1,1,NA,4,NA,NA,NA,NA +102,NA,68,"2017",1,1,NA,3,NA,NA,NA,NA +102,NA,68,"2017",1,1,NA,2,NA,99,NA,NA +102,NA,68,"2017",1,1,99,1,99,NA,NA,NA +102,NA,69,"2017",2,1,99,1,99,NA,NA,NA +102,NA,70,"2017",3,0,60,1,40,NA,NA,NA +102,NA,71,"2017",2,1,9,1,9,NA,NA,NA +102,NA,72,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1169,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1170,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1171,"2017",1,0,0,3,100,100,NA,NA +102,NA,1171,"2017",1,0,0,2,100,100,NA,NA +102,NA,1171,"2017",1,0,0,4,100,100,NA,NA +102,NA,1171,"2017",1,0,0,1,100,NA,NA,NA +102,NA,1172,"2017",1,0,0,1,100,NA,NA,NA +102,NA,1172,"2017",1,0,0,3,100,100,NA,NA +102,NA,1172,"2017",1,0,0,4,100,100,NA,NA +102,NA,1172,"2017",1,0,0,2,100,100,NA,NA +102,NA,1173,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1174,"2017",6,0,0,1,100,NA,NA,NA +102,NA,1175,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1175,"2017",1,0,1,2,99,99,NA,NA +102,NA,1175,"2017",1,0,1,3,99,99,NA,NA +102,NA,1175,"2017",1,0,50,4,50,99,NA,NA +102,NA,1176,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1177,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1178,"2017",2,1,80,1,80,NA,NA,NA +102,NA,1179,"2017",2,1,20,1,20,NA,NA,NA +102,NA,1180,"2017",5,1,70,1,70,NA,NA,NA +102,NA,1181,"2017",4,1,80,1,80,NA,NA,NA +102,NA,1182,"2017",1,0,20,4,80,60,NA,NA +102,NA,1182,"2017",1,0,40,3,60,80,NA,NA +102,NA,1182,"2017",1,0,20,1,80,NA,NA,NA +102,NA,1182,"2017",1,0,20,2,80,80,NA,NA +102,NA,1183,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1184,"2017",5,0,0,1,100,NA,NA,NA +102,NA,1185,"2017",1,0,80,2,20,50,NA,NA +102,NA,1185,"2017",1,0,50,3,50,20,NA,NA +102,NA,1185,"2017",1,0,90,4,10,50,NA,NA +102,NA,1185,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1186,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1187,"2017",1,0,5,2,95,50,NA,NA +102,NA,1187,"2017",1,0,50,3,50,95,NA,NA +102,NA,1187,"2017",1,0,1,4,99,50,NA,NA +102,NA,1187,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1188,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1189,"2017",4,0,0,1,100,NA,NA,NA +102,NA,1190,"2017",4,1,40,1,40,NA,NA,NA +102,NA,1191,"2017",3,1,75,1,75,NA,NA,NA +102,NA,1192,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1193,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1194,"2017",1,0,20,1,80,NA,NA,NA +102,NA,1194,"2017",1,0,1,3,99,50,NA,NA +102,NA,1194,"2017",1,0,50,2,50,80,NA,NA +102,NA,1194,"2017",1,0,1,4,99,99,NA,NA +102,NA,1195,"2017",1,1,50,2,50,90,NA,NA +102,NA,1195,"2017",1,1,99,4,99,99,NA,NA +102,NA,1195,"2017",1,1,90,1,90,NA,NA,NA +102,NA,1195,"2017",1,1,99,3,99,50,NA,NA +102,NA,1196,"2017",1,0,1,4,99,99,NA,NA +102,NA,1196,"2017",1,0,1,3,99,99,NA,NA +102,NA,1196,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1196,"2017",1,0,1,2,99,1,NA,NA +102,NA,1197,"2017",6,0,5,1,95,NA,NA,NA +102,NA,1198,"2017",6,0,20,1,80,NA,NA,NA +102,NA,1199,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1200,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1201,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1202,"2017",1,1,1,4,1,6,NA,NA +102,NA,1202,"2017",1,1,6,3,6,10,NA,NA +102,NA,1202,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1202,"2017",1,1,10,2,10,99,NA,NA +102,NA,1203,"2017",4,1,80,1,80,NA,NA,NA +102,NA,1204,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1205,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1206,"2017",1,1,40,3,40,50,NA,NA +102,NA,1206,"2017",1,1,40,1,40,NA,NA,NA +102,NA,1206,"2017",1,1,30,4,30,40,NA,NA +102,NA,1206,"2017",1,1,50,2,50,40,NA,NA +102,NA,1207,"2017",1,0,30,4,70,30,NA,NA +102,NA,1207,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1207,"2017",1,0,70,3,30,50,NA,NA +102,NA,1207,"2017",1,0,50,2,50,1,NA,NA +102,NA,1208,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1209,"2017",2,1,100,1,100,NA,NA,NA +102,NA,1210,"2017",6,1,20,1,20,NA,NA,NA +102,NA,1211,"2017",6,0,42,1,58,NA,NA,NA +102,NA,1212,"2017",1,0,40,2,60,60,NA,NA +102,NA,1212,"2017",1,0,30,3,70,60,NA,NA +102,NA,1212,"2017",1,0,20,4,80,70,NA,NA +102,NA,1212,"2017",1,0,40,1,60,NA,NA,NA +102,NA,1213,"2017",4,1,40,1,40,NA,NA,NA +102,NA,1214,"2017",5,1,80,1,80,NA,NA,NA +102,NA,1215,"2017",6,0,30,1,70,NA,NA,NA +102,NA,1216,"2017",5,1,40,1,40,NA,NA,NA +102,NA,1217,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1218,"2017",2,1,20,1,20,NA,NA,NA +102,NA,1219,"2017",1,1,NA,2,NA,1,NA,NA +102,NA,1219,"2017",1,1,NA,3,NA,NA,NA,NA +102,NA,1219,"2017",1,1,11,4,11,NA,NA,NA +102,NA,1219,"2017",1,1,1,1,1,NA,NA,NA +102,NA,1220,"2017",2,0,40,1,60,NA,NA,NA +102,NA,1221,"2017",2,0,40,1,60,NA,NA,NA +102,NA,1222,"2017",1,0,1,4,99,99,NA,NA +102,NA,1222,"2017",1,0,1,3,99,99,NA,NA +102,NA,1222,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1222,"2017",1,0,1,2,99,99,NA,NA +102,NA,1223,"2017",3,1,20,1,20,NA,NA,NA +102,NA,1224,"2017",3,1,75,1,75,NA,NA,NA +102,NA,1225,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1226,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1227,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1228,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1228,"2017",1,0,99,4,1,1,NA,NA +102,NA,1228,"2017",1,0,99,3,1,99,NA,NA +102,NA,1228,"2017",1,0,1,2,99,99,NA,NA +102,NA,1229,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1230,"2017",1,1,1,4,1,58,NA,NA +102,NA,1230,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1230,"2017",1,1,98,2,98,99,NA,NA +102,NA,1230,"2017",1,1,58,3,58,98,NA,NA +102,NA,1231,"2017",6,1,1,1,1,NA,NA,NA +102,NA,1232,"2017",1,1,99,3,99,99,NA,NA +102,NA,1232,"2017",1,1,99,4,99,99,NA,NA +102,NA,1232,"2017",1,1,99,2,99,99,NA,NA +102,NA,1232,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1233,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1234,"2017",4,0,80,1,20,NA,NA,NA +102,NA,1235,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1236,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1237,"2017",4,0,70,1,30,NA,NA,NA +102,NA,1238,"2017",5,0,20,1,80,NA,NA,NA +102,NA,1239,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1240,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1241,"2017",1,0,1,3,99,99,NA,NA +102,NA,1241,"2017",1,0,1,2,99,99,NA,NA +102,NA,1241,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1241,"2017",1,0,1,4,99,99,NA,NA +102,NA,1242,"2017",1,1,99,2,99,99,NA,NA +102,NA,1242,"2017",1,1,1,3,1,99,NA,NA +102,NA,1242,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1242,"2017",1,1,99,4,99,1,NA,NA +102,NA,1243,"2017",3,1,60,1,60,NA,NA,NA +102,NA,1244,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1245,"2017",5,1,80,1,80,NA,NA,NA +102,NA,1246,"2017",2,0,40,1,60,NA,NA,NA +102,NA,1247,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1248,"2017",6,0,70,1,30,NA,NA,NA +102,NA,1249,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1250,"2017",1,0,80,4,20,1,NA,NA +102,NA,1250,"2017",1,0,80,1,20,NA,NA,NA +102,NA,1250,"2017",1,0,99,2,1,20,NA,NA +102,NA,1250,"2017",1,0,99,3,1,1,NA,NA +102,NA,1251,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1252,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1253,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1254,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1255,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1256,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1257,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1258,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1259,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1260,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1261,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1262,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1263,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1264,"2017",4,1,100,1,100,NA,NA,NA +102,NA,1265,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1266,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1267,"2017",1,0,1,3,99,99,NA,NA +102,NA,1267,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1267,"2017",1,0,1,4,99,99,NA,NA +102,NA,1267,"2017",1,0,1,2,99,99,NA,NA +102,NA,1268,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1269,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1270,"2017",6,0,80,1,20,NA,NA,NA +102,NA,1271,"2017",5,1,60,1,60,NA,NA,NA +102,NA,1272,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1273,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1274,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1274,"2017",1,1,99,2,99,NA,NA,NA +102,NA,1274,"2017",1,1,99,3,99,99,NA,NA +102,NA,1274,"2017",1,1,99,4,99,99,NA,NA +102,NA,1275,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1276,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1277,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1278,"2017",2,0,60,1,40,NA,NA,NA +102,NA,1279,"2017",2,0,100,1,0,NA,NA,NA +102,NA,1280,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1281,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1282,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1283,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1284,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1285,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1286,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1287,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1288,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1289,"2017",4,0,24,1,76,NA,NA,NA +102,NA,1290,"2017",6,1,100,1,100,NA,NA,NA +102,NA,1291,"2017",1,1,99,3,99,99,NA,NA +102,NA,1291,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1291,"2017",1,1,99,2,99,99,NA,NA +102,NA,1291,"2017",1,1,99,4,99,99,NA,NA +102,NA,1292,"2017",1,1,50,3,50,50,NA,NA +102,NA,1292,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1292,"2017",1,1,50,2,50,NA,NA,NA +102,NA,1292,"2017",1,1,99,4,99,50,NA,NA +102,NA,1293,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1294,"2017",1,0,50,3,50,1,NA,NA +102,NA,1294,"2017",1,0,99,2,1,99,NA,NA +102,NA,1294,"2017",1,0,NA,4,NA,50,NA,NA +102,NA,1294,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1295,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1296,"2017",4,1,66,1,66,NA,NA,NA +102,NA,1297,"2017",6,1,89,1,89,NA,NA,NA +102,NA,1298,"2017",4,1,80,1,80,NA,NA,NA +102,NA,1299,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1300,"2017",4,1,100,1,100,NA,NA,NA +102,NA,1301,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1302,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1303,"2017",6,0,89,1,11,NA,NA,NA +102,NA,1304,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1305,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1306,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1307,"2017",6,0,45,1,55,NA,NA,NA +102,NA,1308,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1309,"2017",4,1,100,1,100,NA,NA,NA +102,NA,1310,"2017",5,0,NA,1,NA,NA,NA,NA +102,NA,1311,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1312,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1313,"2017",2,0,10,1,90,NA,NA,NA +102,NA,1314,"2017",5,1,1,1,1,NA,NA,NA +102,NA,1315,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1316,"2017",6,0,NA,1,NA,NA,NA,NA +102,NA,1317,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1318,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1319,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1320,"2017",1,1,99,3,99,99,NA,NA +102,NA,1320,"2017",1,1,99,2,99,99,NA,NA +102,NA,1320,"2017",1,1,99,4,99,99,NA,NA +102,NA,1320,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1321,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1322,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1323,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1324,"2017",6,0,60,1,40,NA,NA,NA +102,NA,1325,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1326,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1327,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1328,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1329,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,1329,"2017",1,0,48,2,52,NA,NA,NA +102,NA,1329,"2017",1,0,48,4,52,52,NA,NA +102,NA,1329,"2017",1,0,48,3,52,52,NA,NA +102,NA,1330,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1331,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1332,"2017",3,1,NA,1,NA,NA,NA,NA +102,NA,1333,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1334,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1335,"2017",1,1,90,2,90,50,NA,NA +102,NA,1335,"2017",1,1,100,4,100,100,NA,NA +102,NA,1335,"2017",1,1,100,3,100,90,NA,NA +102,NA,1335,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1336,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1337,"2017",5,1,1,1,1,NA,NA,NA +102,NA,1338,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1339,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1340,"2017",1,0,50,2,50,50,NA,NA +102,NA,1340,"2017",1,0,50,3,50,50,NA,NA +102,NA,1340,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1340,"2017",1,0,99,4,1,50,NA,NA +102,NA,1341,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1342,"2017",5,1,60,1,60,NA,NA,NA +102,NA,1343,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1344,"2017",2,1,60,1,60,NA,NA,NA +102,NA,1345,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1346,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1347,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1348,"2017",4,1,2,1,2,NA,NA,NA +102,NA,1349,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1350,"2017",4,1,40,1,40,NA,NA,NA +102,NA,1351,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1352,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1353,"2017",1,1,99,4,99,99,NA,NA +102,NA,1353,"2017",1,1,99,2,99,NA,NA,NA +102,NA,1353,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1353,"2017",1,1,99,3,99,99,NA,NA +102,NA,1354,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1355,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1356,"2017",1,0,1,3,99,99,NA,NA +102,NA,1356,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1356,"2017",1,0,1,4,99,99,NA,NA +102,NA,1356,"2017",1,0,1,2,99,1,NA,NA +102,NA,1357,"2017",3,0,40,1,60,NA,NA,NA +102,NA,1358,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1359,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1359,"2017",1,1,99,4,99,99,NA,NA +102,NA,1359,"2017",1,1,99,3,99,99,NA,NA +102,NA,1359,"2017",1,1,99,2,99,50,NA,NA +102,NA,1360,"2017",5,1,40,1,40,NA,NA,NA +102,NA,1361,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1362,"2017",6,0,10,1,90,NA,NA,NA +102,NA,1363,"2017",2,1,100,1,100,NA,NA,NA +102,NA,1364,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1365,"2017",2,1,1,1,1,NA,NA,NA +102,NA,1366,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1367,"2017",4,1,1,1,1,NA,NA,NA +102,NA,1368,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1369,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1370,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1371,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1372,"2017",5,0,20,1,80,NA,NA,NA +102,NA,1373,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1374,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1375,"2017",2,0,70,1,30,NA,NA,NA +102,NA,1376,"2017",2,1,45,1,45,NA,NA,NA +102,NA,1377,"2017",3,0,20,1,80,NA,NA,NA +102,NA,1378,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1379,"2017",3,1,100,1,100,NA,NA,NA +102,NA,1380,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1381,"2017",3,1,12,1,12,NA,NA,NA +102,NA,1382,"2017",2,0,20,1,80,NA,NA,NA +102,NA,1383,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1384,"2017",2,1,88,1,88,NA,NA,NA +102,NA,1385,"2017",1,0,35,4,65,56,NA,NA +102,NA,1385,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1385,"2017",1,0,44,3,56,60,NA,NA +102,NA,1385,"2017",1,0,40,2,60,50,NA,NA +102,NA,1386,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1387,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1388,"2017",5,1,70,1,70,NA,NA,NA +102,NA,1389,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1390,"2017",6,0,20,1,80,NA,NA,NA +102,NA,1391,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1391,"2017",1,1,99,3,99,99,NA,NA +102,NA,1391,"2017",1,1,99,2,99,99,NA,NA +102,NA,1391,"2017",1,1,1,4,1,99,NA,NA +102,NA,1392,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1393,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1394,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1395,"2017",3,1,80,1,80,NA,NA,NA +102,NA,1396,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1397,"2017",4,1,1,1,1,NA,NA,NA +102,NA,1398,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1399,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1400,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1401,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1402,"2017",3,0,90,1,10,NA,NA,NA +102,NA,1403,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1404,"2017",6,1,40,1,40,NA,NA,NA +102,NA,1405,"2017",6,1,1,1,1,NA,NA,NA +102,NA,1406,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1407,"2017",4,0,40,1,60,NA,NA,NA +102,NA,1408,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1409,"2017",1,0,50,4,50,50,NA,NA +102,NA,1409,"2017",1,0,50,3,50,50,NA,NA +102,NA,1409,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1409,"2017",1,0,50,2,50,50,NA,NA +102,NA,1410,"2017",4,0,0,1,100,NA,NA,NA +102,NA,1411,"2017",1,1,99,3,99,99,NA,NA +102,NA,1411,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1411,"2017",1,1,NA,4,NA,99,NA,NA +102,NA,1411,"2017",1,1,99,2,99,99,NA,NA +102,NA,1412,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1413,"2017",2,1,1,1,1,NA,NA,NA +102,NA,1414,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1415,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1416,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1417,"2017",4,0,40,1,60,NA,NA,NA +102,NA,1418,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1419,"2017",1,1,9,3,9,50,NA,NA +102,NA,1419,"2017",1,1,99,4,99,9,NA,NA +102,NA,1419,"2017",1,1,50,2,50,99,NA,NA +102,NA,1419,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1420,"2017",6,1,NA,1,NA,NA,NA,NA +102,NA,1421,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1422,"2017",6,1,90,1,90,NA,NA,NA +102,NA,1423,"2017",3,1,80,1,80,NA,NA,NA +102,NA,1424,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1425,"2017",4,1,1,1,1,NA,NA,NA +102,NA,1426,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1427,"2017",5,1,1,1,1,NA,NA,NA +102,NA,1428,"2017",5,1,NA,1,NA,NA,NA,NA +102,NA,1429,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1430,"2017",1,0,50,3,50,50,NA,NA +102,NA,1430,"2017",1,0,99,4,1,50,NA,NA +102,NA,1430,"2017",1,0,50,2,50,50,NA,NA +102,NA,1430,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1431,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1432,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1433,"2017",1,1,99,3,99,99,NA,NA +102,NA,1433,"2017",1,1,99,2,99,60,NA,NA +102,NA,1433,"2017",1,1,99,4,99,99,NA,NA +102,NA,1433,"2017",1,1,60,1,60,NA,NA,NA +102,NA,1434,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1435,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1436,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1437,"2017",1,1,99,2,99,99,NA,NA +102,NA,1437,"2017",1,1,99,3,99,99,NA,NA +102,NA,1437,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1437,"2017",1,1,99,4,99,99,NA,NA +102,NA,1438,"2017",1,0,0,2,100,1,NA,NA +102,NA,1438,"2017",1,0,0,4,100,1,NA,NA +102,NA,1438,"2017",1,0,99,3,1,100,NA,NA +102,NA,1438,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1439,"2017",5,1,1,1,1,NA,NA,NA +102,NA,1440,"2017",4,0,5,1,95,NA,NA,NA +102,NA,1441,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1442,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1443,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1444,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1445,"2017",1,1,50,3,50,50,NA,NA +102,NA,1445,"2017",1,1,49,1,49,NA,NA,NA +102,NA,1445,"2017",1,1,50,2,50,49,NA,NA +102,NA,1445,"2017",1,1,99,4,99,50,NA,NA +102,NA,1446,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1447,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,1447,"2017",1,0,NA,3,NA,NA,NA,NA +102,NA,1447,"2017",1,0,NA,2,NA,NA,NA,NA +102,NA,1447,"2017",1,0,99,4,1,NA,NA,NA +102,NA,1448,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1449,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1450,"2017",3,1,80,1,80,NA,NA,NA +102,NA,1451,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1452,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1453,"2017",2,0,10,1,90,NA,NA,NA +102,NA,1454,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1455,"2017",1,1,60,4,60,40,NA,NA +102,NA,1455,"2017",1,1,50,2,50,60,NA,NA +102,NA,1455,"2017",1,1,60,1,60,NA,NA,NA +102,NA,1455,"2017",1,1,40,3,40,50,NA,NA +102,NA,1456,"2017",1,0,1,2,99,1,NA,NA +102,NA,1456,"2017",1,0,1,3,99,99,NA,NA +102,NA,1456,"2017",1,0,1,4,99,99,NA,NA +102,NA,1456,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1457,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1458,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1459,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1460,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1461,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1462,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1463,"2017",1,0,1,4,99,99,NA,NA +102,NA,1463,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1463,"2017",1,0,1,3,99,99,NA,NA +102,NA,1463,"2017",1,0,1,2,99,99,NA,NA +102,NA,1464,"2017",2,0,30,1,70,NA,NA,NA +102,NA,1465,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1466,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1467,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1468,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1469,"2017",1,0,99,2,1,50,NA,NA +102,NA,1469,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1469,"2017",1,0,1,4,99,1,NA,NA +102,NA,1469,"2017",1,0,99,3,1,1,NA,NA +102,NA,1470,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1471,"2017",1,0,1,4,99,50,NA,NA +102,NA,1471,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1471,"2017",1,0,50,3,50,1,NA,NA +102,NA,1471,"2017",1,0,99,2,1,99,NA,NA +102,NA,1472,"2017",4,0,NA,1,NA,NA,NA,NA +102,NA,1473,"2017",5,0,10,1,90,NA,NA,NA +102,NA,1474,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1475,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1476,"2017",1,1,99,4,99,99,NA,NA +102,NA,1476,"2017",1,1,99,3,99,99,NA,NA +102,NA,1476,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1476,"2017",1,1,99,2,99,99,NA,NA +102,NA,1477,"2017",1,1,50,4,50,50,NA,NA +102,NA,1477,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1477,"2017",1,1,50,3,50,50,NA,NA +102,NA,1477,"2017",1,1,50,2,50,50,NA,NA +102,NA,1478,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1479,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1480,"2017",6,1,NA,1,NA,NA,NA,NA +102,NA,1481,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1482,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1483,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1484,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1485,"2017",1,0,NA,4,NA,97,NA,NA +102,NA,1485,"2017",1,0,22,1,78,NA,NA,NA +102,NA,1485,"2017",1,0,1,2,99,78,NA,NA +102,NA,1485,"2017",1,0,3,3,97,99,NA,NA +102,NA,1486,"2017",1,1,99,2,99,99,NA,NA +102,NA,1486,"2017",1,1,99,4,99,99,NA,NA +102,NA,1486,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1486,"2017",1,1,99,3,99,99,NA,NA +102,NA,1487,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1488,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1489,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1490,"2017",1,1,1,3,1,5,NA,NA +102,NA,1490,"2017",1,1,NA,4,NA,1,NA,NA +102,NA,1490,"2017",1,1,5,2,5,99,NA,NA +102,NA,1490,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1491,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1492,"2017",1,0,85,4,15,47,NA,NA +102,NA,1492,"2017",1,0,53,3,47,85,NA,NA +102,NA,1492,"2017",1,0,15,2,85,65,NA,NA +102,NA,1492,"2017",1,0,35,1,65,NA,NA,NA +102,NA,1493,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1494,"2017",5,1,1,1,1,NA,NA,NA +102,NA,1495,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1496,"2017",1,1,1,4,1,99,NA,NA +102,NA,1496,"2017",1,1,99,2,99,99,NA,NA +102,NA,1496,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1496,"2017",1,1,99,3,99,99,NA,NA +102,NA,1497,"2017",5,1,90,1,90,NA,NA,NA +102,NA,1498,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1499,"2017",1,0,50,4,50,40,NA,NA +102,NA,1499,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1499,"2017",1,0,60,3,40,20,NA,NA +102,NA,1499,"2017",1,0,80,2,20,50,NA,NA +102,NA,1500,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1501,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1502,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1503,"2017",6,1,90,1,90,NA,NA,NA +102,NA,1504,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1505,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1506,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1507,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1508,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1509,"2017",5,0,60,1,40,NA,NA,NA +102,NA,1510,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1511,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1512,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1513,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1514,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1515,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1516,"2017",4,1,1,1,1,NA,NA,NA +102,NA,1517,"2017",4,1,85,1,85,NA,NA,NA +102,NA,1518,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1519,"2017",6,1,12,1,12,NA,NA,NA +102,NA,1520,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1521,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1522,"2017",2,0,75,1,25,NA,NA,NA +102,NA,1523,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1524,"2017",2,0,5,1,95,NA,NA,NA +102,NA,1525,"2017",5,0,40,1,60,NA,NA,NA +102,NA,1526,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1527,"2017",4,0,NA,1,NA,NA,NA,NA +102,NA,1528,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1529,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1530,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1531,"2017",2,0,22,1,78,NA,NA,NA +102,NA,1532,"2017",6,0,85,1,15,NA,NA,NA +102,NA,1533,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1534,"2017",1,1,NA,3,NA,NA,NA,NA +102,NA,1534,"2017",1,1,NA,2,NA,50,NA,NA +102,NA,1534,"2017",1,1,50,4,50,NA,NA,NA +102,NA,1534,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1535,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1536,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1537,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1538,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1539,"2017",2,0,43,1,57,NA,NA,NA +102,NA,1540,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1541,"2017",1,0,99,4,1,1,NA,NA +102,NA,1541,"2017",1,0,NA,2,NA,10,NA,NA +102,NA,1541,"2017",1,0,90,1,10,NA,NA,NA +102,NA,1541,"2017",1,0,99,3,1,NA,NA,NA +102,NA,1542,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1542,"2017",1,1,90,4,90,90,NA,NA +102,NA,1542,"2017",1,1,90,3,90,90,NA,NA +102,NA,1542,"2017",1,1,90,2,90,50,NA,NA +102,NA,1543,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1544,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1545,"2017",1,1,99,2,99,99,NA,NA +102,NA,1545,"2017",1,1,99,3,99,99,NA,NA +102,NA,1545,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1545,"2017",1,1,99,4,99,99,NA,NA +102,NA,1546,"2017",3,0,NA,1,NA,NA,NA,NA +102,NA,1547,"2017",3,1,80,1,80,NA,NA,NA +102,NA,1548,"2017",1,1,1,2,1,50,NA,NA +102,NA,1548,"2017",1,1,50,3,50,1,NA,NA +102,NA,1548,"2017",1,1,99,4,99,50,NA,NA +102,NA,1548,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1549,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1550,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1551,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1552,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1553,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1554,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1555,"2017",2,1,1,1,1,NA,NA,NA +102,NA,1556,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1557,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1558,"2017",1,1,99,2,99,90,NA,NA +102,NA,1558,"2017",1,1,50,3,50,99,NA,NA +102,NA,1558,"2017",1,1,NA,4,NA,50,NA,NA +102,NA,1558,"2017",1,1,90,1,90,NA,NA,NA +102,NA,1559,"2017",3,1,98,1,98,NA,NA,NA +102,NA,1560,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1561,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1562,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1563,"2017",6,1,79,1,79,NA,NA,NA +102,NA,1564,"2017",6,0,20,1,80,NA,NA,NA +102,NA,1565,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1566,"2017",1,0,99,2,1,99,NA,NA +102,NA,1566,"2017",1,0,1,3,99,1,NA,NA +102,NA,1566,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1566,"2017",1,0,1,4,99,99,NA,NA +102,NA,1567,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1568,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1569,"2017",1,0,1,3,99,100,NA,NA +102,NA,1569,"2017",1,0,0,2,100,50,NA,NA +102,NA,1569,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1569,"2017",1,0,1,4,99,99,NA,NA +102,NA,1570,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1571,"2017",5,0,70,1,30,NA,NA,NA +102,NA,1572,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1572,"2017",1,1,99,3,99,99,NA,NA +102,NA,1572,"2017",1,1,NA,4,NA,99,NA,NA +102,NA,1572,"2017",1,1,99,2,99,99,NA,NA +102,NA,1573,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1574,"2017",1,1,99,4,99,99,NA,NA +102,NA,1574,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1574,"2017",1,1,99,3,99,99,NA,NA +102,NA,1574,"2017",1,1,99,2,99,99,NA,NA +102,NA,1575,"2017",4,0,100,1,0,NA,NA,NA +102,NA,1576,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1577,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1578,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1579,"2017",2,0,40,1,60,NA,NA,NA +102,NA,1580,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1580,"2017",1,1,99,4,99,99,NA,NA +102,NA,1580,"2017",1,1,99,3,99,99,NA,NA +102,NA,1580,"2017",1,1,99,2,99,50,NA,NA +102,NA,1581,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1582,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1583,"2017",5,1,70,1,70,NA,NA,NA +102,NA,1584,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1584,"2017",1,1,50,2,50,99,NA,NA +102,NA,1584,"2017",1,1,99,4,99,50,NA,NA +102,NA,1584,"2017",1,1,50,3,50,50,NA,NA +102,NA,1585,"2017",4,0,70,1,30,NA,NA,NA +102,NA,1586,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1587,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1588,"2017",1,1,50,2,50,50,NA,NA +102,NA,1588,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1588,"2017",1,1,50,3,50,50,NA,NA +102,NA,1588,"2017",1,1,50,4,50,50,NA,NA +102,NA,1589,"2017",2,1,90,1,90,NA,NA,NA +102,NA,1590,"2017",2,0,NA,1,NA,NA,NA,NA +102,NA,1591,"2017",4,0,NA,1,NA,NA,NA,NA +102,NA,1592,"2017",1,0,50,4,50,93,NA,NA +102,NA,1592,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1592,"2017",1,0,7,2,93,99,NA,NA +102,NA,1592,"2017",1,0,7,3,93,93,NA,NA +102,NA,1593,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1594,"2017",3,1,1,1,1,NA,NA,NA +102,NA,1595,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1596,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1597,"2017",4,0,80,1,20,NA,NA,NA +102,NA,1598,"2017",1,0,1,3,99,NA,NA,NA +102,NA,1598,"2017",1,0,NA,2,NA,50,NA,NA +102,NA,1598,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1598,"2017",1,0,1,4,99,99,NA,NA +102,NA,1599,"2017",4,1,NA,1,NA,NA,NA,NA +102,NA,1600,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1601,"2017",5,1,80,1,80,NA,NA,NA +102,NA,1602,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1603,"2017",3,1,NA,1,NA,NA,NA,NA +102,NA,1604,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1605,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1606,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1607,"2017",3,0,20,1,80,NA,NA,NA +102,NA,1608,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1609,"2017",1,1,NA,4,NA,50,NA,NA +102,NA,1609,"2017",1,1,50,3,50,1,NA,NA +102,NA,1609,"2017",1,1,1,1,1,NA,NA,NA +102,NA,1609,"2017",1,1,1,2,1,1,NA,NA +102,NA,1610,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1611,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1612,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1613,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1614,"2017",4,1,85,1,85,NA,NA,NA +102,NA,1615,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1616,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1617,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1618,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1619,"2017",5,0,NA,1,NA,NA,NA,NA +102,NA,1620,"2017",1,1,1,3,1,1,NA,NA +102,NA,1620,"2017",1,1,50,4,50,1,NA,NA +102,NA,1620,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1620,"2017",1,1,1,2,1,50,NA,NA +102,NA,1621,"2017",3,0,60,1,40,NA,NA,NA +102,NA,1622,"2017",3,0,NA,1,NA,NA,NA,NA +102,NA,1623,"2017",2,1,NA,1,NA,NA,NA,NA +102,NA,1624,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1625,"2017",5,0,20,1,80,NA,NA,NA +102,NA,1626,"2017",2,0,NA,1,NA,NA,NA,NA +102,NA,1627,"2017",6,1,60,1,60,NA,NA,NA +102,NA,1628,"2017",3,0,40,1,60,NA,NA,NA +102,NA,1629,"2017",4,1,80,1,80,NA,NA,NA +102,NA,1630,"2017",5,0,60,1,40,NA,NA,NA +102,NA,1631,"2017",3,1,NA,1,NA,NA,NA,NA +102,NA,1632,"2017",6,1,60,1,60,NA,NA,NA +102,NA,1633,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1634,"2017",4,1,40,1,40,NA,NA,NA +102,NA,1635,"2017",6,0,40,1,60,NA,NA,NA +102,NA,1636,"2017",1,1,70,3,70,80,NA,NA +102,NA,1636,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1636,"2017",1,1,80,2,80,99,NA,NA +102,NA,1636,"2017",1,1,60,4,60,70,NA,NA +102,NA,1637,"2017",3,1,80,1,80,NA,NA,NA +102,NA,1638,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1639,"2017",1,1,1,4,1,99,NA,NA +102,NA,1639,"2017",1,1,99,2,99,NA,NA,NA +102,NA,1639,"2017",1,1,99,3,99,99,NA,NA +102,NA,1639,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1640,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1641,"2017",6,0,90,1,10,NA,NA,NA +102,NA,1642,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1643,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1644,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1645,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1646,"2017",4,0,80,1,20,NA,NA,NA +102,NA,1647,"2017",1,1,99,4,99,NA,NA,NA +102,NA,1647,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1647,"2017",1,1,99,2,99,NA,NA,NA +102,NA,1647,"2017",1,1,NA,3,NA,99,NA,NA +102,NA,1648,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1649,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1650,"2017",2,1,NA,1,NA,NA,NA,NA +102,NA,1651,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1652,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1653,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1654,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1655,"2017",2,1,100,1,100,NA,NA,NA +102,NA,1656,"2017",1,1,NA,3,NA,50,NA,NA +102,NA,1656,"2017",1,1,60,4,60,NA,NA,NA +102,NA,1656,"2017",1,1,40,1,40,NA,NA,NA +102,NA,1656,"2017",1,1,50,2,50,40,NA,NA +102,NA,1657,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1658,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1659,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1660,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1661,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1662,"2017",1,1,50,3,50,50,NA,NA +102,NA,1662,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1662,"2017",1,1,50,2,50,NA,NA,NA +102,NA,1662,"2017",1,1,90,4,90,50,NA,NA +102,NA,1663,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1664,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1665,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1666,"2017",3,1,90,1,90,NA,NA,NA +102,NA,1667,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1668,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1669,"2017",4,0,30,1,70,NA,NA,NA +102,NA,1670,"2017",1,1,99,4,99,99,NA,NA +102,NA,1670,"2017",1,1,99,3,99,99,NA,NA +102,NA,1670,"2017",1,1,99,2,99,90,NA,NA +102,NA,1670,"2017",1,1,90,1,90,NA,NA,NA +102,NA,1671,"2017",1,1,99,4,99,99,NA,NA +102,NA,1671,"2017",1,1,99,3,99,1,NA,NA +102,NA,1671,"2017",1,1,1,2,1,99,NA,NA +102,NA,1671,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1672,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1673,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1674,"2017",1,1,80,3,80,NA,NA,NA +102,NA,1674,"2017",1,1,NA,2,NA,NA,NA,NA +102,NA,1674,"2017",1,1,NA,4,NA,80,NA,NA +102,NA,1674,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1675,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1676,"2017",1,0,6.6,1,93.4,NA,NA,NA +102,NA,1676,"2017",1,0,6.5,3,93.5,93.2,NA,NA +102,NA,1676,"2017",1,0,6.6,4,93.4,93.5,NA,NA +102,NA,1676,"2017",1,0,6.8,2,93.2,93.4,NA,NA +102,NA,1677,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1678,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1679,"2017",1,1,99,4,99,99,NA,NA +102,NA,1679,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1679,"2017",1,1,99,3,99,NA,NA,NA +102,NA,1679,"2017",1,1,NA,2,NA,99,NA,NA +102,NA,1680,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1681,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1682,"2017",6,0,70,1,30,NA,NA,NA +102,NA,1683,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1684,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1685,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1686,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1687,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1688,"2017",2,0,80,1,20,NA,NA,NA +102,NA,1689,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1690,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1691,"2017",4,0,55,1,45,NA,NA,NA +102,NA,1692,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1693,"2017",1,1,50,4,50,50,NA,NA +102,NA,1693,"2017",1,1,NA,2,NA,NA,NA,NA +102,NA,1693,"2017",1,1,50,3,50,NA,NA,NA +102,NA,1693,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1694,"2017",1,0,50,4,50,90,NA,NA +102,NA,1694,"2017",1,0,10,2,90,1,NA,NA +102,NA,1694,"2017",1,0,10,3,90,90,NA,NA +102,NA,1694,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1695,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1696,"2017",5,1,95,1,95,NA,NA,NA +102,NA,1697,"2017",1,1,70,2,70,50,NA,NA +102,NA,1697,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1697,"2017",1,1,90,4,90,80,NA,NA +102,NA,1697,"2017",1,1,80,3,80,70,NA,NA +102,NA,1698,"2017",1,0,50,2,50,40,NA,NA +102,NA,1698,"2017",1,0,60,3,40,50,NA,NA +102,NA,1698,"2017",1,0,40,4,60,40,NA,NA +102,NA,1698,"2017",1,0,60,1,40,NA,NA,NA +102,NA,1699,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1700,"2017",2,0,2,1,98,NA,NA,NA +102,NA,1701,"2017",4,1,70,1,70,NA,NA,NA +102,NA,1702,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1703,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1704,"2017",2,0,0,1,100,NA,NA,NA +102,NA,1705,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1706,"2017",2,1,NA,1,NA,NA,NA,NA +102,NA,1707,"2017",3,0,20,1,80,NA,NA,NA +102,NA,1708,"2017",5,0,70,1,30,NA,NA,NA +102,NA,1709,"2017",1,0,1,4,99,99,NA,NA +102,NA,1709,"2017",1,0,1,2,99,80,NA,NA +102,NA,1709,"2017",1,0,20,1,80,NA,NA,NA +102,NA,1709,"2017",1,0,1,3,99,99,NA,NA +102,NA,1710,"2017",3,1,80,1,80,NA,NA,NA +102,NA,1711,"2017",6,0,100,1,0,NA,NA,NA +102,NA,1712,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1713,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1713,"2017",1,1,99,4,99,99,NA,NA +102,NA,1713,"2017",1,1,99,3,99,1,NA,NA +102,NA,1713,"2017",1,1,1,2,1,99,NA,NA +102,NA,1714,"2017",2,0,40,1,60,NA,NA,NA +102,NA,1715,"2017",5,1,22,1,22,NA,NA,NA +102,NA,1716,"2017",5,1,1,1,1,NA,NA,NA +102,NA,1717,"2017",4,0,30,1,70,NA,NA,NA +102,NA,1718,"2017",6,1,98,1,98,NA,NA,NA +102,NA,1719,"2017",5,0,2,1,98,NA,NA,NA +102,NA,1720,"2017",2,0,NA,1,NA,NA,NA,NA +102,NA,1721,"2017",1,0,1,2,99,99,NA,NA +102,NA,1721,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1721,"2017",1,0,1,3,99,99,NA,NA +102,NA,1721,"2017",1,0,50,4,50,99,NA,NA +102,NA,1722,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1723,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1724,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1725,"2017",3,0,NA,1,NA,NA,NA,NA +102,NA,1726,"2017",4,0,22,1,78,NA,NA,NA +102,NA,1727,"2017",1,0,65,4,35,42,NA,NA +102,NA,1727,"2017",1,0,58,3,42,14,NA,NA +102,NA,1727,"2017",1,0,86,2,14,32,NA,NA +102,NA,1727,"2017",1,0,68,1,32,NA,NA,NA +102,NA,1728,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1729,"2017",6,1,45,1,45,NA,NA,NA +102,NA,1730,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1731,"2017",1,0,36,3,64,75,NA,NA +102,NA,1731,"2017",1,0,24,1,76,NA,NA,NA +102,NA,1731,"2017",1,0,25,4,75,64,NA,NA +102,NA,1731,"2017",1,0,25,2,75,76,NA,NA +102,NA,1732,"2017",3,1,NA,1,NA,NA,NA,NA +102,NA,1733,"2017",5,1,1,1,1,NA,NA,NA +102,NA,1734,"2017",1,0,30,1,70,NA,NA,NA +102,NA,1734,"2017",1,0,30,4,70,80,NA,NA +102,NA,1734,"2017",1,0,20,2,80,70,NA,NA +102,NA,1734,"2017",1,0,20,3,80,80,NA,NA +102,NA,1735,"2017",5,0,20,1,80,NA,NA,NA +102,NA,1736,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1737,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1738,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1739,"2017",4,0,50,1,50,NA,NA,NA +102,NA,1740,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1741,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1742,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1743,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1744,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1745,"2017",1,0,50,4,50,50,NA,NA +102,NA,1745,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1745,"2017",1,0,50,2,50,50,NA,NA +102,NA,1745,"2017",1,0,50,3,50,50,NA,NA +102,NA,1746,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1747,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1747,"2017",1,1,50,3,50,99,NA,NA +102,NA,1747,"2017",1,1,99,2,99,50,NA,NA +102,NA,1747,"2017",1,1,99,4,99,50,NA,NA +102,NA,1748,"2017",1,1,99,4,99,50,NA,NA +102,NA,1748,"2017",1,1,50,3,50,99,NA,NA +102,NA,1748,"2017",1,1,99,2,99,100,NA,NA +102,NA,1748,"2017",1,1,100,1,100,NA,NA,NA +102,NA,1749,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1750,"2017",1,0,50,2,50,50,NA,NA +102,NA,1750,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1750,"2017",1,0,50,3,50,50,NA,NA +102,NA,1750,"2017",1,0,99,4,1,50,NA,NA +102,NA,1751,"2017",1,1,99,2,99,99,NA,NA +102,NA,1751,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1751,"2017",1,1,99,4,99,99,NA,NA +102,NA,1751,"2017",1,1,99,3,99,99,NA,NA +102,NA,1752,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1753,"2017",2,1,30,1,30,NA,NA,NA +102,NA,1754,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1755,"2017",3,1,70,1,70,NA,NA,NA +102,NA,1756,"2017",2,0,NA,1,NA,NA,NA,NA +102,NA,1757,"2017",2,0,40,1,60,NA,NA,NA +102,NA,1758,"2017",1,0,11,3,89,1,NA,NA +102,NA,1758,"2017",1,0,99,2,1,1,NA,NA +102,NA,1758,"2017",1,0,1,4,99,89,NA,NA +102,NA,1758,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1759,"2017",6,1,92,1,92,NA,NA,NA +102,NA,1760,"2017",5,0,51,1,49,NA,NA,NA +102,NA,1761,"2017",6,0,58,1,42,NA,NA,NA +102,NA,1762,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1763,"2017",2,1,90,1,90,NA,NA,NA +102,NA,1764,"2017",1,0,1,4,99,25,NA,NA +102,NA,1764,"2017",1,0,75,3,25,99,NA,NA +102,NA,1764,"2017",1,0,1,2,99,73,NA,NA +102,NA,1764,"2017",1,0,27,1,73,NA,NA,NA +102,NA,1765,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1766,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1767,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1768,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1769,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1770,"2017",4,0,8,1,92,NA,NA,NA +102,NA,1771,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1772,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1773,"2017",2,0,68,1,32,NA,NA,NA +102,NA,1774,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1775,"2017",3,1,90,1,90,NA,NA,NA +102,NA,1776,"2017",5,1,85,1,85,NA,NA,NA +102,NA,1777,"2017",3,1,97,1,97,NA,NA,NA +102,NA,1778,"2017",5,0,NA,1,NA,NA,NA,NA +102,NA,1779,"2017",4,0,89,1,11,NA,NA,NA +102,NA,1780,"2017",4,1,90,1,90,NA,NA,NA +102,NA,1781,"2017",2,1,89,1,89,NA,NA,NA +102,NA,1782,"2017",5,0,87,1,13,NA,NA,NA +102,NA,1783,"2017",1,0,10,3,90,60,NA,NA +102,NA,1783,"2017",1,0,1,4,99,90,NA,NA +102,NA,1783,"2017",1,0,80,1,20,NA,NA,NA +102,NA,1783,"2017",1,0,40,2,60,20,NA,NA +102,NA,1784,"2017",3,0,86,1,14,NA,NA,NA +102,NA,1785,"2017",5,0,91,1,9,NA,NA,NA +102,NA,1786,"2017",1,0,85,3,15,11,NA,NA +102,NA,1786,"2017",1,0,79,4,21,15,NA,NA +102,NA,1786,"2017",1,0,87,1,13,NA,NA,NA +102,NA,1786,"2017",1,0,89,2,11,13,NA,NA +102,NA,1787,"2017",4,0,83,1,17,NA,NA,NA +102,NA,1788,"2017",4,1,86,1,86,NA,NA,NA +102,NA,1789,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1790,"2017",6,0,16,1,84,NA,NA,NA +102,NA,1791,"2017",2,1,NA,1,NA,NA,NA,NA +102,NA,1792,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1793,"2017",4,1,84,1,84,NA,NA,NA +102,NA,1794,"2017",5,1,77,1,77,NA,NA,NA +102,NA,1795,"2017",1,0,99,2,1,21,NA,NA +102,NA,1795,"2017",1,0,78,3,22,1,NA,NA +102,NA,1795,"2017",1,0,79,1,21,NA,NA,NA +102,NA,1795,"2017",1,0,88,4,12,22,NA,NA +102,NA,1796,"2017",3,1,NA,1,NA,NA,NA,NA +102,NA,1797,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1798,"2017",1,1,NA,2,NA,86,NA,NA +102,NA,1798,"2017",1,1,88,3,88,NA,NA,NA +102,NA,1798,"2017",1,1,86,1,86,NA,NA,NA +102,NA,1798,"2017",1,1,87,4,87,88,NA,NA +102,NA,1799,"2017",4,1,NA,1,NA,NA,NA,NA +102,NA,1800,"2017",6,0,98,1,2,NA,NA,NA +102,NA,1801,"2017",3,0,80,1,20,NA,NA,NA +102,NA,1802,"2017",3,0,83,1,17,NA,NA,NA +102,NA,1803,"2017",1,1,88,1,88,NA,NA,NA +102,NA,1803,"2017",1,1,88,3,88,NA,NA,NA +102,NA,1803,"2017",1,1,NA,2,NA,88,NA,NA +102,NA,1803,"2017",1,1,96,4,96,88,NA,NA +102,NA,1804,"2017",4,1,89,1,89,NA,NA,NA +102,NA,1805,"2017",2,1,88,1,88,NA,NA,NA +102,NA,1806,"2017",5,0,41,1,59,NA,NA,NA +102,NA,1807,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1808,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1809,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1810,"2017",1,0,30,3,70,50,NA,NA +102,NA,1810,"2017",1,0,40,4,60,70,NA,NA +102,NA,1810,"2017",1,0,50,2,50,20,NA,NA +102,NA,1810,"2017",1,0,80,1,20,NA,NA,NA +102,NA,1811,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1812,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1813,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1814,"2017",5,0,60,1,40,NA,NA,NA +102,NA,1815,"2017",4,0,40,1,60,NA,NA,NA +102,NA,1816,"2017",2,1,80,1,80,NA,NA,NA +102,NA,1817,"2017",1,1,50,3,50,20,NA,NA +102,NA,1817,"2017",1,1,80,4,80,50,NA,NA +102,NA,1817,"2017",1,1,54,1,54,NA,NA,NA +102,NA,1817,"2017",1,1,20,2,20,54,NA,NA +102,NA,1818,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1819,"2017",6,1,70,1,70,NA,NA,NA +102,NA,1820,"2017",2,0,20,1,80,NA,NA,NA +102,NA,1821,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1822,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1823,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1824,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1825,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1826,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1827,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1828,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1829,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1830,"2017",2,1,80,1,80,NA,NA,NA +102,NA,1831,"2017",1,0,NA,2,NA,99,NA,NA +102,NA,1831,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1831,"2017",1,0,50,3,50,NA,NA,NA +102,NA,1831,"2017",1,0,99,4,1,50,NA,NA +102,NA,1832,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1833,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1834,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1835,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1836,"2017",3,1,70,1,70,NA,NA,NA +102,NA,1837,"2017",4,1,80,1,80,NA,NA,NA +102,NA,1838,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1839,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1840,"2017",6,0,90,1,10,NA,NA,NA +102,NA,1841,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1841,"2017",1,0,0,2,100,1,NA,NA +102,NA,1841,"2017",1,0,99,3,1,100,NA,NA +102,NA,1841,"2017",1,0,0,4,100,1,NA,NA +102,NA,1842,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1843,"2017",1,1,1,2,1,99,NA,NA +102,NA,1843,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1843,"2017",1,1,99,3,99,1,NA,NA +102,NA,1843,"2017",1,1,1,4,1,99,NA,NA +102,NA,1844,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1845,"2017",5,1,90,1,90,NA,NA,NA +102,NA,1846,"2017",1,0,100,4,0,0,NA,NA +102,NA,1846,"2017",1,0,100,3,0,NA,NA,NA +102,NA,1846,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,1846,"2017",1,0,NA,2,NA,NA,NA,NA +102,NA,1847,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1848,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1849,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1850,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1851,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1852,"2017",6,0,NA,1,NA,NA,NA,NA +102,NA,1853,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1854,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1855,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1856,"2017",5,1,50,1,50,NA,NA,NA +102,NA,1857,"2017",3,0,60,1,40,NA,NA,NA +102,NA,1858,"2017",1,0,99,2,1,99,NA,NA +102,NA,1858,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1858,"2017",1,0,1,3,99,1,NA,NA +102,NA,1858,"2017",1,0,1,4,99,99,NA,NA +102,NA,1859,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1860,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1861,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1862,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1863,"2017",5,1,80,1,80,NA,NA,NA +102,NA,1864,"2017",1,0,NA,2,NA,50,NA,NA +102,NA,1864,"2017",1,0,NA,4,NA,NA,NA,NA +102,NA,1864,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1864,"2017",1,0,NA,3,NA,NA,NA,NA +102,NA,1865,"2017",1,1,50,2,50,50,NA,NA +102,NA,1865,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1865,"2017",1,1,60,4,60,60,NA,NA +102,NA,1865,"2017",1,1,60,3,60,50,NA,NA +102,NA,1866,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1867,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1868,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1869,"2017",5,0,0,1,100,NA,NA,NA +102,NA,1870,"2017",5,0,0,1,100,NA,NA,NA +102,NA,1871,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1872,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1873,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1874,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1875,"2017",6,1,100,1,100,NA,NA,NA +102,NA,1876,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1877,"2017",1,0,99,4,1,10,NA,NA +102,NA,1877,"2017",1,0,99,2,1,10,NA,NA +102,NA,1877,"2017",1,0,90,1,10,NA,NA,NA +102,NA,1877,"2017",1,0,90,3,10,1,NA,NA +102,NA,1878,"2017",2,0,20,1,80,NA,NA,NA +102,NA,1879,"2017",1,0,75,4,25,80,NA,NA +102,NA,1879,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1879,"2017",1,0,20,2,80,50,NA,NA +102,NA,1879,"2017",1,0,20,3,80,80,NA,NA +102,NA,1880,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1881,"2017",5,0,99,1,1,NA,NA,NA +102,NA,1882,"2017",1,0,50,3,50,50,NA,NA +102,NA,1882,"2017",1,0,50,2,50,1,NA,NA +102,NA,1882,"2017",1,0,50,4,50,50,NA,NA +102,NA,1882,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1883,"2017",3,0,65,1,35,NA,NA,NA +102,NA,1884,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1885,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1886,"2017",2,0,30,1,70,NA,NA,NA +102,NA,1887,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1888,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1889,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1890,"2017",1,0,0,3,100,100,NA,NA +102,NA,1890,"2017",1,0,0,2,100,1,NA,NA +102,NA,1890,"2017",1,0,0,4,100,100,NA,NA +102,NA,1890,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1891,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1892,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1893,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1894,"2017",2,0,50,1,50,NA,NA,NA +102,NA,1895,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1896,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1897,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1898,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1899,"2017",1,1,80,1,80,NA,NA,NA +102,NA,1899,"2017",1,1,99,4,99,99,NA,NA +102,NA,1899,"2017",1,1,99,2,99,80,NA,NA +102,NA,1899,"2017",1,1,99,3,99,99,NA,NA +102,NA,1900,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1901,"2017",3,0,2,1,98,NA,NA,NA +102,NA,1902,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1903,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1904,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1905,"2017",5,1,90,1,90,NA,NA,NA +102,NA,1906,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1907,"2017",6,0,90,1,10,NA,NA,NA +102,NA,1908,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1909,"2017",4,1,70,1,70,NA,NA,NA +102,NA,1910,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1911,"2017",3,1,90,1,90,NA,NA,NA +102,NA,1912,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1913,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1914,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1915,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1916,"2017",2,0,85,1,15,NA,NA,NA +102,NA,1917,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1918,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1919,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1920,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1921,"2017",2,1,90,1,90,NA,NA,NA +102,NA,1922,"2017",3,1,50,1,50,NA,NA,NA +102,NA,1923,"2017",1,0,99,4,1,100,NA,NA +102,NA,1923,"2017",1,0,99,2,1,100,NA,NA +102,NA,1923,"2017",1,0,0,3,100,1,NA,NA +102,NA,1923,"2017",1,0,0,1,100,NA,NA,NA +102,NA,1924,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1925,"2017",4,0,100,1,0,NA,NA,NA +102,NA,1926,"2017",1,1,90,3,90,90,NA,NA +102,NA,1926,"2017",1,1,90,2,90,90,NA,NA +102,NA,1926,"2017",1,1,90,1,90,NA,NA,NA +102,NA,1926,"2017",1,1,99,4,99,90,NA,NA +102,NA,1927,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1927,"2017",1,1,95,4,95,80,NA,NA +102,NA,1927,"2017",1,1,99,2,99,99,NA,NA +102,NA,1927,"2017",1,1,80,3,80,99,NA,NA +102,NA,1928,"2017",6,0,85,1,15,NA,NA,NA +102,NA,1929,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1930,"2017",2,1,90,1,90,NA,NA,NA +102,NA,1931,"2017",4,0,80,1,20,NA,NA,NA +102,NA,1932,"2017",1,1,1,4,1,NA,NA,NA +102,NA,1932,"2017",1,1,NA,3,NA,9,NA,NA +102,NA,1932,"2017",1,1,9,2,9,50,NA,NA +102,NA,1932,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1933,"2017",1,1,90,2,90,80,NA,NA +102,NA,1933,"2017",1,1,80,1,80,NA,NA,NA +102,NA,1933,"2017",1,1,99,4,99,99,NA,NA +102,NA,1933,"2017",1,1,99,3,99,90,NA,NA +102,NA,1934,"2017",5,1,60,1,60,NA,NA,NA +102,NA,1935,"2017",5,0,1,1,99,NA,NA,NA +102,NA,1936,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1937,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1938,"2017",5,0,50,1,50,NA,NA,NA +102,NA,1939,"2017",1,0,1,4,99,99,NA,NA +102,NA,1939,"2017",1,0,1,2,99,99,NA,NA +102,NA,1939,"2017",1,0,1,3,99,99,NA,NA +102,NA,1939,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1940,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1941,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1942,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1943,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1944,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1945,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1945,"2017",1,0,1,4,99,99,NA,NA +102,NA,1945,"2017",1,0,1,3,99,NA,NA,NA +102,NA,1945,"2017",1,0,NA,2,NA,50,NA,NA +102,NA,1946,"2017",1,0,1,3,99,1,NA,NA +102,NA,1946,"2017",1,0,50,4,50,99,NA,NA +102,NA,1946,"2017",1,0,99,1,1,NA,NA,NA +102,NA,1946,"2017",1,0,99,2,1,1,NA,NA +102,NA,1947,"2017",6,1,70,1,70,NA,NA,NA +102,NA,1948,"2017",3,0,10,1,90,NA,NA,NA +102,NA,1949,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1950,"2017",1,1,99,2,99,99,NA,NA +102,NA,1950,"2017",1,1,99,4,99,1,NA,NA +102,NA,1950,"2017",1,1,1,3,1,99,NA,NA +102,NA,1950,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1951,"2017",3,0,50,1,50,NA,NA,NA +102,NA,1952,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1953,"2017",4,1,99,1,99,NA,NA,NA +102,NA,1954,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1955,"2017",3,0,60,1,40,NA,NA,NA +102,NA,1956,"2017",4,0,80,1,20,NA,NA,NA +102,NA,1957,"2017",1,0,1,3,99,NA,NA,NA +102,NA,1957,"2017",1,0,1,4,99,99,NA,NA +102,NA,1957,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,1957,"2017",1,0,NA,2,NA,NA,NA,NA +102,NA,1958,"2017",5,1,99,1,99,NA,NA,NA +102,NA,1959,"2017",4,0,20,1,80,NA,NA,NA +102,NA,1960,"2017",2,1,50,1,50,NA,NA,NA +102,NA,1961,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1962,"2017",6,1,90,1,90,NA,NA,NA +102,NA,1963,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1964,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1965,"2017",3,1,99,1,99,NA,NA,NA +102,NA,1966,"2017",3,1,90,1,90,NA,NA,NA +102,NA,1967,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1968,"2017",4,0,1,1,99,NA,NA,NA +102,NA,1969,"2017",6,0,90,1,10,NA,NA,NA +102,NA,1970,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1971,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1972,"2017",1,0,1,4,99,1,NA,NA +102,NA,1972,"2017",1,0,50,1,50,NA,NA,NA +102,NA,1972,"2017",1,0,99,3,1,99,NA,NA +102,NA,1972,"2017",1,0,1,2,99,50,NA,NA +102,NA,1973,"2017",2,0,99,1,1,NA,NA,NA +102,NA,1974,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1975,"2017",6,0,99,1,1,NA,NA,NA +102,NA,1976,"2017",6,1,50,1,50,NA,NA,NA +102,NA,1977,"2017",6,1,99,1,99,NA,NA,NA +102,NA,1978,"2017",3,1,55,1,55,NA,NA,NA +102,NA,1979,"2017",3,0,99,1,1,NA,NA,NA +102,NA,1980,"2017",4,0,70,1,30,NA,NA,NA +102,NA,1981,"2017",6,0,1,1,99,NA,NA,NA +102,NA,1982,"2017",1,1,NA,2,NA,NA,NA,NA +102,NA,1982,"2017",1,1,99,3,99,NA,NA,NA +102,NA,1982,"2017",1,1,NA,4,NA,99,NA,NA +102,NA,1982,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,1983,"2017",4,0,70,1,30,NA,NA,NA +102,NA,1984,"2017",3,0,1,1,99,NA,NA,NA +102,NA,1985,"2017",4,1,50,1,50,NA,NA,NA +102,NA,1986,"2017",1,1,99,3,99,NA,NA,NA +102,NA,1986,"2017",1,1,99,1,99,NA,NA,NA +102,NA,1986,"2017",1,1,NA,2,NA,99,NA,NA +102,NA,1986,"2017",1,1,NA,4,NA,99,NA,NA +102,NA,1987,"2017",4,0,90,1,10,NA,NA,NA +102,NA,1988,"2017",2,1,99,1,99,NA,NA,NA +102,NA,1989,"2017",3,1,100,1,100,NA,NA,NA +102,NA,1990,"2017",1,1,50,1,50,NA,NA,NA +102,NA,1990,"2017",1,1,50,4,50,50,NA,NA +102,NA,1990,"2017",1,1,50,3,50,50,NA,NA +102,NA,1990,"2017",1,1,50,2,50,50,NA,NA +102,NA,1991,"2017",1,1,NA,4,NA,99,NA,NA +102,NA,1991,"2017",1,1,1,2,1,1,NA,NA +102,NA,1991,"2017",1,1,1,1,1,NA,NA,NA +102,NA,1991,"2017",1,1,99,3,99,1,NA,NA +102,NA,1992,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1993,"2017",4,0,99,1,1,NA,NA,NA +102,NA,1994,"2017",6,0,50,1,50,NA,NA,NA +102,NA,1995,"2017",5,0,60,1,40,NA,NA,NA +102,NA,1996,"2017",2,0,1,1,99,NA,NA,NA +102,NA,1997,"2017",1,0,1,2,99,99,NA,NA +102,NA,1997,"2017",1,0,1,3,99,99,NA,NA +102,NA,1997,"2017",1,0,50,4,50,99,NA,NA +102,NA,1997,"2017",1,0,1,1,99,NA,NA,NA +102,NA,1998,"2017",6,1,40,1,40,NA,NA,NA +102,NA,1999,"2017",2,0,20,1,80,NA,NA,NA +102,NA,2000,"2017",6,1,60,1,60,NA,NA,NA +102,NA,2001,"2017",1,0,0,1,100,NA,NA,NA +102,NA,2001,"2017",1,0,50,4,50,40,NA,NA +102,NA,2001,"2017",1,0,99,2,1,100,NA,NA +102,NA,2001,"2017",1,0,60,3,40,1,NA,NA +102,NA,2002,"2017",3,0,50,1,50,NA,NA,NA +102,NA,2003,"2017",2,0,10,1,90,NA,NA,NA +102,NA,2004,"2017",4,0,1,1,99,NA,NA,NA +102,NA,2005,"2017",2,1,99,1,99,NA,NA,NA +102,NA,2006,"2017",6,1,100,1,100,NA,NA,NA +102,NA,2007,"2017",5,1,100,1,100,NA,NA,NA +102,NA,2008,"2017",2,1,99,1,99,NA,NA,NA +102,NA,2009,"2017",6,0,50,1,50,NA,NA,NA +102,NA,2010,"2017",3,1,50,1,50,NA,NA,NA +102,NA,2011,"2017",2,0,NA,1,NA,NA,NA,NA +102,NA,2012,"2017",4,0,50,1,50,NA,NA,NA +102,NA,2013,"2017",4,1,80,1,80,NA,NA,NA +102,NA,2014,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2015,"2017",6,0,90,1,10,NA,NA,NA +102,NA,2016,"2017",4,1,90,1,90,NA,NA,NA +102,NA,2017,"2017",1,1,99,4,99,99,NA,NA +102,NA,2017,"2017",1,1,50,2,50,99,NA,NA +102,NA,2017,"2017",1,1,99,1,99,NA,NA,NA +102,NA,2017,"2017",1,1,99,3,99,50,NA,NA +102,NA,2018,"2017",4,0,50,1,50,NA,NA,NA +102,NA,2019,"2017",5,0,40,1,60,NA,NA,NA +102,NA,2020,"2017",2,1,99,1,99,NA,NA,NA +102,NA,2021,"2017",5,0,60,1,40,NA,NA,NA +102,NA,2022,"2017",3,0,30,1,70,NA,NA,NA +102,NA,2023,"2017",4,0,99,1,1,NA,NA,NA +102,NA,2024,"2017",5,1,50,1,50,NA,NA,NA +102,NA,2025,"2017",2,0,0,1,100,NA,NA,NA +102,NA,2026,"2017",3,1,80,1,80,NA,NA,NA +102,NA,2027,"2017",3,1,2,1,2,NA,NA,NA +102,NA,2028,"2017",6,0,70,1,30,NA,NA,NA +102,NA,2029,"2017",5,0,NA,1,NA,NA,NA,NA +102,NA,2030,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2031,"2017",3,0,99,1,1,NA,NA,NA +102,NA,2032,"2017",1,1,80,1,80,NA,NA,NA +102,NA,2032,"2017",1,1,50,4,50,99,NA,NA +102,NA,2032,"2017",1,1,99,3,99,90,NA,NA +102,NA,2032,"2017",1,1,90,2,90,80,NA,NA +102,NA,2033,"2017",2,1,99,1,99,NA,NA,NA +102,NA,2034,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2035,"2017",2,1,90,1,90,NA,NA,NA +102,NA,2036,"2017",2,0,1,1,99,NA,NA,NA +102,NA,2037,"2017",3,0,1,1,99,NA,NA,NA +102,NA,2038,"2017",1,0,1,1,99,NA,NA,NA +102,NA,2038,"2017",1,0,1,3,99,99,NA,NA +102,NA,2038,"2017",1,0,1,2,99,99,NA,NA +102,NA,2038,"2017",1,0,2,4,98,99,NA,NA +102,NA,2039,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2040,"2017",4,1,90,1,90,NA,NA,NA +102,NA,2041,"2017",3,1,100,1,100,NA,NA,NA +102,NA,2042,"2017",6,1,80,1,80,NA,NA,NA +102,NA,2043,"2017",3,1,90,1,90,NA,NA,NA +102,NA,2044,"2017",1,0,20,3,80,70,NA,NA +102,NA,2044,"2017",1,0,0,1,100,NA,NA,NA +102,NA,2044,"2017",1,0,30,2,70,100,NA,NA +102,NA,2044,"2017",1,0,20,4,80,80,NA,NA +102,NA,2045,"2017",6,0,1,1,99,NA,NA,NA +102,NA,2046,"2017",2,1,99,1,99,NA,NA,NA +102,NA,2047,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2048,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2049,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2050,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2051,"2017",2,0,99,1,1,NA,NA,NA +102,NA,2052,"2017",3,1,90,1,90,NA,NA,NA +102,NA,2053,"2017",1,0,50,1,50,NA,NA,NA +102,NA,2053,"2017",1,0,50,3,50,50,NA,NA +102,NA,2053,"2017",1,0,50,2,50,50,NA,NA +102,NA,2053,"2017",1,0,20,4,80,50,NA,NA +102,NA,2054,"2017",1,0,99,4,1,1,NA,NA +102,NA,2054,"2017",1,0,99,2,1,NA,NA,NA +102,NA,2054,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,2054,"2017",1,0,99,3,1,1,NA,NA +102,NA,2055,"2017",6,1,70,1,70,NA,NA,NA +102,NA,2056,"2017",6,0,50,1,50,NA,NA,NA +102,NA,2057,"2017",6,1,99,1,99,NA,NA,NA +102,NA,2058,"2017",6,0,30,1,70,NA,NA,NA +102,NA,2059,"2017",6,1,99,1,99,NA,NA,NA +102,NA,2060,"2017",6,0,1,1,99,NA,NA,NA +102,NA,2061,"2017",1,1,99,4,99,99,NA,NA +102,NA,2061,"2017",1,1,NA,2,NA,NA,NA,NA +102,NA,2061,"2017",1,1,99,3,99,NA,NA,NA +102,NA,2061,"2017",1,1,NA,1,NA,NA,NA,NA +102,NA,2062,"2017",1,0,1,2,99,99,NA,NA +102,NA,2062,"2017",1,0,1,3,99,99,NA,NA +102,NA,2062,"2017",1,0,1,4,99,99,NA,NA +102,NA,2062,"2017",1,0,1,1,99,NA,NA,NA +102,NA,2063,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2064,"2017",1,0,30,1,70,NA,NA,NA +102,NA,2064,"2017",1,0,1,4,99,1,NA,NA +102,NA,2064,"2017",1,0,99,3,1,99,NA,NA +102,NA,2064,"2017",1,0,1,2,99,70,NA,NA +102,NA,2065,"2017",2,1,99,1,99,NA,NA,NA +102,NA,2066,"2017",6,0,NA,1,NA,NA,NA,NA +102,NA,2067,"2017",2,0,1,1,99,NA,NA,NA +102,NA,2068,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2069,"2017",2,0,99,1,1,NA,NA,NA +102,NA,2070,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2071,"2017",2,0,99,1,1,NA,NA,NA +102,NA,2072,"2017",5,1,80,1,80,NA,NA,NA +102,NA,2073,"2017",6,1,99,1,99,NA,NA,NA +102,NA,2074,"2017",6,0,1,1,99,NA,NA,NA +102,NA,2075,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2076,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2077,"2017",3,0,1,1,99,NA,NA,NA +102,NA,2078,"2017",5,0,70,1,30,NA,NA,NA +102,NA,2079,"2017",4,0,1,1,99,NA,NA,NA +102,NA,2080,"2017",3,0,70,1,30,NA,NA,NA +102,NA,2081,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2082,"2017",5,0,1,1,99,NA,NA,NA +102,NA,2083,"2017",1,0,1,3,99,90,NA,NA +102,NA,2083,"2017",1,0,10,1,90,NA,NA,NA +102,NA,2083,"2017",1,0,10,2,90,90,NA,NA +102,NA,2083,"2017",1,0,1,4,99,99,NA,NA +102,NA,2084,"2017",6,1,99,1,99,NA,NA,NA +102,NA,2085,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2086,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2087,"2017",6,0,99,1,1,NA,NA,NA +102,NA,2088,"2017",1,0,45,3,55,70,NA,NA +102,NA,2088,"2017",1,0,45,4,55,55,NA,NA +102,NA,2088,"2017",1,0,30,2,70,NA,NA,NA +102,NA,2088,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,2089,"2017",1,0,NA,4,NA,NA,NA,NA +102,NA,2089,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,2089,"2017",1,0,NA,3,NA,NA,NA,NA +102,NA,2089,"2017",1,0,NA,2,NA,NA,NA,NA +102,NA,2090,"2017",2,0,99,1,1,NA,NA,NA +102,NA,2091,"2017",4,0,50,1,50,NA,NA,NA +102,NA,2092,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2093,"2017",6,1,80,1,80,NA,NA,NA +102,NA,2094,"2017",2,0,90,1,10,NA,NA,NA +102,NA,2095,"2017",6,0,20,1,80,NA,NA,NA +102,NA,2096,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2097,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2098,"2017",6,1,99,1,99,NA,NA,NA +102,NA,2099,"2017",1,1,99,4,99,99,NA,NA +102,NA,2099,"2017",1,1,99,3,99,99,NA,NA +102,NA,2099,"2017",1,1,99,2,99,99,NA,NA +102,NA,2099,"2017",1,1,99,1,99,NA,NA,NA +102,NA,2100,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2101,"2017",5,0,99,1,1,NA,NA,NA +102,NA,2102,"2017",5,0,50,1,50,NA,NA,NA +102,NA,2103,"2017",1,0,99,3,1,1,NA,NA +102,NA,2103,"2017",1,0,0,1,100,NA,NA,NA +102,NA,2103,"2017",1,0,99,4,1,1,NA,NA +102,NA,2103,"2017",1,0,99,2,1,100,NA,NA +102,NA,2104,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2105,"2017",1,0,NA,1,NA,NA,NA,NA +102,NA,2105,"2017",1,0,1,2,99,NA,NA,NA +102,NA,2105,"2017",1,0,1,4,99,99,NA,NA +102,NA,2105,"2017",1,0,1,3,99,99,NA,NA +102,NA,2106,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2107,"2017",1,1,99,1,99,NA,NA,NA +102,NA,2107,"2017",1,1,99,3,99,99,NA,NA +102,NA,2107,"2017",1,1,99,2,99,99,NA,NA +102,NA,2107,"2017",1,1,99,4,99,99,NA,NA +102,NA,2108,"2017",3,1,99,1,99,NA,NA,NA +102,NA,2109,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2110,"2017",1,0,50,4,50,50,NA,NA +102,NA,2110,"2017",1,0,50,2,50,50,NA,NA +102,NA,2110,"2017",1,0,50,3,50,50,NA,NA +102,NA,2110,"2017",1,0,50,1,50,NA,NA,NA +102,NA,2111,"2017",3,0,90,1,10,NA,NA,NA +102,NA,2112,"2017",3,1,1,1,1,NA,NA,NA +102,NA,2113,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2114,"2017",4,1,99,1,99,NA,NA,NA +102,NA,2115,"2017",5,0,1,1,99,NA,NA,NA +102,NA,2116,"2017",6,1,99,1,99,NA,NA,NA +102,NA,2117,"2017",5,1,50,1,50,NA,NA,NA +102,NA,2118,"2017",1,0,1,2,99,99,NA,NA +102,NA,2118,"2017",1,0,10,4,90,90,NA,NA +102,NA,2118,"2017",1,0,1,1,99,NA,NA,NA +102,NA,2118,"2017",1,0,10,3,90,99,NA,NA +102,NA,2119,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2120,"2017",5,0,50,1,50,NA,NA,NA +102,NA,2121,"2017",2,1,99,1,99,NA,NA,NA +102,NA,2122,"2017",2,1,99,1,99,NA,NA,NA +102,NA,2123,"2017",5,1,99,1,99,NA,NA,NA +102,NA,2124,"2017",2,1,NA,1,NA,NA,NA,NA +102,NA,2125,"2017",6,0,1,1,99,NA,NA,NA +102,NA,2126,"2017",6,1,99,1,99,NA,NA,NA +102,NA,2127,"2017",5,0,1,1,99,NA,NA,NA +102,NA,2128,"2017",5,1,70,1,70,NA,NA,NA +102,NA,2129,"2017",6,1,1,1,1,NA,NA,NA +102,NA,2130,"2017",6,0,40,1,60,NA,NA,NA +102,NA,2131,"2017",5,0,1,1,99,NA,NA,NA +102,NA,2132,"2017",5,0,50,1,50,NA,NA,NA +102,NA,2133,"2017",4,0,99,1,1,NA,NA,NA +102,NA,2134,"2017",4,0,3,1,97,NA,NA,NA +102,NA,2135,"2017",6,1,90,1,90,NA,NA,NA +102,101,4,"2017",3,1,NA,2,NA,NA,"Huanqiu",NA +102,101,5,"2017",6,0,NA,3,NA,NA,"Huanqiu",NA +102,101,9,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,10,"2017",5,1,99,2,99,99,"Huanqiu",NA +102,101,11,"2017",2,1,1,3,1,20,"Huanqiu",NA +102,101,12,"2017",3,0,1,3,99,99,"Huanqiu",NA +102,101,14,"2017",6,0,50,2,50,50,"Huanqiu",NA +102,101,15,"2017",2,1,9,2,9,99,"Huanqiu",NA +102,101,21,"2017",2,0,50,2,50,50,"Huanqiu",NA +102,101,26,"2017",3,1,30,2,30,99,"Huanqiu",NA +102,101,33,"2017",3,1,99,3,99,99,"Huanqiu",NA +102,101,36,"2017",6,1,30,3,30,45,"Huanqiu",NA +102,101,38,"2017",6,1,NA,3,NA,99,"Huanqiu",NA +102,101,39,"2017",2,1,40,2,40,40,"Huanqiu",NA +102,101,41,"2017",4,1,30,5,30,NA,"Huanqiu",NA +102,101,44,"2017",2,1,99,3,99,99,"Huanqiu",NA +102,101,45,"2017",4,0,22,5,78,NA,"Huanqiu",NA +102,101,48,"2017",6,1,50,3,50,100,"Huanqiu",NA +102,101,49,"2017",4,0,30,5,70,NA,"Huanqiu",NA +102,101,50,"2017",3,0,20,2,80,70,"Huanqiu",NA +102,101,55,"2017",2,1,50,3,50,99,"Huanqiu",NA +102,101,57,"2017",5,0,40,3,60,25,"Huanqiu",NA +102,101,59,"2017",5,0,10,3,90,20,"Huanqiu",NA +102,101,61,"2017",6,1,99,3,99,99,"Huanqiu",NA +102,101,66,"2017",6,1,55,3,55,50,"Huanqiu",NA +102,101,67,"2017",6,0,7,3,93,94,"Huanqiu",NA +102,101,69,"2017",2,1,99,2,99,99,"Huanqiu",NA +102,101,70,"2017",3,0,80,2,20,40,"Huanqiu",NA +102,101,71,"2017",2,1,99,3,99,50,"Huanqiu",NA +102,101,1170,"2017",5,0,1,2,99,99,"Huanqiu",NA +102,101,1173,"2017",5,0,0,2,100,50,"Huanqiu",NA +102,101,1176,"2017",2,0,0,2,100,50,"Huanqiu",NA +102,101,1177,"2017",3,1,1,3,1,1,"Huanqiu",NA +102,101,1178,"2017",2,1,60,3,60,80,"Huanqiu",NA +102,101,1180,"2017",5,1,80,3,80,50,"Huanqiu",NA +102,101,1186,"2017",5,0,10,2,90,50,"Huanqiu",NA +102,101,1190,"2017",4,1,40,5,40,NA,"Huanqiu",NA +102,101,1192,"2017",6,1,85,2,85,50,"Huanqiu",NA +102,101,1193,"2017",2,1,80,2,80,50,"Huanqiu",NA +102,101,1197,"2017",6,0,1,3,99,99,"Huanqiu",NA +102,101,1198,"2017",6,0,20,3,80,90,"Huanqiu",NA +102,101,1200,"2017",5,1,80,3,80,30,"Huanqiu",NA +102,101,1208,"2017",3,1,100,2,100,99,"Huanqiu",NA +102,101,1210,"2017",6,1,40,3,40,40,"Huanqiu",NA +102,101,1213,"2017",4,1,20,5,20,NA,"Huanqiu",NA +102,101,1214,"2017",5,1,100,2,100,80,"Huanqiu",NA +102,101,1215,"2017",6,0,40,2,60,70,"Huanqiu",NA +102,101,1216,"2017",5,1,40,3,40,30,"Huanqiu",NA +102,101,1217,"2017",4,0,99,5,1,NA,"Huanqiu",NA +102,101,1218,"2017",2,1,20,2,20,20,"Huanqiu",NA +102,101,1223,"2017",3,1,20,3,20,10,"Huanqiu",NA +102,101,1226,"2017",5,0,1,3,99,99,"Huanqiu",NA +102,101,1227,"2017",2,1,100,3,100,99,"Huanqiu",NA +102,101,1231,"2017",6,1,1,3,1,1,"Huanqiu",NA +102,101,1233,"2017",5,1,99,2,99,99,"Huanqiu",NA +102,101,1238,"2017",5,0,20,3,80,20,"Huanqiu",NA +102,101,1239,"2017",6,0,50,3,50,50,"Huanqiu",NA +102,101,1243,"2017",3,1,NA,3,NA,70,"Huanqiu",NA +102,101,1244,"2017",6,0,99,2,1,1,"Huanqiu",NA +102,101,1245,"2017",5,1,100,3,100,90,"Huanqiu",NA +102,101,1247,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,1252,"2017",2,0,NA,2,NA,99,"Huanqiu",NA +102,101,1253,"2017",4,0,50,5,50,NA,"Huanqiu",NA +102,101,1255,"2017",6,0,99,2,1,1,"Huanqiu",NA +102,101,1256,"2017",6,0,1,2,99,99,"Huanqiu",NA +102,101,1258,"2017",3,0,99,3,1,1,"Huanqiu",NA +102,101,1261,"2017",5,1,99,2,99,99,"Huanqiu",NA +102,101,1262,"2017",2,1,1,3,1,50,"Huanqiu",NA +102,101,1263,"2017",2,1,50,2,50,50,"Huanqiu",NA +102,101,1265,"2017",6,0,1,2,99,99,"Huanqiu",NA +102,101,1266,"2017",5,0,99,3,1,50,"Huanqiu",NA +102,101,1268,"2017",5,0,50,3,50,99,"Huanqiu",NA +102,101,1269,"2017",6,0,1,2,99,99,"Huanqiu",NA +102,101,1271,"2017",5,1,2,2,2,60,"Huanqiu",NA +102,101,1272,"2017",6,1,99,2,99,99,"Huanqiu",NA +102,101,1273,"2017",6,1,1,2,1,50,"Huanqiu",NA +102,101,1275,"2017",5,0,1,2,99,99,"Huanqiu",NA +102,101,1277,"2017",5,1,90,3,90,90,"Huanqiu",NA +102,101,1278,"2017",2,0,60,2,40,40,"Huanqiu",NA +102,101,1279,"2017",2,0,100,2,0,0,"Huanqiu",NA +102,101,1282,"2017",6,1,75,2,75,50,"Huanqiu",NA +102,101,1285,"2017",2,0,1,2,99,99,"Huanqiu",NA +102,101,1286,"2017",6,0,50,2,50,50,"Huanqiu",NA +102,101,1287,"2017",5,0,NA,3,NA,99,"Huanqiu",NA +102,101,1293,"2017",5,0,NA,3,NA,NA,"Huanqiu",NA +102,101,1297,"2017",6,1,70,2,70,89,"Huanqiu",NA +102,101,1299,"2017",6,1,55,3,55,55,"Huanqiu",NA +102,101,1302,"2017",3,0,99,3,1,1,"Huanqiu",NA +102,101,1303,"2017",6,0,25,2,75,11,"Huanqiu",NA +102,101,1304,"2017",3,0,50,3,50,50,"Huanqiu",NA +102,101,1310,"2017",5,0,NA,2,NA,NA,"Huanqiu",NA +102,101,1313,"2017",2,0,0,2,100,90,"Huanqiu",NA +102,101,1314,"2017",5,1,1,3,1,1,"Huanqiu",NA +102,101,1316,"2017",6,0,NA,3,NA,NA,"Huanqiu",NA +102,101,1322,"2017",6,1,50,3,50,99,"Huanqiu",NA +102,101,1323,"2017",2,0,50,3,50,50,"Huanqiu",NA +102,101,1327,"2017",2,1,1,3,1,99,"Huanqiu",NA +102,101,1328,"2017",4,1,1,5,1,NA,"Huanqiu",NA +102,101,1330,"2017",3,0,NA,2,NA,50,"Huanqiu",NA +102,101,1333,"2017",3,0,20,3,80,50,"Huanqiu",NA +102,101,1334,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,1336,"2017",4,0,99,5,1,NA,"Huanqiu",NA +102,101,1341,"2017",5,1,90,2,90,50,"Huanqiu",NA +102,101,1342,"2017",5,1,99,3,99,95,"Huanqiu",NA +102,101,1343,"2017",2,0,99,2,1,99,"Huanqiu",NA +102,101,1352,"2017",4,0,1,5,99,NA,"Huanqiu",NA +102,101,1354,"2017",6,1,99,3,99,99,"Huanqiu",NA +102,101,1357,"2017",3,0,40,3,60,60,"Huanqiu",NA +102,101,1361,"2017",5,0,1,3,99,99,"Huanqiu",NA +102,101,1363,"2017",2,1,0,2,0,100,"Huanqiu",NA +102,101,1366,"2017",2,0,1,2,99,1,"Huanqiu",NA +102,101,1372,"2017",5,0,20,2,80,80,"Huanqiu",NA +102,101,1374,"2017",4,1,50,5,50,NA,"Huanqiu",NA +102,101,1377,"2017",3,0,20,2,80,80,"Huanqiu",NA +102,101,1378,"2017",3,0,99,3,1,1,"Huanqiu",NA +102,101,1381,"2017",3,1,12,2,12,12,"Huanqiu",NA +102,101,1382,"2017",2,0,50,3,50,NA,"Huanqiu",NA +102,101,1383,"2017",5,1,99,2,99,99,"Huanqiu",NA +102,101,1384,"2017",2,1,86,3,86,87,"Huanqiu",NA +102,101,1387,"2017",2,0,1,3,99,99,"Huanqiu",NA +102,101,1393,"2017",4,0,99,5,1,NA,"Huanqiu",NA +102,101,1399,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,1404,"2017",6,1,80,2,80,40,"Huanqiu",NA +102,101,1408,"2017",5,0,1,2,99,99,"Huanqiu",NA +102,101,1413,"2017",2,1,99,3,99,99,"Huanqiu",NA +102,101,1414,"2017",5,0,1,2,99,99,"Huanqiu",NA +102,101,1418,"2017",5,0,1,2,99,99,"Huanqiu",NA +102,101,1421,"2017",2,0,50,3,50,50,"Huanqiu",NA +102,101,1422,"2017",6,1,40,2,40,90,"Huanqiu",NA +102,101,1423,"2017",3,1,92,3,92,87,"Huanqiu",NA +102,101,1424,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,1425,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,1427,"2017",5,1,99,2,99,1,"Huanqiu",NA +102,101,1429,"2017",5,0,99,2,1,1,"Huanqiu",NA +102,101,1439,"2017",5,1,60,3,60,50,"Huanqiu",NA +102,101,1441,"2017",6,0,1,3,99,99,"Huanqiu",NA +102,101,1442,"2017",2,1,99,3,99,99,"Huanqiu",NA +102,101,1444,"2017",3,1,99,3,99,99,"Huanqiu",NA +102,101,1448,"2017",5,1,99,3,99,99,"Huanqiu",NA +102,101,1449,"2017",3,1,50,3,50,99,"Huanqiu",NA +102,101,1452,"2017",3,0,99,2,1,99,"Huanqiu",NA +102,101,1453,"2017",2,0,10,3,90,1,"Huanqiu",NA +102,101,1458,"2017",4,1,1,5,1,NA,"Huanqiu",NA +102,101,1459,"2017",5,0,1,2,99,99,"Huanqiu",NA +102,101,1460,"2017",2,1,99,2,99,99,"Huanqiu",NA +102,101,1465,"2017",5,0,1,2,99,1,"Huanqiu",NA +102,101,1466,"2017",5,1,98,3,98,98,"Huanqiu",NA +102,101,1467,"2017",4,0,99,5,1,NA,"Huanqiu",NA +102,101,1475,"2017",2,0,99,2,1,99,"Huanqiu",NA +102,101,1482,"2017",2,0,99,2,1,50,"Huanqiu",NA +102,101,1484,"2017",3,0,50,2,50,50,"Huanqiu",NA +102,101,1487,"2017",5,1,99,3,99,99,"Huanqiu",NA +102,101,1488,"2017",6,0,99,2,1,99,"Huanqiu",NA +102,101,1489,"2017",2,1,99,2,99,99,"Huanqiu",NA +102,101,1493,"2017",3,1,60,3,60,50,"Huanqiu",NA +102,101,1494,"2017",5,1,99,2,99,1,"Huanqiu",NA +102,101,1495,"2017",3,0,99,3,1,1,"Huanqiu",NA +102,101,1504,"2017",2,0,99,3,1,1,"Huanqiu",NA +102,101,1506,"2017",3,0,50,2,50,50,"Huanqiu",NA +102,101,1507,"2017",5,1,50,2,50,50,"Huanqiu",NA +102,101,1510,"2017",3,1,40,2,40,50,"Huanqiu",NA +102,101,1512,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,1514,"2017",3,0,99,3,1,1,"Huanqiu",NA +102,101,1516,"2017",4,1,1,5,1,NA,"Huanqiu",NA +102,101,1519,"2017",6,1,35,2,35,12,"Huanqiu",NA +102,101,1520,"2017",5,0,1,2,99,1,"Huanqiu",NA +102,101,1521,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,1523,"2017",6,0,90,3,10,2,"Huanqiu",NA +102,101,1525,"2017",5,0,70,3,30,40,"Huanqiu",NA +102,101,1529,"2017",6,1,99,3,99,80,"Huanqiu",NA +102,101,1530,"2017",6,1,50,2,50,50,"Huanqiu",NA +102,101,1531,"2017",2,0,99,2,1,78,"Huanqiu",NA +102,101,1532,"2017",6,0,90,3,10,13,"Huanqiu",NA +102,101,1537,"2017",3,0,99,3,1,1,"Huanqiu",NA +102,101,1540,"2017",2,1,50,3,50,50,"Huanqiu",NA +102,101,1544,"2017",3,0,50,2,50,99,"Huanqiu",NA +102,101,1546,"2017",3,0,20,3,80,NA,"Huanqiu",NA +102,101,1547,"2017",3,1,80,2,80,80,"Huanqiu",NA +102,101,1551,"2017",3,1,99,3,99,99,"Huanqiu",NA +102,101,1554,"2017",2,1,2,2,2,50,"Huanqiu",NA +102,101,1561,"2017",3,1,1,3,1,99,"Huanqiu",NA +102,101,1562,"2017",6,1,1,3,1,99,"Huanqiu",NA +102,101,1565,"2017",4,0,99,5,1,NA,"Huanqiu",NA +102,101,1573,"2017",5,0,1,2,99,99,"Huanqiu",NA +102,101,1576,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,1577,"2017",5,0,1,3,99,99,"Huanqiu",NA +102,101,1578,"2017",5,0,50,2,50,1,"Huanqiu",NA +102,101,1581,"2017",6,0,1,3,99,99,"Huanqiu",NA +102,101,1586,"2017",6,1,99,3,99,99,"Huanqiu",NA +102,101,1589,"2017",2,1,50,3,50,60,"Huanqiu",NA +102,101,1594,"2017",3,1,1,3,1,1,"Huanqiu",NA +102,101,1600,"2017",2,1,80,2,80,99,"Huanqiu",NA +102,101,1601,"2017",5,1,30,3,30,30,"Huanqiu",NA +102,101,1607,"2017",3,0,50,3,50,30,"Huanqiu",NA +102,101,1612,"2017",2,0,50,2,50,50,"Huanqiu",NA +102,101,1618,"2017",5,0,1,3,99,1,"Huanqiu",NA +102,101,1619,"2017",5,0,1,2,99,NA,"Huanqiu",NA +102,101,1621,"2017",3,0,90,3,10,10,"Huanqiu",NA +102,101,1622,"2017",3,0,NA,3,NA,NA,"Huanqiu",NA +102,101,1623,"2017",2,1,NA,3,NA,NA,"Huanqiu",NA +102,101,1624,"2017",5,1,85,2,85,50,"Huanqiu",NA +102,101,1625,"2017",5,0,40,3,60,40,"Huanqiu",NA +102,101,1626,"2017",2,0,99,2,1,NA,"Huanqiu",NA +102,101,1628,"2017",3,0,80,3,20,20,"Huanqiu",NA +102,101,1630,"2017",5,0,85,3,15,30,"Huanqiu",NA +102,101,1631,"2017",3,1,NA,3,NA,95,"Huanqiu",NA +102,101,1638,"2017",5,1,50,3,50,50,"Huanqiu",NA +102,101,1645,"2017",4,0,NA,5,NA,NA,"Huanqiu",NA +102,101,1648,"2017",4,0,1,5,99,NA,"Huanqiu",NA +102,101,1651,"2017",2,0,50,2,50,50,"Huanqiu",NA +102,101,1652,"2017",5,1,99,2,99,99,"Huanqiu",NA +102,101,1653,"2017",2,1,99,2,99,99,"Huanqiu",NA +102,101,1657,"2017",3,0,1,2,99,99,"Huanqiu",NA +102,101,1658,"2017",2,0,99,2,1,99,"Huanqiu",NA +102,101,1660,"2017",2,0,50,2,50,50,"Huanqiu",NA +102,101,1661,"2017",2,1,50,2,50,50,"Huanqiu",NA +102,101,1663,"2017",5,1,99,3,99,NA,"Huanqiu",NA +102,101,1664,"2017",5,0,99,3,1,1,"Huanqiu",NA +102,101,1673,"2017",2,0,1,2,99,1,"Huanqiu",NA +102,101,1678,"2017",5,0,99,3,1,1,"Huanqiu",NA +102,101,1680,"2017",3,1,99,3,99,NA,"Huanqiu",NA +102,101,1681,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,1684,"2017",3,0,40,2,60,1,"Huanqiu",NA +102,101,1686,"2017",5,1,50,2,50,99,"Huanqiu",NA +102,101,1687,"2017",3,0,1,3,99,99,"Huanqiu",NA +102,101,1700,"2017",2,0,2,3,98,98,"Huanqiu",NA +102,101,1701,"2017",4,1,70,5,70,NA,"Huanqiu",NA +102,101,1702,"2017",5,0,99,2,1,50,"Huanqiu",NA +102,101,1704,"2017",2,0,0,3,100,0,"Huanqiu",NA +102,101,1705,"2017",2,0,99,2,1,99,"Huanqiu",NA +102,101,1706,"2017",2,1,NA,2,NA,NA,"Huanqiu",NA +102,101,1710,"2017",3,1,90,2,90,80,"Huanqiu",NA +102,101,1715,"2017",5,1,22,3,22,22,"Huanqiu",NA +102,101,1718,"2017",6,1,98,2,98,98,"Huanqiu",NA +102,101,1719,"2017",5,0,2,2,98,98,"Huanqiu",NA +102,101,1725,"2017",3,0,99,2,1,NA,"Huanqiu",NA +102,101,1726,"2017",4,0,22,5,78,NA,"Huanqiu",NA +102,101,1728,"2017",2,1,50,3,50,99,"Huanqiu",NA +102,101,1732,"2017",3,1,NA,3,NA,NA,"Huanqiu",NA +102,101,1733,"2017",5,1,70,3,70,87,"Huanqiu",NA +102,101,1735,"2017",5,0,15,3,85,85,"Huanqiu",NA +102,101,1737,"2017",6,0,0,3,100,99,"Huanqiu",NA +102,101,1738,"2017",6,0,1,2,99,50,"Huanqiu",NA +102,101,1741,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,1742,"2017",3,0,99,2,1,99,"Huanqiu",NA +102,101,1744,"2017",6,0,1,3,99,99,"Huanqiu",NA +102,101,1746,"2017",3,1,50,2,50,99,"Huanqiu",NA +102,101,1752,"2017",5,0,50,2,50,1,"Huanqiu",NA +102,101,1753,"2017",2,1,NA,2,NA,30,"Huanqiu",NA +102,101,1754,"2017",2,1,1,3,1,99,"Huanqiu",NA +102,101,1755,"2017",3,1,90,2,90,70,"Huanqiu",NA +102,101,1761,"2017",6,0,58,3,42,2,"Huanqiu",NA +102,101,1763,"2017",2,1,90,3,90,20,"Huanqiu",NA +102,101,1771,"2017",2,0,99,3,1,27,"Huanqiu",NA +102,101,1772,"2017",6,1,99,2,99,99,"Huanqiu",NA +102,101,1773,"2017",2,0,88,2,12,32,"Huanqiu",NA +102,101,1777,"2017",3,1,89,3,89,88,"Huanqiu",NA +102,101,1778,"2017",5,0,88,3,12,11,"Huanqiu",NA +102,101,1780,"2017",4,1,97,5,97,NA,"Huanqiu",NA +102,101,1781,"2017",2,1,87,2,87,89,"Huanqiu",NA +102,101,1785,"2017",5,0,NA,3,NA,20,"Huanqiu",NA +102,101,1788,"2017",4,1,87,5,87,NA,"Huanqiu",NA +102,101,1790,"2017",6,0,16,3,84,20,"Huanqiu",NA +102,101,1793,"2017",4,1,91,5,91,NA,"Huanqiu",NA +102,101,1794,"2017",5,1,86,3,86,96,"Huanqiu",NA +102,101,1797,"2017",4,1,87,5,87,NA,"Huanqiu",NA +102,101,1800,"2017",6,0,88,2,12,2,"Huanqiu",NA +102,101,1801,"2017",3,0,97,2,3,20,"Huanqiu",NA +102,101,1812,"2017",5,1,NA,2,NA,99,"Huanqiu",NA +102,101,1813,"2017",6,1,1,2,1,99,"Huanqiu",NA +102,101,1814,"2017",5,0,30,3,70,60,"Huanqiu",NA +102,101,1818,"2017",3,0,70,2,30,50,"Huanqiu",NA +102,101,1819,"2017",6,1,80,3,80,85,"Huanqiu",NA +102,101,1820,"2017",2,0,1,2,99,80,"Huanqiu",NA +102,101,1821,"2017",2,0,80,3,20,30,"Huanqiu",NA +102,101,1823,"2017",3,0,1,2,99,99,"Huanqiu",NA +102,101,1824,"2017",6,0,99,3,1,1,"Huanqiu",NA +102,101,1825,"2017",5,1,99,2,99,99,"Huanqiu",NA +102,101,1832,"2017",3,0,60,2,40,50,"Huanqiu",NA +102,101,1838,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,1845,"2017",5,1,99,2,99,90,"Huanqiu",NA +102,101,1849,"2017",6,0,NA,3,NA,99,"Huanqiu",NA +102,101,1852,"2017",6,0,1,2,99,NA,"Huanqiu",NA +102,101,1853,"2017",2,0,1,3,99,99,"Huanqiu",NA +102,101,1856,"2017",5,1,40,2,40,50,"Huanqiu",NA +102,101,1861,"2017",6,1,99,3,99,99,"Huanqiu",NA +102,101,1862,"2017",4,0,1,5,99,NA,"Huanqiu",NA +102,101,1863,"2017",5,1,86,2,86,80,"Huanqiu",NA +102,101,1866,"2017",6,0,99,3,1,1,"Huanqiu",NA +102,101,1870,"2017",5,0,0,2,100,100,"Huanqiu",NA +102,101,1872,"2017",2,1,99,2,99,99,"Huanqiu",NA +102,101,1873,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,1876,"2017",5,1,99,3,99,99,"Huanqiu",NA +102,101,1878,"2017",2,0,80,3,20,30,"Huanqiu",NA +102,101,1883,"2017",3,0,10,3,90,20,"Huanqiu",NA +102,101,1885,"2017",6,0,50,3,50,50,"Huanqiu",NA +102,101,1886,"2017",2,0,30,2,70,70,"Huanqiu",NA +102,101,1896,"2017",3,1,99,3,99,50,"Huanqiu",NA +102,101,1900,"2017",6,1,66,2,66,50,"Huanqiu",NA +102,101,1902,"2017",3,0,99,3,1,1,"Huanqiu",NA +102,101,1904,"2017",6,0,0,3,100,99,"Huanqiu",NA +102,101,1906,"2017",2,0,99,3,1,1,"Huanqiu",NA +102,101,1907,"2017",6,0,90,3,10,10,"Huanqiu",NA +102,101,1908,"2017",4,0,99,5,1,NA,"Huanqiu",NA +102,101,1909,"2017",4,1,70,5,70,NA,"Huanqiu",NA +102,101,1910,"2017",5,0,NA,3,NA,1,"Huanqiu",NA +102,101,1912,"2017",2,1,1,2,1,99,"Huanqiu",NA +102,101,1913,"2017",2,1,50,2,50,99,"Huanqiu",NA +102,101,1916,"2017",2,0,90,2,10,15,"Huanqiu",NA +102,101,1918,"2017",6,1,1,2,1,99,"Huanqiu",NA +102,101,1919,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,1924,"2017",6,1,99,3,99,99,"Huanqiu",NA +102,101,1928,"2017",6,0,90,2,10,15,"Huanqiu",NA +102,101,1930,"2017",2,1,NA,3,NA,NA,"Huanqiu",NA +102,101,1934,"2017",5,1,60,2,60,60,"Huanqiu",NA +102,101,1935,"2017",5,0,1,3,99,99,"Huanqiu",NA +102,101,1936,"2017",2,0,1,2,99,1,"Huanqiu",NA +102,101,1937,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,1940,"2017",2,1,99,3,99,99,"Huanqiu",NA +102,101,1942,"2017",2,0,50,3,50,99,"Huanqiu",NA +102,101,1943,"2017",6,0,99,3,1,1,"Huanqiu",NA +102,101,1944,"2017",3,1,99,3,99,99,"Huanqiu",NA +102,101,1949,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,1952,"2017",5,1,99,3,99,99,"Huanqiu",NA +102,101,1954,"2017",6,1,1,2,1,99,"Huanqiu",NA +102,101,1960,"2017",2,1,99,3,99,99,"Huanqiu",NA +102,101,1962,"2017",6,1,90,2,90,90,"Huanqiu",NA +102,101,1963,"2017",3,1,99,3,99,99,"Huanqiu",NA +102,101,1965,"2017",3,1,99,3,99,99,"Huanqiu",NA +102,101,1966,"2017",3,1,95,3,95,99,"Huanqiu",NA +102,101,1967,"2017",3,0,1,2,99,99,"Huanqiu",NA +102,101,1970,"2017",3,0,1,3,99,99,"Huanqiu",NA +102,101,1973,"2017",2,0,50,3,50,99,"Huanqiu",NA +102,101,1975,"2017",6,0,99,2,1,1,"Huanqiu",NA +102,101,1979,"2017",3,0,1,2,99,1,"Huanqiu",NA +102,101,1992,"2017",6,0,99,3,1,20,"Huanqiu",NA +102,101,1996,"2017",2,0,1,3,99,99,"Huanqiu",NA +102,101,1998,"2017",6,1,80,2,80,40,"Huanqiu",NA +102,101,1999,"2017",2,0,5,3,95,90,"Huanqiu",NA +102,101,2000,"2017",6,1,90,3,90,70,"Huanqiu",NA +102,101,2003,"2017",2,0,10,2,90,90,"Huanqiu",NA +102,101,2006,"2017",6,1,100,3,100,100,"Huanqiu",NA +102,101,2007,"2017",5,1,85,2,85,100,"Huanqiu",NA +102,101,2008,"2017",2,1,50,3,50,50,"Huanqiu",NA +102,101,2009,"2017",6,0,35,3,65,55,"Huanqiu",NA +102,101,2011,"2017",2,0,NA,2,NA,NA,"Huanqiu",NA +102,101,2020,"2017",2,1,1,3,1,50,"Huanqiu",NA +102,101,2025,"2017",2,0,88,2,12,100,"Huanqiu",NA +102,101,2026,"2017",3,1,99,3,99,90,"Huanqiu",NA +102,101,2031,"2017",3,0,99,2,1,1,"Huanqiu",NA +102,101,2033,"2017",2,1,99,2,99,99,"Huanqiu",NA +102,101,2035,"2017",2,1,90,3,90,90,"Huanqiu",NA +102,101,2036,"2017",2,0,99,2,1,99,"Huanqiu",NA +102,101,2041,"2017",3,1,100,3,100,100,"Huanqiu",NA +102,101,2055,"2017",6,1,60,2,60,70,"Huanqiu",NA +102,101,2056,"2017",6,0,60,2,40,50,"Huanqiu",NA +102,101,2058,"2017",6,0,20,2,80,70,"Huanqiu",NA +102,101,2060,"2017",6,0,1,2,99,99,"Huanqiu",NA +102,101,2063,"2017",5,1,99,2,99,99,"Huanqiu",NA +102,101,2065,"2017",2,1,99,2,99,99,"Huanqiu",NA +102,101,2067,"2017",2,0,1,3,99,99,"Huanqiu",NA +102,101,2069,"2017",2,0,99,3,1,1,"Huanqiu",NA +102,101,2071,"2017",2,0,99,2,1,1,"Huanqiu",NA +102,101,2072,"2017",5,1,70,2,70,80,"Huanqiu",NA +102,101,2074,"2017",6,0,1,2,99,99,"Huanqiu",NA +102,101,2077,"2017",3,0,1,2,99,99,"Huanqiu",NA +102,101,2080,"2017",3,0,80,3,20,30,"Huanqiu",NA +102,101,2085,"2017",3,1,99,2,99,99,"Huanqiu",NA +102,101,2087,"2017",6,0,99,3,1,1,"Huanqiu",NA +102,101,2092,"2017",3,1,90,3,90,90,"Huanqiu",NA +102,101,2093,"2017",6,1,40,3,40,50,"Huanqiu",NA +102,101,2096,"2017",3,1,50,2,50,99,"Huanqiu",NA +102,101,2100,"2017",5,1,99,3,99,1,"Huanqiu",NA +102,101,2109,"2017",4,1,99,5,99,NA,"Huanqiu",NA +102,101,2116,"2017",6,1,80,3,80,99,"Huanqiu",NA +102,101,2117,"2017",5,1,99,3,99,90,"Huanqiu",NA +102,101,2119,"2017",5,1,99,2,99,99,"Huanqiu",NA +102,101,2120,"2017",5,0,50,3,50,50,"Huanqiu",NA +102,101,2122,"2017",2,1,99,3,99,99,"Huanqiu",NA +102,101,2123,"2017",5,1,1,3,1,99,"Huanqiu",NA +102,101,2124,"2017",2,1,99,2,99,NA,"Huanqiu",NA +102,101,2129,"2017",6,1,1,2,1,1,"Huanqiu",NA +102,101,2130,"2017",6,0,0,3,100,80,"Huanqiu",NA +102,101,2133,"2017",4,0,99,5,1,NA,"Huanqiu",NA +102,102,2,"2017",2,1,NA,3,NA,NA,"Nanfang Dushibao",NA +102,102,3,"2017",2,1,NA,2,NA,NA,"Nanfang Dushibao",NA +102,102,10,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,12,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,16,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +102,102,17,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,19,"2017",6,1,80,3,80,70,"Nanfang Dushibao",NA +102,102,20,"2017",2,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,22,"2017",2,0,NA,2,NA,90,"Nanfang Dushibao",NA +102,102,23,"2017",2,1,1,3,1,50,"Nanfang Dushibao",NA +102,102,25,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +102,102,30,"2017",4,0,NA,4,NA,NA,"Nanfang Dushibao",NA +102,102,31,"2017",4,0,NA,4,NA,NA,"Nanfang Dushibao",NA +102,102,34,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,37,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,39,"2017",2,1,30,3,30,40,"Nanfang Dushibao",NA +102,102,40,"2017",3,1,98,3,98,98,"Nanfang Dushibao",NA +102,102,42,"2017",5,1,80,3,80,80,"Nanfang Dushibao",NA +102,102,44,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,47,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,51,"2017",2,1,60,3,60,50,"Nanfang Dushibao",NA +102,102,52,"2017",6,0,20,2,80,80,"Nanfang Dushibao",NA +102,102,53,"2017",6,1,60,3,60,99,"Nanfang Dushibao",NA +102,102,55,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,56,"2017",2,0,20,2,80,40,"Nanfang Dushibao",NA +102,102,58,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,60,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +102,102,63,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,72,"2017",3,1,99,2,99,50,"Nanfang Dushibao",NA +102,102,1169,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,1173,"2017",5,0,0,3,100,100,"Nanfang Dushibao",NA +102,102,1174,"2017",6,0,0,3,100,100,"Nanfang Dushibao",NA +102,102,1177,"2017",3,1,1,2,1,99,"Nanfang Dushibao",NA +102,102,1179,"2017",2,1,20,2,20,20,"Nanfang Dushibao",NA +102,102,1183,"2017",2,0,30,2,70,50,"Nanfang Dushibao",NA +102,102,1184,"2017",5,0,0,2,100,100,"Nanfang Dushibao",NA +102,102,1188,"2017",3,1,78,2,78,50,"Nanfang Dushibao",NA +102,102,1191,"2017",3,1,NA,2,NA,75,"Nanfang Dushibao",NA +102,102,1197,"2017",6,0,1,2,99,95,"Nanfang Dushibao",NA +102,102,1201,"2017",5,1,50,3,50,99,"Nanfang Dushibao",NA +102,102,1203,"2017",4,1,90,4,90,NA,"Nanfang Dushibao",NA +102,102,1205,"2017",5,0,1,2,99,50,"Nanfang Dushibao",NA +102,102,1209,"2017",2,1,100,3,100,100,"Nanfang Dushibao",NA +102,102,1216,"2017",5,1,30,2,30,40,"Nanfang Dushibao",NA +102,102,1218,"2017",2,1,20,3,20,20,"Nanfang Dushibao",NA +102,102,1221,"2017",2,0,30,2,70,60,"Nanfang Dushibao",NA +102,102,1226,"2017",5,0,1,2,99,50,"Nanfang Dushibao",NA +102,102,1229,"2017",6,1,70,3,70,40,"Nanfang Dushibao",NA +102,102,1231,"2017",6,1,1,2,1,1,"Nanfang Dushibao",NA +102,102,1235,"2017",2,1,1,3,1,50,"Nanfang Dushibao",NA +102,102,1236,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +102,102,1239,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +102,102,1245,"2017",5,1,90,2,90,80,"Nanfang Dushibao",NA +102,102,1246,"2017",2,0,35,2,65,60,"Nanfang Dushibao",NA +102,102,1248,"2017",6,0,80,2,20,30,"Nanfang Dushibao",NA +102,102,1254,"2017",5,0,1,2,99,50,"Nanfang Dushibao",NA +102,102,1257,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1261,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1262,"2017",2,1,50,2,50,50,"Nanfang Dushibao",NA +102,102,1265,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1268,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,1269,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1271,"2017",5,1,3,3,3,2,"Nanfang Dushibao",NA +102,102,1275,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1280,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +102,102,1281,"2017",5,1,1,2,1,99,"Nanfang Dushibao",NA +102,102,1284,"2017",2,0,9,2,91,1,"Nanfang Dushibao",NA +102,102,1285,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1286,"2017",6,0,99,3,1,50,"Nanfang Dushibao",NA +102,102,1287,"2017",5,0,1,2,99,1,"Nanfang Dushibao",NA +102,102,1288,"2017",3,1,50,2,50,99,"Nanfang Dushibao",NA +102,102,1290,"2017",6,1,100,2,100,100,"Nanfang Dushibao",NA +102,102,1295,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +102,102,1296,"2017",4,1,88,4,88,NA,"Nanfang Dushibao",NA +102,102,1298,"2017",4,1,70,4,70,NA,"Nanfang Dushibao",NA +102,102,1299,"2017",6,1,55,2,55,50,"Nanfang Dushibao",NA +102,102,1300,"2017",4,1,100,4,100,NA,"Nanfang Dushibao",NA +102,102,1302,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +102,102,1303,"2017",6,0,6,3,94,75,"Nanfang Dushibao",NA +102,102,1307,"2017",6,0,46,3,54,55,"Nanfang Dushibao",NA +102,102,1310,"2017",5,0,99,3,1,NA,"Nanfang Dushibao",NA +102,102,1311,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1312,"2017",2,1,99,2,99,50,"Nanfang Dushibao",NA +102,102,1314,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +102,102,1316,"2017",6,0,NA,2,NA,NA,"Nanfang Dushibao",NA +102,102,1317,"2017",2,0,99,3,1,50,"Nanfang Dushibao",NA +102,102,1318,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +102,102,1319,"2017",5,0,1,2,99,1,"Nanfang Dushibao",NA +102,102,1324,"2017",6,0,28,3,72,35,"Nanfang Dushibao",NA +102,102,1326,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1327,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1331,"2017",5,1,NA,2,NA,99,"Nanfang Dushibao",NA +102,102,1337,"2017",5,1,99,3,99,1,"Nanfang Dushibao",NA +102,102,1338,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +102,102,1339,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1343,"2017",2,0,1,3,99,1,"Nanfang Dushibao",NA +102,102,1344,"2017",2,1,60,3,60,NA,"Nanfang Dushibao",NA +102,102,1346,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +102,102,1347,"2017",3,1,NA,3,NA,99,"Nanfang Dushibao",NA +102,102,1350,"2017",4,1,40,4,40,NA,"Nanfang Dushibao",NA +102,102,1351,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +102,102,1354,"2017",6,1,99,2,99,50,"Nanfang Dushibao",NA +102,102,1358,"2017",5,1,50,3,50,1,"Nanfang Dushibao",NA +102,102,1362,"2017",6,0,50,2,50,90,"Nanfang Dushibao",NA +102,102,1364,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1369,"2017",4,1,70,4,70,NA,"Nanfang Dushibao",NA +102,102,1370,"2017",4,1,NA,4,NA,NA,"Nanfang Dushibao",NA +102,102,1371,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +102,102,1372,"2017",5,0,30,3,70,80,"Nanfang Dushibao",NA +102,102,1373,"2017",2,0,15,2,85,50,"Nanfang Dushibao",NA +102,102,1376,"2017",2,1,65,2,65,45,"Nanfang Dushibao",NA +102,102,1379,"2017",3,1,100,2,100,100,"Nanfang Dushibao",NA +102,102,1380,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1382,"2017",2,0,NA,2,NA,80,"Nanfang Dushibao",NA +102,102,1384,"2017",2,1,87,2,87,88,"Nanfang Dushibao",NA +102,102,1389,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +102,102,1392,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +102,102,1394,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1395,"2017",3,1,78,3,78,73,"Nanfang Dushibao",NA +102,102,1396,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1398,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +102,102,1401,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1402,"2017",3,0,20,2,80,10,"Nanfang Dushibao",NA +102,102,1403,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1404,"2017",6,1,70,3,70,80,"Nanfang Dushibao",NA +102,102,1405,"2017",6,1,99,3,99,1,"Nanfang Dushibao",NA +102,102,1406,"2017",3,0,1,2,99,1,"Nanfang Dushibao",NA +102,102,1407,"2017",4,0,30,4,70,NA,"Nanfang Dushibao",NA +102,102,1412,"2017",2,1,50,3,50,99,"Nanfang Dushibao",NA +102,102,1415,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1416,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +102,102,1418,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1420,"2017",6,1,NA,2,NA,NA,"Nanfang Dushibao",NA +102,102,1422,"2017",6,1,99,3,99,40,"Nanfang Dushibao",NA +102,102,1423,"2017",3,1,87,2,87,80,"Nanfang Dushibao",NA +102,102,1426,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1427,"2017",5,1,1,3,1,99,"Nanfang Dushibao",NA +102,102,1428,"2017",5,1,91,3,91,90,"Nanfang Dushibao",NA +102,102,1431,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +102,102,1434,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1436,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1440,"2017",4,0,3,4,97,NA,"Nanfang Dushibao",NA +102,102,1446,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1450,"2017",3,1,80,3,80,80,"Nanfang Dushibao",NA +102,102,1452,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1461,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +102,102,1468,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1470,"2017",3,0,1,2,99,1,"Nanfang Dushibao",NA +102,102,1474,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1478,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,1481,"2017",6,0,50,3,50,2,"Nanfang Dushibao",NA +102,102,1482,"2017",2,0,14,3,86,1,"Nanfang Dushibao",NA +102,102,1483,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1493,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +102,102,1497,"2017",5,1,50,2,50,90,"Nanfang Dushibao",NA +102,102,1500,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +102,102,1503,"2017",6,1,99,2,99,90,"Nanfang Dushibao",NA +102,102,1508,"2017",5,0,99,2,1,50,"Nanfang Dushibao",NA +102,102,1509,"2017",5,0,68,3,32,10,"Nanfang Dushibao",NA +102,102,1510,"2017",3,1,99,3,99,40,"Nanfang Dushibao",NA +102,102,1511,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1513,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +102,102,1518,"2017",6,0,50,3,50,1,"Nanfang Dushibao",NA +102,102,1522,"2017",2,0,100,3,0,10,"Nanfang Dushibao",NA +102,102,1523,"2017",6,0,98,2,2,50,"Nanfang Dushibao",NA +102,102,1526,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +102,102,1528,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1535,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1536,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +102,102,1538,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +102,102,1546,"2017",3,0,NA,2,NA,NA,"Nanfang Dushibao",NA +102,102,1550,"2017",3,1,50,3,50,NA,"Nanfang Dushibao",NA +102,102,1552,"2017",5,1,99,3,99,1,"Nanfang Dushibao",NA +102,102,1553,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1555,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1559,"2017",3,1,99,2,99,98,"Nanfang Dushibao",NA +102,102,1560,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +102,102,1561,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1563,"2017",6,1,99,2,99,79,"Nanfang Dushibao",NA +102,102,1564,"2017",6,0,20,2,80,80,"Nanfang Dushibao",NA +102,102,1568,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1570,"2017",4,0,70,4,30,NA,"Nanfang Dushibao",NA +102,102,1571,"2017",5,0,99,3,1,20,"Nanfang Dushibao",NA +102,102,1577,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,1578,"2017",5,0,1,3,99,50,"Nanfang Dushibao",NA +102,102,1587,"2017",3,1,1,2,1,50,"Nanfang Dushibao",NA +102,102,1589,"2017",2,1,60,2,60,90,"Nanfang Dushibao",NA +102,102,1594,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +102,102,1600,"2017",2,1,100,3,100,80,"Nanfang Dushibao",NA +102,102,1602,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1603,"2017",3,1,NA,2,NA,NA,"Nanfang Dushibao",NA +102,102,1604,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +102,102,1606,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +102,102,1613,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +102,102,1614,"2017",4,1,85,4,85,NA,"Nanfang Dushibao",NA +102,102,1616,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1619,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1621,"2017",3,0,90,2,10,40,"Nanfang Dushibao",NA +102,102,1622,"2017",3,0,NA,2,NA,NA,"Nanfang Dushibao",NA +102,102,1623,"2017",2,1,NA,2,NA,NA,"Nanfang Dushibao",NA +102,102,1624,"2017",5,1,90,3,90,85,"Nanfang Dushibao",NA +102,102,1627,"2017",6,1,80,3,80,30,"Nanfang Dushibao",NA +102,102,1631,"2017",3,1,95,2,95,NA,"Nanfang Dushibao",NA +102,102,1633,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1634,"2017",4,1,40,4,40,NA,"Nanfang Dushibao",NA +102,102,1637,"2017",3,1,90,2,90,80,"Nanfang Dushibao",NA +102,102,1638,"2017",5,1,50,2,50,99,"Nanfang Dushibao",NA +102,102,1641,"2017",6,0,80,3,20,1,"Nanfang Dushibao",NA +102,102,1644,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1649,"2017",2,1,1,2,1,99,"Nanfang Dushibao",NA +102,102,1650,"2017",2,1,30,3,30,1,"Nanfang Dushibao",NA +102,102,1654,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1655,"2017",2,1,1,2,1,100,"Nanfang Dushibao",NA +102,102,1657,"2017",3,0,99,3,1,99,"Nanfang Dushibao",NA +102,102,1658,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1659,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +102,102,1660,"2017",2,0,NA,3,NA,50,"Nanfang Dushibao",NA +102,102,1661,"2017",2,1,50,3,50,50,"Nanfang Dushibao",NA +102,102,1665,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1666,"2017",3,1,NA,2,NA,90,"Nanfang Dushibao",NA +102,102,1667,"2017",5,1,99,3,99,50,"Nanfang Dushibao",NA +102,102,1672,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1680,"2017",3,1,NA,2,NA,99,"Nanfang Dushibao",NA +102,102,1682,"2017",6,0,70,3,30,30,"Nanfang Dushibao",NA +102,102,1683,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1685,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,1688,"2017",2,0,80,3,20,20,"Nanfang Dushibao",NA +102,102,1689,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1695,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1696,"2017",5,1,90,3,90,80,"Nanfang Dushibao",NA +102,102,1703,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,1707,"2017",3,0,50,2,50,80,"Nanfang Dushibao",NA +102,102,1708,"2017",5,0,70,2,30,30,"Nanfang Dushibao",NA +102,102,1711,"2017",6,0,100,3,0,0,"Nanfang Dushibao",NA +102,102,1714,"2017",2,0,40,3,60,NA,"Nanfang Dushibao",NA +102,102,1716,"2017",5,1,99,2,99,1,"Nanfang Dushibao",NA +102,102,1719,"2017",5,0,2,3,98,98,"Nanfang Dushibao",NA +102,102,1722,"2017",5,1,90,3,90,90,"Nanfang Dushibao",NA +102,102,1723,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1724,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1733,"2017",5,1,87,2,87,1,"Nanfang Dushibao",NA +102,102,1736,"2017",2,0,30,2,70,50,"Nanfang Dushibao",NA +102,102,1737,"2017",6,0,1,2,99,50,"Nanfang Dushibao",NA +102,102,1743,"2017",3,1,50,2,50,99,"Nanfang Dushibao",NA +102,102,1746,"2017",3,1,50,3,50,50,"Nanfang Dushibao",NA +102,102,1749,"2017",6,1,50,2,50,99,"Nanfang Dushibao",NA +102,102,1752,"2017",5,0,50,3,50,50,"Nanfang Dushibao",NA +102,102,1753,"2017",2,1,40,3,40,NA,"Nanfang Dushibao",NA +102,102,1754,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1756,"2017",2,0,54,3,46,73,"Nanfang Dushibao",NA +102,102,1759,"2017",6,1,92,2,92,92,"Nanfang Dushibao",NA +102,102,1767,"2017",3,0,1,3,99,1,"Nanfang Dushibao",NA +102,102,1768,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +102,102,1769,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1770,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +102,102,1771,"2017",2,0,73,2,27,99,"Nanfang Dushibao",NA +102,102,1772,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1775,"2017",3,1,87,2,87,90,"Nanfang Dushibao",NA +102,102,1777,"2017",3,1,88,2,88,97,"Nanfang Dushibao",NA +102,102,1778,"2017",5,0,89,2,11,NA,"Nanfang Dushibao",NA +102,102,1782,"2017",5,0,88,3,12,17,"Nanfang Dushibao",NA +102,102,1785,"2017",5,0,80,2,20,9,"Nanfang Dushibao",NA +102,102,1787,"2017",4,0,86,4,14,NA,"Nanfang Dushibao",NA +102,102,1791,"2017",2,1,33,2,33,NA,"Nanfang Dushibao",NA +102,102,1792,"2017",5,1,100,2,100,50,"Nanfang Dushibao",NA +102,102,1794,"2017",5,1,96,2,96,77,"Nanfang Dushibao",NA +102,102,1796,"2017",3,1,84,3,84,88,"Nanfang Dushibao",NA +102,102,1799,"2017",4,1,NA,4,NA,NA,"Nanfang Dushibao",NA +102,102,1800,"2017",6,0,99,3,1,12,"Nanfang Dushibao",NA +102,102,1802,"2017",3,0,96,3,4,NA,"Nanfang Dushibao",NA +102,102,1805,"2017",2,1,80,3,80,82,"Nanfang Dushibao",NA +102,102,1807,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +102,102,1808,"2017",6,0,1,3,99,NA,"Nanfang Dushibao",NA +102,102,1811,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +102,102,1821,"2017",2,0,70,2,30,50,"Nanfang Dushibao",NA +102,102,1823,"2017",3,0,99,3,1,99,"Nanfang Dushibao",NA +102,102,1826,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1827,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1828,"2017",2,0,60,2,40,50,"Nanfang Dushibao",NA +102,102,1830,"2017",2,1,92,3,92,63,"Nanfang Dushibao",NA +102,102,1833,"2017",5,0,99,3,1,NA,"Nanfang Dushibao",NA +102,102,1834,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1835,"2017",6,0,99,2,1,99,"Nanfang Dushibao",NA +102,102,1836,"2017",3,1,99,3,99,10,"Nanfang Dushibao",NA +102,102,1837,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +102,102,1838,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1839,"2017",5,0,99,2,1,99,"Nanfang Dushibao",NA +102,102,1842,"2017",5,0,3,2,97,99,"Nanfang Dushibao",NA +102,102,1844,"2017",6,0,NA,3,NA,99,"Nanfang Dushibao",NA +102,102,1845,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1848,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1852,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1854,"2017",5,1,90,3,90,20,"Nanfang Dushibao",NA +102,102,1856,"2017",5,1,23,3,23,40,"Nanfang Dushibao",NA +102,102,1857,"2017",3,0,60,3,40,20,"Nanfang Dushibao",NA +102,102,1859,"2017",2,0,80,2,20,50,"Nanfang Dushibao",NA +102,102,1869,"2017",5,0,100,2,0,100,"Nanfang Dushibao",NA +102,102,1874,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1875,"2017",6,1,100,2,100,100,"Nanfang Dushibao",NA +102,102,1880,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1881,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +102,102,1893,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1896,"2017",3,1,50,2,50,99,"Nanfang Dushibao",NA +102,102,1897,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1901,"2017",3,0,1,2,99,98,"Nanfang Dushibao",NA +102,102,1911,"2017",3,1,99,3,99,1,"Nanfang Dushibao",NA +102,102,1912,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +102,102,1914,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +102,102,1915,"2017",2,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,1916,"2017",2,0,50,3,50,10,"Nanfang Dushibao",NA +102,102,1918,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +102,102,1920,"2017",6,0,50,3,50,1,"Nanfang Dushibao",NA +102,102,1921,"2017",2,1,30,3,30,60,"Nanfang Dushibao",NA +102,102,1922,"2017",3,1,99,2,99,50,"Nanfang Dushibao",NA +102,102,1934,"2017",5,1,70,3,70,60,"Nanfang Dushibao",NA +102,102,1936,"2017",2,0,40,3,60,99,"Nanfang Dushibao",NA +102,102,1938,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +102,102,1941,"2017",2,0,90,3,10,1,"Nanfang Dushibao",NA +102,102,1948,"2017",3,0,0,3,100,90,"Nanfang Dushibao",NA +102,102,1951,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +102,102,1952,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1953,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +102,102,1955,"2017",3,0,50,3,50,30,"Nanfang Dushibao",NA +102,102,1959,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +102,102,1961,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1962,"2017",6,1,90,3,90,90,"Nanfang Dushibao",NA +102,102,1964,"2017",6,1,50,3,50,50,"Nanfang Dushibao",NA +102,102,1965,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1966,"2017",3,1,99,2,99,90,"Nanfang Dushibao",NA +102,102,1969,"2017",6,0,60,2,40,10,"Nanfang Dushibao",NA +102,102,1970,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,1973,"2017",2,0,1,2,99,1,"Nanfang Dushibao",NA +102,102,1974,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,1975,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,1976,"2017",6,1,80,2,80,50,"Nanfang Dushibao",NA +102,102,1977,"2017",6,1,50,3,50,50,"Nanfang Dushibao",NA +102,102,1978,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,1979,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1981,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,1983,"2017",4,0,40,4,60,NA,"Nanfang Dushibao",NA +102,102,1992,"2017",6,0,80,2,20,50,"Nanfang Dushibao",NA +102,102,1995,"2017",5,0,75,2,25,40,"Nanfang Dushibao",NA +102,102,2005,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,2010,"2017",3,1,99,3,99,80,"Nanfang Dushibao",NA +102,102,2013,"2017",4,1,100,4,100,NA,"Nanfang Dushibao",NA +102,102,2014,"2017",5,1,90,2,90,99,"Nanfang Dushibao",NA +102,102,2019,"2017",5,0,10,3,90,80,"Nanfang Dushibao",NA +102,102,2021,"2017",5,0,10,3,90,70,"Nanfang Dushibao",NA +102,102,2024,"2017",5,1,50,3,50,20,"Nanfang Dushibao",NA +102,102,2027,"2017",3,1,2,2,2,2,"Nanfang Dushibao",NA +102,102,2030,"2017",5,1,50,2,50,99,"Nanfang Dushibao",NA +102,102,2036,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +102,102,2037,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,2042,"2017",6,1,90,3,90,80,"Nanfang Dushibao",NA +102,102,2043,"2017",3,1,90,2,90,90,"Nanfang Dushibao",NA +102,102,2049,"2017",3,1,50,2,50,99,"Nanfang Dushibao",NA +102,102,2050,"2017",3,1,50,3,50,99,"Nanfang Dushibao",NA +102,102,2055,"2017",6,1,40,3,40,60,"Nanfang Dushibao",NA +102,102,2057,"2017",6,1,9,2,9,99,"Nanfang Dushibao",NA +102,102,2063,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,2065,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,2066,"2017",6,0,NA,3,NA,NA,"Nanfang Dushibao",NA +102,102,2068,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,2072,"2017",5,1,90,3,90,70,"Nanfang Dushibao",NA +102,102,2074,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,2078,"2017",5,0,90,2,10,30,"Nanfang Dushibao",NA +102,102,2079,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +102,102,2081,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,2082,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +102,102,2084,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,2087,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +102,102,2090,"2017",2,0,NA,3,NA,1,"Nanfang Dushibao",NA +102,102,2091,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +102,102,2094,"2017",2,0,12,2,88,10,"Nanfang Dushibao",NA +102,102,2095,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,2096,"2017",3,1,1,3,1,50,"Nanfang Dushibao",NA +102,102,2102,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +102,102,2104,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,2106,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,2112,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +102,102,2115,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,2117,"2017",5,1,90,2,90,50,"Nanfang Dushibao",NA +102,102,2119,"2017",5,1,90,3,90,99,"Nanfang Dushibao",NA +102,102,2122,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,2123,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +102,102,2124,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,2125,"2017",6,0,1,3,99,1,"Nanfang Dushibao",NA +102,102,2126,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +102,102,2128,"2017",5,1,80,2,80,70,"Nanfang Dushibao",NA +102,102,2129,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +102,102,2130,"2017",6,0,20,2,80,60,"Nanfang Dushibao",NA +102,102,2131,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +102,102,2132,"2017",5,0,60,3,40,40,"Nanfang Dushibao",NA +102,102,2135,"2017",6,1,90,2,90,90,"Nanfang Dushibao",NA +102,111,2,"2017",2,1,NA,2,NA,NA,"Xinhua",NA +102,111,3,"2017",2,1,NA,3,NA,NA,"Xinhua",NA +102,111,4,"2017",3,1,NA,3,NA,NA,"Xinhua",NA +102,111,6,"2017",4,1,0,2,0,0,"Xinhua",NA +102,111,8,"2017",6,1,99,3,99,99,"Xinhua",NA +102,111,14,"2017",6,0,99,3,1,50,"Xinhua",NA +102,111,15,"2017",2,1,99,3,99,9,"Xinhua",NA +102,111,16,"2017",6,0,99,3,1,50,"Xinhua",NA +102,111,21,"2017",2,0,99,3,1,50,"Xinhua",NA +102,111,25,"2017",6,0,99,3,1,1,"Xinhua",NA +102,111,34,"2017",5,0,1,3,99,99,"Xinhua",NA +102,111,35,"2017",4,0,99,2,1,99,"Xinhua",NA +102,111,38,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,47,"2017",6,0,1,2,99,99,"Xinhua",NA +102,111,48,"2017",6,1,100,2,100,100,"Xinhua",NA +102,111,50,"2017",3,0,15,3,85,80,"Xinhua",NA +102,111,51,"2017",2,1,50,2,50,50,"Xinhua",NA +102,111,53,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,56,"2017",2,0,1,3,99,80,"Xinhua",NA +102,111,58,"2017",5,1,99,2,99,70,"Xinhua",NA +102,111,59,"2017",5,0,80,2,20,10,"Xinhua",NA +102,111,62,"2017",3,0,1,2,99,99,"Xinhua",NA +102,111,63,"2017",5,1,99,3,99,99,"Xinhua",NA +102,111,69,"2017",2,1,99,3,99,99,"Xinhua",NA +102,111,72,"2017",3,1,99,3,99,99,"Xinhua",NA +102,111,1178,"2017",2,1,80,2,80,80,"Xinhua",NA +102,111,1180,"2017",5,1,50,2,50,70,"Xinhua",NA +102,111,1184,"2017",5,0,0,3,100,100,"Xinhua",NA +102,111,1188,"2017",3,1,80,3,80,78,"Xinhua",NA +102,111,1192,"2017",6,1,90,3,90,85,"Xinhua",NA +102,111,1199,"2017",2,1,50,3,50,50,"Xinhua",NA +102,111,1201,"2017",5,1,99,2,99,99,"Xinhua",NA +102,111,1204,"2017",2,0,50,3,50,80,"Xinhua",NA +102,111,1211,"2017",6,0,40,3,60,40,"Xinhua",NA +102,111,1214,"2017",5,1,100,3,100,100,"Xinhua",NA +102,111,1215,"2017",6,0,20,3,80,60,"Xinhua",NA +102,111,1220,"2017",2,0,40,3,60,80,"Xinhua",NA +102,111,1223,"2017",3,1,10,2,10,20,"Xinhua",NA +102,111,1224,"2017",3,1,99,2,99,75,"Xinhua",NA +102,111,1225,"2017",2,1,99,3,99,0,"Xinhua",NA +102,111,1227,"2017",2,1,99,2,99,50,"Xinhua",NA +102,111,1233,"2017",5,1,99,3,99,99,"Xinhua",NA +102,111,1234,"2017",4,0,90,2,10,20,"Xinhua",NA +102,111,1235,"2017",2,1,50,2,50,99,"Xinhua",NA +102,111,1236,"2017",3,0,99,3,1,50,"Xinhua",NA +102,111,1237,"2017",4,0,70,2,30,30,"Xinhua",NA +102,111,1240,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,1246,"2017",2,0,30,3,70,65,"Xinhua",NA +102,111,1248,"2017",6,0,NA,3,NA,20,"Xinhua",NA +102,111,1249,"2017",6,0,1,3,99,99,"Xinhua",NA +102,111,1251,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,1254,"2017",5,0,99,3,1,99,"Xinhua",NA +102,111,1256,"2017",6,0,1,3,99,99,"Xinhua",NA +102,111,1257,"2017",3,0,99,2,1,99,"Xinhua",NA +102,111,1260,"2017",6,0,99,2,1,99,"Xinhua",NA +102,111,1263,"2017",2,1,60,3,60,50,"Xinhua",NA +102,111,1266,"2017",5,0,50,2,50,99,"Xinhua",NA +102,111,1270,"2017",6,0,80,2,20,20,"Xinhua",NA +102,111,1276,"2017",4,0,50,2,50,1,"Xinhua",NA +102,111,1277,"2017",5,1,90,2,90,99,"Xinhua",NA +102,111,1280,"2017",2,0,99,3,1,1,"Xinhua",NA +102,111,1281,"2017",5,1,50,3,50,1,"Xinhua",NA +102,111,1282,"2017",6,1,85,3,85,75,"Xinhua",NA +102,111,1283,"2017",4,0,99,2,1,1,"Xinhua",NA +102,111,1289,"2017",4,0,68,2,32,76,"Xinhua",NA +102,111,1295,"2017",5,1,50,2,50,50,"Xinhua",NA +102,111,1301,"2017",4,0,99,2,1,50,"Xinhua",NA +102,111,1305,"2017",3,1,1,3,1,1,"Xinhua",NA +102,111,1306,"2017",4,0,1,2,99,99,"Xinhua",NA +102,111,1308,"2017",4,0,50,2,50,99,"Xinhua",NA +102,111,1309,"2017",4,1,99,2,99,100,"Xinhua",NA +102,111,1312,"2017",2,1,99,3,99,99,"Xinhua",NA +102,111,1313,"2017",2,0,99,3,1,100,"Xinhua",NA +102,111,1315,"2017",3,1,100,3,100,99,"Xinhua",NA +102,111,1321,"2017",2,0,99,3,1,1,"Xinhua",NA +102,111,1325,"2017",2,0,1,2,99,99,"Xinhua",NA +102,111,1326,"2017",6,0,1,2,99,1,"Xinhua",NA +102,111,1330,"2017",3,0,99,3,1,NA,"Xinhua",NA +102,111,1332,"2017",3,1,95,2,95,NA,"Xinhua",NA +102,111,1333,"2017",3,0,50,2,50,50,"Xinhua",NA +102,111,1337,"2017",5,1,1,2,1,1,"Xinhua",NA +102,111,1341,"2017",5,1,99,3,99,90,"Xinhua",NA +102,111,1342,"2017",5,1,95,2,95,60,"Xinhua",NA +102,111,1345,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,1347,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,1349,"2017",5,1,50,2,50,50,"Xinhua",NA +102,111,1355,"2017",4,0,99,2,1,1,"Xinhua",NA +102,111,1360,"2017",5,1,50,3,50,50,"Xinhua",NA +102,111,1361,"2017",5,0,1,2,99,99,"Xinhua",NA +102,111,1365,"2017",2,1,1,2,1,1,"Xinhua",NA +102,111,1367,"2017",4,1,1,2,1,1,"Xinhua",NA +102,111,1368,"2017",4,0,1,2,99,99,"Xinhua",NA +102,111,1375,"2017",2,0,50,3,50,50,"Xinhua",NA +102,111,1376,"2017",2,1,99,3,99,65,"Xinhua",NA +102,111,1377,"2017",3,0,11,3,89,80,"Xinhua",NA +102,111,1380,"2017",5,0,99,2,1,1,"Xinhua",NA +102,111,1386,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1387,"2017",2,0,1,2,99,99,"Xinhua",NA +102,111,1388,"2017",5,1,70,3,70,70,"Xinhua",NA +102,111,1390,"2017",6,0,20,3,80,80,"Xinhua",NA +102,111,1394,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,1397,"2017",4,1,1,2,1,1,"Xinhua",NA +102,111,1398,"2017",5,1,50,2,50,50,"Xinhua",NA +102,111,1400,"2017",4,0,1,2,99,99,"Xinhua",NA +102,111,1401,"2017",2,0,1,2,99,99,"Xinhua",NA +102,111,1402,"2017",3,0,1,3,99,80,"Xinhua",NA +102,111,1406,"2017",3,0,99,3,1,99,"Xinhua",NA +102,111,1408,"2017",5,0,1,3,99,99,"Xinhua",NA +102,111,1410,"2017",4,0,99,2,1,100,"Xinhua",NA +102,111,1412,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,1413,"2017",2,1,99,2,99,1,"Xinhua",NA +102,111,1414,"2017",5,0,1,3,99,99,"Xinhua",NA +102,111,1417,"2017",4,0,65,2,35,60,"Xinhua",NA +102,111,1420,"2017",6,1,99,3,99,NA,"Xinhua",NA +102,111,1428,"2017",5,1,90,2,90,NA,"Xinhua",NA +102,111,1429,"2017",5,0,99,3,1,1,"Xinhua",NA +102,111,1432,"2017",6,0,1,3,99,99,"Xinhua",NA +102,111,1434,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1435,"2017",4,0,99,2,1,99,"Xinhua",NA +102,111,1436,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,1442,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,1443,"2017",6,0,1,3,99,99,"Xinhua",NA +102,111,1448,"2017",5,1,99,2,99,99,"Xinhua",NA +102,111,1449,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,1450,"2017",3,1,80,2,80,80,"Xinhua",NA +102,111,1451,"2017",4,1,50,2,50,50,"Xinhua",NA +102,111,1454,"2017",5,0,99,2,1,50,"Xinhua",NA +102,111,1459,"2017",5,0,1,3,99,99,"Xinhua",NA +102,111,1462,"2017",6,0,1,2,99,99,"Xinhua",NA +102,111,1464,"2017",2,0,70,3,30,30,"Xinhua",NA +102,111,1465,"2017",5,0,50,3,50,99,"Xinhua",NA +102,111,1466,"2017",5,1,98,2,98,50,"Xinhua",NA +102,111,1468,"2017",5,1,99,2,99,99,"Xinhua",NA +102,111,1472,"2017",4,0,1,2,99,NA,"Xinhua",NA +102,111,1473,"2017",5,0,1,2,99,90,"Xinhua",NA +102,111,1478,"2017",6,0,1,3,99,99,"Xinhua",NA +102,111,1479,"2017",3,1,80,2,80,50,"Xinhua",NA +102,111,1480,"2017",6,1,99,3,99,99,"Xinhua",NA +102,111,1481,"2017",6,0,98,2,2,1,"Xinhua",NA +102,111,1488,"2017",6,0,1,3,99,1,"Xinhua",NA +102,111,1491,"2017",6,1,50,2,50,50,"Xinhua",NA +102,111,1494,"2017",5,1,99,3,99,99,"Xinhua",NA +102,111,1495,"2017",3,0,99,2,1,99,"Xinhua",NA +102,111,1498,"2017",4,0,50,2,50,1,"Xinhua",NA +102,111,1500,"2017",3,0,99,3,1,50,"Xinhua",NA +102,111,1501,"2017",2,0,1,3,99,99,"Xinhua",NA +102,111,1502,"2017",4,0,99,2,1,99,"Xinhua",NA +102,111,1504,"2017",2,0,99,2,1,50,"Xinhua",NA +102,111,1505,"2017",5,0,100,3,0,2,"Xinhua",NA +102,111,1513,"2017",6,1,50,3,50,50,"Xinhua",NA +102,111,1515,"2017",6,1,99,3,99,1,"Xinhua",NA +102,111,1517,"2017",4,1,99,2,99,85,"Xinhua",NA +102,111,1518,"2017",6,0,99,2,1,99,"Xinhua",NA +102,111,1521,"2017",3,1,99,3,99,99,"Xinhua",NA +102,111,1522,"2017",2,0,90,2,10,25,"Xinhua",NA +102,111,1524,"2017",2,0,10,2,90,95,"Xinhua",NA +102,111,1527,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +102,111,1529,"2017",6,1,80,2,80,50,"Xinhua",NA +102,111,1532,"2017",6,0,87,2,13,15,"Xinhua",NA +102,111,1533,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1535,"2017",5,1,99,3,99,99,"Xinhua",NA +102,111,1539,"2017",2,0,43,2,57,57,"Xinhua",NA +102,111,1540,"2017",2,1,50,2,50,50,"Xinhua",NA +102,111,1543,"2017",6,0,70,3,30,40,"Xinhua",NA +102,111,1549,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1551,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,1554,"2017",2,1,90,3,90,2,"Xinhua",NA +102,111,1555,"2017",2,1,99,2,99,1,"Xinhua",NA +102,111,1556,"2017",5,0,NA,2,NA,1,"Xinhua",NA +102,111,1557,"2017",2,1,50,2,50,50,"Xinhua",NA +102,111,1562,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1567,"2017",6,0,1,3,99,50,"Xinhua",NA +102,111,1568,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,1571,"2017",5,0,80,2,20,30,"Xinhua",NA +102,111,1579,"2017",2,0,40,3,60,60,"Xinhua",NA +102,111,1581,"2017",6,0,1,2,99,1,"Xinhua",NA +102,111,1582,"2017",4,0,1,2,99,99,"Xinhua",NA +102,111,1583,"2017",5,1,70,2,70,70,"Xinhua",NA +102,111,1585,"2017",4,0,NA,2,NA,30,"Xinhua",NA +102,111,1586,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1590,"2017",2,0,100,2,0,NA,"Xinhua",NA +102,111,1591,"2017",4,0,50,2,50,NA,"Xinhua",NA +102,111,1593,"2017",5,1,99,2,99,99,"Xinhua",NA +102,111,1595,"2017",4,0,99,2,1,99,"Xinhua",NA +102,111,1596,"2017",4,0,1,2,99,99,"Xinhua",NA +102,111,1597,"2017",4,0,80,2,20,20,"Xinhua",NA +102,111,1602,"2017",6,0,99,2,1,99,"Xinhua",NA +102,111,1603,"2017",3,1,NA,3,NA,NA,"Xinhua",NA +102,111,1604,"2017",3,0,50,2,50,50,"Xinhua",NA +102,111,1605,"2017",6,0,NA,3,NA,1,"Xinhua",NA +102,111,1607,"2017",3,0,70,2,30,80,"Xinhua",NA +102,111,1608,"2017",4,0,99,2,1,1,"Xinhua",NA +102,111,1610,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,1611,"2017",3,1,99,3,99,NA,"Xinhua",NA +102,111,1612,"2017",2,0,50,3,50,50,"Xinhua",NA +102,111,1615,"2017",2,0,5,3,95,NA,"Xinhua",NA +102,111,1616,"2017",2,1,99,3,99,99,"Xinhua",NA +102,111,1617,"2017",6,0,1,2,99,50,"Xinhua",NA +102,111,1625,"2017",5,0,60,2,40,80,"Xinhua",NA +102,111,1628,"2017",3,0,80,2,20,60,"Xinhua",NA +102,111,1629,"2017",4,1,90,2,90,80,"Xinhua",NA +102,111,1630,"2017",5,0,70,2,30,40,"Xinhua",NA +102,111,1632,"2017",6,1,70,2,70,60,"Xinhua",NA +102,111,1635,"2017",6,0,30,3,70,50,"Xinhua",NA +102,111,1640,"2017",6,0,0,2,100,50,"Xinhua",NA +102,111,1642,"2017",2,1,99,3,99,1,"Xinhua",NA +102,111,1643,"2017",4,0,50,2,50,50,"Xinhua",NA +102,111,1644,"2017",6,1,99,3,99,99,"Xinhua",NA +102,111,1646,"2017",4,0,80,2,20,20,"Xinhua",NA +102,111,1649,"2017",2,1,99,3,99,1,"Xinhua",NA +102,111,1651,"2017",2,0,99,3,1,50,"Xinhua",NA +102,111,1653,"2017",2,1,99,3,99,99,"Xinhua",NA +102,111,1654,"2017",3,1,99,3,99,99,"Xinhua",NA +102,111,1665,"2017",5,1,99,2,99,99,"Xinhua",NA +102,111,1666,"2017",3,1,99,3,99,NA,"Xinhua",NA +102,111,1668,"2017",2,0,1,2,99,99,"Xinhua",NA +102,111,1672,"2017",6,0,99,2,1,1,"Xinhua",NA +102,111,1673,"2017",2,0,99,3,1,99,"Xinhua",NA +102,111,1675,"2017",6,0,1,2,99,99,"Xinhua",NA +102,111,1677,"2017",4,0,50,2,50,50,"Xinhua",NA +102,111,1681,"2017",3,1,99,3,99,99,"Xinhua",NA +102,111,1683,"2017",6,1,99,3,99,99,"Xinhua",NA +102,111,1684,"2017",3,0,99,3,1,60,"Xinhua",NA +102,111,1690,"2017",2,1,50,3,50,50,"Xinhua",NA +102,111,1692,"2017",6,1,99,3,99,50,"Xinhua",NA +102,111,1699,"2017",3,0,85,3,15,30,"Xinhua",NA +102,111,1704,"2017",2,0,100,2,0,100,"Xinhua",NA +102,111,1706,"2017",2,1,NA,3,NA,NA,"Xinhua",NA +102,111,1711,"2017",6,0,100,2,0,0,"Xinhua",NA +102,111,1712,"2017",4,0,51,2,49,50,"Xinhua",NA +102,111,1717,"2017",4,0,40,2,60,70,"Xinhua",NA +102,111,1720,"2017",2,0,100,2,0,NA,"Xinhua",NA +102,111,1722,"2017",5,1,90,2,90,50,"Xinhua",NA +102,111,1723,"2017",3,1,99,2,99,50,"Xinhua",NA +102,111,1728,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,1729,"2017",6,1,20,3,20,51,"Xinhua",NA +102,111,1730,"2017",2,1,60,2,60,50,"Xinhua",NA +102,111,1736,"2017",2,0,1,3,99,70,"Xinhua",NA +102,111,1738,"2017",6,0,1,3,99,99,"Xinhua",NA +102,111,1739,"2017",4,0,50,2,50,50,"Xinhua",NA +102,111,1740,"2017",3,1,99,3,99,99,"Xinhua",NA +102,111,1741,"2017",3,1,99,3,99,99,"Xinhua",NA +102,111,1742,"2017",3,0,99,3,1,1,"Xinhua",NA +102,111,1744,"2017",6,0,1,2,99,99,"Xinhua",NA +102,111,1755,"2017",3,1,95,3,95,90,"Xinhua",NA +102,111,1757,"2017",2,0,50,3,50,30,"Xinhua",NA +102,111,1760,"2017",5,0,31,2,69,49,"Xinhua",NA +102,111,1765,"2017",6,0,99,3,1,1,"Xinhua",NA +102,111,1773,"2017",2,0,NA,3,NA,12,"Xinhua",NA +102,111,1774,"2017",5,1,99,3,99,99,"Xinhua",NA +102,111,1775,"2017",3,1,NA,3,NA,87,"Xinhua",NA +102,111,1776,"2017",5,1,83,3,83,79,"Xinhua",NA +102,111,1779,"2017",4,0,96,2,4,11,"Xinhua",NA +102,111,1784,"2017",3,0,95,3,5,8,"Xinhua",NA +102,111,1789,"2017",6,1,98,2,98,99,"Xinhua",NA +102,111,1790,"2017",6,0,80,2,20,84,"Xinhua",NA +102,111,1802,"2017",3,0,NA,2,NA,17,"Xinhua",NA +102,111,1804,"2017",4,1,75,2,75,89,"Xinhua",NA +102,111,1805,"2017",2,1,82,2,82,88,"Xinhua",NA +102,111,1806,"2017",5,0,53,2,47,59,"Xinhua",NA +102,111,1807,"2017",3,1,50,3,50,50,"Xinhua",NA +102,111,1809,"2017",3,1,99,3,99,1,"Xinhua",NA +102,111,1813,"2017",6,1,50,3,50,1,"Xinhua",NA +102,111,1814,"2017",5,0,40,2,60,40,"Xinhua",NA +102,111,1816,"2017",2,1,70,3,70,50,"Xinhua",NA +102,111,1818,"2017",3,0,80,3,20,30,"Xinhua",NA +102,111,1819,"2017",6,1,85,2,85,70,"Xinhua",NA +102,111,1820,"2017",2,0,1,3,99,99,"Xinhua",NA +102,111,1822,"2017",2,1,99,3,99,99,"Xinhua",NA +102,111,1825,"2017",5,1,99,3,99,99,"Xinhua",NA +102,111,1826,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,1828,"2017",2,0,75,3,25,40,"Xinhua",NA +102,111,1829,"2017",3,1,50,2,50,50,"Xinhua",NA +102,111,1832,"2017",3,0,60,3,40,40,"Xinhua",NA +102,111,1833,"2017",5,0,NA,2,NA,99,"Xinhua",NA +102,111,1834,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1835,"2017",6,0,99,3,1,1,"Xinhua",NA +102,111,1839,"2017",5,0,99,3,1,1,"Xinhua",NA +102,111,1840,"2017",6,0,90,3,10,10,"Xinhua",NA +102,111,1844,"2017",6,0,1,2,99,99,"Xinhua",NA +102,111,1847,"2017",4,0,99,2,1,1,"Xinhua",NA +102,111,1850,"2017",5,0,1,2,99,99,"Xinhua",NA +102,111,1851,"2017",4,0,99,2,1,1,"Xinhua",NA +102,111,1853,"2017",2,0,1,2,99,99,"Xinhua",NA +102,111,1855,"2017",5,1,99,3,99,1,"Xinhua",NA +102,111,1860,"2017",6,0,1,3,99,99,"Xinhua",NA +102,111,1861,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1866,"2017",6,0,99,2,1,99,"Xinhua",NA +102,111,1867,"2017",2,0,1,3,99,99,"Xinhua",NA +102,111,1868,"2017",5,0,99,2,1,1,"Xinhua",NA +102,111,1870,"2017",5,0,100,3,0,100,"Xinhua",NA +102,111,1871,"2017",5,0,1,2,99,1,"Xinhua",NA +102,111,1872,"2017",2,1,99,3,99,99,"Xinhua",NA +102,111,1874,"2017",6,1,99,3,99,99,"Xinhua",NA +102,111,1876,"2017",5,1,99,2,99,99,"Xinhua",NA +102,111,1880,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1881,"2017",5,0,99,3,1,1,"Xinhua",NA +102,111,1884,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,1885,"2017",6,0,50,2,50,50,"Xinhua",NA +102,111,1887,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,1888,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1889,"2017",5,0,1,2,99,99,"Xinhua",NA +102,111,1891,"2017",6,0,99,3,1,1,"Xinhua",NA +102,111,1892,"2017",4,1,80,2,80,50,"Xinhua",NA +102,111,1893,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1894,"2017",2,0,50,2,50,50,"Xinhua",NA +102,111,1895,"2017",2,1,99,3,99,NA,"Xinhua",NA +102,111,1897,"2017",3,1,99,3,99,99,"Xinhua",NA +102,111,1898,"2017",2,0,1,2,99,1,"Xinhua",NA +102,111,1900,"2017",6,1,50,3,50,66,"Xinhua",NA +102,111,1903,"2017",4,0,99,2,1,1,"Xinhua",NA +102,111,1904,"2017",6,0,1,2,99,99,"Xinhua",NA +102,111,1905,"2017",5,1,99,2,99,90,"Xinhua",NA +102,111,1906,"2017",2,0,99,2,1,1,"Xinhua",NA +102,111,1910,"2017",5,0,99,2,1,99,"Xinhua",NA +102,111,1917,"2017",4,0,99,2,1,1,"Xinhua",NA +102,111,1922,"2017",3,1,99,3,99,99,"Xinhua",NA +102,111,1924,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,1929,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,1931,"2017",4,0,90,2,10,20,"Xinhua",NA +102,111,1941,"2017",2,0,99,2,1,1,"Xinhua",NA +102,111,1942,"2017",2,0,1,2,99,99,"Xinhua",NA +102,111,1947,"2017",6,1,80,3,80,70,"Xinhua",NA +102,111,1951,"2017",3,0,50,3,50,50,"Xinhua",NA +102,111,1954,"2017",6,1,99,3,99,1,"Xinhua",NA +102,111,1956,"2017",4,0,85,2,15,20,"Xinhua",NA +102,111,1958,"2017",5,1,99,2,99,99,"Xinhua",NA +102,111,1960,"2017",2,1,99,2,99,50,"Xinhua",NA +102,111,1963,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,1964,"2017",6,1,50,2,50,50,"Xinhua",NA +102,111,1967,"2017",3,0,1,3,99,99,"Xinhua",NA +102,111,1968,"2017",4,0,99,2,1,99,"Xinhua",NA +102,111,1971,"2017",6,0,10,3,90,70,"Xinhua",NA +102,111,1974,"2017",2,1,50,3,50,99,"Xinhua",NA +102,111,1977,"2017",6,1,50,2,50,99,"Xinhua",NA +102,111,1980,"2017",4,0,80,2,20,30,"Xinhua",NA +102,111,1984,"2017",3,0,99,3,1,20,"Xinhua",NA +102,111,1988,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,1989,"2017",3,1,100,3,100,100,"Xinhua",NA +102,111,1993,"2017",4,0,99,2,1,1,"Xinhua",NA +102,111,1994,"2017",6,0,1,2,99,50,"Xinhua",NA +102,111,1995,"2017",5,0,80,3,20,25,"Xinhua",NA +102,111,1999,"2017",2,0,10,2,90,80,"Xinhua",NA +102,111,2002,"2017",3,0,99,3,1,1,"Xinhua",NA +102,111,2003,"2017",2,0,90,3,10,90,"Xinhua",NA +102,111,2005,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,2010,"2017",3,1,80,2,80,50,"Xinhua",NA +102,111,2012,"2017",4,0,10,2,90,50,"Xinhua",NA +102,111,2014,"2017",5,1,95,3,95,90,"Xinhua",NA +102,111,2015,"2017",6,0,90,2,10,10,"Xinhua",NA +102,111,2016,"2017",4,1,99,2,99,90,"Xinhua",NA +102,111,2018,"2017",4,0,50,2,50,50,"Xinhua",NA +102,111,2019,"2017",5,0,20,2,80,60,"Xinhua",NA +102,111,2020,"2017",2,1,50,2,50,99,"Xinhua",NA +102,111,2021,"2017",5,0,30,2,70,40,"Xinhua",NA +102,111,2022,"2017",3,0,10,2,90,70,"Xinhua",NA +102,111,2026,"2017",3,1,90,2,90,80,"Xinhua",NA +102,111,2028,"2017",6,0,70,3,30,40,"Xinhua",NA +102,111,2029,"2017",5,0,99,3,1,NA,"Xinhua",NA +102,111,2031,"2017",3,0,99,3,1,1,"Xinhua",NA +102,111,2033,"2017",2,1,99,3,99,99,"Xinhua",NA +102,111,2035,"2017",2,1,90,2,90,90,"Xinhua",NA +102,111,2039,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,2040,"2017",4,1,90,2,90,90,"Xinhua",NA +102,111,2045,"2017",6,0,1,3,99,99,"Xinhua",NA +102,111,2046,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,2048,"2017",5,1,50,3,50,50,"Xinhua",NA +102,111,2049,"2017",3,1,25,3,25,50,"Xinhua",NA +102,111,2051,"2017",2,0,99,3,1,1,"Xinhua",NA +102,111,2052,"2017",3,1,90,2,90,90,"Xinhua",NA +102,111,2056,"2017",6,0,90,3,10,40,"Xinhua",NA +102,111,2057,"2017",6,1,90,3,90,9,"Xinhua",NA +102,111,2058,"2017",6,0,40,3,60,80,"Xinhua",NA +102,111,2059,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,2066,"2017",6,0,NA,2,NA,NA,"Xinhua",NA +102,111,2069,"2017",2,0,99,2,1,1,"Xinhua",NA +102,111,2070,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,2073,"2017",6,1,99,3,99,99,"Xinhua",NA +102,111,2075,"2017",3,1,75,3,75,99,"Xinhua",NA +102,111,2077,"2017",3,0,1,3,99,99,"Xinhua",NA +102,111,2080,"2017",3,0,70,2,30,30,"Xinhua",NA +102,111,2082,"2017",5,0,1,3,99,99,"Xinhua",NA +102,111,2086,"2017",5,1,99,2,99,99,"Xinhua",NA +102,111,2090,"2017",2,0,99,2,1,1,"Xinhua",NA +102,111,2092,"2017",3,1,90,2,90,99,"Xinhua",NA +102,111,2095,"2017",6,0,1,2,99,80,"Xinhua",NA +102,111,2098,"2017",6,1,99,3,99,99,"Xinhua",NA +102,111,2101,"2017",5,0,99,3,1,1,"Xinhua",NA +102,111,2108,"2017",3,1,99,2,99,99,"Xinhua",NA +102,111,2111,"2017",3,0,70,3,30,10,"Xinhua",NA +102,111,2112,"2017",3,1,99,3,99,1,"Xinhua",NA +102,111,2113,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,2114,"2017",4,1,99,2,99,99,"Xinhua",NA +102,111,2115,"2017",5,0,1,2,99,99,"Xinhua",NA +102,111,2116,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,2120,"2017",5,0,50,2,50,50,"Xinhua",NA +102,111,2121,"2017",2,1,99,2,99,99,"Xinhua",NA +102,111,2125,"2017",6,0,99,2,1,99,"Xinhua",NA +102,111,2126,"2017",6,1,99,2,99,99,"Xinhua",NA +102,111,2127,"2017",5,0,1,3,99,99,"Xinhua",NA +102,111,2128,"2017",5,1,80,3,80,80,"Xinhua",NA +102,111,2134,"2017",4,0,2,2,98,97,"Xinhua",NA +102,112,5,"2017",6,0,NA,2,NA,NA,"BBC",NA +102,112,8,"2017",6,1,99,2,99,99,"BBC",NA +102,112,11,"2017",2,1,20,2,20,50,"BBC",NA +102,112,17,"2017",3,1,99,2,99,99,"BBC",NA +102,112,19,"2017",6,1,70,2,70,99,"BBC",NA +102,112,20,"2017",2,0,1,3,99,99,"BBC",NA +102,112,22,"2017",2,0,20,3,80,NA,"BBC",NA +102,112,23,"2017",2,1,50,2,50,99,"BBC",NA +102,112,26,"2017",3,1,60,3,60,30,"BBC",NA +102,112,33,"2017",3,1,99,2,99,99,"BBC",NA +102,112,36,"2017",6,1,45,2,45,55,"BBC",NA +102,112,37,"2017",6,1,99,2,99,99,"BBC",NA +102,112,40,"2017",3,1,98,2,98,98,"BBC",NA +102,112,42,"2017",5,1,80,2,80,80,"BBC",NA +102,112,52,"2017",6,0,10,3,90,80,"BBC",NA +102,112,54,"2017",4,0,99,3,1,NA,"BBC",NA +102,112,57,"2017",5,0,75,2,25,35,"BBC",NA +102,112,60,"2017",2,0,50,3,50,1,"BBC",NA +102,112,61,"2017",6,1,99,2,99,NA,"BBC",NA +102,112,62,"2017",3,0,50,3,50,99,"BBC",NA +102,112,66,"2017",6,1,50,2,50,50,"BBC",NA +102,112,67,"2017",6,0,6,2,94,97,"BBC",NA +102,112,70,"2017",3,0,80,3,20,20,"BBC",NA +102,112,71,"2017",2,1,50,2,50,9,"BBC",NA +102,112,1169,"2017",3,0,1,3,99,99,"BBC",NA +102,112,1170,"2017",5,0,1,3,99,99,"BBC",NA +102,112,1174,"2017",6,0,0,2,100,100,"BBC",NA +102,112,1176,"2017",2,0,0,3,100,100,"BBC",NA +102,112,1179,"2017",2,1,20,3,20,20,"BBC",NA +102,112,1181,"2017",4,1,50,3,50,NA,"BBC",NA +102,112,1183,"2017",2,0,50,3,50,70,"BBC",NA +102,112,1186,"2017",5,0,30,3,70,90,"BBC",NA +102,112,1189,"2017",4,0,99,3,1,NA,"BBC",NA +102,112,1191,"2017",3,1,NA,3,NA,NA,"BBC",NA +102,112,1193,"2017",2,1,75,3,75,80,"BBC",NA +102,112,1198,"2017",6,0,10,2,90,80,"BBC",NA +102,112,1199,"2017",2,1,50,2,50,50,"BBC",NA +102,112,1200,"2017",5,1,30,2,30,50,"BBC",NA +102,112,1204,"2017",2,0,20,2,80,50,"BBC",NA +102,112,1205,"2017",5,0,50,3,50,99,"BBC",NA +102,112,1208,"2017",3,1,100,3,100,100,"BBC",NA +102,112,1209,"2017",2,1,100,2,100,100,"BBC",NA +102,112,1210,"2017",6,1,40,2,40,20,"BBC",NA +102,112,1211,"2017",6,0,60,2,40,58,"BBC",NA +102,112,1220,"2017",2,0,20,2,80,60,"BBC",NA +102,112,1221,"2017",2,0,40,3,60,70,"BBC",NA +102,112,1224,"2017",3,1,75,3,75,99,"BBC",NA +102,112,1225,"2017",2,1,0,2,0,99,"BBC",NA +102,112,1229,"2017",6,1,40,2,40,50,"BBC",NA +102,112,1238,"2017",5,0,80,2,20,80,"BBC",NA +102,112,1240,"2017",2,1,99,3,99,99,"BBC",NA +102,112,1243,"2017",3,1,70,2,70,60,"BBC",NA +102,112,1244,"2017",6,0,50,3,50,1,"BBC",NA +102,112,1249,"2017",6,0,1,2,99,99,"BBC",NA +102,112,1252,"2017",2,0,99,3,1,NA,"BBC",NA +102,112,1255,"2017",6,0,1,3,99,1,"BBC",NA +102,112,1258,"2017",3,0,99,2,1,50,"BBC",NA +102,112,1259,"2017",4,1,97,3,97,NA,"BBC",NA +102,112,1260,"2017",6,0,99,3,1,1,"BBC",NA +102,112,1264,"2017",4,1,1,3,1,NA,"BBC",NA +102,112,1270,"2017",6,0,80,3,20,20,"BBC",NA +102,112,1272,"2017",6,1,1,3,1,99,"BBC",NA +102,112,1273,"2017",6,1,1,3,1,1,"BBC",NA +102,112,1278,"2017",2,0,80,3,20,40,"BBC",NA +102,112,1279,"2017",2,0,100,3,0,0,"BBC",NA +102,112,1284,"2017",2,0,99,3,1,91,"BBC",NA +102,112,1288,"2017",3,1,99,3,99,50,"BBC",NA +102,112,1290,"2017",6,1,90,3,90,100,"BBC",NA +102,112,1293,"2017",5,0,NA,2,NA,50,"BBC",NA +102,112,1297,"2017",6,1,75,3,75,70,"BBC",NA +102,112,1304,"2017",3,0,50,2,50,50,"BBC",NA +102,112,1305,"2017",3,1,1,2,1,50,"BBC",NA +102,112,1307,"2017",6,0,45,2,55,55,"BBC",NA +102,112,1311,"2017",6,0,1,2,99,99,"BBC",NA +102,112,1315,"2017",3,1,99,2,99,99,"BBC",NA +102,112,1317,"2017",2,0,50,2,50,1,"BBC",NA +102,112,1319,"2017",5,0,99,3,1,99,"BBC",NA +102,112,1321,"2017",2,0,99,2,1,50,"BBC",NA +102,112,1322,"2017",6,1,99,2,99,99,"BBC",NA +102,112,1323,"2017",2,0,50,2,50,50,"BBC",NA +102,112,1324,"2017",6,0,65,2,35,40,"BBC",NA +102,112,1325,"2017",2,0,1,3,99,99,"BBC",NA +102,112,1331,"2017",5,1,50,3,50,NA,"BBC",NA +102,112,1332,"2017",3,1,50,3,50,95,"BBC",NA +102,112,1334,"2017",3,1,99,3,99,99,"BBC",NA +102,112,1339,"2017",5,1,99,2,99,99,"BBC",NA +102,112,1344,"2017",2,1,NA,2,NA,60,"BBC",NA +102,112,1348,"2017",4,1,90,3,90,NA,"BBC",NA +102,112,1349,"2017",5,1,50,3,50,50,"BBC",NA +102,112,1357,"2017",3,0,40,2,60,60,"BBC",NA +102,112,1358,"2017",5,1,1,2,1,50,"BBC",NA +102,112,1360,"2017",5,1,50,2,50,40,"BBC",NA +102,112,1362,"2017",6,0,60,3,40,50,"BBC",NA +102,112,1363,"2017",2,1,100,3,100,0,"BBC",NA +102,112,1364,"2017",5,0,99,2,1,1,"BBC",NA +102,112,1365,"2017",2,1,99,3,99,1,"BBC",NA +102,112,1366,"2017",2,0,1,3,99,99,"BBC",NA +102,112,1371,"2017",5,1,50,2,50,50,"BBC",NA +102,112,1373,"2017",2,0,1,3,99,85,"BBC",NA +102,112,1375,"2017",2,0,50,2,50,30,"BBC",NA +102,112,1378,"2017",3,0,99,2,1,1,"BBC",NA +102,112,1379,"2017",3,1,100,3,100,100,"BBC",NA +102,112,1381,"2017",3,1,22,3,22,12,"BBC",NA +102,112,1383,"2017",5,1,99,3,99,99,"BBC",NA +102,112,1386,"2017",6,1,99,3,99,99,"BBC",NA +102,112,1388,"2017",5,1,70,2,70,70,"BBC",NA +102,112,1389,"2017",3,1,1,3,1,50,"BBC",NA +102,112,1390,"2017",6,0,20,2,80,80,"BBC",NA +102,112,1395,"2017",3,1,73,2,73,80,"BBC",NA +102,112,1396,"2017",3,0,1,2,99,1,"BBC",NA +102,112,1403,"2017",2,0,99,2,1,99,"BBC",NA +102,112,1405,"2017",6,1,1,2,1,1,"BBC",NA +102,112,1415,"2017",3,0,1,2,99,99,"BBC",NA +102,112,1421,"2017",2,0,50,2,50,50,"BBC",NA +102,112,1426,"2017",6,1,50,3,50,99,"BBC",NA +102,112,1432,"2017",6,0,1,2,99,99,"BBC",NA +102,112,1439,"2017",5,1,50,2,50,1,"BBC",NA +102,112,1441,"2017",6,0,1,2,99,99,"BBC",NA +102,112,1443,"2017",6,0,1,2,99,99,"BBC",NA +102,112,1444,"2017",3,1,99,2,99,99,"BBC",NA +102,112,1446,"2017",2,1,50,3,50,99,"BBC",NA +102,112,1453,"2017",2,0,99,2,1,90,"BBC",NA +102,112,1454,"2017",5,0,1,3,99,1,"BBC",NA +102,112,1457,"2017",4,0,99,3,1,NA,"BBC",NA +102,112,1460,"2017",2,1,1,3,1,99,"BBC",NA +102,112,1462,"2017",6,0,1,3,99,99,"BBC",NA +102,112,1464,"2017",2,0,70,2,30,70,"BBC",NA +102,112,1470,"2017",3,0,99,3,1,99,"BBC",NA +102,112,1473,"2017",5,0,2,3,98,99,"BBC",NA +102,112,1474,"2017",5,1,50,3,50,99,"BBC",NA +102,112,1475,"2017",2,0,99,3,1,1,"BBC",NA +102,112,1479,"2017",3,1,18,3,18,80,"BBC",NA +102,112,1480,"2017",6,1,99,2,99,NA,"BBC",NA +102,112,1483,"2017",6,0,99,2,1,1,"BBC",NA +102,112,1484,"2017",3,0,50,3,50,50,"BBC",NA +102,112,1487,"2017",5,1,99,2,99,99,"BBC",NA +102,112,1489,"2017",2,1,99,3,99,99,"BBC",NA +102,112,1491,"2017",6,1,50,3,50,50,"BBC",NA +102,112,1497,"2017",5,1,30,3,30,50,"BBC",NA +102,112,1501,"2017",2,0,1,2,99,99,"BBC",NA +102,112,1503,"2017",6,1,1,3,1,99,"BBC",NA +102,112,1505,"2017",5,0,98,2,2,1,"BBC",NA +102,112,1506,"2017",3,0,50,3,50,50,"BBC",NA +102,112,1507,"2017",5,1,50,3,50,50,"BBC",NA +102,112,1508,"2017",5,0,99,3,1,1,"BBC",NA +102,112,1509,"2017",5,0,90,2,10,40,"BBC",NA +102,112,1511,"2017",5,1,99,3,99,99,"BBC",NA +102,112,1512,"2017",3,1,1,3,1,99,"BBC",NA +102,112,1514,"2017",3,0,99,2,1,1,"BBC",NA +102,112,1515,"2017",6,1,1,2,1,99,"BBC",NA +102,112,1519,"2017",6,1,55,3,55,35,"BBC",NA +102,112,1520,"2017",5,0,1,3,99,99,"BBC",NA +102,112,1524,"2017",2,0,15,3,85,90,"BBC",NA +102,112,1525,"2017",5,0,60,2,40,60,"BBC",NA +102,112,1528,"2017",3,0,1,2,99,50,"BBC",NA +102,112,1530,"2017",6,1,50,3,50,50,"BBC",NA +102,112,1531,"2017",2,0,99,3,1,1,"BBC",NA +102,112,1533,"2017",6,1,66,3,66,99,"BBC",NA +102,112,1536,"2017",3,1,50,3,50,50,"BBC",NA +102,112,1537,"2017",3,0,99,2,1,1,"BBC",NA +102,112,1539,"2017",2,0,55,3,45,57,"BBC",NA +102,112,1543,"2017",6,0,60,2,40,50,"BBC",NA +102,112,1544,"2017",3,0,99,3,1,50,"BBC",NA +102,112,1547,"2017",3,1,80,3,80,80,"BBC",NA +102,112,1549,"2017",6,1,50,3,50,99,"BBC",NA +102,112,1550,"2017",3,1,NA,2,NA,50,"BBC",NA +102,112,1552,"2017",5,1,1,2,1,99,"BBC",NA +102,112,1553,"2017",3,0,1,2,99,99,"BBC",NA +102,112,1556,"2017",5,0,50,3,50,NA,"BBC",NA +102,112,1557,"2017",2,1,99,3,99,50,"BBC",NA +102,112,1559,"2017",3,1,55,3,55,99,"BBC",NA +102,112,1560,"2017",5,1,50,3,50,50,"BBC",NA +102,112,1563,"2017",6,1,89,3,89,99,"BBC",NA +102,112,1564,"2017",6,0,20,3,80,80,"BBC",NA +102,112,1567,"2017",6,0,50,2,50,1,"BBC",NA +102,112,1573,"2017",5,0,1,3,99,99,"BBC",NA +102,112,1575,"2017",4,0,100,3,0,NA,"BBC",NA +102,112,1579,"2017",2,0,40,2,60,60,"BBC",NA +102,112,1583,"2017",5,1,65,3,65,70,"BBC",NA +102,112,1587,"2017",3,1,1,3,1,1,"BBC",NA +102,112,1590,"2017",2,0,NA,3,NA,0,"BBC",NA +102,112,1593,"2017",5,1,88,3,88,99,"BBC",NA +102,112,1601,"2017",5,1,30,2,30,80,"BBC",NA +102,112,1605,"2017",6,0,99,2,1,99,"BBC",NA +102,112,1606,"2017",5,0,50,3,50,50,"BBC",NA +102,112,1611,"2017",3,1,NA,2,NA,99,"BBC",NA +102,112,1615,"2017",2,0,NA,2,NA,99,"BBC",NA +102,112,1617,"2017",6,0,50,3,50,99,"BBC",NA +102,112,1618,"2017",5,0,99,2,1,99,"BBC",NA +102,112,1626,"2017",2,0,99,3,1,1,"BBC",NA +102,112,1627,"2017",6,1,30,2,30,60,"BBC",NA +102,112,1632,"2017",6,1,50,3,50,70,"BBC",NA +102,112,1633,"2017",3,1,99,3,99,99,"BBC",NA +102,112,1635,"2017",6,0,50,2,50,60,"BBC",NA +102,112,1637,"2017",3,1,80,3,80,90,"BBC",NA +102,112,1640,"2017",6,0,50,3,50,100,"BBC",NA +102,112,1641,"2017",6,0,99,2,1,10,"BBC",NA +102,112,1642,"2017",2,1,1,2,1,99,"BBC",NA +102,112,1650,"2017",2,1,1,2,1,NA,"BBC",NA +102,112,1652,"2017",5,1,99,3,99,99,"BBC",NA +102,112,1655,"2017",2,1,1,3,1,1,"BBC",NA +102,112,1659,"2017",3,0,50,2,50,50,"BBC",NA +102,112,1663,"2017",5,1,NA,2,NA,99,"BBC",NA +102,112,1664,"2017",5,0,99,2,1,1,"BBC",NA +102,112,1667,"2017",5,1,50,2,50,99,"BBC",NA +102,112,1668,"2017",2,0,1,3,99,99,"BBC",NA +102,112,1669,"2017",4,0,50,3,50,NA,"BBC",NA +102,112,1675,"2017",6,0,99,3,1,99,"BBC",NA +102,112,1678,"2017",5,0,99,2,1,1,"BBC",NA +102,112,1682,"2017",6,0,70,2,30,30,"BBC",NA +102,112,1685,"2017",6,0,1,3,99,99,"BBC",NA +102,112,1686,"2017",5,1,1,3,1,50,"BBC",NA +102,112,1687,"2017",3,0,1,2,99,99,"BBC",NA +102,112,1688,"2017",2,0,80,2,20,20,"BBC",NA +102,112,1689,"2017",5,1,99,2,99,99,"BBC",NA +102,112,1690,"2017",2,1,50,2,50,50,"BBC",NA +102,112,1691,"2017",4,0,70,3,30,NA,"BBC",NA +102,112,1692,"2017",6,1,50,2,50,99,"BBC",NA +102,112,1695,"2017",2,1,99,3,99,99,"BBC",NA +102,112,1696,"2017",5,1,80,2,80,95,"BBC",NA +102,112,1699,"2017",3,0,70,2,30,50,"BBC",NA +102,112,1700,"2017",2,0,2,2,98,98,"BBC",NA +102,112,1702,"2017",5,0,1,3,99,1,"BBC",NA +102,112,1703,"2017",5,0,99,3,1,99,"BBC",NA +102,112,1705,"2017",2,0,NA,3,NA,1,"BBC",NA +102,112,1707,"2017",3,0,90,3,10,50,"BBC",NA +102,112,1708,"2017",5,0,80,3,20,30,"BBC",NA +102,112,1710,"2017",3,1,50,3,50,90,"BBC",NA +102,112,1714,"2017",2,0,NA,2,NA,60,"BBC",NA +102,112,1715,"2017",5,1,22,2,22,22,"BBC",NA +102,112,1716,"2017",5,1,50,3,50,99,"BBC",NA +102,112,1718,"2017",6,1,49,3,49,98,"BBC",NA +102,112,1720,"2017",2,0,60,3,40,0,"BBC",NA +102,112,1724,"2017",5,0,99,2,1,50,"BBC",NA +102,112,1725,"2017",3,0,NA,3,NA,1,"BBC",NA +102,112,1729,"2017",6,1,51,2,51,45,"BBC",NA +102,112,1730,"2017",2,1,20,3,20,60,"BBC",NA +102,112,1732,"2017",3,1,NA,2,NA,NA,"BBC",NA +102,112,1735,"2017",5,0,15,2,85,80,"BBC",NA +102,112,1740,"2017",3,1,99,2,99,99,"BBC",NA +102,112,1743,"2017",3,1,1,3,1,50,"BBC",NA +102,112,1749,"2017",6,1,50,3,50,50,"BBC",NA +102,112,1756,"2017",2,0,27,2,73,NA,"BBC",NA +102,112,1757,"2017",2,0,70,2,30,60,"BBC",NA +102,112,1759,"2017",6,1,72,3,72,92,"BBC",NA +102,112,1760,"2017",5,0,41,3,59,69,"BBC",NA +102,112,1761,"2017",6,0,98,2,2,42,"BBC",NA +102,112,1762,"2017",4,0,99,3,1,NA,"BBC",NA +102,112,1763,"2017",2,1,20,2,20,90,"BBC",NA +102,112,1765,"2017",6,0,99,2,1,1,"BBC",NA +102,112,1766,"2017",4,1,99,3,99,NA,"BBC",NA +102,112,1767,"2017",3,0,99,2,1,99,"BBC",NA +102,112,1769,"2017",5,1,99,2,99,99,"BBC",NA +102,112,1774,"2017",5,1,99,2,99,99,"BBC",NA +102,112,1776,"2017",5,1,79,2,79,85,"BBC",NA +102,112,1781,"2017",2,1,88,3,88,87,"BBC",NA +102,112,1782,"2017",5,0,83,2,17,13,"BBC",NA +102,112,1784,"2017",3,0,92,2,8,14,"BBC",NA +102,112,1789,"2017",6,1,76,3,76,98,"BBC",NA +102,112,1791,"2017",2,1,33,3,33,33,"BBC",NA +102,112,1792,"2017",5,1,0,3,0,100,"BBC",NA +102,112,1796,"2017",3,1,88,2,88,NA,"BBC",NA +102,112,1801,"2017",3,0,95,3,5,3,"BBC",NA +102,112,1806,"2017",5,0,43,3,57,47,"BBC",NA +102,112,1808,"2017",6,0,NA,2,NA,99,"BBC",NA +102,112,1809,"2017",3,1,1,2,1,99,"BBC",NA +102,112,1812,"2017",5,1,NA,3,NA,NA,"BBC",NA +102,112,1815,"2017",4,0,70,3,30,NA,"BBC",NA +102,112,1816,"2017",2,1,50,2,50,80,"BBC",NA +102,112,1822,"2017",2,1,99,2,99,99,"BBC",NA +102,112,1824,"2017",6,0,99,2,1,1,"BBC",NA +102,112,1827,"2017",2,1,99,2,99,99,"BBC",NA +102,112,1829,"2017",3,1,1,3,1,50,"BBC",NA +102,112,1830,"2017",2,1,63,2,63,80,"BBC",NA +102,112,1836,"2017",3,1,10,2,10,70,"BBC",NA +102,112,1840,"2017",6,0,90,2,10,10,"BBC",NA +102,112,1842,"2017",5,0,3,3,97,97,"BBC",NA +102,112,1848,"2017",6,1,99,2,99,99,"BBC",NA +102,112,1849,"2017",6,0,1,2,99,99,"BBC",NA +102,112,1850,"2017",5,0,99,3,1,99,"BBC",NA +102,112,1854,"2017",5,1,20,2,20,99,"BBC",NA +102,112,1855,"2017",5,1,1,2,1,99,"BBC",NA +102,112,1857,"2017",3,0,80,2,20,40,"BBC",NA +102,112,1859,"2017",2,0,50,3,50,20,"BBC",NA +102,112,1860,"2017",6,0,1,2,99,99,"BBC",NA +102,112,1863,"2017",5,1,80,3,80,86,"BBC",NA +102,112,1867,"2017",2,0,1,2,99,99,"BBC",NA +102,112,1868,"2017",5,0,99,3,1,1,"BBC",NA +102,112,1869,"2017",5,0,0,3,100,0,"BBC",NA +102,112,1871,"2017",5,0,99,3,1,99,"BBC",NA +102,112,1875,"2017",6,1,0,3,0,100,"BBC",NA +102,112,1878,"2017",2,0,70,2,30,80,"BBC",NA +102,112,1883,"2017",3,0,80,2,20,35,"BBC",NA +102,112,1886,"2017",2,0,30,3,70,70,"BBC",NA +102,112,1887,"2017",3,1,99,3,99,99,"BBC",NA +102,112,1888,"2017",6,1,99,3,99,99,"BBC",NA +102,112,1889,"2017",5,0,1,3,99,99,"BBC",NA +102,112,1891,"2017",6,0,99,2,1,1,"BBC",NA +102,112,1894,"2017",2,0,50,3,50,50,"BBC",NA +102,112,1895,"2017",2,1,NA,2,NA,99,"BBC",NA +102,112,1898,"2017",2,0,99,3,1,99,"BBC",NA +102,112,1901,"2017",3,0,2,3,98,99,"BBC",NA +102,112,1902,"2017",3,0,99,2,1,99,"BBC",NA +102,112,1905,"2017",5,1,70,3,70,99,"BBC",NA +102,112,1907,"2017",6,0,90,2,10,10,"BBC",NA +102,112,1911,"2017",3,1,1,2,1,90,"BBC",NA +102,112,1913,"2017",2,1,50,3,50,50,"BBC",NA +102,112,1915,"2017",2,0,1,3,99,99,"BBC",NA +102,112,1919,"2017",3,1,1,3,1,99,"BBC",NA +102,112,1920,"2017",6,0,99,2,1,99,"BBC",NA +102,112,1921,"2017",2,1,60,2,60,90,"BBC",NA +102,112,1925,"2017",4,0,100,3,0,NA,"BBC",NA +102,112,1928,"2017",6,0,90,3,10,10,"BBC",NA +102,112,1930,"2017",2,1,NA,2,NA,90,"BBC",NA +102,112,1935,"2017",5,0,1,2,99,99,"BBC",NA +102,112,1938,"2017",5,0,50,3,50,50,"BBC",NA +102,112,1940,"2017",2,1,99,2,99,99,"BBC",NA +102,112,1943,"2017",6,0,99,2,1,1,"BBC",NA +102,112,1944,"2017",3,1,99,2,99,99,"BBC",NA +102,112,1947,"2017",6,1,70,2,70,70,"BBC",NA +102,112,1948,"2017",3,0,10,2,90,90,"BBC",NA +102,112,1949,"2017",3,1,99,3,99,99,"BBC",NA +102,112,1955,"2017",3,0,70,2,30,40,"BBC",NA +102,112,1958,"2017",5,1,50,3,50,99,"BBC",NA +102,112,1961,"2017",3,0,99,2,1,99,"BBC",NA +102,112,1969,"2017",6,0,90,3,10,40,"BBC",NA +102,112,1971,"2017",6,0,30,2,70,50,"BBC",NA +102,112,1976,"2017",6,1,80,3,80,80,"BBC",NA +102,112,1978,"2017",3,1,99,2,99,55,"BBC",NA +102,112,1981,"2017",6,0,1,2,99,99,"BBC",NA +102,112,1984,"2017",3,0,80,2,20,99,"BBC",NA +102,112,1985,"2017",4,1,50,3,50,NA,"BBC",NA +102,112,1987,"2017",4,0,80,3,20,NA,"BBC",NA +102,112,1988,"2017",2,1,75,3,75,99,"BBC",NA +102,112,1989,"2017",3,1,100,2,100,100,"BBC",NA +102,112,1994,"2017",6,0,1,3,99,99,"BBC",NA +102,112,1996,"2017",2,0,1,2,99,99,"BBC",NA +102,112,1998,"2017",6,1,60,3,60,80,"BBC",NA +102,112,2000,"2017",6,1,70,2,70,60,"BBC",NA +102,112,2002,"2017",3,0,99,2,1,50,"BBC",NA +102,112,2004,"2017",4,0,99,3,1,NA,"BBC",NA +102,112,2006,"2017",6,1,100,2,100,100,"BBC",NA +102,112,2007,"2017",5,1,50,3,50,85,"BBC",NA +102,112,2008,"2017",2,1,50,2,50,99,"BBC",NA +102,112,2009,"2017",6,0,45,2,55,50,"BBC",NA +102,112,2011,"2017",2,0,15,3,85,NA,"BBC",NA +102,112,2015,"2017",6,0,90,3,10,10,"BBC",NA +102,112,2022,"2017",3,0,50,3,50,90,"BBC",NA +102,112,2023,"2017",4,0,100,3,0,NA,"BBC",NA +102,112,2024,"2017",5,1,20,2,20,50,"BBC",NA +102,112,2025,"2017",2,0,90,3,10,12,"BBC",NA +102,112,2027,"2017",3,1,1,3,1,2,"BBC",NA +102,112,2028,"2017",6,0,60,2,40,30,"BBC",NA +102,112,2029,"2017",5,0,NA,2,NA,NA,"BBC",NA +102,112,2030,"2017",5,1,50,3,50,50,"BBC",NA +102,112,2037,"2017",3,0,0,3,100,99,"BBC",NA +102,112,2041,"2017",3,1,100,2,100,100,"BBC",NA +102,112,2042,"2017",6,1,80,2,80,80,"BBC",NA +102,112,2043,"2017",3,1,85,3,85,90,"BBC",NA +102,112,2045,"2017",6,0,1,2,99,99,"BBC",NA +102,112,2046,"2017",2,1,99,3,99,99,"BBC",NA +102,112,2047,"2017",4,1,50,3,50,NA,"BBC",NA +102,112,2048,"2017",5,1,50,2,50,99,"BBC",NA +102,112,2050,"2017",3,1,99,2,99,99,"BBC",NA +102,112,2051,"2017",2,0,99,2,1,1,"BBC",NA +102,112,2052,"2017",3,1,90,3,90,90,"BBC",NA +102,112,2059,"2017",6,1,99,3,99,99,"BBC",NA +102,112,2060,"2017",6,0,1,3,99,99,"BBC",NA +102,112,2067,"2017",2,0,1,2,99,99,"BBC",NA +102,112,2068,"2017",5,1,99,2,99,99,"BBC",NA +102,112,2071,"2017",2,0,99,3,1,1,"BBC",NA +102,112,2073,"2017",6,1,99,2,99,99,"BBC",NA +102,112,2075,"2017",3,1,99,2,99,99,"BBC",NA +102,112,2076,"2017",4,1,99,3,99,NA,"BBC",NA +102,112,2078,"2017",5,0,99,3,1,10,"BBC",NA +102,112,2081,"2017",3,1,99,3,99,99,"BBC",NA +102,112,2084,"2017",6,1,50,3,50,99,"BBC",NA +102,112,2085,"2017",3,1,99,3,99,99,"BBC",NA +102,112,2086,"2017",5,1,50,3,50,99,"BBC",NA +102,112,2093,"2017",6,1,50,2,50,80,"BBC",NA +102,112,2094,"2017",2,0,90,3,10,88,"BBC",NA +102,112,2097,"2017",4,1,99,3,99,NA,"BBC",NA +102,112,2098,"2017",6,1,99,2,99,99,"BBC",NA +102,112,2100,"2017",5,1,1,2,1,99,"BBC",NA +102,112,2101,"2017",5,0,99,2,1,1,"BBC",NA +102,112,2102,"2017",5,0,99,3,1,50,"BBC",NA +102,112,2104,"2017",3,1,99,2,99,99,"BBC",NA +102,112,2106,"2017",3,1,99,3,99,99,"BBC",NA +102,112,2108,"2017",3,1,4,3,4,99,"BBC",NA +102,112,2111,"2017",3,0,90,2,10,10,"BBC",NA +102,112,2121,"2017",2,1,99,3,99,99,"BBC",NA +102,112,2127,"2017",5,0,1,2,99,99,"BBC",NA +102,112,2131,"2017",5,0,1,2,99,99,"BBC",NA +102,112,2132,"2017",5,0,60,2,40,50,"BBC",NA +102,112,2135,"2017",6,1,90,3,90,90,"BBC",NA +103,NA,145,"2019",4,1,77,1,77,NA,NA,NA +103,NA,146,"2019",4,0,99,1,1,NA,NA,NA +103,NA,147,"2019",3,0,70,1,30,NA,NA,NA +103,NA,148,"2019",2,0,88,1,12,NA,NA,NA +103,NA,149,"2019",3,1,73,1,73,NA,NA,NA +103,NA,150,"2019",4,0,74,1,26,NA,NA,NA +103,NA,151,"2019",5,1,50,1,50,NA,NA,NA +103,NA,152,"2019",2,0,100,1,0,NA,NA,NA +103,NA,153,"2019",2,0,15,1,85,NA,NA,NA +103,NA,155,"2019",5,1,39,1,39,NA,NA,NA +103,NA,157,"2019",4,0,43,1,57,NA,NA,NA +103,NA,158,"2019",6,0,30,1,70,NA,NA,NA +103,NA,159,"2019",6,0,77,1,23,NA,NA,NA +103,NA,160,"2019",5,0,100,1,0,NA,NA,NA +103,NA,161,"2019",4,0,85,1,15,NA,NA,NA +103,NA,162,"2019",4,0,100,1,0,NA,NA,NA +103,NA,163,"2019",6,0,61,1,39,NA,NA,NA +103,NA,165,"2019",4,0,100,1,0,NA,NA,NA +103,NA,167,"2019",2,0,1,1,99,NA,NA,NA +103,NA,168,"2019",2,1,5,1,5,NA,NA,NA +103,NA,169,"2019",5,0,50,1,50,NA,NA,NA +103,NA,170,"2019",2,0,92,1,8,NA,NA,NA +103,NA,171,"2019",5,1,47,1,47,NA,NA,NA +103,NA,172,"2019",6,1,11,1,11,NA,NA,NA +103,NA,174,"2019",3,1,100,1,100,NA,NA,NA +103,NA,175,"2019",5,1,40,1,40,NA,NA,NA +103,NA,176,"2019",6,0,10,1,90,NA,NA,NA +103,NA,177,"2019",5,1,11,1,11,NA,NA,NA +103,NA,178,"2019",6,1,0,1,0,NA,NA,NA +103,NA,180,"2019",4,0,45,1,55,NA,NA,NA +103,NA,181,"2019",5,1,22,1,22,NA,NA,NA +103,NA,182,"2019",3,1,22,1,22,NA,NA,NA +103,NA,183,"2019",5,0,56,1,44,NA,NA,NA +103,NA,184,"2019",4,0,100,1,0,NA,NA,NA +103,NA,185,"2019",2,0,86,1,14,NA,NA,NA +103,NA,186,"2019",2,0,79,1,21,NA,NA,NA +103,NA,187,"2019",6,1,100,1,100,NA,NA,NA +103,NA,188,"2019",5,0,40,1,60,NA,NA,NA +103,NA,189,"2019",2,1,40,1,40,NA,NA,NA +103,NA,190,"2019",6,0,40,1,60,NA,NA,NA +103,NA,191,"2019",6,1,10,1,10,NA,NA,NA +103,NA,192,"2019",4,0,99,1,1,NA,NA,NA +103,NA,195,"2019",2,1,100,1,100,NA,NA,NA +103,NA,197,"2019",4,0,72,1,28,NA,NA,NA +103,NA,198,"2019",6,1,50,1,50,NA,NA,NA +103,NA,200,"2019",2,0,42,1,58,NA,NA,NA +103,NA,201,"2019",4,1,50,1,50,NA,NA,NA +103,NA,202,"2019",3,1,74,1,74,NA,NA,NA +103,NA,203,"2019",6,0,85,1,15,NA,NA,NA +103,NA,204,"2019",6,0,92,1,8,NA,NA,NA +103,NA,205,"2019",6,1,0,1,0,NA,NA,NA +103,NA,206,"2019",3,0,50,1,50,NA,NA,NA +103,NA,208,"2019",4,1,76,1,76,NA,NA,NA +103,NA,209,"2019",6,1,44,1,44,NA,NA,NA +103,NA,210,"2019",4,0,100,1,0,NA,NA,NA +103,NA,211,"2019",2,0,1,1,99,NA,NA,NA +103,NA,212,"2019",5,0,70,1,30,NA,NA,NA +103,NA,213,"2019",4,1,0,1,0,NA,NA,NA +103,NA,214,"2019",2,0,12,1,88,NA,NA,NA +103,NA,215,"2019",3,0,83,1,17,NA,NA,NA +103,NA,216,"2019",4,0,100,1,0,NA,NA,NA +103,NA,217,"2019",2,1,32,1,32,NA,NA,NA +103,NA,218,"2019",2,1,0,1,0,NA,NA,NA +103,NA,219,"2019",2,0,0,1,100,NA,NA,NA +103,NA,220,"2019",3,1,50,1,50,NA,NA,NA +103,NA,221,"2019",2,1,0,1,0,NA,NA,NA +103,NA,222,"2019",6,1,51,1,51,NA,NA,NA +103,NA,223,"2019",4,1,23,1,23,NA,NA,NA +103,NA,224,"2019",2,1,84,1,84,NA,NA,NA +103,NA,225,"2019",2,1,15,1,15,NA,NA,NA +103,NA,226,"2019",3,0,84,1,16,NA,NA,NA +103,NA,227,"2019",5,0,50,1,50,NA,NA,NA +103,NA,228,"2019",5,1,80,1,80,NA,NA,NA +103,NA,230,"2019",2,1,81,1,81,NA,NA,NA +103,NA,233,"2019",5,1,50,1,50,NA,NA,NA +103,NA,235,"2019",4,1,5,1,5,NA,NA,NA +103,NA,236,"2019",4,0,50,1,50,NA,NA,NA +103,NA,237,"2019",4,1,2,1,2,NA,NA,NA +103,NA,238,"2019",4,0,83,1,17,NA,NA,NA +103,NA,239,"2019",4,1,38,1,38,NA,NA,NA +103,NA,241,"2019",5,1,57,1,57,NA,NA,NA +103,NA,243,"2019",2,0,15,1,85,NA,NA,NA +103,NA,244,"2019",2,1,80,1,80,NA,NA,NA +103,NA,246,"2019",5,1,27,1,27,NA,NA,NA +103,NA,247,"2019",4,1,0,1,0,NA,NA,NA +103,NA,248,"2019",4,1,50,1,50,NA,NA,NA +103,NA,249,"2019",4,0,60,1,40,NA,NA,NA +103,NA,250,"2019",2,0,35,1,65,NA,NA,NA +103,NA,251,"2019",5,0,53,1,47,NA,NA,NA +103,NA,252,"2019",2,1,94,1,94,NA,NA,NA +103,NA,253,"2019",5,0,82,1,18,NA,NA,NA +103,NA,254,"2019",4,0,91,1,9,NA,NA,NA +103,NA,255,"2019",4,0,59,1,41,NA,NA,NA +103,NA,256,"2019",5,0,93,1,7,NA,NA,NA +103,NA,258,"2019",3,0,64,1,36,NA,NA,NA +103,NA,259,"2019",3,1,0,1,0,NA,NA,NA +103,NA,260,"2019",2,0,91,1,9,NA,NA,NA +103,NA,262,"2019",6,0,50,1,50,NA,NA,NA +103,NA,263,"2019",3,1,33,1,33,NA,NA,NA +103,NA,264,"2019",2,1,75,1,75,NA,NA,NA +103,NA,266,"2019",3,0,39,1,61,NA,NA,NA +103,NA,268,"2019",6,1,70,1,70,NA,NA,NA +103,NA,269,"2019",3,0,100,1,0,NA,NA,NA +103,NA,270,"2019",5,0,0,1,100,NA,NA,NA +103,NA,272,"2019",4,0,70,1,30,NA,NA,NA +103,NA,275,"2019",2,0,84,1,16,NA,NA,NA +103,NA,278,"2019",4,0,90,1,10,NA,NA,NA +103,NA,279,"2019",4,0,100,1,0,NA,NA,NA +103,NA,280,"2019",5,1,84,1,84,NA,NA,NA +103,NA,281,"2019",6,1,29,1,29,NA,NA,NA +103,NA,282,"2019",2,0,50,1,50,NA,NA,NA +103,NA,283,"2019",3,0,89,1,11,NA,NA,NA +103,NA,284,"2019",2,0,85,1,15,NA,NA,NA +103,NA,289,"2019",2,0,55,1,45,NA,NA,NA +103,NA,290,"2019",6,1,50,1,50,NA,NA,NA +103,NA,291,"2019",6,1,92,1,92,NA,NA,NA +103,NA,292,"2019",3,1,0,1,0,NA,NA,NA +103,NA,293,"2019",4,1,0,1,0,NA,NA,NA +103,NA,294,"2019",3,1,28,1,28,NA,NA,NA +103,NA,295,"2019",4,0,78,1,22,NA,NA,NA +103,NA,296,"2019",6,1,0,1,0,NA,NA,NA +103,NA,298,"2019",3,0,50,1,50,NA,NA,NA +103,NA,299,"2019",6,1,0,1,0,NA,NA,NA +103,NA,300,"2019",5,1,30,1,30,NA,NA,NA +103,NA,301,"2019",3,0,100,1,0,NA,NA,NA +103,NA,302,"2019",6,0,75,1,25,NA,NA,NA +103,NA,303,"2019",6,0,80,1,20,NA,NA,NA +103,NA,304,"2019",2,1,100,1,100,NA,NA,NA +103,NA,305,"2019",4,0,90,1,10,NA,NA,NA +103,NA,306,"2019",4,1,100,1,100,NA,NA,NA +103,NA,307,"2019",3,1,50,1,50,NA,NA,NA +103,NA,310,"2019",4,1,50,1,50,NA,NA,NA +103,NA,311,"2019",6,1,80,1,80,NA,NA,NA +103,NA,312,"2019",6,0,92,1,8,NA,NA,NA +103,NA,313,"2019",4,0,100,1,0,NA,NA,NA +103,NA,314,"2019",5,0,90,1,10,NA,NA,NA +103,NA,315,"2019",2,1,50,1,50,NA,NA,NA +103,NA,316,"2019",3,0,81,1,19,NA,NA,NA +103,NA,317,"2019",6,1,100,1,100,NA,NA,NA +103,NA,319,"2019",4,0,82,1,18,NA,NA,NA +103,NA,320,"2019",2,0,100,1,0,NA,NA,NA +103,NA,321,"2019",6,0,31,1,69,NA,NA,NA +103,NA,322,"2019",3,0,50,1,50,NA,NA,NA +103,NA,323,"2019",2,0,68,1,32,NA,NA,NA +103,NA,324,"2019",5,0,92,1,8,NA,NA,NA +103,NA,325,"2019",5,0,100,1,0,NA,NA,NA +103,NA,326,"2019",5,1,0,1,0,NA,NA,NA +103,NA,327,"2019",6,1,50,1,50,NA,NA,NA +103,NA,328,"2019",4,1,50,1,50,NA,NA,NA +103,NA,329,"2019",5,0,100,1,0,NA,NA,NA +103,NA,331,"2019",4,0,88,1,12,NA,NA,NA +103,NA,335,"2019",5,0,64,1,36,NA,NA,NA +103,NA,336,"2019",3,1,0,1,0,NA,NA,NA +103,NA,338,"2019",4,0,50,1,50,NA,NA,NA +103,NA,339,"2019",5,1,70,1,70,NA,NA,NA +103,NA,343,"2019",3,0,72,1,28,NA,NA,NA +103,NA,344,"2019",5,1,77,1,77,NA,NA,NA +103,NA,346,"2019",3,0,0,1,100,NA,NA,NA +103,NA,347,"2019",6,1,55,1,55,NA,NA,NA +103,NA,348,"2019",6,1,100,1,100,NA,NA,NA +103,NA,350,"2019",4,1,60,1,60,NA,NA,NA +103,NA,351,"2019",6,0,100,1,0,NA,NA,NA +103,NA,352,"2019",4,0,50,1,50,NA,NA,NA +103,NA,353,"2019",5,1,100,1,100,NA,NA,NA +103,NA,354,"2019",4,0,50,1,50,NA,NA,NA +103,NA,356,"2019",6,0,91,1,9,NA,NA,NA +103,NA,357,"2019",4,0,76,1,24,NA,NA,NA +103,NA,360,"2019",5,0,70,1,30,NA,NA,NA +103,NA,361,"2019",5,0,1,1,99,NA,NA,NA +103,NA,362,"2019",4,1,50,1,50,NA,NA,NA +103,NA,363,"2019",6,0,59,1,41,NA,NA,NA +103,NA,364,"2019",6,1,100,1,100,NA,NA,NA +103,NA,365,"2019",6,1,84,1,84,NA,NA,NA +103,NA,366,"2019",2,1,11,1,11,NA,NA,NA +103,NA,368,"2019",2,0,66,1,34,NA,NA,NA +103,NA,369,"2019",5,0,50,1,50,NA,NA,NA +103,NA,370,"2019",5,1,50,1,50,NA,NA,NA +103,NA,372,"2019",6,1,0,1,0,NA,NA,NA +103,NA,373,"2019",4,0,0,1,100,NA,NA,NA +103,NA,374,"2019",2,0,100,1,0,NA,NA,NA +103,NA,375,"2019",3,1,100,1,100,NA,NA,NA +103,NA,376,"2019",2,1,100,1,100,NA,NA,NA +103,NA,377,"2019",5,1,59,1,59,NA,NA,NA +103,NA,378,"2019",4,1,40,1,40,NA,NA,NA +103,NA,379,"2019",6,1,100,1,100,NA,NA,NA +103,NA,380,"2019",6,1,68,1,68,NA,NA,NA +103,NA,381,"2019",3,0,72,1,28,NA,NA,NA +103,NA,383,"2019",4,0,99,1,1,NA,NA,NA +103,NA,384,"2019",2,0,59,1,41,NA,NA,NA +103,NA,385,"2019",5,1,0,1,0,NA,NA,NA +103,NA,386,"2019",2,0,62,1,38,NA,NA,NA +103,NA,387,"2019",6,1,84,1,84,NA,NA,NA +103,NA,388,"2019",4,1,3,1,3,NA,NA,NA +103,NA,389,"2019",2,1,51,1,51,NA,NA,NA +103,NA,390,"2019",3,0,100,1,0,NA,NA,NA +103,NA,392,"2019",3,0,100,1,0,NA,NA,NA +103,NA,393,"2019",2,1,50,1,50,NA,NA,NA +103,NA,394,"2019",2,1,0,1,0,NA,NA,NA +103,NA,395,"2019",4,0,87,1,13,NA,NA,NA +103,NA,396,"2019",5,1,0,1,0,NA,NA,NA +103,NA,397,"2019",5,0,50,1,50,NA,NA,NA +103,NA,398,"2019",4,0,84,1,16,NA,NA,NA +103,NA,399,"2019",2,0,50,1,50,NA,NA,NA +103,NA,400,"2019",5,0,32,1,68,NA,NA,NA +103,NA,401,"2019",5,1,22,1,22,NA,NA,NA +103,NA,403,"2019",3,0,96,1,4,NA,NA,NA +103,NA,404,"2019",6,0,50,1,50,NA,NA,NA +103,NA,407,"2019",2,1,100,1,100,NA,NA,NA +103,NA,408,"2019",6,0,74,1,26,NA,NA,NA +103,NA,409,"2019",2,0,92,1,8,NA,NA,NA +103,NA,410,"2019",4,1,50,1,50,NA,NA,NA +103,NA,411,"2019",3,1,33,1,33,NA,NA,NA +103,NA,412,"2019",2,1,33,1,33,NA,NA,NA +103,NA,413,"2019",4,1,70,1,70,NA,NA,NA +103,NA,414,"2019",5,0,64,1,36,NA,NA,NA +103,NA,417,"2019",4,0,50,1,50,NA,NA,NA +103,NA,418,"2019",4,1,75,1,75,NA,NA,NA +103,NA,419,"2019",5,1,73,1,73,NA,NA,NA +103,NA,420,"2019",4,0,50,1,50,NA,NA,NA +103,NA,421,"2019",2,0,50,1,50,NA,NA,NA +103,NA,423,"2019",5,1,37,1,37,NA,NA,NA +103,NA,424,"2019",4,1,75,1,75,NA,NA,NA +103,NA,426,"2019",5,1,7,1,7,NA,NA,NA +103,NA,427,"2019",4,1,100,1,100,NA,NA,NA +103,NA,428,"2019",2,1,77,1,77,NA,NA,NA +103,NA,430,"2019",6,1,54,1,54,NA,NA,NA +103,NA,431,"2019",5,0,46,1,54,NA,NA,NA +103,NA,432,"2019",2,0,52,1,48,NA,NA,NA +103,NA,433,"2019",3,0,50,1,50,NA,NA,NA +103,NA,435,"2019",2,1,20,1,20,NA,NA,NA +103,NA,436,"2019",6,1,56,1,56,NA,NA,NA +103,NA,437,"2019",4,1,87,1,87,NA,NA,NA +103,NA,439,"2019",5,0,50,1,50,NA,NA,NA +103,NA,441,"2019",4,0,50,1,50,NA,NA,NA +103,NA,442,"2019",5,1,63,1,63,NA,NA,NA +103,NA,444,"2019",4,0,100,1,0,NA,NA,NA +103,NA,446,"2019",6,0,26,1,74,NA,NA,NA +103,NA,447,"2019",3,0,76,1,24,NA,NA,NA +103,NA,448,"2019",5,0,91,1,9,NA,NA,NA +103,NA,449,"2019",3,1,0,1,0,NA,NA,NA +103,NA,450,"2019",3,0,18,1,82,NA,NA,NA +103,NA,451,"2019",3,1,35,1,35,NA,NA,NA +103,NA,452,"2019",2,0,100,1,0,NA,NA,NA +103,NA,453,"2019",5,1,50,1,50,NA,NA,NA +103,NA,454,"2019",4,0,50,1,50,NA,NA,NA +103,NA,456,"2019",2,0,50,1,50,NA,NA,NA +103,NA,457,"2019",4,0,51,1,49,NA,NA,NA +103,NA,458,"2019",3,1,38,1,38,NA,NA,NA +103,NA,459,"2019",3,0,71,1,29,NA,NA,NA +103,NA,460,"2019",5,1,81,1,81,NA,NA,NA +103,NA,461,"2019",6,1,50,1,50,NA,NA,NA +103,NA,462,"2019",5,1,71,1,71,NA,NA,NA +103,NA,463,"2019",6,0,12,1,88,NA,NA,NA +103,NA,464,"2019",3,1,23,1,23,NA,NA,NA +103,NA,466,"2019",5,0,0,1,100,NA,NA,NA +103,NA,467,"2019",6,1,100,1,100,NA,NA,NA +103,NA,468,"2019",2,0,7,1,93,NA,NA,NA +103,NA,470,"2019",6,0,100,1,0,NA,NA,NA +103,NA,471,"2019",2,1,90,1,90,NA,NA,NA +103,NA,472,"2019",2,1,79,1,79,NA,NA,NA +103,NA,473,"2019",5,1,1,1,1,NA,NA,NA +103,NA,474,"2019",4,1,39,1,39,NA,NA,NA +103,NA,475,"2019",6,1,68,1,68,NA,NA,NA +103,NA,476,"2019",5,0,33,1,67,NA,NA,NA +103,NA,477,"2019",2,0,88,1,12,NA,NA,NA +103,NA,478,"2019",6,0,64,1,36,NA,NA,NA +103,NA,479,"2019",6,0,84,1,16,NA,NA,NA +103,NA,481,"2019",6,1,28,1,28,NA,NA,NA +103,NA,482,"2019",5,1,100,1,100,NA,NA,NA +103,NA,483,"2019",4,1,100,1,100,NA,NA,NA +103,NA,484,"2019",3,0,64,1,36,NA,NA,NA +103,NA,485,"2019",4,1,50,1,50,NA,NA,NA +103,NA,486,"2019",5,0,49,1,51,NA,NA,NA +103,NA,488,"2019",6,0,50,1,50,NA,NA,NA +103,NA,491,"2019",6,0,40,1,60,NA,NA,NA +103,NA,492,"2019",5,0,38,1,62,NA,NA,NA +103,NA,493,"2019",5,1,31,1,31,NA,NA,NA +103,NA,494,"2019",3,1,73,1,73,NA,NA,NA +103,NA,495,"2019",5,0,73,1,27,NA,NA,NA +103,NA,496,"2019",5,1,66,1,66,NA,NA,NA +103,NA,498,"2019",4,0,100,1,0,NA,NA,NA +103,NA,499,"2019",3,0,58,1,42,NA,NA,NA +103,NA,501,"2019",3,0,100,1,0,NA,NA,NA +103,NA,502,"2019",3,0,91,1,9,NA,NA,NA +103,NA,503,"2019",2,0,50,1,50,NA,NA,NA +103,NA,504,"2019",2,1,88,1,88,NA,NA,NA +103,NA,505,"2019",3,1,50,1,50,NA,NA,NA +103,NA,506,"2019",2,0,100,1,0,NA,NA,NA +103,NA,507,"2019",2,1,70,1,70,NA,NA,NA +103,NA,508,"2019",5,0,35,1,65,NA,NA,NA +103,NA,509,"2019",3,1,33,1,33,NA,NA,NA +103,NA,510,"2019",5,0,82,1,18,NA,NA,NA +103,NA,511,"2019",6,0,66,1,34,NA,NA,NA +103,NA,512,"2019",4,0,50,1,50,NA,NA,NA +103,NA,513,"2019",5,1,74,1,74,NA,NA,NA +103,NA,514,"2019",5,0,67,1,33,NA,NA,NA +103,NA,516,"2019",4,1,65,1,65,NA,NA,NA +103,NA,517,"2019",4,0,63,1,37,NA,NA,NA +103,NA,518,"2019",6,1,59,1,59,NA,NA,NA +103,NA,519,"2019",2,1,7,1,7,NA,NA,NA +103,NA,520,"2019",5,0,50,1,50,NA,NA,NA +103,NA,521,"2019",6,0,80,1,20,NA,NA,NA +103,NA,522,"2019",2,0,50,1,50,NA,NA,NA +103,NA,523,"2019",3,0,50,1,50,NA,NA,NA +103,NA,524,"2019",3,0,75,1,25,NA,NA,NA +103,NA,525,"2019",2,1,71,1,71,NA,NA,NA +103,NA,526,"2019",6,1,8,1,8,NA,NA,NA +103,NA,527,"2019",6,1,50,1,50,NA,NA,NA +103,NA,528,"2019",4,1,73,1,73,NA,NA,NA +103,NA,529,"2019",4,0,65,1,35,NA,NA,NA +103,NA,530,"2019",6,1,12,1,12,NA,NA,NA +103,NA,532,"2019",3,0,90,1,10,NA,NA,NA +103,NA,533,"2019",5,1,50,1,50,NA,NA,NA +103,NA,534,"2019",3,1,16,1,16,NA,NA,NA +103,NA,535,"2019",5,1,86,1,86,NA,NA,NA +103,NA,536,"2019",4,1,91,1,91,NA,NA,NA +103,NA,537,"2019",3,1,67,1,67,NA,NA,NA +103,NA,538,"2019",4,1,58,1,58,NA,NA,NA +103,NA,539,"2019",3,1,82,1,82,NA,NA,NA +103,NA,540,"2019",2,1,43,1,43,NA,NA,NA +103,NA,541,"2019",2,0,84,1,16,NA,NA,NA +103,NA,543,"2019",5,0,48,1,52,NA,NA,NA +103,NA,545,"2019",4,1,56,1,56,NA,NA,NA +103,NA,546,"2019",3,0,69,1,31,NA,NA,NA +103,NA,547,"2019",5,1,100,1,100,NA,NA,NA +103,NA,548,"2019",2,0,53,1,47,NA,NA,NA +103,NA,549,"2019",5,0,53,1,47,NA,NA,NA +103,NA,550,"2019",3,1,50,1,50,NA,NA,NA +103,NA,552,"2019",4,0,80,1,20,NA,NA,NA +103,NA,553,"2019",6,0,50,1,50,NA,NA,NA +103,NA,554,"2019",5,1,43,1,43,NA,NA,NA +103,NA,555,"2019",6,1,63,1,63,NA,NA,NA +103,NA,556,"2019",6,0,96,1,4,NA,NA,NA +103,NA,557,"2019",3,1,11,1,11,NA,NA,NA +103,NA,559,"2019",4,1,50,1,50,NA,NA,NA +103,NA,560,"2019",2,0,29,1,71,NA,NA,NA +103,NA,561,"2019",5,0,26,1,74,NA,NA,NA +103,NA,562,"2019",4,0,28,1,72,NA,NA,NA +103,NA,563,"2019",3,1,23,1,23,NA,NA,NA +103,NA,565,"2019",2,1,0,1,0,NA,NA,NA +103,NA,566,"2019",6,1,31,1,31,NA,NA,NA +103,NA,567,"2019",5,0,100,1,0,NA,NA,NA +103,NA,569,"2019",6,1,50,1,50,NA,NA,NA +103,NA,570,"2019",2,0,86,1,14,NA,NA,NA +103,NA,571,"2019",5,1,61,1,61,NA,NA,NA +103,NA,572,"2019",3,1,80,1,80,NA,NA,NA +103,NA,573,"2019",3,1,0,1,0,NA,NA,NA +103,NA,574,"2019",4,0,65,1,35,NA,NA,NA +103,NA,575,"2019",4,0,63,1,37,NA,NA,NA +103,NA,576,"2019",6,1,100,1,100,NA,NA,NA +103,NA,577,"2019",5,0,50,1,50,NA,NA,NA +103,NA,578,"2019",2,1,80,1,80,NA,NA,NA +103,NA,579,"2019",5,0,79,1,21,NA,NA,NA +103,NA,580,"2019",2,0,81,1,19,NA,NA,NA +103,NA,581,"2019",6,0,21,1,79,NA,NA,NA +103,NA,582,"2019",2,1,41,1,41,NA,NA,NA +103,NA,583,"2019",2,0,50,1,50,NA,NA,NA +103,NA,584,"2019",2,1,50,1,50,NA,NA,NA +103,NA,587,"2019",4,0,50,1,50,NA,NA,NA +103,NA,589,"2019",2,0,30,1,70,NA,NA,NA +103,NA,590,"2019",4,1,50,1,50,NA,NA,NA +103,NA,592,"2019",6,1,66,1,66,NA,NA,NA +103,NA,594,"2019",6,0,83,1,17,NA,NA,NA +103,NA,595,"2019",6,1,100,1,100,NA,NA,NA +103,NA,596,"2019",4,0,50,1,50,NA,NA,NA +103,NA,597,"2019",4,1,43,1,43,NA,NA,NA +103,NA,598,"2019",3,0,59,1,41,NA,NA,NA +103,NA,599,"2019",2,1,81,1,81,NA,NA,NA +103,NA,600,"2019",6,0,76,1,24,NA,NA,NA +103,NA,602,"2019",3,0,39,1,61,NA,NA,NA +103,NA,604,"2019",3,0,43,1,57,NA,NA,NA +103,NA,605,"2019",4,1,63,1,63,NA,NA,NA +103,NA,607,"2019",4,0,59,1,41,NA,NA,NA +103,NA,608,"2019",6,0,34,1,66,NA,NA,NA +103,NA,609,"2019",5,1,80,1,80,NA,NA,NA +103,NA,610,"2019",6,0,42,1,58,NA,NA,NA +103,NA,611,"2019",2,1,6,1,6,NA,NA,NA +103,NA,612,"2019",5,0,50,1,50,NA,NA,NA +103,NA,613,"2019",2,0,40,1,60,NA,NA,NA +103,NA,614,"2019",5,1,31,1,31,NA,NA,NA +103,NA,615,"2019",2,1,76,1,76,NA,NA,NA +103,NA,616,"2019",5,1,36,1,36,NA,NA,NA +103,NA,617,"2019",2,0,50,1,50,NA,NA,NA +103,NA,618,"2019",3,0,13,1,87,NA,NA,NA +103,NA,619,"2019",5,1,46,1,46,NA,NA,NA +103,NA,620,"2019",3,0,100,1,0,NA,NA,NA +103,NA,621,"2019",4,0,50,1,50,NA,NA,NA +103,NA,623,"2019",4,0,92,1,8,NA,NA,NA +103,NA,624,"2019",3,1,60,1,60,NA,NA,NA +103,NA,625,"2019",6,1,72,1,72,NA,NA,NA +103,NA,626,"2019",2,0,76,1,24,NA,NA,NA +103,NA,627,"2019",6,0,50,1,50,NA,NA,NA +103,NA,628,"2019",4,0,50,1,50,NA,NA,NA +103,NA,629,"2019",4,0,99,1,1,NA,NA,NA +103,NA,632,"2019",3,1,78,1,78,NA,NA,NA +103,NA,633,"2019",3,1,50,1,50,NA,NA,NA +103,NA,634,"2019",2,1,72,1,72,NA,NA,NA +103,NA,635,"2019",6,1,100,1,100,NA,NA,NA +103,NA,636,"2019",6,1,50,1,50,NA,NA,NA +103,NA,637,"2019",2,0,50,1,50,NA,NA,NA +103,NA,638,"2019",3,0,100,1,0,NA,NA,NA +103,NA,639,"2019",6,0,53,1,47,NA,NA,NA +103,NA,640,"2019",4,0,100,1,0,NA,NA,NA +103,NA,641,"2019",4,0,85,1,15,NA,NA,NA +103,NA,643,"2019",6,1,15,1,15,NA,NA,NA +103,NA,644,"2019",5,1,50,1,50,NA,NA,NA +103,NA,645,"2019",6,1,50,1,50,NA,NA,NA +103,NA,646,"2019",3,0,39,1,61,NA,NA,NA +103,NA,647,"2019",3,0,32,1,68,NA,NA,NA +103,NA,648,"2019",2,0,53,1,47,NA,NA,NA +103,NA,649,"2019",3,1,0,1,0,NA,NA,NA +103,NA,650,"2019",5,1,83,1,83,NA,NA,NA +103,NA,651,"2019",6,1,82,1,82,NA,NA,NA +103,NA,652,"2019",5,0,100,1,0,NA,NA,NA +103,NA,655,"2019",3,0,100,1,0,NA,NA,NA +103,NA,657,"2019",2,0,90,1,10,NA,NA,NA +103,NA,658,"2019",4,0,68,1,32,NA,NA,NA +103,NA,660,"2019",6,1,85,1,85,NA,NA,NA +103,NA,661,"2019",2,1,50,1,50,NA,NA,NA +103,NA,662,"2019",3,1,11,1,11,NA,NA,NA +103,NA,663,"2019",4,0,50,1,50,NA,NA,NA +103,NA,664,"2019",3,1,20,1,20,NA,NA,NA +103,NA,665,"2019",2,0,100,1,0,NA,NA,NA +103,NA,666,"2019",5,1,100,1,100,NA,NA,NA +103,NA,667,"2019",4,0,84,1,16,NA,NA,NA +103,NA,668,"2019",2,1,0,1,0,NA,NA,NA +103,NA,669,"2019",4,1,87,1,87,NA,NA,NA +103,NA,671,"2019",4,1,0,1,0,NA,NA,NA +103,NA,672,"2019",2,1,100,1,100,NA,NA,NA +103,NA,673,"2019",5,0,50,1,50,NA,NA,NA +103,NA,675,"2019",3,0,50,1,50,NA,NA,NA +103,NA,676,"2019",4,1,100,1,100,NA,NA,NA +103,NA,677,"2019",4,1,100,1,100,NA,NA,NA +103,NA,678,"2019",2,0,65,1,35,NA,NA,NA +103,NA,679,"2019",3,0,50,1,50,NA,NA,NA +103,NA,680,"2019",5,1,55,1,55,NA,NA,NA +103,NA,681,"2019",2,0,73,1,27,NA,NA,NA +103,NA,682,"2019",2,1,50,1,50,NA,NA,NA +103,NA,683,"2019",5,0,11,1,89,NA,NA,NA +103,NA,684,"2019",4,0,100,1,0,NA,NA,NA +103,NA,687,"2019",6,0,100,1,0,NA,NA,NA +103,NA,688,"2019",5,0,30,1,70,NA,NA,NA +103,NA,689,"2019",6,1,100,1,100,NA,NA,NA +103,NA,691,"2019",5,0,87,1,13,NA,NA,NA +103,NA,692,"2019",5,0,75,1,25,NA,NA,NA +103,NA,693,"2019",5,1,50,1,50,NA,NA,NA +103,NA,694,"2019",6,1,96,1,96,NA,NA,NA +103,NA,695,"2019",5,1,0,1,0,NA,NA,NA +103,NA,696,"2019",3,1,100,1,100,NA,NA,NA +103,NA,697,"2019",5,0,91,1,9,NA,NA,NA +103,NA,698,"2019",4,0,100,1,0,NA,NA,NA +103,NA,699,"2019",6,1,87,1,87,NA,NA,NA +103,NA,700,"2019",5,0,100,1,0,NA,NA,NA +103,NA,702,"2019",2,1,20,1,20,NA,NA,NA +103,NA,703,"2019",2,1,16,1,16,NA,NA,NA +103,NA,704,"2019",3,1,82,1,82,NA,NA,NA +103,NA,706,"2019",5,0,100,1,0,NA,NA,NA +103,NA,707,"2019",3,1,50,1,50,NA,NA,NA +103,NA,708,"2019",6,0,65,1,35,NA,NA,NA +103,NA,710,"2019",6,1,27,1,27,NA,NA,NA +103,NA,711,"2019",5,1,100,1,100,NA,NA,NA +103,NA,712,"2019",2,1,50,1,50,NA,NA,NA +103,NA,714,"2019",4,1,50,1,50,NA,NA,NA +103,NA,715,"2019",4,0,69,1,31,NA,NA,NA +103,NA,717,"2019",4,1,97,1,97,NA,NA,NA +103,NA,718,"2019",6,1,7,1,7,NA,NA,NA +103,NA,719,"2019",3,1,0,1,0,NA,NA,NA +103,NA,720,"2019",5,0,20,1,80,NA,NA,NA +103,NA,722,"2019",2,0,29,1,71,NA,NA,NA +103,NA,723,"2019",4,1,50,1,50,NA,NA,NA +103,NA,724,"2019",2,1,88,1,88,NA,NA,NA +103,NA,725,"2019",4,0,100,1,0,NA,NA,NA +103,NA,726,"2019",3,0,100,1,0,NA,NA,NA +103,NA,727,"2019",6,0,92,1,8,NA,NA,NA +103,NA,728,"2019",3,0,100,1,0,NA,NA,NA +103,NA,729,"2019",5,1,100,1,100,NA,NA,NA +103,NA,730,"2019",2,0,50,1,50,NA,NA,NA +103,NA,732,"2019",6,0,100,1,0,NA,NA,NA +103,NA,733,"2019",5,0,50,1,50,NA,NA,NA +103,NA,734,"2019",3,1,50,1,50,NA,NA,NA +103,NA,735,"2019",4,1,50,1,50,NA,NA,NA +103,NA,736,"2019",6,1,96,1,96,NA,NA,NA +103,NA,737,"2019",2,0,38,1,62,NA,NA,NA +103,NA,738,"2019",5,1,29,1,29,NA,NA,NA +103,NA,739,"2019",3,1,97,1,97,NA,NA,NA +103,NA,741,"2019",5,1,64,1,64,NA,NA,NA +103,NA,742,"2019",6,0,0,1,100,NA,NA,NA +103,NA,743,"2019",4,0,100,1,0,NA,NA,NA +103,NA,744,"2019",2,0,50,1,50,NA,NA,NA +103,NA,746,"2019",6,0,82,1,18,NA,NA,NA +103,NA,747,"2019",4,1,27,1,27,NA,NA,NA +103,NA,748,"2019",6,0,50,1,50,NA,NA,NA +103,NA,749,"2019",4,1,100,1,100,NA,NA,NA +103,NA,751,"2019",3,1,50,1,50,NA,NA,NA +103,NA,752,"2019",5,0,0,1,100,NA,NA,NA +103,NA,753,"2019",3,1,50,1,50,NA,NA,NA +103,NA,754,"2019",5,0,50,1,50,NA,NA,NA +103,NA,755,"2019",6,0,50,1,50,NA,NA,NA +103,NA,756,"2019",4,1,100,1,100,NA,NA,NA +103,NA,757,"2019",4,0,100,1,0,NA,NA,NA +103,NA,758,"2019",2,0,60,1,40,NA,NA,NA +103,NA,759,"2019",3,1,50,1,50,NA,NA,NA +103,NA,760,"2019",2,0,58,1,42,NA,NA,NA +103,NA,761,"2019",5,1,63,1,63,NA,NA,NA +103,NA,762,"2019",2,1,49,1,49,NA,NA,NA +103,NA,763,"2019",4,0,50,1,50,NA,NA,NA +103,NA,764,"2019",4,0,100,1,0,NA,NA,NA +103,NA,765,"2019",5,0,100,1,0,NA,NA,NA +103,NA,766,"2019",6,1,50,1,50,NA,NA,NA +103,NA,767,"2019",3,0,50,1,50,NA,NA,NA +103,NA,768,"2019",3,1,70,1,70,NA,NA,NA +103,NA,771,"2019",2,0,80,1,20,NA,NA,NA +103,NA,774,"2019",6,0,47,1,53,NA,NA,NA +103,NA,775,"2019",2,1,61,1,61,NA,NA,NA +103,NA,776,"2019",5,1,20,1,20,NA,NA,NA +103,NA,777,"2019",5,0,70,1,30,NA,NA,NA +103,NA,778,"2019",5,0,50,1,50,NA,NA,NA +103,NA,779,"2019",2,1,50,1,50,NA,NA,NA +103,NA,780,"2019",5,1,25,1,25,NA,NA,NA +103,NA,781,"2019",2,0,50,1,50,NA,NA,NA +103,NA,782,"2019",3,0,89,1,11,NA,NA,NA +103,NA,783,"2019",2,1,14,1,14,NA,NA,NA +103,NA,784,"2019",5,0,73,1,27,NA,NA,NA +103,NA,785,"2019",2,0,91,1,9,NA,NA,NA +103,NA,786,"2019",3,0,100,1,0,NA,NA,NA +103,NA,787,"2019",6,0,63,1,37,NA,NA,NA +103,NA,788,"2019",4,0,50,1,50,NA,NA,NA +103,NA,789,"2019",5,0,50,1,50,NA,NA,NA +103,NA,790,"2019",3,1,100,1,100,NA,NA,NA +103,NA,791,"2019",5,0,32,1,68,NA,NA,NA +103,NA,792,"2019",3,1,50,1,50,NA,NA,NA +103,NA,794,"2019",5,0,51,1,49,NA,NA,NA +103,NA,795,"2019",5,1,50,1,50,NA,NA,NA +103,NA,796,"2019",5,1,87,1,87,NA,NA,NA +103,NA,797,"2019",6,0,80,1,20,NA,NA,NA +103,NA,798,"2019",5,0,50,1,50,NA,NA,NA +103,NA,799,"2019",5,0,24,1,76,NA,NA,NA +103,NA,800,"2019",4,1,0,1,0,NA,NA,NA +103,NA,801,"2019",4,1,100,1,100,NA,NA,NA +103,NA,802,"2019",2,1,50,1,50,NA,NA,NA +103,NA,803,"2019",3,1,100,1,100,NA,NA,NA +103,NA,804,"2019",4,1,50,1,50,NA,NA,NA +103,NA,805,"2019",3,0,100,1,0,NA,NA,NA +103,NA,806,"2019",5,1,100,1,100,NA,NA,NA +103,NA,808,"2019",4,0,100,1,0,NA,NA,NA +103,NA,810,"2019",2,0,86,1,14,NA,NA,NA +103,NA,811,"2019",3,1,100,1,100,NA,NA,NA +103,NA,812,"2019",2,0,70,1,30,NA,NA,NA +103,NA,814,"2019",4,1,50,1,50,NA,NA,NA +103,NA,815,"2019",6,0,100,1,0,NA,NA,NA +103,NA,816,"2019",3,0,0,1,100,NA,NA,NA +103,NA,817,"2019",6,1,59,1,59,NA,NA,NA +103,NA,818,"2019",5,0,50,1,50,NA,NA,NA +103,NA,819,"2019",3,1,100,1,100,NA,NA,NA +103,NA,820,"2019",5,0,50,1,50,NA,NA,NA +103,NA,821,"2019",6,0,54,1,46,NA,NA,NA +103,NA,822,"2019",4,0,100,1,0,NA,NA,NA +103,NA,823,"2019",5,0,73,1,27,NA,NA,NA +103,NA,824,"2019",4,0,43,1,57,NA,NA,NA +103,NA,825,"2019",5,1,0,1,0,NA,NA,NA +103,NA,826,"2019",2,1,78,1,78,NA,NA,NA +103,NA,827,"2019",6,0,50,1,50,NA,NA,NA +103,NA,828,"2019",4,1,100,1,100,NA,NA,NA +103,NA,829,"2019",5,0,51,1,49,NA,NA,NA +103,NA,831,"2019",3,1,50,1,50,NA,NA,NA +103,NA,832,"2019",4,1,0,1,0,NA,NA,NA +103,NA,833,"2019",4,1,0,1,0,NA,NA,NA +103,NA,834,"2019",2,0,100,1,0,NA,NA,NA +103,NA,835,"2019",6,0,76,1,24,NA,NA,NA +103,NA,836,"2019",6,1,87,1,87,NA,NA,NA +103,NA,837,"2019",5,0,86,1,14,NA,NA,NA +103,NA,838,"2019",4,0,20,1,80,NA,NA,NA +103,NA,839,"2019",4,0,78,1,22,NA,NA,NA +103,NA,840,"2019",3,1,19,1,19,NA,NA,NA +103,NA,841,"2019",2,0,69,1,31,NA,NA,NA +103,NA,842,"2019",5,0,100,1,0,NA,NA,NA +103,NA,844,"2019",6,1,9,1,9,NA,NA,NA +103,NA,847,"2019",3,0,100,1,0,NA,NA,NA +103,NA,848,"2019",6,1,16,1,16,NA,NA,NA +103,NA,849,"2019",3,0,100,1,0,NA,NA,NA +103,NA,850,"2019",5,1,50,1,50,NA,NA,NA +103,NA,852,"2019",5,0,82,1,18,NA,NA,NA +103,NA,853,"2019",5,1,35,1,35,NA,NA,NA +103,NA,855,"2019",5,0,82,1,18,NA,NA,NA +103,NA,856,"2019",6,1,79,1,79,NA,NA,NA +103,NA,859,"2019",3,1,81,1,81,NA,NA,NA +103,NA,860,"2019",6,1,66,1,66,NA,NA,NA +103,NA,862,"2019",6,1,40,1,40,NA,NA,NA +103,NA,863,"2019",3,0,90,1,10,NA,NA,NA +103,NA,864,"2019",5,1,50,1,50,NA,NA,NA +103,NA,865,"2019",3,0,82,1,18,NA,NA,NA +103,NA,866,"2019",3,0,98,1,2,NA,NA,NA +103,NA,867,"2019",6,0,61,1,39,NA,NA,NA +103,NA,868,"2019",5,1,87,1,87,NA,NA,NA +103,NA,869,"2019",6,0,14,1,86,NA,NA,NA +103,NA,870,"2019",3,1,50,1,50,NA,NA,NA +103,NA,871,"2019",2,0,90,1,10,NA,NA,NA +103,NA,872,"2019",5,0,52,1,48,NA,NA,NA +103,NA,873,"2019",6,1,7,1,7,NA,NA,NA +103,NA,874,"2019",6,0,78,1,22,NA,NA,NA +103,NA,875,"2019",4,1,54,1,54,NA,NA,NA +103,NA,876,"2019",3,1,50,1,50,NA,NA,NA +103,NA,877,"2019",6,1,83,1,83,NA,NA,NA +103,NA,878,"2019",3,1,30,1,30,NA,NA,NA +103,NA,879,"2019",2,1,7,1,7,NA,NA,NA +103,NA,880,"2019",4,1,50,1,50,NA,NA,NA +103,NA,881,"2019",4,0,92,1,8,NA,NA,NA +103,NA,882,"2019",6,1,50,1,50,NA,NA,NA +103,NA,883,"2019",3,1,100,1,100,NA,NA,NA +103,NA,885,"2019",2,1,50,1,50,NA,NA,NA +103,NA,886,"2019",4,0,13,1,87,NA,NA,NA +103,NA,887,"2019",2,1,50,1,50,NA,NA,NA +103,NA,888,"2019",2,1,50,1,50,NA,NA,NA +103,NA,889,"2019",3,1,0,1,0,NA,NA,NA +103,NA,890,"2019",4,0,87,1,13,NA,NA,NA +103,NA,891,"2019",2,1,100,1,100,NA,NA,NA +103,NA,892,"2019",2,0,50,1,50,NA,NA,NA +103,NA,893,"2019",5,0,95,1,5,NA,NA,NA +103,NA,894,"2019",3,0,45,1,55,NA,NA,NA +103,NA,895,"2019",6,0,51,1,49,NA,NA,NA +103,NA,896,"2019",5,1,100,1,100,NA,NA,NA +103,NA,897,"2019",6,0,93,1,7,NA,NA,NA +103,NA,898,"2019",4,1,100,1,100,NA,NA,NA +103,NA,899,"2019",3,0,100,1,0,NA,NA,NA +103,NA,900,"2019",5,0,81,1,19,NA,NA,NA +103,NA,901,"2019",6,0,72,1,28,NA,NA,NA +103,NA,902,"2019",5,1,39,1,39,NA,NA,NA +103,NA,903,"2019",6,0,41,1,59,NA,NA,NA +103,NA,904,"2019",4,1,73,1,73,NA,NA,NA +103,NA,905,"2019",4,0,100,1,0,NA,NA,NA +103,NA,906,"2019",5,1,50,1,50,NA,NA,NA +103,NA,907,"2019",5,1,61,1,61,NA,NA,NA +103,NA,908,"2019",2,1,24,1,24,NA,NA,NA +103,NA,909,"2019",3,0,60,1,40,NA,NA,NA +103,NA,910,"2019",3,1,59,1,59,NA,NA,NA +103,NA,911,"2019",5,1,8,1,8,NA,NA,NA +103,NA,912,"2019",6,1,0,1,0,NA,NA,NA +103,NA,913,"2019",4,0,74,1,26,NA,NA,NA +103,NA,915,"2019",6,1,9,1,9,NA,NA,NA +103,NA,916,"2019",5,0,59,1,41,NA,NA,NA +103,NA,918,"2019",4,0,100,1,0,NA,NA,NA +103,NA,919,"2019",3,1,80,1,80,NA,NA,NA +103,NA,920,"2019",5,1,35,1,35,NA,NA,NA +103,NA,921,"2019",3,0,50,1,50,NA,NA,NA +103,NA,922,"2019",6,0,50,1,50,NA,NA,NA +103,NA,923,"2019",5,0,92,1,8,NA,NA,NA +103,NA,924,"2019",6,0,85,1,15,NA,NA,NA +103,NA,925,"2019",6,0,0,1,100,NA,NA,NA +103,NA,926,"2019",2,0,58,1,42,NA,NA,NA +103,NA,927,"2019",4,0,78,1,22,NA,NA,NA +103,NA,928,"2019",3,1,92,1,92,NA,NA,NA +103,NA,929,"2019",6,0,67,1,33,NA,NA,NA +103,NA,930,"2019",3,1,93,1,93,NA,NA,NA +103,NA,931,"2019",4,1,74,1,74,NA,NA,NA +103,NA,932,"2019",6,1,72,1,72,NA,NA,NA +103,NA,934,"2019",2,0,93,1,7,NA,NA,NA +103,NA,935,"2019",4,0,100,1,0,NA,NA,NA +103,NA,936,"2019",5,1,100,1,100,NA,NA,NA +103,NA,937,"2019",5,0,20,1,80,NA,NA,NA +103,NA,938,"2019",6,1,6,1,6,NA,NA,NA +103,NA,939,"2019",3,0,71,1,29,NA,NA,NA +103,NA,940,"2019",2,1,47,1,47,NA,NA,NA +103,NA,941,"2019",3,1,29,1,29,NA,NA,NA +103,NA,942,"2019",5,0,28,1,72,NA,NA,NA +103,NA,943,"2019",5,1,100,1,100,NA,NA,NA +103,NA,944,"2019",6,1,0,1,0,NA,NA,NA +103,NA,945,"2019",6,1,56,1,56,NA,NA,NA +103,NA,946,"2019",6,0,70,1,30,NA,NA,NA +103,NA,948,"2019",2,0,11,1,89,NA,NA,NA +103,NA,949,"2019",5,1,72,1,72,NA,NA,NA +103,NA,950,"2019",2,1,66,1,66,NA,NA,NA +103,NA,953,"2019",6,1,92,1,92,NA,NA,NA +103,NA,954,"2019",2,0,100,1,0,NA,NA,NA +103,NA,955,"2019",2,1,17,1,17,NA,NA,NA +103,NA,956,"2019",4,1,10,1,10,NA,NA,NA +103,NA,957,"2019",4,1,70,1,70,NA,NA,NA +103,NA,958,"2019",2,0,87,1,13,NA,NA,NA +103,NA,959,"2019",2,0,100,1,0,NA,NA,NA +103,NA,961,"2019",4,0,50,1,50,NA,NA,NA +103,NA,962,"2019",3,0,100,1,0,NA,NA,NA +103,NA,963,"2019",4,1,29,1,29,NA,NA,NA +103,NA,964,"2019",2,1,0,1,0,NA,NA,NA +103,NA,965,"2019",3,1,55,1,55,NA,NA,NA +103,NA,966,"2019",6,0,69,1,31,NA,NA,NA +103,NA,968,"2019",2,1,50,1,50,NA,NA,NA +103,NA,969,"2019",6,0,100,1,0,NA,NA,NA +103,NA,970,"2019",3,0,71,1,29,NA,NA,NA +103,NA,971,"2019",3,0,100,1,0,NA,NA,NA +103,NA,972,"2019",2,1,75,1,75,NA,NA,NA +103,NA,973,"2019",4,1,43,1,43,NA,NA,NA +103,NA,974,"2019",3,0,90,1,10,NA,NA,NA +103,NA,975,"2019",6,1,23,1,23,NA,NA,NA +103,NA,976,"2019",6,1,0,1,0,NA,NA,NA +103,NA,977,"2019",4,0,62,1,38,NA,NA,NA +103,NA,978,"2019",5,0,0,1,100,NA,NA,NA +103,NA,979,"2019",2,1,41,1,41,NA,NA,NA +103,NA,981,"2019",4,1,88,1,88,NA,NA,NA +103,NA,982,"2019",3,1,100,1,100,NA,NA,NA +103,NA,986,"2019",2,0,87,1,13,NA,NA,NA +103,NA,988,"2019",2,1,30,1,30,NA,NA,NA +103,NA,989,"2019",2,0,51,1,49,NA,NA,NA +103,NA,990,"2019",6,1,30,1,30,NA,NA,NA +103,NA,992,"2019",4,0,60,1,40,NA,NA,NA +103,NA,994,"2019",4,1,0,1,0,NA,NA,NA +103,NA,995,"2019",4,1,50,1,50,NA,NA,NA +103,NA,996,"2019",6,0,57,1,43,NA,NA,NA +103,NA,998,"2019",2,0,92,1,8,NA,NA,NA +103,NA,999,"2019",2,0,92,1,8,NA,NA,NA +103,NA,1001,"2019",6,1,8,1,8,NA,NA,NA +103,NA,1002,"2019",6,0,71,1,29,NA,NA,NA +103,NA,1003,"2019",6,1,94,1,94,NA,NA,NA +103,NA,1005,"2019",4,0,50,1,50,NA,NA,NA +103,NA,1006,"2019",2,0,100,1,0,NA,NA,NA +103,NA,1007,"2019",5,1,92,1,92,NA,NA,NA +103,NA,1008,"2019",6,1,23,1,23,NA,NA,NA +103,NA,1009,"2019",5,0,81,1,19,NA,NA,NA +103,NA,1011,"2019",4,1,0,1,0,NA,NA,NA +103,NA,1012,"2019",6,1,34,1,34,NA,NA,NA +103,NA,1013,"2019",5,1,0,1,0,NA,NA,NA +103,NA,1014,"2019",5,1,100,1,100,NA,NA,NA +103,NA,1015,"2019",4,0,100,1,0,NA,NA,NA +103,NA,1016,"2019",3,0,61,1,39,NA,NA,NA +103,NA,1017,"2019",3,1,38,1,38,NA,NA,NA +103,NA,1018,"2019",4,0,21,1,79,NA,NA,NA +103,NA,1019,"2019",2,1,100,1,100,NA,NA,NA +103,NA,1020,"2019",2,0,91,1,9,NA,NA,NA +103,NA,1022,"2019",6,0,51,1,49,NA,NA,NA +103,NA,1024,"2019",6,1,92,1,92,NA,NA,NA +103,NA,1027,"2019",2,1,11,1,11,NA,NA,NA +103,NA,1029,"2019",2,1,1,1,1,NA,NA,NA +103,NA,1030,"2019",3,1,24,1,24,NA,NA,NA +103,NA,1032,"2019",2,0,11,1,89,NA,NA,NA +103,NA,1033,"2019",2,0,79,1,21,NA,NA,NA +103,NA,1034,"2019",5,0,50,1,50,NA,NA,NA +103,NA,1035,"2019",4,0,100,1,0,NA,NA,NA +103,NA,1036,"2019",3,0,100,1,0,NA,NA,NA +103,NA,1037,"2019",4,1,17,1,17,NA,NA,NA +103,NA,1038,"2019",2,1,50,1,50,NA,NA,NA +103,NA,1039,"2019",5,1,72,1,72,NA,NA,NA +103,NA,1041,"2019",4,0,91,1,9,NA,NA,NA +103,NA,1043,"2019",6,0,91,1,9,NA,NA,NA +103,NA,1044,"2019",6,1,23,1,23,NA,NA,NA +103,NA,1045,"2019",3,1,50,1,50,NA,NA,NA +103,NA,1046,"2019",2,0,61,1,39,NA,NA,NA +103,NA,1049,"2019",3,1,99,1,99,NA,NA,NA +103,NA,1050,"2019",4,0,53,1,47,NA,NA,NA +103,NA,1051,"2019",5,0,62,1,38,NA,NA,NA +103,NA,1052,"2019",5,1,42,1,42,NA,NA,NA +103,NA,1053,"2019",6,1,100,1,100,NA,NA,NA +103,NA,1054,"2019",6,1,51,1,51,NA,NA,NA +103,NA,1055,"2019",6,0,81,1,19,NA,NA,NA +103,NA,1056,"2019",3,1,100,1,100,NA,NA,NA +103,NA,1058,"2019",6,0,100,1,0,NA,NA,NA +103,NA,1060,"2019",4,1,0,1,0,NA,NA,NA +103,NA,1061,"2019",6,1,0,1,0,NA,NA,NA +103,NA,1062,"2019",3,1,2,1,2,NA,NA,NA +103,NA,1063,"2019",3,0,51,1,49,NA,NA,NA +103,NA,1064,"2019",4,1,72,1,72,NA,NA,NA +103,NA,1065,"2019",6,0,100,1,0,NA,NA,NA +103,NA,1067,"2019",4,1,50,1,50,NA,NA,NA +103,NA,1068,"2019",3,0,100,1,0,NA,NA,NA +103,NA,1069,"2019",4,1,0,1,0,NA,NA,NA +103,NA,1070,"2019",4,0,51,1,49,NA,NA,NA +103,NA,1071,"2019",5,0,30,1,70,NA,NA,NA +103,NA,1072,"2019",5,0,50,1,50,NA,NA,NA +103,NA,1073,"2019",5,1,63,1,63,NA,NA,NA +103,NA,1075,"2019",5,0,99,1,1,NA,NA,NA +103,NA,1076,"2019",5,1,51,1,51,NA,NA,NA +103,NA,1077,"2019",3,1,0,1,0,NA,NA,NA +103,NA,1078,"2019",3,1,20,1,20,NA,NA,NA +103,NA,1079,"2019",3,1,8,1,8,NA,NA,NA +103,NA,1080,"2019",2,0,72,1,28,NA,NA,NA +103,NA,1081,"2019",2,0,57,1,43,NA,NA,NA +103,NA,1082,"2019",4,1,50,1,50,NA,NA,NA +103,NA,1083,"2019",4,1,50,1,50,NA,NA,NA +103,NA,1084,"2019",5,1,63,1,63,NA,NA,NA +103,NA,1085,"2019",6,1,100,1,100,NA,NA,NA +103,NA,1086,"2019",4,0,89,1,11,NA,NA,NA +103,NA,1088,"2019",4,1,50,1,50,NA,NA,NA +103,NA,1089,"2019",5,1,30,1,30,NA,NA,NA +103,NA,1090,"2019",4,0,83,1,17,NA,NA,NA +103,NA,1091,"2019",6,1,77,1,77,NA,NA,NA +103,NA,1092,"2019",3,1,100,1,100,NA,NA,NA +103,NA,1093,"2019",6,1,50,1,50,NA,NA,NA +103,NA,1094,"2019",4,1,50,1,50,NA,NA,NA +103,NA,1095,"2019",2,0,100,1,0,NA,NA,NA +103,NA,1096,"2019",2,0,94,1,6,NA,NA,NA +103,NA,1098,"2019",2,0,80,1,20,NA,NA,NA +103,NA,1100,"2019",5,1,84,1,84,NA,NA,NA +103,NA,1101,"2019",5,0,46,1,54,NA,NA,NA +103,NA,1102,"2019",4,1,0,1,0,NA,NA,NA +103,NA,1103,"2019",6,1,77,1,77,NA,NA,NA +103,NA,1104,"2019",3,0,17,1,83,NA,NA,NA +103,NA,1106,"2019",5,0,79,1,21,NA,NA,NA +103,NA,1107,"2019",6,0,80,1,20,NA,NA,NA +103,NA,1108,"2019",5,1,85,1,85,NA,NA,NA +103,NA,1109,"2019",5,1,28,1,28,NA,NA,NA +103,NA,1110,"2019",6,1,87,1,87,NA,NA,NA +103,NA,1111,"2019",5,1,50,1,50,NA,NA,NA +103,NA,1112,"2019",5,1,13,1,13,NA,NA,NA +103,NA,1113,"2019",6,1,87,1,87,NA,NA,NA +103,NA,1114,"2019",4,1,100,1,100,NA,NA,NA +103,NA,1115,"2019",4,0,50,1,50,NA,NA,NA +103,NA,1116,"2019",2,1,87,1,87,NA,NA,NA +103,NA,1118,"2019",3,0,83,1,17,NA,NA,NA +103,NA,1119,"2019",2,1,50,1,50,NA,NA,NA +103,NA,1120,"2019",6,0,83,1,17,NA,NA,NA +103,NA,1121,"2019",6,1,26,1,26,NA,NA,NA +103,NA,1122,"2019",2,0,76,1,24,NA,NA,NA +103,NA,1123,"2019",6,1,89,1,89,NA,NA,NA +103,NA,1124,"2019",5,1,1,1,1,NA,NA,NA +103,NA,1125,"2019",6,1,57,1,57,NA,NA,NA +103,NA,1126,"2019",4,1,21,1,21,NA,NA,NA +103,NA,1127,"2019",6,1,50,1,50,NA,NA,NA +103,NA,1128,"2019",2,1,95,1,95,NA,NA,NA +103,NA,1129,"2019",3,0,88,1,12,NA,NA,NA +103,NA,1130,"2019",5,0,100,1,0,NA,NA,NA +103,NA,1131,"2019",2,1,87,1,87,NA,NA,NA +103,NA,1132,"2019",5,0,18,1,82,NA,NA,NA +103,NA,1133,"2019",3,1,80,1,80,NA,NA,NA +103,NA,1134,"2019",3,1,34,1,34,NA,NA,NA +103,NA,1135,"2019",3,1,50,1,50,NA,NA,NA +103,NA,1136,"2019",5,1,77,1,77,NA,NA,NA +103,NA,1137,"2019",2,0,50,1,50,NA,NA,NA +103,NA,1138,"2019",5,0,50,1,50,NA,NA,NA +103,NA,1139,"2019",6,0,0,1,100,NA,NA,NA +103,NA,1140,"2019",6,1,77,1,77,NA,NA,NA +103,NA,1141,"2019",6,0,100,1,0,NA,NA,NA +103,NA,1142,"2019",4,1,50,1,50,NA,NA,NA +103,NA,1143,"2019",3,0,18,1,82,NA,NA,NA +103,NA,1144,"2019",4,1,87,1,87,NA,NA,NA +103,NA,1145,"2019",5,0,76,1,24,NA,NA,NA +103,NA,1146,"2019",6,1,3,1,3,NA,NA,NA +103,NA,1149,"2019",2,1,81,1,81,NA,NA,NA +103,NA,1151,"2019",3,0,0,1,100,NA,NA,NA +103,NA,1152,"2019",6,0,50,1,50,NA,NA,NA +103,NA,1153,"2019",2,0,61,1,39,NA,NA,NA +103,NA,1154,"2019",5,1,77,1,77,NA,NA,NA +103,NA,1156,"2019",2,0,100,1,0,NA,NA,NA +103,NA,1157,"2019",5,1,83,1,83,NA,NA,NA +103,NA,1158,"2019",2,1,86,1,86,NA,NA,NA +103,NA,1159,"2019",2,0,55,1,45,NA,NA,NA +103,NA,1160,"2019",2,1,87,1,87,NA,NA,NA +103,NA,1161,"2019",3,1,83,1,83,NA,NA,NA +103,NA,1163,"2019",6,0,88,1,12,NA,NA,NA +103,NA,1164,"2019",4,1,86,1,86,NA,NA,NA +103,NA,1165,"2019",4,1,88,1,88,NA,NA,NA +103,NA,1166,"2019",5,0,86,1,14,NA,NA,NA +103,NA,1167,"2019",5,0,82,1,18,NA,NA,NA +103,NA,1168,"2019",4,1,22,1,22,NA,NA,NA +103,109,145,"2019",4,1,100,2,100,77,"Xinhua",NA +103,109,146,"2019",4,0,100,2,0,1,"Xinhua",NA +103,109,148,"2019",2,0,88,2,12,12,"Xinhua",NA +103,109,151,"2019",5,1,0,3,0,50,"Xinhua",NA +103,109,155,"2019",5,1,39,2,39,39,"Xinhua",NA +103,109,157,"2019",4,0,59,2,41,57,"Xinhua",NA +103,109,158,"2019",6,0,9,3,91,91,"Xinhua",NA +103,109,159,"2019",6,0,77,3,23,23,"Xinhua",NA +103,109,163,"2019",6,0,91,2,9,39,"Xinhua",NA +103,109,165,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,167,"2019",2,0,96,3,4,4,"Xinhua",NA +103,109,171,"2019",5,1,48,3,48,70,"Xinhua",NA +103,109,174,"2019",3,1,96,3,96,73,"Xinhua",NA +103,109,175,"2019",5,1,18,3,18,26,"Xinhua",NA +103,109,176,"2019",6,0,6,3,94,94,"Xinhua",NA +103,109,177,"2019",5,1,7,2,7,11,"Xinhua",NA +103,109,181,"2019",5,1,12,2,12,22,"Xinhua",NA +103,109,183,"2019",5,0,64,2,36,44,"Xinhua",NA +103,109,184,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,185,"2019",2,0,100,2,0,14,"Xinhua",NA +103,109,187,"2019",6,1,100,2,100,100,"Xinhua",NA +103,109,188,"2019",5,0,70,2,30,60,"Xinhua",NA +103,109,197,"2019",4,0,92,2,8,28,"Xinhua",NA +103,109,198,"2019",6,1,90,3,90,45,"Xinhua",NA +103,109,200,"2019",2,0,51,3,49,55,"Xinhua",NA +103,109,202,"2019",3,1,85,2,85,74,"Xinhua",NA +103,109,203,"2019",6,0,84,3,16,51,"Xinhua",NA +103,109,204,"2019",6,0,66,2,34,8,"Xinhua",NA +103,109,206,"2019",3,0,50,2,50,50,"Xinhua",NA +103,109,210,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,214,"2019",2,0,88,2,12,88,"Xinhua",NA +103,109,220,"2019",3,1,96,2,96,50,"Xinhua",NA +103,109,224,"2019",2,1,84,3,84,84,"Xinhua",NA +103,109,228,"2019",5,1,37,3,37,80,"Xinhua",NA +103,109,230,"2019",2,1,16,3,16,16,"Xinhua",NA +103,109,235,"2019",4,1,0,2,0,5,"Xinhua",NA +103,109,239,"2019",4,1,33,2,33,38,"Xinhua",NA +103,109,241,"2019",5,1,68,2,68,57,"Xinhua",NA +103,109,246,"2019",5,1,9,2,9,27,"Xinhua",NA +103,109,247,"2019",4,1,100,2,100,0,"Xinhua",NA +103,109,248,"2019",4,1,50,2,50,50,"Xinhua",NA +103,109,252,"2019",2,1,94,2,94,94,"Xinhua",NA +103,109,253,"2019",5,0,90,3,10,26,"Xinhua",NA +103,109,256,"2019",5,0,93,2,7,7,"Xinhua",NA +103,109,258,"2019",3,0,64,2,36,36,"Xinhua",NA +103,109,262,"2019",6,0,70,3,30,40,"Xinhua",NA +103,109,264,"2019",2,1,100,2,100,75,"Xinhua",NA +103,109,269,"2019",3,0,100,2,0,0,"Xinhua",NA +103,109,270,"2019",5,0,0,2,100,100,"Xinhua",NA +103,109,272,"2019",4,0,60,2,40,30,"Xinhua",NA +103,109,280,"2019",5,1,77,3,77,77,"Xinhua",NA +103,109,281,"2019",6,1,29,2,29,29,"Xinhua",NA +103,109,283,"2019",3,0,81,2,19,11,"Xinhua",NA +103,109,284,"2019",2,0,85,2,15,15,"Xinhua",NA +103,109,291,"2019",6,1,89,3,89,48,"Xinhua",NA +103,109,292,"2019",3,1,0,2,0,0,"Xinhua",NA +103,109,293,"2019",4,1,0,2,0,0,"Xinhua",NA +103,109,294,"2019",3,1,70,2,70,28,"Xinhua",NA +103,109,296,"2019",6,1,0,3,0,0,"Xinhua",NA +103,109,302,"2019",6,0,75,2,25,25,"Xinhua",NA +103,109,306,"2019",4,1,100,2,100,100,"Xinhua",NA +103,109,307,"2019",3,1,17,2,17,50,"Xinhua",NA +103,109,310,"2019",4,1,78,2,78,50,"Xinhua",NA +103,109,313,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,314,"2019",5,0,90,3,10,10,"Xinhua",NA +103,109,316,"2019",3,0,81,3,19,19,"Xinhua",NA +103,109,319,"2019",4,0,100,2,0,18,"Xinhua",NA +103,109,320,"2019",2,0,100,3,0,100,"Xinhua",NA +103,109,322,"2019",3,0,100,2,0,50,"Xinhua",NA +103,109,323,"2019",2,0,75,3,25,45,"Xinhua",NA +103,109,325,"2019",5,0,100,2,0,0,"Xinhua",NA +103,109,328,"2019",4,1,100,2,100,50,"Xinhua",NA +103,109,329,"2019",5,0,100,3,0,0,"Xinhua",NA +103,109,331,"2019",4,0,88,2,12,12,"Xinhua",NA +103,109,338,"2019",4,0,50,2,50,50,"Xinhua",NA +103,109,347,"2019",6,1,1,3,1,7,"Xinhua",NA +103,109,348,"2019",6,1,100,2,100,100,"Xinhua",NA +103,109,351,"2019",6,0,100,2,0,0,"Xinhua",NA +103,109,352,"2019",4,0,100,2,0,50,"Xinhua",NA +103,109,353,"2019",5,1,100,2,100,100,"Xinhua",NA +103,109,354,"2019",4,0,100,2,0,50,"Xinhua",NA +103,109,356,"2019",6,0,91,2,9,9,"Xinhua",NA +103,109,357,"2019",4,0,76,2,24,24,"Xinhua",NA +103,109,360,"2019",5,0,70,2,30,30,"Xinhua",NA +103,109,362,"2019",4,1,62,2,62,50,"Xinhua",NA +103,109,363,"2019",6,0,60,3,40,27,"Xinhua",NA +103,109,364,"2019",6,1,100,3,100,100,"Xinhua",NA +103,109,365,"2019",6,1,2,3,2,84,"Xinhua",NA +103,109,372,"2019",6,1,0,2,0,0,"Xinhua",NA +103,109,374,"2019",2,0,100,3,0,0,"Xinhua",NA +103,109,377,"2019",5,1,59,2,59,59,"Xinhua",NA +103,109,378,"2019",4,1,64,2,64,40,"Xinhua",NA +103,109,379,"2019",6,1,100,2,100,100,"Xinhua",NA +103,109,383,"2019",4,0,72,2,28,1,"Xinhua",NA +103,109,384,"2019",2,0,76,3,24,41,"Xinhua",NA +103,109,385,"2019",5,1,0,2,0,0,"Xinhua",NA +103,109,386,"2019",2,0,100,3,0,0,"Xinhua",NA +103,109,388,"2019",4,1,5,2,5,3,"Xinhua",NA +103,109,390,"2019",3,0,100,2,0,0,"Xinhua",NA +103,109,392,"2019",3,0,100,3,0,0,"Xinhua",NA +103,109,394,"2019",2,1,100,2,100,0,"Xinhua",NA +103,109,396,"2019",5,1,99,2,99,0,"Xinhua",NA +103,109,398,"2019",4,0,88,2,12,16,"Xinhua",NA +103,109,399,"2019",2,0,100,2,0,50,"Xinhua",NA +103,109,401,"2019",5,1,14,3,14,26,"Xinhua",NA +103,109,407,"2019",2,1,51,3,51,100,"Xinhua",NA +103,109,409,"2019",2,0,92,3,8,8,"Xinhua",NA +103,109,410,"2019",4,1,0,2,0,50,"Xinhua",NA +103,109,412,"2019",2,1,8,3,8,8,"Xinhua",NA +103,109,414,"2019",5,0,93,2,7,36,"Xinhua",NA +103,109,420,"2019",4,0,50,2,50,50,"Xinhua",NA +103,109,421,"2019",2,0,35,3,65,81,"Xinhua",NA +103,109,427,"2019",4,1,100,2,100,100,"Xinhua",NA +103,109,430,"2019",6,1,62,3,62,58,"Xinhua",NA +103,109,431,"2019",5,0,53,2,47,54,"Xinhua",NA +103,109,432,"2019",2,0,100,2,0,48,"Xinhua",NA +103,109,433,"2019",3,0,66,3,34,50,"Xinhua",NA +103,109,437,"2019",4,1,100,2,100,87,"Xinhua",NA +103,109,439,"2019",5,0,0,3,100,100,"Xinhua",NA +103,109,441,"2019",4,0,82,2,18,50,"Xinhua",NA +103,109,450,"2019",3,0,0,3,100,0,"Xinhua",NA +103,109,451,"2019",3,1,10,3,10,35,"Xinhua",NA +103,109,452,"2019",2,0,52,3,48,30,"Xinhua",NA +103,109,459,"2019",3,0,71,2,29,29,"Xinhua",NA +103,109,460,"2019",5,1,95,2,95,81,"Xinhua",NA +103,109,464,"2019",3,1,23,2,23,23,"Xinhua",NA +103,109,466,"2019",5,0,0,2,100,100,"Xinhua",NA +103,109,467,"2019",6,1,100,2,100,100,"Xinhua",NA +103,109,472,"2019",2,1,88,2,88,79,"Xinhua",NA +103,109,473,"2019",5,1,96,3,96,0,"Xinhua",NA +103,109,474,"2019",4,1,29,2,29,39,"Xinhua",NA +103,109,475,"2019",6,1,62,3,62,62,"Xinhua",NA +103,109,476,"2019",5,0,55,2,45,67,"Xinhua",NA +103,109,479,"2019",6,0,98,3,2,2,"Xinhua",NA +103,109,482,"2019",5,1,44,3,44,99,"Xinhua",NA +103,109,494,"2019",3,1,52,2,52,73,"Xinhua",NA +103,109,495,"2019",5,0,73,3,27,27,"Xinhua",NA +103,109,498,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,499,"2019",3,0,74,3,26,31,"Xinhua",NA +103,109,501,"2019",3,0,64,2,36,0,"Xinhua",NA +103,109,508,"2019",5,0,74,2,26,65,"Xinhua",NA +103,109,510,"2019",5,0,48,2,52,18,"Xinhua",NA +103,109,511,"2019",6,0,53,2,47,34,"Xinhua",NA +103,109,513,"2019",5,1,74,2,74,74,"Xinhua",NA +103,109,520,"2019",5,0,50,2,50,50,"Xinhua",NA +103,109,523,"2019",3,0,10,2,90,50,"Xinhua",NA +103,109,524,"2019",3,0,75,2,25,25,"Xinhua",NA +103,109,525,"2019",2,1,62,3,62,71,"Xinhua",NA +103,109,526,"2019",6,1,8,2,8,8,"Xinhua",NA +103,109,527,"2019",6,1,100,2,100,50,"Xinhua",NA +103,109,529,"2019",4,0,65,2,35,35,"Xinhua",NA +103,109,532,"2019",3,0,90,3,10,10,"Xinhua",NA +103,109,533,"2019",5,1,9,3,9,9,"Xinhua",NA +103,109,535,"2019",5,1,80,3,80,22,"Xinhua",NA +103,109,537,"2019",3,1,61,3,61,50,"Xinhua",NA +103,109,539,"2019",3,1,26,2,26,82,"Xinhua",NA +103,109,540,"2019",2,1,35,3,35,24,"Xinhua",NA +103,109,541,"2019",2,0,72,3,28,79,"Xinhua",NA +103,109,546,"2019",3,0,53,2,47,31,"Xinhua",NA +103,109,547,"2019",5,1,100,2,100,100,"Xinhua",NA +103,109,548,"2019",2,0,47,2,53,47,"Xinhua",NA +103,109,549,"2019",5,0,53,2,47,47,"Xinhua",NA +103,109,550,"2019",3,1,100,3,100,50,"Xinhua",NA +103,109,552,"2019",4,0,80,2,20,20,"Xinhua",NA +103,109,553,"2019",6,0,50,3,50,50,"Xinhua",NA +103,109,555,"2019",6,1,79,2,79,63,"Xinhua",NA +103,109,557,"2019",3,1,13,2,13,11,"Xinhua",NA +103,109,560,"2019",2,0,29,2,71,71,"Xinhua",NA +103,109,561,"2019",5,0,71,2,29,74,"Xinhua",NA +103,109,563,"2019",3,1,23,3,23,23,"Xinhua",NA +103,109,565,"2019",2,1,70,3,70,55,"Xinhua",NA +103,109,566,"2019",6,1,31,2,31,31,"Xinhua",NA +103,109,569,"2019",6,1,19,3,19,19,"Xinhua",NA +103,109,570,"2019",2,0,86,2,14,14,"Xinhua",NA +103,109,572,"2019",3,1,80,2,80,80,"Xinhua",NA +103,109,575,"2019",4,0,90,2,10,37,"Xinhua",NA +103,109,576,"2019",6,1,100,2,100,100,"Xinhua",NA +103,109,578,"2019",2,1,90,2,90,80,"Xinhua",NA +103,109,581,"2019",6,0,70,3,30,69,"Xinhua",NA +103,109,582,"2019",2,1,73,3,73,41,"Xinhua",NA +103,109,584,"2019",2,1,56,3,56,56,"Xinhua",NA +103,109,587,"2019",4,0,50,2,50,50,"Xinhua",NA +103,109,590,"2019",4,1,50,2,50,50,"Xinhua",NA +103,109,592,"2019",6,1,50,3,50,56,"Xinhua",NA +103,109,597,"2019",4,1,61,2,61,43,"Xinhua",NA +103,109,598,"2019",3,0,59,3,41,41,"Xinhua",NA +103,109,600,"2019",6,0,86,2,14,24,"Xinhua",NA +103,109,604,"2019",3,0,53,3,47,29,"Xinhua",NA +103,109,609,"2019",5,1,66,2,66,80,"Xinhua",NA +103,109,610,"2019",6,0,61,3,39,49,"Xinhua",NA +103,109,612,"2019",5,0,36,3,64,64,"Xinhua",NA +103,109,616,"2019",5,1,26,3,26,36,"Xinhua",NA +103,109,617,"2019",2,0,55,3,45,50,"Xinhua",NA +103,109,619,"2019",5,1,45,3,45,47,"Xinhua",NA +103,109,620,"2019",3,0,100,2,0,0,"Xinhua",NA +103,109,621,"2019",4,0,50,2,50,50,"Xinhua",NA +103,109,623,"2019",4,0,94,2,6,8,"Xinhua",NA +103,109,625,"2019",6,1,72,2,72,72,"Xinhua",NA +103,109,627,"2019",6,0,50,3,50,50,"Xinhua",NA +103,109,628,"2019",4,0,50,2,50,50,"Xinhua",NA +103,109,633,"2019",3,1,100,3,100,100,"Xinhua",NA +103,109,635,"2019",6,1,100,3,100,100,"Xinhua",NA +103,109,638,"2019",3,0,100,3,0,0,"Xinhua",NA +103,109,648,"2019",2,0,53,2,47,47,"Xinhua",NA +103,109,650,"2019",5,1,83,2,83,83,"Xinhua",NA +103,109,651,"2019",6,1,98,3,98,65,"Xinhua",NA +103,109,652,"2019",5,0,100,3,0,0,"Xinhua",NA +103,109,655,"2019",3,0,100,3,0,100,"Xinhua",NA +103,109,657,"2019",2,0,90,2,10,10,"Xinhua",NA +103,109,660,"2019",6,1,92,3,92,92,"Xinhua",NA +103,109,661,"2019",2,1,0,2,0,50,"Xinhua",NA +103,109,665,"2019",2,0,100,2,0,0,"Xinhua",NA +103,109,666,"2019",5,1,100,2,100,100,"Xinhua",NA +103,109,668,"2019",2,1,2,2,2,0,"Xinhua",NA +103,109,669,"2019",4,1,87,2,87,87,"Xinhua",NA +103,109,671,"2019",4,1,0,2,0,0,"Xinhua",NA +103,109,672,"2019",2,1,100,2,100,100,"Xinhua",NA +103,109,676,"2019",4,1,100,2,100,100,"Xinhua",NA +103,109,682,"2019",2,1,50,2,50,50,"Xinhua",NA +103,109,683,"2019",5,0,78,3,22,22,"Xinhua",NA +103,109,684,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,688,"2019",5,0,87,3,13,13,"Xinhua",NA +103,109,689,"2019",6,1,51,3,51,51,"Xinhua",NA +103,109,691,"2019",5,0,87,3,13,13,"Xinhua",NA +103,109,692,"2019",5,0,75,3,25,25,"Xinhua",NA +103,109,694,"2019",6,1,95,3,95,91,"Xinhua",NA +103,109,695,"2019",5,1,0,3,0,0,"Xinhua",NA +103,109,696,"2019",3,1,100,3,100,100,"Xinhua",NA +103,109,698,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,702,"2019",2,1,0,3,0,20,"Xinhua",NA +103,109,704,"2019",3,1,0,3,0,0,"Xinhua",NA +103,109,710,"2019",6,1,13,2,13,27,"Xinhua",NA +103,109,711,"2019",5,1,100,3,100,100,"Xinhua",NA +103,109,712,"2019",2,1,50,3,50,50,"Xinhua",NA +103,109,717,"2019",4,1,97,2,97,97,"Xinhua",NA +103,109,718,"2019",6,1,0,3,0,0,"Xinhua",NA +103,109,720,"2019",5,0,91,3,9,80,"Xinhua",NA +103,109,723,"2019",4,1,50,2,50,50,"Xinhua",NA +103,109,729,"2019",5,1,1,3,1,1,"Xinhua",NA +103,109,730,"2019",2,0,91,2,9,50,"Xinhua",NA +103,109,733,"2019",5,0,50,3,50,50,"Xinhua",NA +103,109,739,"2019",3,1,97,2,97,97,"Xinhua",NA +103,109,742,"2019",6,0,0,3,100,100,"Xinhua",NA +103,109,743,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,747,"2019",4,1,27,2,27,27,"Xinhua",NA +103,109,749,"2019",4,1,100,2,100,100,"Xinhua",NA +103,109,754,"2019",5,0,53,2,47,50,"Xinhua",NA +103,109,755,"2019",6,0,50,2,50,50,"Xinhua",NA +103,109,756,"2019",4,1,100,2,100,100,"Xinhua",NA +103,109,759,"2019",3,1,100,2,100,50,"Xinhua",NA +103,109,761,"2019",5,1,63,2,63,63,"Xinhua",NA +103,109,763,"2019",4,0,50,2,50,50,"Xinhua",NA +103,109,765,"2019",5,0,71,2,29,0,"Xinhua",NA +103,109,771,"2019",2,0,68,3,32,50,"Xinhua",NA +103,109,774,"2019",6,0,92,3,8,8,"Xinhua",NA +103,109,775,"2019",2,1,61,2,61,61,"Xinhua",NA +103,109,779,"2019",2,1,100,2,100,50,"Xinhua",NA +103,109,781,"2019",2,0,50,3,50,50,"Xinhua",NA +103,109,782,"2019",3,0,89,3,11,11,"Xinhua",NA +103,109,783,"2019",2,1,71,2,71,14,"Xinhua",NA +103,109,784,"2019",5,0,100,2,0,27,"Xinhua",NA +103,109,787,"2019",6,0,63,3,37,37,"Xinhua",NA +103,109,788,"2019",4,0,42,2,58,50,"Xinhua",NA +103,109,789,"2019",5,0,51,3,49,75,"Xinhua",NA +103,109,790,"2019",3,1,100,2,100,100,"Xinhua",NA +103,109,791,"2019",5,0,87,3,13,72,"Xinhua",NA +103,109,792,"2019",3,1,62,3,62,62,"Xinhua",NA +103,109,794,"2019",5,0,51,2,49,49,"Xinhua",NA +103,109,795,"2019",5,1,50,2,50,50,"Xinhua",NA +103,109,798,"2019",5,0,50,2,50,50,"Xinhua",NA +103,109,800,"2019",4,1,0,2,0,0,"Xinhua",NA +103,109,802,"2019",2,1,97,2,97,50,"Xinhua",NA +103,109,805,"2019",3,0,100,2,0,0,"Xinhua",NA +103,109,808,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,810,"2019",2,0,86,3,14,14,"Xinhua",NA +103,109,815,"2019",6,0,100,3,0,0,"Xinhua",NA +103,109,821,"2019",6,0,53,2,47,46,"Xinhua",NA +103,109,822,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,823,"2019",5,0,100,2,0,27,"Xinhua",NA +103,109,824,"2019",4,0,96,2,4,57,"Xinhua",NA +103,109,826,"2019",2,1,100,2,100,78,"Xinhua",NA +103,109,827,"2019",6,0,1,3,99,99,"Xinhua",NA +103,109,828,"2019",4,1,100,2,100,100,"Xinhua",NA +103,109,832,"2019",4,1,0,2,0,0,"Xinhua",NA +103,109,833,"2019",4,1,0,2,0,0,"Xinhua",NA +103,109,834,"2019",2,0,100,2,0,0,"Xinhua",NA +103,109,835,"2019",6,0,76,3,24,24,"Xinhua",NA +103,109,837,"2019",5,0,86,2,14,14,"Xinhua",NA +103,109,842,"2019",5,0,100,2,0,0,"Xinhua",NA +103,109,844,"2019",6,1,9,2,9,9,"Xinhua",NA +103,109,847,"2019",3,0,100,2,0,0,"Xinhua",NA +103,109,849,"2019",3,0,100,3,0,0,"Xinhua",NA +103,109,850,"2019",5,1,89,3,89,6,"Xinhua",NA +103,109,853,"2019",5,1,52,2,52,35,"Xinhua",NA +103,109,855,"2019",5,0,82,2,18,18,"Xinhua",NA +103,109,856,"2019",6,1,79,2,79,79,"Xinhua",NA +103,109,859,"2019",3,1,93,2,93,81,"Xinhua",NA +103,109,862,"2019",6,1,9,3,9,30,"Xinhua",NA +103,109,863,"2019",3,0,90,2,10,10,"Xinhua",NA +103,109,864,"2019",5,1,75,2,75,50,"Xinhua",NA +103,109,867,"2019",6,0,81,2,19,39,"Xinhua",NA +103,109,869,"2019",6,0,14,2,86,86,"Xinhua",NA +103,109,874,"2019",6,0,4,3,96,96,"Xinhua",NA +103,109,876,"2019",3,1,50,3,50,50,"Xinhua",NA +103,109,879,"2019",2,1,0,2,0,7,"Xinhua",NA +103,109,881,"2019",4,0,92,2,8,8,"Xinhua",NA +103,109,882,"2019",6,1,100,2,100,50,"Xinhua",NA +103,109,883,"2019",3,1,100,2,100,100,"Xinhua",NA +103,109,888,"2019",2,1,76,3,76,75,"Xinhua",NA +103,109,889,"2019",3,1,0,2,0,0,"Xinhua",NA +103,109,890,"2019",4,0,100,2,0,13,"Xinhua",NA +103,109,893,"2019",5,0,95,3,5,5,"Xinhua",NA +103,109,896,"2019",5,1,50,3,50,100,"Xinhua",NA +103,109,899,"2019",3,0,100,3,0,0,"Xinhua",NA +103,109,900,"2019",5,0,91,3,9,19,"Xinhua",NA +103,109,902,"2019",5,1,49,2,49,39,"Xinhua",NA +103,109,905,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,910,"2019",3,1,62,2,62,59,"Xinhua",NA +103,109,911,"2019",5,1,89,3,89,17,"Xinhua",NA +103,109,912,"2019",6,1,0,2,0,0,"Xinhua",NA +103,109,913,"2019",4,0,81,2,19,26,"Xinhua",NA +103,109,915,"2019",6,1,78,2,78,9,"Xinhua",NA +103,109,916,"2019",5,0,81,2,19,41,"Xinhua",NA +103,109,919,"2019",3,1,85,3,85,84,"Xinhua",NA +103,109,920,"2019",5,1,46,3,46,46,"Xinhua",NA +103,109,921,"2019",3,0,50,2,50,50,"Xinhua",NA +103,109,923,"2019",5,0,92,2,8,8,"Xinhua",NA +103,109,924,"2019",6,0,100,3,0,10,"Xinhua",NA +103,109,926,"2019",2,0,60,3,40,40,"Xinhua",NA +103,109,928,"2019",3,1,92,2,92,92,"Xinhua",NA +103,109,929,"2019",6,0,60,3,40,50,"Xinhua",NA +103,109,931,"2019",4,1,70,2,70,74,"Xinhua",NA +103,109,934,"2019",2,0,93,2,7,7,"Xinhua",NA +103,109,935,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,936,"2019",5,1,100,2,100,100,"Xinhua",NA +103,109,938,"2019",6,1,0,2,0,6,"Xinhua",NA +103,109,941,"2019",3,1,87,3,87,13,"Xinhua",NA +103,109,942,"2019",5,0,28,3,72,72,"Xinhua",NA +103,109,946,"2019",6,0,70,2,30,30,"Xinhua",NA +103,109,953,"2019",6,1,73,3,73,73,"Xinhua",NA +103,109,956,"2019",4,1,3,2,3,10,"Xinhua",NA +103,109,957,"2019",4,1,38,2,38,70,"Xinhua",NA +103,109,959,"2019",2,0,100,3,0,0,"Xinhua",NA +103,109,961,"2019",4,0,50,2,50,50,"Xinhua",NA +103,109,962,"2019",3,0,100,2,0,0,"Xinhua",NA +103,109,963,"2019",4,1,18,2,18,29,"Xinhua",NA +103,109,965,"2019",3,1,5,2,5,55,"Xinhua",NA +103,109,968,"2019",2,1,0,3,0,50,"Xinhua",NA +103,109,971,"2019",3,0,100,2,0,0,"Xinhua",NA +103,109,975,"2019",6,1,100,2,100,23,"Xinhua",NA +103,109,976,"2019",6,1,0,2,0,0,"Xinhua",NA +103,109,977,"2019",4,0,62,2,38,38,"Xinhua",NA +103,109,981,"2019",4,1,98,2,98,88,"Xinhua",NA +103,109,982,"2019",3,1,0,3,0,6,"Xinhua",NA +103,109,986,"2019",2,0,94,3,6,6,"Xinhua",NA +103,109,988,"2019",2,1,30,3,30,30,"Xinhua",NA +103,109,992,"2019",4,0,23,2,77,40,"Xinhua",NA +103,109,994,"2019",4,1,0,2,0,0,"Xinhua",NA +103,109,998,"2019",2,0,64,2,36,8,"Xinhua",NA +103,109,1001,"2019",6,1,0,3,0,8,"Xinhua",NA +103,109,1005,"2019",4,0,66,2,34,50,"Xinhua",NA +103,109,1008,"2019",6,1,65,2,65,23,"Xinhua",NA +103,109,1009,"2019",5,0,95,2,5,19,"Xinhua",NA +103,109,1011,"2019",4,1,0,2,0,0,"Xinhua",NA +103,109,1012,"2019",6,1,80,2,80,34,"Xinhua",NA +103,109,1014,"2019",5,1,99,3,99,20,"Xinhua",NA +103,109,1015,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,1017,"2019",3,1,44,2,44,38,"Xinhua",NA +103,109,1020,"2019",2,0,91,2,9,9,"Xinhua",NA +103,109,1022,"2019",6,0,40,3,60,49,"Xinhua",NA +103,109,1024,"2019",6,1,94,3,94,94,"Xinhua",NA +103,109,1027,"2019",2,1,10,3,10,0,"Xinhua",NA +103,109,1032,"2019",2,0,86,2,14,89,"Xinhua",NA +103,109,1035,"2019",4,0,100,2,0,0,"Xinhua",NA +103,109,1036,"2019",3,0,100,2,0,0,"Xinhua",NA +103,109,1039,"2019",5,1,70,3,70,10,"Xinhua",NA +103,109,1041,"2019",4,0,91,2,9,9,"Xinhua",NA +103,109,1044,"2019",6,1,17,2,17,23,"Xinhua",NA +103,109,1045,"2019",3,1,0,2,0,50,"Xinhua",NA +103,109,1046,"2019",2,0,89,3,11,39,"Xinhua",NA +103,109,1050,"2019",4,0,55,2,45,47,"Xinhua",NA +103,109,1051,"2019",5,0,96,3,4,21,"Xinhua",NA +103,109,1053,"2019",6,1,0,2,0,100,"Xinhua",NA +103,109,1054,"2019",6,1,52,2,52,51,"Xinhua",NA +103,109,1055,"2019",6,0,93,2,7,19,"Xinhua",NA +103,109,1058,"2019",6,0,100,2,0,0,"Xinhua",NA +103,109,1061,"2019",6,1,0,2,0,0,"Xinhua",NA +103,109,1062,"2019",3,1,50,2,50,2,"Xinhua",NA +103,109,1069,"2019",4,1,100,2,100,0,"Xinhua",NA +103,109,1070,"2019",4,0,41,2,59,49,"Xinhua",NA +103,109,1071,"2019",5,0,91,3,9,29,"Xinhua",NA +103,109,1072,"2019",5,0,50,3,50,50,"Xinhua",NA +103,109,1073,"2019",5,1,73,2,73,63,"Xinhua",NA +103,109,1076,"2019",5,1,51,2,51,51,"Xinhua",NA +103,109,1078,"2019",3,1,20,3,20,20,"Xinhua",NA +103,109,1081,"2019",2,0,68,2,32,43,"Xinhua",NA +103,109,1082,"2019",4,1,50,2,50,50,"Xinhua",NA +103,109,1085,"2019",6,1,100,3,100,100,"Xinhua",NA +103,109,1088,"2019",4,1,50,2,50,50,"Xinhua",NA +103,109,1090,"2019",4,0,83,2,17,17,"Xinhua",NA +103,109,1091,"2019",6,1,44,2,44,77,"Xinhua",NA +103,109,1093,"2019",6,1,50,2,50,50,"Xinhua",NA +103,109,1095,"2019",2,0,100,2,0,0,"Xinhua",NA +103,109,1098,"2019",2,0,96,3,4,12,"Xinhua",NA +103,109,1100,"2019",5,1,94,3,94,92,"Xinhua",NA +103,109,1103,"2019",6,1,90,3,90,84,"Xinhua",NA +103,109,1106,"2019",5,0,95,2,5,21,"Xinhua",NA +103,109,1107,"2019",6,0,70,3,30,25,"Xinhua",NA +103,109,1109,"2019",5,1,20,3,20,29,"Xinhua",NA +103,109,1110,"2019",6,1,79,3,79,83,"Xinhua",NA +103,109,1112,"2019",5,1,3,3,3,13,"Xinhua",NA +103,109,1116,"2019",2,1,87,3,87,87,"Xinhua",NA +103,109,1118,"2019",3,0,83,2,17,17,"Xinhua",NA +103,109,1120,"2019",6,0,79,2,21,17,"Xinhua",NA +103,109,1122,"2019",2,0,83,3,17,17,"Xinhua",NA +103,109,1123,"2019",6,1,97,2,97,89,"Xinhua",NA +103,109,1124,"2019",5,1,2,3,2,0,"Xinhua",NA +103,109,1125,"2019",6,1,57,2,57,57,"Xinhua",NA +103,109,1128,"2019",2,1,95,3,95,95,"Xinhua",NA +103,109,1129,"2019",3,0,82,3,18,16,"Xinhua",NA +103,109,1133,"2019",3,1,80,2,80,80,"Xinhua",NA +103,109,1134,"2019",3,1,66,2,66,34,"Xinhua",NA +103,109,1137,"2019",2,0,50,2,50,50,"Xinhua",NA +103,109,1138,"2019",5,0,100,2,0,50,"Xinhua",NA +103,109,1149,"2019",2,1,76,3,76,76,"Xinhua",NA +103,109,1152,"2019",6,0,51,2,49,50,"Xinhua",NA +103,109,1153,"2019",2,0,61,2,39,39,"Xinhua",NA +103,109,1154,"2019",5,1,77,2,77,77,"Xinhua",NA +103,109,1157,"2019",5,1,83,2,83,83,"Xinhua",NA +103,109,1158,"2019",2,1,79,3,79,81,"Xinhua",NA +103,109,1159,"2019",2,0,70,2,30,45,"Xinhua",NA +103,109,1161,"2019",3,1,76,2,76,83,"Xinhua",NA +103,109,1163,"2019",6,0,78,2,22,12,"Xinhua",NA +103,109,1164,"2019",4,1,81,2,81,86,"Xinhua",NA +103,109,1165,"2019",4,1,81,2,81,88,"Xinhua",NA +103,109,1166,"2019",5,0,76,3,24,18,"Xinhua",NA +103,109,1167,"2019",5,0,78,2,22,18,"Xinhua",NA +103,121,147,"2019",3,0,60,2,40,30,"BBC",NA +103,121,150,"2019",4,0,78,3,22,NA,"BBC",NA +103,121,151,"2019",5,1,50,2,50,50,"BBC",NA +103,121,152,"2019",2,0,77,3,23,23,"BBC",NA +103,121,155,"2019",5,1,39,3,39,39,"BBC",NA +103,121,160,"2019",5,0,100,2,0,0,"BBC",NA +103,121,167,"2019",2,0,96,2,4,99,"BBC",NA +103,121,168,"2019",2,1,76,2,76,5,"BBC",NA +103,121,170,"2019",2,0,100,2,0,8,"BBC",NA +103,121,171,"2019",5,1,70,2,70,47,"BBC",NA +103,121,172,"2019",6,1,0,3,0,11,"BBC",NA +103,121,178,"2019",6,1,0,2,0,0,"BBC",NA +103,121,180,"2019",4,0,71,3,29,NA,"BBC",NA +103,121,182,"2019",3,1,0,3,0,11,"BBC",NA +103,121,185,"2019",2,0,100,3,0,0,"BBC",NA +103,121,186,"2019",2,0,54,3,46,41,"BBC",NA +103,121,189,"2019",2,1,40,2,40,40,"BBC",NA +103,121,190,"2019",6,0,40,2,60,60,"BBC",NA +103,121,191,"2019",6,1,8,3,8,20,"BBC",NA +103,121,200,"2019",2,0,45,2,55,58,"BBC",NA +103,121,201,"2019",4,1,76,3,76,NA,"BBC",NA +103,121,202,"2019",3,1,85,3,85,85,"BBC",NA +103,121,204,"2019",6,0,80,3,20,34,"BBC",NA +103,121,206,"2019",3,0,50,3,50,50,"BBC",NA +103,121,209,"2019",6,1,9,2,9,44,"BBC",NA +103,121,212,"2019",5,0,81,2,19,30,"BBC",NA +103,121,215,"2019",3,0,86,2,14,17,"BBC",NA +103,121,216,"2019",4,0,100,3,0,NA,"BBC",NA +103,121,217,"2019",2,1,0,2,0,32,"BBC",NA +103,121,219,"2019",2,0,0,3,100,100,"BBC",NA +103,121,220,"2019",3,1,100,3,100,96,"BBC",NA +103,121,222,"2019",6,1,52,3,52,53,"BBC",NA +103,121,223,"2019",4,1,23,3,23,NA,"BBC",NA +103,121,227,"2019",5,0,50,2,50,50,"BBC",NA +103,121,233,"2019",5,1,100,2,100,50,"BBC",NA +103,121,238,"2019",4,0,83,3,17,NA,"BBC",NA +103,121,243,"2019",2,0,15,3,85,85,"BBC",NA +103,121,244,"2019",2,1,32,3,32,80,"BBC",NA +103,121,249,"2019",4,0,60,3,40,NA,"BBC",NA +103,121,250,"2019",2,0,50,3,50,65,"BBC",NA +103,121,251,"2019",5,0,57,3,43,45,"BBC",NA +103,121,253,"2019",5,0,74,2,26,18,"BBC",NA +103,121,255,"2019",4,0,70,3,30,NA,"BBC",NA +103,121,263,"2019",3,1,79,2,79,33,"BBC",NA +103,121,268,"2019",6,1,70,2,70,70,"BBC",NA +103,121,269,"2019",3,0,100,3,0,0,"BBC",NA +103,121,275,"2019",2,0,93,2,7,16,"BBC",NA +103,121,279,"2019",4,0,100,3,0,NA,"BBC",NA +103,121,280,"2019",5,1,77,2,77,84,"BBC",NA +103,121,281,"2019",6,1,0,3,0,29,"BBC",NA +103,121,284,"2019",2,0,77,3,23,15,"BBC",NA +103,121,289,"2019",2,0,38,3,62,45,"BBC",NA +103,121,298,"2019",3,0,70,3,30,17,"BBC",NA +103,121,299,"2019",6,1,0,3,0,0,"BBC",NA +103,121,300,"2019",5,1,7,3,7,7,"BBC",NA +103,121,301,"2019",3,0,100,2,0,0,"BBC",NA +103,121,303,"2019",6,0,75,2,25,20,"BBC",NA +103,121,304,"2019",2,1,0,3,0,0,"BBC",NA +103,121,305,"2019",4,0,50,3,50,NA,"BBC",NA +103,121,311,"2019",6,1,80,2,80,80,"BBC",NA +103,121,312,"2019",6,0,98,2,2,8,"BBC",NA +103,121,315,"2019",2,1,98,2,98,50,"BBC",NA +103,121,317,"2019",6,1,48,3,48,4,"BBC",NA +103,121,320,"2019",2,0,0,2,100,0,"BBC",NA +103,121,321,"2019",6,0,52,3,48,41,"BBC",NA +103,121,325,"2019",5,0,100,3,0,0,"BBC",NA +103,121,335,"2019",5,0,64,3,36,36,"BBC",NA +103,121,339,"2019",5,1,70,3,70,70,"BBC",NA +103,121,343,"2019",3,0,72,2,28,28,"BBC",NA +103,121,344,"2019",5,1,16,3,16,18,"BBC",NA +103,121,348,"2019",6,1,100,3,100,100,"BBC",NA +103,121,356,"2019",6,0,100,3,0,9,"BBC",NA +103,121,360,"2019",5,0,81,3,19,30,"BBC",NA +103,121,361,"2019",5,0,1,3,99,99,"BBC",NA +103,121,368,"2019",2,0,81,3,19,34,"BBC",NA +103,121,369,"2019",5,0,76,2,24,50,"BBC",NA +103,121,374,"2019",2,0,100,2,0,0,"BBC",NA +103,121,376,"2019",2,1,100,2,100,100,"BBC",NA +103,121,377,"2019",5,1,59,3,59,59,"BBC",NA +103,121,385,"2019",5,1,0,3,0,0,"BBC",NA +103,121,387,"2019",6,1,84,2,84,84,"BBC",NA +103,121,389,"2019",2,1,61,3,61,41,"BBC",NA +103,121,390,"2019",3,0,0,3,100,0,"BBC",NA +103,121,392,"2019",3,0,100,2,0,0,"BBC",NA +103,121,393,"2019",2,1,84,3,84,34,"BBC",NA +103,121,394,"2019",2,1,92,3,92,100,"BBC",NA +103,121,397,"2019",5,0,13,3,87,22,"BBC",NA +103,121,401,"2019",5,1,26,2,26,22,"BBC",NA +103,121,403,"2019",3,0,96,3,4,4,"BBC",NA +103,121,404,"2019",6,0,86,2,14,50,"BBC",NA +103,121,408,"2019",6,0,74,3,26,26,"BBC",NA +103,121,414,"2019",5,0,93,3,7,7,"BBC",NA +103,121,419,"2019",5,1,73,3,73,73,"BBC",NA +103,121,421,"2019",2,0,19,2,81,50,"BBC",NA +103,121,423,"2019",5,1,44,2,44,37,"BBC",NA +103,121,426,"2019",5,1,95,3,95,95,"BBC",NA +103,121,432,"2019",2,0,0,3,100,0,"BBC",NA +103,121,433,"2019",3,0,50,2,50,50,"BBC",NA +103,121,436,"2019",6,1,46,2,46,56,"BBC",NA +103,121,448,"2019",5,0,91,2,9,9,"BBC",NA +103,121,449,"2019",3,1,100,3,100,0,"BBC",NA +103,121,450,"2019",3,0,100,2,0,82,"BBC",NA +103,121,452,"2019",2,0,70,2,30,0,"BBC",NA +103,121,453,"2019",5,1,0,2,0,50,"BBC",NA +103,121,458,"2019",3,1,16,2,16,38,"BBC",NA +103,121,461,"2019",6,1,50,2,50,50,"BBC",NA +103,121,462,"2019",5,1,86,2,86,71,"BBC",NA +103,121,472,"2019",2,1,88,3,88,88,"BBC",NA +103,121,477,"2019",2,0,88,2,12,12,"BBC",NA +103,121,478,"2019",6,0,73,2,27,36,"BBC",NA +103,121,479,"2019",6,0,98,2,2,16,"BBC",NA +103,121,481,"2019",6,1,77,2,77,28,"BBC",NA +103,121,486,"2019",5,0,53,3,47,49,"BBC",NA +103,121,492,"2019",5,0,61,3,39,62,"BBC",NA +103,121,493,"2019",5,1,41,3,41,71,"BBC",NA +103,121,494,"2019",3,1,52,3,52,52,"BBC",NA +103,121,496,"2019",5,1,79,2,79,66,"BBC",NA +103,121,502,"2019",3,0,91,3,9,9,"BBC",NA +103,121,503,"2019",2,0,63,2,37,50,"BBC",NA +103,121,504,"2019",2,1,88,2,88,88,"BBC",NA +103,121,505,"2019",3,1,6,3,6,2,"BBC",NA +103,121,507,"2019",2,1,31,3,31,37,"BBC",NA +103,121,509,"2019",3,1,79,2,79,33,"BBC",NA +103,121,510,"2019",5,0,73,3,27,52,"BBC",NA +103,121,514,"2019",5,0,67,2,33,33,"BBC",NA +103,121,516,"2019",4,1,76,3,76,NA,"BBC",NA +103,121,521,"2019",6,0,57,2,43,20,"BBC",NA +103,121,522,"2019",2,0,50,3,50,50,"BBC",NA +103,121,523,"2019",3,0,100,3,0,90,"BBC",NA +103,121,528,"2019",4,1,79,3,79,NA,"BBC",NA +103,121,533,"2019",5,1,9,2,9,50,"BBC",NA +103,121,540,"2019",2,1,24,2,24,43,"BBC",NA +103,121,541,"2019",2,0,21,2,79,16,"BBC",NA +103,121,543,"2019",5,0,53,3,47,47,"BBC",NA +103,121,546,"2019",3,0,53,3,47,47,"BBC",NA +103,121,547,"2019",5,1,68,3,68,100,"BBC",NA +103,121,549,"2019",5,0,89,3,11,47,"BBC",NA +103,121,565,"2019",2,1,55,2,55,0,"BBC",NA +103,121,567,"2019",5,0,55,3,45,47,"BBC",NA +103,121,569,"2019",6,1,19,2,19,50,"BBC",NA +103,121,573,"2019",3,1,0,3,0,0,"BBC",NA +103,121,574,"2019",4,0,65,3,35,NA,"BBC",NA +103,121,577,"2019",5,0,0,3,100,100,"BBC",NA +103,121,578,"2019",2,1,100,3,100,90,"BBC",NA +103,121,579,"2019",5,0,36,2,64,21,"BBC",NA +103,121,580,"2019",2,0,50,2,50,19,"BBC",NA +103,121,583,"2019",2,0,40,3,60,60,"BBC",NA +103,121,584,"2019",2,1,56,2,56,50,"BBC",NA +103,121,592,"2019",6,1,56,2,56,66,"BBC",NA +103,121,594,"2019",6,0,83,2,17,17,"BBC",NA +103,121,599,"2019",2,1,35,3,35,49,"BBC",NA +103,121,604,"2019",3,0,71,2,29,57,"BBC",NA +103,121,608,"2019",6,0,33,3,67,24,"BBC",NA +103,121,610,"2019",6,0,51,2,49,58,"BBC",NA +103,121,611,"2019",2,1,6,2,6,6,"BBC",NA +103,121,615,"2019",2,1,76,3,76,76,"BBC",NA +103,121,616,"2019",5,1,36,2,36,36,"BBC",NA +103,121,618,"2019",3,0,13,2,87,87,"BBC",NA +103,121,625,"2019",6,1,72,3,72,72,"BBC",NA +103,121,626,"2019",2,0,97,3,3,13,"BBC",NA +103,121,632,"2019",3,1,78,3,78,78,"BBC",NA +103,121,635,"2019",6,1,100,2,100,100,"BBC",NA +103,121,639,"2019",6,0,55,2,45,47,"BBC",NA +103,121,643,"2019",6,1,70,2,70,15,"BBC",NA +103,121,644,"2019",5,1,50,2,50,50,"BBC",NA +103,121,645,"2019",6,1,50,3,50,50,"BBC",NA +103,121,647,"2019",3,0,75,2,25,68,"BBC",NA +103,121,649,"2019",3,1,100,3,100,100,"BBC",NA +103,121,651,"2019",6,1,65,2,65,82,"BBC",NA +103,121,652,"2019",5,0,100,2,0,0,"BBC",NA +103,121,662,"2019",3,1,0,3,0,75,"BBC",NA +103,121,664,"2019",3,1,17,3,17,20,"BBC",NA +103,121,666,"2019",5,1,100,3,100,100,"BBC",NA +103,121,675,"2019",3,0,87,3,13,50,"BBC",NA +103,121,679,"2019",3,0,99,3,1,1,"BBC",NA +103,121,682,"2019",2,1,50,3,50,50,"BBC",NA +103,121,683,"2019",5,0,78,2,22,89,"BBC",NA +103,121,687,"2019",6,0,100,3,0,0,"BBC",NA +103,121,691,"2019",5,0,87,2,13,13,"BBC",NA +103,121,692,"2019",5,0,75,2,25,25,"BBC",NA +103,121,696,"2019",3,1,100,2,100,100,"BBC",NA +103,121,697,"2019",5,0,91,2,9,9,"BBC",NA +103,121,703,"2019",2,1,0,2,0,16,"BBC",NA +103,121,707,"2019",3,1,57,3,57,82,"BBC",NA +103,121,710,"2019",6,1,4,3,4,13,"BBC",NA +103,121,712,"2019",2,1,50,2,50,50,"BBC",NA +103,121,719,"2019",3,1,0,2,0,0,"BBC",NA +103,121,720,"2019",5,0,20,2,80,80,"BBC",NA +103,121,722,"2019",2,0,25,3,75,71,"BBC",NA +103,121,724,"2019",2,1,70,3,70,88,"BBC",NA +103,121,728,"2019",3,0,100,2,0,0,"BBC",NA +103,121,733,"2019",5,0,50,2,50,50,"BBC",NA +103,121,734,"2019",3,1,50,2,50,50,"BBC",NA +103,121,738,"2019",5,1,26,3,26,80,"BBC",NA +103,121,741,"2019",5,1,71,2,71,64,"BBC",NA +103,121,744,"2019",2,0,50,3,50,50,"BBC",NA +103,121,746,"2019",6,0,82,3,18,18,"BBC",NA +103,121,748,"2019",6,0,50,2,50,50,"BBC",NA +103,121,751,"2019",3,1,50,2,50,50,"BBC",NA +103,121,753,"2019",3,1,30,2,30,50,"BBC",NA +103,121,754,"2019",5,0,53,3,47,47,"BBC",NA +103,121,758,"2019",2,0,51,3,49,80,"BBC",NA +103,121,759,"2019",3,1,100,3,100,100,"BBC",NA +103,121,760,"2019",2,0,58,3,42,42,"BBC",NA +103,121,762,"2019",2,1,54,3,54,87,"BBC",NA +103,121,776,"2019",5,1,20,2,20,20,"BBC",NA +103,121,777,"2019",5,0,70,2,30,30,"BBC",NA +103,121,778,"2019",5,0,0,3,100,100,"BBC",NA +103,121,780,"2019",5,1,31,2,31,25,"BBC",NA +103,121,790,"2019",3,1,100,3,100,100,"BBC",NA +103,121,791,"2019",5,0,28,2,72,68,"BBC",NA +103,121,795,"2019",5,1,50,3,50,50,"BBC",NA +103,121,796,"2019",5,1,87,2,87,87,"BBC",NA +103,121,799,"2019",5,0,8,2,92,76,"BBC",NA +103,121,803,"2019",3,1,100,2,100,100,"BBC",NA +103,121,805,"2019",3,0,100,3,0,0,"BBC",NA +103,121,811,"2019",3,1,100,3,100,100,"BBC",NA +103,121,812,"2019",2,0,70,2,30,30,"BBC",NA +103,121,817,"2019",6,1,59,3,59,70,"BBC",NA +103,121,818,"2019",5,0,0,3,100,70,"BBC",NA +103,121,819,"2019",3,1,100,3,100,100,"BBC",NA +103,121,820,"2019",5,0,60,3,40,42,"BBC",NA +103,121,827,"2019",6,0,1,2,99,50,"BBC",NA +103,121,834,"2019",2,0,100,3,0,0,"BBC",NA +103,121,835,"2019",6,0,76,2,24,24,"BBC",NA +103,121,836,"2019",6,1,87,2,87,87,"BBC",NA +103,121,837,"2019",5,0,86,3,14,14,"BBC",NA +103,121,841,"2019",2,0,54,3,46,63,"BBC",NA +103,121,848,"2019",6,1,18,2,18,16,"BBC",NA +103,121,862,"2019",6,1,30,2,30,40,"BBC",NA +103,121,865,"2019",3,0,100,3,0,0,"BBC",NA +103,121,866,"2019",3,0,99,3,1,0,"BBC",NA +103,121,867,"2019",6,0,71,3,29,19,"BBC",NA +103,121,868,"2019",5,1,87,3,87,87,"BBC",NA +103,121,871,"2019",2,0,90,3,10,10,"BBC",NA +103,121,872,"2019",5,0,52,3,48,48,"BBC",NA +103,121,878,"2019",3,1,3,2,3,30,"BBC",NA +103,121,883,"2019",3,1,100,3,100,100,"BBC",NA +103,121,885,"2019",2,1,50,2,50,50,"BBC",NA +103,121,887,"2019",2,1,91,3,91,50,"BBC",NA +103,121,888,"2019",2,1,75,2,75,50,"BBC",NA +103,121,891,"2019",2,1,100,2,100,100,"BBC",NA +103,121,892,"2019",2,0,50,3,50,50,"BBC",NA +103,121,894,"2019",3,0,45,2,55,55,"BBC",NA +103,121,895,"2019",6,0,62,2,38,49,"BBC",NA +103,121,897,"2019",6,0,98,2,2,7,"BBC",NA +103,121,900,"2019",5,0,81,2,19,19,"BBC",NA +103,121,903,"2019",6,0,30,2,70,59,"BBC",NA +103,121,906,"2019",5,1,74,3,74,64,"BBC",NA +103,121,907,"2019",5,1,6,3,6,61,"BBC",NA +103,121,909,"2019",3,0,83,3,17,32,"BBC",NA +103,121,912,"2019",6,1,0,3,0,0,"BBC",NA +103,121,918,"2019",4,0,100,3,0,NA,"BBC",NA +103,121,923,"2019",5,0,92,3,8,8,"BBC",NA +103,121,926,"2019",2,0,60,2,40,42,"BBC",NA +103,121,930,"2019",3,1,93,3,93,93,"BBC",NA +103,121,932,"2019",6,1,72,2,72,72,"BBC",NA +103,121,937,"2019",5,0,20,3,80,80,"BBC",NA +103,121,939,"2019",3,0,80,2,20,29,"BBC",NA +103,121,942,"2019",5,0,28,2,72,72,"BBC",NA +103,121,945,"2019",6,1,56,2,56,56,"BBC",NA +103,121,948,"2019",2,0,11,2,89,89,"BBC",NA +103,121,949,"2019",5,1,99,2,99,72,"BBC",NA +103,121,950,"2019",2,1,66,2,66,66,"BBC",NA +103,121,953,"2019",6,1,73,2,73,92,"BBC",NA +103,121,954,"2019",2,0,100,2,0,0,"BBC",NA +103,121,964,"2019",2,1,0,2,0,0,"BBC",NA +103,121,965,"2019",3,1,7,3,7,5,"BBC",NA +103,121,966,"2019",6,0,73,2,27,31,"BBC",NA +103,121,969,"2019",6,0,100,2,0,0,"BBC",NA +103,121,970,"2019",3,0,93,3,7,9,"BBC",NA +103,121,972,"2019",2,1,81,2,81,75,"BBC",NA +103,121,976,"2019",6,1,0,3,0,0,"BBC",NA +103,121,978,"2019",5,0,0,3,100,100,"BBC",NA +103,121,979,"2019",2,1,70,3,70,67,"BBC",NA +103,121,986,"2019",2,0,94,2,6,13,"BBC",NA +103,121,988,"2019",2,1,30,2,30,30,"BBC",NA +103,121,990,"2019",6,1,59,3,59,59,"BBC",NA +103,121,996,"2019",6,0,62,3,38,43,"BBC",NA +103,121,999,"2019",2,0,92,2,8,8,"BBC",NA +103,121,1002,"2019",6,0,81,3,19,8,"BBC",NA +103,121,1006,"2019",2,0,100,3,0,0,"BBC",NA +103,121,1007,"2019",5,1,92,2,92,92,"BBC",NA +103,121,1012,"2019",6,1,80,3,80,80,"BBC",NA +103,121,1013,"2019",5,1,0,3,0,100,"BBC",NA +103,121,1014,"2019",5,1,20,2,20,100,"BBC",NA +103,121,1016,"2019",3,0,50,2,50,39,"BBC",NA +103,121,1019,"2019",2,1,100,2,100,100,"BBC",NA +103,121,1024,"2019",6,1,94,2,94,92,"BBC",NA +103,121,1033,"2019",2,0,79,2,21,21,"BBC",NA +103,121,1034,"2019",5,0,62,3,38,38,"BBC",NA +103,121,1036,"2019",3,0,100,3,0,0,"BBC",NA +103,121,1038,"2019",2,1,50,2,50,50,"BBC",NA +103,121,1045,"2019",3,1,0,3,0,0,"BBC",NA +103,121,1049,"2019",3,1,100,2,100,99,"BBC",NA +103,121,1053,"2019",6,1,0,3,0,0,"BBC",NA +103,121,1063,"2019",3,0,53,3,47,48,"BBC",NA +103,121,1064,"2019",4,1,72,3,72,NA,"BBC",NA +103,121,1065,"2019",6,0,100,2,0,0,"BBC",NA +103,121,1075,"2019",5,0,100,2,0,1,"BBC",NA +103,121,1077,"2019",3,1,1,3,1,1,"BBC",NA +103,121,1079,"2019",3,1,8,2,8,8,"BBC",NA +103,121,1083,"2019",4,1,50,3,50,NA,"BBC",NA +103,121,1086,"2019",4,0,89,3,11,NA,"BBC",NA +103,121,1091,"2019",6,1,44,3,44,44,"BBC",NA +103,121,1093,"2019",6,1,65,3,65,50,"BBC",NA +103,121,1096,"2019",2,0,13,3,87,100,"BBC",NA +103,121,1098,"2019",2,0,88,2,12,20,"BBC",NA +103,121,1104,"2019",3,0,11,2,89,83,"BBC",NA +103,121,1107,"2019",6,0,75,2,25,20,"BBC",NA +103,121,1109,"2019",5,1,29,2,29,28,"BBC",NA +103,121,1110,"2019",6,1,83,2,83,87,"BBC",NA +103,121,1111,"2019",5,1,0,3,0,0,"BBC",NA +103,121,1113,"2019",6,1,87,2,87,87,"BBC",NA +103,121,1118,"2019",3,0,83,3,17,17,"BBC",NA +103,121,1119,"2019",2,1,50,2,50,50,"BBC",NA +103,121,1121,"2019",6,1,17,2,17,26,"BBC",NA +103,121,1124,"2019",5,1,0,2,0,1,"BBC",NA +103,121,1125,"2019",6,1,59,3,59,57,"BBC",NA +103,121,1127,"2019",6,1,63,2,63,50,"BBC",NA +103,121,1128,"2019",2,1,95,2,95,95,"BBC",NA +103,121,1130,"2019",5,0,100,2,0,0,"BBC",NA +103,121,1131,"2019",2,1,87,2,87,87,"BBC",NA +103,121,1132,"2019",5,0,18,2,82,82,"BBC",NA +103,121,1135,"2019",3,1,50,2,50,50,"BBC",NA +103,121,1140,"2019",6,1,85,2,85,77,"BBC",NA +103,121,1141,"2019",6,0,100,2,0,0,"BBC",NA +103,121,1143,"2019",3,0,18,2,82,82,"BBC",NA +103,121,1145,"2019",5,0,92,3,8,15,"BBC",NA +103,121,1146,"2019",6,1,3,2,3,3,"BBC",NA +103,121,1149,"2019",2,1,76,2,76,81,"BBC",NA +103,121,1151,"2019",3,0,50,3,50,1,"BBC",NA +103,121,1152,"2019",6,0,49,3,51,49,"BBC",NA +103,121,1153,"2019",2,0,61,3,39,39,"BBC",NA +103,121,1156,"2019",2,0,100,3,0,0,"BBC",NA +103,121,1166,"2019",5,0,82,2,18,14,"BBC",NA +103,127,147,"2019",3,0,30,3,70,40,"Nanfang Dushibao",NA +103,127,148,"2019",2,0,79,3,21,12,"Nanfang Dushibao",NA +103,127,149,"2019",3,1,23,3,23,44,"Nanfang Dushibao",NA +103,127,153,"2019",2,0,85,3,15,15,"Nanfang Dushibao",NA +103,127,159,"2019",6,0,77,2,23,23,"Nanfang Dushibao",NA +103,127,161,"2019",4,0,85,4,15,NA,"Nanfang Dushibao",NA +103,127,162,"2019",4,0,49,4,51,NA,"Nanfang Dushibao",NA +103,127,163,"2019",6,0,29,3,71,9,"Nanfang Dushibao",NA +103,127,169,"2019",5,0,50,3,50,50,"Nanfang Dushibao",NA +103,127,170,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +103,127,172,"2019",6,1,11,2,11,11,"Nanfang Dushibao",NA +103,127,174,"2019",3,1,73,2,73,100,"Nanfang Dushibao",NA +103,127,178,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,182,"2019",3,1,11,2,11,22,"Nanfang Dushibao",NA +103,127,186,"2019",2,0,59,2,41,21,"Nanfang Dushibao",NA +103,127,187,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +103,127,188,"2019",5,0,50,3,50,30,"Nanfang Dushibao",NA +103,127,189,"2019",2,1,62,3,62,40,"Nanfang Dushibao",NA +103,127,191,"2019",6,1,20,2,20,10,"Nanfang Dushibao",NA +103,127,192,"2019",4,0,11,4,89,NA,"Nanfang Dushibao",NA +103,127,195,"2019",2,1,0,2,0,100,"Nanfang Dushibao",NA +103,127,198,"2019",6,1,45,2,45,50,"Nanfang Dushibao",NA +103,127,203,"2019",6,0,49,2,51,15,"Nanfang Dushibao",NA +103,127,205,"2019",6,1,0,2,0,0,"Nanfang Dushibao",NA +103,127,208,"2019",4,1,76,4,76,NA,"Nanfang Dushibao",NA +103,127,211,"2019",2,0,1,2,99,99,"Nanfang Dushibao",NA +103,127,214,"2019",2,0,10,3,90,12,"Nanfang Dushibao",NA +103,127,217,"2019",2,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,218,"2019",2,1,52,3,52,0,"Nanfang Dushibao",NA +103,127,219,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +103,127,221,"2019",2,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,222,"2019",6,1,53,2,53,51,"Nanfang Dushibao",NA +103,127,225,"2019",2,1,11,2,11,15,"Nanfang Dushibao",NA +103,127,226,"2019",3,0,84,2,16,16,"Nanfang Dushibao",NA +103,127,228,"2019",5,1,80,2,80,80,"Nanfang Dushibao",NA +103,127,233,"2019",5,1,0,3,0,100,"Nanfang Dushibao",NA +103,127,236,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +103,127,243,"2019",2,0,15,2,85,85,"Nanfang Dushibao",NA +103,127,244,"2019",2,1,80,2,80,80,"Nanfang Dushibao",NA +103,127,250,"2019",2,0,35,2,65,65,"Nanfang Dushibao",NA +103,127,256,"2019",5,0,93,3,7,7,"Nanfang Dushibao",NA +103,127,259,"2019",3,1,0,2,0,0,"Nanfang Dushibao",NA +103,127,260,"2019",2,0,91,2,9,9,"Nanfang Dushibao",NA +103,127,263,"2019",3,1,79,3,79,79,"Nanfang Dushibao",NA +103,127,264,"2019",2,1,51,3,51,100,"Nanfang Dushibao",NA +103,127,266,"2019",3,0,39,3,61,61,"Nanfang Dushibao",NA +103,127,270,"2019",5,0,25,3,75,100,"Nanfang Dushibao",NA +103,127,275,"2019",2,0,19,3,81,7,"Nanfang Dushibao",NA +103,127,282,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,283,"2019",3,0,91,3,9,19,"Nanfang Dushibao",NA +103,127,290,"2019",6,1,64,2,64,50,"Nanfang Dushibao",NA +103,127,291,"2019",6,1,48,2,48,92,"Nanfang Dushibao",NA +103,127,292,"2019",3,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,294,"2019",3,1,61,3,61,70,"Nanfang Dushibao",NA +103,127,295,"2019",4,0,90,4,10,NA,"Nanfang Dushibao",NA +103,127,299,"2019",6,1,0,2,0,0,"Nanfang Dushibao",NA +103,127,301,"2019",3,0,50,3,50,0,"Nanfang Dushibao",NA +103,127,303,"2019",6,0,77,3,23,25,"Nanfang Dushibao",NA +103,127,304,"2019",2,1,0,2,0,100,"Nanfang Dushibao",NA +103,127,311,"2019",6,1,48,3,48,80,"Nanfang Dushibao",NA +103,127,315,"2019",2,1,2,3,2,98,"Nanfang Dushibao",NA +103,127,316,"2019",3,0,81,2,19,19,"Nanfang Dushibao",NA +103,127,322,"2019",3,0,0,3,100,0,"Nanfang Dushibao",NA +103,127,323,"2019",2,0,55,2,45,32,"Nanfang Dushibao",NA +103,127,324,"2019",5,0,23,2,77,8,"Nanfang Dushibao",NA +103,127,326,"2019",5,1,0,2,0,0,"Nanfang Dushibao",NA +103,127,327,"2019",6,1,17,2,17,50,"Nanfang Dushibao",NA +103,127,329,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +103,127,336,"2019",3,1,76,3,76,50,"Nanfang Dushibao",NA +103,127,339,"2019",5,1,70,2,70,70,"Nanfang Dushibao",NA +103,127,343,"2019",3,0,72,3,28,28,"Nanfang Dushibao",NA +103,127,346,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +103,127,363,"2019",6,0,73,2,27,41,"Nanfang Dushibao",NA +103,127,365,"2019",6,1,84,2,84,84,"Nanfang Dushibao",NA +103,127,366,"2019",2,1,9,2,9,11,"Nanfang Dushibao",NA +103,127,370,"2019",5,1,50,2,50,50,"Nanfang Dushibao",NA +103,127,372,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,373,"2019",4,0,0,4,100,NA,"Nanfang Dushibao",NA +103,127,375,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +103,127,380,"2019",6,1,67,3,67,68,"Nanfang Dushibao",NA +103,127,381,"2019",3,0,73,2,27,28,"Nanfang Dushibao",NA +103,127,389,"2019",2,1,41,2,41,51,"Nanfang Dushibao",NA +103,127,393,"2019",2,1,34,2,34,50,"Nanfang Dushibao",NA +103,127,397,"2019",5,0,78,2,22,50,"Nanfang Dushibao",NA +103,127,400,"2019",5,0,32,2,68,68,"Nanfang Dushibao",NA +103,127,403,"2019",3,0,96,2,4,4,"Nanfang Dushibao",NA +103,127,404,"2019",6,0,86,3,14,14,"Nanfang Dushibao",NA +103,127,411,"2019",3,1,50,3,50,28,"Nanfang Dushibao",NA +103,127,412,"2019",2,1,8,2,8,33,"Nanfang Dushibao",NA +103,127,413,"2019",4,1,80,4,80,NA,"Nanfang Dushibao",NA +103,127,418,"2019",4,1,75,4,75,NA,"Nanfang Dushibao",NA +103,127,419,"2019",5,1,73,2,73,73,"Nanfang Dushibao",NA +103,127,423,"2019",5,1,40,3,40,44,"Nanfang Dushibao",NA +103,127,426,"2019",5,1,95,2,95,7,"Nanfang Dushibao",NA +103,127,428,"2019",2,1,19,2,19,77,"Nanfang Dushibao",NA +103,127,431,"2019",5,0,45,3,55,47,"Nanfang Dushibao",NA +103,127,435,"2019",2,1,3,3,3,20,"Nanfang Dushibao",NA +103,127,439,"2019",5,0,0,2,100,50,"Nanfang Dushibao",NA +103,127,442,"2019",5,1,53,2,53,63,"Nanfang Dushibao",NA +103,127,444,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +103,127,446,"2019",6,0,53,2,47,74,"Nanfang Dushibao",NA +103,127,447,"2019",3,0,52,3,48,48,"Nanfang Dushibao",NA +103,127,451,"2019",3,1,35,2,35,35,"Nanfang Dushibao",NA +103,127,453,"2019",5,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,456,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,457,"2019",4,0,51,4,49,NA,"Nanfang Dushibao",NA +103,127,459,"2019",3,0,71,3,29,29,"Nanfang Dushibao",NA +103,127,462,"2019",5,1,86,3,86,86,"Nanfang Dushibao",NA +103,127,463,"2019",6,0,12,2,88,88,"Nanfang Dushibao",NA +103,127,464,"2019",3,1,23,3,23,23,"Nanfang Dushibao",NA +103,127,467,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +103,127,468,"2019",2,0,7,3,93,93,"Nanfang Dushibao",NA +103,127,470,"2019",6,0,50,2,50,0,"Nanfang Dushibao",NA +103,127,471,"2019",2,1,90,3,90,90,"Nanfang Dushibao",NA +103,127,473,"2019",5,1,0,2,0,1,"Nanfang Dushibao",NA +103,127,475,"2019",6,1,62,2,62,68,"Nanfang Dushibao",NA +103,127,478,"2019",6,0,73,3,27,27,"Nanfang Dushibao",NA +103,127,481,"2019",6,1,77,3,77,77,"Nanfang Dushibao",NA +103,127,482,"2019",5,1,99,2,99,100,"Nanfang Dushibao",NA +103,127,483,"2019",4,1,41,4,41,NA,"Nanfang Dushibao",NA +103,127,484,"2019",3,0,64,2,36,36,"Nanfang Dushibao",NA +103,127,488,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,491,"2019",6,0,18,3,82,60,"Nanfang Dushibao",NA +103,127,492,"2019",5,0,38,2,62,62,"Nanfang Dushibao",NA +103,127,495,"2019",5,0,73,2,27,27,"Nanfang Dushibao",NA +103,127,496,"2019",5,1,55,3,55,79,"Nanfang Dushibao",NA +103,127,502,"2019",3,0,91,2,9,9,"Nanfang Dushibao",NA +103,127,503,"2019",2,0,59,3,41,37,"Nanfang Dushibao",NA +103,127,504,"2019",2,1,88,3,88,88,"Nanfang Dushibao",NA +103,127,506,"2019",2,0,100,2,0,0,"Nanfang Dushibao",NA +103,127,512,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +103,127,513,"2019",5,1,74,3,74,74,"Nanfang Dushibao",NA +103,127,518,"2019",6,1,59,3,59,59,"Nanfang Dushibao",NA +103,127,519,"2019",2,1,7,2,7,7,"Nanfang Dushibao",NA +103,127,521,"2019",6,0,86,3,14,43,"Nanfang Dushibao",NA +103,127,526,"2019",6,1,8,3,8,8,"Nanfang Dushibao",NA +103,127,530,"2019",6,1,12,2,12,12,"Nanfang Dushibao",NA +103,127,532,"2019",3,0,90,2,10,10,"Nanfang Dushibao",NA +103,127,534,"2019",3,1,80,3,80,80,"Nanfang Dushibao",NA +103,127,538,"2019",4,1,66,4,66,NA,"Nanfang Dushibao",NA +103,127,539,"2019",3,1,14,3,14,26,"Nanfang Dushibao",NA +103,127,543,"2019",5,0,53,2,47,52,"Nanfang Dushibao",NA +103,127,545,"2019",4,1,54,4,54,NA,"Nanfang Dushibao",NA +103,127,548,"2019",2,0,49,3,51,53,"Nanfang Dushibao",NA +103,127,550,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +103,127,554,"2019",5,1,49,2,49,43,"Nanfang Dushibao",NA +103,127,555,"2019",6,1,72,3,72,79,"Nanfang Dushibao",NA +103,127,556,"2019",6,0,30,3,70,30,"Nanfang Dushibao",NA +103,127,560,"2019",2,0,29,3,71,71,"Nanfang Dushibao",NA +103,127,562,"2019",4,0,23,4,77,NA,"Nanfang Dushibao",NA +103,127,563,"2019",3,1,23,2,23,23,"Nanfang Dushibao",NA +103,127,567,"2019",5,0,53,2,47,0,"Nanfang Dushibao",NA +103,127,571,"2019",5,1,60,2,60,61,"Nanfang Dushibao",NA +103,127,573,"2019",3,1,0,2,0,0,"Nanfang Dushibao",NA +103,127,577,"2019",5,0,0,2,100,50,"Nanfang Dushibao",NA +103,127,580,"2019",2,0,50,3,50,50,"Nanfang Dushibao",NA +103,127,581,"2019",6,0,31,2,69,79,"Nanfang Dushibao",NA +103,127,582,"2019",2,1,41,2,41,41,"Nanfang Dushibao",NA +103,127,589,"2019",2,0,24,2,76,70,"Nanfang Dushibao",NA +103,127,595,"2019",6,1,51,3,51,100,"Nanfang Dushibao",NA +103,127,596,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +103,127,599,"2019",2,1,49,2,49,81,"Nanfang Dushibao",NA +103,127,602,"2019",3,0,39,3,61,61,"Nanfang Dushibao",NA +103,127,607,"2019",4,0,93,4,7,NA,"Nanfang Dushibao",NA +103,127,609,"2019",5,1,59,3,59,66,"Nanfang Dushibao",NA +103,127,612,"2019",5,0,36,2,64,50,"Nanfang Dushibao",NA +103,127,613,"2019",2,0,36,3,64,64,"Nanfang Dushibao",NA +103,127,614,"2019",5,1,20,2,20,31,"Nanfang Dushibao",NA +103,127,615,"2019",2,1,76,2,76,76,"Nanfang Dushibao",NA +103,127,617,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,618,"2019",3,0,26,3,74,87,"Nanfang Dushibao",NA +103,127,620,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +103,127,624,"2019",3,1,61,3,61,70,"Nanfang Dushibao",NA +103,127,626,"2019",2,0,87,2,13,24,"Nanfang Dushibao",NA +103,127,627,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,629,"2019",4,0,99,4,1,NA,"Nanfang Dushibao",NA +103,127,634,"2019",2,1,0,3,0,75,"Nanfang Dushibao",NA +103,127,636,"2019",6,1,40,2,40,50,"Nanfang Dushibao",NA +103,127,637,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,641,"2019",4,0,83,4,17,NA,"Nanfang Dushibao",NA +103,127,643,"2019",6,1,70,3,70,70,"Nanfang Dushibao",NA +103,127,644,"2019",5,1,50,3,50,50,"Nanfang Dushibao",NA +103,127,646,"2019",3,0,74,3,26,67,"Nanfang Dushibao",NA +103,127,648,"2019",2,0,53,3,47,47,"Nanfang Dushibao",NA +103,127,650,"2019",5,1,83,3,83,83,"Nanfang Dushibao",NA +103,127,655,"2019",3,0,0,2,100,0,"Nanfang Dushibao",NA +103,127,657,"2019",2,0,90,3,10,10,"Nanfang Dushibao",NA +103,127,658,"2019",4,0,68,4,32,NA,"Nanfang Dushibao",NA +103,127,662,"2019",3,1,75,2,75,11,"Nanfang Dushibao",NA +103,127,663,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +103,127,664,"2019",3,1,20,2,20,20,"Nanfang Dushibao",NA +103,127,668,"2019",2,1,0,3,0,2,"Nanfang Dushibao",NA +103,127,672,"2019",2,1,51,3,51,100,"Nanfang Dushibao",NA +103,127,673,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,675,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,678,"2019",2,0,77,3,23,23,"Nanfang Dushibao",NA +103,127,680,"2019",5,1,66,3,66,57,"Nanfang Dushibao",NA +103,127,681,"2019",2,0,73,2,27,27,"Nanfang Dushibao",NA +103,127,687,"2019",6,0,100,2,0,0,"Nanfang Dushibao",NA +103,127,689,"2019",6,1,51,2,51,100,"Nanfang Dushibao",NA +103,127,693,"2019",5,1,50,3,50,50,"Nanfang Dushibao",NA +103,127,697,"2019",5,0,49,3,51,9,"Nanfang Dushibao",NA +103,127,699,"2019",6,1,100,2,100,87,"Nanfang Dushibao",NA +103,127,700,"2019",5,0,0,2,100,0,"Nanfang Dushibao",NA +103,127,706,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +103,127,708,"2019",6,0,84,2,16,35,"Nanfang Dushibao",NA +103,127,711,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +103,127,714,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +103,127,715,"2019",4,0,85,4,15,NA,"Nanfang Dushibao",NA +103,127,724,"2019",2,1,88,2,88,88,"Nanfang Dushibao",NA +103,127,725,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +103,127,726,"2019",3,0,85,3,15,0,"Nanfang Dushibao",NA +103,127,727,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +103,127,732,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +103,127,735,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +103,127,736,"2019",6,1,96,2,96,96,"Nanfang Dushibao",NA +103,127,737,"2019",2,0,15,2,85,62,"Nanfang Dushibao",NA +103,127,739,"2019",3,1,19,3,19,97,"Nanfang Dushibao",NA +103,127,742,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +103,127,744,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,751,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +103,127,752,"2019",5,0,47,3,53,36,"Nanfang Dushibao",NA +103,127,755,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +103,127,757,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +103,127,764,"2019",4,0,6,4,94,NA,"Nanfang Dushibao",NA +103,127,765,"2019",5,0,88,3,12,29,"Nanfang Dushibao",NA +103,127,766,"2019",6,1,50,3,50,50,"Nanfang Dushibao",NA +103,127,767,"2019",3,0,0,2,100,50,"Nanfang Dushibao",NA +103,127,768,"2019",3,1,60,2,60,70,"Nanfang Dushibao",NA +103,127,774,"2019",6,0,92,2,8,53,"Nanfang Dushibao",NA +103,127,775,"2019",2,1,61,3,61,61,"Nanfang Dushibao",NA +103,127,776,"2019",5,1,20,3,20,20,"Nanfang Dushibao",NA +103,127,778,"2019",5,0,0,2,100,50,"Nanfang Dushibao",NA +103,127,781,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,783,"2019",2,1,38,3,38,71,"Nanfang Dushibao",NA +103,127,784,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +103,127,785,"2019",2,0,91,2,9,9,"Nanfang Dushibao",NA +103,127,786,"2019",3,0,51,2,49,0,"Nanfang Dushibao",NA +103,127,789,"2019",5,0,25,2,75,50,"Nanfang Dushibao",NA +103,127,797,"2019",6,0,90,2,10,20,"Nanfang Dushibao",NA +103,127,798,"2019",5,0,50,3,50,50,"Nanfang Dushibao",NA +103,127,801,"2019",4,1,0,4,0,NA,"Nanfang Dushibao",NA +103,127,802,"2019",2,1,97,3,97,97,"Nanfang Dushibao",NA +103,127,803,"2019",3,1,50,3,50,100,"Nanfang Dushibao",NA +103,127,806,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +103,127,811,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +103,127,812,"2019",2,0,70,3,30,30,"Nanfang Dushibao",NA +103,127,814,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +103,127,815,"2019",6,0,100,2,0,0,"Nanfang Dushibao",NA +103,127,816,"2019",3,0,51,3,49,100,"Nanfang Dushibao",NA +103,127,817,"2019",6,1,70,2,70,59,"Nanfang Dushibao",NA +103,127,818,"2019",5,0,30,2,70,50,"Nanfang Dushibao",NA +103,127,820,"2019",5,0,58,2,42,50,"Nanfang Dushibao",NA +103,127,821,"2019",6,0,52,3,48,47,"Nanfang Dushibao",NA +103,127,823,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +103,127,825,"2019",5,1,0,2,0,0,"Nanfang Dushibao",NA +103,127,829,"2019",5,0,60,2,40,49,"Nanfang Dushibao",NA +103,127,831,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +103,127,838,"2019",4,0,20,4,80,NA,"Nanfang Dushibao",NA +103,127,839,"2019",4,0,78,4,22,NA,"Nanfang Dushibao",NA +103,127,840,"2019",3,1,21,2,21,19,"Nanfang Dushibao",NA +103,127,841,"2019",2,0,37,2,63,31,"Nanfang Dushibao",NA +103,127,842,"2019",5,0,61,3,39,0,"Nanfang Dushibao",NA +103,127,844,"2019",6,1,0,3,0,9,"Nanfang Dushibao",NA +103,127,849,"2019",3,0,100,2,0,0,"Nanfang Dushibao",NA +103,127,850,"2019",5,1,6,2,6,50,"Nanfang Dushibao",NA +103,127,852,"2019",5,0,81,3,19,21,"Nanfang Dushibao",NA +103,127,853,"2019",5,1,69,3,69,52,"Nanfang Dushibao",NA +103,127,855,"2019",5,0,82,3,18,18,"Nanfang Dushibao",NA +103,127,856,"2019",6,1,79,3,79,79,"Nanfang Dushibao",NA +103,127,859,"2019",3,1,29,3,29,93,"Nanfang Dushibao",NA +103,127,860,"2019",6,1,61,2,61,66,"Nanfang Dushibao",NA +103,127,869,"2019",6,0,14,3,86,86,"Nanfang Dushibao",NA +103,127,870,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +103,127,872,"2019",5,0,52,2,48,48,"Nanfang Dushibao",NA +103,127,873,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,874,"2019",6,0,4,2,96,22,"Nanfang Dushibao",NA +103,127,875,"2019",4,1,55,4,55,NA,"Nanfang Dushibao",NA +103,127,876,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +103,127,877,"2019",6,1,83,2,83,83,"Nanfang Dushibao",NA +103,127,878,"2019",3,1,3,3,3,3,"Nanfang Dushibao",NA +103,127,882,"2019",6,1,0,3,0,100,"Nanfang Dushibao",NA +103,127,885,"2019",2,1,50,3,50,50,"Nanfang Dushibao",NA +103,127,886,"2019",4,0,13,4,87,NA,"Nanfang Dushibao",NA +103,127,887,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +103,127,896,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +103,127,899,"2019",3,0,100,2,0,0,"Nanfang Dushibao",NA +103,127,901,"2019",6,0,72,2,28,28,"Nanfang Dushibao",NA +103,127,903,"2019",6,0,39,3,61,70,"Nanfang Dushibao",NA +103,127,907,"2019",5,1,61,2,61,61,"Nanfang Dushibao",NA +103,127,908,"2019",2,1,0,3,0,5,"Nanfang Dushibao",NA +103,127,910,"2019",3,1,64,3,64,62,"Nanfang Dushibao",NA +103,127,915,"2019",6,1,50,3,50,78,"Nanfang Dushibao",NA +103,127,920,"2019",5,1,46,2,46,35,"Nanfang Dushibao",NA +103,127,922,"2019",6,0,95,3,5,7,"Nanfang Dushibao",NA +103,127,925,"2019",6,0,50,3,50,0,"Nanfang Dushibao",NA +103,127,927,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +103,127,929,"2019",6,0,50,2,50,33,"Nanfang Dushibao",NA +103,127,930,"2019",3,1,93,2,93,93,"Nanfang Dushibao",NA +103,127,932,"2019",6,1,72,3,72,72,"Nanfang Dushibao",NA +103,127,936,"2019",5,1,90,3,90,100,"Nanfang Dushibao",NA +103,127,940,"2019",2,1,46,3,46,44,"Nanfang Dushibao",NA +103,127,941,"2019",3,1,13,2,13,29,"Nanfang Dushibao",NA +103,127,943,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +103,127,944,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,950,"2019",2,1,77,3,77,66,"Nanfang Dushibao",NA +103,127,955,"2019",2,1,47,3,47,3,"Nanfang Dushibao",NA +103,127,958,"2019",2,0,82,3,18,25,"Nanfang Dushibao",NA +103,127,959,"2019",2,0,100,2,0,0,"Nanfang Dushibao",NA +103,127,966,"2019",6,0,50,3,50,27,"Nanfang Dushibao",NA +103,127,972,"2019",2,1,90,3,90,81,"Nanfang Dushibao",NA +103,127,973,"2019",4,1,26,4,26,NA,"Nanfang Dushibao",NA +103,127,974,"2019",3,0,90,2,10,10,"Nanfang Dushibao",NA +103,127,975,"2019",6,1,0,3,0,100,"Nanfang Dushibao",NA +103,127,978,"2019",5,0,0,2,100,100,"Nanfang Dushibao",NA +103,127,979,"2019",2,1,67,2,67,41,"Nanfang Dushibao",NA +103,127,989,"2019",2,0,52,2,48,49,"Nanfang Dushibao",NA +103,127,995,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +103,127,996,"2019",6,0,57,2,43,43,"Nanfang Dushibao",NA +103,127,1003,"2019",6,1,80,2,80,94,"Nanfang Dushibao",NA +103,127,1007,"2019",5,1,92,3,92,92,"Nanfang Dushibao",NA +103,127,1018,"2019",4,0,14,4,86,NA,"Nanfang Dushibao",NA +103,127,1019,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +103,127,1029,"2019",2,1,0,3,0,1,"Nanfang Dushibao",NA +103,127,1030,"2019",3,1,52,2,52,24,"Nanfang Dushibao",NA +103,127,1032,"2019",2,0,80,3,20,14,"Nanfang Dushibao",NA +103,127,1033,"2019",2,0,9,3,91,21,"Nanfang Dushibao",NA +103,127,1034,"2019",5,0,62,2,38,50,"Nanfang Dushibao",NA +103,127,1039,"2019",5,1,10,2,10,72,"Nanfang Dushibao",NA +103,127,1043,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +103,127,1044,"2019",6,1,82,3,82,17,"Nanfang Dushibao",NA +103,127,1046,"2019",2,0,61,2,39,39,"Nanfang Dushibao",NA +103,127,1052,"2019",5,1,32,2,32,42,"Nanfang Dushibao",NA +103,127,1056,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +103,127,1061,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +103,127,1062,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +103,127,1065,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +103,127,1068,"2019",3,0,74,2,26,0,"Nanfang Dushibao",NA +103,127,1071,"2019",5,0,71,2,29,70,"Nanfang Dushibao",NA +103,127,1072,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +103,127,1075,"2019",5,0,49,3,51,0,"Nanfang Dushibao",NA +103,127,1078,"2019",3,1,20,2,20,20,"Nanfang Dushibao",NA +103,127,1079,"2019",3,1,0,3,0,8,"Nanfang Dushibao",NA +103,127,1080,"2019",2,0,72,3,28,28,"Nanfang Dushibao",NA +103,127,1084,"2019",5,1,76,2,76,63,"Nanfang Dushibao",NA +103,127,1085,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +103,127,1089,"2019",5,1,60,2,60,30,"Nanfang Dushibao",NA +103,127,1092,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +103,127,1094,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +103,127,1096,"2019",2,0,0,2,100,6,"Nanfang Dushibao",NA +103,127,1100,"2019",5,1,92,2,92,84,"Nanfang Dushibao",NA +103,127,1101,"2019",5,0,44,2,56,54,"Nanfang Dushibao",NA +103,127,1103,"2019",6,1,84,2,84,77,"Nanfang Dushibao",NA +103,127,1108,"2019",5,1,79,3,79,82,"Nanfang Dushibao",NA +103,127,1111,"2019",5,1,0,2,0,50,"Nanfang Dushibao",NA +103,127,1112,"2019",5,1,13,2,13,13,"Nanfang Dushibao",NA +103,127,1119,"2019",2,1,27,3,27,50,"Nanfang Dushibao",NA +103,127,1121,"2019",6,1,11,3,11,17,"Nanfang Dushibao",NA +103,127,1122,"2019",2,0,83,2,17,24,"Nanfang Dushibao",NA +103,127,1127,"2019",6,1,72,3,72,63,"Nanfang Dushibao",NA +103,127,1131,"2019",2,1,87,3,87,87,"Nanfang Dushibao",NA +103,127,1132,"2019",5,0,10,3,90,82,"Nanfang Dushibao",NA +103,127,1136,"2019",5,1,90,2,90,77,"Nanfang Dushibao",NA +103,127,1139,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +103,127,1140,"2019",6,1,95,3,95,85,"Nanfang Dushibao",NA +103,127,1142,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +103,127,1144,"2019",4,1,87,4,87,NA,"Nanfang Dushibao",NA +103,127,1145,"2019",5,0,85,2,15,24,"Nanfang Dushibao",NA +103,127,1146,"2019",6,1,3,3,3,3,"Nanfang Dushibao",NA +103,127,1151,"2019",3,0,99,2,1,100,"Nanfang Dushibao",NA +103,127,1154,"2019",5,1,77,3,77,77,"Nanfang Dushibao",NA +103,127,1157,"2019",5,1,83,3,83,83,"Nanfang Dushibao",NA +103,127,1158,"2019",2,1,81,2,81,86,"Nanfang Dushibao",NA +103,127,1160,"2019",2,1,80,2,80,87,"Nanfang Dushibao",NA +103,127,1161,"2019",3,1,73,3,73,76,"Nanfang Dushibao",NA +103,127,1163,"2019",6,0,72,3,28,22,"Nanfang Dushibao",NA +103,127,1167,"2019",5,0,74,3,26,22,"Nanfang Dushibao",NA +103,127,1168,"2019",4,1,80,4,80,NA,"Nanfang Dushibao",NA +103,139,149,"2019",3,1,44,2,44,73,"Huanqiu",NA +103,139,152,"2019",2,0,77,2,23,0,"Huanqiu",NA +103,139,153,"2019",2,0,85,2,15,85,"Huanqiu",NA +103,139,158,"2019",6,0,9,2,91,70,"Huanqiu",NA +103,139,160,"2019",5,0,100,3,0,0,"Huanqiu",NA +103,139,168,"2019",2,1,89,3,89,76,"Huanqiu",NA +103,139,169,"2019",5,0,50,2,50,50,"Huanqiu",NA +103,139,175,"2019",5,1,26,2,26,40,"Huanqiu",NA +103,139,176,"2019",6,0,6,2,94,90,"Huanqiu",NA +103,139,177,"2019",5,1,3,3,3,7,"Huanqiu",NA +103,139,181,"2019",5,1,7,3,7,12,"Huanqiu",NA +103,139,183,"2019",5,0,68,3,32,36,"Huanqiu",NA +103,139,190,"2019",6,0,71,3,29,60,"Huanqiu",NA +103,139,195,"2019",2,1,100,3,100,0,"Huanqiu",NA +103,139,205,"2019",6,1,0,3,0,0,"Huanqiu",NA +103,139,209,"2019",6,1,9,3,9,9,"Huanqiu",NA +103,139,211,"2019",2,0,1,3,99,99,"Huanqiu",NA +103,139,212,"2019",5,0,83,3,17,19,"Huanqiu",NA +103,139,213,"2019",4,1,92,5,92,NA,"Huanqiu",NA +103,139,215,"2019",3,0,92,3,8,14,"Huanqiu",NA +103,139,218,"2019",2,1,0,2,0,0,"Huanqiu",NA +103,139,221,"2019",2,1,0,2,0,0,"Huanqiu",NA +103,139,224,"2019",2,1,84,2,84,84,"Huanqiu",NA +103,139,225,"2019",2,1,89,3,89,11,"Huanqiu",NA +103,139,226,"2019",3,0,84,3,16,16,"Huanqiu",NA +103,139,227,"2019",5,0,72,3,28,50,"Huanqiu",NA +103,139,230,"2019",2,1,16,2,16,81,"Huanqiu",NA +103,139,237,"2019",4,1,0,5,0,NA,"Huanqiu",NA +103,139,241,"2019",5,1,76,3,76,68,"Huanqiu",NA +103,139,246,"2019",5,1,1,3,1,9,"Huanqiu",NA +103,139,251,"2019",5,0,55,2,45,47,"Huanqiu",NA +103,139,252,"2019",2,1,94,3,94,94,"Huanqiu",NA +103,139,254,"2019",4,0,8,5,92,NA,"Huanqiu",NA +103,139,258,"2019",3,0,71,3,29,36,"Huanqiu",NA +103,139,259,"2019",3,1,0,3,0,0,"Huanqiu",NA +103,139,260,"2019",2,0,91,3,9,9,"Huanqiu",NA +103,139,262,"2019",6,0,60,2,40,50,"Huanqiu",NA +103,139,266,"2019",3,0,39,2,61,61,"Huanqiu",NA +103,139,268,"2019",6,1,36,3,36,70,"Huanqiu",NA +103,139,278,"2019",4,0,90,5,10,NA,"Huanqiu",NA +103,139,282,"2019",2,0,41,3,59,50,"Huanqiu",NA +103,139,289,"2019",2,0,55,2,45,45,"Huanqiu",NA +103,139,290,"2019",6,1,70,3,70,64,"Huanqiu",NA +103,139,296,"2019",6,1,0,2,0,0,"Huanqiu",NA +103,139,298,"2019",3,0,83,2,17,50,"Huanqiu",NA +103,139,300,"2019",5,1,7,2,7,30,"Huanqiu",NA +103,139,302,"2019",6,0,75,3,25,25,"Huanqiu",NA +103,139,307,"2019",3,1,69,3,69,17,"Huanqiu",NA +103,139,312,"2019",6,0,98,3,2,2,"Huanqiu",NA +103,139,314,"2019",5,0,90,2,10,10,"Huanqiu",NA +103,139,317,"2019",6,1,4,2,4,100,"Huanqiu",NA +103,139,321,"2019",6,0,59,2,41,69,"Huanqiu",NA +103,139,324,"2019",5,0,69,3,31,77,"Huanqiu",NA +103,139,326,"2019",5,1,0,3,0,0,"Huanqiu",NA +103,139,327,"2019",6,1,33,3,33,17,"Huanqiu",NA +103,139,335,"2019",5,0,64,2,36,36,"Huanqiu",NA +103,139,336,"2019",3,1,50,2,50,0,"Huanqiu",NA +103,139,344,"2019",5,1,18,2,18,77,"Huanqiu",NA +103,139,346,"2019",3,0,0,2,100,100,"Huanqiu",NA +103,139,347,"2019",6,1,7,2,7,55,"Huanqiu",NA +103,139,350,"2019",4,1,85,5,85,NA,"Huanqiu",NA +103,139,351,"2019",6,0,100,3,0,0,"Huanqiu",NA +103,139,353,"2019",5,1,100,3,100,100,"Huanqiu",NA +103,139,361,"2019",5,0,1,2,99,99,"Huanqiu",NA +103,139,364,"2019",6,1,100,2,100,100,"Huanqiu",NA +103,139,366,"2019",2,1,4,3,4,9,"Huanqiu",NA +103,139,368,"2019",2,0,66,2,34,34,"Huanqiu",NA +103,139,369,"2019",5,0,76,3,24,24,"Huanqiu",NA +103,139,370,"2019",5,1,74,3,74,50,"Huanqiu",NA +103,139,375,"2019",3,1,100,3,100,100,"Huanqiu",NA +103,139,376,"2019",2,1,70,3,70,100,"Huanqiu",NA +103,139,379,"2019",6,1,100,3,100,100,"Huanqiu",NA +103,139,380,"2019",6,1,68,2,68,68,"Huanqiu",NA +103,139,381,"2019",3,0,81,3,19,27,"Huanqiu",NA +103,139,384,"2019",2,0,59,2,41,41,"Huanqiu",NA +103,139,386,"2019",2,0,100,2,0,38,"Huanqiu",NA +103,139,387,"2019",6,1,84,3,84,84,"Huanqiu",NA +103,139,395,"2019",4,0,87,5,13,NA,"Huanqiu",NA +103,139,396,"2019",5,1,51,3,51,99,"Huanqiu",NA +103,139,399,"2019",2,0,100,3,0,0,"Huanqiu",NA +103,139,400,"2019",5,0,42,3,58,68,"Huanqiu",NA +103,139,407,"2019",2,1,100,2,100,100,"Huanqiu",NA +103,139,408,"2019",6,0,74,2,26,26,"Huanqiu",NA +103,139,409,"2019",2,0,92,2,8,8,"Huanqiu",NA +103,139,411,"2019",3,1,28,2,28,33,"Huanqiu",NA +103,139,417,"2019",4,0,77,5,23,NA,"Huanqiu",NA +103,139,424,"2019",4,1,70,5,70,NA,"Huanqiu",NA +103,139,428,"2019",2,1,19,3,19,19,"Huanqiu",NA +103,139,430,"2019",6,1,58,2,58,54,"Huanqiu",NA +103,139,435,"2019",2,1,20,2,20,20,"Huanqiu",NA +103,139,436,"2019",6,1,46,3,46,46,"Huanqiu",NA +103,139,442,"2019",5,1,68,3,68,53,"Huanqiu",NA +103,139,446,"2019",6,0,84,3,16,47,"Huanqiu",NA +103,139,447,"2019",3,0,52,2,48,24,"Huanqiu",NA +103,139,448,"2019",5,0,91,3,9,9,"Huanqiu",NA +103,139,449,"2019",3,1,0,2,0,0,"Huanqiu",NA +103,139,454,"2019",4,0,94,5,6,NA,"Huanqiu",NA +103,139,456,"2019",2,0,0,3,100,50,"Huanqiu",NA +103,139,458,"2019",3,1,0,3,0,16,"Huanqiu",NA +103,139,460,"2019",5,1,90,3,90,95,"Huanqiu",NA +103,139,461,"2019",6,1,50,3,50,50,"Huanqiu",NA +103,139,463,"2019",6,0,12,3,88,88,"Huanqiu",NA +103,139,466,"2019",5,0,0,3,100,100,"Huanqiu",NA +103,139,468,"2019",2,0,7,2,93,93,"Huanqiu",NA +103,139,470,"2019",6,0,100,3,0,50,"Huanqiu",NA +103,139,471,"2019",2,1,90,2,90,90,"Huanqiu",NA +103,139,476,"2019",5,0,47,3,53,45,"Huanqiu",NA +103,139,477,"2019",2,0,69,3,31,12,"Huanqiu",NA +103,139,484,"2019",3,0,99,3,1,36,"Huanqiu",NA +103,139,485,"2019",4,1,50,5,50,NA,"Huanqiu",NA +103,139,486,"2019",5,0,51,2,49,51,"Huanqiu",NA +103,139,488,"2019",6,0,62,3,38,50,"Huanqiu",NA +103,139,491,"2019",6,0,40,2,60,60,"Huanqiu",NA +103,139,493,"2019",5,1,71,2,71,31,"Huanqiu",NA +103,139,499,"2019",3,0,69,2,31,42,"Huanqiu",NA +103,139,501,"2019",3,0,51,3,49,36,"Huanqiu",NA +103,139,505,"2019",3,1,2,2,2,50,"Huanqiu",NA +103,139,506,"2019",2,0,78,3,22,0,"Huanqiu",NA +103,139,507,"2019",2,1,37,2,37,70,"Huanqiu",NA +103,139,508,"2019",5,0,31,3,69,26,"Huanqiu",NA +103,139,509,"2019",3,1,34,3,34,79,"Huanqiu",NA +103,139,511,"2019",6,0,69,3,31,47,"Huanqiu",NA +103,139,514,"2019",5,0,76,3,24,33,"Huanqiu",NA +103,139,517,"2019",4,0,63,5,37,NA,"Huanqiu",NA +103,139,518,"2019",6,1,59,2,59,59,"Huanqiu",NA +103,139,519,"2019",2,1,7,3,7,7,"Huanqiu",NA +103,139,520,"2019",5,0,50,3,50,50,"Huanqiu",NA +103,139,522,"2019",2,0,50,2,50,50,"Huanqiu",NA +103,139,524,"2019",3,0,100,3,0,25,"Huanqiu",NA +103,139,525,"2019",2,1,71,2,71,71,"Huanqiu",NA +103,139,527,"2019",6,1,100,3,100,100,"Huanqiu",NA +103,139,530,"2019",6,1,12,3,12,12,"Huanqiu",NA +103,139,534,"2019",3,1,80,2,80,16,"Huanqiu",NA +103,139,535,"2019",5,1,22,2,22,86,"Huanqiu",NA +103,139,536,"2019",4,1,91,5,91,NA,"Huanqiu",NA +103,139,537,"2019",3,1,50,2,50,67,"Huanqiu",NA +103,139,553,"2019",6,0,50,2,50,50,"Huanqiu",NA +103,139,554,"2019",5,1,39,3,39,49,"Huanqiu",NA +103,139,556,"2019",6,0,70,2,30,4,"Huanqiu",NA +103,139,557,"2019",3,1,13,3,13,13,"Huanqiu",NA +103,139,559,"2019",4,1,74,5,74,NA,"Huanqiu",NA +103,139,561,"2019",5,0,84,3,16,29,"Huanqiu",NA +103,139,566,"2019",6,1,34,3,34,31,"Huanqiu",NA +103,139,570,"2019",2,0,100,3,0,14,"Huanqiu",NA +103,139,571,"2019",5,1,61,3,61,60,"Huanqiu",NA +103,139,572,"2019",3,1,50,3,50,80,"Huanqiu",NA +103,139,576,"2019",6,1,100,3,100,100,"Huanqiu",NA +103,139,579,"2019",5,0,79,3,21,64,"Huanqiu",NA +103,139,583,"2019",2,0,40,2,60,50,"Huanqiu",NA +103,139,589,"2019",2,0,29,3,71,76,"Huanqiu",NA +103,139,594,"2019",6,0,51,3,49,17,"Huanqiu",NA +103,139,595,"2019",6,1,100,2,100,100,"Huanqiu",NA +103,139,598,"2019",3,0,59,2,41,41,"Huanqiu",NA +103,139,600,"2019",6,0,86,3,14,14,"Huanqiu",NA +103,139,602,"2019",3,0,39,2,61,61,"Huanqiu",NA +103,139,605,"2019",4,1,63,5,63,NA,"Huanqiu",NA +103,139,608,"2019",6,0,76,2,24,66,"Huanqiu",NA +103,139,611,"2019",2,1,6,3,6,6,"Huanqiu",NA +103,139,613,"2019",2,0,36,2,64,60,"Huanqiu",NA +103,139,614,"2019",5,1,20,3,20,20,"Huanqiu",NA +103,139,619,"2019",5,1,47,2,47,46,"Huanqiu",NA +103,139,624,"2019",3,1,70,2,70,60,"Huanqiu",NA +103,139,632,"2019",3,1,78,2,78,78,"Huanqiu",NA +103,139,633,"2019",3,1,100,2,100,50,"Huanqiu",NA +103,139,634,"2019",2,1,75,2,75,72,"Huanqiu",NA +103,139,636,"2019",6,1,53,3,53,40,"Huanqiu",NA +103,139,637,"2019",2,0,50,3,50,50,"Huanqiu",NA +103,139,638,"2019",3,0,100,2,0,0,"Huanqiu",NA +103,139,639,"2019",6,0,55,3,45,45,"Huanqiu",NA +103,139,640,"2019",4,0,86,5,14,NA,"Huanqiu",NA +103,139,645,"2019",6,1,50,2,50,50,"Huanqiu",NA +103,139,646,"2019",3,0,33,2,67,61,"Huanqiu",NA +103,139,647,"2019",3,0,75,3,25,25,"Huanqiu",NA +103,139,649,"2019",3,1,100,2,100,0,"Huanqiu",NA +103,139,660,"2019",6,1,92,2,92,85,"Huanqiu",NA +103,139,661,"2019",2,1,0,3,0,0,"Huanqiu",NA +103,139,665,"2019",2,0,100,3,0,0,"Huanqiu",NA +103,139,667,"2019",4,0,100,5,0,NA,"Huanqiu",NA +103,139,673,"2019",5,0,100,3,0,50,"Huanqiu",NA +103,139,677,"2019",4,1,24,5,24,NA,"Huanqiu",NA +103,139,678,"2019",2,0,77,2,23,35,"Huanqiu",NA +103,139,679,"2019",3,0,99,2,1,50,"Huanqiu",NA +103,139,680,"2019",5,1,57,2,57,55,"Huanqiu",NA +103,139,681,"2019",2,0,73,3,27,27,"Huanqiu",NA +103,139,688,"2019",5,0,87,2,13,70,"Huanqiu",NA +103,139,693,"2019",5,1,50,2,50,50,"Huanqiu",NA +103,139,694,"2019",6,1,91,2,91,96,"Huanqiu",NA +103,139,695,"2019",5,1,0,2,0,0,"Huanqiu",NA +103,139,699,"2019",6,1,100,3,100,100,"Huanqiu",NA +103,139,700,"2019",5,0,55,3,45,100,"Huanqiu",NA +103,139,702,"2019",2,1,20,2,20,20,"Huanqiu",NA +103,139,703,"2019",2,1,0,3,0,0,"Huanqiu",NA +103,139,704,"2019",3,1,0,2,0,82,"Huanqiu",NA +103,139,706,"2019",5,0,100,3,0,0,"Huanqiu",NA +103,139,707,"2019",3,1,82,2,82,50,"Huanqiu",NA +103,139,708,"2019",6,0,41,3,59,16,"Huanqiu",NA +103,139,718,"2019",6,1,0,2,0,7,"Huanqiu",NA +103,139,719,"2019",3,1,7,3,7,0,"Huanqiu",NA +103,139,722,"2019",2,0,29,2,71,71,"Huanqiu",NA +103,139,726,"2019",3,0,100,2,0,0,"Huanqiu",NA +103,139,727,"2019",6,0,100,2,0,8,"Huanqiu",NA +103,139,728,"2019",3,0,100,3,0,0,"Huanqiu",NA +103,139,729,"2019",5,1,1,2,1,100,"Huanqiu",NA +103,139,730,"2019",2,0,94,3,6,9,"Huanqiu",NA +103,139,732,"2019",6,0,100,2,0,0,"Huanqiu",NA +103,139,734,"2019",3,1,50,3,50,50,"Huanqiu",NA +103,139,736,"2019",6,1,96,3,96,96,"Huanqiu",NA +103,139,737,"2019",2,0,15,3,85,85,"Huanqiu",NA +103,139,738,"2019",5,1,80,2,80,29,"Huanqiu",NA +103,139,741,"2019",5,1,60,3,60,71,"Huanqiu",NA +103,139,746,"2019",6,0,82,2,18,18,"Huanqiu",NA +103,139,748,"2019",6,0,19,3,81,50,"Huanqiu",NA +103,139,752,"2019",5,0,64,2,36,100,"Huanqiu",NA +103,139,753,"2019",3,1,0,3,0,30,"Huanqiu",NA +103,139,758,"2019",2,0,20,2,80,40,"Huanqiu",NA +103,139,760,"2019",2,0,58,2,42,42,"Huanqiu",NA +103,139,761,"2019",5,1,19,3,19,63,"Huanqiu",NA +103,139,762,"2019",2,1,87,2,87,49,"Huanqiu",NA +103,139,766,"2019",6,1,50,2,50,50,"Huanqiu",NA +103,139,767,"2019",3,0,100,3,0,100,"Huanqiu",NA +103,139,768,"2019",3,1,60,3,60,60,"Huanqiu",NA +103,139,771,"2019",2,0,50,2,50,20,"Huanqiu",NA +103,139,777,"2019",5,0,70,3,30,30,"Huanqiu",NA +103,139,779,"2019",2,1,100,3,100,100,"Huanqiu",NA +103,139,780,"2019",5,1,41,3,41,31,"Huanqiu",NA +103,139,782,"2019",3,0,89,2,11,11,"Huanqiu",NA +103,139,785,"2019",2,0,91,3,9,9,"Huanqiu",NA +103,139,786,"2019",3,0,51,3,49,49,"Huanqiu",NA +103,139,787,"2019",6,0,63,2,37,37,"Huanqiu",NA +103,139,792,"2019",3,1,62,2,62,50,"Huanqiu",NA +103,139,794,"2019",5,0,51,3,49,49,"Huanqiu",NA +103,139,796,"2019",5,1,87,3,87,87,"Huanqiu",NA +103,139,797,"2019",6,0,100,3,0,10,"Huanqiu",NA +103,139,799,"2019",5,0,60,3,40,92,"Huanqiu",NA +103,139,806,"2019",5,1,100,2,100,100,"Huanqiu",NA +103,139,810,"2019",2,0,86,2,14,14,"Huanqiu",NA +103,139,816,"2019",3,0,0,2,100,100,"Huanqiu",NA +103,139,819,"2019",3,1,100,2,100,100,"Huanqiu",NA +103,139,825,"2019",5,1,0,3,0,0,"Huanqiu",NA +103,139,826,"2019",2,1,100,3,100,100,"Huanqiu",NA +103,139,829,"2019",5,0,51,3,49,40,"Huanqiu",NA +103,139,831,"2019",3,1,0,3,0,50,"Huanqiu",NA +103,139,836,"2019",6,1,87,3,87,87,"Huanqiu",NA +103,139,840,"2019",3,1,71,3,71,21,"Huanqiu",NA +103,139,847,"2019",3,0,100,3,0,0,"Huanqiu",NA +103,139,848,"2019",6,1,6,3,6,18,"Huanqiu",NA +103,139,852,"2019",5,0,79,2,21,18,"Huanqiu",NA +103,139,860,"2019",6,1,57,3,57,61,"Huanqiu",NA +103,139,863,"2019",3,0,90,3,10,10,"Huanqiu",NA +103,139,864,"2019",5,1,75,3,75,75,"Huanqiu",NA +103,139,865,"2019",3,0,100,2,0,18,"Huanqiu",NA +103,139,866,"2019",3,0,100,2,0,2,"Huanqiu",NA +103,139,868,"2019",5,1,87,2,87,87,"Huanqiu",NA +103,139,870,"2019",3,1,50,2,50,50,"Huanqiu",NA +103,139,871,"2019",2,0,90,2,10,10,"Huanqiu",NA +103,139,873,"2019",6,1,0,2,0,7,"Huanqiu",NA +103,139,877,"2019",6,1,83,3,83,83,"Huanqiu",NA +103,139,879,"2019",2,1,0,3,0,0,"Huanqiu",NA +103,139,880,"2019",4,1,20,5,20,NA,"Huanqiu",NA +103,139,889,"2019",3,1,0,3,0,0,"Huanqiu",NA +103,139,891,"2019",2,1,100,3,100,100,"Huanqiu",NA +103,139,892,"2019",2,0,50,2,50,50,"Huanqiu",NA +103,139,893,"2019",5,0,95,2,5,5,"Huanqiu",NA +103,139,894,"2019",3,0,45,3,55,55,"Huanqiu",NA +103,139,895,"2019",6,0,98,3,2,38,"Huanqiu",NA +103,139,897,"2019",6,0,96,3,4,2,"Huanqiu",NA +103,139,898,"2019",4,1,100,5,100,NA,"Huanqiu",NA +103,139,901,"2019",6,0,72,3,28,28,"Huanqiu",NA +103,139,902,"2019",5,1,100,3,100,49,"Huanqiu",NA +103,139,904,"2019",4,1,80,5,80,NA,"Huanqiu",NA +103,139,906,"2019",5,1,64,2,64,50,"Huanqiu",NA +103,139,908,"2019",2,1,5,2,5,24,"Huanqiu",NA +103,139,909,"2019",3,0,68,2,32,40,"Huanqiu",NA +103,139,911,"2019",5,1,17,2,17,8,"Huanqiu",NA +103,139,916,"2019",5,0,93,3,7,19,"Huanqiu",NA +103,139,919,"2019",3,1,84,2,84,80,"Huanqiu",NA +103,139,921,"2019",3,0,78,3,22,50,"Huanqiu",NA +103,139,922,"2019",6,0,93,2,7,50,"Huanqiu",NA +103,139,924,"2019",6,0,90,2,10,15,"Huanqiu",NA +103,139,925,"2019",6,0,100,2,0,100,"Huanqiu",NA +103,139,928,"2019",3,1,12,3,12,92,"Huanqiu",NA +103,139,934,"2019",2,0,32,3,68,7,"Huanqiu",NA +103,139,937,"2019",5,0,20,2,80,80,"Huanqiu",NA +103,139,938,"2019",6,1,0,3,0,0,"Huanqiu",NA +103,139,939,"2019",3,0,81,3,19,20,"Huanqiu",NA +103,139,940,"2019",2,1,44,2,44,47,"Huanqiu",NA +103,139,943,"2019",5,1,100,2,100,100,"Huanqiu",NA +103,139,944,"2019",6,1,0,2,0,0,"Huanqiu",NA +103,139,945,"2019",6,1,57,3,57,56,"Huanqiu",NA +103,139,946,"2019",6,0,70,3,30,30,"Huanqiu",NA +103,139,948,"2019",2,0,11,3,89,89,"Huanqiu",NA +103,139,949,"2019",5,1,100,3,100,99,"Huanqiu",NA +103,139,954,"2019",2,0,100,3,0,0,"Huanqiu",NA +103,139,955,"2019",2,1,3,2,3,17,"Huanqiu",NA +103,139,958,"2019",2,0,75,2,25,13,"Huanqiu",NA +103,139,962,"2019",3,0,100,3,0,0,"Huanqiu",NA +103,139,964,"2019",2,1,0,3,0,0,"Huanqiu",NA +103,139,968,"2019",2,1,50,2,50,50,"Huanqiu",NA +103,139,969,"2019",6,0,100,3,0,0,"Huanqiu",NA +103,139,970,"2019",3,0,91,2,9,29,"Huanqiu",NA +103,139,971,"2019",3,0,100,3,0,0,"Huanqiu",NA +103,139,974,"2019",3,0,90,3,10,10,"Huanqiu",NA +103,139,982,"2019",3,1,6,2,6,100,"Huanqiu",NA +103,139,989,"2019",2,0,53,3,47,48,"Huanqiu",NA +103,139,990,"2019",6,1,59,2,59,30,"Huanqiu",NA +103,139,998,"2019",2,0,83,3,17,36,"Huanqiu",NA +103,139,999,"2019",2,0,91,3,9,8,"Huanqiu",NA +103,139,1001,"2019",6,1,8,2,8,8,"Huanqiu",NA +103,139,1002,"2019",6,0,92,2,8,29,"Huanqiu",NA +103,139,1003,"2019",6,1,89,3,89,80,"Huanqiu",NA +103,139,1006,"2019",2,0,100,2,0,0,"Huanqiu",NA +103,139,1008,"2019",6,1,75,3,75,65,"Huanqiu",NA +103,139,1009,"2019",5,0,100,3,0,5,"Huanqiu",NA +103,139,1013,"2019",5,1,100,2,100,0,"Huanqiu",NA +103,139,1016,"2019",3,0,62,3,38,50,"Huanqiu",NA +103,139,1017,"2019",3,1,49,3,49,44,"Huanqiu",NA +103,139,1020,"2019",2,0,81,3,19,9,"Huanqiu",NA +103,139,1022,"2019",6,0,51,2,49,49,"Huanqiu",NA +103,139,1027,"2019",2,1,0,2,0,11,"Huanqiu",NA +103,139,1029,"2019",2,1,1,2,1,1,"Huanqiu",NA +103,139,1030,"2019",3,1,3,3,3,52,"Huanqiu",NA +103,139,1037,"2019",4,1,23,5,23,NA,"Huanqiu",NA +103,139,1038,"2019",2,1,92,3,92,50,"Huanqiu",NA +103,139,1043,"2019",6,0,100,2,0,9,"Huanqiu",NA +103,139,1049,"2019",3,1,100,3,100,100,"Huanqiu",NA +103,139,1051,"2019",5,0,79,2,21,38,"Huanqiu",NA +103,139,1052,"2019",5,1,51,3,51,32,"Huanqiu",NA +103,139,1054,"2019",6,1,49,3,49,52,"Huanqiu",NA +103,139,1055,"2019",6,0,100,3,0,7,"Huanqiu",NA +103,139,1056,"2019",3,1,100,3,100,100,"Huanqiu",NA +103,139,1058,"2019",6,0,100,3,0,0,"Huanqiu",NA +103,139,1060,"2019",4,1,0,5,0,NA,"Huanqiu",NA +103,139,1063,"2019",3,0,52,2,48,49,"Huanqiu",NA +103,139,1067,"2019",4,1,50,5,50,NA,"Huanqiu",NA +103,139,1068,"2019",3,0,82,3,18,26,"Huanqiu",NA +103,139,1073,"2019",5,1,78,3,78,73,"Huanqiu",NA +103,139,1076,"2019",5,1,0,3,0,51,"Huanqiu",NA +103,139,1077,"2019",3,1,1,2,1,0,"Huanqiu",NA +103,139,1080,"2019",2,0,72,2,28,28,"Huanqiu",NA +103,139,1081,"2019",2,0,88,3,12,32,"Huanqiu",NA +103,139,1084,"2019",5,1,81,3,81,76,"Huanqiu",NA +103,139,1089,"2019",5,1,41,3,41,60,"Huanqiu",NA +103,139,1092,"2019",3,1,100,3,100,100,"Huanqiu",NA +103,139,1095,"2019",2,0,100,3,0,0,"Huanqiu",NA +103,139,1101,"2019",5,0,39,3,61,56,"Huanqiu",NA +103,139,1102,"2019",4,1,0,5,0,NA,"Huanqiu",NA +103,139,1104,"2019",3,0,6,3,94,89,"Huanqiu",NA +103,139,1106,"2019",5,0,89,3,11,5,"Huanqiu",NA +103,139,1108,"2019",5,1,82,2,82,85,"Huanqiu",NA +103,139,1113,"2019",6,1,87,3,87,87,"Huanqiu",NA +103,139,1114,"2019",4,1,100,5,100,NA,"Huanqiu",NA +103,139,1115,"2019",4,0,50,5,50,NA,"Huanqiu",NA +103,139,1116,"2019",2,1,87,2,87,87,"Huanqiu",NA +103,139,1120,"2019",6,0,90,3,10,21,"Huanqiu",NA +103,139,1123,"2019",6,1,21,3,21,97,"Huanqiu",NA +103,139,1126,"2019",4,1,13,5,13,NA,"Huanqiu",NA +103,139,1129,"2019",3,0,84,2,16,12,"Huanqiu",NA +103,139,1130,"2019",5,0,100,3,0,0,"Huanqiu",NA +103,139,1133,"2019",3,1,88,3,88,80,"Huanqiu",NA +103,139,1134,"2019",3,1,78,3,78,66,"Huanqiu",NA +103,139,1135,"2019",3,1,0,3,0,50,"Huanqiu",NA +103,139,1136,"2019",5,1,90,3,90,90,"Huanqiu",NA +103,139,1137,"2019",2,0,50,3,50,50,"Huanqiu",NA +103,139,1138,"2019",5,0,100,3,0,0,"Huanqiu",NA +103,139,1139,"2019",6,0,0,3,100,100,"Huanqiu",NA +103,139,1141,"2019",6,0,100,3,0,0,"Huanqiu",NA +103,139,1143,"2019",3,0,7,3,93,82,"Huanqiu",NA +103,139,1156,"2019",2,0,100,2,0,0,"Huanqiu",NA +103,139,1159,"2019",2,0,77,3,23,30,"Huanqiu",NA +103,139,1160,"2019",2,1,70,3,70,80,"Huanqiu",NA +104,NA,144,"2019",6,0,4,1,96,NA,NA,NA +104,NA,145,"2019",2,0,92,1,8,NA,NA,NA +104,NA,146,"2019",2,1,18,1,18,NA,NA,NA +104,NA,148,"2019",6,0,25,1,75,NA,NA,NA +104,NA,150,"2019",2,0,95,1,5,NA,NA,NA +104,NA,151,"2019",3,0,50,1,50,NA,NA,NA +104,NA,152,"2019",3,0,100,1,0,NA,NA,NA +104,NA,154,"2019",2,0,85,1,15,NA,NA,NA +104,NA,155,"2019",3,1,79,1,79,NA,NA,NA +104,NA,156,"2019",5,1,66,1,66,NA,NA,NA +104,NA,157,"2019",5,1,66,1,66,NA,NA,NA +104,NA,158,"2019",2,0,81,1,19,NA,NA,NA +104,NA,160,"2019",6,1,0,1,0,NA,NA,NA +104,NA,161,"2019",5,1,20,1,20,NA,NA,NA +104,NA,163,"2019",5,1,50,1,50,NA,NA,NA +104,NA,164,"2019",4,0,19,1,81,NA,NA,NA +104,NA,165,"2019",6,0,99,1,1,NA,NA,NA +104,NA,166,"2019",6,0,81,1,19,NA,NA,NA +104,NA,167,"2019",6,0,65,1,35,NA,NA,NA +104,NA,168,"2019",3,0,22,1,78,NA,NA,NA +104,NA,169,"2019",6,1,50,1,50,NA,NA,NA +104,NA,170,"2019",6,1,13,1,13,NA,NA,NA +104,NA,171,"2019",6,0,50,1,50,NA,NA,NA +104,NA,172,"2019",2,0,10,1,90,NA,NA,NA +104,NA,173,"2019",2,1,85,1,85,NA,NA,NA +104,NA,175,"2019",4,0,32,1,68,NA,NA,NA +104,NA,176,"2019",3,0,0,1,100,NA,NA,NA +104,NA,178,"2019",5,0,100,1,0,NA,NA,NA +104,NA,179,"2019",6,1,70,1,70,NA,NA,NA +104,NA,180,"2019",3,0,84,1,16,NA,NA,NA +104,NA,183,"2019",2,0,26,1,74,NA,NA,NA +104,NA,184,"2019",6,0,0,1,100,NA,NA,NA +104,NA,185,"2019",3,1,28,1,28,NA,NA,NA +104,NA,187,"2019",5,0,100,1,0,NA,NA,NA +104,NA,188,"2019",3,0,40,1,60,NA,NA,NA +104,NA,190,"2019",5,1,82,1,82,NA,NA,NA +104,NA,191,"2019",5,1,39,1,39,NA,NA,NA +104,NA,192,"2019",5,1,12,1,12,NA,NA,NA +104,NA,193,"2019",6,0,72,1,28,NA,NA,NA +104,NA,194,"2019",3,0,8,1,92,NA,NA,NA +104,NA,196,"2019",3,0,99,1,1,NA,NA,NA +104,NA,197,"2019",3,0,50,1,50,NA,NA,NA +104,NA,198,"2019",2,1,23,1,23,NA,NA,NA +104,NA,199,"2019",4,1,40,1,40,NA,NA,NA +104,NA,200,"2019",6,1,49,1,49,NA,NA,NA +104,NA,201,"2019",3,0,50,1,50,NA,NA,NA +104,NA,202,"2019",2,1,50,1,50,NA,NA,NA +104,NA,203,"2019",3,0,82,1,18,NA,NA,NA +104,NA,204,"2019",3,1,81,1,81,NA,NA,NA +104,NA,205,"2019",4,0,61,1,39,NA,NA,NA +104,NA,206,"2019",2,1,76,1,76,NA,NA,NA +104,NA,207,"2019",3,0,44,1,56,NA,NA,NA +104,NA,208,"2019",6,0,75,1,25,NA,NA,NA +104,NA,209,"2019",5,0,92,1,8,NA,NA,NA +104,NA,210,"2019",6,1,71,1,71,NA,NA,NA +104,NA,212,"2019",6,0,85,1,15,NA,NA,NA +104,NA,213,"2019",2,0,100,1,0,NA,NA,NA +104,NA,214,"2019",6,1,49,1,49,NA,NA,NA +104,NA,215,"2019",2,1,78,1,78,NA,NA,NA +104,NA,216,"2019",2,1,13,1,13,NA,NA,NA +104,NA,217,"2019",5,1,71,1,71,NA,NA,NA +104,NA,218,"2019",4,0,0,1,100,NA,NA,NA +104,NA,219,"2019",5,0,50,1,50,NA,NA,NA +104,NA,220,"2019",5,0,50,1,50,NA,NA,NA +104,NA,222,"2019",3,0,50,1,50,NA,NA,NA +104,NA,223,"2019",5,0,50,1,50,NA,NA,NA +104,NA,224,"2019",4,0,82,1,18,NA,NA,NA +104,NA,225,"2019",4,1,89,1,89,NA,NA,NA +104,NA,226,"2019",4,1,86,1,86,NA,NA,NA +104,NA,227,"2019",6,1,50,1,50,NA,NA,NA +104,NA,229,"2019",6,0,50,1,50,NA,NA,NA +104,NA,231,"2019",2,0,50,1,50,NA,NA,NA +104,NA,232,"2019",3,1,64,1,64,NA,NA,NA +104,NA,234,"2019",3,0,95,1,5,NA,NA,NA +104,NA,235,"2019",5,0,5,1,95,NA,NA,NA +104,NA,236,"2019",5,1,50,1,50,NA,NA,NA +104,NA,238,"2019",5,1,50,1,50,NA,NA,NA +104,NA,239,"2019",5,1,83,1,83,NA,NA,NA +104,NA,240,"2019",4,1,84,1,84,NA,NA,NA +104,NA,241,"2019",2,0,0,1,100,NA,NA,NA +104,NA,242,"2019",4,0,8,1,92,NA,NA,NA +104,NA,243,"2019",3,1,24,1,24,NA,NA,NA +104,NA,244,"2019",3,0,100,1,0,NA,NA,NA +104,NA,245,"2019",4,0,10,1,90,NA,NA,NA +104,NA,246,"2019",2,0,8,1,92,NA,NA,NA +104,NA,247,"2019",5,0,100,1,0,NA,NA,NA +104,NA,248,"2019",3,0,50,1,50,NA,NA,NA +104,NA,250,"2019",4,0,50,1,50,NA,NA,NA +104,NA,251,"2019",2,1,53,1,53,NA,NA,NA +104,NA,252,"2019",4,1,95,1,95,NA,NA,NA +104,NA,254,"2019",6,0,19,1,81,NA,NA,NA +104,NA,255,"2019",2,1,94,1,94,NA,NA,NA +104,NA,256,"2019",2,0,81,1,19,NA,NA,NA +104,NA,257,"2019",2,1,17,1,17,NA,NA,NA +104,NA,258,"2019",5,0,59,1,41,NA,NA,NA +104,NA,259,"2019",2,1,100,1,100,NA,NA,NA +104,NA,260,"2019",4,1,82,1,82,NA,NA,NA +104,NA,261,"2019",5,0,71,1,29,NA,NA,NA +104,NA,262,"2019",2,1,34,1,34,NA,NA,NA +104,NA,263,"2019",2,1,95,1,95,NA,NA,NA +104,NA,264,"2019",3,1,34,1,34,NA,NA,NA +104,NA,265,"2019",3,0,70,1,30,NA,NA,NA +104,NA,266,"2019",4,0,29,1,71,NA,NA,NA +104,NA,267,"2019",5,0,89,1,11,NA,NA,NA +104,NA,268,"2019",4,0,71,1,29,NA,NA,NA +104,NA,269,"2019",4,1,0,1,0,NA,NA,NA +104,NA,270,"2019",2,1,0,1,0,NA,NA,NA +104,NA,271,"2019",5,1,83,1,83,NA,NA,NA +104,NA,272,"2019",5,0,100,1,0,NA,NA,NA +104,NA,273,"2019",6,1,82,1,82,NA,NA,NA +104,NA,274,"2019",2,0,100,1,0,NA,NA,NA +104,NA,275,"2019",5,1,16,1,16,NA,NA,NA +104,NA,276,"2019",6,1,32,1,32,NA,NA,NA +104,NA,277,"2019",4,0,100,1,0,NA,NA,NA +104,NA,278,"2019",6,1,50,1,50,NA,NA,NA +104,NA,279,"2019",2,0,100,1,0,NA,NA,NA +104,NA,280,"2019",2,0,27,1,73,NA,NA,NA +104,NA,281,"2019",4,0,73,1,27,NA,NA,NA +104,NA,282,"2019",6,1,39,1,39,NA,NA,NA +104,NA,283,"2019",2,1,92,1,92,NA,NA,NA +104,NA,284,"2019",3,0,68,1,32,NA,NA,NA +104,NA,285,"2019",2,0,100,1,0,NA,NA,NA +104,NA,286,"2019",2,1,40,1,40,NA,NA,NA +104,NA,287,"2019",5,0,92,1,8,NA,NA,NA +104,NA,288,"2019",4,1,72,1,72,NA,NA,NA +104,NA,289,"2019",6,0,7,1,93,NA,NA,NA +104,NA,290,"2019",3,0,50,1,50,NA,NA,NA +104,NA,291,"2019",4,1,95,1,95,NA,NA,NA +104,NA,292,"2019",4,0,100,1,0,NA,NA,NA +104,NA,293,"2019",3,0,0,1,100,NA,NA,NA +104,NA,296,"2019",3,1,50,1,50,NA,NA,NA +104,NA,297,"2019",5,1,3,1,3,NA,NA,NA +104,NA,298,"2019",2,0,50,1,50,NA,NA,NA +104,NA,299,"2019",2,1,100,1,100,NA,NA,NA +104,NA,301,"2019",4,0,0,1,100,NA,NA,NA +104,NA,302,"2019",2,1,50,1,50,NA,NA,NA +104,NA,303,"2019",3,0,41,1,59,NA,NA,NA +104,NA,305,"2019",2,0,90,1,10,NA,NA,NA +104,NA,306,"2019",3,1,50,1,50,NA,NA,NA +104,NA,307,"2019",4,0,100,1,0,NA,NA,NA +104,NA,308,"2019",6,1,73,1,73,NA,NA,NA +104,NA,309,"2019",6,1,50,1,50,NA,NA,NA +104,NA,310,"2019",5,1,11,1,11,NA,NA,NA +104,NA,311,"2019",2,1,93,1,93,NA,NA,NA +104,NA,312,"2019",3,0,81,1,19,NA,NA,NA +104,NA,313,"2019",5,1,50,1,50,NA,NA,NA +104,NA,316,"2019",2,0,81,1,19,NA,NA,NA +104,NA,317,"2019",3,0,0,1,100,NA,NA,NA +104,NA,318,"2019",5,1,75,1,75,NA,NA,NA +104,NA,319,"2019",5,1,0,1,0,NA,NA,NA +104,NA,321,"2019",2,0,20,1,80,NA,NA,NA +104,NA,324,"2019",2,1,50,1,50,NA,NA,NA +104,NA,325,"2019",2,1,0,1,0,NA,NA,NA +104,NA,326,"2019",4,1,50,1,50,NA,NA,NA +104,NA,327,"2019",5,1,50,1,50,NA,NA,NA +104,NA,328,"2019",6,1,100,1,100,NA,NA,NA +104,NA,329,"2019",3,0,50,1,50,NA,NA,NA +104,NA,330,"2019",6,0,80,1,20,NA,NA,NA +104,NA,331,"2019",6,0,89,1,11,NA,NA,NA +104,NA,332,"2019",2,1,50,1,50,NA,NA,NA +104,NA,333,"2019",4,0,50,1,50,NA,NA,NA +104,NA,334,"2019",4,1,50,1,50,NA,NA,NA +104,NA,335,"2019",4,0,65,1,35,NA,NA,NA +104,NA,337,"2019",2,1,50,1,50,NA,NA,NA +104,NA,339,"2019",6,0,62,1,38,NA,NA,NA +104,NA,340,"2019",4,1,58,1,58,NA,NA,NA +104,NA,341,"2019",6,1,63,1,63,NA,NA,NA +104,NA,342,"2019",5,1,72,1,72,NA,NA,NA +104,NA,343,"2019",6,0,69,1,31,NA,NA,NA +104,NA,345,"2019",5,0,93,1,7,NA,NA,NA +104,NA,348,"2019",4,0,100,1,0,NA,NA,NA +104,NA,349,"2019",5,0,75,1,25,NA,NA,NA +104,NA,350,"2019",6,1,69,1,69,NA,NA,NA +104,NA,351,"2019",5,0,0,1,100,NA,NA,NA +104,NA,352,"2019",3,1,53,1,53,NA,NA,NA +104,NA,353,"2019",6,0,43,1,57,NA,NA,NA +104,NA,355,"2019",4,1,99,1,99,NA,NA,NA +104,NA,356,"2019",4,0,45,1,55,NA,NA,NA +104,NA,358,"2019",6,1,50,1,50,NA,NA,NA +104,NA,359,"2019",3,1,29,1,29,NA,NA,NA +104,NA,360,"2019",4,1,50,1,50,NA,NA,NA +104,NA,362,"2019",5,1,29,1,29,NA,NA,NA +104,NA,363,"2019",5,1,50,1,50,NA,NA,NA +104,NA,364,"2019",3,0,0,1,100,NA,NA,NA +104,NA,365,"2019",5,1,50,1,50,NA,NA,NA +104,NA,366,"2019",5,1,10,1,10,NA,NA,NA +104,NA,367,"2019",3,0,69,1,31,NA,NA,NA +104,NA,370,"2019",6,1,75,1,75,NA,NA,NA +104,NA,371,"2019",2,1,80,1,80,NA,NA,NA +104,NA,372,"2019",5,0,50,1,50,NA,NA,NA +104,NA,373,"2019",2,0,100,1,0,NA,NA,NA +104,NA,374,"2019",4,0,100,1,0,NA,NA,NA +104,NA,376,"2019",3,0,0,1,100,NA,NA,NA +104,NA,379,"2019",5,0,87,1,13,NA,NA,NA +104,NA,380,"2019",5,1,69,1,69,NA,NA,NA +104,NA,381,"2019",5,0,90,1,10,NA,NA,NA +104,NA,382,"2019",6,1,4,1,4,NA,NA,NA +104,NA,383,"2019",3,1,0,1,0,NA,NA,NA +104,NA,384,"2019",3,0,50,1,50,NA,NA,NA +104,NA,385,"2019",3,0,0,1,100,NA,NA,NA +104,NA,386,"2019",3,0,50,1,50,NA,NA,NA +104,NA,387,"2019",4,1,93,1,93,NA,NA,NA +104,NA,388,"2019",2,1,100,1,100,NA,NA,NA +104,NA,389,"2019",6,0,51,1,49,NA,NA,NA +104,NA,390,"2019",5,0,28,1,72,NA,NA,NA +104,NA,391,"2019",2,1,50,1,50,NA,NA,NA +104,NA,392,"2019",2,0,100,1,0,NA,NA,NA +104,NA,393,"2019",6,1,93,1,93,NA,NA,NA +104,NA,394,"2019",5,1,54,1,54,NA,NA,NA +104,NA,395,"2019",3,1,90,1,90,NA,NA,NA +104,NA,396,"2019",2,1,92,1,92,NA,NA,NA +104,NA,397,"2019",4,0,90,1,10,NA,NA,NA +104,NA,398,"2019",5,0,100,1,0,NA,NA,NA +104,NA,399,"2019",3,1,50,1,50,NA,NA,NA +104,NA,400,"2019",4,0,45,1,55,NA,NA,NA +104,NA,402,"2019",4,1,50,1,50,NA,NA,NA +104,NA,403,"2019",2,0,77,1,23,NA,NA,NA +104,NA,405,"2019",4,1,43,1,43,NA,NA,NA +104,NA,406,"2019",6,0,32,1,68,NA,NA,NA +104,NA,407,"2019",5,0,100,1,0,NA,NA,NA +104,NA,408,"2019",2,0,79,1,21,NA,NA,NA +104,NA,409,"2019",3,0,81,1,19,NA,NA,NA +104,NA,410,"2019",5,1,50,1,50,NA,NA,NA +104,NA,411,"2019",6,0,55,1,45,NA,NA,NA +104,NA,412,"2019",5,0,50,1,50,NA,NA,NA +104,NA,413,"2019",2,1,47,1,47,NA,NA,NA +104,NA,414,"2019",6,1,0,1,0,NA,NA,NA +104,NA,415,"2019",5,0,50,1,50,NA,NA,NA +104,NA,416,"2019",4,1,74,1,74,NA,NA,NA +104,NA,417,"2019",2,1,25,1,25,NA,NA,NA +104,NA,419,"2019",2,1,71,1,71,NA,NA,NA +104,NA,420,"2019",6,1,70,1,70,NA,NA,NA +104,NA,421,"2019",3,0,80,1,20,NA,NA,NA +104,NA,422,"2019",6,0,50,1,50,NA,NA,NA +104,NA,423,"2019",3,1,19,1,19,NA,NA,NA +104,NA,424,"2019",3,0,6,1,94,NA,NA,NA +104,NA,425,"2019",6,0,12,1,88,NA,NA,NA +104,NA,426,"2019",6,0,50,1,50,NA,NA,NA +104,NA,427,"2019",2,0,0,1,100,NA,NA,NA +104,NA,428,"2019",4,1,21,1,21,NA,NA,NA +104,NA,429,"2019",5,1,47,1,47,NA,NA,NA +104,NA,431,"2019",2,0,46,1,54,NA,NA,NA +104,NA,433,"2019",5,1,50,1,50,NA,NA,NA +104,NA,434,"2019",3,1,71,1,71,NA,NA,NA +104,NA,435,"2019",5,1,50,1,50,NA,NA,NA +104,NA,436,"2019",2,0,44,1,56,NA,NA,NA +104,NA,438,"2019",5,1,100,1,100,NA,NA,NA +104,NA,439,"2019",6,1,50,1,50,NA,NA,NA +104,NA,440,"2019",5,1,22,1,22,NA,NA,NA +104,NA,441,"2019",6,1,33,1,33,NA,NA,NA +104,NA,443,"2019",4,1,100,1,100,NA,NA,NA +104,NA,444,"2019",3,0,100,1,0,NA,NA,NA +104,NA,445,"2019",2,0,50,1,50,NA,NA,NA +104,NA,447,"2019",5,0,60,1,40,NA,NA,NA +104,NA,448,"2019",6,0,89,1,11,NA,NA,NA +104,NA,449,"2019",6,0,100,1,0,NA,NA,NA +104,NA,453,"2019",4,1,100,1,100,NA,NA,NA +104,NA,454,"2019",6,1,50,1,50,NA,NA,NA +104,NA,455,"2019",5,1,76,1,76,NA,NA,NA +104,NA,456,"2019",6,0,100,1,0,NA,NA,NA +104,NA,457,"2019",5,1,65,1,65,NA,NA,NA +104,NA,458,"2019",6,1,91,1,91,NA,NA,NA +104,NA,459,"2019",5,0,50,1,50,NA,NA,NA +104,NA,461,"2019",3,0,50,1,50,NA,NA,NA +104,NA,462,"2019",4,0,22,1,78,NA,NA,NA +104,NA,463,"2019",2,1,6,1,6,NA,NA,NA +104,NA,464,"2019",6,1,77,1,77,NA,NA,NA +104,NA,465,"2019",2,1,64,1,64,NA,NA,NA +104,NA,466,"2019",3,1,0,1,0,NA,NA,NA +104,NA,468,"2019",3,0,12,1,88,NA,NA,NA +104,NA,469,"2019",4,1,72,1,72,NA,NA,NA +104,NA,470,"2019",3,0,100,1,0,NA,NA,NA +104,NA,471,"2019",4,0,91,1,9,NA,NA,NA +104,NA,472,"2019",6,0,50,1,50,NA,NA,NA +104,NA,473,"2019",4,1,0,1,0,NA,NA,NA +104,NA,474,"2019",5,1,64,1,64,NA,NA,NA +104,NA,475,"2019",5,1,75,1,75,NA,NA,NA +104,NA,477,"2019",3,1,75,1,75,NA,NA,NA +104,NA,478,"2019",2,0,50,1,50,NA,NA,NA +104,NA,480,"2019",2,1,50,1,50,NA,NA,NA +104,NA,481,"2019",2,1,30,1,30,NA,NA,NA +104,NA,482,"2019",6,0,100,1,0,NA,NA,NA +104,NA,483,"2019",6,0,100,1,0,NA,NA,NA +104,NA,484,"2019",2,1,50,1,50,NA,NA,NA +104,NA,485,"2019",6,1,50,1,50,NA,NA,NA +104,NA,486,"2019",2,1,52,1,52,NA,NA,NA +104,NA,487,"2019",2,1,50,1,50,NA,NA,NA +104,NA,488,"2019",3,0,65,1,35,NA,NA,NA +104,NA,489,"2019",3,1,63,1,63,NA,NA,NA +104,NA,490,"2019",4,1,50,1,50,NA,NA,NA +104,NA,491,"2019",4,1,35,1,35,NA,NA,NA +104,NA,492,"2019",4,0,76,1,24,NA,NA,NA +104,NA,493,"2019",3,1,35,1,35,NA,NA,NA +104,NA,495,"2019",3,1,69,1,69,NA,NA,NA +104,NA,496,"2019",6,1,69,1,69,NA,NA,NA +104,NA,497,"2019",2,0,68,1,32,NA,NA,NA +104,NA,498,"2019",3,0,91,1,9,NA,NA,NA +104,NA,499,"2019",6,1,62,1,62,NA,NA,NA +104,NA,500,"2019",6,0,100,1,0,NA,NA,NA +104,NA,501,"2019",2,1,0,1,0,NA,NA,NA +104,NA,502,"2019",4,1,92,1,92,NA,NA,NA +104,NA,503,"2019",3,0,60,1,40,NA,NA,NA +104,NA,504,"2019",4,1,25,1,25,NA,NA,NA +104,NA,505,"2019",6,0,0,1,100,NA,NA,NA +104,NA,506,"2019",4,1,65,1,65,NA,NA,NA +104,NA,508,"2019",2,0,73,1,27,NA,NA,NA +104,NA,509,"2019",6,1,71,1,71,NA,NA,NA +104,NA,510,"2019",6,1,77,1,77,NA,NA,NA +104,NA,511,"2019",2,0,67,1,33,NA,NA,NA +104,NA,512,"2019",3,0,81,1,19,NA,NA,NA +104,NA,513,"2019",4,0,72,1,28,NA,NA,NA +104,NA,515,"2019",4,1,39,1,39,NA,NA,NA +104,NA,516,"2019",6,1,66,1,66,NA,NA,NA +104,NA,517,"2019",3,1,50,1,50,NA,NA,NA +104,NA,521,"2019",3,1,78,1,78,NA,NA,NA +104,NA,522,"2019",3,0,62,1,38,NA,NA,NA +104,NA,523,"2019",4,1,32,1,32,NA,NA,NA +104,NA,525,"2019",6,0,78,1,22,NA,NA,NA +104,NA,526,"2019",5,1,6,1,6,NA,NA,NA +104,NA,527,"2019",3,0,50,1,50,NA,NA,NA +104,NA,528,"2019",3,1,50,1,50,NA,NA,NA +104,NA,529,"2019",6,1,70,1,70,NA,NA,NA +104,NA,530,"2019",2,0,91,1,9,NA,NA,NA +104,NA,531,"2019",5,0,35,1,65,NA,NA,NA +104,NA,532,"2019",6,1,50,1,50,NA,NA,NA +104,NA,533,"2019",2,0,83,1,17,NA,NA,NA +104,NA,534,"2019",6,0,78,1,22,NA,NA,NA +104,NA,536,"2019",6,0,91,1,9,NA,NA,NA +104,NA,537,"2019",6,0,68,1,32,NA,NA,NA +104,NA,538,"2019",5,0,56,1,44,NA,NA,NA +104,NA,539,"2019",6,0,13,1,87,NA,NA,NA +104,NA,540,"2019",5,1,7,1,7,NA,NA,NA +104,NA,541,"2019",6,0,24,1,76,NA,NA,NA +104,NA,542,"2019",6,0,37,1,63,NA,NA,NA +104,NA,544,"2019",4,0,8,1,92,NA,NA,NA +104,NA,545,"2019",6,0,47,1,53,NA,NA,NA +104,NA,546,"2019",6,0,75,1,25,NA,NA,NA +104,NA,547,"2019",3,0,100,1,0,NA,NA,NA +104,NA,548,"2019",6,0,48,1,52,NA,NA,NA +104,NA,549,"2019",6,1,53,1,53,NA,NA,NA +104,NA,550,"2019",2,0,0,1,100,NA,NA,NA +104,NA,551,"2019",2,0,27,1,73,NA,NA,NA +104,NA,552,"2019",2,0,83,1,17,NA,NA,NA +104,NA,553,"2019",5,0,1,1,99,NA,NA,NA +104,NA,554,"2019",4,0,54,1,46,NA,NA,NA +104,NA,555,"2019",3,1,22,1,22,NA,NA,NA +104,NA,556,"2019",2,0,96,1,4,NA,NA,NA +104,NA,557,"2019",2,0,8,1,92,NA,NA,NA +104,NA,558,"2019",5,1,58,1,58,NA,NA,NA +104,NA,560,"2019",5,0,75,1,25,NA,NA,NA +104,NA,561,"2019",2,1,74,1,74,NA,NA,NA +104,NA,562,"2019",5,1,71,1,71,NA,NA,NA +104,NA,564,"2019",3,1,19,1,19,NA,NA,NA +104,NA,565,"2019",3,0,24,1,76,NA,NA,NA +104,NA,566,"2019",2,0,20,1,80,NA,NA,NA +104,NA,567,"2019",6,0,48,1,52,NA,NA,NA +104,NA,568,"2019",3,0,33,1,67,NA,NA,NA +104,NA,569,"2019",5,1,29,1,29,NA,NA,NA +104,NA,571,"2019",3,1,0,1,0,NA,NA,NA +104,NA,572,"2019",6,0,50,1,50,NA,NA,NA +104,NA,573,"2019",4,0,100,1,0,NA,NA,NA +104,NA,574,"2019",5,1,61,1,61,NA,NA,NA +104,NA,576,"2019",2,1,0,1,0,NA,NA,NA +104,NA,577,"2019",2,1,19,1,19,NA,NA,NA +104,NA,578,"2019",5,0,70,1,30,NA,NA,NA +104,NA,579,"2019",2,1,29,1,29,NA,NA,NA +104,NA,580,"2019",3,0,100,1,0,NA,NA,NA +104,NA,581,"2019",2,1,84,1,84,NA,NA,NA +104,NA,582,"2019",4,0,61,1,39,NA,NA,NA +104,NA,584,"2019",3,1,55,1,55,NA,NA,NA +104,NA,585,"2019",5,0,40,1,60,NA,NA,NA +104,NA,586,"2019",4,1,100,1,100,NA,NA,NA +104,NA,587,"2019",5,0,11,1,89,NA,NA,NA +104,NA,588,"2019",5,1,61,1,61,NA,NA,NA +104,NA,589,"2019",3,0,82,1,18,NA,NA,NA +104,NA,590,"2019",3,0,11,1,89,NA,NA,NA +104,NA,591,"2019",5,1,54,1,54,NA,NA,NA +104,NA,592,"2019",2,1,87,1,87,NA,NA,NA +104,NA,593,"2019",3,0,79,1,21,NA,NA,NA +104,NA,594,"2019",4,1,78,1,78,NA,NA,NA +104,NA,598,"2019",4,0,68,1,32,NA,NA,NA +104,NA,599,"2019",3,0,27,1,73,NA,NA,NA +104,NA,601,"2019",3,1,63,1,63,NA,NA,NA +104,NA,602,"2019",6,0,76,1,24,NA,NA,NA +104,NA,603,"2019",5,0,40,1,60,NA,NA,NA +104,NA,604,"2019",6,1,60,1,60,NA,NA,NA +104,NA,606,"2019",4,1,7,1,7,NA,NA,NA +104,NA,607,"2019",2,1,73,1,73,NA,NA,NA +104,NA,608,"2019",5,0,32,1,68,NA,NA,NA +104,NA,609,"2019",6,0,50,1,50,NA,NA,NA +104,NA,610,"2019",5,0,42,1,58,NA,NA,NA +104,NA,611,"2019",6,1,6,1,6,NA,NA,NA +104,NA,612,"2019",4,1,50,1,50,NA,NA,NA +104,NA,614,"2019",4,0,50,1,50,NA,NA,NA +104,NA,615,"2019",5,0,36,1,64,NA,NA,NA +104,NA,616,"2019",3,1,40,1,40,NA,NA,NA +104,NA,618,"2019",4,1,100,1,100,NA,NA,NA +104,NA,619,"2019",3,1,47,1,47,NA,NA,NA +104,NA,621,"2019",3,1,50,1,50,NA,NA,NA +104,NA,622,"2019",4,0,45,1,55,NA,NA,NA +104,NA,623,"2019",5,1,9,1,9,NA,NA,NA +104,NA,624,"2019",5,0,100,1,0,NA,NA,NA +104,NA,625,"2019",5,0,69,1,31,NA,NA,NA +104,NA,626,"2019",3,1,6,1,6,NA,NA,NA +104,NA,628,"2019",5,1,100,1,100,NA,NA,NA +104,NA,629,"2019",2,1,100,1,100,NA,NA,NA +104,NA,630,"2019",3,1,0,1,0,NA,NA,NA +104,NA,631,"2019",4,0,60,1,40,NA,NA,NA +104,NA,632,"2019",2,1,64,1,64,NA,NA,NA +104,NA,635,"2019",3,1,100,1,100,NA,NA,NA +104,NA,637,"2019",3,0,0,1,100,NA,NA,NA +104,NA,638,"2019",5,1,0,1,0,NA,NA,NA +104,NA,639,"2019",3,1,29,1,29,NA,NA,NA +104,NA,640,"2019",3,1,34,1,34,NA,NA,NA +104,NA,641,"2019",5,0,67,1,33,NA,NA,NA +104,NA,642,"2019",6,1,34,1,34,NA,NA,NA +104,NA,643,"2019",5,1,25,1,25,NA,NA,NA +104,NA,644,"2019",3,0,39,1,61,NA,NA,NA +104,NA,645,"2019",2,1,88,1,88,NA,NA,NA +104,NA,646,"2019",2,0,38,1,62,NA,NA,NA +104,NA,647,"2019",6,1,50,1,50,NA,NA,NA +104,NA,650,"2019",6,1,32,1,32,NA,NA,NA +104,NA,651,"2019",2,1,2,1,2,NA,NA,NA +104,NA,652,"2019",6,1,0,1,0,NA,NA,NA +104,NA,653,"2019",2,0,0,1,100,NA,NA,NA +104,NA,654,"2019",5,0,0,1,100,NA,NA,NA +104,NA,655,"2019",5,1,65,1,65,NA,NA,NA +104,NA,656,"2019",3,1,51,1,51,NA,NA,NA +104,NA,658,"2019",2,1,35,1,35,NA,NA,NA +104,NA,659,"2019",4,1,100,1,100,NA,NA,NA +104,NA,661,"2019",4,1,20,1,20,NA,NA,NA +104,NA,662,"2019",2,0,60,1,40,NA,NA,NA +104,NA,663,"2019",3,1,0,1,0,NA,NA,NA +104,NA,665,"2019",3,0,50,1,50,NA,NA,NA +104,NA,666,"2019",6,1,0,1,0,NA,NA,NA +104,NA,667,"2019",3,0,100,1,0,NA,NA,NA +104,NA,669,"2019",3,1,92,1,92,NA,NA,NA +104,NA,670,"2019",2,1,50,1,50,NA,NA,NA +104,NA,671,"2019",5,1,100,1,100,NA,NA,NA +104,NA,672,"2019",6,1,0,1,0,NA,NA,NA +104,NA,673,"2019",3,0,100,1,0,NA,NA,NA +104,NA,674,"2019",4,0,2,1,98,NA,NA,NA +104,NA,675,"2019",4,1,10,1,10,NA,NA,NA +104,NA,676,"2019",6,1,48,1,48,NA,NA,NA +104,NA,677,"2019",6,0,97,1,3,NA,NA,NA +104,NA,678,"2019",3,1,27,1,27,NA,NA,NA +104,NA,679,"2019",4,0,50,1,50,NA,NA,NA +104,NA,681,"2019",5,1,17,1,17,NA,NA,NA +104,NA,682,"2019",6,0,29,1,71,NA,NA,NA +104,NA,683,"2019",3,0,88,1,12,NA,NA,NA +104,NA,684,"2019",3,0,82,1,18,NA,NA,NA +104,NA,685,"2019",4,1,23,1,23,NA,NA,NA +104,NA,686,"2019",2,1,50,1,50,NA,NA,NA +104,NA,687,"2019",4,0,5,1,95,NA,NA,NA +104,NA,688,"2019",3,1,6,1,6,NA,NA,NA +104,NA,689,"2019",3,1,0,1,0,NA,NA,NA +104,NA,690,"2019",3,0,0,1,100,NA,NA,NA +104,NA,691,"2019",4,1,72,1,72,NA,NA,NA +104,NA,692,"2019",4,1,36,1,36,NA,NA,NA +104,NA,694,"2019",4,1,91,1,91,NA,NA,NA +104,NA,695,"2019",2,0,50,1,50,NA,NA,NA +104,NA,697,"2019",6,1,70,1,70,NA,NA,NA +104,NA,698,"2019",2,1,85,1,85,NA,NA,NA +104,NA,699,"2019",5,0,84,1,16,NA,NA,NA +104,NA,700,"2019",3,0,0,1,100,NA,NA,NA +104,NA,701,"2019",5,0,88,1,12,NA,NA,NA +104,NA,702,"2019",4,0,100,1,0,NA,NA,NA +104,NA,704,"2019",4,1,81,1,81,NA,NA,NA +104,NA,705,"2019",3,0,75,1,25,NA,NA,NA +104,NA,706,"2019",2,1,3,1,3,NA,NA,NA +104,NA,707,"2019",5,0,57,1,43,NA,NA,NA +104,NA,708,"2019",3,0,50,1,50,NA,NA,NA +104,NA,709,"2019",6,0,0,1,100,NA,NA,NA +104,NA,710,"2019",2,1,86,1,86,NA,NA,NA +104,NA,711,"2019",6,1,0,1,0,NA,NA,NA +104,NA,712,"2019",4,0,58,1,42,NA,NA,NA +104,NA,713,"2019",5,1,52,1,52,NA,NA,NA +104,NA,714,"2019",5,0,0,1,100,NA,NA,NA +104,NA,715,"2019",2,0,50,1,50,NA,NA,NA +104,NA,716,"2019",4,0,44,1,56,NA,NA,NA +104,NA,717,"2019",2,1,50,1,50,NA,NA,NA +104,NA,718,"2019",4,1,0,1,0,NA,NA,NA +104,NA,719,"2019",2,1,51,1,51,NA,NA,NA +104,NA,721,"2019",4,0,0,1,100,NA,NA,NA +104,NA,723,"2019",6,0,50,1,50,NA,NA,NA +104,NA,724,"2019",6,0,53,1,47,NA,NA,NA +104,NA,725,"2019",3,1,44,1,44,NA,NA,NA +104,NA,726,"2019",6,0,15,1,85,NA,NA,NA +104,NA,727,"2019",4,1,50,1,50,NA,NA,NA +104,NA,728,"2019",2,1,50,1,50,NA,NA,NA +104,NA,729,"2019",3,0,99,1,1,NA,NA,NA +104,NA,731,"2019",3,0,56,1,44,NA,NA,NA +104,NA,732,"2019",5,0,38,1,62,NA,NA,NA +104,NA,734,"2019",2,0,50,1,50,NA,NA,NA +104,NA,735,"2019",5,0,1,1,99,NA,NA,NA +104,NA,737,"2019",5,1,32,1,32,NA,NA,NA +104,NA,738,"2019",4,1,23,1,23,NA,NA,NA +104,NA,739,"2019",6,0,24,1,76,NA,NA,NA +104,NA,740,"2019",4,1,50,1,50,NA,NA,NA +104,NA,741,"2019",6,0,26,1,74,NA,NA,NA +104,NA,742,"2019",3,0,0,1,100,NA,NA,NA +104,NA,743,"2019",6,0,1,1,99,NA,NA,NA +104,NA,744,"2019",5,1,50,1,50,NA,NA,NA +104,NA,745,"2019",6,1,70,1,70,NA,NA,NA +104,NA,747,"2019",6,1,50,1,50,NA,NA,NA +104,NA,748,"2019",3,0,100,1,0,NA,NA,NA +104,NA,749,"2019",6,1,50,1,50,NA,NA,NA +104,NA,750,"2019",4,0,100,1,0,NA,NA,NA +104,NA,751,"2019",5,1,50,1,50,NA,NA,NA +104,NA,752,"2019",6,0,36,1,64,NA,NA,NA +104,NA,753,"2019",6,0,50,1,50,NA,NA,NA +104,NA,754,"2019",3,1,50,1,50,NA,NA,NA +104,NA,755,"2019",2,1,61,1,61,NA,NA,NA +104,NA,756,"2019",6,0,48,1,52,NA,NA,NA +104,NA,758,"2019",6,1,60,1,60,NA,NA,NA +104,NA,759,"2019",6,0,12,1,88,NA,NA,NA +104,NA,760,"2019",6,1,59,1,59,NA,NA,NA +104,NA,762,"2019",3,1,63,1,63,NA,NA,NA +104,NA,764,"2019",3,0,0,1,100,NA,NA,NA +104,NA,766,"2019",4,1,50,1,50,NA,NA,NA +104,NA,767,"2019",5,1,50,1,50,NA,NA,NA +104,NA,768,"2019",4,0,50,1,50,NA,NA,NA +104,NA,769,"2019",3,1,0,1,0,NA,NA,NA +104,NA,770,"2019",2,1,0,1,0,NA,NA,NA +104,NA,771,"2019",3,1,17,1,17,NA,NA,NA +104,NA,772,"2019",5,1,100,1,100,NA,NA,NA +104,NA,773,"2019",4,0,60,1,40,NA,NA,NA +104,NA,774,"2019",2,0,0,1,100,NA,NA,NA +104,NA,776,"2019",3,1,20,1,20,NA,NA,NA +104,NA,777,"2019",4,1,50,1,50,NA,NA,NA +104,NA,781,"2019",6,0,6,1,94,NA,NA,NA +104,NA,784,"2019",2,1,50,1,50,NA,NA,NA +104,NA,785,"2019",3,0,5,1,95,NA,NA,NA +104,NA,786,"2019",5,0,22,1,78,NA,NA,NA +104,NA,787,"2019",4,1,50,1,50,NA,NA,NA +104,NA,789,"2019",4,0,50,1,50,NA,NA,NA +104,NA,790,"2019",2,0,0,1,100,NA,NA,NA +104,NA,791,"2019",3,1,20,1,20,NA,NA,NA +104,NA,792,"2019",6,0,5,1,95,NA,NA,NA +104,NA,793,"2019",3,1,50,1,50,NA,NA,NA +104,NA,794,"2019",6,1,50,1,50,NA,NA,NA +104,NA,797,"2019",4,0,0,1,100,NA,NA,NA +104,NA,798,"2019",2,1,100,1,100,NA,NA,NA +104,NA,799,"2019",4,0,15,1,85,NA,NA,NA +104,NA,800,"2019",6,1,100,1,100,NA,NA,NA +104,NA,801,"2019",5,0,50,1,50,NA,NA,NA +104,NA,802,"2019",3,1,50,1,50,NA,NA,NA +104,NA,803,"2019",6,1,100,1,100,NA,NA,NA +104,NA,805,"2019",2,0,50,1,50,NA,NA,NA +104,NA,806,"2019",4,1,0,1,0,NA,NA,NA +104,NA,807,"2019",3,1,100,1,100,NA,NA,NA +104,NA,809,"2019",3,1,50,1,50,NA,NA,NA +104,NA,810,"2019",3,1,50,1,50,NA,NA,NA +104,NA,811,"2019",6,0,50,1,50,NA,NA,NA +104,NA,812,"2019",6,1,38,1,38,NA,NA,NA +104,NA,813,"2019",2,1,50,1,50,NA,NA,NA +104,NA,814,"2019",6,1,100,1,100,NA,NA,NA +104,NA,815,"2019",5,1,76,1,76,NA,NA,NA +104,NA,816,"2019",5,1,0,1,0,NA,NA,NA +104,NA,818,"2019",2,1,51,1,51,NA,NA,NA +104,NA,819,"2019",2,0,0,1,100,NA,NA,NA +104,NA,821,"2019",2,0,100,1,0,NA,NA,NA +104,NA,822,"2019",3,0,100,1,0,NA,NA,NA +104,NA,823,"2019",6,0,75,1,25,NA,NA,NA +104,NA,827,"2019",4,0,92,1,8,NA,NA,NA +104,NA,828,"2019",3,1,51,1,51,NA,NA,NA +104,NA,829,"2019",4,0,63,1,37,NA,NA,NA +104,NA,830,"2019",6,1,11,1,11,NA,NA,NA +104,NA,831,"2019",6,1,50,1,50,NA,NA,NA +104,NA,833,"2019",3,1,5,1,5,NA,NA,NA +104,NA,835,"2019",4,1,65,1,65,NA,NA,NA +104,NA,836,"2019",2,1,0,1,0,NA,NA,NA +104,NA,837,"2019",2,0,84,1,16,NA,NA,NA +104,NA,838,"2019",3,0,85,1,15,NA,NA,NA +104,NA,840,"2019",4,1,74,1,74,NA,NA,NA +104,NA,841,"2019",4,1,50,1,50,NA,NA,NA +104,NA,842,"2019",6,0,72,1,28,NA,NA,NA +104,NA,843,"2019",2,0,78,1,22,NA,NA,NA +104,NA,844,"2019",2,0,53,1,47,NA,NA,NA +104,NA,845,"2019",6,1,50,1,50,NA,NA,NA +104,NA,846,"2019",6,1,1,1,1,NA,NA,NA +104,NA,847,"2019",6,0,100,1,0,NA,NA,NA +104,NA,848,"2019",4,1,17,1,17,NA,NA,NA +104,NA,849,"2019",5,0,50,1,50,NA,NA,NA +104,NA,850,"2019",4,0,41,1,59,NA,NA,NA +104,NA,851,"2019",4,1,78,1,78,NA,NA,NA +104,NA,852,"2019",6,0,65,1,35,NA,NA,NA +104,NA,853,"2019",6,1,66,1,66,NA,NA,NA +104,NA,854,"2019",4,1,50,1,50,NA,NA,NA +104,NA,855,"2019",4,1,50,1,50,NA,NA,NA +104,NA,856,"2019",5,1,1,1,1,NA,NA,NA +104,NA,857,"2019",4,0,50,1,50,NA,NA,NA +104,NA,858,"2019",4,0,50,1,50,NA,NA,NA +104,NA,860,"2019",3,0,36,1,64,NA,NA,NA +104,NA,861,"2019",2,0,100,1,0,NA,NA,NA +104,NA,862,"2019",5,0,61,1,39,NA,NA,NA +104,NA,863,"2019",5,1,80,1,80,NA,NA,NA +104,NA,864,"2019",6,0,14,1,86,NA,NA,NA +104,NA,866,"2019",5,0,95,1,5,NA,NA,NA +104,NA,867,"2019",5,0,51,1,49,NA,NA,NA +104,NA,868,"2019",2,1,76,1,76,NA,NA,NA +104,NA,869,"2019",4,1,57,1,57,NA,NA,NA +104,NA,870,"2019",6,0,50,1,50,NA,NA,NA +104,NA,872,"2019",4,1,66,1,66,NA,NA,NA +104,NA,875,"2019",6,1,57,1,57,NA,NA,NA +104,NA,876,"2019",4,1,0,1,0,NA,NA,NA +104,NA,877,"2019",2,1,50,1,50,NA,NA,NA +104,NA,879,"2019",5,1,0,1,0,NA,NA,NA +104,NA,880,"2019",2,1,41,1,41,NA,NA,NA +104,NA,881,"2019",5,1,11,1,11,NA,NA,NA +104,NA,882,"2019",3,1,50,1,50,NA,NA,NA +104,NA,883,"2019",2,1,7,1,7,NA,NA,NA +104,NA,884,"2019",3,1,50,1,50,NA,NA,NA +104,NA,885,"2019",5,1,0,1,0,NA,NA,NA +104,NA,888,"2019",5,1,11,1,11,NA,NA,NA +104,NA,890,"2019",2,0,88,1,12,NA,NA,NA +104,NA,891,"2019",3,1,4,1,4,NA,NA,NA +104,NA,892,"2019",5,0,50,1,50,NA,NA,NA +104,NA,893,"2019",3,1,50,1,50,NA,NA,NA +104,NA,894,"2019",4,0,61,1,39,NA,NA,NA +104,NA,895,"2019",5,1,81,1,81,NA,NA,NA +104,NA,896,"2019",4,1,92,1,92,NA,NA,NA +104,NA,897,"2019",5,1,1,1,1,NA,NA,NA +104,NA,898,"2019",5,1,0,1,0,NA,NA,NA +104,NA,899,"2019",4,1,0,1,0,NA,NA,NA +104,NA,900,"2019",6,0,37,1,63,NA,NA,NA +104,NA,902,"2019",4,1,0,1,0,NA,NA,NA +104,NA,904,"2019",2,0,73,1,27,NA,NA,NA +104,NA,906,"2019",6,1,64,1,64,NA,NA,NA +104,NA,907,"2019",2,0,50,1,50,NA,NA,NA +104,NA,909,"2019",6,1,70,1,70,NA,NA,NA +104,NA,911,"2019",3,0,11,1,89,NA,NA,NA +104,NA,912,"2019",4,0,0,1,100,NA,NA,NA +104,NA,914,"2019",2,0,0,1,100,NA,NA,NA +104,NA,915,"2019",3,1,0,1,0,NA,NA,NA +104,NA,916,"2019",2,0,22,1,78,NA,NA,NA +104,NA,917,"2019",4,1,18,1,18,NA,NA,NA +104,NA,918,"2019",6,1,0,1,0,NA,NA,NA +104,NA,920,"2019",4,1,56,1,56,NA,NA,NA +104,NA,921,"2019",5,1,50,1,50,NA,NA,NA +104,NA,922,"2019",5,1,1,1,1,NA,NA,NA +104,NA,923,"2019",4,0,93,1,7,NA,NA,NA +104,NA,924,"2019",4,0,98,1,2,NA,NA,NA +104,NA,925,"2019",5,0,51,1,49,NA,NA,NA +104,NA,926,"2019",4,1,40,1,40,NA,NA,NA +104,NA,928,"2019",2,0,96,1,4,NA,NA,NA +104,NA,929,"2019",5,1,65,1,65,NA,NA,NA +104,NA,930,"2019",6,1,85,1,85,NA,NA,NA +104,NA,931,"2019",2,1,74,1,74,NA,NA,NA +104,NA,933,"2019",3,1,4,1,4,NA,NA,NA +104,NA,934,"2019",4,0,83,1,17,NA,NA,NA +104,NA,935,"2019",6,0,21,1,79,NA,NA,NA +104,NA,936,"2019",4,1,100,1,100,NA,NA,NA +104,NA,937,"2019",2,0,100,1,0,NA,NA,NA +104,NA,938,"2019",4,1,1,1,1,NA,NA,NA +104,NA,939,"2019",4,0,50,1,50,NA,NA,NA +104,NA,940,"2019",6,0,55,1,45,NA,NA,NA +104,NA,941,"2019",2,0,65,1,35,NA,NA,NA +104,NA,942,"2019",3,0,19,1,81,NA,NA,NA +104,NA,943,"2019",6,0,100,1,0,NA,NA,NA +104,NA,944,"2019",4,1,100,1,100,NA,NA,NA +104,NA,946,"2019",5,1,82,1,82,NA,NA,NA +104,NA,947,"2019",5,0,99,1,1,NA,NA,NA +104,NA,948,"2019",6,1,50,1,50,NA,NA,NA +104,NA,949,"2019",2,1,41,1,41,NA,NA,NA +104,NA,950,"2019",4,0,83,1,17,NA,NA,NA +104,NA,951,"2019",3,0,81,1,19,NA,NA,NA +104,NA,952,"2019",5,1,100,1,100,NA,NA,NA +104,NA,953,"2019",4,0,35,1,65,NA,NA,NA +104,NA,954,"2019",6,0,0,1,100,NA,NA,NA +104,NA,955,"2019",4,0,100,1,0,NA,NA,NA +104,NA,956,"2019",3,1,50,1,50,NA,NA,NA +104,NA,957,"2019",2,1,51,1,51,NA,NA,NA +104,NA,958,"2019",6,1,33,1,33,NA,NA,NA +104,NA,959,"2019",4,0,0,1,100,NA,NA,NA +104,NA,960,"2019",5,0,10,1,90,NA,NA,NA +104,NA,961,"2019",5,0,50,1,50,NA,NA,NA +104,NA,962,"2019",5,0,100,1,0,NA,NA,NA +104,NA,963,"2019",6,0,81,1,19,NA,NA,NA +104,NA,964,"2019",5,1,51,1,51,NA,NA,NA +104,NA,965,"2019",4,1,47,1,47,NA,NA,NA +104,NA,966,"2019",3,0,81,1,19,NA,NA,NA +104,NA,967,"2019",6,0,100,1,0,NA,NA,NA +104,NA,968,"2019",5,1,0,1,0,NA,NA,NA +104,NA,969,"2019",4,0,100,1,0,NA,NA,NA +104,NA,970,"2019",2,1,81,1,81,NA,NA,NA +104,NA,971,"2019",5,1,65,1,65,NA,NA,NA +104,NA,972,"2019",3,1,100,1,100,NA,NA,NA +104,NA,973,"2019",2,1,58,1,58,NA,NA,NA +104,NA,974,"2019",6,1,50,1,50,NA,NA,NA +104,NA,975,"2019",2,0,94,1,6,NA,NA,NA +104,NA,976,"2019",4,1,52,1,52,NA,NA,NA +104,NA,977,"2019",3,1,50,1,50,NA,NA,NA +104,NA,979,"2019",4,0,74,1,26,NA,NA,NA +104,NA,980,"2019",4,0,73,1,27,NA,NA,NA +104,NA,981,"2019",2,0,20,1,80,NA,NA,NA +104,NA,982,"2019",5,0,84,1,16,NA,NA,NA +104,NA,983,"2019",6,0,22,1,78,NA,NA,NA +104,NA,984,"2019",6,0,92,1,8,NA,NA,NA +104,NA,985,"2019",5,1,0,1,0,NA,NA,NA +104,NA,987,"2019",2,0,19,1,81,NA,NA,NA +104,NA,988,"2019",3,0,51,1,49,NA,NA,NA +104,NA,989,"2019",3,0,54,1,46,NA,NA,NA +104,NA,990,"2019",4,1,64,1,64,NA,NA,NA +104,NA,991,"2019",2,1,50,1,50,NA,NA,NA +104,NA,992,"2019",2,1,58,1,58,NA,NA,NA +104,NA,993,"2019",6,0,100,1,0,NA,NA,NA +104,NA,995,"2019",3,0,100,1,0,NA,NA,NA +104,NA,997,"2019",3,0,91,1,9,NA,NA,NA +104,NA,998,"2019",4,1,100,1,100,NA,NA,NA +104,NA,999,"2019",4,1,99,1,99,NA,NA,NA +104,NA,1000,"2019",4,0,50,1,50,NA,NA,NA +104,NA,1001,"2019",2,0,30,1,70,NA,NA,NA +104,NA,1002,"2019",2,0,40,1,60,NA,NA,NA +104,NA,1004,"2019",2,1,92,1,92,NA,NA,NA +104,NA,1005,"2019",2,0,50,1,50,NA,NA,NA +104,NA,1006,"2019",3,0,12,1,88,NA,NA,NA +104,NA,1007,"2019",2,0,19,1,81,NA,NA,NA +104,NA,1008,"2019",4,1,67,1,67,NA,NA,NA +104,NA,1009,"2019",6,1,78,1,78,NA,NA,NA +104,NA,1010,"2019",4,1,82,1,82,NA,NA,NA +104,NA,1011,"2019",3,0,100,1,0,NA,NA,NA +104,NA,1013,"2019",3,1,100,1,100,NA,NA,NA +104,NA,1014,"2019",4,1,98,1,98,NA,NA,NA +104,NA,1015,"2019",2,1,50,1,50,NA,NA,NA +104,NA,1016,"2019",4,0,49,1,51,NA,NA,NA +104,NA,1017,"2019",4,1,71,1,71,NA,NA,NA +104,NA,1018,"2019",2,1,50,1,50,NA,NA,NA +104,NA,1019,"2019",5,1,59,1,59,NA,NA,NA +104,NA,1020,"2019",3,0,79,1,21,NA,NA,NA +104,NA,1021,"2019",5,0,98,1,2,NA,NA,NA +104,NA,1022,"2019",4,0,100,1,0,NA,NA,NA +104,NA,1023,"2019",5,0,0,1,100,NA,NA,NA +104,NA,1024,"2019",5,1,12,1,12,NA,NA,NA +104,NA,1025,"2019",4,0,66,1,34,NA,NA,NA +104,NA,1026,"2019",5,0,100,1,0,NA,NA,NA +104,NA,1027,"2019",4,0,97,1,3,NA,NA,NA +104,NA,1028,"2019",5,1,50,1,50,NA,NA,NA +104,NA,1029,"2019",4,0,100,1,0,NA,NA,NA +104,NA,1031,"2019",2,1,50,1,50,NA,NA,NA +104,NA,1032,"2019",6,0,83,1,17,NA,NA,NA +104,NA,1033,"2019",5,1,77,1,77,NA,NA,NA +104,NA,1034,"2019",3,0,100,1,0,NA,NA,NA +104,NA,1035,"2019",5,1,99,1,99,NA,NA,NA +104,NA,1037,"2019",2,0,100,1,0,NA,NA,NA +104,NA,1038,"2019",4,1,100,1,100,NA,NA,NA +104,NA,1040,"2019",4,0,64,1,36,NA,NA,NA +104,NA,1041,"2019",6,0,50,1,50,NA,NA,NA +104,NA,1042,"2019",2,1,3,1,3,NA,NA,NA +104,NA,1043,"2019",5,0,100,1,0,NA,NA,NA +104,NA,1044,"2019",4,0,82,1,18,NA,NA,NA +104,NA,1045,"2019",2,1,100,1,100,NA,NA,NA +104,NA,1046,"2019",6,1,38,1,38,NA,NA,NA +104,NA,1047,"2019",6,1,81,1,81,NA,NA,NA +104,NA,1048,"2019",3,0,62,1,38,NA,NA,NA +104,NA,1049,"2019",5,1,51,1,51,NA,NA,NA +104,NA,1050,"2019",3,1,53,1,53,NA,NA,NA +104,NA,1051,"2019",6,1,98,1,98,NA,NA,NA +104,NA,1053,"2019",3,0,100,1,0,NA,NA,NA +104,NA,1054,"2019",5,0,80,1,20,NA,NA,NA +104,NA,1055,"2019",5,0,80,1,20,NA,NA,NA +104,NA,1057,"2019",3,1,37,1,37,NA,NA,NA +104,NA,1058,"2019",5,0,1,1,99,NA,NA,NA +104,NA,1059,"2019",3,0,23,1,77,NA,NA,NA +104,NA,1061,"2019",3,0,100,1,0,NA,NA,NA +104,NA,1062,"2019",6,1,0,1,0,NA,NA,NA +104,NA,1063,"2019",2,0,51,1,49,NA,NA,NA +104,NA,1064,"2019",6,0,94,1,6,NA,NA,NA +104,NA,1065,"2019",2,1,100,1,100,NA,NA,NA +104,NA,1066,"2019",6,1,30,1,30,NA,NA,NA +104,NA,1067,"2019",2,0,4,1,96,NA,NA,NA +104,NA,1068,"2019",6,1,75,1,75,NA,NA,NA +104,NA,1069,"2019",6,1,0,1,0,NA,NA,NA +104,NA,1071,"2019",6,1,21,1,21,NA,NA,NA +104,NA,1072,"2019",3,1,0,1,0,NA,NA,NA +104,NA,1073,"2019",6,1,72,1,72,NA,NA,NA +104,NA,1074,"2019",2,0,61,1,39,NA,NA,NA +104,NA,1075,"2019",6,1,0,1,0,NA,NA,NA +104,NA,1076,"2019",4,1,51,1,51,NA,NA,NA +104,NA,1077,"2019",2,1,50,1,50,NA,NA,NA +104,NA,1078,"2019",5,1,73,1,73,NA,NA,NA +104,NA,1079,"2019",6,0,100,1,0,NA,NA,NA +104,NA,1080,"2019",3,1,98,1,98,NA,NA,NA +104,NA,1081,"2019",5,0,88,1,12,NA,NA,NA +104,NA,1082,"2019",6,0,50,1,50,NA,NA,NA +104,NA,1084,"2019",6,0,65,1,35,NA,NA,NA +104,NA,1086,"2019",3,1,86,1,86,NA,NA,NA +104,NA,1087,"2019",5,1,100,1,100,NA,NA,NA +104,NA,1088,"2019",3,0,50,1,50,NA,NA,NA +104,NA,1089,"2019",4,0,29,1,71,NA,NA,NA +104,NA,1090,"2019",6,1,50,1,50,NA,NA,NA +104,NA,1091,"2019",5,0,97,1,3,NA,NA,NA +104,NA,1092,"2019",6,1,0,1,0,NA,NA,NA +104,NA,1093,"2019",2,0,9,1,91,NA,NA,NA +104,NA,1095,"2019",3,0,7,1,93,NA,NA,NA +104,NA,1097,"2019",5,1,83,1,83,NA,NA,NA +104,NA,1098,"2019",6,1,82,1,82,NA,NA,NA +104,NA,1099,"2019",5,0,51,1,49,NA,NA,NA +104,NA,1100,"2019",3,0,13,1,87,NA,NA,NA +104,NA,1101,"2019",2,1,73,1,73,NA,NA,NA +104,NA,1103,"2019",5,0,16,1,84,NA,NA,NA +104,NA,1104,"2019",4,1,92,1,92,NA,NA,NA +104,NA,1105,"2019",3,0,64,1,36,NA,NA,NA +104,NA,1106,"2019",6,0,84,1,16,NA,NA,NA +104,NA,1107,"2019",5,1,83,1,83,NA,NA,NA +104,NA,1108,"2019",2,0,81,1,19,NA,NA,NA +104,NA,1109,"2019",3,1,92,1,92,NA,NA,NA +104,NA,1110,"2019",5,0,83,1,17,NA,NA,NA +104,NA,1111,"2019",2,1,100,1,100,NA,NA,NA +104,NA,1112,"2019",2,0,50,1,50,NA,NA,NA +104,NA,1114,"2019",3,1,100,1,100,NA,NA,NA +104,NA,1115,"2019",6,0,0,1,100,NA,NA,NA +104,NA,1116,"2019",5,0,82,1,18,NA,NA,NA +104,NA,1117,"2019",5,0,100,1,0,NA,NA,NA +104,NA,1118,"2019",4,0,83,1,17,NA,NA,NA +104,NA,1119,"2019",3,1,50,1,50,NA,NA,NA +104,NA,1120,"2019",4,0,84,1,16,NA,NA,NA +104,NA,1121,"2019",3,1,77,1,77,NA,NA,NA +104,NA,1122,"2019",4,1,80,1,80,NA,NA,NA +104,NA,1123,"2019",4,0,85,1,15,NA,NA,NA +104,NA,1124,"2019",2,0,12,1,88,NA,NA,NA +104,NA,1125,"2019",5,0,46,1,54,NA,NA,NA +104,NA,1126,"2019",2,0,50,1,50,NA,NA,NA +104,NA,1127,"2019",4,1,51,1,51,NA,NA,NA +104,NA,1128,"2019",6,1,100,1,100,NA,NA,NA +104,NA,1129,"2019",6,1,86,1,86,NA,NA,NA +104,NA,1130,"2019",3,0,50,1,50,NA,NA,NA +104,NA,1131,"2019",6,1,7,1,7,NA,NA,NA +104,NA,1132,"2019",4,1,93,1,93,NA,NA,NA +104,NA,1133,"2019",2,0,83,1,17,NA,NA,NA +104,NA,1134,"2019",5,0,81,1,19,NA,NA,NA +104,NA,1135,"2019",6,0,100,1,0,NA,NA,NA +104,NA,1136,"2019",6,0,83,1,17,NA,NA,NA +104,NA,1137,"2019",6,1,17,1,17,NA,NA,NA +104,NA,1138,"2019",2,0,50,1,50,NA,NA,NA +104,NA,1139,"2019",4,0,100,1,0,NA,NA,NA +104,NA,1140,"2019",2,1,87,1,87,NA,NA,NA +104,NA,1141,"2019",2,0,100,1,0,NA,NA,NA +104,NA,1142,"2019",2,0,19,1,81,NA,NA,NA +104,NA,1144,"2019",6,0,13,1,87,NA,NA,NA +104,NA,1146,"2019",5,1,89,1,89,NA,NA,NA +104,NA,1147,"2019",4,1,59,1,59,NA,NA,NA +104,NA,1148,"2019",3,0,22,1,78,NA,NA,NA +104,NA,1149,"2019",3,1,82,1,82,NA,NA,NA +104,NA,1150,"2019",2,1,50,1,50,NA,NA,NA +104,NA,1152,"2019",3,1,9,1,9,NA,NA,NA +104,NA,1153,"2019",3,1,65,1,65,NA,NA,NA +104,NA,1154,"2019",6,1,79,1,79,NA,NA,NA +104,NA,1155,"2019",5,1,80,1,80,NA,NA,NA +104,NA,1157,"2019",3,0,83,1,17,NA,NA,NA +104,NA,1158,"2019",5,1,69,1,69,NA,NA,NA +104,NA,1159,"2019",6,1,57,1,57,NA,NA,NA +104,NA,1160,"2019",3,1,84,1,84,NA,NA,NA +104,NA,1161,"2019",6,0,83,1,17,NA,NA,NA +104,NA,1162,"2019",6,0,88,1,12,NA,NA,NA +104,NA,1164,"2019",6,1,88,1,88,NA,NA,NA +104,NA,1165,"2019",2,1,87,1,87,NA,NA,NA +104,NA,1166,"2019",3,1,88,1,88,NA,NA,NA +104,NA,1167,"2019",4,0,86,1,14,NA,NA,NA +104,NA,1168,"2019",3,1,32,1,32,NA,NA,NA +104,107,146,"2019",2,1,4,2,4,18,"Nanfang Dushibao",NA +104,107,150,"2019",2,0,90,3,10,5,"Nanfang Dushibao",NA +104,107,151,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +104,107,154,"2019",2,0,85,3,15,15,"Nanfang Dushibao",NA +104,107,156,"2019",5,1,75,3,75,73,"Nanfang Dushibao",NA +104,107,161,"2019",5,1,14,3,14,25,"Nanfang Dushibao",NA +104,107,165,"2019",6,0,100,2,0,1,"Nanfang Dushibao",NA +104,107,167,"2019",6,0,97,3,3,3,"Nanfang Dushibao",NA +104,107,168,"2019",3,0,13,2,87,78,"Nanfang Dushibao",NA +104,107,172,"2019",2,0,82,2,18,90,"Nanfang Dushibao",NA +104,107,173,"2019",2,1,16,3,16,42,"Nanfang Dushibao",NA +104,107,183,"2019",2,0,29,2,71,74,"Nanfang Dushibao",NA +104,107,184,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +104,107,187,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,188,"2019",3,0,50,3,50,70,"Nanfang Dushibao",NA +104,107,190,"2019",5,1,32,3,32,60,"Nanfang Dushibao",NA +104,107,191,"2019",5,1,0,3,0,15,"Nanfang Dushibao",NA +104,107,193,"2019",6,0,81,2,19,28,"Nanfang Dushibao",NA +104,107,196,"2019",3,0,100,2,0,1,"Nanfang Dushibao",NA +104,107,197,"2019",3,0,13,3,87,50,"Nanfang Dushibao",NA +104,107,198,"2019",2,1,66,3,66,72,"Nanfang Dushibao",NA +104,107,202,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,207,"2019",3,0,34,2,66,56,"Nanfang Dushibao",NA +104,107,212,"2019",6,0,86,2,14,15,"Nanfang Dushibao",NA +104,107,213,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,214,"2019",6,1,91,2,91,49,"Nanfang Dushibao",NA +104,107,216,"2019",2,1,13,2,13,13,"Nanfang Dushibao",NA +104,107,219,"2019",5,0,100,2,0,50,"Nanfang Dushibao",NA +104,107,239,"2019",5,1,81,3,81,77,"Nanfang Dushibao",NA +104,107,241,"2019",2,0,92,2,8,100,"Nanfang Dushibao",NA +104,107,243,"2019",3,1,24,2,24,24,"Nanfang Dushibao",NA +104,107,244,"2019",3,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,245,"2019",4,0,10,4,90,NA,"Nanfang Dushibao",NA +104,107,246,"2019",2,0,33,2,67,92,"Nanfang Dushibao",NA +104,107,251,"2019",2,1,57,3,57,55,"Nanfang Dushibao",NA +104,107,254,"2019",6,0,50,2,50,81,"Nanfang Dushibao",NA +104,107,256,"2019",2,0,81,2,19,19,"Nanfang Dushibao",NA +104,107,258,"2019",5,0,75,3,25,59,"Nanfang Dushibao",NA +104,107,259,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +104,107,263,"2019",2,1,100,2,100,95,"Nanfang Dushibao",NA +104,107,264,"2019",3,1,67,3,67,56,"Nanfang Dushibao",NA +104,107,265,"2019",3,0,60,2,40,30,"Nanfang Dushibao",NA +104,107,267,"2019",5,0,77,2,23,11,"Nanfang Dushibao",NA +104,107,268,"2019",4,0,80,4,20,NA,"Nanfang Dushibao",NA +104,107,270,"2019",2,1,0,3,0,0,"Nanfang Dushibao",NA +104,107,272,"2019",5,0,45,3,55,0,"Nanfang Dushibao",NA +104,107,273,"2019",6,1,100,3,100,95,"Nanfang Dushibao",NA +104,107,275,"2019",5,1,78,2,78,16,"Nanfang Dushibao",NA +104,107,280,"2019",2,0,17,2,83,73,"Nanfang Dushibao",NA +104,107,285,"2019",2,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,286,"2019",2,1,65,2,65,40,"Nanfang Dushibao",NA +104,107,287,"2019",5,0,59,3,41,4,"Nanfang Dushibao",NA +104,107,291,"2019",4,1,14,4,14,NA,"Nanfang Dushibao",NA +104,107,292,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +104,107,298,"2019",2,0,50,3,50,50,"Nanfang Dushibao",NA +104,107,301,"2019",4,0,0,4,100,NA,"Nanfang Dushibao",NA +104,107,303,"2019",3,0,61,2,39,59,"Nanfang Dushibao",NA +104,107,308,"2019",6,1,73,2,73,73,"Nanfang Dushibao",NA +104,107,309,"2019",6,1,28,3,28,58,"Nanfang Dushibao",NA +104,107,311,"2019",2,1,57,3,57,57,"Nanfang Dushibao",NA +104,107,312,"2019",3,0,81,3,19,29,"Nanfang Dushibao",NA +104,107,313,"2019",5,1,10,3,10,50,"Nanfang Dushibao",NA +104,107,316,"2019",2,0,83,2,17,19,"Nanfang Dushibao",NA +104,107,317,"2019",3,0,0,2,100,100,"Nanfang Dushibao",NA +104,107,319,"2019",5,1,0,3,0,6,"Nanfang Dushibao",NA +104,107,321,"2019",2,0,0,2,100,80,"Nanfang Dushibao",NA +104,107,324,"2019",2,1,81,2,81,50,"Nanfang Dushibao",NA +104,107,325,"2019",2,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,328,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +104,107,329,"2019",3,0,100,2,0,50,"Nanfang Dushibao",NA +104,107,330,"2019",6,0,21,3,79,20,"Nanfang Dushibao",NA +104,107,331,"2019",6,0,89,3,11,11,"Nanfang Dushibao",NA +104,107,337,"2019",2,1,20,3,20,100,"Nanfang Dushibao",NA +104,107,339,"2019",6,0,62,2,38,38,"Nanfang Dushibao",NA +104,107,341,"2019",6,1,70,3,70,70,"Nanfang Dushibao",NA +104,107,342,"2019",5,1,38,3,38,75,"Nanfang Dushibao",NA +104,107,345,"2019",5,0,93,3,7,7,"Nanfang Dushibao",NA +104,107,349,"2019",5,0,64,3,36,25,"Nanfang Dushibao",NA +104,107,350,"2019",6,1,74,3,74,56,"Nanfang Dushibao",NA +104,107,351,"2019",5,0,0,2,100,100,"Nanfang Dushibao",NA +104,107,352,"2019",3,1,87,2,87,53,"Nanfang Dushibao",NA +104,107,355,"2019",4,1,99,4,99,NA,"Nanfang Dushibao",NA +104,107,359,"2019",3,1,57,3,57,78,"Nanfang Dushibao",NA +104,107,362,"2019",5,1,8,3,8,8,"Nanfang Dushibao",NA +104,107,363,"2019",5,1,50,3,50,50,"Nanfang Dushibao",NA +104,107,364,"2019",3,0,0,2,100,100,"Nanfang Dushibao",NA +104,107,365,"2019",5,1,81,2,81,50,"Nanfang Dushibao",NA +104,107,367,"2019",3,0,69,3,31,31,"Nanfang Dushibao",NA +104,107,374,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +104,107,376,"2019",3,0,64,3,36,58,"Nanfang Dushibao",NA +104,107,380,"2019",5,1,69,2,69,69,"Nanfang Dushibao",NA +104,107,381,"2019",5,0,92,3,8,9,"Nanfang Dushibao",NA +104,107,382,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +104,107,384,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +104,107,385,"2019",3,0,99,3,1,100,"Nanfang Dushibao",NA +104,107,390,"2019",5,0,0,3,100,96,"Nanfang Dushibao",NA +104,107,391,"2019",2,1,82,3,82,82,"Nanfang Dushibao",NA +104,107,392,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,393,"2019",6,1,93,2,93,93,"Nanfang Dushibao",NA +104,107,394,"2019",5,1,58,2,58,54,"Nanfang Dushibao",NA +104,107,395,"2019",3,1,18,3,18,90,"Nanfang Dushibao",NA +104,107,396,"2019",2,1,1,3,1,92,"Nanfang Dushibao",NA +104,107,399,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +104,107,406,"2019",6,0,37,3,63,40,"Nanfang Dushibao",NA +104,107,408,"2019",2,0,79,2,21,21,"Nanfang Dushibao",NA +104,107,409,"2019",3,0,57,3,43,19,"Nanfang Dushibao",NA +104,107,410,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +104,107,412,"2019",5,0,92,2,8,50,"Nanfang Dushibao",NA +104,107,419,"2019",2,1,71,2,71,71,"Nanfang Dushibao",NA +104,107,422,"2019",6,0,20,2,80,50,"Nanfang Dushibao",NA +104,107,423,"2019",3,1,40,2,40,19,"Nanfang Dushibao",NA +104,107,425,"2019",6,0,12,2,88,88,"Nanfang Dushibao",NA +104,107,427,"2019",2,0,36,2,64,100,"Nanfang Dushibao",NA +104,107,434,"2019",3,1,10,3,10,10,"Nanfang Dushibao",NA +104,107,441,"2019",6,1,100,2,100,33,"Nanfang Dushibao",NA +104,107,448,"2019",6,0,34,2,66,11,"Nanfang Dushibao",NA +104,107,449,"2019",6,0,0,3,100,0,"Nanfang Dushibao",NA +104,107,457,"2019",5,1,46,2,46,65,"Nanfang Dushibao",NA +104,107,464,"2019",6,1,77,2,77,77,"Nanfang Dushibao",NA +104,107,466,"2019",3,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,468,"2019",3,0,12,3,88,88,"Nanfang Dushibao",NA +104,107,470,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +104,107,473,"2019",4,1,51,4,51,NA,"Nanfang Dushibao",NA +104,107,478,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +104,107,481,"2019",2,1,88,2,88,30,"Nanfang Dushibao",NA +104,107,483,"2019",6,0,37,3,63,21,"Nanfang Dushibao",NA +104,107,484,"2019",2,1,65,3,65,40,"Nanfang Dushibao",NA +104,107,485,"2019",6,1,12,2,12,50,"Nanfang Dushibao",NA +104,107,486,"2019",2,1,53,2,53,52,"Nanfang Dushibao",NA +104,107,487,"2019",2,1,85,3,85,85,"Nanfang Dushibao",NA +104,107,488,"2019",3,0,65,3,35,35,"Nanfang Dushibao",NA +104,107,489,"2019",3,1,63,2,63,63,"Nanfang Dushibao",NA +104,107,493,"2019",3,1,35,2,35,35,"Nanfang Dushibao",NA +104,107,495,"2019",3,1,72,3,72,69,"Nanfang Dushibao",NA +104,107,496,"2019",6,1,55,3,55,50,"Nanfang Dushibao",NA +104,107,497,"2019",2,0,77,3,23,23,"Nanfang Dushibao",NA +104,107,499,"2019",6,1,42,3,42,67,"Nanfang Dushibao",NA +104,107,500,"2019",6,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,503,"2019",3,0,51,2,49,40,"Nanfang Dushibao",NA +104,107,505,"2019",6,0,6,3,94,98,"Nanfang Dushibao",NA +104,107,509,"2019",6,1,82,3,82,39,"Nanfang Dushibao",NA +104,107,511,"2019",2,0,81,3,19,45,"Nanfang Dushibao",NA +104,107,517,"2019",3,1,66,3,66,56,"Nanfang Dushibao",NA +104,107,521,"2019",3,1,39,2,39,78,"Nanfang Dushibao",NA +104,107,527,"2019",3,0,100,2,0,50,"Nanfang Dushibao",NA +104,107,528,"2019",3,1,71,2,71,50,"Nanfang Dushibao",NA +104,107,529,"2019",6,1,70,3,70,70,"Nanfang Dushibao",NA +104,107,530,"2019",2,0,49,3,51,9,"Nanfang Dushibao",NA +104,107,533,"2019",2,0,83,3,17,17,"Nanfang Dushibao",NA +104,107,537,"2019",6,0,66,3,34,42,"Nanfang Dushibao",NA +104,107,538,"2019",5,0,37,3,63,60,"Nanfang Dushibao",NA +104,107,539,"2019",6,0,0,3,100,93,"Nanfang Dushibao",NA +104,107,541,"2019",6,0,79,2,21,76,"Nanfang Dushibao",NA +104,107,545,"2019",6,0,54,2,46,53,"Nanfang Dushibao",NA +104,107,546,"2019",6,0,89,2,11,25,"Nanfang Dushibao",NA +104,107,547,"2019",3,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,548,"2019",6,0,52,3,48,48,"Nanfang Dushibao",NA +104,107,549,"2019",6,1,53,2,53,53,"Nanfang Dushibao",NA +104,107,550,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +104,107,553,"2019",5,0,1,3,99,99,"Nanfang Dushibao",NA +104,107,555,"2019",3,1,23,2,23,22,"Nanfang Dushibao",NA +104,107,556,"2019",2,0,89,3,11,0,"Nanfang Dushibao",NA +104,107,557,"2019",2,0,8,2,92,92,"Nanfang Dushibao",NA +104,107,562,"2019",5,1,64,2,64,71,"Nanfang Dushibao",NA +104,107,564,"2019",3,1,19,2,19,19,"Nanfang Dushibao",NA +104,107,569,"2019",5,1,29,2,29,29,"Nanfang Dushibao",NA +104,107,574,"2019",5,1,77,3,77,61,"Nanfang Dushibao",NA +104,107,577,"2019",2,1,19,2,19,19,"Nanfang Dushibao",NA +104,107,579,"2019",2,1,29,2,29,29,"Nanfang Dushibao",NA +104,107,587,"2019",5,0,11,3,89,89,"Nanfang Dushibao",NA +104,107,592,"2019",2,1,87,3,87,87,"Nanfang Dushibao",NA +104,107,601,"2019",3,1,79,3,79,74,"Nanfang Dushibao",NA +104,107,603,"2019",5,0,31,2,69,60,"Nanfang Dushibao",NA +104,107,604,"2019",6,1,71,3,71,45,"Nanfang Dushibao",NA +104,107,606,"2019",4,1,7,4,7,NA,"Nanfang Dushibao",NA +104,107,607,"2019",2,1,73,2,73,73,"Nanfang Dushibao",NA +104,107,608,"2019",5,0,72,3,28,72,"Nanfang Dushibao",NA +104,107,609,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +104,107,610,"2019",5,0,56,2,44,58,"Nanfang Dushibao",NA +104,107,616,"2019",3,1,31,3,31,31,"Nanfang Dushibao",NA +104,107,621,"2019",3,1,0,3,0,12,"Nanfang Dushibao",NA +104,107,623,"2019",5,1,85,2,85,9,"Nanfang Dushibao",NA +104,107,624,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,625,"2019",5,0,71,2,29,31,"Nanfang Dushibao",NA +104,107,629,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +104,107,631,"2019",4,0,60,4,40,NA,"Nanfang Dushibao",NA +104,107,638,"2019",5,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,640,"2019",3,1,38,2,38,34,"Nanfang Dushibao",NA +104,107,641,"2019",5,0,91,2,9,33,"Nanfang Dushibao",NA +104,107,642,"2019",6,1,64,3,64,29,"Nanfang Dushibao",NA +104,107,645,"2019",2,1,88,3,88,88,"Nanfang Dushibao",NA +104,107,646,"2019",2,0,19,3,81,62,"Nanfang Dushibao",NA +104,107,647,"2019",6,1,75,2,75,50,"Nanfang Dushibao",NA +104,107,653,"2019",2,0,0,3,100,100,"Nanfang Dushibao",NA +104,107,654,"2019",5,0,0,3,100,100,"Nanfang Dushibao",NA +104,107,655,"2019",5,1,100,2,100,65,"Nanfang Dushibao",NA +104,107,656,"2019",3,1,52,2,52,51,"Nanfang Dushibao",NA +104,107,658,"2019",2,1,70,3,70,70,"Nanfang Dushibao",NA +104,107,659,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +104,107,666,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +104,107,667,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,670,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,671,"2019",5,1,0,3,0,100,"Nanfang Dushibao",NA +104,107,677,"2019",6,0,32,3,68,18,"Nanfang Dushibao",NA +104,107,679,"2019",4,0,17,4,83,NA,"Nanfang Dushibao",NA +104,107,683,"2019",3,0,9,2,91,12,"Nanfang Dushibao",NA +104,107,685,"2019",4,1,23,4,23,NA,"Nanfang Dushibao",NA +104,107,686,"2019",2,1,0,2,0,50,"Nanfang Dushibao",NA +104,107,688,"2019",3,1,6,2,6,6,"Nanfang Dushibao",NA +104,107,690,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +104,107,697,"2019",6,1,100,3,100,70,"Nanfang Dushibao",NA +104,107,698,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +104,107,700,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,706,"2019",2,1,63,3,63,3,"Nanfang Dushibao",NA +104,107,708,"2019",3,0,50,3,50,50,"Nanfang Dushibao",NA +104,107,709,"2019",6,0,58,3,42,42,"Nanfang Dushibao",NA +104,107,711,"2019",6,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,712,"2019",4,0,45,4,55,NA,"Nanfang Dushibao",NA +104,107,716,"2019",4,0,45,4,55,NA,"Nanfang Dushibao",NA +104,107,717,"2019",2,1,0,2,0,50,"Nanfang Dushibao",NA +104,107,723,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +104,107,725,"2019",3,1,41,2,41,44,"Nanfang Dushibao",NA +104,107,726,"2019",6,0,0,2,100,85,"Nanfang Dushibao",NA +104,107,731,"2019",3,0,49,3,51,35,"Nanfang Dushibao",NA +104,107,734,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +104,107,735,"2019",5,0,1,2,99,99,"Nanfang Dushibao",NA +104,107,738,"2019",4,1,23,4,23,NA,"Nanfang Dushibao",NA +104,107,741,"2019",6,0,26,2,74,74,"Nanfang Dushibao",NA +104,107,743,"2019",6,0,100,3,0,99,"Nanfang Dushibao",NA +104,107,744,"2019",5,1,52,3,52,50,"Nanfang Dushibao",NA +104,107,747,"2019",6,1,50,3,50,50,"Nanfang Dushibao",NA +104,107,750,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +104,107,752,"2019",6,0,100,3,0,13,"Nanfang Dushibao",NA +104,107,754,"2019",3,1,69,2,69,50,"Nanfang Dushibao",NA +104,107,755,"2019",2,1,61,2,61,61,"Nanfang Dushibao",NA +104,107,759,"2019",6,0,12,2,88,88,"Nanfang Dushibao",NA +104,107,762,"2019",3,1,97,2,97,63,"Nanfang Dushibao",NA +104,107,770,"2019",2,1,0,3,0,0,"Nanfang Dushibao",NA +104,107,772,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +104,107,774,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +104,107,776,"2019",3,1,20,2,20,20,"Nanfang Dushibao",NA +104,107,781,"2019",6,0,6,3,94,94,"Nanfang Dushibao",NA +104,107,785,"2019",3,0,5,2,95,95,"Nanfang Dushibao",NA +104,107,789,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +104,107,790,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +104,107,792,"2019",6,0,35,3,65,84,"Nanfang Dushibao",NA +104,107,793,"2019",3,1,19,3,19,82,"Nanfang Dushibao",NA +104,107,794,"2019",6,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,801,"2019",5,0,100,2,0,50,"Nanfang Dushibao",NA +104,107,809,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,812,"2019",6,1,51,3,51,29,"Nanfang Dushibao",NA +104,107,814,"2019",6,1,69,3,69,0,"Nanfang Dushibao",NA +104,107,815,"2019",5,1,100,3,100,76,"Nanfang Dushibao",NA +104,107,818,"2019",2,1,0,2,0,51,"Nanfang Dushibao",NA +104,107,821,"2019",2,0,87,3,13,17,"Nanfang Dushibao",NA +104,107,822,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,823,"2019",6,0,69,2,31,25,"Nanfang Dushibao",NA +104,107,827,"2019",4,0,92,4,8,NA,"Nanfang Dushibao",NA +104,107,828,"2019",3,1,51,3,51,51,"Nanfang Dushibao",NA +104,107,831,"2019",6,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,836,"2019",2,1,16,3,16,0,"Nanfang Dushibao",NA +104,107,837,"2019",2,0,93,3,7,3,"Nanfang Dushibao",NA +104,107,843,"2019",2,0,78,3,22,22,"Nanfang Dushibao",NA +104,107,844,"2019",2,0,81,3,19,57,"Nanfang Dushibao",NA +104,107,845,"2019",6,1,50,3,50,50,"Nanfang Dushibao",NA +104,107,846,"2019",6,1,1,3,1,1,"Nanfang Dushibao",NA +104,107,849,"2019",5,0,100,2,0,50,"Nanfang Dushibao",NA +104,107,851,"2019",4,1,89,4,89,NA,"Nanfang Dushibao",NA +104,107,853,"2019",6,1,69,3,69,52,"Nanfang Dushibao",NA +104,107,854,"2019",4,1,90,4,90,NA,"Nanfang Dushibao",NA +104,107,857,"2019",4,0,62,4,38,NA,"Nanfang Dushibao",NA +104,107,866,"2019",5,0,97,2,3,5,"Nanfang Dushibao",NA +104,107,867,"2019",5,0,72,3,28,24,"Nanfang Dushibao",NA +104,107,868,"2019",2,1,21,3,21,21,"Nanfang Dushibao",NA +104,107,870,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +104,107,876,"2019",4,1,0,4,0,NA,"Nanfang Dushibao",NA +104,107,877,"2019",2,1,50,3,50,50,"Nanfang Dushibao",NA +104,107,880,"2019",2,1,99,3,99,98,"Nanfang Dushibao",NA +104,107,881,"2019",5,1,8,3,8,8,"Nanfang Dushibao",NA +104,107,883,"2019",2,1,89,2,89,7,"Nanfang Dushibao",NA +104,107,884,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +104,107,885,"2019",5,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,890,"2019",2,0,54,3,46,12,"Nanfang Dushibao",NA +104,107,891,"2019",3,1,0,2,0,4,"Nanfang Dushibao",NA +104,107,897,"2019",5,1,99,3,99,9,"Nanfang Dushibao",NA +104,107,900,"2019",6,0,37,2,63,63,"Nanfang Dushibao",NA +104,107,911,"2019",3,0,11,3,89,89,"Nanfang Dushibao",NA +104,107,915,"2019",3,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,916,"2019",2,0,22,2,78,78,"Nanfang Dushibao",NA +104,107,917,"2019",4,1,18,4,18,NA,"Nanfang Dushibao",NA +104,107,918,"2019",6,1,100,3,100,0,"Nanfang Dushibao",NA +104,107,921,"2019",5,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,930,"2019",6,1,47,2,47,85,"Nanfang Dushibao",NA +104,107,931,"2019",2,1,72,3,72,78,"Nanfang Dushibao",NA +104,107,937,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,940,"2019",6,0,58,2,42,45,"Nanfang Dushibao",NA +104,107,941,"2019",2,0,78,3,22,35,"Nanfang Dushibao",NA +104,107,943,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,946,"2019",5,1,82,3,82,82,"Nanfang Dushibao",NA +104,107,948,"2019",6,1,30,2,30,50,"Nanfang Dushibao",NA +104,107,952,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +104,107,954,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +104,107,958,"2019",6,1,29,3,29,57,"Nanfang Dushibao",NA +104,107,960,"2019",5,0,10,2,90,90,"Nanfang Dushibao",NA +104,107,961,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +104,107,964,"2019",5,1,62,2,62,51,"Nanfang Dushibao",NA +104,107,966,"2019",3,0,88,2,12,19,"Nanfang Dushibao",NA +104,107,967,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,970,"2019",2,1,92,3,92,92,"Nanfang Dushibao",NA +104,107,974,"2019",6,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,975,"2019",2,0,94,2,6,6,"Nanfang Dushibao",NA +104,107,977,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,979,"2019",4,0,79,4,21,NA,"Nanfang Dushibao",NA +104,107,980,"2019",4,0,73,4,27,NA,"Nanfang Dushibao",NA +104,107,982,"2019",5,0,96,2,4,16,"Nanfang Dushibao",NA +104,107,983,"2019",6,0,22,2,78,78,"Nanfang Dushibao",NA +104,107,985,"2019",5,1,100,3,100,93,"Nanfang Dushibao",NA +104,107,988,"2019",3,0,50,3,50,5,"Nanfang Dushibao",NA +104,107,989,"2019",3,0,56,3,44,49,"Nanfang Dushibao",NA +104,107,997,"2019",3,0,100,3,0,3,"Nanfang Dushibao",NA +104,107,1001,"2019",2,0,30,2,70,70,"Nanfang Dushibao",NA +104,107,1005,"2019",2,0,50,3,50,50,"Nanfang Dushibao",NA +104,107,1006,"2019",3,0,12,2,88,88,"Nanfang Dushibao",NA +104,107,1009,"2019",6,1,93,2,93,78,"Nanfang Dushibao",NA +104,107,1015,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,1017,"2019",4,1,77,4,77,NA,"Nanfang Dushibao",NA +104,107,1018,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +104,107,1019,"2019",5,1,59,3,59,59,"Nanfang Dushibao",NA +104,107,1026,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,1028,"2019",5,1,50,3,50,50,"Nanfang Dushibao",NA +104,107,1031,"2019",2,1,71,2,71,50,"Nanfang Dushibao",NA +104,107,1032,"2019",6,0,86,2,14,17,"Nanfang Dushibao",NA +104,107,1033,"2019",5,1,77,2,77,77,"Nanfang Dushibao",NA +104,107,1037,"2019",2,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,1042,"2019",2,1,3,2,3,3,"Nanfang Dushibao",NA +104,107,1043,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,1046,"2019",6,1,38,2,38,38,"Nanfang Dushibao",NA +104,107,1047,"2019",6,1,85,2,85,81,"Nanfang Dushibao",NA +104,107,1053,"2019",3,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,1055,"2019",5,0,100,3,0,20,"Nanfang Dushibao",NA +104,107,1057,"2019",3,1,37,3,37,37,"Nanfang Dushibao",NA +104,107,1064,"2019",6,0,94,2,6,6,"Nanfang Dushibao",NA +104,107,1066,"2019",6,1,93,3,93,30,"Nanfang Dushibao",NA +104,107,1069,"2019",6,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,1071,"2019",6,1,21,3,21,21,"Nanfang Dushibao",NA +104,107,1072,"2019",3,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,1075,"2019",6,1,0,2,0,0,"Nanfang Dushibao",NA +104,107,1079,"2019",6,0,100,2,0,0,"Nanfang Dushibao",NA +104,107,1082,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +104,107,1087,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +104,107,1090,"2019",6,1,51,2,51,50,"Nanfang Dushibao",NA +104,107,1091,"2019",5,0,99,3,1,3,"Nanfang Dushibao",NA +104,107,1095,"2019",3,0,12,3,88,93,"Nanfang Dushibao",NA +104,107,1097,"2019",5,1,87,2,87,83,"Nanfang Dushibao",NA +104,107,1100,"2019",3,0,6,2,94,87,"Nanfang Dushibao",NA +104,107,1101,"2019",2,1,67,2,67,73,"Nanfang Dushibao",NA +104,107,1104,"2019",4,1,95,4,95,NA,"Nanfang Dushibao",NA +104,107,1106,"2019",6,0,89,2,11,16,"Nanfang Dushibao",NA +104,107,1107,"2019",5,1,74,3,74,78,"Nanfang Dushibao",NA +104,107,1108,"2019",2,0,77,2,23,19,"Nanfang Dushibao",NA +104,107,1112,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +104,107,1117,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,1118,"2019",4,0,83,4,17,NA,"Nanfang Dushibao",NA +104,107,1119,"2019",3,1,82,3,82,50,"Nanfang Dushibao",NA +104,107,1121,"2019",3,1,13,3,13,86,"Nanfang Dushibao",NA +104,107,1123,"2019",4,0,95,4,5,NA,"Nanfang Dushibao",NA +104,107,1124,"2019",2,0,7,2,93,88,"Nanfang Dushibao",NA +104,107,1126,"2019",2,0,71,2,29,50,"Nanfang Dushibao",NA +104,107,1127,"2019",4,1,81,4,81,NA,"Nanfang Dushibao",NA +104,107,1130,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,1133,"2019",2,0,83,2,17,17,"Nanfang Dushibao",NA +104,107,1134,"2019",5,0,71,2,29,19,"Nanfang Dushibao",NA +104,107,1136,"2019",6,0,83,2,17,17,"Nanfang Dushibao",NA +104,107,1138,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +104,107,1144,"2019",6,0,13,2,87,87,"Nanfang Dushibao",NA +104,107,1153,"2019",3,1,65,2,65,65,"Nanfang Dushibao",NA +104,107,1154,"2019",6,1,79,3,79,79,"Nanfang Dushibao",NA +104,107,1158,"2019",5,1,65,3,65,67,"Nanfang Dushibao",NA +104,107,1159,"2019",6,1,64,2,64,57,"Nanfang Dushibao",NA +104,107,1160,"2019",3,1,81,2,81,84,"Nanfang Dushibao",NA +104,107,1162,"2019",6,0,75,3,25,21,"Nanfang Dushibao",NA +104,107,1164,"2019",6,1,80,3,80,83,"Nanfang Dushibao",NA +104,107,1166,"2019",3,1,77,3,77,81,"Nanfang Dushibao",NA +104,132,144,"2019",6,0,0,3,100,100,"Xinhua",NA +104,132,145,"2019",2,0,100,3,0,0,"Xinhua",NA +104,132,148,"2019",6,0,25,2,75,75,"Xinhua",NA +104,132,152,"2019",3,0,100,2,0,0,"Xinhua",NA +104,132,155,"2019",3,1,88,2,88,79,"Xinhua",NA +104,132,160,"2019",6,1,0,3,0,0,"Xinhua",NA +104,132,161,"2019",5,1,25,2,25,20,"Xinhua",NA +104,132,164,"2019",4,0,1,2,99,81,"Xinhua",NA +104,132,165,"2019",6,0,100,3,0,0,"Xinhua",NA +104,132,166,"2019",6,0,81,3,19,19,"Xinhua",NA +104,132,169,"2019",6,1,50,3,50,50,"Xinhua",NA +104,132,170,"2019",6,1,83,2,83,13,"Xinhua",NA +104,132,171,"2019",6,0,58,2,42,50,"Xinhua",NA +104,132,175,"2019",4,0,32,2,68,68,"Xinhua",NA +104,132,178,"2019",5,0,100,2,0,0,"Xinhua",NA +104,132,179,"2019",6,1,79,3,79,76,"Xinhua",NA +104,132,180,"2019",3,0,86,2,14,16,"Xinhua",NA +104,132,185,"2019",3,1,25,3,25,25,"Xinhua",NA +104,132,187,"2019",5,0,100,3,0,0,"Xinhua",NA +104,132,192,"2019",5,1,94,2,94,12,"Xinhua",NA +104,132,193,"2019",6,0,82,3,18,19,"Xinhua",NA +104,132,197,"2019",3,0,50,2,50,50,"Xinhua",NA +104,132,200,"2019",6,1,62,3,62,52,"Xinhua",NA +104,132,201,"2019",3,0,97,2,3,50,"Xinhua",NA +104,132,203,"2019",3,0,84,3,16,16,"Xinhua",NA +104,132,210,"2019",6,1,80,2,80,71,"Xinhua",NA +104,132,212,"2019",6,0,93,3,7,14,"Xinhua",NA +104,132,213,"2019",2,0,100,2,0,0,"Xinhua",NA +104,132,215,"2019",2,1,0,3,0,1,"Xinhua",NA +104,132,216,"2019",2,1,87,3,87,13,"Xinhua",NA +104,132,217,"2019",5,1,81,2,81,71,"Xinhua",NA +104,132,218,"2019",4,0,0,2,100,100,"Xinhua",NA +104,132,219,"2019",5,0,100,3,0,0,"Xinhua",NA +104,132,222,"2019",3,0,52,3,48,48,"Xinhua",NA +104,132,223,"2019",5,0,71,2,29,50,"Xinhua",NA +104,132,229,"2019",6,0,50,2,50,50,"Xinhua",NA +104,132,231,"2019",2,0,100,2,0,50,"Xinhua",NA +104,132,232,"2019",3,1,81,3,81,79,"Xinhua",NA +104,132,234,"2019",3,0,100,3,0,3,"Xinhua",NA +104,132,238,"2019",5,1,50,2,50,50,"Xinhua",NA +104,132,240,"2019",4,1,84,2,84,84,"Xinhua",NA +104,132,241,"2019",2,0,16,3,84,8,"Xinhua",NA +104,132,242,"2019",4,0,8,2,92,92,"Xinhua",NA +104,132,244,"2019",3,0,38,3,62,0,"Xinhua",NA +104,132,248,"2019",3,0,50,2,50,50,"Xinhua",NA +104,132,252,"2019",4,1,95,2,95,95,"Xinhua",NA +104,132,257,"2019",2,1,71,3,71,71,"Xinhua",NA +104,132,260,"2019",4,1,82,2,82,82,"Xinhua",NA +104,132,261,"2019",5,0,78,3,22,23,"Xinhua",NA +104,132,262,"2019",2,1,71,3,71,61,"Xinhua",NA +104,132,266,"2019",4,0,29,2,71,71,"Xinhua",NA +104,132,269,"2019",4,1,0,2,0,0,"Xinhua",NA +104,132,271,"2019",5,1,94,3,94,83,"Xinhua",NA +104,132,273,"2019",6,1,95,2,95,82,"Xinhua",NA +104,132,275,"2019",5,1,87,3,87,78,"Xinhua",NA +104,132,276,"2019",6,1,18,2,18,32,"Xinhua",NA +104,132,277,"2019",4,0,100,2,0,0,"Xinhua",NA +104,132,278,"2019",6,1,91,3,91,91,"Xinhua",NA +104,132,279,"2019",2,0,100,3,0,0,"Xinhua",NA +104,132,280,"2019",2,0,69,3,31,83,"Xinhua",NA +104,132,281,"2019",4,0,73,2,27,27,"Xinhua",NA +104,132,282,"2019",6,1,35,2,35,39,"Xinhua",NA +104,132,283,"2019",2,1,79,3,79,79,"Xinhua",NA +104,132,284,"2019",3,0,86,3,14,16,"Xinhua",NA +104,132,286,"2019",2,1,84,3,84,65,"Xinhua",NA +104,132,289,"2019",6,0,60,3,40,94,"Xinhua",NA +104,132,290,"2019",3,0,71,3,29,29,"Xinhua",NA +104,132,293,"2019",3,0,0,3,100,100,"Xinhua",NA +104,132,297,"2019",5,1,100,2,100,3,"Xinhua",NA +104,132,298,"2019",2,0,50,2,50,50,"Xinhua",NA +104,132,306,"2019",3,1,2,3,2,66,"Xinhua",NA +104,132,307,"2019",4,0,56,2,44,0,"Xinhua",NA +104,132,308,"2019",6,1,73,3,73,73,"Xinhua",NA +104,132,309,"2019",6,1,58,2,58,50,"Xinhua",NA +104,132,310,"2019",5,1,11,3,11,11,"Xinhua",NA +104,132,312,"2019",3,0,71,2,29,19,"Xinhua",NA +104,132,317,"2019",3,0,47,3,53,100,"Xinhua",NA +104,132,318,"2019",5,1,75,2,75,75,"Xinhua",NA +104,132,324,"2019",2,1,32,3,32,81,"Xinhua",NA +104,132,326,"2019",4,1,48,2,48,50,"Xinhua",NA +104,132,327,"2019",5,1,38,2,38,50,"Xinhua",NA +104,132,328,"2019",6,1,100,2,100,100,"Xinhua",NA +104,132,330,"2019",6,0,80,2,20,20,"Xinhua",NA +104,132,332,"2019",2,1,70,3,70,81,"Xinhua",NA +104,132,334,"2019",4,1,50,2,50,50,"Xinhua",NA +104,132,337,"2019",2,1,100,2,100,50,"Xinhua",NA +104,132,342,"2019",5,1,75,2,75,72,"Xinhua",NA +104,132,343,"2019",6,0,69,3,31,31,"Xinhua",NA +104,132,345,"2019",5,0,93,2,7,7,"Xinhua",NA +104,132,349,"2019",5,0,75,2,25,25,"Xinhua",NA +104,132,352,"2019",3,1,100,3,100,87,"Xinhua",NA +104,132,353,"2019",6,0,0,3,100,96,"Xinhua",NA +104,132,356,"2019",4,0,31,2,69,55,"Xinhua",NA +104,132,358,"2019",6,1,37,3,37,68,"Xinhua",NA +104,132,360,"2019",4,1,50,2,50,50,"Xinhua",NA +104,132,362,"2019",5,1,8,2,8,29,"Xinhua",NA +104,132,366,"2019",5,1,99,3,99,99,"Xinhua",NA +104,132,371,"2019",2,1,80,2,80,80,"Xinhua",NA +104,132,372,"2019",5,0,50,2,50,50,"Xinhua",NA +104,132,373,"2019",2,0,100,3,0,0,"Xinhua",NA +104,132,379,"2019",5,0,87,2,13,13,"Xinhua",NA +104,132,380,"2019",5,1,100,3,100,69,"Xinhua",NA +104,132,385,"2019",3,0,0,2,100,100,"Xinhua",NA +104,132,386,"2019",3,0,50,2,50,50,"Xinhua",NA +104,132,388,"2019",2,1,100,2,100,100,"Xinhua",NA +104,132,389,"2019",6,0,61,3,39,45,"Xinhua",NA +104,132,390,"2019",5,0,4,2,96,72,"Xinhua",NA +104,132,394,"2019",5,1,74,3,74,58,"Xinhua",NA +104,132,395,"2019",3,1,90,2,90,90,"Xinhua",NA +104,132,397,"2019",4,0,100,2,0,10,"Xinhua",NA +104,132,398,"2019",5,0,100,2,0,0,"Xinhua",NA +104,132,400,"2019",4,0,60,2,40,55,"Xinhua",NA +104,132,402,"2019",4,1,50,2,50,50,"Xinhua",NA +104,132,403,"2019",2,0,99,2,1,23,"Xinhua",NA +104,132,405,"2019",4,1,66,2,66,43,"Xinhua",NA +104,132,406,"2019",6,0,60,2,40,68,"Xinhua",NA +104,132,411,"2019",6,0,50,2,50,45,"Xinhua",NA +104,132,414,"2019",6,1,52,2,52,0,"Xinhua",NA +104,132,415,"2019",5,0,50,2,50,50,"Xinhua",NA +104,132,416,"2019",4,1,0,2,0,74,"Xinhua",NA +104,132,417,"2019",2,1,65,3,65,91,"Xinhua",NA +104,132,420,"2019",6,1,0,2,0,70,"Xinhua",NA +104,132,421,"2019",3,0,80,2,20,20,"Xinhua",NA +104,132,422,"2019",6,0,20,3,80,80,"Xinhua",NA +104,132,423,"2019",3,1,39,3,39,40,"Xinhua",NA +104,132,424,"2019",3,0,2,3,98,89,"Xinhua",NA +104,132,425,"2019",6,0,6,3,94,88,"Xinhua",NA +104,132,426,"2019",6,0,50,3,50,50,"Xinhua",NA +104,132,428,"2019",4,1,19,2,19,21,"Xinhua",NA +104,132,429,"2019",5,1,54,2,54,47,"Xinhua",NA +104,132,431,"2019",2,0,49,2,51,54,"Xinhua",NA +104,132,433,"2019",5,1,50,2,50,50,"Xinhua",NA +104,132,434,"2019",3,1,10,2,10,71,"Xinhua",NA +104,132,436,"2019",2,0,39,2,61,56,"Xinhua",NA +104,132,440,"2019",5,1,78,3,78,78,"Xinhua",NA +104,132,443,"2019",4,1,52,2,52,100,"Xinhua",NA +104,132,444,"2019",3,0,100,2,0,0,"Xinhua",NA +104,132,445,"2019",2,0,50,3,50,29,"Xinhua",NA +104,132,447,"2019",5,0,77,3,23,40,"Xinhua",NA +104,132,453,"2019",4,1,100,2,100,100,"Xinhua",NA +104,132,454,"2019",6,1,9,3,9,93,"Xinhua",NA +104,132,456,"2019",6,0,100,3,0,100,"Xinhua",NA +104,132,458,"2019",6,1,91,3,91,91,"Xinhua",NA +104,132,461,"2019",3,0,100,2,0,50,"Xinhua",NA +104,132,463,"2019",2,1,6,2,6,6,"Xinhua",NA +104,132,468,"2019",3,0,12,2,88,88,"Xinhua",NA +104,132,471,"2019",4,0,91,2,9,9,"Xinhua",NA +104,132,472,"2019",6,0,50,3,50,50,"Xinhua",NA +104,132,474,"2019",5,1,47,3,47,64,"Xinhua",NA +104,132,475,"2019",5,1,51,2,51,75,"Xinhua",NA +104,132,477,"2019",3,1,75,3,75,75,"Xinhua",NA +104,132,480,"2019",2,1,67,2,67,50,"Xinhua",NA +104,132,482,"2019",6,0,57,2,43,0,"Xinhua",NA +104,132,486,"2019",2,1,50,3,50,53,"Xinhua",NA +104,132,489,"2019",3,1,63,3,63,63,"Xinhua",NA +104,132,495,"2019",3,1,69,2,69,69,"Xinhua",NA +104,132,496,"2019",6,1,50,2,50,69,"Xinhua",NA +104,132,501,"2019",2,1,0,3,0,0,"Xinhua",NA +104,132,502,"2019",4,1,92,2,92,92,"Xinhua",NA +104,132,503,"2019",3,0,38,3,62,49,"Xinhua",NA +104,132,506,"2019",4,1,32,2,32,65,"Xinhua",NA +104,132,508,"2019",2,0,41,2,59,27,"Xinhua",NA +104,132,509,"2019",6,1,39,2,39,71,"Xinhua",NA +104,132,510,"2019",6,1,77,2,77,77,"Xinhua",NA +104,132,512,"2019",3,0,81,3,19,19,"Xinhua",NA +104,132,515,"2019",4,1,39,2,39,39,"Xinhua",NA +104,132,521,"2019",3,1,80,3,80,39,"Xinhua",NA +104,132,522,"2019",3,0,24,2,76,38,"Xinhua",NA +104,132,523,"2019",4,1,100,2,100,32,"Xinhua",NA +104,132,526,"2019",5,1,6,2,6,6,"Xinhua",NA +104,132,527,"2019",3,0,100,3,0,0,"Xinhua",NA +104,132,528,"2019",3,1,80,3,80,71,"Xinhua",NA +104,132,534,"2019",6,0,26,2,74,22,"Xinhua",NA +104,132,536,"2019",6,0,91,3,9,9,"Xinhua",NA +104,132,540,"2019",5,1,30,3,30,23,"Xinhua",NA +104,132,542,"2019",6,0,50,2,50,63,"Xinhua",NA +104,132,547,"2019",3,0,100,3,0,0,"Xinhua",NA +104,132,550,"2019",2,0,0,3,100,100,"Xinhua",NA +104,132,551,"2019",2,0,23,2,77,73,"Xinhua",NA +104,132,553,"2019",5,0,1,2,99,99,"Xinhua",NA +104,132,555,"2019",3,1,23,3,23,23,"Xinhua",NA +104,132,557,"2019",2,0,8,3,92,92,"Xinhua",NA +104,132,558,"2019",5,1,71,3,71,58,"Xinhua",NA +104,132,560,"2019",5,0,70,2,30,25,"Xinhua",NA +104,132,562,"2019",5,1,68,3,68,64,"Xinhua",NA +104,132,566,"2019",2,0,20,2,80,80,"Xinhua",NA +104,132,567,"2019",6,0,48,2,52,52,"Xinhua",NA +104,132,571,"2019",3,1,1,2,1,0,"Xinhua",NA +104,132,572,"2019",6,0,81,3,19,19,"Xinhua",NA +104,132,574,"2019",5,1,61,2,61,61,"Xinhua",NA +104,132,578,"2019",5,0,90,3,10,19,"Xinhua",NA +104,132,582,"2019",4,0,61,2,39,39,"Xinhua",NA +104,132,584,"2019",3,1,55,3,55,55,"Xinhua",NA +104,132,586,"2019",4,1,100,2,100,100,"Xinhua",NA +104,132,589,"2019",3,0,81,3,19,27,"Xinhua",NA +104,132,591,"2019",5,1,63,3,63,54,"Xinhua",NA +104,132,594,"2019",4,1,74,2,74,78,"Xinhua",NA +104,132,598,"2019",4,0,56,2,44,32,"Xinhua",NA +104,132,599,"2019",3,0,63,2,37,73,"Xinhua",NA +104,132,602,"2019",6,0,71,2,29,24,"Xinhua",NA +104,132,604,"2019",6,1,45,2,45,60,"Xinhua",NA +104,132,607,"2019",2,1,56,3,56,73,"Xinhua",NA +104,132,608,"2019",5,0,28,2,72,68,"Xinhua",NA +104,132,609,"2019",6,0,50,3,50,50,"Xinhua",NA +104,132,610,"2019",5,0,42,3,58,44,"Xinhua",NA +104,132,611,"2019",6,1,6,3,6,6,"Xinhua",NA +104,132,612,"2019",4,1,50,2,50,50,"Xinhua",NA +104,132,614,"2019",4,0,60,2,40,50,"Xinhua",NA +104,132,618,"2019",4,1,100,2,100,100,"Xinhua",NA +104,132,619,"2019",3,1,48,2,48,47,"Xinhua",NA +104,132,621,"2019",3,1,12,2,12,50,"Xinhua",NA +104,132,622,"2019",4,0,34,2,66,55,"Xinhua",NA +104,132,626,"2019",3,1,76,2,76,6,"Xinhua",NA +104,132,628,"2019",5,1,100,2,100,100,"Xinhua",NA +104,132,630,"2019",3,1,0,3,0,0,"Xinhua",NA +104,132,632,"2019",2,1,80,2,80,64,"Xinhua",NA +104,132,635,"2019",3,1,100,3,100,100,"Xinhua",NA +104,132,637,"2019",3,0,0,2,100,100,"Xinhua",NA +104,132,639,"2019",3,1,44,3,44,35,"Xinhua",NA +104,132,644,"2019",3,0,41,2,59,61,"Xinhua",NA +104,132,645,"2019",2,1,88,2,88,88,"Xinhua",NA +104,132,646,"2019",2,0,38,2,62,62,"Xinhua",NA +104,132,650,"2019",6,1,32,2,32,32,"Xinhua",NA +104,132,651,"2019",2,1,41,3,41,41,"Xinhua",NA +104,132,663,"2019",3,1,0,3,0,0,"Xinhua",NA +104,132,665,"2019",3,0,59,3,41,41,"Xinhua",NA +104,132,673,"2019",3,0,100,3,0,0,"Xinhua",NA +104,132,674,"2019",4,0,2,2,98,98,"Xinhua",NA +104,132,677,"2019",6,0,82,2,18,3,"Xinhua",NA +104,132,678,"2019",3,1,18,3,18,62,"Xinhua",NA +104,132,681,"2019",5,1,17,3,17,17,"Xinhua",NA +104,132,684,"2019",3,0,79,3,21,76,"Xinhua",NA +104,132,689,"2019",3,1,0,3,0,0,"Xinhua",NA +104,132,691,"2019",4,1,34,2,34,72,"Xinhua",NA +104,132,692,"2019",4,1,57,2,57,36,"Xinhua",NA +104,132,695,"2019",2,0,0,3,100,50,"Xinhua",NA +104,132,699,"2019",5,0,84,2,16,16,"Xinhua",NA +104,132,700,"2019",3,0,100,2,0,100,"Xinhua",NA +104,132,701,"2019",5,0,100,2,0,12,"Xinhua",NA +104,132,702,"2019",4,0,100,2,0,0,"Xinhua",NA +104,132,704,"2019",4,1,100,2,100,81,"Xinhua",NA +104,132,705,"2019",3,0,99,3,1,9,"Xinhua",NA +104,132,708,"2019",3,0,50,2,50,50,"Xinhua",NA +104,132,710,"2019",2,1,99,2,99,86,"Xinhua",NA +104,132,714,"2019",5,0,0,2,100,100,"Xinhua",NA +104,132,718,"2019",4,1,0,2,0,0,"Xinhua",NA +104,132,724,"2019",6,0,41,2,59,47,"Xinhua",NA +104,132,725,"2019",3,1,41,3,41,41,"Xinhua",NA +104,132,726,"2019",6,0,0,3,100,100,"Xinhua",NA +104,132,727,"2019",4,1,50,2,50,50,"Xinhua",NA +104,132,728,"2019",2,1,100,3,100,100,"Xinhua",NA +104,132,732,"2019",5,0,38,2,62,62,"Xinhua",NA +104,132,735,"2019",5,0,100,3,0,99,"Xinhua",NA +104,132,739,"2019",6,0,12,3,88,76,"Xinhua",NA +104,132,740,"2019",4,1,50,2,50,50,"Xinhua",NA +104,132,742,"2019",3,0,0,3,100,100,"Xinhua",NA +104,132,745,"2019",6,1,70,2,70,70,"Xinhua",NA +104,132,747,"2019",6,1,50,2,50,50,"Xinhua",NA +104,132,748,"2019",3,0,100,2,0,0,"Xinhua",NA +104,132,753,"2019",6,0,77,2,23,50,"Xinhua",NA +104,132,755,"2019",2,1,61,3,61,61,"Xinhua",NA +104,132,756,"2019",6,0,48,3,52,52,"Xinhua",NA +104,132,760,"2019",6,1,59,2,59,59,"Xinhua",NA +104,132,762,"2019",3,1,97,3,97,97,"Xinhua",NA +104,132,764,"2019",3,0,100,2,0,100,"Xinhua",NA +104,132,766,"2019",4,1,50,2,50,50,"Xinhua",NA +104,132,767,"2019",5,1,0,3,0,50,"Xinhua",NA +104,132,768,"2019",4,0,50,2,50,50,"Xinhua",NA +104,132,769,"2019",3,1,0,3,0,0,"Xinhua",NA +104,132,772,"2019",5,1,100,2,100,100,"Xinhua",NA +104,132,781,"2019",6,0,6,2,94,94,"Xinhua",NA +104,132,787,"2019",4,1,62,2,62,50,"Xinhua",NA +104,132,790,"2019",2,0,0,3,100,100,"Xinhua",NA +104,132,791,"2019",3,1,20,3,20,20,"Xinhua",NA +104,132,794,"2019",6,1,50,3,50,50,"Xinhua",NA +104,132,797,"2019",4,0,90,2,10,100,"Xinhua",NA +104,132,798,"2019",2,1,100,3,100,100,"Xinhua",NA +104,132,800,"2019",6,1,100,2,100,100,"Xinhua",NA +104,132,802,"2019",3,1,100,3,100,82,"Xinhua",NA +104,132,805,"2019",2,0,50,2,50,50,"Xinhua",NA +104,132,806,"2019",4,1,0,2,0,0,"Xinhua",NA +104,132,812,"2019",6,1,29,2,29,38,"Xinhua",NA +104,132,813,"2019",2,1,50,2,50,50,"Xinhua",NA +104,132,814,"2019",6,1,0,2,0,100,"Xinhua",NA +104,132,815,"2019",5,1,76,2,76,76,"Xinhua",NA +104,132,816,"2019",5,1,0,3,0,0,"Xinhua",NA +104,132,823,"2019",6,0,69,3,31,31,"Xinhua",NA +104,132,829,"2019",4,0,70,2,30,37,"Xinhua",NA +104,132,830,"2019",6,1,95,3,95,11,"Xinhua",NA +104,132,833,"2019",3,1,0,3,0,0,"Xinhua",NA +104,132,835,"2019",4,1,65,2,65,65,"Xinhua",NA +104,132,837,"2019",2,0,97,2,3,16,"Xinhua",NA +104,132,838,"2019",3,0,85,3,15,15,"Xinhua",NA +104,132,840,"2019",4,1,81,2,81,74,"Xinhua",NA +104,132,843,"2019",2,0,78,2,22,22,"Xinhua",NA +104,132,844,"2019",2,0,43,2,57,47,"Xinhua",NA +104,132,847,"2019",6,0,100,2,0,0,"Xinhua",NA +104,132,848,"2019",4,1,11,2,11,17,"Xinhua",NA +104,132,849,"2019",5,0,100,3,0,0,"Xinhua",NA +104,132,855,"2019",4,1,82,2,82,50,"Xinhua",NA +104,132,856,"2019",5,1,1,2,1,1,"Xinhua",NA +104,132,860,"2019",3,0,29,3,71,64,"Xinhua",NA +104,132,861,"2019",2,0,0,2,100,0,"Xinhua",NA +104,132,862,"2019",5,0,82,3,18,29,"Xinhua",NA +104,132,863,"2019",5,1,80,3,80,80,"Xinhua",NA +104,132,866,"2019",5,0,99,3,1,3,"Xinhua",NA +104,132,870,"2019",6,0,50,2,50,50,"Xinhua",NA +104,132,872,"2019",4,1,39,2,39,66,"Xinhua",NA +104,132,881,"2019",5,1,8,2,8,11,"Xinhua",NA +104,132,885,"2019",5,1,0,3,0,0,"Xinhua",NA +104,132,888,"2019",5,1,82,3,82,12,"Xinhua",NA +104,132,893,"2019",3,1,50,3,50,50,"Xinhua",NA +104,132,895,"2019",5,1,98,3,98,90,"Xinhua",NA +104,132,896,"2019",4,1,92,2,92,92,"Xinhua",NA +104,132,898,"2019",5,1,100,3,100,0,"Xinhua",NA +104,132,899,"2019",4,1,0,2,0,0,"Xinhua",NA +104,132,900,"2019",6,0,37,3,63,63,"Xinhua",NA +104,132,902,"2019",4,1,100,2,100,0,"Xinhua",NA +104,132,904,"2019",2,0,48,2,52,27,"Xinhua",NA +104,132,906,"2019",6,1,74,2,74,64,"Xinhua",NA +104,132,907,"2019",2,0,41,3,59,50,"Xinhua",NA +104,132,914,"2019",2,0,1,2,99,100,"Xinhua",NA +104,132,915,"2019",3,1,0,3,0,0,"Xinhua",NA +104,132,920,"2019",4,1,78,2,78,56,"Xinhua",NA +104,132,921,"2019",5,1,0,3,0,50,"Xinhua",NA +104,132,922,"2019",5,1,1,2,1,1,"Xinhua",NA +104,132,923,"2019",4,0,93,2,7,7,"Xinhua",NA +104,132,924,"2019",4,0,99,2,1,2,"Xinhua",NA +104,132,925,"2019",5,0,100,3,0,100,"Xinhua",NA +104,132,926,"2019",4,1,40,2,40,40,"Xinhua",NA +104,132,928,"2019",2,0,100,2,0,4,"Xinhua",NA +104,132,935,"2019",6,0,25,3,75,77,"Xinhua",NA +104,132,938,"2019",4,1,1,2,1,1,"Xinhua",NA +104,132,948,"2019",6,1,50,3,50,30,"Xinhua",NA +104,132,949,"2019",2,1,0,3,0,37,"Xinhua",NA +104,132,950,"2019",4,0,83,2,17,17,"Xinhua",NA +104,132,952,"2019",5,1,100,2,100,100,"Xinhua",NA +104,132,954,"2019",6,0,0,3,100,100,"Xinhua",NA +104,132,956,"2019",3,1,50,3,50,50,"Xinhua",NA +104,132,957,"2019",2,1,78,2,78,51,"Xinhua",NA +104,132,960,"2019",5,0,10,3,90,90,"Xinhua",NA +104,132,962,"2019",5,0,100,3,0,0,"Xinhua",NA +104,132,963,"2019",6,0,81,3,19,19,"Xinhua",NA +104,132,968,"2019",5,1,100,3,100,100,"Xinhua",NA +104,132,970,"2019",2,1,92,2,92,81,"Xinhua",NA +104,132,971,"2019",5,1,78,3,78,65,"Xinhua",NA +104,132,972,"2019",3,1,100,3,100,100,"Xinhua",NA +104,132,973,"2019",2,1,69,2,69,58,"Xinhua",NA +104,132,975,"2019",2,0,94,3,6,6,"Xinhua",NA +104,132,982,"2019",5,0,96,3,4,4,"Xinhua",NA +104,132,983,"2019",6,0,22,3,78,78,"Xinhua",NA +104,132,987,"2019",2,0,1,3,99,91,"Xinhua",NA +104,132,988,"2019",3,0,95,2,5,49,"Xinhua",NA +104,132,991,"2019",2,1,50,3,50,50,"Xinhua",NA +104,132,993,"2019",6,0,100,3,0,0,"Xinhua",NA +104,132,995,"2019",3,0,100,3,0,0,"Xinhua",NA +104,132,998,"2019",4,1,100,2,100,100,"Xinhua",NA +104,132,999,"2019",4,1,92,2,92,99,"Xinhua",NA +104,132,1000,"2019",4,0,100,2,0,50,"Xinhua",NA +104,132,1002,"2019",2,0,40,2,60,60,"Xinhua",NA +104,132,1004,"2019",2,1,98,2,98,92,"Xinhua",NA +104,132,1005,"2019",2,0,50,2,50,50,"Xinhua",NA +104,132,1007,"2019",2,0,19,2,81,81,"Xinhua",NA +104,132,1008,"2019",4,1,67,2,67,67,"Xinhua",NA +104,132,1010,"2019",4,1,88,2,88,82,"Xinhua",NA +104,132,1011,"2019",3,0,100,2,0,0,"Xinhua",NA +104,132,1013,"2019",3,1,100,2,100,100,"Xinhua",NA +104,132,1016,"2019",4,0,59,2,41,51,"Xinhua",NA +104,132,1022,"2019",4,0,100,2,0,0,"Xinhua",NA +104,132,1024,"2019",5,1,2,3,2,6,"Xinhua",NA +104,132,1026,"2019",5,0,100,3,0,0,"Xinhua",NA +104,132,1027,"2019",4,0,100,2,0,3,"Xinhua",NA +104,132,1028,"2019",5,1,50,2,50,50,"Xinhua",NA +104,132,1029,"2019",4,0,100,2,0,0,"Xinhua",NA +104,132,1034,"2019",3,0,100,2,0,0,"Xinhua",NA +104,132,1037,"2019",2,0,92,3,8,0,"Xinhua",NA +104,132,1040,"2019",4,0,77,2,23,36,"Xinhua",NA +104,132,1042,"2019",2,1,3,3,3,3,"Xinhua",NA +104,132,1046,"2019",6,1,38,3,38,38,"Xinhua",NA +104,132,1048,"2019",3,0,91,2,9,38,"Xinhua",NA +104,132,1058,"2019",5,0,20,2,80,99,"Xinhua",NA +104,132,1059,"2019",3,0,91,2,9,77,"Xinhua",NA +104,132,1061,"2019",3,0,100,3,0,0,"Xinhua",NA +104,132,1062,"2019",6,1,0,3,0,2,"Xinhua",NA +104,132,1063,"2019",2,0,52,2,48,49,"Xinhua",NA +104,132,1065,"2019",2,1,100,3,100,100,"Xinhua",NA +104,132,1067,"2019",2,0,4,2,96,96,"Xinhua",NA +104,132,1068,"2019",6,1,70,2,70,75,"Xinhua",NA +104,132,1071,"2019",6,1,21,2,21,21,"Xinhua",NA +104,132,1073,"2019",6,1,84,2,84,72,"Xinhua",NA +104,132,1076,"2019",4,1,0,2,0,51,"Xinhua",NA +104,132,1078,"2019",5,1,73,3,73,73,"Xinhua",NA +104,132,1079,"2019",6,0,100,3,0,0,"Xinhua",NA +104,132,1080,"2019",3,1,17,3,17,98,"Xinhua",NA +104,132,1081,"2019",5,0,88,3,12,12,"Xinhua",NA +104,132,1084,"2019",6,0,81,3,19,14,"Xinhua",NA +104,132,1086,"2019",3,1,86,2,86,86,"Xinhua",NA +104,132,1087,"2019",5,1,100,2,100,100,"Xinhua",NA +104,132,1089,"2019",4,0,40,2,60,71,"Xinhua",NA +104,132,1090,"2019",6,1,51,3,51,51,"Xinhua",NA +104,132,1092,"2019",6,1,0,3,0,0,"Xinhua",NA +104,132,1093,"2019",2,0,9,3,91,91,"Xinhua",NA +104,132,1095,"2019",3,0,7,2,93,93,"Xinhua",NA +104,132,1097,"2019",5,1,84,3,84,87,"Xinhua",NA +104,132,1098,"2019",6,1,95,3,95,88,"Xinhua",NA +104,132,1099,"2019",5,0,90,2,10,49,"Xinhua",NA +104,132,1105,"2019",3,0,81,3,19,18,"Xinhua",NA +104,132,1106,"2019",6,0,80,3,20,11,"Xinhua",NA +104,132,1109,"2019",3,1,10,2,10,92,"Xinhua",NA +104,132,1112,"2019",2,0,50,3,50,50,"Xinhua",NA +104,132,1114,"2019",3,1,100,3,100,100,"Xinhua",NA +104,132,1115,"2019",6,0,0,2,100,100,"Xinhua",NA +104,132,1116,"2019",5,0,82,2,18,18,"Xinhua",NA +104,132,1119,"2019",3,1,50,2,50,50,"Xinhua",NA +104,132,1120,"2019",4,0,80,2,20,16,"Xinhua",NA +104,132,1122,"2019",4,1,80,2,80,80,"Xinhua",NA +104,132,1125,"2019",5,0,39,2,61,54,"Xinhua",NA +104,132,1128,"2019",6,1,100,2,100,100,"Xinhua",NA +104,132,1129,"2019",6,1,77,3,77,80,"Xinhua",NA +104,132,1130,"2019",3,0,100,2,0,50,"Xinhua",NA +104,132,1135,"2019",6,0,100,2,0,0,"Xinhua",NA +104,132,1137,"2019",6,1,17,2,17,17,"Xinhua",NA +104,132,1139,"2019",4,0,100,2,0,0,"Xinhua",NA +104,132,1141,"2019",2,0,100,3,0,0,"Xinhua",NA +104,132,1142,"2019",2,0,82,3,18,81,"Xinhua",NA +104,132,1146,"2019",5,1,89,3,89,89,"Xinhua",NA +104,132,1147,"2019",4,1,64,2,64,59,"Xinhua",NA +104,132,1148,"2019",3,0,10,2,90,78,"Xinhua",NA +104,132,1158,"2019",5,1,67,2,67,69,"Xinhua",NA +104,132,1159,"2019",6,1,74,3,74,64,"Xinhua",NA +104,132,1161,"2019",6,0,77,2,23,17,"Xinhua",NA +104,132,1165,"2019",2,1,77,3,77,82,"Xinhua",NA +104,132,1167,"2019",4,0,82,2,18,14,"Xinhua",NA +104,133,144,"2019",6,0,0,2,100,96,"Huanqiu",NA +104,133,151,"2019",3,0,1,3,99,50,"Huanqiu",NA +104,133,152,"2019",3,0,91,3,9,0,"Huanqiu",NA +104,133,154,"2019",2,0,85,2,15,15,"Huanqiu",NA +104,133,155,"2019",3,1,91,3,91,88,"Huanqiu",NA +104,133,157,"2019",5,1,72,2,72,66,"Huanqiu",NA +104,133,158,"2019",2,0,90,3,10,18,"Huanqiu",NA +104,133,160,"2019",6,1,0,2,0,0,"Huanqiu",NA +104,133,163,"2019",5,1,62,3,62,62,"Huanqiu",NA +104,133,166,"2019",6,0,81,2,19,19,"Huanqiu",NA +104,133,167,"2019",6,0,97,2,3,35,"Huanqiu",NA +104,133,173,"2019",2,1,42,2,42,85,"Huanqiu",NA +104,133,176,"2019",3,0,0,2,100,100,"Huanqiu",NA +104,133,178,"2019",5,0,100,3,0,0,"Huanqiu",NA +104,133,179,"2019",6,1,76,2,76,70,"Huanqiu",NA +104,133,184,"2019",6,0,0,3,100,100,"Huanqiu",NA +104,133,185,"2019",3,1,25,2,25,28,"Huanqiu",NA +104,133,194,"2019",3,0,93,2,7,92,"Huanqiu",NA +104,133,198,"2019",2,1,72,2,72,23,"Huanqiu",NA +104,133,199,"2019",4,1,40,5,40,NA,"Huanqiu",NA +104,133,200,"2019",6,1,52,2,52,49,"Huanqiu",NA +104,133,204,"2019",3,1,59,3,59,90,"Huanqiu",NA +104,133,205,"2019",4,0,70,5,30,NA,"Huanqiu",NA +104,133,206,"2019",2,1,51,2,51,76,"Huanqiu",NA +104,133,207,"2019",3,0,30,3,70,66,"Huanqiu",NA +104,133,208,"2019",6,0,60,3,40,25,"Huanqiu",NA +104,133,209,"2019",5,0,92,2,8,8,"Huanqiu",NA +104,133,214,"2019",6,1,90,3,90,91,"Huanqiu",NA +104,133,215,"2019",2,1,1,2,1,78,"Huanqiu",NA +104,133,220,"2019",5,0,69,2,31,50,"Huanqiu",NA +104,133,227,"2019",6,1,81,3,81,81,"Huanqiu",NA +104,133,229,"2019",6,0,50,3,50,50,"Huanqiu",NA +104,133,231,"2019",2,0,100,3,0,0,"Huanqiu",NA +104,133,234,"2019",3,0,97,2,3,5,"Huanqiu",NA +104,133,235,"2019",5,0,55,2,45,95,"Huanqiu",NA +104,133,236,"2019",5,1,74,2,74,50,"Huanqiu",NA +104,133,247,"2019",5,0,0,3,100,50,"Huanqiu",NA +104,133,248,"2019",3,0,50,3,50,50,"Huanqiu",NA +104,133,250,"2019",4,0,30,5,70,NA,"Huanqiu",NA +104,133,254,"2019",6,0,17,3,83,50,"Huanqiu",NA +104,133,255,"2019",2,1,100,3,100,97,"Huanqiu",NA +104,133,256,"2019",2,0,72,3,28,19,"Huanqiu",NA +104,133,257,"2019",2,1,71,2,71,17,"Huanqiu",NA +104,133,259,"2019",2,1,100,2,100,100,"Huanqiu",NA +104,133,263,"2019",2,1,92,3,92,100,"Huanqiu",NA +104,133,265,"2019",3,0,80,3,20,40,"Huanqiu",NA +104,133,267,"2019",5,0,80,3,20,23,"Huanqiu",NA +104,133,271,"2019",5,1,83,2,83,83,"Huanqiu",NA +104,133,272,"2019",5,0,100,2,0,0,"Huanqiu",NA +104,133,274,"2019",2,0,100,3,0,0,"Huanqiu",NA +104,133,276,"2019",6,1,0,3,0,18,"Huanqiu",NA +104,133,278,"2019",6,1,91,2,91,50,"Huanqiu",NA +104,133,279,"2019",2,0,100,2,0,0,"Huanqiu",NA +104,133,283,"2019",2,1,79,2,79,92,"Huanqiu",NA +104,133,285,"2019",2,0,100,3,0,0,"Huanqiu",NA +104,133,288,"2019",4,1,82,5,82,NA,"Huanqiu",NA +104,133,289,"2019",6,0,6,2,94,93,"Huanqiu",NA +104,133,290,"2019",3,0,71,2,29,50,"Huanqiu",NA +104,133,293,"2019",3,0,0,2,100,100,"Huanqiu",NA +104,133,296,"2019",3,1,50,2,50,50,"Huanqiu",NA +104,133,299,"2019",2,1,100,3,100,100,"Huanqiu",NA +104,133,302,"2019",2,1,58,2,58,50,"Huanqiu",NA +104,133,305,"2019",2,0,100,3,0,10,"Huanqiu",NA +104,133,306,"2019",3,1,66,2,66,50,"Huanqiu",NA +104,133,310,"2019",5,1,11,2,11,11,"Huanqiu",NA +104,133,318,"2019",5,1,75,3,75,75,"Huanqiu",NA +104,133,319,"2019",5,1,6,2,6,0,"Huanqiu",NA +104,133,325,"2019",2,1,2,3,2,0,"Huanqiu",NA +104,133,327,"2019",5,1,38,3,38,38,"Huanqiu",NA +104,133,331,"2019",6,0,89,2,11,11,"Huanqiu",NA +104,133,332,"2019",2,1,81,2,81,50,"Huanqiu",NA +104,133,335,"2019",4,0,65,5,35,NA,"Huanqiu",NA +104,133,339,"2019",6,0,62,3,38,38,"Huanqiu",NA +104,133,341,"2019",6,1,70,2,70,63,"Huanqiu",NA +104,133,348,"2019",4,0,100,5,0,NA,"Huanqiu",NA +104,133,353,"2019",6,0,4,2,96,57,"Huanqiu",NA +104,133,358,"2019",6,1,68,2,68,50,"Huanqiu",NA +104,133,359,"2019",3,1,78,2,78,29,"Huanqiu",NA +104,133,363,"2019",5,1,50,2,50,50,"Huanqiu",NA +104,133,370,"2019",6,1,100,3,100,75,"Huanqiu",NA +104,133,372,"2019",5,0,50,3,50,50,"Huanqiu",NA +104,133,382,"2019",6,1,100,2,100,4,"Huanqiu",NA +104,133,383,"2019",3,1,0,3,0,0,"Huanqiu",NA +104,133,384,"2019",3,0,50,3,50,50,"Huanqiu",NA +104,133,386,"2019",3,0,0,3,100,50,"Huanqiu",NA +104,133,387,"2019",4,1,93,5,93,NA,"Huanqiu",NA +104,133,388,"2019",2,1,86,3,86,100,"Huanqiu",NA +104,133,389,"2019",6,0,55,2,45,49,"Huanqiu",NA +104,133,393,"2019",6,1,100,3,100,93,"Huanqiu",NA +104,133,403,"2019",2,0,99,3,1,1,"Huanqiu",NA +104,133,407,"2019",5,0,100,2,0,0,"Huanqiu",NA +104,133,409,"2019",3,0,81,2,19,19,"Huanqiu",NA +104,133,413,"2019",2,1,58,3,58,47,"Huanqiu",NA +104,133,414,"2019",6,1,52,3,52,52,"Huanqiu",NA +104,133,415,"2019",5,0,50,3,50,50,"Huanqiu",NA +104,133,417,"2019",2,1,91,2,91,25,"Huanqiu",NA +104,133,426,"2019",6,0,50,2,50,50,"Huanqiu",NA +104,133,427,"2019",2,0,50,3,50,64,"Huanqiu",NA +104,133,429,"2019",5,1,54,3,54,54,"Huanqiu",NA +104,133,433,"2019",5,1,50,3,50,50,"Huanqiu",NA +104,133,435,"2019",5,1,12,2,12,50,"Huanqiu",NA +104,133,438,"2019",5,1,0,3,0,52,"Huanqiu",NA +104,133,439,"2019",6,1,73,2,73,50,"Huanqiu",NA +104,133,440,"2019",5,1,78,2,78,22,"Huanqiu",NA +104,133,444,"2019",3,0,100,3,0,0,"Huanqiu",NA +104,133,445,"2019",2,0,71,2,29,50,"Huanqiu",NA +104,133,448,"2019",6,0,34,3,66,66,"Huanqiu",NA +104,133,455,"2019",5,1,80,3,80,76,"Huanqiu",NA +104,133,456,"2019",6,0,0,2,100,0,"Huanqiu",NA +104,133,457,"2019",5,1,54,3,54,46,"Huanqiu",NA +104,133,459,"2019",5,0,50,2,50,50,"Huanqiu",NA +104,133,462,"2019",4,0,22,5,78,NA,"Huanqiu",NA +104,133,463,"2019",2,1,8,3,8,6,"Huanqiu",NA +104,133,465,"2019",2,1,72,2,72,64,"Huanqiu",NA +104,133,466,"2019",3,1,0,3,0,0,"Huanqiu",NA +104,133,470,"2019",3,0,0,2,100,0,"Huanqiu",NA +104,133,472,"2019",6,0,50,2,50,50,"Huanqiu",NA +104,133,474,"2019",5,1,64,2,64,64,"Huanqiu",NA +104,133,475,"2019",5,1,64,3,64,51,"Huanqiu",NA +104,133,478,"2019",2,0,18,3,82,50,"Huanqiu",NA +104,133,482,"2019",6,0,26,3,74,43,"Huanqiu",NA +104,133,483,"2019",6,0,79,2,21,0,"Huanqiu",NA +104,133,484,"2019",2,1,40,2,40,50,"Huanqiu",NA +104,133,485,"2019",6,1,12,3,12,12,"Huanqiu",NA +104,133,488,"2019",3,0,65,2,35,35,"Huanqiu",NA +104,133,491,"2019",4,1,19,5,19,NA,"Huanqiu",NA +104,133,492,"2019",4,0,43,5,57,NA,"Huanqiu",NA +104,133,498,"2019",3,0,91,3,9,9,"Huanqiu",NA +104,133,500,"2019",6,0,100,3,0,0,"Huanqiu",NA +104,133,504,"2019",4,1,25,5,25,NA,"Huanqiu",NA +104,133,511,"2019",2,0,55,2,45,33,"Huanqiu",NA +104,133,512,"2019",3,0,81,2,19,19,"Huanqiu",NA +104,133,516,"2019",6,1,66,3,66,66,"Huanqiu",NA +104,133,522,"2019",3,0,24,3,76,76,"Huanqiu",NA +104,133,525,"2019",6,0,78,2,22,22,"Huanqiu",NA +104,133,526,"2019",5,1,6,3,6,6,"Huanqiu",NA +104,133,531,"2019",5,0,58,2,42,65,"Huanqiu",NA +104,133,532,"2019",6,1,50,2,50,50,"Huanqiu",NA +104,133,533,"2019",2,0,83,2,17,17,"Huanqiu",NA +104,133,534,"2019",6,0,58,3,42,74,"Huanqiu",NA +104,133,537,"2019",6,0,58,2,42,32,"Huanqiu",NA +104,133,538,"2019",5,0,40,2,60,44,"Huanqiu",NA +104,133,539,"2019",6,0,7,2,93,87,"Huanqiu",NA +104,133,540,"2019",5,1,23,2,23,7,"Huanqiu",NA +104,133,541,"2019",6,0,79,3,21,21,"Huanqiu",NA +104,133,544,"2019",4,0,61,5,39,NA,"Huanqiu",NA +104,133,545,"2019",6,0,46,3,54,46,"Huanqiu",NA +104,133,549,"2019",6,1,86,3,86,53,"Huanqiu",NA +104,133,552,"2019",2,0,84,2,16,17,"Huanqiu",NA +104,133,556,"2019",2,0,100,2,0,4,"Huanqiu",NA +104,133,561,"2019",2,1,59,3,59,82,"Huanqiu",NA +104,133,565,"2019",3,0,35,3,65,69,"Huanqiu",NA +104,133,568,"2019",3,0,31,2,69,67,"Huanqiu",NA +104,133,569,"2019",5,1,29,3,29,29,"Huanqiu",NA +104,133,573,"2019",4,0,100,5,0,NA,"Huanqiu",NA +104,133,576,"2019",2,1,0,2,0,0,"Huanqiu",NA +104,133,577,"2019",2,1,0,3,0,19,"Huanqiu",NA +104,133,579,"2019",2,1,29,3,29,29,"Huanqiu",NA +104,133,580,"2019",3,0,50,3,50,50,"Huanqiu",NA +104,133,581,"2019",2,1,84,3,84,69,"Huanqiu",NA +104,133,585,"2019",5,0,7,2,93,60,"Huanqiu",NA +104,133,587,"2019",5,0,11,2,89,89,"Huanqiu",NA +104,133,588,"2019",5,1,70,2,70,61,"Huanqiu",NA +104,133,590,"2019",3,0,11,3,89,89,"Huanqiu",NA +104,133,593,"2019",3,0,79,2,21,21,"Huanqiu",NA +104,133,599,"2019",3,0,75,3,25,37,"Huanqiu",NA +104,133,601,"2019",3,1,74,2,74,63,"Huanqiu",NA +104,133,602,"2019",6,0,61,3,39,29,"Huanqiu",NA +104,133,611,"2019",6,1,6,2,6,6,"Huanqiu",NA +104,133,615,"2019",5,0,70,3,30,30,"Huanqiu",NA +104,133,616,"2019",3,1,31,2,31,40,"Huanqiu",NA +104,133,623,"2019",5,1,93,3,93,85,"Huanqiu",NA +104,133,625,"2019",5,0,68,3,32,29,"Huanqiu",NA +104,133,626,"2019",3,1,65,3,65,76,"Huanqiu",NA +104,133,629,"2019",2,1,100,3,100,100,"Huanqiu",NA +104,133,630,"2019",3,1,0,2,0,0,"Huanqiu",NA +104,133,632,"2019",2,1,80,3,80,80,"Huanqiu",NA +104,133,637,"2019",3,0,0,3,100,100,"Huanqiu",NA +104,133,643,"2019",5,1,25,3,25,25,"Huanqiu",NA +104,133,644,"2019",3,0,35,3,65,59,"Huanqiu",NA +104,133,650,"2019",6,1,32,3,32,32,"Huanqiu",NA +104,133,652,"2019",6,1,0,2,0,0,"Huanqiu",NA +104,133,655,"2019",5,1,100,3,100,100,"Huanqiu",NA +104,133,656,"2019",3,1,52,3,52,52,"Huanqiu",NA +104,133,661,"2019",4,1,20,5,20,NA,"Huanqiu",NA +104,133,662,"2019",2,0,11,3,89,100,"Huanqiu",NA +104,133,665,"2019",3,0,59,2,41,50,"Huanqiu",NA +104,133,667,"2019",3,0,100,2,0,0,"Huanqiu",NA +104,133,669,"2019",3,1,92,2,92,92,"Huanqiu",NA +104,133,672,"2019",6,1,0,2,0,0,"Huanqiu",NA +104,133,673,"2019",3,0,100,2,0,0,"Huanqiu",NA +104,133,675,"2019",4,1,10,5,10,NA,"Huanqiu",NA +104,133,676,"2019",6,1,69,3,69,48,"Huanqiu",NA +104,133,678,"2019",3,1,62,2,62,27,"Huanqiu",NA +104,133,682,"2019",6,0,29,2,71,71,"Huanqiu",NA +104,133,684,"2019",3,0,24,2,76,18,"Huanqiu",NA +104,133,686,"2019",2,1,0,3,0,0,"Huanqiu",NA +104,133,687,"2019",4,0,5,5,95,NA,"Huanqiu",NA +104,133,690,"2019",3,0,0,2,100,100,"Huanqiu",NA +104,133,694,"2019",4,1,93,5,93,NA,"Huanqiu",NA +104,133,699,"2019",5,0,100,3,0,16,"Huanqiu",NA +104,133,705,"2019",3,0,91,2,9,25,"Huanqiu",NA +104,133,706,"2019",2,1,3,2,3,3,"Huanqiu",NA +104,133,707,"2019",5,0,0,2,100,43,"Huanqiu",NA +104,133,711,"2019",6,1,0,3,0,0,"Huanqiu",NA +104,133,713,"2019",5,1,52,3,52,52,"Huanqiu",NA +104,133,715,"2019",2,0,75,3,25,50,"Huanqiu",NA +104,133,717,"2019",2,1,0,3,0,0,"Huanqiu",NA +104,133,719,"2019",2,1,68,3,68,51,"Huanqiu",NA +104,133,729,"2019",3,0,100,3,0,1,"Huanqiu",NA +104,133,731,"2019",3,0,65,2,35,44,"Huanqiu",NA +104,133,732,"2019",5,0,38,3,62,62,"Huanqiu",NA +104,133,737,"2019",5,1,0,2,0,32,"Huanqiu",NA +104,133,739,"2019",6,0,24,2,76,76,"Huanqiu",NA +104,133,741,"2019",6,0,26,3,74,74,"Huanqiu",NA +104,133,749,"2019",6,1,50,3,50,50,"Huanqiu",NA +104,133,751,"2019",5,1,50,3,50,50,"Huanqiu",NA +104,133,752,"2019",6,0,87,2,13,64,"Huanqiu",NA +104,133,753,"2019",6,0,100,3,0,23,"Huanqiu",NA +104,133,754,"2019",3,1,23,3,23,69,"Huanqiu",NA +104,133,756,"2019",6,0,48,2,52,52,"Huanqiu",NA +104,133,758,"2019",6,1,100,2,100,60,"Huanqiu",NA +104,133,759,"2019",6,0,12,3,88,88,"Huanqiu",NA +104,133,764,"2019",3,0,46,3,54,0,"Huanqiu",NA +104,133,767,"2019",5,1,50,2,50,50,"Huanqiu",NA +104,133,770,"2019",2,1,0,2,0,0,"Huanqiu",NA +104,133,771,"2019",3,1,0,2,0,17,"Huanqiu",NA +104,133,773,"2019",4,0,60,5,40,NA,"Huanqiu",NA +104,133,776,"2019",3,1,20,3,20,20,"Huanqiu",NA +104,133,784,"2019",2,1,50,2,50,50,"Huanqiu",NA +104,133,786,"2019",5,0,0,3,100,100,"Huanqiu",NA +104,133,791,"2019",3,1,20,2,20,20,"Huanqiu",NA +104,133,792,"2019",6,0,16,2,84,95,"Huanqiu",NA +104,133,793,"2019",3,1,82,2,82,50,"Huanqiu",NA +104,133,799,"2019",4,0,15,5,85,NA,"Huanqiu",NA +104,133,801,"2019",5,0,100,3,0,0,"Huanqiu",NA +104,133,803,"2019",6,1,100,3,100,100,"Huanqiu",NA +104,133,807,"2019",3,1,100,2,100,100,"Huanqiu",NA +104,133,810,"2019",3,1,2,2,2,50,"Huanqiu",NA +104,133,811,"2019",6,0,50,2,50,50,"Huanqiu",NA +104,133,818,"2019",2,1,0,3,0,0,"Huanqiu",NA +104,133,819,"2019",2,0,2,3,98,100,"Huanqiu",NA +104,133,830,"2019",6,1,11,2,11,11,"Huanqiu",NA +104,133,833,"2019",3,1,0,2,0,5,"Huanqiu",NA +104,133,841,"2019",4,1,80,5,80,NA,"Huanqiu",NA +104,133,842,"2019",6,0,72,2,28,28,"Huanqiu",NA +104,133,845,"2019",6,1,50,2,50,50,"Huanqiu",NA +104,133,846,"2019",6,1,1,2,1,1,"Huanqiu",NA +104,133,847,"2019",6,0,100,3,0,0,"Huanqiu",NA +104,133,852,"2019",6,0,67,2,33,35,"Huanqiu",NA +104,133,858,"2019",4,0,50,5,50,NA,"Huanqiu",NA +104,133,862,"2019",5,0,71,2,29,39,"Huanqiu",NA +104,133,863,"2019",5,1,80,2,80,80,"Huanqiu",NA +104,133,864,"2019",6,0,14,3,86,86,"Huanqiu",NA +104,133,868,"2019",2,1,21,2,21,76,"Huanqiu",NA +104,133,869,"2019",4,1,57,5,57,NA,"Huanqiu",NA +104,133,875,"2019",6,1,52,2,52,57,"Huanqiu",NA +104,133,877,"2019",2,1,50,2,50,50,"Huanqiu",NA +104,133,879,"2019",5,1,0,2,0,0,"Huanqiu",NA +104,133,880,"2019",2,1,98,2,98,41,"Huanqiu",NA +104,133,882,"2019",3,1,16,3,16,50,"Huanqiu",NA +104,133,883,"2019",2,1,89,3,89,89,"Huanqiu",NA +104,133,890,"2019",2,0,88,2,12,12,"Huanqiu",NA +104,133,892,"2019",5,0,50,2,50,50,"Huanqiu",NA +104,133,893,"2019",3,1,50,2,50,50,"Huanqiu",NA +104,133,895,"2019",5,1,90,2,90,81,"Huanqiu",NA +104,133,897,"2019",5,1,9,2,9,1,"Huanqiu",NA +104,133,904,"2019",2,0,47,3,53,52,"Huanqiu",NA +104,133,907,"2019",2,0,50,2,50,50,"Huanqiu",NA +104,133,909,"2019",6,1,94,3,94,84,"Huanqiu",NA +104,133,911,"2019",3,0,11,2,89,89,"Huanqiu",NA +104,133,912,"2019",4,0,0,5,100,NA,"Huanqiu",NA +104,133,929,"2019",5,1,70,3,70,78,"Huanqiu",NA +104,133,930,"2019",6,1,87,3,87,47,"Huanqiu",NA +104,133,933,"2019",3,1,4,2,4,4,"Huanqiu",NA +104,133,935,"2019",6,0,23,2,77,79,"Huanqiu",NA +104,133,936,"2019",4,1,100,5,100,NA,"Huanqiu",NA +104,133,939,"2019",4,0,41,5,59,NA,"Huanqiu",NA +104,133,940,"2019",6,0,67,3,33,42,"Huanqiu",NA +104,133,941,"2019",2,0,65,2,35,35,"Huanqiu",NA +104,133,942,"2019",3,0,19,3,81,81,"Huanqiu",NA +104,133,944,"2019",4,1,100,5,100,NA,"Huanqiu",NA +104,133,947,"2019",5,0,83,3,17,15,"Huanqiu",NA +104,133,949,"2019",2,1,37,2,37,41,"Huanqiu",NA +104,133,951,"2019",3,0,81,3,19,19,"Huanqiu",NA +104,133,953,"2019",4,0,60,5,40,NA,"Huanqiu",NA +104,133,955,"2019",4,0,100,5,0,NA,"Huanqiu",NA +104,133,956,"2019",3,1,50,2,50,50,"Huanqiu",NA +104,133,959,"2019",4,0,0,5,100,NA,"Huanqiu",NA +104,133,961,"2019",5,0,50,3,50,50,"Huanqiu",NA +104,133,962,"2019",5,0,100,2,0,0,"Huanqiu",NA +104,133,963,"2019",6,0,81,2,19,19,"Huanqiu",NA +104,133,964,"2019",5,1,0,3,0,62,"Huanqiu",NA +104,133,965,"2019",4,1,49,5,49,NA,"Huanqiu",NA +104,133,967,"2019",6,0,100,2,0,0,"Huanqiu",NA +104,133,969,"2019",4,0,100,5,0,NA,"Huanqiu",NA +104,133,971,"2019",5,1,65,2,65,65,"Huanqiu",NA +104,133,974,"2019",6,1,50,3,50,50,"Huanqiu",NA +104,133,977,"2019",3,1,50,3,50,50,"Huanqiu",NA +104,133,981,"2019",2,0,20,2,80,80,"Huanqiu",NA +104,133,984,"2019",6,0,92,3,8,8,"Huanqiu",NA +104,133,985,"2019",5,1,93,2,93,0,"Huanqiu",NA +104,133,987,"2019",2,0,9,2,91,81,"Huanqiu",NA +104,133,990,"2019",4,1,81,5,81,NA,"Huanqiu",NA +104,133,991,"2019",2,1,50,2,50,50,"Huanqiu",NA +104,133,992,"2019",2,1,21,2,21,58,"Huanqiu",NA +104,133,997,"2019",3,0,97,2,3,9,"Huanqiu",NA +104,133,1001,"2019",2,0,4,3,96,70,"Huanqiu",NA +104,133,1007,"2019",2,0,19,3,81,81,"Huanqiu",NA +104,133,1009,"2019",6,1,85,3,85,93,"Huanqiu",NA +104,133,1011,"2019",3,0,100,3,0,0,"Huanqiu",NA +104,133,1013,"2019",3,1,100,3,100,100,"Huanqiu",NA +104,133,1014,"2019",4,1,100,5,100,NA,"Huanqiu",NA +104,133,1015,"2019",2,1,91,3,91,50,"Huanqiu",NA +104,133,1018,"2019",2,1,50,3,50,50,"Huanqiu",NA +104,133,1020,"2019",3,0,79,2,21,21,"Huanqiu",NA +104,133,1021,"2019",5,0,96,3,4,7,"Huanqiu",NA +104,133,1023,"2019",5,0,100,2,0,100,"Huanqiu",NA +104,133,1024,"2019",5,1,6,2,6,12,"Huanqiu",NA +104,133,1025,"2019",4,0,65,5,35,NA,"Huanqiu",NA +104,133,1032,"2019",6,0,97,3,3,14,"Huanqiu",NA +104,133,1035,"2019",5,1,100,3,100,100,"Huanqiu",NA +104,133,1038,"2019",4,1,100,5,100,NA,"Huanqiu",NA +104,133,1041,"2019",6,0,50,3,50,50,"Huanqiu",NA +104,133,1043,"2019",5,0,100,2,0,0,"Huanqiu",NA +104,133,1045,"2019",2,1,100,3,100,88,"Huanqiu",NA +104,133,1047,"2019",6,1,86,3,86,85,"Huanqiu",NA +104,133,1049,"2019",5,1,52,2,52,51,"Huanqiu",NA +104,133,1050,"2019",3,1,53,3,53,53,"Huanqiu",NA +104,133,1051,"2019",6,1,98,2,98,98,"Huanqiu",NA +104,133,1053,"2019",3,0,100,3,0,0,"Huanqiu",NA +104,133,1054,"2019",5,0,81,2,19,20,"Huanqiu",NA +104,133,1059,"2019",3,0,91,3,9,9,"Huanqiu",NA +104,133,1061,"2019",3,0,100,2,0,0,"Huanqiu",NA +104,133,1062,"2019",6,1,2,2,2,0,"Huanqiu",NA +104,133,1063,"2019",2,0,53,3,47,48,"Huanqiu",NA +104,133,1065,"2019",2,1,100,2,100,100,"Huanqiu",NA +104,133,1068,"2019",6,1,66,3,66,70,"Huanqiu",NA +104,133,1069,"2019",6,1,0,3,0,0,"Huanqiu",NA +104,133,1072,"2019",3,1,0,3,0,0,"Huanqiu",NA +104,133,1074,"2019",2,0,61,2,39,39,"Huanqiu",NA +104,133,1075,"2019",6,1,0,3,0,0,"Huanqiu",NA +104,133,1077,"2019",2,1,100,3,100,50,"Huanqiu",NA +104,133,1078,"2019",5,1,73,2,73,73,"Huanqiu",NA +104,133,1081,"2019",5,0,88,2,12,12,"Huanqiu",NA +104,133,1084,"2019",6,0,86,2,14,35,"Huanqiu",NA +104,133,1088,"2019",3,0,50,2,50,50,"Huanqiu",NA +104,133,1099,"2019",5,0,71,3,29,10,"Huanqiu",NA +104,133,1100,"2019",3,0,2,3,98,94,"Huanqiu",NA +104,133,1103,"2019",5,0,2,3,98,88,"Huanqiu",NA +104,133,1105,"2019",3,0,82,2,18,36,"Huanqiu",NA +104,133,1107,"2019",5,1,78,2,78,83,"Huanqiu",NA +104,133,1108,"2019",2,0,74,3,26,23,"Huanqiu",NA +104,133,1109,"2019",3,1,10,3,10,10,"Huanqiu",NA +104,133,1110,"2019",5,0,84,3,16,22,"Huanqiu",NA +104,133,1111,"2019",2,1,100,3,100,100,"Huanqiu",NA +104,133,1114,"2019",3,1,100,2,100,100,"Huanqiu",NA +104,133,1115,"2019",6,0,0,3,100,100,"Huanqiu",NA +104,133,1117,"2019",5,0,100,2,0,0,"Huanqiu",NA +104,133,1121,"2019",3,1,86,2,86,77,"Huanqiu",NA +104,133,1124,"2019",2,0,7,3,93,93,"Huanqiu",NA +104,133,1125,"2019",5,0,51,3,49,61,"Huanqiu",NA +104,133,1131,"2019",6,1,7,2,7,7,"Huanqiu",NA +104,133,1132,"2019",4,1,93,5,93,NA,"Huanqiu",NA +104,133,1133,"2019",2,0,83,3,17,17,"Huanqiu",NA +104,133,1134,"2019",5,0,71,3,29,29,"Huanqiu",NA +104,133,1135,"2019",6,0,100,3,0,0,"Huanqiu",NA +104,133,1136,"2019",6,0,92,3,8,17,"Huanqiu",NA +104,133,1140,"2019",2,1,97,3,97,93,"Huanqiu",NA +104,133,1144,"2019",6,0,13,3,87,87,"Huanqiu",NA +104,133,1149,"2019",3,1,82,2,82,82,"Huanqiu",NA +104,133,1150,"2019",2,1,79,2,79,50,"Huanqiu",NA +104,133,1152,"2019",3,1,50,3,50,50,"Huanqiu",NA +104,133,1153,"2019",3,1,65,3,65,65,"Huanqiu",NA +104,133,1155,"2019",5,1,80,2,80,80,"Huanqiu",NA +104,133,1157,"2019",3,0,83,3,17,17,"Huanqiu",NA +104,133,1160,"2019",3,1,78,3,78,81,"Huanqiu",NA +104,133,1162,"2019",6,0,79,2,21,12,"Huanqiu",NA +104,133,1164,"2019",6,1,83,2,83,88,"Huanqiu",NA +104,133,1166,"2019",3,1,81,2,81,88,"Huanqiu",NA +104,133,1168,"2019",3,1,78,3,78,32,"Huanqiu",NA +104,138,145,"2019",2,0,100,2,0,8,"BBC",NA +104,138,146,"2019",2,1,2,3,2,4,"BBC",NA +104,138,148,"2019",6,0,25,3,75,75,"BBC",NA +104,138,150,"2019",2,0,95,2,5,5,"BBC",NA +104,138,156,"2019",5,1,73,2,73,66,"BBC",NA +104,138,157,"2019",5,1,77,3,77,72,"BBC",NA +104,138,158,"2019",2,0,82,2,18,19,"BBC",NA +104,138,163,"2019",5,1,62,2,62,50,"BBC",NA +104,138,168,"2019",3,0,10,3,90,87,"BBC",NA +104,138,169,"2019",6,1,50,2,50,50,"BBC",NA +104,138,170,"2019",6,1,99,3,99,83,"BBC",NA +104,138,171,"2019",6,0,66,3,34,42,"BBC",NA +104,138,172,"2019",2,0,89,3,11,18,"BBC",NA +104,138,176,"2019",3,0,0,3,100,100,"BBC",NA +104,138,180,"2019",3,0,88,3,12,14,"BBC",NA +104,138,183,"2019",2,0,39,3,61,71,"BBC",NA +104,138,188,"2019",3,0,30,2,70,60,"BBC",NA +104,138,190,"2019",5,1,60,2,60,82,"BBC",NA +104,138,191,"2019",5,1,15,2,15,39,"BBC",NA +104,138,192,"2019",5,1,95,3,95,94,"BBC",NA +104,138,194,"2019",3,0,93,3,7,7,"BBC",NA +104,138,196,"2019",3,0,100,3,0,0,"BBC",NA +104,138,201,"2019",3,0,97,3,3,3,"BBC",NA +104,138,202,"2019",2,1,11,3,11,50,"BBC",NA +104,138,203,"2019",3,0,84,2,16,18,"BBC",NA +104,138,204,"2019",3,1,90,2,90,81,"BBC",NA +104,138,206,"2019",2,1,51,3,51,51,"BBC",NA +104,138,208,"2019",6,0,75,2,25,25,"BBC",NA +104,138,209,"2019",5,0,92,3,8,8,"BBC",NA +104,138,210,"2019",6,1,80,3,80,80,"BBC",NA +104,138,217,"2019",5,1,92,3,92,81,"BBC",NA +104,138,220,"2019",5,0,95,3,5,31,"BBC",NA +104,138,222,"2019",3,0,52,2,48,50,"BBC",NA +104,138,223,"2019",5,0,71,3,29,29,"BBC",NA +104,138,224,"2019",4,0,71,3,29,NA,"BBC",NA +104,138,225,"2019",4,1,89,3,89,NA,"BBC",NA +104,138,226,"2019",4,1,86,3,86,NA,"BBC",NA +104,138,227,"2019",6,1,81,2,81,50,"BBC",NA +104,138,232,"2019",3,1,79,2,79,64,"BBC",NA +104,138,235,"2019",5,0,88,3,12,45,"BBC",NA +104,138,236,"2019",5,1,100,3,100,74,"BBC",NA +104,138,238,"2019",5,1,50,3,50,50,"BBC",NA +104,138,239,"2019",5,1,77,2,77,83,"BBC",NA +104,138,243,"2019",3,1,24,3,24,24,"BBC",NA +104,138,246,"2019",2,0,70,3,30,67,"BBC",NA +104,138,247,"2019",5,0,50,2,50,0,"BBC",NA +104,138,251,"2019",2,1,55,2,55,53,"BBC",NA +104,138,255,"2019",2,1,97,2,97,94,"BBC",NA +104,138,258,"2019",5,0,41,2,59,41,"BBC",NA +104,138,261,"2019",5,0,77,2,23,29,"BBC",NA +104,138,262,"2019",2,1,61,2,61,34,"BBC",NA +104,138,264,"2019",3,1,56,2,56,34,"BBC",NA +104,138,270,"2019",2,1,0,2,0,0,"BBC",NA +104,138,274,"2019",2,0,100,2,0,0,"BBC",NA +104,138,282,"2019",6,1,35,3,35,35,"BBC",NA +104,138,284,"2019",3,0,84,2,16,32,"BBC",NA +104,138,287,"2019",5,0,96,2,4,8,"BBC",NA +104,138,296,"2019",3,1,50,3,50,50,"BBC",NA +104,138,297,"2019",5,1,100,3,100,100,"BBC",NA +104,138,299,"2019",2,1,100,2,100,100,"BBC",NA +104,138,302,"2019",2,1,38,3,38,58,"BBC",NA +104,138,303,"2019",3,0,53,3,47,39,"BBC",NA +104,138,305,"2019",2,0,90,2,10,10,"BBC",NA +104,138,311,"2019",2,1,57,2,57,93,"BBC",NA +104,138,313,"2019",5,1,50,2,50,50,"BBC",NA +104,138,316,"2019",2,0,84,3,16,17,"BBC",NA +104,138,321,"2019",2,0,60,3,40,100,"BBC",NA +104,138,329,"2019",3,0,1,3,99,0,"BBC",NA +104,138,333,"2019",4,0,0,3,100,NA,"BBC",NA +104,138,340,"2019",4,1,41,3,41,NA,"BBC",NA +104,138,343,"2019",6,0,69,2,31,31,"BBC",NA +104,138,350,"2019",6,1,56,2,56,69,"BBC",NA +104,138,351,"2019",5,0,0,3,100,100,"BBC",NA +104,138,364,"2019",3,0,0,3,100,100,"BBC",NA +104,138,365,"2019",5,1,90,3,90,81,"BBC",NA +104,138,366,"2019",5,1,99,2,99,10,"BBC",NA +104,138,367,"2019",3,0,69,2,31,31,"BBC",NA +104,138,370,"2019",6,1,75,2,75,75,"BBC",NA +104,138,371,"2019",2,1,77,3,77,80,"BBC",NA +104,138,373,"2019",2,0,100,2,0,0,"BBC",NA +104,138,376,"2019",3,0,42,2,58,100,"BBC",NA +104,138,379,"2019",5,0,87,3,13,13,"BBC",NA +104,138,381,"2019",5,0,91,2,9,10,"BBC",NA +104,138,383,"2019",3,1,0,2,0,0,"BBC",NA +104,138,391,"2019",2,1,82,2,82,50,"BBC",NA +104,138,392,"2019",2,0,100,2,0,0,"BBC",NA +104,138,396,"2019",2,1,92,2,92,92,"BBC",NA +104,138,398,"2019",5,0,100,3,0,0,"BBC",NA +104,138,399,"2019",3,1,50,2,50,50,"BBC",NA +104,138,407,"2019",5,0,100,3,0,0,"BBC",NA +104,138,408,"2019",2,0,74,3,26,21,"BBC",NA +104,138,410,"2019",5,1,100,2,100,50,"BBC",NA +104,138,411,"2019",6,0,50,3,50,50,"BBC",NA +104,138,412,"2019",5,0,92,3,8,8,"BBC",NA +104,138,413,"2019",2,1,47,2,47,47,"BBC",NA +104,138,419,"2019",2,1,71,3,71,71,"BBC",NA +104,138,420,"2019",6,1,0,3,0,0,"BBC",NA +104,138,421,"2019",3,0,90,3,10,20,"BBC",NA +104,138,424,"2019",3,0,11,2,89,94,"BBC",NA +104,138,431,"2019",2,0,54,3,46,51,"BBC",NA +104,138,435,"2019",5,1,12,3,12,12,"BBC",NA +104,138,436,"2019",2,0,46,3,54,61,"BBC",NA +104,138,438,"2019",5,1,52,2,52,100,"BBC",NA +104,138,439,"2019",6,1,85,3,85,73,"BBC",NA +104,138,441,"2019",6,1,74,3,74,100,"BBC",NA +104,138,447,"2019",5,0,60,2,40,40,"BBC",NA +104,138,449,"2019",6,0,100,2,0,0,"BBC",NA +104,138,454,"2019",6,1,93,2,93,50,"BBC",NA +104,138,455,"2019",5,1,76,2,76,76,"BBC",NA +104,138,458,"2019",6,1,91,2,91,91,"BBC",NA +104,138,459,"2019",5,0,50,3,50,50,"BBC",NA +104,138,461,"2019",3,0,100,3,0,0,"BBC",NA +104,138,464,"2019",6,1,77,3,77,77,"BBC",NA +104,138,465,"2019",2,1,81,3,81,72,"BBC",NA +104,138,469,"2019",4,1,79,3,79,NA,"BBC",NA +104,138,477,"2019",3,1,75,2,75,75,"BBC",NA +104,138,480,"2019",2,1,67,3,67,67,"BBC",NA +104,138,481,"2019",2,1,92,3,92,88,"BBC",NA +104,138,487,"2019",2,1,85,2,85,50,"BBC",NA +104,138,490,"2019",4,1,69,3,69,NA,"BBC",NA +104,138,493,"2019",3,1,54,3,54,35,"BBC",NA +104,138,497,"2019",2,0,77,2,23,32,"BBC",NA +104,138,498,"2019",3,0,91,2,9,9,"BBC",NA +104,138,499,"2019",6,1,67,2,67,62,"BBC",NA +104,138,501,"2019",2,1,0,2,0,0,"BBC",NA +104,138,505,"2019",6,0,2,2,98,100,"BBC",NA +104,138,508,"2019",2,0,66,3,34,59,"BBC",NA +104,138,510,"2019",6,1,77,3,77,77,"BBC",NA +104,138,513,"2019",4,0,72,3,28,NA,"BBC",NA +104,138,516,"2019",6,1,66,2,66,66,"BBC",NA +104,138,517,"2019",3,1,56,2,56,50,"BBC",NA +104,138,525,"2019",6,0,73,3,27,22,"BBC",NA +104,138,529,"2019",6,1,70,2,70,70,"BBC",NA +104,138,530,"2019",2,0,91,2,9,9,"BBC",NA +104,138,531,"2019",5,0,40,3,60,42,"BBC",NA +104,138,532,"2019",6,1,50,3,50,50,"BBC",NA +104,138,536,"2019",6,0,91,2,9,9,"BBC",NA +104,138,542,"2019",6,0,64,3,36,50,"BBC",NA +104,138,546,"2019",6,0,89,3,11,11,"BBC",NA +104,138,548,"2019",6,0,52,2,48,52,"BBC",NA +104,138,551,"2019",2,0,36,3,64,77,"BBC",NA +104,138,552,"2019",2,0,85,3,15,16,"BBC",NA +104,138,554,"2019",4,0,56,3,44,NA,"BBC",NA +104,138,558,"2019",5,1,58,2,58,58,"BBC",NA +104,138,560,"2019",5,0,70,3,30,30,"BBC",NA +104,138,561,"2019",2,1,82,2,82,74,"BBC",NA +104,138,564,"2019",3,1,19,3,19,19,"BBC",NA +104,138,565,"2019",3,0,31,2,69,76,"BBC",NA +104,138,566,"2019",2,0,20,3,80,80,"BBC",NA +104,138,567,"2019",6,0,51,3,49,52,"BBC",NA +104,138,568,"2019",3,0,26,3,74,69,"BBC",NA +104,138,571,"2019",3,1,2,3,2,1,"BBC",NA +104,138,572,"2019",6,0,81,2,19,50,"BBC",NA +104,138,576,"2019",2,1,0,3,0,0,"BBC",NA +104,138,578,"2019",5,0,81,2,19,30,"BBC",NA +104,138,580,"2019",3,0,50,2,50,0,"BBC",NA +104,138,581,"2019",2,1,69,2,69,84,"BBC",NA +104,138,584,"2019",3,1,55,2,55,55,"BBC",NA +104,138,585,"2019",5,0,7,3,93,93,"BBC",NA +104,138,588,"2019",5,1,76,3,76,70,"BBC",NA +104,138,589,"2019",3,0,73,2,27,18,"BBC",NA +104,138,590,"2019",3,0,11,2,89,89,"BBC",NA +104,138,591,"2019",5,1,54,2,54,54,"BBC",NA +104,138,592,"2019",2,1,87,2,87,87,"BBC",NA +104,138,593,"2019",3,0,79,3,21,21,"BBC",NA +104,138,603,"2019",5,0,71,3,29,69,"BBC",NA +104,138,615,"2019",5,0,70,2,30,64,"BBC",NA +104,138,619,"2019",3,1,46,3,46,48,"BBC",NA +104,138,624,"2019",5,0,95,3,5,0,"BBC",NA +104,138,628,"2019",5,1,100,3,100,100,"BBC",NA +104,138,635,"2019",3,1,100,2,100,100,"BBC",NA +104,138,638,"2019",5,1,0,3,0,0,"BBC",NA +104,138,639,"2019",3,1,35,2,35,29,"BBC",NA +104,138,640,"2019",3,1,71,3,71,38,"BBC",NA +104,138,641,"2019",5,0,86,3,14,9,"BBC",NA +104,138,642,"2019",6,1,29,2,29,34,"BBC",NA +104,138,643,"2019",5,1,25,2,25,25,"BBC",NA +104,138,647,"2019",6,1,75,3,75,75,"BBC",NA +104,138,651,"2019",2,1,41,2,41,2,"BBC",NA +104,138,652,"2019",6,1,0,3,0,0,"BBC",NA +104,138,653,"2019",2,0,0,2,100,100,"BBC",NA +104,138,654,"2019",5,0,0,2,100,100,"BBC",NA +104,138,658,"2019",2,1,70,2,70,35,"BBC",NA +104,138,662,"2019",2,0,0,2,100,40,"BBC",NA +104,138,663,"2019",3,1,0,2,0,0,"BBC",NA +104,138,666,"2019",6,1,0,2,0,0,"BBC",NA +104,138,669,"2019",3,1,95,3,95,92,"BBC",NA +104,138,670,"2019",2,1,50,3,50,50,"BBC",NA +104,138,671,"2019",5,1,100,2,100,100,"BBC",NA +104,138,672,"2019",6,1,0,3,0,0,"BBC",NA +104,138,676,"2019",6,1,48,2,48,48,"BBC",NA +104,138,681,"2019",5,1,17,2,17,17,"BBC",NA +104,138,682,"2019",6,0,56,3,44,71,"BBC",NA +104,138,683,"2019",3,0,91,3,9,91,"BBC",NA +104,138,688,"2019",3,1,6,3,6,6,"BBC",NA +104,138,689,"2019",3,1,0,2,0,0,"BBC",NA +104,138,695,"2019",2,0,50,2,50,50,"BBC",NA +104,138,697,"2019",6,1,70,2,70,70,"BBC",NA +104,138,698,"2019",2,1,100,2,100,85,"BBC",NA +104,138,701,"2019",5,0,100,3,0,0,"BBC",NA +104,138,707,"2019",5,0,80,3,20,100,"BBC",NA +104,138,709,"2019",6,0,58,2,42,100,"BBC",NA +104,138,710,"2019",2,1,99,3,99,99,"BBC",NA +104,138,713,"2019",5,1,52,2,52,52,"BBC",NA +104,138,714,"2019",5,0,0,3,100,100,"BBC",NA +104,138,715,"2019",2,0,50,2,50,50,"BBC",NA +104,138,719,"2019",2,1,51,2,51,51,"BBC",NA +104,138,721,"2019",4,0,0,3,100,NA,"BBC",NA +104,138,723,"2019",6,0,50,3,50,50,"BBC",NA +104,138,724,"2019",6,0,29,3,71,59,"BBC",NA +104,138,728,"2019",2,1,100,2,100,50,"BBC",NA +104,138,729,"2019",3,0,99,2,1,1,"BBC",NA +104,138,734,"2019",2,0,50,3,50,50,"BBC",NA +104,138,737,"2019",5,1,0,3,0,0,"BBC",NA +104,138,742,"2019",3,0,0,2,100,100,"BBC",NA +104,138,743,"2019",6,0,1,2,99,99,"BBC",NA +104,138,744,"2019",5,1,50,2,50,50,"BBC",NA +104,138,745,"2019",6,1,70,3,70,70,"BBC",NA +104,138,748,"2019",3,0,96,3,4,0,"BBC",NA +104,138,749,"2019",6,1,50,2,50,50,"BBC",NA +104,138,751,"2019",5,1,50,2,50,50,"BBC",NA +104,138,758,"2019",6,1,17,3,17,100,"BBC",NA +104,138,760,"2019",6,1,59,3,59,59,"BBC",NA +104,138,769,"2019",3,1,0,2,0,0,"BBC",NA +104,138,771,"2019",3,1,35,3,35,0,"BBC",NA +104,138,774,"2019",2,0,49,3,51,100,"BBC",NA +104,138,784,"2019",2,1,50,3,50,50,"BBC",NA +104,138,785,"2019",3,0,5,3,95,95,"BBC",NA +104,138,786,"2019",5,0,0,2,100,78,"BBC",NA +104,138,798,"2019",2,1,100,2,100,100,"BBC",NA +104,138,800,"2019",6,1,100,3,100,100,"BBC",NA +104,138,802,"2019",3,1,82,2,82,50,"BBC",NA +104,138,803,"2019",6,1,100,2,100,100,"BBC",NA +104,138,805,"2019",2,0,50,3,50,50,"BBC",NA +104,138,807,"2019",3,1,100,3,100,100,"BBC",NA +104,138,809,"2019",3,1,50,3,50,50,"BBC",NA +104,138,810,"2019",3,1,2,3,2,2,"BBC",NA +104,138,811,"2019",6,0,50,3,50,50,"BBC",NA +104,138,813,"2019",2,1,50,3,50,50,"BBC",NA +104,138,816,"2019",5,1,0,2,0,0,"BBC",NA +104,138,819,"2019",2,0,0,2,100,100,"BBC",NA +104,138,821,"2019",2,0,83,2,17,0,"BBC",NA +104,138,822,"2019",3,0,100,2,0,0,"BBC",NA +104,138,828,"2019",3,1,51,2,51,51,"BBC",NA +104,138,831,"2019",6,1,0,3,0,50,"BBC",NA +104,138,836,"2019",2,1,0,2,0,0,"BBC",NA +104,138,838,"2019",3,0,85,2,15,15,"BBC",NA +104,138,842,"2019",6,0,100,3,0,28,"BBC",NA +104,138,850,"2019",4,0,82,3,18,NA,"BBC",NA +104,138,852,"2019",6,0,69,3,31,33,"BBC",NA +104,138,853,"2019",6,1,52,2,52,66,"BBC",NA +104,138,856,"2019",5,1,1,3,1,1,"BBC",NA +104,138,860,"2019",3,0,36,2,64,64,"BBC",NA +104,138,864,"2019",6,0,14,2,86,86,"BBC",NA +104,138,867,"2019",5,0,76,2,24,49,"BBC",NA +104,138,875,"2019",6,1,53,3,53,52,"BBC",NA +104,138,879,"2019",5,1,0,3,0,0,"BBC",NA +104,138,882,"2019",3,1,50,2,50,50,"BBC",NA +104,138,884,"2019",3,1,50,2,50,50,"BBC",NA +104,138,888,"2019",5,1,12,2,12,11,"BBC",NA +104,138,891,"2019",3,1,54,3,54,0,"BBC",NA +104,138,892,"2019",5,0,50,3,50,50,"BBC",NA +104,138,894,"2019",4,0,80,3,20,NA,"BBC",NA +104,138,898,"2019",5,1,0,2,0,0,"BBC",NA +104,138,906,"2019",6,1,74,3,74,74,"BBC",NA +104,138,909,"2019",6,1,84,2,84,70,"BBC",NA +104,138,914,"2019",2,0,1,3,99,99,"BBC",NA +104,138,916,"2019",2,0,51,3,49,78,"BBC",NA +104,138,918,"2019",6,1,0,2,0,0,"BBC",NA +104,138,922,"2019",5,1,1,3,1,1,"BBC",NA +104,138,925,"2019",5,0,0,2,100,49,"BBC",NA +104,138,928,"2019",2,0,100,3,0,0,"BBC",NA +104,138,929,"2019",5,1,78,2,78,65,"BBC",NA +104,138,931,"2019",2,1,78,2,78,74,"BBC",NA +104,138,933,"2019",3,1,91,3,91,4,"BBC",NA +104,138,934,"2019",4,0,83,3,17,NA,"BBC",NA +104,138,937,"2019",2,0,100,2,0,0,"BBC",NA +104,138,942,"2019",3,0,19,2,81,81,"BBC",NA +104,138,943,"2019",6,0,100,2,0,0,"BBC",NA +104,138,946,"2019",5,1,82,2,82,82,"BBC",NA +104,138,947,"2019",5,0,85,2,15,1,"BBC",NA +104,138,951,"2019",3,0,81,2,19,19,"BBC",NA +104,138,957,"2019",2,1,65,3,65,78,"BBC",NA +104,138,958,"2019",6,1,57,2,57,33,"BBC",NA +104,138,966,"2019",3,0,91,3,9,12,"BBC",NA +104,138,968,"2019",5,1,100,2,100,0,"BBC",NA +104,138,972,"2019",3,1,100,2,100,100,"BBC",NA +104,138,973,"2019",2,1,44,3,44,69,"BBC",NA +104,138,976,"2019",4,1,0,3,0,NA,"BBC",NA +104,138,981,"2019",2,0,20,3,80,80,"BBC",NA +104,138,984,"2019",6,0,92,2,8,8,"BBC",NA +104,138,989,"2019",3,0,51,2,49,46,"BBC",NA +104,138,992,"2019",2,1,1,3,1,21,"BBC",NA +104,138,993,"2019",6,0,100,2,0,0,"BBC",NA +104,138,995,"2019",3,0,100,2,0,0,"BBC",NA +104,138,1002,"2019",2,0,51,3,49,60,"BBC",NA +104,138,1004,"2019",2,1,95,3,95,98,"BBC",NA +104,138,1006,"2019",3,0,57,3,43,88,"BBC",NA +104,138,1019,"2019",5,1,59,2,59,59,"BBC",NA +104,138,1020,"2019",3,0,71,3,29,21,"BBC",NA +104,138,1021,"2019",5,0,93,2,7,2,"BBC",NA +104,138,1023,"2019",5,0,100,3,0,0,"BBC",NA +104,138,1031,"2019",2,1,50,3,50,71,"BBC",NA +104,138,1033,"2019",5,1,77,3,77,77,"BBC",NA +104,138,1034,"2019",3,0,100,3,0,0,"BBC",NA +104,138,1035,"2019",5,1,100,2,100,99,"BBC",NA +104,138,1041,"2019",6,0,50,2,50,50,"BBC",NA +104,138,1044,"2019",4,0,94,3,6,NA,"BBC",NA +104,138,1045,"2019",2,1,88,2,88,100,"BBC",NA +104,138,1048,"2019",3,0,74,3,26,9,"BBC",NA +104,138,1049,"2019",5,1,53,3,53,52,"BBC",NA +104,138,1050,"2019",3,1,53,2,53,53,"BBC",NA +104,138,1051,"2019",6,1,69,3,69,98,"BBC",NA +104,138,1054,"2019",5,0,82,3,18,19,"BBC",NA +104,138,1055,"2019",5,0,80,2,20,20,"BBC",NA +104,138,1057,"2019",3,1,37,2,37,37,"BBC",NA +104,138,1058,"2019",5,0,100,3,0,80,"BBC",NA +104,138,1064,"2019",6,0,94,3,6,6,"BBC",NA +104,138,1066,"2019",6,1,30,2,30,30,"BBC",NA +104,138,1067,"2019",2,0,4,3,96,96,"BBC",NA +104,138,1073,"2019",6,1,92,3,92,84,"BBC",NA +104,138,1074,"2019",2,0,61,3,39,39,"BBC",NA +104,138,1077,"2019",2,1,50,2,50,50,"BBC",NA +104,138,1080,"2019",3,1,98,2,98,98,"BBC",NA +104,138,1082,"2019",6,0,50,2,50,50,"BBC",NA +104,138,1086,"2019",3,1,86,3,86,86,"BBC",NA +104,138,1088,"2019",3,0,50,3,50,50,"BBC",NA +104,138,1091,"2019",5,0,97,2,3,3,"BBC",NA +104,138,1092,"2019",6,1,0,2,0,0,"BBC",NA +104,138,1093,"2019",2,0,9,2,91,91,"BBC",NA +104,138,1098,"2019",6,1,88,2,88,82,"BBC",NA +104,138,1101,"2019",2,1,50,3,50,67,"BBC",NA +104,138,1103,"2019",5,0,12,2,88,84,"BBC",NA +104,138,1110,"2019",5,0,78,2,22,17,"BBC",NA +104,138,1111,"2019",2,1,100,2,100,100,"BBC",NA +104,138,1116,"2019",5,0,82,3,18,18,"BBC",NA +104,138,1126,"2019",2,0,79,3,21,29,"BBC",NA +104,138,1128,"2019",6,1,100,3,100,100,"BBC",NA +104,138,1129,"2019",6,1,80,2,80,86,"BBC",NA +104,138,1131,"2019",6,1,1,3,1,7,"BBC",NA +104,138,1137,"2019",6,1,83,3,83,17,"BBC",NA +104,138,1138,"2019",2,0,100,2,0,50,"BBC",NA +104,138,1140,"2019",2,1,93,2,93,87,"BBC",NA +104,138,1141,"2019",2,0,100,2,0,0,"BBC",NA +104,138,1142,"2019",2,0,19,2,81,81,"BBC",NA +104,138,1146,"2019",5,1,89,2,89,89,"BBC",NA +104,138,1148,"2019",3,0,10,3,90,90,"BBC",NA +104,138,1149,"2019",3,1,82,3,82,82,"BBC",NA +104,138,1150,"2019",2,1,79,3,79,79,"BBC",NA +104,138,1152,"2019",3,1,50,2,50,9,"BBC",NA +104,138,1154,"2019",6,1,79,2,79,79,"BBC",NA +104,138,1155,"2019",5,1,80,3,80,80,"BBC",NA +104,138,1157,"2019",3,0,83,2,17,17,"BBC",NA +104,138,1161,"2019",6,0,72,3,28,23,"BBC",NA +104,138,1165,"2019",2,1,82,2,82,87,"BBC",NA +104,138,1168,"2019",3,1,32,2,32,32,"BBC",NA +105,NA,144,"2019",4,0,16,1,84,NA,NA,NA +105,NA,145,"2019",3,1,91,1,91,NA,NA,NA +105,NA,147,"2019",4,0,30,1,70,NA,NA,NA +105,NA,148,"2019",4,1,29,1,29,NA,NA,NA +105,NA,149,"2019",4,1,77,1,77,NA,NA,NA +105,NA,151,"2019",6,1,91,1,91,NA,NA,NA +105,NA,152,"2019",5,0,50,1,50,NA,NA,NA +105,NA,153,"2019",5,0,50,1,50,NA,NA,NA +105,NA,154,"2019",4,0,50,1,50,NA,NA,NA +105,NA,155,"2019",4,0,56,1,44,NA,NA,NA +105,NA,156,"2019",3,0,45,1,55,NA,NA,NA +105,NA,157,"2019",2,0,38,1,62,NA,NA,NA +105,NA,158,"2019",4,1,71,1,71,NA,NA,NA +105,NA,159,"2019",3,1,100,1,100,NA,NA,NA +105,NA,160,"2019",4,1,100,1,100,NA,NA,NA +105,NA,162,"2019",6,0,0,1,100,NA,NA,NA +105,NA,163,"2019",4,1,50,1,50,NA,NA,NA +105,NA,164,"2019",6,1,63,1,63,NA,NA,NA +105,NA,166,"2019",2,0,79,1,21,NA,NA,NA +105,NA,168,"2019",4,1,50,1,50,NA,NA,NA +105,NA,169,"2019",3,1,99,1,99,NA,NA,NA +105,NA,170,"2019",4,1,86,1,86,NA,NA,NA +105,NA,171,"2019",2,1,50,1,50,NA,NA,NA +105,NA,172,"2019",5,1,100,1,100,NA,NA,NA +105,NA,173,"2019",3,0,8,1,92,NA,NA,NA +105,NA,174,"2019",5,1,84,1,84,NA,NA,NA +105,NA,175,"2019",3,0,32,1,68,NA,NA,NA +105,NA,176,"2019",5,0,100,1,0,NA,NA,NA +105,NA,177,"2019",3,1,92,1,92,NA,NA,NA +105,NA,178,"2019",2,0,9,1,91,NA,NA,NA +105,NA,179,"2019",3,0,45,1,55,NA,NA,NA +105,NA,180,"2019",5,1,78,1,78,NA,NA,NA +105,NA,181,"2019",6,1,80,1,80,NA,NA,NA +105,NA,182,"2019",4,1,100,1,100,NA,NA,NA +105,NA,183,"2019",6,0,29,1,71,NA,NA,NA +105,NA,184,"2019",3,1,100,1,100,NA,NA,NA +105,NA,185,"2019",6,1,86,1,86,NA,NA,NA +105,NA,186,"2019",5,0,83,1,17,NA,NA,NA +105,NA,187,"2019",4,0,19,1,81,NA,NA,NA +105,NA,188,"2019",4,1,60,1,60,NA,NA,NA +105,NA,189,"2019",3,1,83,1,83,NA,NA,NA +105,NA,191,"2019",2,1,100,1,100,NA,NA,NA +105,NA,192,"2019",2,1,98,1,98,NA,NA,NA +105,NA,193,"2019",2,1,81,1,81,NA,NA,NA +105,NA,194,"2019",2,1,92,1,92,NA,NA,NA +105,NA,195,"2019",4,1,100,1,100,NA,NA,NA +105,NA,196,"2019",6,1,100,1,100,NA,NA,NA +105,NA,197,"2019",5,1,76,1,76,NA,NA,NA +105,NA,198,"2019",4,1,92,1,92,NA,NA,NA +105,NA,199,"2019",6,1,70,1,70,NA,NA,NA +105,NA,200,"2019",4,0,51,1,49,NA,NA,NA +105,NA,201,"2019",5,0,0,1,100,NA,NA,NA +105,NA,202,"2019",4,1,80,1,80,NA,NA,NA +105,NA,203,"2019",2,0,78,1,22,NA,NA,NA +105,NA,204,"2019",4,0,24,1,76,NA,NA,NA +105,NA,205,"2019",5,0,0,1,100,NA,NA,NA +105,NA,207,"2019",5,1,100,1,100,NA,NA,NA +105,NA,208,"2019",3,1,50,1,50,NA,NA,NA +105,NA,209,"2019",3,1,50,1,50,NA,NA,NA +105,NA,210,"2019",3,1,66,1,66,NA,NA,NA +105,NA,211,"2019",6,1,99,1,99,NA,NA,NA +105,NA,212,"2019",4,0,19,1,81,NA,NA,NA +105,NA,213,"2019",6,0,9,1,91,NA,NA,NA +105,NA,214,"2019",5,1,90,1,90,NA,NA,NA +105,NA,215,"2019",5,0,88,1,12,NA,NA,NA +105,NA,216,"2019",3,1,100,1,100,NA,NA,NA +105,NA,217,"2019",4,0,31,1,69,NA,NA,NA +105,NA,218,"2019",3,0,0,1,100,NA,NA,NA +105,NA,219,"2019",3,1,0,1,0,NA,NA,NA +105,NA,220,"2019",4,1,100,1,100,NA,NA,NA +105,NA,221,"2019",5,0,100,1,0,NA,NA,NA +105,NA,222,"2019",4,1,50,1,50,NA,NA,NA +105,NA,223,"2019",2,0,50,1,50,NA,NA,NA +105,NA,225,"2019",5,0,11,1,89,NA,NA,NA +105,NA,226,"2019",2,1,95,1,95,NA,NA,NA +105,NA,227,"2019",2,1,81,1,81,NA,NA,NA +105,NA,228,"2019",4,0,24,1,76,NA,NA,NA +105,NA,229,"2019",2,0,50,1,50,NA,NA,NA +105,NA,230,"2019",4,0,50,1,50,NA,NA,NA +105,NA,231,"2019",4,0,0,1,100,NA,NA,NA +105,NA,232,"2019",5,0,50,1,50,NA,NA,NA +105,NA,233,"2019",3,1,50,1,50,NA,NA,NA +105,NA,234,"2019",6,0,55,1,45,NA,NA,NA +105,NA,235,"2019",2,1,100,1,100,NA,NA,NA +105,NA,237,"2019",5,1,19,1,19,NA,NA,NA +105,NA,238,"2019",2,1,90,1,90,NA,NA,NA +105,NA,239,"2019",2,0,33,1,67,NA,NA,NA +105,NA,240,"2019",2,0,21,1,79,NA,NA,NA +105,NA,241,"2019",3,1,62,1,62,NA,NA,NA +105,NA,242,"2019",6,1,100,1,100,NA,NA,NA +105,NA,244,"2019",6,0,0,1,100,NA,NA,NA +105,NA,245,"2019",3,0,60,1,40,NA,NA,NA +105,NA,246,"2019",6,0,32,1,68,NA,NA,NA +105,NA,248,"2019",5,0,50,1,50,NA,NA,NA +105,NA,249,"2019",6,0,100,1,0,NA,NA,NA +105,NA,250,"2019",6,1,50,1,50,NA,NA,NA +105,NA,251,"2019",3,0,53,1,47,NA,NA,NA +105,NA,253,"2019",3,0,90,1,10,NA,NA,NA +105,NA,254,"2019",3,1,70,1,70,NA,NA,NA +105,NA,255,"2019",3,0,54,1,46,NA,NA,NA +105,NA,256,"2019",3,1,97,1,97,NA,NA,NA +105,NA,257,"2019",6,0,17,1,83,NA,NA,NA +105,NA,260,"2019",3,1,86,1,86,NA,NA,NA +105,NA,261,"2019",3,1,72,1,72,NA,NA,NA +105,NA,262,"2019",4,1,60,1,60,NA,NA,NA +105,NA,265,"2019",2,0,30,1,70,NA,NA,NA +105,NA,266,"2019",6,0,29,1,71,NA,NA,NA +105,NA,267,"2019",2,0,65,1,35,NA,NA,NA +105,NA,268,"2019",3,0,30,1,70,NA,NA,NA +105,NA,271,"2019",3,0,98,1,2,NA,NA,NA +105,NA,273,"2019",3,0,21,1,79,NA,NA,NA +105,NA,274,"2019",4,0,1,1,99,NA,NA,NA +105,NA,275,"2019",4,1,37,1,37,NA,NA,NA +105,NA,276,"2019",2,0,71,1,29,NA,NA,NA +105,NA,277,"2019",3,1,80,1,80,NA,NA,NA +105,NA,279,"2019",5,1,100,1,100,NA,NA,NA +105,NA,282,"2019",5,1,100,1,100,NA,NA,NA +105,NA,284,"2019",5,1,75,1,75,NA,NA,NA +105,NA,285,"2019",5,1,100,1,100,NA,NA,NA +105,NA,286,"2019",6,1,89,1,89,NA,NA,NA +105,NA,287,"2019",6,1,93,1,93,NA,NA,NA +105,NA,288,"2019",5,1,69,1,69,NA,NA,NA +105,NA,290,"2019",5,0,28,1,72,NA,NA,NA +105,NA,291,"2019",2,0,9,1,91,NA,NA,NA +105,NA,292,"2019",2,1,100,1,100,NA,NA,NA +105,NA,293,"2019",2,1,100,1,100,NA,NA,NA +105,NA,294,"2019",2,1,95,1,95,NA,NA,NA +105,NA,295,"2019",6,1,50,1,50,NA,NA,NA +105,NA,296,"2019",5,1,100,1,100,NA,NA,NA +105,NA,297,"2019",4,0,100,1,0,NA,NA,NA +105,NA,298,"2019",6,1,71,1,71,NA,NA,NA +105,NA,300,"2019",2,0,22,1,78,NA,NA,NA +105,NA,301,"2019",6,1,100,1,100,NA,NA,NA +105,NA,304,"2019",6,0,98,1,2,NA,NA,NA +105,NA,305,"2019",5,0,18,1,82,NA,NA,NA +105,NA,306,"2019",6,0,99,1,1,NA,NA,NA +105,NA,308,"2019",5,1,86,1,86,NA,NA,NA +105,NA,309,"2019",5,0,56,1,44,NA,NA,NA +105,NA,310,"2019",6,0,21,1,79,NA,NA,NA +105,NA,311,"2019",3,0,91,1,9,NA,NA,NA +105,NA,312,"2019",4,1,92,1,92,NA,NA,NA +105,NA,313,"2019",2,0,0,1,100,NA,NA,NA +105,NA,314,"2019",6,0,50,1,50,NA,NA,NA +105,NA,315,"2019",6,0,1,1,99,NA,NA,NA +105,NA,316,"2019",5,0,32,1,68,NA,NA,NA +105,NA,317,"2019",4,1,53,1,53,NA,NA,NA +105,NA,318,"2019",4,1,73,1,73,NA,NA,NA +105,NA,320,"2019",3,0,100,1,0,NA,NA,NA +105,NA,321,"2019",3,1,82,1,82,NA,NA,NA +105,NA,322,"2019",4,0,0,1,100,NA,NA,NA +105,NA,323,"2019",6,1,43,1,43,NA,NA,NA +105,NA,324,"2019",3,1,83,1,83,NA,NA,NA +105,NA,325,"2019",6,1,100,1,100,NA,NA,NA +105,NA,326,"2019",3,0,50,1,50,NA,NA,NA +105,NA,328,"2019",3,1,100,1,100,NA,NA,NA +105,NA,329,"2019",4,1,0,1,0,NA,NA,NA +105,NA,330,"2019",2,0,23,1,77,NA,NA,NA +105,NA,332,"2019",5,1,6,1,6,NA,NA,NA +105,NA,333,"2019",3,0,100,1,0,NA,NA,NA +105,NA,334,"2019",6,1,50,1,50,NA,NA,NA +105,NA,335,"2019",2,0,73,1,27,NA,NA,NA +105,NA,336,"2019",5,1,66,1,66,NA,NA,NA +105,NA,337,"2019",6,0,9,1,91,NA,NA,NA +105,NA,338,"2019",5,1,91,1,91,NA,NA,NA +105,NA,339,"2019",2,1,39,1,39,NA,NA,NA +105,NA,340,"2019",5,0,56,1,44,NA,NA,NA +105,NA,341,"2019",2,1,66,1,66,NA,NA,NA +105,NA,342,"2019",3,0,29,1,71,NA,NA,NA +105,NA,343,"2019",2,0,74,1,26,NA,NA,NA +105,NA,344,"2019",4,1,91,1,91,NA,NA,NA +105,NA,345,"2019",3,1,50,1,50,NA,NA,NA +105,NA,346,"2019",4,0,0,1,100,NA,NA,NA +105,NA,347,"2019",5,1,93,1,93,NA,NA,NA +105,NA,348,"2019",2,1,100,1,100,NA,NA,NA +105,NA,349,"2019",6,0,64,1,36,NA,NA,NA +105,NA,350,"2019",5,0,63,1,37,NA,NA,NA +105,NA,351,"2019",3,1,100,1,100,NA,NA,NA +105,NA,352,"2019",2,0,12,1,88,NA,NA,NA +105,NA,353,"2019",3,0,50,1,50,NA,NA,NA +105,NA,354,"2019",2,0,1,1,99,NA,NA,NA +105,NA,355,"2019",6,1,66,1,66,NA,NA,NA +105,NA,357,"2019",3,0,50,1,50,NA,NA,NA +105,NA,358,"2019",4,1,53,1,53,NA,NA,NA +105,NA,359,"2019",4,0,0,1,100,NA,NA,NA +105,NA,360,"2019",2,0,20,1,80,NA,NA,NA +105,NA,361,"2019",3,1,100,1,100,NA,NA,NA +105,NA,362,"2019",6,0,50,1,50,NA,NA,NA +105,NA,363,"2019",3,1,50,1,50,NA,NA,NA +105,NA,364,"2019",4,0,100,1,0,NA,NA,NA +105,NA,365,"2019",3,0,50,1,50,NA,NA,NA +105,NA,366,"2019",4,1,81,1,81,NA,NA,NA +105,NA,367,"2019",4,0,67,1,33,NA,NA,NA +105,NA,368,"2019",4,0,73,1,27,NA,NA,NA +105,NA,369,"2019",2,0,81,1,19,NA,NA,NA +105,NA,370,"2019",2,1,65,1,65,NA,NA,NA +105,NA,371,"2019",3,1,83,1,83,NA,NA,NA +105,NA,372,"2019",4,0,0,1,100,NA,NA,NA +105,NA,373,"2019",6,1,100,1,100,NA,NA,NA +105,NA,374,"2019",5,1,100,1,100,NA,NA,NA +105,NA,375,"2019",4,1,100,1,100,NA,NA,NA +105,NA,376,"2019",4,1,100,1,100,NA,NA,NA +105,NA,377,"2019",2,0,50,1,50,NA,NA,NA +105,NA,378,"2019",3,0,59,1,41,NA,NA,NA +105,NA,380,"2019",3,1,100,1,100,NA,NA,NA +105,NA,382,"2019",4,0,50,1,50,NA,NA,NA +105,NA,384,"2019",6,0,12,1,88,NA,NA,NA +105,NA,386,"2019",4,0,50,1,50,NA,NA,NA +105,NA,388,"2019",3,0,2,1,98,NA,NA,NA +105,NA,390,"2019",6,0,0,1,100,NA,NA,NA +105,NA,391,"2019",4,1,50,1,50,NA,NA,NA +105,NA,392,"2019",4,1,100,1,100,NA,NA,NA +105,NA,393,"2019",3,0,88,1,12,NA,NA,NA +105,NA,394,"2019",3,1,79,1,79,NA,NA,NA +105,NA,395,"2019",6,0,84,1,16,NA,NA,NA +105,NA,396,"2019",4,0,50,1,50,NA,NA,NA +105,NA,397,"2019",6,1,50,1,50,NA,NA,NA +105,NA,398,"2019",3,0,9,1,91,NA,NA,NA +105,NA,401,"2019",4,0,34,1,66,NA,NA,NA +105,NA,402,"2019",5,0,50,1,50,NA,NA,NA +105,NA,403,"2019",5,1,100,1,100,NA,NA,NA +105,NA,404,"2019",5,0,16,1,84,NA,NA,NA +105,NA,405,"2019",2,1,69,1,69,NA,NA,NA +105,NA,406,"2019",5,1,60,1,60,NA,NA,NA +105,NA,407,"2019",4,0,100,1,0,NA,NA,NA +105,NA,409,"2019",5,0,50,1,50,NA,NA,NA +105,NA,410,"2019",6,0,50,1,50,NA,NA,NA +105,NA,411,"2019",2,1,70,1,70,NA,NA,NA +105,NA,412,"2019",6,1,89,1,89,NA,NA,NA +105,NA,413,"2019",6,0,69,1,31,NA,NA,NA +105,NA,414,"2019",4,1,50,1,50,NA,NA,NA +105,NA,415,"2019",4,1,50,1,50,NA,NA,NA +105,NA,416,"2019",3,1,100,1,100,NA,NA,NA +105,NA,418,"2019",3,0,74,1,26,NA,NA,NA +105,NA,420,"2019",3,1,50,1,50,NA,NA,NA +105,NA,421,"2019",4,0,81,1,19,NA,NA,NA +105,NA,422,"2019",5,0,50,1,50,NA,NA,NA +105,NA,423,"2019",6,1,82,1,82,NA,NA,NA +105,NA,424,"2019",6,0,59,1,41,NA,NA,NA +105,NA,425,"2019",2,0,9,1,91,NA,NA,NA +105,NA,426,"2019",2,0,96,1,4,NA,NA,NA +105,NA,429,"2019",4,1,55,1,55,NA,NA,NA +105,NA,430,"2019",5,0,44,1,56,NA,NA,NA +105,NA,432,"2019",4,0,0,1,100,NA,NA,NA +105,NA,433,"2019",2,0,15,1,85,NA,NA,NA +105,NA,434,"2019",6,0,56,1,44,NA,NA,NA +105,NA,436,"2019",3,0,54,1,46,NA,NA,NA +105,NA,437,"2019",3,1,99,1,99,NA,NA,NA +105,NA,438,"2019",6,1,100,1,100,NA,NA,NA +105,NA,439,"2019",4,1,71,1,71,NA,NA,NA +105,NA,440,"2019",4,0,24,1,76,NA,NA,NA +105,NA,442,"2019",4,0,38,1,62,NA,NA,NA +105,NA,443,"2019",3,0,100,1,0,NA,NA,NA +105,NA,445,"2019",3,0,100,1,0,NA,NA,NA +105,NA,446,"2019",4,1,100,1,100,NA,NA,NA +105,NA,447,"2019",2,1,69,1,69,NA,NA,NA +105,NA,448,"2019",4,0,31,1,69,NA,NA,NA +105,NA,449,"2019",5,1,100,1,100,NA,NA,NA +105,NA,450,"2019",5,0,100,1,0,NA,NA,NA +105,NA,451,"2019",6,0,5,1,95,NA,NA,NA +105,NA,452,"2019",3,0,47,1,53,NA,NA,NA +105,NA,455,"2019",2,0,3,1,97,NA,NA,NA +105,NA,456,"2019",4,1,100,1,100,NA,NA,NA +105,NA,457,"2019",2,0,62,1,38,NA,NA,NA +105,NA,458,"2019",5,1,70,1,70,NA,NA,NA +105,NA,459,"2019",6,0,44,1,56,NA,NA,NA +105,NA,460,"2019",4,0,85,1,15,NA,NA,NA +105,NA,461,"2019",5,0,50,1,50,NA,NA,NA +105,NA,462,"2019",2,1,50,1,50,NA,NA,NA +105,NA,463,"2019",5,0,61,1,39,NA,NA,NA +105,NA,464,"2019",5,0,70,1,30,NA,NA,NA +105,NA,465,"2019",4,0,64,1,36,NA,NA,NA +105,NA,466,"2019",6,1,100,1,100,NA,NA,NA +105,NA,467,"2019",5,0,100,1,0,NA,NA,NA +105,NA,468,"2019",5,0,62,1,38,NA,NA,NA +105,NA,469,"2019",3,0,30,1,70,NA,NA,NA +105,NA,471,"2019",3,0,93,1,7,NA,NA,NA +105,NA,473,"2019",3,1,100,1,100,NA,NA,NA +105,NA,474,"2019",3,1,72,1,72,NA,NA,NA +105,NA,475,"2019",4,1,73,1,73,NA,NA,NA +105,NA,476,"2019",4,0,53,1,47,NA,NA,NA +105,NA,477,"2019",4,1,82,1,82,NA,NA,NA +105,NA,478,"2019",3,0,50,1,50,NA,NA,NA +105,NA,479,"2019",2,1,98,1,98,NA,NA,NA +105,NA,480,"2019",4,0,75,1,25,NA,NA,NA +105,NA,481,"2019",3,1,84,1,84,NA,NA,NA +105,NA,482,"2019",3,0,89,1,11,NA,NA,NA +105,NA,483,"2019",3,1,95,1,95,NA,NA,NA +105,NA,484,"2019",5,1,50,1,50,NA,NA,NA +105,NA,485,"2019",5,0,20,1,80,NA,NA,NA +105,NA,486,"2019",3,1,52,1,52,NA,NA,NA +105,NA,487,"2019",4,0,50,1,50,NA,NA,NA +105,NA,488,"2019",4,0,50,1,50,NA,NA,NA +105,NA,489,"2019",6,0,50,1,50,NA,NA,NA +105,NA,490,"2019",2,1,70,1,70,NA,NA,NA +105,NA,491,"2019",2,0,20,1,80,NA,NA,NA +105,NA,492,"2019",2,1,42,1,42,NA,NA,NA +105,NA,493,"2019",6,0,31,1,69,NA,NA,NA +105,NA,494,"2019",6,1,65,1,65,NA,NA,NA +105,NA,495,"2019",4,0,71,1,29,NA,NA,NA +105,NA,496,"2019",4,0,60,1,40,NA,NA,NA +105,NA,497,"2019",6,1,71,1,71,NA,NA,NA +105,NA,499,"2019",2,1,62,1,62,NA,NA,NA +105,NA,500,"2019",3,0,100,1,0,NA,NA,NA +105,NA,501,"2019",4,0,0,1,100,NA,NA,NA +105,NA,502,"2019",2,0,85,1,15,NA,NA,NA +105,NA,503,"2019",6,0,50,1,50,NA,NA,NA +105,NA,505,"2019",4,0,50,1,50,NA,NA,NA +105,NA,507,"2019",5,1,50,1,50,NA,NA,NA +105,NA,508,"2019",6,0,36,1,64,NA,NA,NA +105,NA,513,"2019",3,1,50,1,50,NA,NA,NA +105,NA,514,"2019",4,1,65,1,65,NA,NA,NA +105,NA,515,"2019",2,1,50,1,50,NA,NA,NA +105,NA,517,"2019",6,1,69,1,69,NA,NA,NA +105,NA,518,"2019",5,0,44,1,56,NA,NA,NA +105,NA,519,"2019",6,1,66,1,66,NA,NA,NA +105,NA,520,"2019",2,1,45,1,45,NA,NA,NA +105,NA,521,"2019",2,1,78,1,78,NA,NA,NA +105,NA,523,"2019",5,0,36,1,64,NA,NA,NA +105,NA,524,"2019",5,0,28,1,72,NA,NA,NA +105,NA,525,"2019",4,1,59,1,59,NA,NA,NA +105,NA,527,"2019",2,0,50,1,50,NA,NA,NA +105,NA,528,"2019",2,0,72,1,28,NA,NA,NA +105,NA,529,"2019",3,1,62,1,62,NA,NA,NA +105,NA,530,"2019",3,1,50,1,50,NA,NA,NA +105,NA,531,"2019",4,0,32,1,68,NA,NA,NA +105,NA,533,"2019",4,0,4,1,96,NA,NA,NA +105,NA,534,"2019",4,1,81,1,81,NA,NA,NA +105,NA,535,"2019",4,1,66,1,66,NA,NA,NA +105,NA,536,"2019",3,1,87,1,87,NA,NA,NA +105,NA,537,"2019",2,0,55,1,45,NA,NA,NA +105,NA,538,"2019",2,1,69,1,69,NA,NA,NA +105,NA,539,"2019",2,1,81,1,81,NA,NA,NA +105,NA,540,"2019",3,1,35,1,35,NA,NA,NA +105,NA,541,"2019",3,0,66,1,34,NA,NA,NA +105,NA,542,"2019",5,0,37,1,63,NA,NA,NA +105,NA,543,"2019",6,1,61,1,61,NA,NA,NA +105,NA,544,"2019",6,1,69,1,69,NA,NA,NA +105,NA,546,"2019",5,0,71,1,29,NA,NA,NA +105,NA,547,"2019",6,1,100,1,100,NA,NA,NA +105,NA,548,"2019",4,0,51,1,49,NA,NA,NA +105,NA,549,"2019",4,0,81,1,19,NA,NA,NA +105,NA,550,"2019",5,1,100,1,100,NA,NA,NA +105,NA,551,"2019",5,1,61,1,61,NA,NA,NA +105,NA,552,"2019",6,0,25,1,75,NA,NA,NA +105,NA,553,"2019",4,0,50,1,50,NA,NA,NA +105,NA,554,"2019",2,0,26,1,74,NA,NA,NA +105,NA,556,"2019",4,1,81,1,81,NA,NA,NA +105,NA,558,"2019",2,0,62,1,38,NA,NA,NA +105,NA,559,"2019",6,1,72,1,72,NA,NA,NA +105,NA,560,"2019",3,1,34,1,34,NA,NA,NA +105,NA,561,"2019",4,1,72,1,72,NA,NA,NA +105,NA,562,"2019",3,1,64,1,64,NA,NA,NA +105,NA,563,"2019",4,0,0,1,100,NA,NA,NA +105,NA,564,"2019",6,1,89,1,89,NA,NA,NA +105,NA,566,"2019",4,1,77,1,77,NA,NA,NA +105,NA,568,"2019",6,1,36,1,36,NA,NA,NA +105,NA,569,"2019",4,0,93,1,7,NA,NA,NA +105,NA,570,"2019",4,0,70,1,30,NA,NA,NA +105,NA,571,"2019",6,1,100,1,100,NA,NA,NA +105,NA,572,"2019",4,1,50,1,50,NA,NA,NA +105,NA,573,"2019",5,1,100,1,100,NA,NA,NA +105,NA,574,"2019",3,0,50,1,50,NA,NA,NA +105,NA,575,"2019",6,0,43,1,57,NA,NA,NA +105,NA,578,"2019",3,0,29,1,71,NA,NA,NA +105,NA,582,"2019",3,0,39,1,61,NA,NA,NA +105,NA,583,"2019",5,1,43,1,43,NA,NA,NA +105,NA,584,"2019",4,0,63,1,37,NA,NA,NA +105,NA,585,"2019",4,1,66,1,66,NA,NA,NA +105,NA,586,"2019",5,0,25,1,75,NA,NA,NA +105,NA,588,"2019",6,1,58,1,58,NA,NA,NA +105,NA,589,"2019",5,1,29,1,29,NA,NA,NA +105,NA,590,"2019",5,0,50,1,50,NA,NA,NA +105,NA,591,"2019",2,1,62,1,62,NA,NA,NA +105,NA,592,"2019",3,0,68,1,32,NA,NA,NA +105,NA,593,"2019",4,1,83,1,83,NA,NA,NA +105,NA,594,"2019",5,0,66,1,34,NA,NA,NA +105,NA,595,"2019",2,1,100,1,100,NA,NA,NA +105,NA,596,"2019",2,0,50,1,50,NA,NA,NA +105,NA,597,"2019",2,0,43,1,57,NA,NA,NA +105,NA,599,"2019",4,1,76,1,76,NA,NA,NA +105,NA,600,"2019",4,1,80,1,80,NA,NA,NA +105,NA,601,"2019",4,1,68,1,68,NA,NA,NA +105,NA,602,"2019",2,0,84,1,16,NA,NA,NA +105,NA,603,"2019",4,1,40,1,40,NA,NA,NA +105,NA,605,"2019",5,1,70,1,70,NA,NA,NA +105,NA,606,"2019",3,1,64,1,64,NA,NA,NA +105,NA,607,"2019",6,1,75,1,75,NA,NA,NA +105,NA,611,"2019",5,1,67,1,67,NA,NA,NA +105,NA,612,"2019",6,0,50,1,50,NA,NA,NA +105,NA,613,"2019",3,0,41,1,59,NA,NA,NA +105,NA,615,"2019",6,1,30,1,30,NA,NA,NA +105,NA,616,"2019",6,0,50,1,50,NA,NA,NA +105,NA,617,"2019",6,0,50,1,50,NA,NA,NA +105,NA,619,"2019",6,1,46,1,46,NA,NA,NA +105,NA,620,"2019",5,1,100,1,100,NA,NA,NA +105,NA,621,"2019",6,0,100,1,0,NA,NA,NA +105,NA,622,"2019",5,1,77,1,77,NA,NA,NA +105,NA,623,"2019",3,1,84,1,84,NA,NA,NA +105,NA,625,"2019",2,0,32,1,68,NA,NA,NA +105,NA,626,"2019",4,0,19,1,81,NA,NA,NA +105,NA,627,"2019",2,0,0,1,100,NA,NA,NA +105,NA,628,"2019",3,0,50,1,50,NA,NA,NA +105,NA,630,"2019",4,0,50,1,50,NA,NA,NA +105,NA,631,"2019",6,0,50,1,50,NA,NA,NA +105,NA,633,"2019",4,0,50,1,50,NA,NA,NA +105,NA,634,"2019",4,0,43,1,57,NA,NA,NA +105,NA,635,"2019",5,1,87,1,87,NA,NA,NA +105,NA,636,"2019",4,1,73,1,73,NA,NA,NA +105,NA,638,"2019",6,0,0,1,100,NA,NA,NA +105,NA,639,"2019",5,0,50,1,50,NA,NA,NA +105,NA,640,"2019",6,0,17,1,83,NA,NA,NA +105,NA,642,"2019",3,0,78,1,22,NA,NA,NA +105,NA,643,"2019",2,0,87,1,13,NA,NA,NA +105,NA,644,"2019",2,0,50,1,50,NA,NA,NA +105,NA,645,"2019",4,1,90,1,90,NA,NA,NA +105,NA,647,"2019",4,0,50,1,50,NA,NA,NA +105,NA,648,"2019",5,0,5,1,95,NA,NA,NA +105,NA,649,"2019",4,1,100,1,100,NA,NA,NA +105,NA,650,"2019",4,1,83,1,83,NA,NA,NA +105,NA,651,"2019",5,0,100,1,0,NA,NA,NA +105,NA,652,"2019",2,1,87,1,87,NA,NA,NA +105,NA,653,"2019",5,1,100,1,100,NA,NA,NA +105,NA,654,"2019",3,0,50,1,50,NA,NA,NA +105,NA,656,"2019",4,1,51,1,51,NA,NA,NA +105,NA,657,"2019",3,1,90,1,90,NA,NA,NA +105,NA,658,"2019",5,0,38,1,62,NA,NA,NA +105,NA,659,"2019",6,0,7,1,93,NA,NA,NA +105,NA,660,"2019",5,1,100,1,100,NA,NA,NA +105,NA,661,"2019",5,0,50,1,50,NA,NA,NA +105,NA,662,"2019",4,1,75,1,75,NA,NA,NA +105,NA,664,"2019",4,0,7,1,93,NA,NA,NA +105,NA,665,"2019",4,0,25,1,75,NA,NA,NA +105,NA,666,"2019",3,0,0,1,100,NA,NA,NA +105,NA,668,"2019",5,1,84,1,84,NA,NA,NA +105,NA,669,"2019",5,0,96,1,4,NA,NA,NA +105,NA,670,"2019",6,1,50,1,50,NA,NA,NA +105,NA,671,"2019",3,1,100,1,100,NA,NA,NA +105,NA,674,"2019",6,0,66,1,34,NA,NA,NA +105,NA,675,"2019",6,1,93,1,93,NA,NA,NA +105,NA,678,"2019",6,1,92,1,92,NA,NA,NA +105,NA,679,"2019",2,0,75,1,25,NA,NA,NA +105,NA,680,"2019",6,1,52,1,52,NA,NA,NA +105,NA,682,"2019",5,1,50,1,50,NA,NA,NA +105,NA,683,"2019",2,0,17,1,83,NA,NA,NA +105,NA,684,"2019",6,1,89,1,89,NA,NA,NA +105,NA,685,"2019",5,1,92,1,92,NA,NA,NA +105,NA,686,"2019",4,1,100,1,100,NA,NA,NA +105,NA,687,"2019",5,0,50,1,50,NA,NA,NA +105,NA,688,"2019",2,0,19,1,81,NA,NA,NA +105,NA,689,"2019",4,0,0,1,100,NA,NA,NA +105,NA,690,"2019",6,0,10,1,90,NA,NA,NA +105,NA,691,"2019",3,1,32,1,32,NA,NA,NA +105,NA,692,"2019",6,1,74,1,74,NA,NA,NA +105,NA,693,"2019",3,1,100,1,100,NA,NA,NA +105,NA,694,"2019",3,1,91,1,91,NA,NA,NA +105,NA,695,"2019",3,0,100,1,0,NA,NA,NA +105,NA,696,"2019",5,1,100,1,100,NA,NA,NA +105,NA,697,"2019",2,0,0,1,100,NA,NA,NA +105,NA,699,"2019",3,0,34,1,66,NA,NA,NA +105,NA,701,"2019",3,1,78,1,78,NA,NA,NA +105,NA,702,"2019",6,0,0,1,100,NA,NA,NA +105,NA,703,"2019",5,1,80,1,80,NA,NA,NA +105,NA,705,"2019",5,0,19,1,81,NA,NA,NA +105,NA,706,"2019",6,1,100,1,100,NA,NA,NA +105,NA,709,"2019",3,1,100,1,100,NA,NA,NA +105,NA,710,"2019",4,0,87,1,13,NA,NA,NA +105,NA,711,"2019",2,1,50,1,50,NA,NA,NA +105,NA,713,"2019",2,0,50,1,50,NA,NA,NA +105,NA,714,"2019",2,1,100,1,100,NA,NA,NA +105,NA,715,"2019",3,0,81,1,19,NA,NA,NA +105,NA,716,"2019",5,0,50,1,50,NA,NA,NA +105,NA,718,"2019",3,1,60,1,60,NA,NA,NA +105,NA,720,"2019",4,0,100,1,0,NA,NA,NA +105,NA,721,"2019",6,1,100,1,100,NA,NA,NA +105,NA,722,"2019",6,0,53,1,47,NA,NA,NA +105,NA,723,"2019",5,1,63,1,63,NA,NA,NA +105,NA,724,"2019",4,0,100,1,0,NA,NA,NA +105,NA,725,"2019",2,1,100,1,100,NA,NA,NA +105,NA,726,"2019",2,0,50,1,50,NA,NA,NA +105,NA,728,"2019",5,1,0,1,0,NA,NA,NA +105,NA,730,"2019",5,1,50,1,50,NA,NA,NA +105,NA,731,"2019",2,0,58,1,42,NA,NA,NA +105,NA,733,"2019",4,1,50,1,50,NA,NA,NA +105,NA,734,"2019",4,0,50,1,50,NA,NA,NA +105,NA,735,"2019",6,1,50,1,50,NA,NA,NA +105,NA,736,"2019",3,0,84,1,16,NA,NA,NA +105,NA,737,"2019",4,0,50,1,50,NA,NA,NA +105,NA,738,"2019",6,0,19,1,81,NA,NA,NA +105,NA,740,"2019",6,1,50,1,50,NA,NA,NA +105,NA,741,"2019",2,0,73,1,27,NA,NA,NA +105,NA,742,"2019",4,0,0,1,100,NA,NA,NA +105,NA,743,"2019",2,1,100,1,100,NA,NA,NA +105,NA,745,"2019",5,0,50,1,50,NA,NA,NA +105,NA,746,"2019",3,1,72,1,72,NA,NA,NA +105,NA,747,"2019",2,0,78,1,22,NA,NA,NA +105,NA,748,"2019",5,1,78,1,78,NA,NA,NA +105,NA,749,"2019",3,1,50,1,50,NA,NA,NA +105,NA,750,"2019",2,0,0,1,100,NA,NA,NA +105,NA,751,"2019",2,0,77,1,23,NA,NA,NA +105,NA,752,"2019",3,1,33,1,33,NA,NA,NA +105,NA,753,"2019",4,1,70,1,70,NA,NA,NA +105,NA,755,"2019",4,1,50,1,50,NA,NA,NA +105,NA,756,"2019",5,0,57,1,43,NA,NA,NA +105,NA,757,"2019",3,1,50,1,50,NA,NA,NA +105,NA,758,"2019",3,1,82,1,82,NA,NA,NA +105,NA,760,"2019",3,1,50,1,50,NA,NA,NA +105,NA,761,"2019",2,1,50,1,50,NA,NA,NA +105,NA,762,"2019",4,1,50,1,50,NA,NA,NA +105,NA,763,"2019",2,1,50,1,50,NA,NA,NA +105,NA,764,"2019",5,1,90,1,90,NA,NA,NA +105,NA,765,"2019",6,1,100,1,100,NA,NA,NA +105,NA,766,"2019",2,0,50,1,50,NA,NA,NA +105,NA,768,"2019",2,1,50,1,50,NA,NA,NA +105,NA,769,"2019",5,0,0,1,100,NA,NA,NA +105,NA,770,"2019",6,0,100,1,0,NA,NA,NA +105,NA,771,"2019",4,0,0,1,100,NA,NA,NA +105,NA,772,"2019",2,1,50,1,50,NA,NA,NA +105,NA,773,"2019",3,1,74,1,74,NA,NA,NA +105,NA,774,"2019",3,1,100,1,100,NA,NA,NA +105,NA,775,"2019",5,1,100,1,100,NA,NA,NA +105,NA,777,"2019",2,1,32,1,32,NA,NA,NA +105,NA,778,"2019",2,1,100,1,100,NA,NA,NA +105,NA,779,"2019",6,1,0,1,0,NA,NA,NA +105,NA,780,"2019",4,1,11,1,11,NA,NA,NA +105,NA,781,"2019",3,0,20,1,80,NA,NA,NA +105,NA,782,"2019",5,1,69,1,69,NA,NA,NA +105,NA,783,"2019",3,1,100,1,100,NA,NA,NA +105,NA,784,"2019",3,0,13,1,87,NA,NA,NA +105,NA,785,"2019",6,1,100,1,100,NA,NA,NA +105,NA,787,"2019",3,0,60,1,40,NA,NA,NA +105,NA,788,"2019",3,1,64,1,64,NA,NA,NA +105,NA,789,"2019",6,1,74,1,74,NA,NA,NA +105,NA,790,"2019",5,0,50,1,50,NA,NA,NA +105,NA,791,"2019",2,0,39,1,61,NA,NA,NA +105,NA,792,"2019",5,0,100,1,0,NA,NA,NA +105,NA,793,"2019",2,0,76,1,24,NA,NA,NA +105,NA,794,"2019",4,0,50,1,50,NA,NA,NA +105,NA,795,"2019",2,0,50,1,50,NA,NA,NA +105,NA,796,"2019",2,0,50,1,50,NA,NA,NA +105,NA,798,"2019",3,1,100,1,100,NA,NA,NA +105,NA,799,"2019",2,1,20,1,20,NA,NA,NA +105,NA,800,"2019",2,0,0,1,100,NA,NA,NA +105,NA,801,"2019",2,0,50,1,50,NA,NA,NA +105,NA,802,"2019",6,1,100,1,100,NA,NA,NA +105,NA,803,"2019",2,1,0,1,0,NA,NA,NA +105,NA,804,"2019",5,1,50,1,50,NA,NA,NA +105,NA,805,"2019",6,0,50,1,50,NA,NA,NA +105,NA,806,"2019",6,1,100,1,100,NA,NA,NA +105,NA,807,"2019",4,0,0,1,100,NA,NA,NA +105,NA,808,"2019",6,0,100,1,0,NA,NA,NA +105,NA,809,"2019",2,1,64,1,64,NA,NA,NA +105,NA,810,"2019",6,0,50,1,50,NA,NA,NA +105,NA,812,"2019",3,0,100,1,0,NA,NA,NA +105,NA,813,"2019",3,0,50,1,50,NA,NA,NA +105,NA,814,"2019",5,0,50,1,50,NA,NA,NA +105,NA,815,"2019",4,0,100,1,0,NA,NA,NA +105,NA,816,"2019",6,1,12,1,12,NA,NA,NA +105,NA,817,"2019",3,1,100,1,100,NA,NA,NA +105,NA,818,"2019",4,1,50,1,50,NA,NA,NA +105,NA,819,"2019",4,0,0,1,100,NA,NA,NA +105,NA,820,"2019",6,0,60,1,40,NA,NA,NA +105,NA,822,"2019",5,0,50,1,50,NA,NA,NA +105,NA,823,"2019",3,0,98,1,2,NA,NA,NA +105,NA,824,"2019",3,0,42,1,58,NA,NA,NA +105,NA,825,"2019",2,0,0,1,100,NA,NA,NA +105,NA,826,"2019",6,0,76,1,24,NA,NA,NA +105,NA,828,"2019",5,1,100,1,100,NA,NA,NA +105,NA,829,"2019",6,1,80,1,80,NA,NA,NA +105,NA,830,"2019",4,0,100,1,0,NA,NA,NA +105,NA,831,"2019",4,1,51,1,51,NA,NA,NA +105,NA,832,"2019",5,0,50,1,50,NA,NA,NA +105,NA,834,"2019",4,0,0,1,100,NA,NA,NA +105,NA,835,"2019",2,0,68,1,32,NA,NA,NA +105,NA,837,"2019",6,1,81,1,81,NA,NA,NA +105,NA,838,"2019",5,1,11,1,11,NA,NA,NA +105,NA,839,"2019",5,0,40,1,60,NA,NA,NA +105,NA,840,"2019",5,0,38,1,62,NA,NA,NA +105,NA,841,"2019",6,1,50,1,50,NA,NA,NA +105,NA,842,"2019",3,0,50,1,50,NA,NA,NA +105,NA,843,"2019",4,0,50,1,50,NA,NA,NA +105,NA,844,"2019",5,1,91,1,91,NA,NA,NA +105,NA,845,"2019",3,0,50,1,50,NA,NA,NA +105,NA,846,"2019",3,1,100,1,100,NA,NA,NA +105,NA,848,"2019",5,0,29,1,71,NA,NA,NA +105,NA,850,"2019",6,1,50,1,50,NA,NA,NA +105,NA,851,"2019",3,0,75,1,25,NA,NA,NA +105,NA,852,"2019",3,1,47,1,47,NA,NA,NA +105,NA,854,"2019",2,0,50,1,50,NA,NA,NA +105,NA,856,"2019",4,1,58,1,58,NA,NA,NA +105,NA,857,"2019",2,0,50,1,50,NA,NA,NA +105,NA,858,"2019",6,1,60,1,60,NA,NA,NA +105,NA,859,"2019",2,0,17,1,83,NA,NA,NA +105,NA,861,"2019",5,1,0,1,0,NA,NA,NA +105,NA,862,"2019",3,1,71,1,71,NA,NA,NA +105,NA,863,"2019",2,0,18,1,82,NA,NA,NA +105,NA,865,"2019",2,0,19,1,81,NA,NA,NA +105,NA,866,"2019",6,0,6,1,94,NA,NA,NA +105,NA,867,"2019",2,1,35,1,35,NA,NA,NA +105,NA,869,"2019",2,0,24,1,76,NA,NA,NA +105,NA,870,"2019",2,1,50,1,50,NA,NA,NA +105,NA,871,"2019",3,0,50,1,50,NA,NA,NA +105,NA,873,"2019",5,0,18,1,82,NA,NA,NA +105,NA,874,"2019",5,0,50,1,50,NA,NA,NA +105,NA,875,"2019",3,0,45,1,55,NA,NA,NA +105,NA,876,"2019",2,0,0,1,100,NA,NA,NA +105,NA,877,"2019",4,0,26,1,74,NA,NA,NA +105,NA,878,"2019",5,1,50,1,50,NA,NA,NA +105,NA,879,"2019",4,1,100,1,100,NA,NA,NA +105,NA,881,"2019",6,0,87,1,13,NA,NA,NA +105,NA,884,"2019",4,0,50,1,50,NA,NA,NA +105,NA,885,"2019",3,1,100,1,100,NA,NA,NA +105,NA,886,"2019",2,0,50,1,50,NA,NA,NA +105,NA,887,"2019",3,0,50,1,50,NA,NA,NA +105,NA,888,"2019",4,1,86,1,86,NA,NA,NA +105,NA,889,"2019",5,0,100,1,0,NA,NA,NA +105,NA,891,"2019",6,0,0,1,100,NA,NA,NA +105,NA,893,"2019",4,1,86,1,86,NA,NA,NA +105,NA,895,"2019",2,1,50,1,50,NA,NA,NA +105,NA,896,"2019",2,1,100,1,100,NA,NA,NA +105,NA,897,"2019",4,1,10,1,10,NA,NA,NA +105,NA,898,"2019",3,0,0,1,100,NA,NA,NA +105,NA,899,"2019",2,0,100,1,0,NA,NA,NA +105,NA,900,"2019",4,0,68,1,32,NA,NA,NA +105,NA,901,"2019",4,0,65,1,35,NA,NA,NA +105,NA,902,"2019",6,1,99,1,99,NA,NA,NA +105,NA,903,"2019",5,1,50,1,50,NA,NA,NA +105,NA,904,"2019",6,0,65,1,35,NA,NA,NA +105,NA,905,"2019",2,1,100,1,100,NA,NA,NA +105,NA,907,"2019",3,0,65,1,35,NA,NA,NA +105,NA,908,"2019",3,1,41,1,41,NA,NA,NA +105,NA,910,"2019",2,0,30,1,70,NA,NA,NA +105,NA,911,"2019",2,1,88,1,88,NA,NA,NA +105,NA,912,"2019",5,0,0,1,100,NA,NA,NA +105,NA,913,"2019",5,1,74,1,74,NA,NA,NA +105,NA,914,"2019",3,0,75,1,25,NA,NA,NA +105,NA,915,"2019",5,1,100,1,100,NA,NA,NA +105,NA,916,"2019",4,0,50,1,50,NA,NA,NA +105,NA,917,"2019",5,0,30,1,70,NA,NA,NA +105,NA,918,"2019",5,1,99,1,99,NA,NA,NA +105,NA,919,"2019",4,0,38,1,62,NA,NA,NA +105,NA,921,"2019",4,0,50,1,50,NA,NA,NA +105,NA,922,"2019",3,1,91,1,91,NA,NA,NA +105,NA,923,"2019",6,1,72,1,72,NA,NA,NA +105,NA,925,"2019",4,0,50,1,50,NA,NA,NA +105,NA,926,"2019",5,0,34,1,66,NA,NA,NA +105,NA,927,"2019",3,0,22,1,78,NA,NA,NA +105,NA,928,"2019",6,1,93,1,93,NA,NA,NA +105,NA,931,"2019",6,1,64,1,64,NA,NA,NA +105,NA,932,"2019",5,0,31,1,69,NA,NA,NA +105,NA,933,"2019",4,1,94,1,94,NA,NA,NA +105,NA,935,"2019",5,1,73,1,73,NA,NA,NA +105,NA,937,"2019",3,0,18,1,82,NA,NA,NA +105,NA,941,"2019",6,0,21,1,79,NA,NA,NA +105,NA,942,"2019",4,0,100,1,0,NA,NA,NA +105,NA,943,"2019",3,1,100,1,100,NA,NA,NA +105,NA,944,"2019",2,0,30,1,70,NA,NA,NA +105,NA,945,"2019",4,0,66,1,34,NA,NA,NA +105,NA,947,"2019",2,0,54,1,46,NA,NA,NA +105,NA,948,"2019",3,0,49,1,51,NA,NA,NA +105,NA,949,"2019",6,0,100,1,0,NA,NA,NA +105,NA,950,"2019",6,1,82,1,82,NA,NA,NA +105,NA,951,"2019",2,0,62,1,38,NA,NA,NA +105,NA,952,"2019",2,0,40,1,60,NA,NA,NA +105,NA,953,"2019",5,1,74,1,74,NA,NA,NA +105,NA,954,"2019",3,0,100,1,0,NA,NA,NA +105,NA,955,"2019",3,0,0,1,100,NA,NA,NA +105,NA,957,"2019",6,0,67,1,33,NA,NA,NA +105,NA,958,"2019",4,1,92,1,92,NA,NA,NA +105,NA,959,"2019",6,1,100,1,100,NA,NA,NA +105,NA,960,"2019",2,1,47,1,47,NA,NA,NA +105,NA,961,"2019",3,0,80,1,20,NA,NA,NA +105,NA,962,"2019",6,0,0,1,100,NA,NA,NA +105,NA,963,"2019",2,1,50,1,50,NA,NA,NA +105,NA,964,"2019",6,1,100,1,100,NA,NA,NA +105,NA,965,"2019",6,0,20,1,80,NA,NA,NA +105,NA,967,"2019",3,1,100,1,100,NA,NA,NA +105,NA,968,"2019",3,1,100,1,100,NA,NA,NA +105,NA,969,"2019",3,0,54,1,46,NA,NA,NA +105,NA,970,"2019",6,0,20,1,80,NA,NA,NA +105,NA,971,"2019",6,0,61,1,39,NA,NA,NA +105,NA,972,"2019",4,0,80,1,20,NA,NA,NA +105,NA,973,"2019",6,0,63,1,37,NA,NA,NA +105,NA,974,"2019",2,0,50,1,50,NA,NA,NA +105,NA,975,"2019",5,1,63,1,63,NA,NA,NA +105,NA,976,"2019",2,0,100,1,0,NA,NA,NA +105,NA,977,"2019",2,0,50,1,50,NA,NA,NA +105,NA,978,"2019",3,0,0,1,100,NA,NA,NA +105,NA,980,"2019",3,1,77,1,77,NA,NA,NA +105,NA,981,"2019",3,1,98,1,98,NA,NA,NA +105,NA,983,"2019",2,1,23,1,23,NA,NA,NA +105,NA,984,"2019",3,1,82,1,82,NA,NA,NA +105,NA,985,"2019",3,0,19,1,81,NA,NA,NA +105,NA,986,"2019",4,1,40,1,40,NA,NA,NA +105,NA,987,"2019",5,1,73,1,73,NA,NA,NA +105,NA,988,"2019",4,0,51,1,49,NA,NA,NA +105,NA,989,"2019",4,0,50,1,50,NA,NA,NA +105,NA,990,"2019",3,0,50,1,50,NA,NA,NA +105,NA,991,"2019",5,0,50,1,50,NA,NA,NA +105,NA,992,"2019",5,1,74,1,74,NA,NA,NA +105,NA,993,"2019",5,1,100,1,100,NA,NA,NA +105,NA,994,"2019",3,0,0,1,100,NA,NA,NA +105,NA,995,"2019",5,0,100,1,0,NA,NA,NA +105,NA,996,"2019",3,0,32,1,68,NA,NA,NA +105,NA,997,"2019",6,1,81,1,81,NA,NA,NA +105,NA,998,"2019",6,1,98,1,98,NA,NA,NA +105,NA,999,"2019",6,1,91,1,91,NA,NA,NA +105,NA,1000,"2019",6,1,99,1,99,NA,NA,NA +105,NA,1001,"2019",4,1,100,1,100,NA,NA,NA +105,NA,1002,"2019",4,0,60,1,40,NA,NA,NA +105,NA,1003,"2019",5,1,85,1,85,NA,NA,NA +105,NA,1004,"2019",6,0,96,1,4,NA,NA,NA +105,NA,1005,"2019",6,0,50,1,50,NA,NA,NA +105,NA,1007,"2019",4,1,91,1,91,NA,NA,NA +105,NA,1008,"2019",3,1,67,1,67,NA,NA,NA +105,NA,1009,"2019",2,1,91,1,91,NA,NA,NA +105,NA,1010,"2019",2,0,62,1,38,NA,NA,NA +105,NA,1011,"2019",2,1,100,1,100,NA,NA,NA +105,NA,1012,"2019",3,0,73,1,27,NA,NA,NA +105,NA,1013,"2019",4,0,10,1,90,NA,NA,NA +105,NA,1016,"2019",2,0,51,1,49,NA,NA,NA +105,NA,1017,"2019",2,0,64,1,36,NA,NA,NA +105,NA,1018,"2019",6,1,83,1,83,NA,NA,NA +105,NA,1019,"2019",6,0,100,1,0,NA,NA,NA +105,NA,1021,"2019",4,1,92,1,92,NA,NA,NA +105,NA,1022,"2019",2,1,51,1,51,NA,NA,NA +105,NA,1023,"2019",6,0,100,1,0,NA,NA,NA +105,NA,1025,"2019",6,1,71,1,71,NA,NA,NA +105,NA,1026,"2019",4,0,60,1,40,NA,NA,NA +105,NA,1027,"2019",5,0,6,1,94,NA,NA,NA +105,NA,1028,"2019",2,0,51,1,49,NA,NA,NA +105,NA,1030,"2019",2,0,41,1,59,NA,NA,NA +105,NA,1031,"2019",6,0,20,1,80,NA,NA,NA +105,NA,1032,"2019",5,0,51,1,49,NA,NA,NA +105,NA,1033,"2019",4,0,25,1,75,NA,NA,NA +105,NA,1034,"2019",2,0,10,1,90,NA,NA,NA +105,NA,1035,"2019",2,0,0,1,100,NA,NA,NA +105,NA,1036,"2019",6,0,51,1,49,NA,NA,NA +105,NA,1037,"2019",3,1,93,1,93,NA,NA,NA +105,NA,1039,"2019",6,1,62,1,62,NA,NA,NA +105,NA,1040,"2019",5,0,43,1,57,NA,NA,NA +105,NA,1041,"2019",2,0,8,1,92,NA,NA,NA +105,NA,1042,"2019",5,0,2,1,98,NA,NA,NA +105,NA,1043,"2019",4,0,51,1,49,NA,NA,NA +105,NA,1044,"2019",3,0,25,1,75,NA,NA,NA +105,NA,1046,"2019",3,0,40,1,60,NA,NA,NA +105,NA,1047,"2019",5,1,71,1,71,NA,NA,NA +105,NA,1048,"2019",5,0,98,1,2,NA,NA,NA +105,NA,1049,"2019",4,1,100,1,100,NA,NA,NA +105,NA,1051,"2019",2,1,100,1,100,NA,NA,NA +105,NA,1052,"2019",3,0,50,1,50,NA,NA,NA +105,NA,1053,"2019",5,1,100,1,100,NA,NA,NA +105,NA,1054,"2019",3,0,52,1,48,NA,NA,NA +105,NA,1055,"2019",4,0,17,1,83,NA,NA,NA +105,NA,1056,"2019",4,1,50,1,50,NA,NA,NA +105,NA,1057,"2019",4,1,59,1,59,NA,NA,NA +105,NA,1058,"2019",4,1,100,1,100,NA,NA,NA +105,NA,1059,"2019",6,0,22,1,78,NA,NA,NA +105,NA,1060,"2019",3,0,0,1,100,NA,NA,NA +105,NA,1062,"2019",2,0,1,1,99,NA,NA,NA +105,NA,1064,"2019",3,1,69,1,69,NA,NA,NA +105,NA,1065,"2019",4,0,0,1,100,NA,NA,NA +105,NA,1066,"2019",3,0,99,1,1,NA,NA,NA +105,NA,1067,"2019",6,1,99,1,99,NA,NA,NA +105,NA,1068,"2019",2,1,72,1,72,NA,NA,NA +105,NA,1069,"2019",3,1,100,1,100,NA,NA,NA +105,NA,1070,"2019",3,0,51,1,49,NA,NA,NA +105,NA,1072,"2019",2,1,96,1,96,NA,NA,NA +105,NA,1074,"2019",5,1,44,1,44,NA,NA,NA +105,NA,1075,"2019",4,0,0,1,100,NA,NA,NA +105,NA,1076,"2019",6,0,51,1,49,NA,NA,NA +105,NA,1078,"2019",2,0,34,1,66,NA,NA,NA +105,NA,1079,"2019",2,1,91,1,91,NA,NA,NA +105,NA,1082,"2019",3,1,98,1,98,NA,NA,NA +105,NA,1083,"2019",3,1,100,1,100,NA,NA,NA +105,NA,1085,"2019",3,0,100,1,0,NA,NA,NA +105,NA,1086,"2019",6,1,83,1,83,NA,NA,NA +105,NA,1087,"2019",3,1,100,1,100,NA,NA,NA +105,NA,1089,"2019",2,0,40,1,60,NA,NA,NA +105,NA,1091,"2019",3,0,69,1,31,NA,NA,NA +105,NA,1092,"2019",5,1,100,1,100,NA,NA,NA +105,NA,1094,"2019",5,1,61,1,61,NA,NA,NA +105,NA,1095,"2019",5,1,100,1,100,NA,NA,NA +105,NA,1096,"2019",5,1,79,1,79,NA,NA,NA +105,NA,1097,"2019",2,1,80,1,80,NA,NA,NA +105,NA,1098,"2019",3,1,89,1,89,NA,NA,NA +105,NA,1099,"2019",2,0,51,1,49,NA,NA,NA +105,NA,1100,"2019",2,0,84,1,16,NA,NA,NA +105,NA,1101,"2019",4,1,42,1,42,NA,NA,NA +105,NA,1102,"2019",6,1,100,1,100,NA,NA,NA +105,NA,1103,"2019",2,1,83,1,83,NA,NA,NA +105,NA,1104,"2019",5,0,18,1,82,NA,NA,NA +105,NA,1105,"2019",6,0,76,1,24,NA,NA,NA +105,NA,1106,"2019",4,1,80,1,80,NA,NA,NA +105,NA,1107,"2019",2,0,78,1,22,NA,NA,NA +105,NA,1108,"2019",4,0,88,1,12,NA,NA,NA +105,NA,1109,"2019",4,0,0,1,100,NA,NA,NA +105,NA,1110,"2019",3,1,83,1,83,NA,NA,NA +105,NA,1111,"2019",4,0,100,1,0,NA,NA,NA +105,NA,1112,"2019",4,0,14,1,86,NA,NA,NA +105,NA,1113,"2019",2,1,84,1,84,NA,NA,NA +105,NA,1114,"2019",6,1,0,1,0,NA,NA,NA +105,NA,1115,"2019",5,1,98,1,98,NA,NA,NA +105,NA,1116,"2019",6,1,79,1,79,NA,NA,NA +105,NA,1117,"2019",3,0,0,1,100,NA,NA,NA +105,NA,1118,"2019",2,0,81,1,19,NA,NA,NA +105,NA,1120,"2019",3,1,86,1,86,NA,NA,NA +105,NA,1121,"2019",2,0,17,1,83,NA,NA,NA +105,NA,1123,"2019",5,1,79,1,79,NA,NA,NA +105,NA,1125,"2019",4,0,59,1,41,NA,NA,NA +105,NA,1127,"2019",3,0,81,1,19,NA,NA,NA +105,NA,1128,"2019",3,1,93,1,93,NA,NA,NA +105,NA,1129,"2019",2,0,85,1,15,NA,NA,NA +105,NA,1130,"2019",2,1,100,1,100,NA,NA,NA +105,NA,1131,"2019",5,0,19,1,81,NA,NA,NA +105,NA,1132,"2019",2,0,16,1,84,NA,NA,NA +105,NA,1133,"2019",5,0,83,1,17,NA,NA,NA +105,NA,1134,"2019",4,0,78,1,22,NA,NA,NA +105,NA,1135,"2019",2,0,0,1,100,NA,NA,NA +105,NA,1136,"2019",3,1,81,1,81,NA,NA,NA +105,NA,1137,"2019",5,1,50,1,50,NA,NA,NA +105,NA,1138,"2019",6,1,20,1,20,NA,NA,NA +105,NA,1139,"2019",5,0,50,1,50,NA,NA,NA +105,NA,1140,"2019",4,1,17,1,17,NA,NA,NA +105,NA,1141,"2019",3,0,52,1,48,NA,NA,NA +105,NA,1143,"2019",4,1,94,1,94,NA,NA,NA +105,NA,1145,"2019",4,0,75,1,25,NA,NA,NA +105,NA,1146,"2019",4,1,19,1,19,NA,NA,NA +105,NA,1147,"2019",5,1,75,1,75,NA,NA,NA +105,NA,1148,"2019",5,1,85,1,85,NA,NA,NA +105,NA,1149,"2019",5,0,36,1,64,NA,NA,NA +105,NA,1150,"2019",4,1,83,1,83,NA,NA,NA +105,NA,1151,"2019",6,1,51,1,51,NA,NA,NA +105,NA,1152,"2019",5,0,9,1,91,NA,NA,NA +105,NA,1153,"2019",4,1,64,1,64,NA,NA,NA +105,NA,1154,"2019",4,0,37,1,63,NA,NA,NA +105,NA,1155,"2019",3,1,80,1,80,NA,NA,NA +105,NA,1156,"2019",4,0,50,1,50,NA,NA,NA +105,NA,1157,"2019",4,0,78,1,22,NA,NA,NA +105,NA,1158,"2019",3,1,81,1,81,NA,NA,NA +105,NA,1160,"2019",4,1,84,1,84,NA,NA,NA +105,NA,1161,"2019",2,1,87,1,87,NA,NA,NA +105,NA,1162,"2019",3,1,84,1,84,NA,NA,NA +105,NA,1163,"2019",5,1,84,1,84,NA,NA,NA +105,NA,1166,"2019",4,0,89,1,11,NA,NA,NA +105,NA,1167,"2019",2,0,85,1,15,NA,NA,NA +105,NA,1168,"2019",2,1,17,1,17,NA,NA,NA +105,105,151,"2019",6,1,91,3,91,50,"Nanfang Dushibao",NA +105,105,152,"2019",5,0,87,2,13,50,"Nanfang Dushibao",NA +105,105,156,"2019",3,0,50,3,50,52,"Nanfang Dushibao",NA +105,105,158,"2019",4,1,81,4,81,NA,"Nanfang Dushibao",NA +105,105,159,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,162,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,166,"2019",2,0,79,2,21,21,"Nanfang Dushibao",NA +105,105,168,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +105,105,169,"2019",3,1,99,2,99,99,"Nanfang Dushibao",NA +105,105,172,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,173,"2019",3,0,8,2,92,92,"Nanfang Dushibao",NA +105,105,175,"2019",3,0,32,2,68,68,"Nanfang Dushibao",NA +105,105,176,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +105,105,177,"2019",3,1,92,2,92,92,"Nanfang Dushibao",NA +105,105,181,"2019",6,1,25,2,25,80,"Nanfang Dushibao",NA +105,105,183,"2019",6,0,24,3,76,81,"Nanfang Dushibao",NA +105,105,185,"2019",6,1,86,3,86,86,"Nanfang Dushibao",NA +105,105,189,"2019",3,1,83,2,83,83,"Nanfang Dushibao",NA +105,105,191,"2019",2,1,95,2,95,100,"Nanfang Dushibao",NA +105,105,194,"2019",2,1,83,2,83,92,"Nanfang Dushibao",NA +105,105,196,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,197,"2019",5,1,4,3,4,4,"Nanfang Dushibao",NA +105,105,201,"2019",5,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,202,"2019",4,1,80,4,80,NA,"Nanfang Dushibao",NA +105,105,205,"2019",5,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,208,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +105,105,209,"2019",3,1,91,3,91,91,"Nanfang Dushibao",NA +105,105,211,"2019",6,1,99,2,99,99,"Nanfang Dushibao",NA +105,105,213,"2019",6,0,94,3,6,30,"Nanfang Dushibao",NA +105,105,214,"2019",5,1,90,3,90,90,"Nanfang Dushibao",NA +105,105,221,"2019",5,0,0,2,100,0,"Nanfang Dushibao",NA +105,105,222,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +105,105,226,"2019",2,1,99,2,99,95,"Nanfang Dushibao",NA +105,105,228,"2019",4,0,24,4,76,NA,"Nanfang Dushibao",NA +105,105,235,"2019",2,1,98,2,98,100,"Nanfang Dushibao",NA +105,105,238,"2019",2,1,90,3,90,90,"Nanfang Dushibao",NA +105,105,241,"2019",3,1,78,2,78,62,"Nanfang Dushibao",NA +105,105,246,"2019",6,0,23,2,77,68,"Nanfang Dushibao",NA +105,105,251,"2019",3,0,57,3,43,45,"Nanfang Dushibao",NA +105,105,253,"2019",3,0,40,3,60,60,"Nanfang Dushibao",NA +105,105,255,"2019",3,0,64,2,36,46,"Nanfang Dushibao",NA +105,105,256,"2019",3,1,97,2,97,97,"Nanfang Dushibao",NA +105,105,260,"2019",3,1,86,3,86,86,"Nanfang Dushibao",NA +105,105,265,"2019",2,0,50,2,50,70,"Nanfang Dushibao",NA +105,105,266,"2019",6,0,29,2,71,71,"Nanfang Dushibao",NA +105,105,267,"2019",2,0,68,2,32,35,"Nanfang Dushibao",NA +105,105,271,"2019",3,0,98,2,2,2,"Nanfang Dushibao",NA +105,105,273,"2019",3,0,4,3,96,89,"Nanfang Dushibao",NA +105,105,276,"2019",2,0,15,3,85,85,"Nanfang Dushibao",NA +105,105,282,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,285,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,287,"2019",6,1,97,3,97,97,"Nanfang Dushibao",NA +105,105,295,"2019",6,1,100,2,100,50,"Nanfang Dushibao",NA +105,105,298,"2019",6,1,60,2,60,71,"Nanfang Dushibao",NA +105,105,305,"2019",5,0,19,2,81,82,"Nanfang Dushibao",NA +105,105,306,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +105,105,310,"2019",6,0,21,2,79,79,"Nanfang Dushibao",NA +105,105,313,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +105,105,314,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,321,"2019",3,1,73,3,73,90,"Nanfang Dushibao",NA +105,105,323,"2019",6,1,43,2,43,43,"Nanfang Dushibao",NA +105,105,325,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,328,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,332,"2019",5,1,19,2,19,6,"Nanfang Dushibao",NA +105,105,333,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,339,"2019",2,1,39,2,39,39,"Nanfang Dushibao",NA +105,105,341,"2019",2,1,66,3,66,66,"Nanfang Dushibao",NA +105,105,343,"2019",2,0,74,3,26,26,"Nanfang Dushibao",NA +105,105,345,"2019",3,1,89,2,89,50,"Nanfang Dushibao",NA +105,105,347,"2019",5,1,85,3,85,93,"Nanfang Dushibao",NA +105,105,349,"2019",6,0,64,3,36,36,"Nanfang Dushibao",NA +105,105,350,"2019",5,0,73,3,27,27,"Nanfang Dushibao",NA +105,105,351,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,353,"2019",3,0,50,3,50,50,"Nanfang Dushibao",NA +105,105,354,"2019",2,0,50,3,50,100,"Nanfang Dushibao",NA +105,105,357,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,361,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,364,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +105,105,369,"2019",2,0,81,2,19,19,"Nanfang Dushibao",NA +105,105,371,"2019",3,1,83,2,83,83,"Nanfang Dushibao",NA +105,105,372,"2019",4,0,0,4,100,NA,"Nanfang Dushibao",NA +105,105,377,"2019",2,0,50,3,50,50,"Nanfang Dushibao",NA +105,105,378,"2019",3,0,34,3,66,62,"Nanfang Dushibao",NA +105,105,380,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,384,"2019",6,0,12,2,88,88,"Nanfang Dushibao",NA +105,105,394,"2019",3,1,81,2,81,79,"Nanfang Dushibao",NA +105,105,395,"2019",6,0,84,3,16,16,"Nanfang Dushibao",NA +105,105,397,"2019",6,1,71,2,71,50,"Nanfang Dushibao",NA +105,105,402,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,404,"2019",5,0,16,2,84,84,"Nanfang Dushibao",NA +105,105,409,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,413,"2019",6,0,74,2,26,31,"Nanfang Dushibao",NA +105,105,416,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,422,"2019",5,0,79,2,21,50,"Nanfang Dushibao",NA +105,105,424,"2019",6,0,64,2,36,41,"Nanfang Dushibao",NA +105,105,425,"2019",2,0,53,3,47,91,"Nanfang Dushibao",NA +105,105,426,"2019",2,0,96,2,4,4,"Nanfang Dushibao",NA +105,105,433,"2019",2,0,49,3,51,85,"Nanfang Dushibao",NA +105,105,434,"2019",6,0,56,3,44,44,"Nanfang Dushibao",NA +105,105,437,"2019",3,1,52,3,52,2,"Nanfang Dushibao",NA +105,105,443,"2019",3,0,50,3,50,0,"Nanfang Dushibao",NA +105,105,449,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,452,"2019",3,0,39,2,61,53,"Nanfang Dushibao",NA +105,105,455,"2019",2,0,5,2,95,97,"Nanfang Dushibao",NA +105,105,458,"2019",5,1,92,3,92,38,"Nanfang Dushibao",NA +105,105,463,"2019",5,0,61,3,39,39,"Nanfang Dushibao",NA +105,105,464,"2019",5,0,70,3,30,30,"Nanfang Dushibao",NA +105,105,466,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,467,"2019",5,0,0,3,100,0,"Nanfang Dushibao",NA +105,105,468,"2019",5,0,62,2,38,38,"Nanfang Dushibao",NA +105,105,469,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,471,"2019",3,0,9,3,91,91,"Nanfang Dushibao",NA +105,105,473,"2019",3,1,45,2,45,100,"Nanfang Dushibao",NA +105,105,474,"2019",3,1,72,2,72,72,"Nanfang Dushibao",NA +105,105,478,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,479,"2019",2,1,15,2,15,98,"Nanfang Dushibao",NA +105,105,484,"2019",5,1,62,2,62,50,"Nanfang Dushibao",NA +105,105,487,"2019",4,0,11,4,89,NA,"Nanfang Dushibao",NA +105,105,490,"2019",2,1,70,2,70,70,"Nanfang Dushibao",NA +105,105,502,"2019",2,0,85,2,15,15,"Nanfang Dushibao",NA +105,105,503,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,507,"2019",5,1,50,2,50,50,"Nanfang Dushibao",NA +105,105,515,"2019",2,1,67,3,67,50,"Nanfang Dushibao",NA +105,105,518,"2019",5,0,58,3,42,42,"Nanfang Dushibao",NA +105,105,519,"2019",6,1,66,3,66,66,"Nanfang Dushibao",NA +105,105,520,"2019",2,1,63,3,63,63,"Nanfang Dushibao",NA +105,105,523,"2019",5,0,63,2,37,64,"Nanfang Dushibao",NA +105,105,528,"2019",2,0,79,2,21,28,"Nanfang Dushibao",NA +105,105,530,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +105,105,531,"2019",4,0,45,4,55,NA,"Nanfang Dushibao",NA +105,105,540,"2019",3,1,18,3,18,33,"Nanfang Dushibao",NA +105,105,541,"2019",3,0,68,3,32,15,"Nanfang Dushibao",NA +105,105,542,"2019",5,0,34,3,66,52,"Nanfang Dushibao",NA +105,105,543,"2019",6,1,61,2,61,61,"Nanfang Dushibao",NA +105,105,546,"2019",5,0,60,3,40,74,"Nanfang Dushibao",NA +105,105,547,"2019",6,1,65,3,65,41,"Nanfang Dushibao",NA +105,105,551,"2019",5,1,66,3,66,61,"Nanfang Dushibao",NA +105,105,552,"2019",6,0,26,3,74,75,"Nanfang Dushibao",NA +105,105,556,"2019",4,1,51,4,51,NA,"Nanfang Dushibao",NA +105,105,558,"2019",2,0,67,3,33,53,"Nanfang Dushibao",NA +105,105,559,"2019",6,1,31,3,31,72,"Nanfang Dushibao",NA +105,105,568,"2019",6,1,48,3,48,39,"Nanfang Dushibao",NA +105,105,569,"2019",4,0,93,4,7,NA,"Nanfang Dushibao",NA +105,105,571,"2019",6,1,50,3,50,100,"Nanfang Dushibao",NA +105,105,578,"2019",3,0,26,3,74,80,"Nanfang Dushibao",NA +105,105,583,"2019",5,1,55,2,55,43,"Nanfang Dushibao",NA +105,105,589,"2019",5,1,28,3,28,20,"Nanfang Dushibao",NA +105,105,591,"2019",2,1,51,2,51,62,"Nanfang Dushibao",NA +105,105,596,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,606,"2019",3,1,64,2,64,64,"Nanfang Dushibao",NA +105,105,612,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,613,"2019",3,0,31,3,69,63,"Nanfang Dushibao",NA +105,105,615,"2019",6,1,52,3,52,52,"Nanfang Dushibao",NA +105,105,616,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,617,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,619,"2019",6,1,45,2,45,46,"Nanfang Dushibao",NA +105,105,623,"2019",3,1,96,3,96,96,"Nanfang Dushibao",NA +105,105,633,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +105,105,635,"2019",5,1,80,2,80,87,"Nanfang Dushibao",NA +105,105,640,"2019",6,0,23,2,77,83,"Nanfang Dushibao",NA +105,105,647,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +105,105,648,"2019",5,0,5,2,95,95,"Nanfang Dushibao",NA +105,105,651,"2019",5,0,88,3,12,16,"Nanfang Dushibao",NA +105,105,658,"2019",5,0,59,3,41,41,"Nanfang Dushibao",NA +105,105,659,"2019",6,0,0,2,100,93,"Nanfang Dushibao",NA +105,105,662,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +105,105,671,"2019",3,1,0,2,0,100,"Nanfang Dushibao",NA +105,105,674,"2019",6,0,66,3,34,34,"Nanfang Dushibao",NA +105,105,680,"2019",6,1,48,2,48,52,"Nanfang Dushibao",NA +105,105,683,"2019",2,0,73,2,27,83,"Nanfang Dushibao",NA +105,105,684,"2019",6,1,89,3,89,89,"Nanfang Dushibao",NA +105,105,687,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,689,"2019",4,0,0,4,100,NA,"Nanfang Dushibao",NA +105,105,691,"2019",3,1,32,2,32,32,"Nanfang Dushibao",NA +105,105,692,"2019",6,1,86,2,86,74,"Nanfang Dushibao",NA +105,105,694,"2019",3,1,97,3,97,96,"Nanfang Dushibao",NA +105,105,699,"2019",3,0,0,2,100,66,"Nanfang Dushibao",NA +105,105,703,"2019",5,1,100,2,100,80,"Nanfang Dushibao",NA +105,105,709,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,711,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +105,105,714,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,722,"2019",6,0,52,3,48,25,"Nanfang Dushibao",NA +105,105,725,"2019",2,1,54,3,54,100,"Nanfang Dushibao",NA +105,105,726,"2019",2,0,76,2,24,50,"Nanfang Dushibao",NA +105,105,730,"2019",5,1,71,3,71,50,"Nanfang Dushibao",NA +105,105,743,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,745,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,746,"2019",3,1,77,3,77,77,"Nanfang Dushibao",NA +105,105,747,"2019",2,0,91,3,9,9,"Nanfang Dushibao",NA +105,105,757,"2019",3,1,97,3,97,50,"Nanfang Dushibao",NA +105,105,758,"2019",3,1,40,2,40,82,"Nanfang Dushibao",NA +105,105,760,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +105,105,763,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +105,105,764,"2019",5,1,62,2,62,90,"Nanfang Dushibao",NA +105,105,766,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,768,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +105,105,769,"2019",5,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,773,"2019",3,1,60,2,60,74,"Nanfang Dushibao",NA +105,105,774,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,775,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,778,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,779,"2019",6,1,0,2,0,0,"Nanfang Dushibao",NA +105,105,780,"2019",4,1,11,4,11,NA,"Nanfang Dushibao",NA +105,105,782,"2019",5,1,69,2,69,69,"Nanfang Dushibao",NA +105,105,785,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,787,"2019",3,0,60,2,40,40,"Nanfang Dushibao",NA +105,105,788,"2019",3,1,72,2,72,64,"Nanfang Dushibao",NA +105,105,789,"2019",6,1,74,2,74,74,"Nanfang Dushibao",NA +105,105,791,"2019",2,0,31,2,69,61,"Nanfang Dushibao",NA +105,105,793,"2019",2,0,28,2,72,24,"Nanfang Dushibao",NA +105,105,796,"2019",2,0,81,3,19,50,"Nanfang Dushibao",NA +105,105,798,"2019",3,1,51,3,51,100,"Nanfang Dushibao",NA +105,105,804,"2019",5,1,50,2,50,50,"Nanfang Dushibao",NA +105,105,806,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,808,"2019",6,0,51,3,49,100,"Nanfang Dushibao",NA +105,105,809,"2019",2,1,0,3,0,60,"Nanfang Dushibao",NA +105,105,814,"2019",5,0,62,2,38,50,"Nanfang Dushibao",NA +105,105,815,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +105,105,816,"2019",6,1,8,3,8,8,"Nanfang Dushibao",NA +105,105,817,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,820,"2019",6,0,60,3,40,40,"Nanfang Dushibao",NA +105,105,823,"2019",3,0,72,3,28,28,"Nanfang Dushibao",NA +105,105,826,"2019",6,0,86,3,14,46,"Nanfang Dushibao",NA +105,105,828,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,838,"2019",5,1,7,2,7,11,"Nanfang Dushibao",NA +105,105,841,"2019",6,1,50,2,50,50,"Nanfang Dushibao",NA +105,105,842,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,844,"2019",5,1,91,2,91,91,"Nanfang Dushibao",NA +105,105,845,"2019",3,0,50,3,50,50,"Nanfang Dushibao",NA +105,105,846,"2019",3,1,1,3,1,100,"Nanfang Dushibao",NA +105,105,848,"2019",5,0,44,3,56,56,"Nanfang Dushibao",NA +105,105,850,"2019",6,1,30,3,30,56,"Nanfang Dushibao",NA +105,105,851,"2019",3,0,75,2,25,25,"Nanfang Dushibao",NA +105,105,856,"2019",4,1,47,4,47,NA,"Nanfang Dushibao",NA +105,105,859,"2019",2,0,83,2,17,83,"Nanfang Dushibao",NA +105,105,861,"2019",5,1,100,2,100,0,"Nanfang Dushibao",NA +105,105,862,"2019",3,1,69,3,69,60,"Nanfang Dushibao",NA +105,105,869,"2019",2,0,19,3,81,81,"Nanfang Dushibao",NA +105,105,870,"2019",2,1,50,3,50,50,"Nanfang Dushibao",NA +105,105,871,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +105,105,873,"2019",5,0,3,2,97,82,"Nanfang Dushibao",NA +105,105,875,"2019",3,0,46,2,54,55,"Nanfang Dushibao",NA +105,105,877,"2019",4,0,88,4,12,NA,"Nanfang Dushibao",NA +105,105,878,"2019",5,1,79,2,79,50,"Nanfang Dushibao",NA +105,105,881,"2019",6,0,87,2,13,13,"Nanfang Dushibao",NA +105,105,885,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,886,"2019",2,0,50,3,50,50,"Nanfang Dushibao",NA +105,105,891,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +105,105,895,"2019",2,1,95,3,95,89,"Nanfang Dushibao",NA +105,105,896,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,898,"2019",3,0,51,3,49,0,"Nanfang Dushibao",NA +105,105,905,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,910,"2019",2,0,55,3,45,38,"Nanfang Dushibao",NA +105,105,911,"2019",2,1,88,3,88,88,"Nanfang Dushibao",NA +105,105,912,"2019",5,0,0,2,100,100,"Nanfang Dushibao",NA +105,105,913,"2019",5,1,61,3,61,36,"Nanfang Dushibao",NA +105,105,923,"2019",6,1,72,2,72,72,"Nanfang Dushibao",NA +105,105,926,"2019",5,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,931,"2019",6,1,67,3,67,70,"Nanfang Dushibao",NA +105,105,932,"2019",5,0,50,2,50,69,"Nanfang Dushibao",NA +105,105,933,"2019",4,1,94,4,94,NA,"Nanfang Dushibao",NA +105,105,943,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,944,"2019",2,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,948,"2019",3,0,75,3,25,58,"Nanfang Dushibao",NA +105,105,954,"2019",3,0,100,2,0,0,"Nanfang Dushibao",NA +105,105,957,"2019",6,0,73,2,27,33,"Nanfang Dushibao",NA +105,105,960,"2019",2,1,47,2,47,47,"Nanfang Dushibao",NA +105,105,961,"2019",3,0,80,3,20,20,"Nanfang Dushibao",NA +105,105,962,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,964,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,965,"2019",6,0,0,3,100,85,"Nanfang Dushibao",NA +105,105,967,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,969,"2019",3,0,100,3,0,46,"Nanfang Dushibao",NA +105,105,970,"2019",6,0,19,2,81,80,"Nanfang Dushibao",NA +105,105,971,"2019",6,0,49,2,51,39,"Nanfang Dushibao",NA +105,105,973,"2019",6,0,65,2,35,37,"Nanfang Dushibao",NA +105,105,974,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,975,"2019",5,1,5,3,5,5,"Nanfang Dushibao",NA +105,105,977,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,978,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +105,105,980,"2019",3,1,80,2,80,77,"Nanfang Dushibao",NA +105,105,983,"2019",2,1,23,3,23,23,"Nanfang Dushibao",NA +105,105,984,"2019",3,1,82,3,82,82,"Nanfang Dushibao",NA +105,105,985,"2019",3,0,92,2,8,81,"Nanfang Dushibao",NA +105,105,991,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +105,105,992,"2019",5,1,46,3,46,9,"Nanfang Dushibao",NA +105,105,993,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,995,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +105,105,1003,"2019",5,1,71,2,71,85,"Nanfang Dushibao",NA +105,105,1004,"2019",6,0,50,2,50,4,"Nanfang Dushibao",NA +105,105,1007,"2019",4,1,91,4,91,NA,"Nanfang Dushibao",NA +105,105,1010,"2019",2,0,81,3,19,51,"Nanfang Dushibao",NA +105,105,1011,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,1016,"2019",2,0,51,3,49,40,"Nanfang Dushibao",NA +105,105,1023,"2019",6,0,3,2,97,0,"Nanfang Dushibao",NA +105,105,1025,"2019",6,1,73,3,73,77,"Nanfang Dushibao",NA +105,105,1036,"2019",6,0,100,3,0,100,"Nanfang Dushibao",NA +105,105,1037,"2019",3,1,94,2,94,93,"Nanfang Dushibao",NA +105,105,1041,"2019",2,0,50,3,50,9,"Nanfang Dushibao",NA +105,105,1042,"2019",5,0,2,2,98,98,"Nanfang Dushibao",NA +105,105,1044,"2019",3,0,18,2,82,75,"Nanfang Dushibao",NA +105,105,1046,"2019",3,0,28,3,72,72,"Nanfang Dushibao",NA +105,105,1049,"2019",4,1,99,4,99,NA,"Nanfang Dushibao",NA +105,105,1051,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,1052,"2019",3,0,38,3,62,41,"Nanfang Dushibao",NA +105,105,1053,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,1058,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +105,105,1059,"2019",6,0,89,2,11,78,"Nanfang Dushibao",NA +105,105,1062,"2019",2,0,1,2,99,99,"Nanfang Dushibao",NA +105,105,1066,"2019",3,0,97,3,3,33,"Nanfang Dushibao",NA +105,105,1070,"2019",3,0,93,3,7,19,"Nanfang Dushibao",NA +105,105,1072,"2019",2,1,96,3,96,96,"Nanfang Dushibao",NA +105,105,1076,"2019",6,0,51,2,49,49,"Nanfang Dushibao",NA +105,105,1078,"2019",2,0,69,3,31,31,"Nanfang Dushibao",NA +105,105,1083,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,1092,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,1094,"2019",5,1,61,2,61,61,"Nanfang Dushibao",NA +105,105,1095,"2019",5,1,97,3,97,100,"Nanfang Dushibao",NA +105,105,1097,"2019",2,1,87,3,87,87,"Nanfang Dushibao",NA +105,105,1100,"2019",2,0,89,3,11,11,"Nanfang Dushibao",NA +105,105,1102,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +105,105,1107,"2019",2,0,72,2,28,22,"Nanfang Dushibao",NA +105,105,1110,"2019",3,1,80,2,80,83,"Nanfang Dushibao",NA +105,105,1113,"2019",2,1,84,3,84,84,"Nanfang Dushibao",NA +105,105,1116,"2019",6,1,79,2,79,79,"Nanfang Dushibao",NA +105,105,1118,"2019",2,0,81,2,19,19,"Nanfang Dushibao",NA +105,105,1121,"2019",2,0,0,3,100,98,"Nanfang Dushibao",NA +105,105,1123,"2019",5,1,99,3,99,87,"Nanfang Dushibao",NA +105,105,1127,"2019",3,0,98,3,2,2,"Nanfang Dushibao",NA +105,105,1128,"2019",3,1,93,3,93,93,"Nanfang Dushibao",NA +105,105,1129,"2019",2,0,82,2,18,15,"Nanfang Dushibao",NA +105,105,1130,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,1131,"2019",5,0,19,3,81,81,"Nanfang Dushibao",NA +105,105,1132,"2019",2,0,16,2,84,84,"Nanfang Dushibao",NA +105,105,1133,"2019",5,0,83,3,17,17,"Nanfang Dushibao",NA +105,105,1134,"2019",4,0,72,4,28,NA,"Nanfang Dushibao",NA +105,105,1135,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +105,105,1136,"2019",3,1,81,2,81,81,"Nanfang Dushibao",NA +105,105,1141,"2019",3,0,25,3,75,48,"Nanfang Dushibao",NA +105,105,1143,"2019",4,1,94,4,94,NA,"Nanfang Dushibao",NA +105,105,1145,"2019",4,0,75,4,25,NA,"Nanfang Dushibao",NA +105,105,1147,"2019",5,1,78,2,78,75,"Nanfang Dushibao",NA +105,105,1151,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +105,105,1158,"2019",3,1,77,2,77,81,"Nanfang Dushibao",NA +105,105,1162,"2019",3,1,78,2,78,84,"Nanfang Dushibao",NA +105,105,1168,"2019",2,1,33,3,33,75,"Nanfang Dushibao",NA +105,126,153,"2019",5,0,19,3,81,81,"BBC",NA +105,126,154,"2019",4,0,27,3,73,NA,"BBC",NA +105,126,155,"2019",4,0,65,3,35,NA,"BBC",NA +105,126,156,"2019",3,0,48,2,52,55,"BBC",NA +105,126,157,"2019",2,0,37,3,63,70,"BBC",NA +105,126,164,"2019",6,1,63,3,63,81,"BBC",NA +105,126,173,"2019",3,0,8,3,92,92,"BBC",NA +105,126,174,"2019",5,1,88,3,88,88,"BBC",NA +105,126,177,"2019",3,1,92,3,92,92,"BBC",NA +105,126,179,"2019",3,0,50,3,50,56,"BBC",NA +105,126,180,"2019",5,1,69,2,69,78,"BBC",NA +105,126,184,"2019",3,1,100,2,100,100,"BBC",NA +105,126,185,"2019",6,1,86,2,86,86,"BBC",NA +105,126,187,"2019",4,0,6,3,94,NA,"BBC",NA +105,126,188,"2019",4,1,70,3,70,NA,"BBC",NA +105,126,192,"2019",2,1,99,2,99,98,"BBC",NA +105,126,203,"2019",2,0,78,2,22,22,"BBC",NA +105,126,205,"2019",5,0,0,2,100,100,"BBC",NA +105,126,207,"2019",5,1,100,3,100,100,"BBC",NA +105,126,209,"2019",3,1,91,2,91,50,"BBC",NA +105,126,211,"2019",6,1,100,3,100,99,"BBC",NA +105,126,212,"2019",4,0,0,3,100,NA,"BBC",NA +105,126,213,"2019",6,0,70,2,30,91,"BBC",NA +105,126,214,"2019",5,1,90,2,90,90,"BBC",NA +105,126,215,"2019",5,0,100,3,0,0,"BBC",NA +105,126,216,"2019",3,1,100,2,100,100,"BBC",NA +105,126,218,"2019",3,0,0,2,100,100,"BBC",NA +105,126,219,"2019",3,1,0,2,0,0,"BBC",NA +105,126,225,"2019",5,0,13,2,87,89,"BBC",NA +105,126,226,"2019",2,1,99,3,99,99,"BBC",NA +105,126,227,"2019",2,1,81,2,81,81,"BBC",NA +105,126,232,"2019",5,0,29,2,71,50,"BBC",NA +105,126,233,"2019",3,1,100,2,100,50,"BBC",NA +105,126,235,"2019",2,1,100,3,100,98,"BBC",NA +105,126,237,"2019",5,1,1,2,1,19,"BBC",NA +105,126,238,"2019",2,1,90,2,90,90,"BBC",NA +105,126,239,"2019",2,0,30,2,70,67,"BBC",NA +105,126,241,"2019",3,1,82,3,82,78,"BBC",NA +105,126,242,"2019",6,1,100,3,100,100,"BBC",NA +105,126,244,"2019",6,0,30,3,70,70,"BBC",NA +105,126,245,"2019",3,0,60,2,40,40,"BBC",NA +105,126,248,"2019",5,0,50,3,50,50,"BBC",NA +105,126,250,"2019",6,1,35,3,35,50,"BBC",NA +105,126,254,"2019",3,1,20,3,20,81,"BBC",NA +105,126,255,"2019",3,0,81,3,19,36,"BBC",NA +105,126,261,"2019",3,1,72,2,72,72,"BBC",NA +105,126,265,"2019",2,0,60,3,40,50,"BBC",NA +105,126,266,"2019",6,0,29,3,71,71,"BBC",NA +105,126,267,"2019",2,0,71,3,29,32,"BBC",NA +105,126,273,"2019",3,0,11,2,89,79,"BBC",NA +105,126,277,"2019",3,1,80,2,80,80,"BBC",NA +105,126,279,"2019",5,1,100,3,100,100,"BBC",NA +105,126,282,"2019",5,1,98,3,98,100,"BBC",NA +105,126,285,"2019",5,1,100,2,100,100,"BBC",NA +105,126,290,"2019",5,0,19,3,81,81,"BBC",NA +105,126,292,"2019",2,1,100,2,100,100,"BBC",NA +105,126,293,"2019",2,1,100,3,100,100,"BBC",NA +105,126,294,"2019",2,1,95,2,95,95,"BBC",NA +105,126,295,"2019",6,1,88,3,88,100,"BBC",NA +105,126,296,"2019",5,1,100,2,100,100,"BBC",NA +105,126,300,"2019",2,0,9,3,91,78,"BBC",NA +105,126,301,"2019",6,1,100,2,100,100,"BBC",NA +105,126,304,"2019",6,0,100,3,0,0,"BBC",NA +105,126,306,"2019",6,0,100,2,0,1,"BBC",NA +105,126,308,"2019",5,1,92,2,92,86,"BBC",NA +105,126,310,"2019",6,0,21,3,79,79,"BBC",NA +105,126,314,"2019",6,0,90,3,10,50,"BBC",NA +105,126,315,"2019",6,0,1,3,99,99,"BBC",NA +105,126,320,"2019",3,0,100,3,0,0,"BBC",NA +105,126,324,"2019",3,1,83,2,83,83,"BBC",NA +105,126,333,"2019",3,0,0,2,100,0,"BBC",NA +105,126,348,"2019",2,1,100,2,100,100,"BBC",NA +105,126,351,"2019",3,1,100,3,100,100,"BBC",NA +105,126,352,"2019",2,0,23,2,77,88,"BBC",NA +105,126,355,"2019",6,1,81,3,81,66,"BBC",NA +105,126,358,"2019",4,1,41,3,41,NA,"BBC",NA +105,126,359,"2019",4,0,100,3,0,NA,"BBC",NA +105,126,360,"2019",2,0,20,3,80,80,"BBC",NA +105,126,365,"2019",3,0,33,2,67,50,"BBC",NA +105,126,369,"2019",2,0,81,3,19,19,"BBC",NA +105,126,370,"2019",2,1,26,3,26,100,"BBC",NA +105,126,380,"2019",3,1,100,3,100,100,"BBC",NA +105,126,384,"2019",6,0,12,3,88,88,"BBC",NA +105,126,390,"2019",6,0,100,3,0,0,"BBC",NA +105,126,393,"2019",3,0,68,2,32,12,"BBC",NA +105,126,394,"2019",3,1,83,3,83,81,"BBC",NA +105,126,403,"2019",5,1,100,2,100,100,"BBC",NA +105,126,405,"2019",2,1,86,3,86,77,"BBC",NA +105,126,406,"2019",5,1,74,2,74,60,"BBC",NA +105,126,410,"2019",6,0,100,2,0,50,"BBC",NA +105,126,411,"2019",2,1,100,3,100,100,"BBC",NA +105,126,412,"2019",6,1,89,2,89,89,"BBC",NA +105,126,413,"2019",6,0,79,3,21,26,"BBC",NA +105,126,416,"2019",3,1,100,2,100,100,"BBC",NA +105,126,418,"2019",3,0,74,2,26,26,"BBC",NA +105,126,420,"2019",3,1,50,2,50,50,"BBC",NA +105,126,422,"2019",5,0,83,3,17,21,"BBC",NA +105,126,423,"2019",6,1,93,2,93,82,"BBC",NA +105,126,424,"2019",6,0,33,3,67,36,"BBC",NA +105,126,430,"2019",5,0,54,2,46,56,"BBC",NA +105,126,434,"2019",6,0,56,2,44,44,"BBC",NA +105,126,436,"2019",3,0,49,2,51,46,"BBC",NA +105,126,437,"2019",3,1,2,2,2,99,"BBC",NA +105,126,438,"2019",6,1,0,3,0,50,"BBC",NA +105,126,442,"2019",4,0,50,3,50,NA,"BBC",NA +105,126,445,"2019",3,0,100,2,0,0,"BBC",NA +105,126,450,"2019",5,0,100,3,0,100,"BBC",NA +105,126,451,"2019",6,0,0,3,100,100,"BBC",NA +105,126,455,"2019",2,0,57,3,43,95,"BBC",NA +105,126,459,"2019",6,0,44,2,56,56,"BBC",NA +105,126,460,"2019",4,0,70,3,30,NA,"BBC",NA +105,126,461,"2019",5,0,50,3,50,50,"BBC",NA +105,126,462,"2019",2,1,97,3,97,97,"BBC",NA +105,126,464,"2019",5,0,70,2,30,30,"BBC",NA +105,126,466,"2019",6,1,100,3,100,100,"BBC",NA +105,126,471,"2019",3,0,9,2,91,7,"BBC",NA +105,126,479,"2019",2,1,15,3,15,15,"BBC",NA +105,126,480,"2019",4,0,75,3,25,NA,"BBC",NA +105,126,482,"2019",3,0,37,3,63,44,"BBC",NA +105,126,483,"2019",3,1,22,3,22,45,"BBC",NA +105,126,485,"2019",5,0,91,3,9,86,"BBC",NA +105,126,486,"2019",3,1,49,3,49,50,"BBC",NA +105,126,488,"2019",4,0,50,3,50,NA,"BBC",NA +105,126,490,"2019",2,1,62,3,62,70,"BBC",NA +105,126,492,"2019",2,1,69,2,69,42,"BBC",NA +105,126,493,"2019",6,0,71,2,29,69,"BBC",NA +105,126,500,"2019",3,0,100,2,0,0,"BBC",NA +105,126,513,"2019",3,1,50,2,50,50,"BBC",NA +105,126,514,"2019",4,1,75,3,75,NA,"BBC",NA +105,126,518,"2019",5,0,58,2,42,56,"BBC",NA +105,126,521,"2019",2,1,76,3,76,62,"BBC",NA +105,126,523,"2019",5,0,63,3,37,37,"BBC",NA +105,126,524,"2019",5,0,42,3,58,69,"BBC",NA +105,126,525,"2019",4,1,70,3,70,NA,"BBC",NA +105,126,528,"2019",2,0,79,3,21,21,"BBC",NA +105,126,529,"2019",3,1,62,2,62,62,"BBC",NA +105,126,536,"2019",3,1,87,3,87,87,"BBC",NA +105,126,537,"2019",2,0,76,3,24,35,"BBC",NA +105,126,538,"2019",2,1,83,3,83,77,"BBC",NA +105,126,539,"2019",2,1,81,2,81,81,"BBC",NA +105,126,542,"2019",5,0,48,2,52,63,"BBC",NA +105,126,543,"2019",6,1,55,3,55,61,"BBC",NA +105,126,544,"2019",6,1,45,3,45,69,"BBC",NA +105,126,546,"2019",5,0,26,2,74,29,"BBC",NA +105,126,548,"2019",4,0,51,3,49,NA,"BBC",NA +105,126,551,"2019",5,1,61,2,61,61,"BBC",NA +105,126,552,"2019",6,0,25,2,75,75,"BBC",NA +105,126,554,"2019",2,0,32,2,68,74,"BBC",NA +105,126,558,"2019",2,0,47,2,53,38,"BBC",NA +105,126,560,"2019",3,1,74,2,74,34,"BBC",NA +105,126,562,"2019",3,1,70,2,70,64,"BBC",NA +105,126,564,"2019",6,1,89,2,89,89,"BBC",NA +105,126,571,"2019",6,1,100,2,100,100,"BBC",NA +105,126,573,"2019",5,1,100,2,100,100,"BBC",NA +105,126,574,"2019",3,0,50,2,50,50,"BBC",NA +105,126,575,"2019",6,0,100,2,0,57,"BBC",NA +105,126,582,"2019",3,0,56,3,44,44,"BBC",NA +105,126,583,"2019",5,1,55,3,55,55,"BBC",NA +105,126,588,"2019",6,1,75,3,75,68,"BBC",NA +105,126,590,"2019",5,0,50,3,50,50,"BBC",NA +105,126,591,"2019",2,1,60,3,60,51,"BBC",NA +105,126,592,"2019",3,0,83,3,17,38,"BBC",NA +105,126,596,"2019",2,0,50,3,50,50,"BBC",NA +105,126,601,"2019",4,1,75,3,75,NA,"BBC",NA +105,126,602,"2019",2,0,75,3,25,35,"BBC",NA +105,126,605,"2019",5,1,71,3,71,65,"BBC",NA +105,126,612,"2019",6,0,37,3,63,50,"BBC",NA +105,126,613,"2019",3,0,37,2,63,59,"BBC",NA +105,126,616,"2019",6,0,40,3,60,50,"BBC",NA +105,126,617,"2019",6,0,54,3,46,50,"BBC",NA +105,126,619,"2019",6,1,42,3,42,45,"BBC",NA +105,126,620,"2019",5,1,100,2,100,100,"BBC",NA +105,126,623,"2019",3,1,96,2,96,84,"BBC",NA +105,126,625,"2019",2,0,32,2,68,68,"BBC",NA +105,126,634,"2019",4,0,93,3,7,NA,"BBC",NA +105,126,635,"2019",5,1,90,3,90,80,"BBC",NA +105,126,638,"2019",6,0,0,2,100,100,"BBC",NA +105,126,642,"2019",3,0,30,2,70,22,"BBC",NA +105,126,643,"2019",2,0,87,2,13,13,"BBC",NA +105,126,644,"2019",2,0,62,2,38,50,"BBC",NA +105,126,652,"2019",2,1,89,3,89,87,"BBC",NA +105,126,653,"2019",5,1,100,2,100,100,"BBC",NA +105,126,654,"2019",3,0,58,2,42,50,"BBC",NA +105,126,661,"2019",5,0,0,3,100,21,"BBC",NA +105,126,666,"2019",3,0,0,3,100,100,"BBC",NA +105,126,668,"2019",5,1,84,2,84,84,"BBC",NA +105,126,669,"2019",5,0,96,2,4,4,"BBC",NA +105,126,670,"2019",6,1,85,3,85,85,"BBC",NA +105,126,671,"2019",3,1,0,3,0,0,"BBC",NA +105,126,674,"2019",6,0,66,2,34,34,"BBC",NA +105,126,675,"2019",6,1,93,2,93,93,"BBC",NA +105,126,678,"2019",6,1,92,2,92,92,"BBC",NA +105,126,680,"2019",6,1,55,3,55,48,"BBC",NA +105,126,682,"2019",5,1,50,2,50,50,"BBC",NA +105,126,685,"2019",5,1,100,2,100,92,"BBC",NA +105,126,688,"2019",2,0,66,3,34,81,"BBC",NA +105,126,690,"2019",6,0,10,2,90,90,"BBC",NA +105,126,693,"2019",3,1,100,3,100,100,"BBC",NA +105,126,695,"2019",3,0,100,3,0,0,"BBC",NA +105,126,696,"2019",5,1,100,3,100,100,"BBC",NA +105,126,697,"2019",2,0,0,2,100,100,"BBC",NA +105,126,699,"2019",3,0,0,3,100,100,"BBC",NA +105,126,702,"2019",6,0,0,2,100,100,"BBC",NA +105,126,705,"2019",5,0,5,3,95,89,"BBC",NA +105,126,706,"2019",6,1,100,3,100,100,"BBC",NA +105,126,709,"2019",3,1,0,3,0,100,"BBC",NA +105,126,711,"2019",2,1,0,3,0,50,"BBC",NA +105,126,713,"2019",2,0,50,2,50,50,"BBC",NA +105,126,714,"2019",2,1,100,2,100,100,"BBC",NA +105,126,715,"2019",3,0,32,3,68,48,"BBC",NA +105,126,718,"2019",3,1,42,3,42,60,"BBC",NA +105,126,723,"2019",5,1,63,2,63,63,"BBC",NA +105,126,731,"2019",2,0,59,2,41,42,"BBC",NA +105,126,735,"2019",6,1,56,3,56,100,"BBC",NA +105,126,738,"2019",6,0,7,2,93,81,"BBC",NA +105,126,741,"2019",2,0,75,3,25,27,"BBC",NA +105,126,748,"2019",5,1,78,2,78,78,"BBC",NA +105,126,749,"2019",3,1,50,3,50,50,"BBC",NA +105,126,750,"2019",2,0,0,2,100,100,"BBC",NA +105,126,752,"2019",3,1,46,2,46,33,"BBC",NA +105,126,756,"2019",5,0,70,3,30,30,"BBC",NA +105,126,758,"2019",3,1,20,3,20,40,"BBC",NA +105,126,760,"2019",3,1,50,3,50,50,"BBC",NA +105,126,763,"2019",2,1,50,3,50,50,"BBC",NA +105,126,765,"2019",6,1,100,2,100,100,"BBC",NA +105,126,766,"2019",2,0,50,3,50,50,"BBC",NA +105,126,769,"2019",5,0,0,2,100,100,"BBC",NA +105,126,770,"2019",6,0,100,2,0,0,"BBC",NA +105,126,772,"2019",2,1,50,3,50,50,"BBC",NA +105,126,773,"2019",3,1,86,3,86,60,"BBC",NA +105,126,777,"2019",2,1,100,3,100,100,"BBC",NA +105,126,781,"2019",3,0,20,3,80,80,"BBC",NA +105,126,782,"2019",5,1,69,3,69,69,"BBC",NA +105,126,783,"2019",3,1,100,3,100,100,"BBC",NA +105,126,788,"2019",3,1,79,3,79,72,"BBC",NA +105,126,790,"2019",5,0,50,2,50,50,"BBC",NA +105,126,794,"2019",4,0,50,3,50,NA,"BBC",NA +105,126,795,"2019",2,0,82,2,18,50,"BBC",NA +105,126,796,"2019",2,0,50,2,50,50,"BBC",NA +105,126,800,"2019",2,0,0,2,100,100,"BBC",NA +105,126,805,"2019",6,0,50,3,50,50,"BBC",NA +105,126,808,"2019",6,0,0,2,100,0,"BBC",NA +105,126,810,"2019",6,0,100,3,0,0,"BBC",NA +105,126,812,"2019",3,0,0,3,100,9,"BBC",NA +105,126,817,"2019",3,1,100,2,100,100,"BBC",NA +105,126,820,"2019",6,0,60,2,40,40,"BBC",NA +105,126,822,"2019",5,0,100,3,0,50,"BBC",NA +105,126,824,"2019",3,0,51,3,49,63,"BBC",NA +105,126,825,"2019",2,0,45,2,55,100,"BBC",NA +105,126,828,"2019",5,1,100,2,100,100,"BBC",NA +105,126,829,"2019",6,1,97,3,97,89,"BBC",NA +105,126,837,"2019",6,1,95,2,95,81,"BBC",NA +105,126,848,"2019",5,0,44,2,56,71,"BBC",NA +105,126,852,"2019",3,1,41,2,41,47,"BBC",NA +105,126,859,"2019",2,0,95,3,5,17,"BBC",NA +105,126,865,"2019",2,0,0,3,100,100,"BBC",NA +105,126,866,"2019",6,0,5,2,95,94,"BBC",NA +105,126,867,"2019",2,1,56,3,56,76,"BBC",NA +105,126,870,"2019",2,1,50,2,50,50,"BBC",NA +105,126,874,"2019",5,0,91,3,9,50,"BBC",NA +105,126,876,"2019",2,0,0,2,100,100,"BBC",NA +105,126,878,"2019",5,1,79,3,79,79,"BBC",NA +105,126,879,"2019",4,1,100,3,100,NA,"BBC",NA +105,126,885,"2019",3,1,100,3,100,100,"BBC",NA +105,126,887,"2019",3,0,0,3,100,27,"BBC",NA +105,126,899,"2019",2,0,100,2,0,0,"BBC",NA +105,126,907,"2019",3,0,65,2,35,35,"BBC",NA +105,126,908,"2019",3,1,55,2,55,41,"BBC",NA +105,126,914,"2019",3,0,75,3,25,25,"BBC",NA +105,126,915,"2019",5,1,100,2,100,100,"BBC",NA +105,126,917,"2019",5,0,30,2,70,70,"BBC",NA +105,126,918,"2019",5,1,82,2,82,99,"BBC",NA +105,126,919,"2019",4,0,68,3,32,NA,"BBC",NA +105,126,922,"2019",3,1,84,3,84,83,"BBC",NA +105,126,927,"2019",3,0,0,2,100,78,"BBC",NA +105,126,928,"2019",6,1,90,3,90,15,"BBC",NA +105,126,931,"2019",6,1,70,2,70,64,"BBC",NA +105,126,932,"2019",5,0,50,3,50,50,"BBC",NA +105,126,937,"2019",3,0,16,2,84,82,"BBC",NA +105,126,941,"2019",6,0,18,2,82,79,"BBC",NA +105,126,948,"2019",3,0,42,2,58,51,"BBC",NA +105,126,949,"2019",6,0,100,2,0,0,"BBC",NA +105,126,950,"2019",6,1,82,2,82,82,"BBC",NA +105,126,951,"2019",2,0,51,3,49,38,"BBC",NA +105,126,953,"2019",5,1,83,3,83,83,"BBC",NA +105,126,954,"2019",3,0,100,3,0,0,"BBC",NA +105,126,959,"2019",6,1,100,3,100,100,"BBC",NA +105,126,960,"2019",2,1,60,3,60,47,"BBC",NA +105,126,961,"2019",3,0,80,2,20,20,"BBC",NA +105,126,965,"2019",6,0,15,2,85,80,"BBC",NA +105,126,968,"2019",3,1,100,2,100,100,"BBC",NA +105,126,969,"2019",3,0,54,2,46,46,"BBC",NA +105,126,970,"2019",6,0,11,3,89,81,"BBC",NA +105,126,975,"2019",5,1,5,2,5,63,"BBC",NA +105,126,976,"2019",2,0,100,2,0,0,"BBC",NA +105,126,983,"2019",2,1,23,2,23,23,"BBC",NA +105,126,984,"2019",3,1,82,2,82,82,"BBC",NA +105,126,987,"2019",5,1,79,2,79,73,"BBC",NA +105,126,990,"2019",3,0,50,3,50,50,"BBC",NA +105,126,994,"2019",3,0,100,3,0,100,"BBC",NA +105,126,996,"2019",3,0,61,3,39,48,"BBC",NA +105,126,999,"2019",6,1,81,2,81,91,"BBC",NA +105,126,1000,"2019",6,1,100,3,100,100,"BBC",NA +105,126,1008,"2019",3,1,67,2,67,67,"BBC",NA +105,126,1010,"2019",2,0,49,2,51,38,"BBC",NA +105,126,1012,"2019",3,0,80,2,20,27,"BBC",NA +105,126,1017,"2019",2,0,25,2,75,36,"BBC",NA +105,126,1018,"2019",6,1,86,3,86,96,"BBC",NA +105,126,1019,"2019",6,0,100,3,0,0,"BBC",NA +105,126,1027,"2019",5,0,0,3,100,99,"BBC",NA +105,126,1030,"2019",2,0,78,2,22,59,"BBC",NA +105,126,1031,"2019",6,0,82,2,18,80,"BBC",NA +105,126,1032,"2019",5,0,63,2,37,49,"BBC",NA +105,126,1034,"2019",2,0,51,3,49,49,"BBC",NA +105,126,1040,"2019",5,0,27,2,73,57,"BBC",NA +105,126,1041,"2019",2,0,91,2,9,92,"BBC",NA +105,126,1047,"2019",5,1,19,3,19,24,"BBC",NA +105,126,1051,"2019",2,1,100,3,100,100,"BBC",NA +105,126,1052,"2019",3,0,59,2,41,50,"BBC",NA +105,126,1053,"2019",5,1,100,2,100,100,"BBC",NA +105,126,1054,"2019",3,0,56,3,44,45,"BBC",NA +105,126,1059,"2019",6,0,17,3,83,11,"BBC",NA +105,126,1060,"2019",3,0,0,3,100,100,"BBC",NA +105,126,1068,"2019",2,1,99,3,99,72,"BBC",NA +105,126,1069,"2019",3,1,100,2,100,100,"BBC",NA +105,126,1070,"2019",3,0,81,2,19,49,"BBC",NA +105,126,1072,"2019",2,1,96,2,96,96,"BBC",NA +105,126,1079,"2019",2,1,91,2,91,91,"BBC",NA +105,126,1082,"2019",3,1,98,2,98,98,"BBC",NA +105,126,1083,"2019",3,1,100,3,100,100,"BBC",NA +105,126,1085,"2019",3,0,100,3,0,0,"BBC",NA +105,126,1087,"2019",3,1,100,2,100,100,"BBC",NA +105,126,1089,"2019",2,0,40,2,60,60,"BBC",NA +105,126,1091,"2019",3,0,75,3,25,53,"BBC",NA +105,126,1096,"2019",5,1,91,3,91,97,"BBC",NA +105,126,1098,"2019",3,1,94,2,94,89,"BBC",NA +105,126,1100,"2019",2,0,89,2,11,16,"BBC",NA +105,126,1103,"2019",2,1,88,2,88,83,"BBC",NA +105,126,1105,"2019",6,0,62,3,38,24,"BBC",NA +105,126,1110,"2019",3,1,75,3,75,80,"BBC",NA +105,126,1113,"2019",2,1,84,2,84,84,"BBC",NA +105,126,1114,"2019",6,1,0,2,0,0,"BBC",NA +105,126,1117,"2019",3,0,97,3,3,100,"BBC",NA +105,126,1120,"2019",3,1,79,3,79,81,"BBC",NA +105,126,1127,"2019",3,0,98,2,2,19,"BBC",NA +105,126,1130,"2019",2,1,100,2,100,100,"BBC",NA +105,126,1133,"2019",5,0,83,2,17,17,"BBC",NA +105,126,1139,"2019",5,0,100,3,0,0,"BBC",NA +105,126,1141,"2019",3,0,52,2,48,48,"BBC",NA +105,126,1148,"2019",5,1,94,3,94,94,"BBC",NA +105,126,1149,"2019",5,0,36,2,64,64,"BBC",NA +105,126,1152,"2019",5,0,10,2,90,91,"BBC",NA +105,126,1157,"2019",4,0,78,3,22,NA,"BBC",NA +105,126,1161,"2019",2,1,80,2,80,87,"BBC",NA +105,126,1163,"2019",5,1,71,3,71,78,"BBC",NA +105,126,1167,"2019",2,0,79,2,21,15,"BBC",NA +105,128,145,"2019",3,1,91,2,91,91,"Xinhua",NA +105,128,147,"2019",4,0,21,2,79,70,"Xinhua",NA +105,128,149,"2019",4,1,83,2,83,77,"Xinhua",NA +105,128,151,"2019",6,1,50,2,50,91,"Xinhua",NA +105,128,152,"2019",5,0,77,3,23,13,"Xinhua",NA +105,128,153,"2019",5,0,19,2,81,50,"Xinhua",NA +105,128,160,"2019",4,1,100,2,100,100,"Xinhua",NA +105,128,162,"2019",6,0,0,2,100,100,"Xinhua",NA +105,128,163,"2019",4,1,71,2,71,50,"Xinhua",NA +105,128,169,"2019",3,1,99,3,99,99,"Xinhua",NA +105,128,171,"2019",2,1,87,3,87,91,"Xinhua",NA +105,128,172,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,175,"2019",3,0,32,3,68,68,"Xinhua",NA +105,128,178,"2019",2,0,3,2,97,91,"Xinhua",NA +105,128,179,"2019",3,0,44,2,56,55,"Xinhua",NA +105,128,181,"2019",6,1,79,3,79,25,"Xinhua",NA +105,128,182,"2019",4,1,100,2,100,100,"Xinhua",NA +105,128,184,"2019",3,1,100,3,100,100,"Xinhua",NA +105,128,186,"2019",5,0,81,3,19,30,"Xinhua",NA +105,128,189,"2019",3,1,92,3,92,83,"Xinhua",NA +105,128,191,"2019",2,1,85,3,85,95,"Xinhua",NA +105,128,192,"2019",2,1,100,3,100,99,"Xinhua",NA +105,128,193,"2019",2,1,61,3,61,50,"Xinhua",NA +105,128,194,"2019",2,1,83,3,83,83,"Xinhua",NA +105,128,197,"2019",5,1,4,2,4,76,"Xinhua",NA +105,128,198,"2019",4,1,97,2,97,92,"Xinhua",NA +105,128,199,"2019",6,1,71,2,71,70,"Xinhua",NA +105,128,200,"2019",4,0,41,2,59,49,"Xinhua",NA +105,128,201,"2019",5,0,0,2,100,100,"Xinhua",NA +105,128,207,"2019",5,1,100,2,100,100,"Xinhua",NA +105,128,210,"2019",3,1,82,3,82,82,"Xinhua",NA +105,128,216,"2019",3,1,100,3,100,100,"Xinhua",NA +105,128,217,"2019",4,0,21,2,79,69,"Xinhua",NA +105,128,218,"2019",3,0,0,3,100,100,"Xinhua",NA +105,128,219,"2019",3,1,100,3,100,0,"Xinhua",NA +105,128,221,"2019",5,0,0,3,100,100,"Xinhua",NA +105,128,223,"2019",2,0,25,3,75,69,"Xinhua",NA +105,128,227,"2019",2,1,81,3,81,81,"Xinhua",NA +105,128,229,"2019",2,0,85,3,15,15,"Xinhua",NA +105,128,231,"2019",4,0,0,2,100,100,"Xinhua",NA +105,128,234,"2019",6,0,44,2,56,45,"Xinhua",NA +105,128,240,"2019",2,0,88,2,12,79,"Xinhua",NA +105,128,244,"2019",6,0,30,2,70,100,"Xinhua",NA +105,128,245,"2019",3,0,60,3,40,40,"Xinhua",NA +105,128,248,"2019",5,0,50,2,50,50,"Xinhua",NA +105,128,249,"2019",6,0,0,3,100,100,"Xinhua",NA +105,128,251,"2019",3,0,55,2,45,47,"Xinhua",NA +105,128,254,"2019",3,1,81,2,81,70,"Xinhua",NA +105,128,256,"2019",3,1,97,3,97,97,"Xinhua",NA +105,128,257,"2019",6,0,86,2,14,83,"Xinhua",NA +105,128,262,"2019",4,1,81,2,81,60,"Xinhua",NA +105,128,268,"2019",3,0,32,3,68,80,"Xinhua",NA +105,128,271,"2019",3,0,89,3,11,2,"Xinhua",NA +105,128,274,"2019",4,0,0,2,100,99,"Xinhua",NA +105,128,275,"2019",4,1,82,2,82,37,"Xinhua",NA +105,128,277,"2019",3,1,80,3,80,80,"Xinhua",NA +105,128,284,"2019",5,1,91,3,91,77,"Xinhua",NA +105,128,286,"2019",6,1,94,2,94,89,"Xinhua",NA +105,128,287,"2019",6,1,97,2,97,93,"Xinhua",NA +105,128,288,"2019",5,1,83,2,83,69,"Xinhua",NA +105,128,290,"2019",5,0,19,2,81,72,"Xinhua",NA +105,128,291,"2019",2,0,85,3,15,15,"Xinhua",NA +105,128,292,"2019",2,1,100,3,100,100,"Xinhua",NA +105,128,293,"2019",2,1,100,2,100,100,"Xinhua",NA +105,128,294,"2019",2,1,95,3,95,95,"Xinhua",NA +105,128,297,"2019",4,0,0,2,100,0,"Xinhua",NA +105,128,304,"2019",6,0,100,2,0,2,"Xinhua",NA +105,128,308,"2019",5,1,92,3,92,92,"Xinhua",NA +105,128,309,"2019",5,0,15,2,85,44,"Xinhua",NA +105,128,311,"2019",3,0,48,3,52,9,"Xinhua",NA +105,128,312,"2019",4,1,82,2,82,92,"Xinhua",NA +105,128,313,"2019",2,0,0,3,100,100,"Xinhua",NA +105,128,316,"2019",5,0,37,3,63,70,"Xinhua",NA +105,128,317,"2019",4,1,100,2,100,53,"Xinhua",NA +105,128,323,"2019",6,1,16,3,16,43,"Xinhua",NA +105,128,326,"2019",3,0,50,2,50,50,"Xinhua",NA +105,128,329,"2019",4,1,0,2,0,0,"Xinhua",NA +105,128,330,"2019",2,0,12,3,88,93,"Xinhua",NA +105,128,334,"2019",6,1,50,2,50,50,"Xinhua",NA +105,128,335,"2019",2,0,73,2,27,27,"Xinhua",NA +105,128,336,"2019",5,1,3,3,3,66,"Xinhua",NA +105,128,337,"2019",6,0,0,2,100,91,"Xinhua",NA +105,128,338,"2019",5,1,91,2,91,91,"Xinhua",NA +105,128,340,"2019",5,0,38,2,62,44,"Xinhua",NA +105,128,342,"2019",3,0,64,3,36,12,"Xinhua",NA +105,128,343,"2019",2,0,74,2,26,26,"Xinhua",NA +105,128,344,"2019",4,1,91,2,91,91,"Xinhua",NA +105,128,345,"2019",3,1,89,3,89,89,"Xinhua",NA +105,128,346,"2019",4,0,100,2,0,100,"Xinhua",NA +105,128,347,"2019",5,1,93,2,93,93,"Xinhua",NA +105,128,348,"2019",2,1,96,3,96,100,"Xinhua",NA +105,128,349,"2019",6,0,64,2,36,36,"Xinhua",NA +105,128,350,"2019",5,0,73,2,27,37,"Xinhua",NA +105,128,353,"2019",3,0,50,2,50,50,"Xinhua",NA +105,128,354,"2019",2,0,0,2,100,99,"Xinhua",NA +105,128,355,"2019",6,1,66,2,66,66,"Xinhua",NA +105,128,357,"2019",3,0,14,3,86,50,"Xinhua",NA +105,128,360,"2019",2,0,20,2,80,80,"Xinhua",NA +105,128,361,"2019",3,1,100,2,100,100,"Xinhua",NA +105,128,362,"2019",6,0,58,2,42,50,"Xinhua",NA +105,128,363,"2019",3,1,50,2,50,50,"Xinhua",NA +105,128,370,"2019",2,1,100,2,100,65,"Xinhua",NA +105,128,373,"2019",6,1,100,2,100,100,"Xinhua",NA +105,128,374,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,382,"2019",4,0,1,2,99,50,"Xinhua",NA +105,128,386,"2019",4,0,100,2,0,50,"Xinhua",NA +105,128,388,"2019",3,0,2,2,98,98,"Xinhua",NA +105,128,390,"2019",6,0,100,2,0,100,"Xinhua",NA +105,128,395,"2019",6,0,84,2,16,16,"Xinhua",NA +105,128,396,"2019",4,0,1,2,99,50,"Xinhua",NA +105,128,397,"2019",6,1,21,3,21,71,"Xinhua",NA +105,128,398,"2019",3,0,9,3,91,91,"Xinhua",NA +105,128,401,"2019",4,0,62,2,38,66,"Xinhua",NA +105,128,404,"2019",5,0,16,3,84,84,"Xinhua",NA +105,128,406,"2019",5,1,53,3,53,74,"Xinhua",NA +105,128,407,"2019",4,0,100,2,0,0,"Xinhua",NA +105,128,409,"2019",5,0,50,3,50,50,"Xinhua",NA +105,128,410,"2019",6,0,0,3,100,0,"Xinhua",NA +105,128,412,"2019",6,1,5,3,5,89,"Xinhua",NA +105,128,414,"2019",4,1,88,2,88,50,"Xinhua",NA +105,128,415,"2019",4,1,50,2,50,50,"Xinhua",NA +105,128,418,"2019",3,0,74,3,26,26,"Xinhua",NA +105,128,423,"2019",6,1,93,3,93,93,"Xinhua",NA +105,128,429,"2019",4,1,58,2,58,55,"Xinhua",NA +105,128,430,"2019",5,0,54,3,46,46,"Xinhua",NA +105,128,432,"2019",4,0,100,2,0,100,"Xinhua",NA +105,128,438,"2019",6,1,50,2,50,100,"Xinhua",NA +105,128,443,"2019",3,0,100,2,0,0,"Xinhua",NA +105,128,445,"2019",3,0,54,3,46,0,"Xinhua",NA +105,128,447,"2019",2,1,69,3,69,69,"Xinhua",NA +105,128,448,"2019",4,0,91,2,9,69,"Xinhua",NA +105,128,449,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,451,"2019",6,0,0,2,100,95,"Xinhua",NA +105,128,456,"2019",4,1,100,2,100,100,"Xinhua",NA +105,128,457,"2019",2,0,64,3,36,49,"Xinhua",NA +105,128,459,"2019",6,0,44,3,56,56,"Xinhua",NA +105,128,462,"2019",2,1,97,2,97,50,"Xinhua",NA +105,128,463,"2019",5,0,61,2,39,39,"Xinhua",NA +105,128,465,"2019",4,0,67,2,33,36,"Xinhua",NA +105,128,467,"2019",5,0,100,2,0,0,"Xinhua",NA +105,128,468,"2019",5,0,62,3,38,38,"Xinhua",NA +105,128,475,"2019",4,1,73,2,73,73,"Xinhua",NA +105,128,478,"2019",3,0,60,3,40,50,"Xinhua",NA +105,128,481,"2019",3,1,100,3,100,100,"Xinhua",NA +105,128,483,"2019",3,1,45,2,45,95,"Xinhua",NA +105,128,484,"2019",5,1,89,3,89,62,"Xinhua",NA +105,128,485,"2019",5,0,14,2,86,80,"Xinhua",NA +105,128,486,"2019",3,1,50,2,50,52,"Xinhua",NA +105,128,489,"2019",6,0,50,2,50,50,"Xinhua",NA +105,128,491,"2019",2,0,20,2,80,80,"Xinhua",NA +105,128,493,"2019",6,0,64,3,36,29,"Xinhua",NA +105,128,494,"2019",6,1,72,3,72,45,"Xinhua",NA +105,128,495,"2019",4,0,56,2,44,29,"Xinhua",NA +105,128,497,"2019",6,1,71,2,71,71,"Xinhua",NA +105,128,499,"2019",2,1,76,3,76,63,"Xinhua",NA +105,128,505,"2019",4,0,52,2,48,50,"Xinhua",NA +105,128,507,"2019",5,1,100,3,100,50,"Xinhua",NA +105,128,508,"2019",6,0,81,3,19,28,"Xinhua",NA +105,128,513,"2019",3,1,70,3,70,50,"Xinhua",NA +105,128,515,"2019",2,1,50,2,50,50,"Xinhua",NA +105,128,517,"2019",6,1,79,2,79,69,"Xinhua",NA +105,128,519,"2019",6,1,66,2,66,66,"Xinhua",NA +105,128,527,"2019",2,0,50,2,50,50,"Xinhua",NA +105,128,530,"2019",3,1,50,2,50,50,"Xinhua",NA +105,128,533,"2019",4,0,4,2,96,96,"Xinhua",NA +105,128,534,"2019",4,1,33,2,33,81,"Xinhua",NA +105,128,537,"2019",2,0,65,2,35,45,"Xinhua",NA +105,128,538,"2019",2,1,77,2,77,69,"Xinhua",NA +105,128,540,"2019",3,1,33,2,33,35,"Xinhua",NA +105,128,541,"2019",3,0,85,2,15,34,"Xinhua",NA +105,128,544,"2019",6,1,69,2,69,69,"Xinhua",NA +105,128,547,"2019",6,1,41,2,41,100,"Xinhua",NA +105,128,549,"2019",4,0,86,2,14,19,"Xinhua",NA +105,128,550,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,553,"2019",4,0,50,2,50,50,"Xinhua",NA +105,128,554,"2019",2,0,21,3,79,68,"Xinhua",NA +105,128,562,"2019",3,1,74,3,74,70,"Xinhua",NA +105,128,564,"2019",6,1,89,3,89,89,"Xinhua",NA +105,128,566,"2019",4,1,94,2,94,77,"Xinhua",NA +105,128,568,"2019",6,1,39,2,39,36,"Xinhua",NA +105,128,573,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,574,"2019",3,0,50,3,50,50,"Xinhua",NA +105,128,578,"2019",3,0,20,2,80,71,"Xinhua",NA +105,128,582,"2019",3,0,56,2,44,61,"Xinhua",NA +105,128,584,"2019",4,0,63,2,37,37,"Xinhua",NA +105,128,586,"2019",5,0,41,3,59,25,"Xinhua",NA +105,128,590,"2019",5,0,50,2,50,50,"Xinhua",NA +105,128,592,"2019",3,0,62,2,38,32,"Xinhua",NA +105,128,594,"2019",5,0,80,3,20,70,"Xinhua",NA +105,128,595,"2019",2,1,100,3,100,100,"Xinhua",NA +105,128,597,"2019",2,0,61,3,39,57,"Xinhua",NA +105,128,600,"2019",4,1,56,2,56,80,"Xinhua",NA +105,128,603,"2019",4,1,68,2,68,40,"Xinhua",NA +105,128,606,"2019",3,1,64,3,64,64,"Xinhua",NA +105,128,607,"2019",6,1,75,3,75,41,"Xinhua",NA +105,128,611,"2019",5,1,67,3,67,67,"Xinhua",NA +105,128,620,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,621,"2019",6,0,100,3,0,0,"Xinhua",NA +105,128,622,"2019",5,1,85,2,85,77,"Xinhua",NA +105,128,625,"2019",2,0,72,3,28,68,"Xinhua",NA +105,128,627,"2019",2,0,0,3,100,100,"Xinhua",NA +105,128,628,"2019",3,0,50,3,50,50,"Xinhua",NA +105,128,630,"2019",4,0,50,2,50,50,"Xinhua",NA +105,128,631,"2019",6,0,50,3,50,50,"Xinhua",NA +105,128,636,"2019",4,1,66,2,66,73,"Xinhua",NA +105,128,638,"2019",6,0,0,3,100,100,"Xinhua",NA +105,128,639,"2019",5,0,50,2,50,50,"Xinhua",NA +105,128,640,"2019",6,0,23,3,77,77,"Xinhua",NA +105,128,649,"2019",4,1,100,2,100,100,"Xinhua",NA +105,128,650,"2019",4,1,83,2,83,83,"Xinhua",NA +105,128,651,"2019",5,0,84,2,16,0,"Xinhua",NA +105,128,652,"2019",2,1,87,2,87,87,"Xinhua",NA +105,128,653,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,657,"2019",3,1,90,2,90,90,"Xinhua",NA +105,128,658,"2019",5,0,59,2,41,62,"Xinhua",NA +105,128,660,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,664,"2019",4,0,7,2,93,93,"Xinhua",NA +105,128,665,"2019",4,0,25,2,75,75,"Xinhua",NA +105,128,668,"2019",5,1,91,3,91,84,"Xinhua",NA +105,128,669,"2019",5,0,86,3,14,4,"Xinhua",NA +105,128,678,"2019",6,1,92,3,92,92,"Xinhua",NA +105,128,679,"2019",2,0,100,3,0,8,"Xinhua",NA +105,128,682,"2019",5,1,26,3,26,50,"Xinhua",NA +105,128,683,"2019",2,0,16,3,84,27,"Xinhua",NA +105,128,684,"2019",6,1,89,2,89,89,"Xinhua",NA +105,128,694,"2019",3,1,96,2,96,91,"Xinhua",NA +105,128,696,"2019",5,1,100,2,100,100,"Xinhua",NA +105,128,701,"2019",3,1,100,2,100,78,"Xinhua",NA +105,128,706,"2019",6,1,100,2,100,100,"Xinhua",NA +105,128,710,"2019",4,0,89,2,11,13,"Xinhua",NA +105,128,713,"2019",2,0,50,3,50,50,"Xinhua",NA +105,128,716,"2019",5,0,53,3,47,47,"Xinhua",NA +105,128,720,"2019",4,0,100,2,0,0,"Xinhua",NA +105,128,721,"2019",6,1,100,2,100,100,"Xinhua",NA +105,128,722,"2019",6,0,75,2,25,47,"Xinhua",NA +105,128,723,"2019",5,1,63,3,63,63,"Xinhua",NA +105,128,724,"2019",4,0,100,2,0,0,"Xinhua",NA +105,128,725,"2019",2,1,100,2,100,100,"Xinhua",NA +105,128,728,"2019",5,1,0,2,0,0,"Xinhua",NA +105,128,736,"2019",3,0,90,3,10,10,"Xinhua",NA +105,128,740,"2019",6,1,61,3,61,90,"Xinhua",NA +105,128,741,"2019",2,0,73,2,27,27,"Xinhua",NA +105,128,743,"2019",2,1,100,2,100,100,"Xinhua",NA +105,128,746,"2019",3,1,77,2,77,72,"Xinhua",NA +105,128,749,"2019",3,1,50,2,50,50,"Xinhua",NA +105,128,750,"2019",2,0,0,3,100,100,"Xinhua",NA +105,128,751,"2019",2,0,98,2,2,23,"Xinhua",NA +105,128,752,"2019",3,1,72,3,72,46,"Xinhua",NA +105,128,753,"2019",4,1,90,2,90,70,"Xinhua",NA +105,128,755,"2019",4,1,50,2,50,50,"Xinhua",NA +105,128,761,"2019",2,1,60,2,60,50,"Xinhua",NA +105,128,762,"2019",4,1,99,2,99,50,"Xinhua",NA +105,128,765,"2019",6,1,100,3,100,100,"Xinhua",NA +105,128,768,"2019",2,1,79,3,79,50,"Xinhua",NA +105,128,770,"2019",6,0,100,3,0,0,"Xinhua",NA +105,128,778,"2019",2,1,100,3,100,100,"Xinhua",NA +105,128,781,"2019",3,0,20,2,80,80,"Xinhua",NA +105,128,784,"2019",3,0,0,3,100,100,"Xinhua",NA +105,128,785,"2019",6,1,100,3,100,100,"Xinhua",NA +105,128,787,"2019",3,0,60,3,40,40,"Xinhua",NA +105,128,791,"2019",2,0,91,3,9,69,"Xinhua",NA +105,128,792,"2019",5,0,100,3,0,0,"Xinhua",NA +105,128,793,"2019",2,0,55,3,45,72,"Xinhua",NA +105,128,795,"2019",2,0,50,3,50,18,"Xinhua",NA +105,128,798,"2019",3,1,100,2,100,100,"Xinhua",NA +105,128,799,"2019",2,1,89,2,89,20,"Xinhua",NA +105,128,801,"2019",2,0,50,2,50,50,"Xinhua",NA +105,128,802,"2019",6,1,100,2,100,100,"Xinhua",NA +105,128,803,"2019",2,1,100,3,100,100,"Xinhua",NA +105,128,805,"2019",6,0,50,2,50,50,"Xinhua",NA +105,128,813,"2019",3,0,50,2,50,50,"Xinhua",NA +105,128,816,"2019",6,1,8,2,8,12,"Xinhua",NA +105,128,825,"2019",2,0,99,3,1,55,"Xinhua",NA +105,128,829,"2019",6,1,89,2,89,80,"Xinhua",NA +105,128,830,"2019",4,0,5,2,95,0,"Xinhua",NA +105,128,832,"2019",5,0,50,3,50,50,"Xinhua",NA +105,128,834,"2019",4,0,0,2,100,100,"Xinhua",NA +105,128,835,"2019",2,0,72,3,28,38,"Xinhua",NA +105,128,839,"2019",5,0,40,3,60,60,"Xinhua",NA +105,128,840,"2019",5,0,18,3,82,90,"Xinhua",NA +105,128,841,"2019",6,1,100,3,100,50,"Xinhua",NA +105,128,842,"2019",3,0,55,3,45,50,"Xinhua",NA +105,128,844,"2019",5,1,91,3,91,91,"Xinhua",NA +105,128,845,"2019",3,0,50,2,50,50,"Xinhua",NA +105,128,846,"2019",3,1,100,2,100,100,"Xinhua",NA +105,128,850,"2019",6,1,56,2,56,50,"Xinhua",NA +105,128,854,"2019",2,0,89,3,11,50,"Xinhua",NA +105,128,857,"2019",2,0,50,2,50,50,"Xinhua",NA +105,128,858,"2019",6,1,60,2,60,60,"Xinhua",NA +105,128,861,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,862,"2019",3,1,60,2,60,71,"Xinhua",NA +105,128,863,"2019",2,0,18,3,82,82,"Xinhua",NA +105,128,867,"2019",2,1,76,2,76,35,"Xinhua",NA +105,128,874,"2019",5,0,50,2,50,50,"Xinhua",NA +105,128,875,"2019",3,0,47,3,53,54,"Xinhua",NA +105,128,884,"2019",4,0,50,2,50,50,"Xinhua",NA +105,128,889,"2019",5,0,0,2,100,0,"Xinhua",NA +105,128,891,"2019",6,0,100,2,0,100,"Xinhua",NA +105,128,893,"2019",4,1,17,2,17,86,"Xinhua",NA +105,128,897,"2019",4,1,5,2,5,10,"Xinhua",NA +105,128,898,"2019",3,0,100,2,0,100,"Xinhua",NA +105,128,899,"2019",2,0,100,3,0,0,"Xinhua",NA +105,128,900,"2019",4,0,68,2,32,32,"Xinhua",NA +105,128,902,"2019",6,1,50,2,50,99,"Xinhua",NA +105,128,903,"2019",5,1,52,3,52,51,"Xinhua",NA +105,128,904,"2019",6,0,78,2,22,35,"Xinhua",NA +105,128,905,"2019",2,1,100,3,100,100,"Xinhua",NA +105,128,907,"2019",3,0,43,3,57,35,"Xinhua",NA +105,128,911,"2019",2,1,88,2,88,88,"Xinhua",NA +105,128,914,"2019",3,0,75,2,25,25,"Xinhua",NA +105,128,915,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,916,"2019",4,0,50,2,50,50,"Xinhua",NA +105,128,917,"2019",5,0,30,3,70,70,"Xinhua",NA +105,128,918,"2019",5,1,82,3,82,82,"Xinhua",NA +105,128,921,"2019",4,0,50,2,50,50,"Xinhua",NA +105,128,925,"2019",4,0,0,2,100,50,"Xinhua",NA +105,128,926,"2019",5,0,0,2,100,66,"Xinhua",NA +105,128,935,"2019",5,1,89,2,89,73,"Xinhua",NA +105,128,937,"2019",3,0,16,3,84,84,"Xinhua",NA +105,128,941,"2019",6,0,18,3,82,82,"Xinhua",NA +105,128,945,"2019",4,0,67,2,33,34,"Xinhua",NA +105,128,947,"2019",2,0,71,3,29,60,"Xinhua",NA +105,128,950,"2019",6,1,82,3,82,82,"Xinhua",NA +105,128,951,"2019",2,0,62,2,38,38,"Xinhua",NA +105,128,952,"2019",2,0,0,3,100,60,"Xinhua",NA +105,128,953,"2019",5,1,83,2,83,74,"Xinhua",NA +105,128,955,"2019",3,0,0,3,100,100,"Xinhua",NA +105,128,957,"2019",6,0,73,3,27,27,"Xinhua",NA +105,128,958,"2019",4,1,92,2,92,92,"Xinhua",NA +105,128,963,"2019",2,1,81,2,81,50,"Xinhua",NA +105,128,964,"2019",6,1,100,2,100,100,"Xinhua",NA +105,128,972,"2019",4,0,88,2,12,20,"Xinhua",NA +105,128,978,"2019",3,0,0,2,100,100,"Xinhua",NA +105,128,980,"2019",3,1,80,3,80,80,"Xinhua",NA +105,128,981,"2019",3,1,98,2,98,98,"Xinhua",NA +105,128,985,"2019",3,0,95,3,5,8,"Xinhua",NA +105,128,986,"2019",4,1,61,2,61,40,"Xinhua",NA +105,128,988,"2019",4,0,83,2,17,49,"Xinhua",NA +105,128,990,"2019",3,0,50,2,50,50,"Xinhua",NA +105,128,991,"2019",5,0,48,3,52,50,"Xinhua",NA +105,128,992,"2019",5,1,9,2,9,74,"Xinhua",NA +105,128,993,"2019",5,1,100,3,100,100,"Xinhua",NA +105,128,994,"2019",3,0,0,2,100,100,"Xinhua",NA +105,128,997,"2019",6,1,100,3,100,90,"Xinhua",NA +105,128,998,"2019",6,1,100,2,100,98,"Xinhua",NA +105,128,1000,"2019",6,1,100,2,100,99,"Xinhua",NA +105,128,1001,"2019",4,1,100,2,100,100,"Xinhua",NA +105,128,1005,"2019",6,0,50,3,50,50,"Xinhua",NA +105,128,1009,"2019",2,1,85,2,85,91,"Xinhua",NA +105,128,1012,"2019",3,0,80,3,20,20,"Xinhua",NA +105,128,1013,"2019",4,0,10,2,90,90,"Xinhua",NA +105,128,1016,"2019",2,0,60,2,40,49,"Xinhua",NA +105,128,1019,"2019",6,0,100,2,0,0,"Xinhua",NA +105,128,1022,"2019",2,1,0,3,0,51,"Xinhua",NA +105,128,1023,"2019",6,0,37,3,63,97,"Xinhua",NA +105,128,1025,"2019",6,1,77,2,77,71,"Xinhua",NA +105,128,1026,"2019",4,0,60,2,40,40,"Xinhua",NA +105,128,1027,"2019",5,0,1,2,99,94,"Xinhua",NA +105,128,1028,"2019",2,0,81,2,19,49,"Xinhua",NA +105,128,1033,"2019",4,0,12,2,88,75,"Xinhua",NA +105,128,1035,"2019",2,0,0,3,100,99,"Xinhua",NA +105,128,1037,"2019",3,1,95,3,95,94,"Xinhua",NA +105,128,1039,"2019",6,1,83,2,83,62,"Xinhua",NA +105,128,1040,"2019",5,0,26,3,74,73,"Xinhua",NA +105,128,1043,"2019",4,0,82,2,18,49,"Xinhua",NA +105,128,1046,"2019",3,0,28,2,72,60,"Xinhua",NA +105,128,1047,"2019",5,1,24,2,24,71,"Xinhua",NA +105,128,1048,"2019",5,0,20,2,80,2,"Xinhua",NA +105,128,1064,"2019",3,1,54,3,54,54,"Xinhua",NA +105,128,1065,"2019",4,0,0,2,100,100,"Xinhua",NA +105,128,1066,"2019",3,0,67,2,33,1,"Xinhua",NA +105,128,1067,"2019",6,1,99,3,99,99,"Xinhua",NA +105,128,1068,"2019",2,1,72,2,72,72,"Xinhua",NA +105,128,1074,"2019",5,1,50,3,50,50,"Xinhua",NA +105,128,1076,"2019",6,0,0,3,100,49,"Xinhua",NA +105,128,1078,"2019",2,0,69,2,31,66,"Xinhua",NA +105,128,1085,"2019",3,0,100,2,0,0,"Xinhua",NA +105,128,1086,"2019",6,1,83,3,83,83,"Xinhua",NA +105,128,1089,"2019",2,0,71,3,29,60,"Xinhua",NA +105,128,1096,"2019",5,1,97,2,97,79,"Xinhua",NA +105,128,1097,"2019",2,1,87,2,87,80,"Xinhua",NA +105,128,1099,"2019",2,0,100,2,0,49,"Xinhua",NA +105,128,1101,"2019",4,1,34,2,34,42,"Xinhua",NA +105,128,1102,"2019",6,1,100,3,100,100,"Xinhua",NA +105,128,1103,"2019",2,1,92,3,92,88,"Xinhua",NA +105,128,1104,"2019",5,0,12,3,88,82,"Xinhua",NA +105,128,1105,"2019",6,0,76,2,24,24,"Xinhua",NA +105,128,1106,"2019",4,1,74,2,74,80,"Xinhua",NA +105,128,1107,"2019",2,0,72,3,28,28,"Xinhua",NA +105,128,1108,"2019",4,0,84,2,16,12,"Xinhua",NA +105,128,1112,"2019",4,0,87,2,13,86,"Xinhua",NA +105,128,1114,"2019",6,1,0,3,0,0,"Xinhua",NA +105,128,1115,"2019",5,1,98,3,98,98,"Xinhua",NA +105,128,1116,"2019",6,1,79,3,79,79,"Xinhua",NA +105,128,1120,"2019",3,1,81,2,81,86,"Xinhua",NA +105,128,1123,"2019",5,1,87,2,87,79,"Xinhua",NA +105,128,1125,"2019",4,0,59,2,41,41,"Xinhua",NA +105,128,1135,"2019",2,0,50,3,50,100,"Xinhua",NA +105,128,1136,"2019",3,1,81,3,81,81,"Xinhua",NA +105,128,1137,"2019",5,1,0,3,0,50,"Xinhua",NA +105,128,1138,"2019",6,1,96,3,96,20,"Xinhua",NA +105,128,1140,"2019",4,1,13,2,13,17,"Xinhua",NA +105,128,1146,"2019",4,1,86,2,86,19,"Xinhua",NA +105,128,1147,"2019",5,1,81,3,81,78,"Xinhua",NA +105,128,1151,"2019",6,1,100,2,100,51,"Xinhua",NA +105,128,1152,"2019",5,0,50,3,50,90,"Xinhua",NA +105,128,1153,"2019",4,1,65,2,65,64,"Xinhua",NA +105,128,1154,"2019",4,0,37,2,63,63,"Xinhua",NA +105,128,1155,"2019",3,1,80,2,80,80,"Xinhua",NA +105,128,1158,"2019",3,1,75,3,75,77,"Xinhua",NA +105,128,1160,"2019",4,1,80,2,80,84,"Xinhua",NA +105,128,1161,"2019",2,1,77,3,77,80,"Xinhua",NA +105,128,1162,"2019",3,1,76,3,76,78,"Xinhua",NA +105,128,1166,"2019",4,0,84,2,16,11,"Xinhua",NA +105,128,1167,"2019",2,0,76,3,24,21,"Xinhua",NA +105,128,1168,"2019",2,1,75,2,75,17,"Xinhua",NA +105,142,144,"2019",4,0,0,5,100,NA,"Huanqiu",NA +105,142,145,"2019",3,1,72,3,72,91,"Huanqiu",NA +105,142,148,"2019",4,1,29,5,29,NA,"Huanqiu",NA +105,142,157,"2019",2,0,30,2,70,62,"Huanqiu",NA +105,142,159,"2019",3,1,100,2,100,100,"Huanqiu",NA +105,142,164,"2019",6,1,81,2,81,63,"Huanqiu",NA +105,142,166,"2019",2,0,79,3,21,21,"Huanqiu",NA +105,142,170,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,171,"2019",2,1,91,2,91,50,"Huanqiu",NA +105,142,174,"2019",5,1,88,2,88,84,"Huanqiu",NA +105,142,176,"2019",5,0,100,2,0,0,"Huanqiu",NA +105,142,178,"2019",2,0,0,3,100,97,"Huanqiu",NA +105,142,180,"2019",5,1,77,3,77,69,"Huanqiu",NA +105,142,183,"2019",6,0,19,2,81,71,"Huanqiu",NA +105,142,186,"2019",5,0,70,2,30,17,"Huanqiu",NA +105,142,193,"2019",2,1,50,2,50,81,"Huanqiu",NA +105,142,195,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,196,"2019",6,1,100,3,100,100,"Huanqiu",NA +105,142,199,"2019",6,1,91,3,91,71,"Huanqiu",NA +105,142,203,"2019",2,0,32,3,68,22,"Huanqiu",NA +105,142,204,"2019",4,0,24,5,76,NA,"Huanqiu",NA +105,142,208,"2019",3,1,50,2,50,50,"Huanqiu",NA +105,142,210,"2019",3,1,82,2,82,66,"Huanqiu",NA +105,142,215,"2019",5,0,100,2,0,12,"Huanqiu",NA +105,142,220,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,223,"2019",2,0,31,2,69,50,"Huanqiu",NA +105,142,225,"2019",5,0,97,3,3,87,"Huanqiu",NA +105,142,229,"2019",2,0,85,2,15,50,"Huanqiu",NA +105,142,230,"2019",4,0,50,5,50,NA,"Huanqiu",NA +105,142,232,"2019",5,0,0,3,100,71,"Huanqiu",NA +105,142,233,"2019",3,1,100,3,100,100,"Huanqiu",NA +105,142,234,"2019",6,0,0,3,100,56,"Huanqiu",NA +105,142,237,"2019",5,1,9,3,9,1,"Huanqiu",NA +105,142,239,"2019",2,0,34,3,66,70,"Huanqiu",NA +105,142,240,"2019",2,0,21,3,79,12,"Huanqiu",NA +105,142,242,"2019",6,1,100,2,100,100,"Huanqiu",NA +105,142,246,"2019",6,0,100,3,0,77,"Huanqiu",NA +105,142,249,"2019",6,0,0,2,100,0,"Huanqiu",NA +105,142,250,"2019",6,1,50,2,50,50,"Huanqiu",NA +105,142,253,"2019",3,0,40,2,60,10,"Huanqiu",NA +105,142,257,"2019",6,0,86,3,14,14,"Huanqiu",NA +105,142,260,"2019",3,1,86,2,86,86,"Huanqiu",NA +105,142,261,"2019",3,1,84,3,84,72,"Huanqiu",NA +105,142,268,"2019",3,0,20,2,80,70,"Huanqiu",NA +105,142,276,"2019",2,0,15,2,85,29,"Huanqiu",NA +105,142,279,"2019",5,1,100,2,100,100,"Huanqiu",NA +105,142,284,"2019",5,1,77,2,77,75,"Huanqiu",NA +105,142,286,"2019",6,1,100,3,100,94,"Huanqiu",NA +105,142,288,"2019",5,1,73,3,73,83,"Huanqiu",NA +105,142,291,"2019",2,0,85,2,15,91,"Huanqiu",NA +105,142,296,"2019",5,1,100,3,100,100,"Huanqiu",NA +105,142,298,"2019",6,1,51,3,51,60,"Huanqiu",NA +105,142,300,"2019",2,0,22,2,78,78,"Huanqiu",NA +105,142,301,"2019",6,1,100,3,100,100,"Huanqiu",NA +105,142,305,"2019",5,0,0,3,100,81,"Huanqiu",NA +105,142,309,"2019",5,0,15,3,85,85,"Huanqiu",NA +105,142,311,"2019",3,0,91,2,9,9,"Huanqiu",NA +105,142,315,"2019",6,0,1,2,99,99,"Huanqiu",NA +105,142,316,"2019",5,0,30,2,70,68,"Huanqiu",NA +105,142,318,"2019",4,1,73,5,73,NA,"Huanqiu",NA +105,142,320,"2019",3,0,100,2,0,0,"Huanqiu",NA +105,142,321,"2019",3,1,90,2,90,82,"Huanqiu",NA +105,142,322,"2019",4,0,0,5,100,NA,"Huanqiu",NA +105,142,324,"2019",3,1,83,3,83,83,"Huanqiu",NA +105,142,325,"2019",6,1,100,2,100,100,"Huanqiu",NA +105,142,326,"2019",3,0,2,3,98,50,"Huanqiu",NA +105,142,328,"2019",3,1,100,3,100,100,"Huanqiu",NA +105,142,330,"2019",2,0,7,2,93,77,"Huanqiu",NA +105,142,332,"2019",5,1,59,3,59,19,"Huanqiu",NA +105,142,334,"2019",6,1,50,3,50,50,"Huanqiu",NA +105,142,335,"2019",2,0,73,3,27,27,"Huanqiu",NA +105,142,336,"2019",5,1,66,2,66,66,"Huanqiu",NA +105,142,337,"2019",6,0,100,3,0,100,"Huanqiu",NA +105,142,338,"2019",5,1,91,3,91,91,"Huanqiu",NA +105,142,339,"2019",2,1,71,3,71,39,"Huanqiu",NA +105,142,340,"2019",5,0,60,3,40,62,"Huanqiu",NA +105,142,341,"2019",2,1,66,2,66,66,"Huanqiu",NA +105,142,342,"2019",3,0,88,2,12,71,"Huanqiu",NA +105,142,352,"2019",2,0,0,3,100,77,"Huanqiu",NA +105,142,362,"2019",6,0,58,3,42,42,"Huanqiu",NA +105,142,363,"2019",3,1,64,3,64,50,"Huanqiu",NA +105,142,365,"2019",3,0,58,3,42,67,"Huanqiu",NA +105,142,366,"2019",4,1,91,5,91,NA,"Huanqiu",NA +105,142,367,"2019",4,0,67,5,33,NA,"Huanqiu",NA +105,142,368,"2019",4,0,73,5,27,NA,"Huanqiu",NA +105,142,371,"2019",3,1,83,3,83,83,"Huanqiu",NA +105,142,373,"2019",6,1,100,3,100,100,"Huanqiu",NA +105,142,374,"2019",5,1,100,2,100,100,"Huanqiu",NA +105,142,375,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,376,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,377,"2019",2,0,50,2,50,50,"Huanqiu",NA +105,142,378,"2019",3,0,38,2,62,41,"Huanqiu",NA +105,142,388,"2019",3,0,0,3,100,98,"Huanqiu",NA +105,142,391,"2019",4,1,67,5,67,NA,"Huanqiu",NA +105,142,392,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,393,"2019",3,0,100,3,0,32,"Huanqiu",NA +105,142,398,"2019",3,0,9,2,91,91,"Huanqiu",NA +105,142,402,"2019",5,0,50,3,50,50,"Huanqiu",NA +105,142,403,"2019",5,1,100,3,100,100,"Huanqiu",NA +105,142,405,"2019",2,1,77,2,77,69,"Huanqiu",NA +105,142,411,"2019",2,1,100,2,100,70,"Huanqiu",NA +105,142,420,"2019",3,1,50,3,50,50,"Huanqiu",NA +105,142,421,"2019",4,0,20,5,80,NA,"Huanqiu",NA +105,142,425,"2019",2,0,9,2,91,91,"Huanqiu",NA +105,142,426,"2019",2,0,86,3,14,4,"Huanqiu",NA +105,142,433,"2019",2,0,15,2,85,85,"Huanqiu",NA +105,142,436,"2019",3,0,54,3,46,51,"Huanqiu",NA +105,142,439,"2019",4,1,96,5,96,NA,"Huanqiu",NA +105,142,440,"2019",4,0,24,5,76,NA,"Huanqiu",NA +105,142,446,"2019",4,1,98,5,98,NA,"Huanqiu",NA +105,142,447,"2019",2,1,69,2,69,69,"Huanqiu",NA +105,142,450,"2019",5,0,0,2,100,0,"Huanqiu",NA +105,142,452,"2019",3,0,58,3,42,61,"Huanqiu",NA +105,142,457,"2019",2,0,51,2,49,38,"Huanqiu",NA +105,142,458,"2019",5,1,38,2,38,70,"Huanqiu",NA +105,142,461,"2019",5,0,50,2,50,50,"Huanqiu",NA +105,142,469,"2019",3,0,0,2,100,70,"Huanqiu",NA +105,142,473,"2019",3,1,45,3,45,45,"Huanqiu",NA +105,142,474,"2019",3,1,42,3,42,72,"Huanqiu",NA +105,142,476,"2019",4,0,53,5,47,NA,"Huanqiu",NA +105,142,477,"2019",4,1,82,5,82,NA,"Huanqiu",NA +105,142,481,"2019",3,1,100,2,100,84,"Huanqiu",NA +105,142,482,"2019",3,0,56,2,44,11,"Huanqiu",NA +105,142,489,"2019",6,0,50,3,50,50,"Huanqiu",NA +105,142,491,"2019",2,0,20,3,80,80,"Huanqiu",NA +105,142,492,"2019",2,1,69,3,69,69,"Huanqiu",NA +105,142,494,"2019",6,1,45,2,45,65,"Huanqiu",NA +105,142,496,"2019",4,0,50,5,50,NA,"Huanqiu",NA +105,142,497,"2019",6,1,71,3,71,71,"Huanqiu",NA +105,142,499,"2019",2,1,63,2,63,62,"Huanqiu",NA +105,142,500,"2019",3,0,100,3,0,0,"Huanqiu",NA +105,142,501,"2019",4,0,71,5,29,NA,"Huanqiu",NA +105,142,502,"2019",2,0,85,3,15,15,"Huanqiu",NA +105,142,503,"2019",6,0,64,3,36,50,"Huanqiu",NA +105,142,508,"2019",6,0,72,2,28,64,"Huanqiu",NA +105,142,517,"2019",6,1,79,3,79,79,"Huanqiu",NA +105,142,520,"2019",2,1,63,2,63,45,"Huanqiu",NA +105,142,521,"2019",2,1,62,2,62,78,"Huanqiu",NA +105,142,524,"2019",5,0,31,2,69,72,"Huanqiu",NA +105,142,527,"2019",2,0,78,3,22,50,"Huanqiu",NA +105,142,529,"2019",3,1,62,3,62,62,"Huanqiu",NA +105,142,535,"2019",4,1,66,5,66,NA,"Huanqiu",NA +105,142,536,"2019",3,1,87,2,87,87,"Huanqiu",NA +105,142,539,"2019",2,1,5,3,5,81,"Huanqiu",NA +105,142,550,"2019",5,1,100,2,100,100,"Huanqiu",NA +105,142,559,"2019",6,1,72,2,72,72,"Huanqiu",NA +105,142,560,"2019",3,1,74,3,74,74,"Huanqiu",NA +105,142,561,"2019",4,1,72,5,72,NA,"Huanqiu",NA +105,142,563,"2019",4,0,78,5,22,NA,"Huanqiu",NA +105,142,570,"2019",4,0,98,5,2,NA,"Huanqiu",NA +105,142,572,"2019",4,1,0,5,0,NA,"Huanqiu",NA +105,142,575,"2019",6,0,54,3,46,0,"Huanqiu",NA +105,142,585,"2019",4,1,66,5,66,NA,"Huanqiu",NA +105,142,586,"2019",5,0,75,2,25,75,"Huanqiu",NA +105,142,588,"2019",6,1,68,2,68,58,"Huanqiu",NA +105,142,589,"2019",5,1,20,2,20,29,"Huanqiu",NA +105,142,593,"2019",4,1,59,5,59,NA,"Huanqiu",NA +105,142,594,"2019",5,0,30,2,70,34,"Huanqiu",NA +105,142,595,"2019",2,1,100,2,100,100,"Huanqiu",NA +105,142,597,"2019",2,0,43,2,57,57,"Huanqiu",NA +105,142,599,"2019",4,1,76,5,76,NA,"Huanqiu",NA +105,142,602,"2019",2,0,65,2,35,16,"Huanqiu",NA +105,142,605,"2019",5,1,65,2,65,70,"Huanqiu",NA +105,142,607,"2019",6,1,41,2,41,75,"Huanqiu",NA +105,142,611,"2019",5,1,67,2,67,67,"Huanqiu",NA +105,142,615,"2019",6,1,52,2,52,30,"Huanqiu",NA +105,142,621,"2019",6,0,100,2,0,0,"Huanqiu",NA +105,142,622,"2019",5,1,85,3,85,85,"Huanqiu",NA +105,142,626,"2019",4,0,90,5,10,NA,"Huanqiu",NA +105,142,627,"2019",2,0,0,2,100,100,"Huanqiu",NA +105,142,628,"2019",3,0,50,2,50,50,"Huanqiu",NA +105,142,631,"2019",6,0,50,2,50,50,"Huanqiu",NA +105,142,639,"2019",5,0,50,3,50,50,"Huanqiu",NA +105,142,642,"2019",3,0,20,3,80,70,"Huanqiu",NA +105,142,643,"2019",2,0,87,3,13,13,"Huanqiu",NA +105,142,644,"2019",2,0,56,3,44,38,"Huanqiu",NA +105,142,645,"2019",4,1,90,5,90,NA,"Huanqiu",NA +105,142,648,"2019",5,0,5,3,95,95,"Huanqiu",NA +105,142,654,"2019",3,0,58,3,42,42,"Huanqiu",NA +105,142,656,"2019",4,1,52,5,52,NA,"Huanqiu",NA +105,142,657,"2019",3,1,90,3,90,90,"Huanqiu",NA +105,142,659,"2019",6,0,0,3,100,100,"Huanqiu",NA +105,142,660,"2019",5,1,100,2,100,100,"Huanqiu",NA +105,142,661,"2019",5,0,79,2,21,50,"Huanqiu",NA +105,142,666,"2019",3,0,0,2,100,100,"Huanqiu",NA +105,142,670,"2019",6,1,85,2,85,50,"Huanqiu",NA +105,142,675,"2019",6,1,93,3,93,93,"Huanqiu",NA +105,142,679,"2019",2,0,92,2,8,25,"Huanqiu",NA +105,142,685,"2019",5,1,100,3,100,100,"Huanqiu",NA +105,142,686,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,687,"2019",5,0,50,3,50,50,"Huanqiu",NA +105,142,688,"2019",2,0,19,2,81,81,"Huanqiu",NA +105,142,690,"2019",6,0,10,3,90,90,"Huanqiu",NA +105,142,691,"2019",3,1,32,3,32,32,"Huanqiu",NA +105,142,692,"2019",6,1,86,3,86,86,"Huanqiu",NA +105,142,693,"2019",3,1,100,2,100,100,"Huanqiu",NA +105,142,695,"2019",3,0,100,2,0,0,"Huanqiu",NA +105,142,697,"2019",2,0,0,3,100,100,"Huanqiu",NA +105,142,701,"2019",3,1,100,3,100,100,"Huanqiu",NA +105,142,702,"2019",6,0,0,3,100,100,"Huanqiu",NA +105,142,703,"2019",5,1,100,3,100,100,"Huanqiu",NA +105,142,705,"2019",5,0,11,2,89,81,"Huanqiu",NA +105,142,715,"2019",3,0,52,2,48,19,"Huanqiu",NA +105,142,716,"2019",5,0,53,2,47,50,"Huanqiu",NA +105,142,718,"2019",3,1,60,2,60,60,"Huanqiu",NA +105,142,721,"2019",6,1,100,3,100,100,"Huanqiu",NA +105,142,726,"2019",2,0,100,3,0,24,"Huanqiu",NA +105,142,728,"2019",5,1,0,3,0,0,"Huanqiu",NA +105,142,730,"2019",5,1,50,2,50,50,"Huanqiu",NA +105,142,731,"2019",2,0,58,3,42,41,"Huanqiu",NA +105,142,733,"2019",4,1,50,5,50,NA,"Huanqiu",NA +105,142,734,"2019",4,0,50,5,50,NA,"Huanqiu",NA +105,142,735,"2019",6,1,100,2,100,50,"Huanqiu",NA +105,142,736,"2019",3,0,90,2,10,16,"Huanqiu",NA +105,142,737,"2019",4,0,93,5,7,NA,"Huanqiu",NA +105,142,738,"2019",6,0,7,3,93,93,"Huanqiu",NA +105,142,740,"2019",6,1,90,2,90,50,"Huanqiu",NA +105,142,742,"2019",4,0,0,5,100,NA,"Huanqiu",NA +105,142,745,"2019",5,0,80,3,20,50,"Huanqiu",NA +105,142,747,"2019",2,0,91,2,9,22,"Huanqiu",NA +105,142,748,"2019",5,1,100,3,100,78,"Huanqiu",NA +105,142,751,"2019",2,0,50,3,50,2,"Huanqiu",NA +105,142,756,"2019",5,0,70,2,30,43,"Huanqiu",NA +105,142,757,"2019",3,1,50,2,50,50,"Huanqiu",NA +105,142,761,"2019",2,1,96,3,96,60,"Huanqiu",NA +105,142,764,"2019",5,1,100,3,100,62,"Huanqiu",NA +105,142,771,"2019",4,0,0,5,100,NA,"Huanqiu",NA +105,142,772,"2019",2,1,50,2,50,50,"Huanqiu",NA +105,142,774,"2019",3,1,100,3,100,100,"Huanqiu",NA +105,142,775,"2019",5,1,100,3,100,100,"Huanqiu",NA +105,142,777,"2019",2,1,100,2,100,32,"Huanqiu",NA +105,142,779,"2019",6,1,0,3,0,0,"Huanqiu",NA +105,142,783,"2019",3,1,100,2,100,100,"Huanqiu",NA +105,142,784,"2019",3,0,0,2,100,87,"Huanqiu",NA +105,142,789,"2019",6,1,74,3,74,74,"Huanqiu",NA +105,142,790,"2019",5,0,50,3,50,50,"Huanqiu",NA +105,142,792,"2019",5,0,100,2,0,0,"Huanqiu",NA +105,142,799,"2019",2,1,89,3,89,89,"Huanqiu",NA +105,142,800,"2019",2,0,0,3,100,100,"Huanqiu",NA +105,142,801,"2019",2,0,0,3,100,50,"Huanqiu",NA +105,142,802,"2019",6,1,64,3,64,100,"Huanqiu",NA +105,142,803,"2019",2,1,100,2,100,0,"Huanqiu",NA +105,142,804,"2019",5,1,50,3,50,50,"Huanqiu",NA +105,142,806,"2019",6,1,100,3,100,100,"Huanqiu",NA +105,142,807,"2019",4,0,0,5,100,NA,"Huanqiu",NA +105,142,809,"2019",2,1,60,2,60,64,"Huanqiu",NA +105,142,810,"2019",6,0,100,2,0,50,"Huanqiu",NA +105,142,812,"2019",3,0,91,2,9,0,"Huanqiu",NA +105,142,813,"2019",3,0,50,3,50,50,"Huanqiu",NA +105,142,814,"2019",5,0,54,3,46,38,"Huanqiu",NA +105,142,818,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,819,"2019",4,0,0,5,100,NA,"Huanqiu",NA +105,142,822,"2019",5,0,50,2,50,50,"Huanqiu",NA +105,142,823,"2019",3,0,72,2,28,2,"Huanqiu",NA +105,142,824,"2019",3,0,37,2,63,58,"Huanqiu",NA +105,142,826,"2019",6,0,54,2,46,24,"Huanqiu",NA +105,142,831,"2019",4,1,80,5,80,NA,"Huanqiu",NA +105,142,832,"2019",5,0,50,2,50,50,"Huanqiu",NA +105,142,835,"2019",2,0,62,2,38,32,"Huanqiu",NA +105,142,837,"2019",6,1,95,3,95,95,"Huanqiu",NA +105,142,838,"2019",5,1,7,3,7,7,"Huanqiu",NA +105,142,839,"2019",5,0,40,2,60,60,"Huanqiu",NA +105,142,840,"2019",5,0,10,2,90,62,"Huanqiu",NA +105,142,843,"2019",4,0,100,5,0,NA,"Huanqiu",NA +105,142,851,"2019",3,0,75,3,25,25,"Huanqiu",NA +105,142,852,"2019",3,1,71,3,71,41,"Huanqiu",NA +105,142,854,"2019",2,0,50,2,50,50,"Huanqiu",NA +105,142,857,"2019",2,0,50,3,50,50,"Huanqiu",NA +105,142,858,"2019",6,1,60,3,60,60,"Huanqiu",NA +105,142,863,"2019",2,0,18,2,82,82,"Huanqiu",NA +105,142,865,"2019",2,0,0,2,100,81,"Huanqiu",NA +105,142,866,"2019",6,0,5,3,95,95,"Huanqiu",NA +105,142,869,"2019",2,0,19,2,81,76,"Huanqiu",NA +105,142,871,"2019",3,0,100,2,0,50,"Huanqiu",NA +105,142,873,"2019",5,0,3,3,97,97,"Huanqiu",NA +105,142,876,"2019",2,0,0,3,100,100,"Huanqiu",NA +105,142,881,"2019",6,0,87,3,13,13,"Huanqiu",NA +105,142,886,"2019",2,0,50,2,50,50,"Huanqiu",NA +105,142,887,"2019",3,0,73,2,27,50,"Huanqiu",NA +105,142,888,"2019",4,1,87,5,87,NA,"Huanqiu",NA +105,142,889,"2019",5,0,0,3,100,100,"Huanqiu",NA +105,142,895,"2019",2,1,89,2,89,50,"Huanqiu",NA +105,142,896,"2019",2,1,100,2,100,100,"Huanqiu",NA +105,142,901,"2019",4,0,65,5,35,NA,"Huanqiu",NA +105,142,902,"2019",6,1,98,3,98,50,"Huanqiu",NA +105,142,903,"2019",5,1,51,2,51,50,"Huanqiu",NA +105,142,904,"2019",6,0,85,3,15,22,"Huanqiu",NA +105,142,908,"2019",3,1,75,3,75,55,"Huanqiu",NA +105,142,910,"2019",2,0,62,2,38,70,"Huanqiu",NA +105,142,912,"2019",5,0,0,3,100,100,"Huanqiu",NA +105,142,913,"2019",5,1,36,2,36,74,"Huanqiu",NA +105,142,922,"2019",3,1,83,2,83,91,"Huanqiu",NA +105,142,923,"2019",6,1,72,3,72,72,"Huanqiu",NA +105,142,927,"2019",3,0,0,3,100,100,"Huanqiu",NA +105,142,928,"2019",6,1,15,2,15,93,"Huanqiu",NA +105,142,935,"2019",5,1,83,3,83,89,"Huanqiu",NA +105,142,942,"2019",4,0,100,5,0,NA,"Huanqiu",NA +105,142,943,"2019",3,1,100,2,100,100,"Huanqiu",NA +105,142,944,"2019",2,0,0,2,100,70,"Huanqiu",NA +105,142,947,"2019",2,0,40,2,60,46,"Huanqiu",NA +105,142,949,"2019",6,0,100,3,0,0,"Huanqiu",NA +105,142,952,"2019",2,0,40,2,60,60,"Huanqiu",NA +105,142,955,"2019",3,0,0,2,100,100,"Huanqiu",NA +105,142,959,"2019",6,1,100,2,100,100,"Huanqiu",NA +105,142,962,"2019",6,0,0,2,100,100,"Huanqiu",NA +105,142,963,"2019",2,1,90,3,90,81,"Huanqiu",NA +105,142,967,"2019",3,1,100,3,100,100,"Huanqiu",NA +105,142,968,"2019",3,1,100,3,100,100,"Huanqiu",NA +105,142,971,"2019",6,0,43,3,57,51,"Huanqiu",NA +105,142,973,"2019",6,0,74,3,26,35,"Huanqiu",NA +105,142,974,"2019",2,0,61,3,39,50,"Huanqiu",NA +105,142,976,"2019",2,0,0,3,100,0,"Huanqiu",NA +105,142,977,"2019",2,0,50,3,50,50,"Huanqiu",NA +105,142,981,"2019",3,1,98,3,98,98,"Huanqiu",NA +105,142,987,"2019",5,1,79,3,79,79,"Huanqiu",NA +105,142,989,"2019",4,0,51,5,49,NA,"Huanqiu",NA +105,142,995,"2019",5,0,100,2,0,0,"Huanqiu",NA +105,142,996,"2019",3,0,52,2,48,68,"Huanqiu",NA +105,142,997,"2019",6,1,90,2,90,81,"Huanqiu",NA +105,142,998,"2019",6,1,87,3,87,100,"Huanqiu",NA +105,142,999,"2019",6,1,81,3,81,81,"Huanqiu",NA +105,142,1002,"2019",4,0,81,5,19,NA,"Huanqiu",NA +105,142,1003,"2019",5,1,72,3,72,71,"Huanqiu",NA +105,142,1004,"2019",6,0,96,3,4,50,"Huanqiu",NA +105,142,1005,"2019",6,0,50,2,50,50,"Huanqiu",NA +105,142,1008,"2019",3,1,86,3,86,67,"Huanqiu",NA +105,142,1009,"2019",2,1,77,3,77,85,"Huanqiu",NA +105,142,1011,"2019",2,1,100,2,100,100,"Huanqiu",NA +105,142,1017,"2019",2,0,20,3,80,75,"Huanqiu",NA +105,142,1018,"2019",6,1,96,2,96,83,"Huanqiu",NA +105,142,1021,"2019",4,1,88,5,88,NA,"Huanqiu",NA +105,142,1022,"2019",2,1,51,2,51,51,"Huanqiu",NA +105,142,1028,"2019",2,0,50,3,50,19,"Huanqiu",NA +105,142,1030,"2019",2,0,51,3,49,22,"Huanqiu",NA +105,142,1031,"2019",6,0,82,3,18,18,"Huanqiu",NA +105,142,1032,"2019",5,0,63,3,37,37,"Huanqiu",NA +105,142,1034,"2019",2,0,51,2,49,90,"Huanqiu",NA +105,142,1035,"2019",2,0,1,2,99,100,"Huanqiu",NA +105,142,1036,"2019",6,0,0,2,100,49,"Huanqiu",NA +105,142,1039,"2019",6,1,90,3,90,83,"Huanqiu",NA +105,142,1042,"2019",5,0,2,3,98,98,"Huanqiu",NA +105,142,1044,"2019",3,0,9,3,91,82,"Huanqiu",NA +105,142,1048,"2019",5,0,51,3,49,80,"Huanqiu",NA +105,142,1054,"2019",3,0,55,2,45,48,"Huanqiu",NA +105,142,1055,"2019",4,0,0,5,100,NA,"Huanqiu",NA +105,142,1056,"2019",4,1,100,5,100,NA,"Huanqiu",NA +105,142,1057,"2019",4,1,59,5,59,NA,"Huanqiu",NA +105,142,1060,"2019",3,0,0,2,100,100,"Huanqiu",NA +105,142,1062,"2019",2,0,1,3,99,99,"Huanqiu",NA +105,142,1064,"2019",3,1,54,2,54,69,"Huanqiu",NA +105,142,1067,"2019",6,1,99,2,99,99,"Huanqiu",NA +105,142,1069,"2019",3,1,100,3,100,100,"Huanqiu",NA +105,142,1074,"2019",5,1,50,2,50,44,"Huanqiu",NA +105,142,1075,"2019",4,0,100,5,0,NA,"Huanqiu",NA +105,142,1079,"2019",2,1,91,3,91,91,"Huanqiu",NA +105,142,1082,"2019",3,1,98,3,98,98,"Huanqiu",NA +105,142,1086,"2019",6,1,83,2,83,83,"Huanqiu",NA +105,142,1087,"2019",3,1,100,3,100,100,"Huanqiu",NA +105,142,1091,"2019",3,0,47,2,53,31,"Huanqiu",NA +105,142,1092,"2019",5,1,100,3,100,100,"Huanqiu",NA +105,142,1094,"2019",5,1,81,3,81,61,"Huanqiu",NA +105,142,1095,"2019",5,1,100,2,100,100,"Huanqiu",NA +105,142,1098,"2019",3,1,94,3,94,94,"Huanqiu",NA +105,142,1099,"2019",2,0,92,3,8,0,"Huanqiu",NA +105,142,1104,"2019",5,0,18,2,82,82,"Huanqiu",NA +105,142,1109,"2019",4,0,0,5,100,NA,"Huanqiu",NA +105,142,1111,"2019",4,0,100,5,0,NA,"Huanqiu",NA +105,142,1115,"2019",5,1,98,2,98,98,"Huanqiu",NA +105,142,1117,"2019",3,0,0,2,100,100,"Huanqiu",NA +105,142,1118,"2019",2,0,81,3,19,19,"Huanqiu",NA +105,142,1121,"2019",2,0,2,2,98,83,"Huanqiu",NA +105,142,1128,"2019",3,1,93,2,93,93,"Huanqiu",NA +105,142,1129,"2019",2,0,80,3,20,18,"Huanqiu",NA +105,142,1131,"2019",5,0,19,2,81,81,"Huanqiu",NA +105,142,1132,"2019",2,0,16,3,84,84,"Huanqiu",NA +105,142,1137,"2019",5,1,50,2,50,50,"Huanqiu",NA +105,142,1138,"2019",6,1,20,2,20,20,"Huanqiu",NA +105,142,1139,"2019",5,0,100,2,0,50,"Huanqiu",NA +105,142,1148,"2019",5,1,94,2,94,85,"Huanqiu",NA +105,142,1149,"2019",5,0,74,3,26,64,"Huanqiu",NA +105,142,1150,"2019",4,1,83,5,83,NA,"Huanqiu",NA +105,142,1155,"2019",3,1,80,3,80,80,"Huanqiu",NA +105,142,1156,"2019",4,0,50,5,50,NA,"Huanqiu",NA +105,142,1163,"2019",5,1,78,2,78,84,"Huanqiu",NA +106,NA,144,"2019",5,0,26,1,74,NA,NA,NA +106,NA,145,"2019",6,0,71,1,29,NA,NA,NA +106,NA,146,"2019",5,0,37,1,63,NA,NA,NA +106,NA,147,"2019",5,0,30,1,70,NA,NA,NA +106,NA,148,"2019",5,0,34,1,66,NA,NA,NA +106,NA,149,"2019",5,1,84,1,84,NA,NA,NA +106,NA,150,"2019",6,1,94,1,94,NA,NA,NA +106,NA,151,"2019",2,0,50,1,50,NA,NA,NA +106,NA,152,"2019",4,0,8,1,92,NA,NA,NA +106,NA,153,"2019",6,1,86,1,86,NA,NA,NA +106,NA,154,"2019",5,0,9,1,91,NA,NA,NA +106,NA,155,"2019",2,0,38,1,62,NA,NA,NA +106,NA,156,"2019",2,1,60,1,60,NA,NA,NA +106,NA,157,"2019",3,0,50,1,50,NA,NA,NA +106,NA,158,"2019",3,0,20,1,80,NA,NA,NA +106,NA,159,"2019",5,1,65,1,65,NA,NA,NA +106,NA,161,"2019",2,0,10,1,90,NA,NA,NA +106,NA,162,"2019",5,1,87,1,87,NA,NA,NA +106,NA,163,"2019",3,0,61,1,39,NA,NA,NA +106,NA,164,"2019",2,1,81,1,81,NA,NA,NA +106,NA,165,"2019",3,0,51,1,49,NA,NA,NA +106,NA,166,"2019",5,1,63,1,63,NA,NA,NA +106,NA,167,"2019",3,0,67,1,33,NA,NA,NA +106,NA,169,"2019",4,1,60,1,60,NA,NA,NA +106,NA,170,"2019",3,0,1,1,99,NA,NA,NA +106,NA,172,"2019",3,1,100,1,100,NA,NA,NA +106,NA,173,"2019",6,0,0,1,100,NA,NA,NA +106,NA,174,"2019",2,0,55,1,45,NA,NA,NA +106,NA,175,"2019",6,1,61,1,61,NA,NA,NA +106,NA,176,"2019",2,1,100,1,100,NA,NA,NA +106,NA,177,"2019",4,0,50,1,50,NA,NA,NA +106,NA,178,"2019",3,1,100,1,100,NA,NA,NA +106,NA,179,"2019",5,1,50,1,50,NA,NA,NA +106,NA,180,"2019",2,0,45,1,55,NA,NA,NA +106,NA,181,"2019",2,0,82,1,18,NA,NA,NA +106,NA,182,"2019",6,1,69,1,69,NA,NA,NA +106,NA,183,"2019",4,1,32,1,32,NA,NA,NA +106,NA,184,"2019",5,0,0,1,100,NA,NA,NA +106,NA,185,"2019",5,0,17,1,83,NA,NA,NA +106,NA,186,"2019",4,0,20,1,80,NA,NA,NA +106,NA,187,"2019",2,1,19,1,19,NA,NA,NA +106,NA,189,"2019",6,1,99,1,99,NA,NA,NA +106,NA,190,"2019",3,0,38,1,62,NA,NA,NA +106,NA,192,"2019",6,1,100,1,100,NA,NA,NA +106,NA,193,"2019",4,0,51,1,49,NA,NA,NA +106,NA,194,"2019",5,0,91,1,9,NA,NA,NA +106,NA,195,"2019",3,0,100,1,0,NA,NA,NA +106,NA,196,"2019",2,1,71,1,71,NA,NA,NA +106,NA,197,"2019",6,0,50,1,50,NA,NA,NA +106,NA,198,"2019",3,1,82,1,82,NA,NA,NA +106,NA,199,"2019",3,0,50,1,50,NA,NA,NA +106,NA,201,"2019",6,0,18,1,82,NA,NA,NA +106,NA,204,"2019",2,1,62,1,62,NA,NA,NA +106,NA,206,"2019",6,1,72,1,72,NA,NA,NA +106,NA,207,"2019",4,1,100,1,100,NA,NA,NA +106,NA,208,"2019",5,1,84,1,84,NA,NA,NA +106,NA,209,"2019",2,1,39,1,39,NA,NA,NA +106,NA,211,"2019",5,0,0,1,100,NA,NA,NA +106,NA,212,"2019",3,0,61,1,39,NA,NA,NA +106,NA,217,"2019",6,0,50,1,50,NA,NA,NA +106,NA,218,"2019",6,1,100,1,100,NA,NA,NA +106,NA,219,"2019",6,1,100,1,100,NA,NA,NA +106,NA,221,"2019",6,1,100,1,100,NA,NA,NA +106,NA,222,"2019",2,1,51,1,51,NA,NA,NA +106,NA,223,"2019",3,0,67,1,33,NA,NA,NA +106,NA,224,"2019",6,1,80,1,80,NA,NA,NA +106,NA,225,"2019",3,1,92,1,92,NA,NA,NA +106,NA,226,"2019",5,1,19,1,19,NA,NA,NA +106,NA,227,"2019",3,1,82,1,82,NA,NA,NA +106,NA,228,"2019",6,0,78,1,22,NA,NA,NA +106,NA,229,"2019",4,1,91,1,91,NA,NA,NA +106,NA,230,"2019",5,1,81,1,81,NA,NA,NA +106,NA,231,"2019",3,0,50,1,50,NA,NA,NA +106,NA,232,"2019",2,0,48,1,52,NA,NA,NA +106,NA,233,"2019",6,0,50,1,50,NA,NA,NA +106,NA,234,"2019",5,0,21,1,79,NA,NA,NA +106,NA,236,"2019",2,0,68,1,32,NA,NA,NA +106,NA,237,"2019",3,1,93,1,93,NA,NA,NA +106,NA,238,"2019",6,1,50,1,50,NA,NA,NA +106,NA,239,"2019",3,1,68,1,68,NA,NA,NA +106,NA,240,"2019",3,1,95,1,95,NA,NA,NA +106,NA,242,"2019",2,0,100,1,0,NA,NA,NA +106,NA,243,"2019",6,0,100,1,0,NA,NA,NA +106,NA,244,"2019",4,1,50,1,50,NA,NA,NA +106,NA,245,"2019",6,0,70,1,30,NA,NA,NA +106,NA,246,"2019",4,1,76,1,76,NA,NA,NA +106,NA,247,"2019",3,0,0,1,100,NA,NA,NA +106,NA,249,"2019",3,0,100,1,0,NA,NA,NA +106,NA,251,"2019",4,0,53,1,47,NA,NA,NA +106,NA,252,"2019",6,0,52,1,48,NA,NA,NA +106,NA,253,"2019",6,0,21,1,79,NA,NA,NA +106,NA,255,"2019",6,0,33,1,67,NA,NA,NA +106,NA,256,"2019",4,0,22,1,78,NA,NA,NA +106,NA,257,"2019",4,0,21,1,79,NA,NA,NA +106,NA,258,"2019",6,0,66,1,34,NA,NA,NA +106,NA,259,"2019",6,0,0,1,100,NA,NA,NA +106,NA,260,"2019",6,1,80,1,80,NA,NA,NA +106,NA,261,"2019",2,0,23,1,77,NA,NA,NA +106,NA,262,"2019",5,0,50,1,50,NA,NA,NA +106,NA,263,"2019",4,1,91,1,91,NA,NA,NA +106,NA,264,"2019",5,0,61,1,39,NA,NA,NA +106,NA,265,"2019",5,1,61,1,61,NA,NA,NA +106,NA,266,"2019",2,1,61,1,61,NA,NA,NA +106,NA,267,"2019",6,0,53,1,47,NA,NA,NA +106,NA,268,"2019",5,0,80,1,20,NA,NA,NA +106,NA,269,"2019",6,0,100,1,0,NA,NA,NA +106,NA,270,"2019",4,1,100,1,100,NA,NA,NA +106,NA,271,"2019",4,0,94,1,6,NA,NA,NA +106,NA,272,"2019",3,1,64,1,64,NA,NA,NA +106,NA,273,"2019",4,0,29,1,71,NA,NA,NA +106,NA,274,"2019",5,1,95,1,95,NA,NA,NA +106,NA,275,"2019",3,1,80,1,80,NA,NA,NA +106,NA,276,"2019",3,0,50,1,50,NA,NA,NA +106,NA,277,"2019",5,0,81,1,19,NA,NA,NA +106,NA,278,"2019",5,1,50,1,50,NA,NA,NA +106,NA,280,"2019",4,1,79,1,79,NA,NA,NA +106,NA,281,"2019",3,0,69,1,31,NA,NA,NA +106,NA,283,"2019",4,1,69,1,69,NA,NA,NA +106,NA,284,"2019",6,0,75,1,25,NA,NA,NA +106,NA,285,"2019",4,0,100,1,0,NA,NA,NA +106,NA,286,"2019",3,0,51,1,49,NA,NA,NA +106,NA,287,"2019",2,1,94,1,94,NA,NA,NA +106,NA,288,"2019",3,1,72,1,72,NA,NA,NA +106,NA,289,"2019",4,1,100,1,100,NA,NA,NA +106,NA,290,"2019",4,1,50,1,50,NA,NA,NA +106,NA,291,"2019",3,1,89,1,89,NA,NA,NA +106,NA,294,"2019",4,0,20,1,80,NA,NA,NA +106,NA,295,"2019",2,0,6,1,94,NA,NA,NA +106,NA,297,"2019",3,0,7,1,93,NA,NA,NA +106,NA,298,"2019",5,0,50,1,50,NA,NA,NA +106,NA,299,"2019",5,1,7,1,7,NA,NA,NA +106,NA,300,"2019",6,0,6,1,94,NA,NA,NA +106,NA,301,"2019",2,0,0,1,100,NA,NA,NA +106,NA,302,"2019",3,0,51,1,49,NA,NA,NA +106,NA,303,"2019",2,0,50,1,50,NA,NA,NA +106,NA,304,"2019",3,1,100,1,100,NA,NA,NA +106,NA,305,"2019",6,1,50,1,50,NA,NA,NA +106,NA,306,"2019",2,1,50,1,50,NA,NA,NA +106,NA,307,"2019",5,0,50,1,50,NA,NA,NA +106,NA,308,"2019",2,0,50,1,50,NA,NA,NA +106,NA,309,"2019",4,0,38,1,62,NA,NA,NA +106,NA,310,"2019",2,0,11,1,89,NA,NA,NA +106,NA,311,"2019",4,0,86,1,14,NA,NA,NA +106,NA,312,"2019",2,0,40,1,60,NA,NA,NA +106,NA,314,"2019",3,0,81,1,19,NA,NA,NA +106,NA,315,"2019",5,1,100,1,100,NA,NA,NA +106,NA,317,"2019",5,1,100,1,100,NA,NA,NA +106,NA,318,"2019",2,0,83,1,17,NA,NA,NA +106,NA,319,"2019",3,1,53,1,53,NA,NA,NA +106,NA,320,"2019",5,0,0,1,100,NA,NA,NA +106,NA,322,"2019",6,1,50,1,50,NA,NA,NA +106,NA,323,"2019",5,0,36,1,64,NA,NA,NA +106,NA,324,"2019",6,0,20,1,80,NA,NA,NA +106,NA,325,"2019",3,0,50,1,50,NA,NA,NA +106,NA,326,"2019",6,0,50,1,50,NA,NA,NA +106,NA,327,"2019",3,1,56,1,56,NA,NA,NA +106,NA,329,"2019",2,1,100,1,100,NA,NA,NA +106,NA,330,"2019",4,0,35,1,65,NA,NA,NA +106,NA,331,"2019",5,1,95,1,95,NA,NA,NA +106,NA,332,"2019",6,1,71,1,71,NA,NA,NA +106,NA,333,"2019",2,1,100,1,100,NA,NA,NA +106,NA,334,"2019",2,0,100,1,0,NA,NA,NA +106,NA,336,"2019",2,1,60,1,60,NA,NA,NA +106,NA,337,"2019",3,1,96,1,96,NA,NA,NA +106,NA,338,"2019",6,1,88,1,88,NA,NA,NA +106,NA,340,"2019",2,1,71,1,71,NA,NA,NA +106,NA,341,"2019",5,1,59,1,59,NA,NA,NA +106,NA,342,"2019",2,0,49,1,51,NA,NA,NA +106,NA,344,"2019",6,1,80,1,80,NA,NA,NA +106,NA,345,"2019",2,0,50,1,50,NA,NA,NA +106,NA,346,"2019",2,0,0,1,100,NA,NA,NA +106,NA,347,"2019",3,0,14,1,86,NA,NA,NA +106,NA,348,"2019",5,1,97,1,97,NA,NA,NA +106,NA,349,"2019",4,1,41,1,41,NA,NA,NA +106,NA,350,"2019",2,1,64,1,64,NA,NA,NA +106,NA,351,"2019",2,1,50,1,50,NA,NA,NA +106,NA,352,"2019",6,0,0,1,100,NA,NA,NA +106,NA,353,"2019",4,0,0,1,100,NA,NA,NA +106,NA,354,"2019",5,1,100,1,100,NA,NA,NA +106,NA,355,"2019",5,0,44,1,56,NA,NA,NA +106,NA,356,"2019",2,1,49,1,49,NA,NA,NA +106,NA,357,"2019",6,1,50,1,50,NA,NA,NA +106,NA,358,"2019",5,0,63,1,37,NA,NA,NA +106,NA,359,"2019",5,1,66,1,66,NA,NA,NA +106,NA,360,"2019",6,0,0,1,100,NA,NA,NA +106,NA,361,"2019",6,0,50,1,50,NA,NA,NA +106,NA,362,"2019",2,1,60,1,60,NA,NA,NA +106,NA,363,"2019",2,1,50,1,50,NA,NA,NA +106,NA,364,"2019",2,1,50,1,50,NA,NA,NA +106,NA,365,"2019",2,0,16,1,84,NA,NA,NA +106,NA,366,"2019",6,1,100,1,100,NA,NA,NA +106,NA,367,"2019",6,0,67,1,33,NA,NA,NA +106,NA,368,"2019",3,1,44,1,44,NA,NA,NA +106,NA,369,"2019",4,1,78,1,78,NA,NA,NA +106,NA,370,"2019",3,0,50,1,50,NA,NA,NA +106,NA,371,"2019",4,0,19,1,81,NA,NA,NA +106,NA,372,"2019",3,0,0,1,100,NA,NA,NA +106,NA,373,"2019",3,0,0,1,100,NA,NA,NA +106,NA,375,"2019",6,1,100,1,100,NA,NA,NA +106,NA,376,"2019",6,1,76,1,76,NA,NA,NA +106,NA,377,"2019",3,0,58,1,42,NA,NA,NA +106,NA,378,"2019",6,0,37,1,63,NA,NA,NA +106,NA,379,"2019",4,0,0,1,100,NA,NA,NA +106,NA,380,"2019",2,1,81,1,81,NA,NA,NA +106,NA,381,"2019",6,0,81,1,19,NA,NA,NA +106,NA,382,"2019",2,1,13,1,13,NA,NA,NA +106,NA,383,"2019",5,0,0,1,100,NA,NA,NA +106,NA,385,"2019",2,1,100,1,100,NA,NA,NA +106,NA,387,"2019",5,1,92,1,92,NA,NA,NA +106,NA,388,"2019",5,0,100,1,0,NA,NA,NA +106,NA,389,"2019",5,1,51,1,51,NA,NA,NA +106,NA,391,"2019",6,1,50,1,50,NA,NA,NA +106,NA,392,"2019",5,0,0,1,100,NA,NA,NA +106,NA,393,"2019",4,0,88,1,12,NA,NA,NA +106,NA,395,"2019",5,0,14,1,86,NA,NA,NA +106,NA,396,"2019",6,0,98,1,2,NA,NA,NA +106,NA,397,"2019",2,0,6,1,94,NA,NA,NA +106,NA,398,"2019",6,0,2,1,98,NA,NA,NA +106,NA,399,"2019",4,1,100,1,100,NA,NA,NA +106,NA,400,"2019",2,1,35,1,35,NA,NA,NA +106,NA,401,"2019",6,1,68,1,68,NA,NA,NA +106,NA,402,"2019",2,1,50,1,50,NA,NA,NA +106,NA,403,"2019",6,0,50,1,50,NA,NA,NA +106,NA,404,"2019",2,1,50,1,50,NA,NA,NA +106,NA,405,"2019",5,0,37,1,63,NA,NA,NA +106,NA,406,"2019",3,0,68,1,32,NA,NA,NA +106,NA,407,"2019",3,0,0,1,100,NA,NA,NA +106,NA,408,"2019",4,0,50,1,50,NA,NA,NA +106,NA,409,"2019",6,0,74,1,26,NA,NA,NA +106,NA,410,"2019",2,0,48,1,52,NA,NA,NA +106,NA,411,"2019",5,0,64,1,36,NA,NA,NA +106,NA,412,"2019",3,0,59,1,41,NA,NA,NA +106,NA,413,"2019",3,1,50,1,50,NA,NA,NA +106,NA,414,"2019",2,1,94,1,94,NA,NA,NA +106,NA,415,"2019",6,1,50,1,50,NA,NA,NA +106,NA,416,"2019",5,1,72,1,72,NA,NA,NA +106,NA,417,"2019",3,1,77,1,77,NA,NA,NA +106,NA,418,"2019",2,1,82,1,82,NA,NA,NA +106,NA,419,"2019",3,1,68,1,68,NA,NA,NA +106,NA,421,"2019",6,1,50,1,50,NA,NA,NA +106,NA,422,"2019",2,1,50,1,50,NA,NA,NA +106,NA,423,"2019",2,1,70,1,70,NA,NA,NA +106,NA,424,"2019",2,0,67,1,33,NA,NA,NA +106,NA,425,"2019",3,1,100,1,100,NA,NA,NA +106,NA,426,"2019",3,0,8,1,92,NA,NA,NA +106,NA,427,"2019",3,1,100,1,100,NA,NA,NA +106,NA,428,"2019",3,1,52,1,52,NA,NA,NA +106,NA,429,"2019",6,1,45,1,45,NA,NA,NA +106,NA,430,"2019",4,1,55,1,55,NA,NA,NA +106,NA,431,"2019",4,1,55,1,55,NA,NA,NA +106,NA,432,"2019",3,1,0,1,0,NA,NA,NA +106,NA,433,"2019",6,1,50,1,50,NA,NA,NA +106,NA,434,"2019",2,1,89,1,89,NA,NA,NA +106,NA,435,"2019",4,0,50,1,50,NA,NA,NA +106,NA,437,"2019",6,0,55,1,45,NA,NA,NA +106,NA,438,"2019",4,0,0,1,100,NA,NA,NA +106,NA,439,"2019",2,1,100,1,100,NA,NA,NA +106,NA,440,"2019",6,0,28,1,72,NA,NA,NA +106,NA,441,"2019",5,0,50,1,50,NA,NA,NA +106,NA,442,"2019",2,0,27,1,73,NA,NA,NA +106,NA,443,"2019",6,0,71,1,29,NA,NA,NA +106,NA,444,"2019",5,1,100,1,100,NA,NA,NA +106,NA,445,"2019",4,0,100,1,0,NA,NA,NA +106,NA,446,"2019",5,1,69,1,69,NA,NA,NA +106,NA,447,"2019",4,1,60,1,60,NA,NA,NA +106,NA,448,"2019",2,1,91,1,91,NA,NA,NA +106,NA,449,"2019",2,1,100,1,100,NA,NA,NA +106,NA,450,"2019",4,0,50,1,50,NA,NA,NA +106,NA,451,"2019",4,0,0,1,100,NA,NA,NA +106,NA,452,"2019",4,1,93,1,93,NA,NA,NA +106,NA,453,"2019",6,1,50,1,50,NA,NA,NA +106,NA,454,"2019",3,1,95,1,95,NA,NA,NA +106,NA,455,"2019",4,0,11,1,89,NA,NA,NA +106,NA,456,"2019",3,1,100,1,100,NA,NA,NA +106,NA,457,"2019",6,0,69,1,31,NA,NA,NA +106,NA,458,"2019",4,1,80,1,80,NA,NA,NA +106,NA,459,"2019",4,0,52,1,48,NA,NA,NA +106,NA,460,"2019",6,0,70,1,30,NA,NA,NA +106,NA,461,"2019",2,0,50,1,50,NA,NA,NA +106,NA,463,"2019",3,0,64,1,36,NA,NA,NA +106,NA,464,"2019",2,1,78,1,78,NA,NA,NA +106,NA,465,"2019",6,1,55,1,55,NA,NA,NA +106,NA,466,"2019",4,0,0,1,100,NA,NA,NA +106,NA,467,"2019",2,0,100,1,0,NA,NA,NA +106,NA,468,"2019",4,1,67,1,67,NA,NA,NA +106,NA,469,"2019",5,0,39,1,61,NA,NA,NA +106,NA,470,"2019",5,0,0,1,100,NA,NA,NA +106,NA,471,"2019",5,0,50,1,50,NA,NA,NA +106,NA,472,"2019",4,0,86,1,14,NA,NA,NA +106,NA,474,"2019",2,0,64,1,36,NA,NA,NA +106,NA,476,"2019",2,0,41,1,59,NA,NA,NA +106,NA,478,"2019",4,1,50,1,50,NA,NA,NA +106,NA,479,"2019",5,0,57,1,43,NA,NA,NA +106,NA,480,"2019",5,1,64,1,64,NA,NA,NA +106,NA,481,"2019",4,1,100,1,100,NA,NA,NA +106,NA,484,"2019",6,0,29,1,71,NA,NA,NA +106,NA,486,"2019",6,0,49,1,51,NA,NA,NA +106,NA,487,"2019",6,1,50,1,50,NA,NA,NA +106,NA,489,"2019",2,1,50,1,50,NA,NA,NA +106,NA,490,"2019",3,1,64,1,64,NA,NA,NA +106,NA,493,"2019",2,1,82,1,82,NA,NA,NA +106,NA,494,"2019",5,1,37,1,37,NA,NA,NA +106,NA,495,"2019",6,0,70,1,30,NA,NA,NA +106,NA,497,"2019",3,0,63,1,37,NA,NA,NA +106,NA,498,"2019",2,0,80,1,20,NA,NA,NA +106,NA,499,"2019",5,1,51,1,51,NA,NA,NA +106,NA,500,"2019",4,1,100,1,100,NA,NA,NA +106,NA,501,"2019",5,0,23,1,77,NA,NA,NA +106,NA,502,"2019",6,1,90,1,90,NA,NA,NA +106,NA,503,"2019",4,0,68,1,32,NA,NA,NA +106,NA,504,"2019",6,1,28,1,28,NA,NA,NA +106,NA,505,"2019",2,0,0,1,100,NA,NA,NA +106,NA,506,"2019",3,0,50,1,50,NA,NA,NA +106,NA,507,"2019",3,1,98,1,98,NA,NA,NA +106,NA,508,"2019",3,0,74,1,26,NA,NA,NA +106,NA,509,"2019",4,1,35,1,35,NA,NA,NA +106,NA,510,"2019",3,0,85,1,15,NA,NA,NA +106,NA,511,"2019",5,1,28,1,28,NA,NA,NA +106,NA,512,"2019",6,0,50,1,50,NA,NA,NA +106,NA,513,"2019",2,1,63,1,63,NA,NA,NA +106,NA,514,"2019",2,1,67,1,67,NA,NA,NA +106,NA,515,"2019",3,1,89,1,89,NA,NA,NA +106,NA,516,"2019",2,1,50,1,50,NA,NA,NA +106,NA,517,"2019",2,1,63,1,63,NA,NA,NA +106,NA,518,"2019",4,1,51,1,51,NA,NA,NA +106,NA,519,"2019",3,0,50,1,50,NA,NA,NA +106,NA,520,"2019",3,0,68,1,32,NA,NA,NA +106,NA,522,"2019",6,0,28,1,72,NA,NA,NA +106,NA,524,"2019",2,0,50,1,50,NA,NA,NA +106,NA,526,"2019",4,0,68,1,32,NA,NA,NA +106,NA,527,"2019",5,0,50,1,50,NA,NA,NA +106,NA,528,"2019",5,1,65,1,65,NA,NA,NA +106,NA,529,"2019",5,0,61,1,39,NA,NA,NA +106,NA,530,"2019",4,0,52,1,48,NA,NA,NA +106,NA,531,"2019",2,0,23,1,77,NA,NA,NA +106,NA,532,"2019",2,1,50,1,50,NA,NA,NA +106,NA,533,"2019",6,1,100,1,100,NA,NA,NA +106,NA,535,"2019",6,1,82,1,82,NA,NA,NA +106,NA,536,"2019",5,0,89,1,11,NA,NA,NA +106,NA,537,"2019",5,1,71,1,71,NA,NA,NA +106,NA,538,"2019",3,1,57,1,57,NA,NA,NA +106,NA,540,"2019",6,1,35,1,35,NA,NA,NA +106,NA,541,"2019",4,1,50,1,50,NA,NA,NA +106,NA,542,"2019",2,1,63,1,63,NA,NA,NA +106,NA,543,"2019",2,0,73,1,27,NA,NA,NA +106,NA,544,"2019",3,0,27,1,73,NA,NA,NA +106,NA,545,"2019",3,1,73,1,73,NA,NA,NA +106,NA,548,"2019",5,1,45,1,45,NA,NA,NA +106,NA,549,"2019",2,0,50,1,50,NA,NA,NA +106,NA,550,"2019",4,1,50,1,50,NA,NA,NA +106,NA,551,"2019",6,1,65,1,65,NA,NA,NA +106,NA,552,"2019",5,0,25,1,75,NA,NA,NA +106,NA,554,"2019",6,1,41,1,41,NA,NA,NA +106,NA,555,"2019",2,1,29,1,29,NA,NA,NA +106,NA,557,"2019",4,0,9,1,91,NA,NA,NA +106,NA,558,"2019",6,1,68,1,68,NA,NA,NA +106,NA,559,"2019",5,1,74,1,74,NA,NA,NA +106,NA,563,"2019",6,1,81,1,81,NA,NA,NA +106,NA,564,"2019",4,0,20,1,80,NA,NA,NA +106,NA,565,"2019",5,0,20,1,80,NA,NA,NA +106,NA,567,"2019",2,0,50,1,50,NA,NA,NA +106,NA,568,"2019",4,1,50,1,50,NA,NA,NA +106,NA,569,"2019",2,1,50,1,50,NA,NA,NA +106,NA,570,"2019",6,0,87,1,13,NA,NA,NA +106,NA,572,"2019",5,0,50,1,50,NA,NA,NA +106,NA,574,"2019",2,0,30,1,70,NA,NA,NA +106,NA,575,"2019",5,1,50,1,50,NA,NA,NA +106,NA,576,"2019",3,0,100,1,0,NA,NA,NA +106,NA,577,"2019",3,0,50,1,50,NA,NA,NA +106,NA,578,"2019",6,0,71,1,29,NA,NA,NA +106,NA,579,"2019",4,1,50,1,50,NA,NA,NA +106,NA,580,"2019",6,1,100,1,100,NA,NA,NA +106,NA,581,"2019",3,0,26,1,74,NA,NA,NA +106,NA,583,"2019",3,1,45,1,45,NA,NA,NA +106,NA,584,"2019",5,1,53,1,53,NA,NA,NA +106,NA,585,"2019",2,0,66,1,34,NA,NA,NA +106,NA,586,"2019",6,0,1,1,99,NA,NA,NA +106,NA,587,"2019",2,0,64,1,36,NA,NA,NA +106,NA,588,"2019",4,1,62,1,62,NA,NA,NA +106,NA,589,"2019",6,1,83,1,83,NA,NA,NA +106,NA,590,"2019",2,1,66,1,66,NA,NA,NA +106,NA,591,"2019",3,1,45,1,45,NA,NA,NA +106,NA,593,"2019",2,0,62,1,38,NA,NA,NA +106,NA,595,"2019",5,1,0,1,0,NA,NA,NA +106,NA,596,"2019",3,1,74,1,74,NA,NA,NA +106,NA,597,"2019",5,0,73,1,27,NA,NA,NA +106,NA,598,"2019",6,0,64,1,36,NA,NA,NA +106,NA,599,"2019",5,1,75,1,75,NA,NA,NA +106,NA,600,"2019",3,1,76,1,76,NA,NA,NA +106,NA,601,"2019",5,0,69,1,31,NA,NA,NA +106,NA,603,"2019",6,1,43,1,43,NA,NA,NA +106,NA,604,"2019",5,0,39,1,61,NA,NA,NA +106,NA,605,"2019",2,1,59,1,59,NA,NA,NA +106,NA,606,"2019",6,0,68,1,32,NA,NA,NA +106,NA,608,"2019",2,1,84,1,84,NA,NA,NA +106,NA,609,"2019",3,1,50,1,50,NA,NA,NA +106,NA,610,"2019",3,1,71,1,71,NA,NA,NA +106,NA,611,"2019",3,1,50,1,50,NA,NA,NA +106,NA,613,"2019",6,1,45,1,45,NA,NA,NA +106,NA,614,"2019",6,0,50,1,50,NA,NA,NA +106,NA,615,"2019",4,1,50,1,50,NA,NA,NA +106,NA,617,"2019",5,0,50,1,50,NA,NA,NA +106,NA,618,"2019",2,0,33,1,67,NA,NA,NA +106,NA,619,"2019",4,1,46,1,46,NA,NA,NA +106,NA,620,"2019",6,1,0,1,0,NA,NA,NA +106,NA,622,"2019",2,1,80,1,80,NA,NA,NA +106,NA,623,"2019",2,1,83,1,83,NA,NA,NA +106,NA,624,"2019",4,0,50,1,50,NA,NA,NA +106,NA,625,"2019",4,0,50,1,50,NA,NA,NA +106,NA,627,"2019",4,1,0,1,0,NA,NA,NA +106,NA,628,"2019",2,0,50,1,50,NA,NA,NA +106,NA,629,"2019",6,1,50,1,50,NA,NA,NA +106,NA,630,"2019",6,1,50,1,50,NA,NA,NA +106,NA,631,"2019",3,0,50,1,50,NA,NA,NA +106,NA,632,"2019",6,0,77,1,23,NA,NA,NA +106,NA,633,"2019",6,1,0,1,0,NA,NA,NA +106,NA,634,"2019",5,0,51,1,49,NA,NA,NA +106,NA,635,"2019",4,1,100,1,100,NA,NA,NA +106,NA,636,"2019",5,0,3,1,97,NA,NA,NA +106,NA,637,"2019",5,1,19,1,19,NA,NA,NA +106,NA,638,"2019",4,0,50,1,50,NA,NA,NA +106,NA,639,"2019",2,1,50,1,50,NA,NA,NA +106,NA,640,"2019",2,0,20,1,80,NA,NA,NA +106,NA,641,"2019",2,1,77,1,77,NA,NA,NA +106,NA,642,"2019",4,1,86,1,86,NA,NA,NA +106,NA,643,"2019",3,1,50,1,50,NA,NA,NA +106,NA,645,"2019",3,0,18,1,82,NA,NA,NA +106,NA,646,"2019",5,1,33,1,33,NA,NA,NA +106,NA,647,"2019",5,0,40,1,60,NA,NA,NA +106,NA,648,"2019",6,0,68,1,32,NA,NA,NA +106,NA,649,"2019",2,0,0,1,100,NA,NA,NA +106,NA,650,"2019",2,0,81,1,19,NA,NA,NA +106,NA,651,"2019",4,1,100,1,100,NA,NA,NA +106,NA,652,"2019",3,1,91,1,91,NA,NA,NA +106,NA,653,"2019",4,1,50,1,50,NA,NA,NA +106,NA,654,"2019",2,1,100,1,100,NA,NA,NA +106,NA,655,"2019",6,1,100,1,100,NA,NA,NA +106,NA,656,"2019",2,1,100,1,100,NA,NA,NA +106,NA,657,"2019",4,1,90,1,90,NA,NA,NA +106,NA,659,"2019",2,1,50,1,50,NA,NA,NA +106,NA,660,"2019",3,0,40,1,60,NA,NA,NA +106,NA,663,"2019",5,0,50,1,50,NA,NA,NA +106,NA,664,"2019",6,0,21,1,79,NA,NA,NA +106,NA,665,"2019",6,0,22,1,78,NA,NA,NA +106,NA,667,"2019",6,1,100,1,100,NA,NA,NA +106,NA,668,"2019",4,1,50,1,50,NA,NA,NA +106,NA,669,"2019",6,1,66,1,66,NA,NA,NA +106,NA,670,"2019",3,0,50,1,50,NA,NA,NA +106,NA,672,"2019",3,0,50,1,50,NA,NA,NA +106,NA,673,"2019",4,0,100,1,0,NA,NA,NA +106,NA,674,"2019",3,0,20,1,80,NA,NA,NA +106,NA,675,"2019",2,0,25,1,75,NA,NA,NA +106,NA,676,"2019",2,0,50,1,50,NA,NA,NA +106,NA,677,"2019",2,1,73,1,73,NA,NA,NA +106,NA,678,"2019",4,1,72,1,72,NA,NA,NA +106,NA,679,"2019",6,1,50,1,50,NA,NA,NA +106,NA,680,"2019",3,0,67,1,33,NA,NA,NA +106,NA,681,"2019",6,0,76,1,24,NA,NA,NA +106,NA,682,"2019",4,0,50,1,50,NA,NA,NA +106,NA,684,"2019",5,0,0,1,100,NA,NA,NA +106,NA,685,"2019",2,0,100,1,0,NA,NA,NA +106,NA,686,"2019",6,0,100,1,0,NA,NA,NA +106,NA,687,"2019",3,1,95,1,95,NA,NA,NA +106,NA,689,"2019",2,0,50,1,50,NA,NA,NA +106,NA,690,"2019",2,1,85,1,85,NA,NA,NA +106,NA,691,"2019",6,0,22,1,78,NA,NA,NA +106,NA,692,"2019",3,1,71,1,71,NA,NA,NA +106,NA,693,"2019",2,1,50,1,50,NA,NA,NA +106,NA,694,"2019",2,1,1,1,1,NA,NA,NA +106,NA,695,"2019",6,1,100,1,100,NA,NA,NA +106,NA,696,"2019",4,1,0,1,0,NA,NA,NA +106,NA,698,"2019",3,0,0,1,100,NA,NA,NA +106,NA,699,"2019",2,1,75,1,75,NA,NA,NA +106,NA,700,"2019",2,0,13,1,87,NA,NA,NA +106,NA,701,"2019",4,0,27,1,73,NA,NA,NA +106,NA,703,"2019",6,0,22,1,78,NA,NA,NA +106,NA,704,"2019",6,0,86,1,14,NA,NA,NA +106,NA,705,"2019",6,0,16,1,84,NA,NA,NA +106,NA,706,"2019",4,0,0,1,100,NA,NA,NA +106,NA,707,"2019",4,0,67,1,33,NA,NA,NA +106,NA,708,"2019",5,0,50,1,50,NA,NA,NA +106,NA,709,"2019",5,1,50,1,50,NA,NA,NA +106,NA,710,"2019",5,1,91,1,91,NA,NA,NA +106,NA,711,"2019",3,1,50,1,50,NA,NA,NA +106,NA,712,"2019",3,1,85,1,85,NA,NA,NA +106,NA,713,"2019",4,0,80,1,20,NA,NA,NA +106,NA,715,"2019",5,1,16,1,16,NA,NA,NA +106,NA,716,"2019",2,0,50,1,50,NA,NA,NA +106,NA,717,"2019",5,0,23,1,77,NA,NA,NA +106,NA,719,"2019",5,0,35,1,65,NA,NA,NA +106,NA,720,"2019",3,0,88,1,12,NA,NA,NA +106,NA,721,"2019",5,0,100,1,0,NA,NA,NA +106,NA,722,"2019",4,1,68,1,68,NA,NA,NA +106,NA,727,"2019",2,1,82,1,82,NA,NA,NA +106,NA,728,"2019",4,0,16,1,84,NA,NA,NA +106,NA,729,"2019",2,0,100,1,0,NA,NA,NA +106,NA,730,"2019",3,0,77,1,23,NA,NA,NA +106,NA,731,"2019",4,1,68,1,68,NA,NA,NA +106,NA,732,"2019",4,0,50,1,50,NA,NA,NA +106,NA,733,"2019",3,1,50,1,50,NA,NA,NA +106,NA,734,"2019",5,1,50,1,50,NA,NA,NA +106,NA,735,"2019",3,1,50,1,50,NA,NA,NA +106,NA,736,"2019",5,1,91,1,91,NA,NA,NA +106,NA,737,"2019",3,1,71,1,71,NA,NA,NA +106,NA,739,"2019",2,1,50,1,50,NA,NA,NA +106,NA,740,"2019",5,0,50,1,50,NA,NA,NA +106,NA,741,"2019",4,0,12,1,88,NA,NA,NA +106,NA,742,"2019",2,0,0,1,100,NA,NA,NA +106,NA,743,"2019",3,0,100,1,0,NA,NA,NA +106,NA,744,"2019",4,0,77,1,23,NA,NA,NA +106,NA,745,"2019",3,1,80,1,80,NA,NA,NA +106,NA,746,"2019",4,1,94,1,94,NA,NA,NA +106,NA,747,"2019",5,1,78,1,78,NA,NA,NA +106,NA,748,"2019",2,1,50,1,50,NA,NA,NA +106,NA,750,"2019",3,0,0,1,100,NA,NA,NA +106,NA,751,"2019",4,1,50,1,50,NA,NA,NA +106,NA,753,"2019",2,0,25,1,75,NA,NA,NA +106,NA,754,"2019",2,0,50,1,50,NA,NA,NA +106,NA,757,"2019",6,1,50,1,50,NA,NA,NA +106,NA,758,"2019",5,0,100,1,0,NA,NA,NA +106,NA,759,"2019",5,1,100,1,100,NA,NA,NA +106,NA,760,"2019",4,1,71,1,71,NA,NA,NA +106,NA,761,"2019",6,1,25,1,25,NA,NA,NA +106,NA,762,"2019",5,1,89,1,89,NA,NA,NA +106,NA,763,"2019",3,1,50,1,50,NA,NA,NA +106,NA,765,"2019",3,1,95,1,95,NA,NA,NA +106,NA,767,"2019",6,0,50,1,50,NA,NA,NA +106,NA,768,"2019",6,0,50,1,50,NA,NA,NA +106,NA,769,"2019",4,1,100,1,100,NA,NA,NA +106,NA,770,"2019",4,1,50,1,50,NA,NA,NA +106,NA,771,"2019",6,0,100,1,0,NA,NA,NA +106,NA,772,"2019",4,1,98,1,98,NA,NA,NA +106,NA,773,"2019",6,1,50,1,50,NA,NA,NA +106,NA,774,"2019",5,1,100,1,100,NA,NA,NA +106,NA,775,"2019",6,0,3,1,97,NA,NA,NA +106,NA,776,"2019",6,1,91,1,91,NA,NA,NA +106,NA,778,"2019",3,0,0,1,100,NA,NA,NA +106,NA,779,"2019",4,1,100,1,100,NA,NA,NA +106,NA,780,"2019",2,0,51,1,49,NA,NA,NA +106,NA,781,"2019",4,0,92,1,8,NA,NA,NA +106,NA,782,"2019",6,1,67,1,67,NA,NA,NA +106,NA,783,"2019",5,0,50,1,50,NA,NA,NA +106,NA,784,"2019",4,0,50,1,50,NA,NA,NA +106,NA,786,"2019",6,1,68,1,68,NA,NA,NA +106,NA,787,"2019",2,1,79,1,79,NA,NA,NA +106,NA,788,"2019",5,1,35,1,35,NA,NA,NA +106,NA,789,"2019",2,0,50,1,50,NA,NA,NA +106,NA,792,"2019",4,1,100,1,100,NA,NA,NA +106,NA,793,"2019",4,0,9,1,91,NA,NA,NA +106,NA,794,"2019",2,0,51,1,49,NA,NA,NA +106,NA,795,"2019",4,0,42,1,58,NA,NA,NA +106,NA,796,"2019",3,0,27,1,73,NA,NA,NA +106,NA,797,"2019",5,0,100,1,0,NA,NA,NA +106,NA,798,"2019",6,0,100,1,0,NA,NA,NA +106,NA,799,"2019",6,1,95,1,95,NA,NA,NA +106,NA,800,"2019",3,1,100,1,100,NA,NA,NA +106,NA,804,"2019",6,0,50,1,50,NA,NA,NA +106,NA,806,"2019",2,0,100,1,0,NA,NA,NA +106,NA,807,"2019",2,0,20,1,80,NA,NA,NA +106,NA,808,"2019",3,0,50,1,50,NA,NA,NA +106,NA,809,"2019",4,0,50,1,50,NA,NA,NA +106,NA,811,"2019",2,1,100,1,100,NA,NA,NA +106,NA,812,"2019",5,1,66,1,66,NA,NA,NA +106,NA,813,"2019",6,1,50,1,50,NA,NA,NA +106,NA,814,"2019",2,0,35,1,65,NA,NA,NA +106,NA,816,"2019",4,1,13,1,13,NA,NA,NA +106,NA,817,"2019",5,1,100,1,100,NA,NA,NA +106,NA,818,"2019",6,1,50,1,50,NA,NA,NA +106,NA,819,"2019",6,0,0,1,100,NA,NA,NA +106,NA,820,"2019",3,0,100,1,0,NA,NA,NA +106,NA,821,"2019",5,1,16,1,16,NA,NA,NA +106,NA,822,"2019",2,1,50,1,50,NA,NA,NA +106,NA,823,"2019",4,1,92,1,92,NA,NA,NA +106,NA,824,"2019",2,0,50,1,50,NA,NA,NA +106,NA,825,"2019",3,1,100,1,100,NA,NA,NA +106,NA,826,"2019",3,1,93,1,93,NA,NA,NA +106,NA,827,"2019",2,1,72,1,72,NA,NA,NA +106,NA,828,"2019",2,1,50,1,50,NA,NA,NA +106,NA,830,"2019",5,0,98,1,2,NA,NA,NA +106,NA,831,"2019",2,0,50,1,50,NA,NA,NA +106,NA,832,"2019",3,1,50,1,50,NA,NA,NA +106,NA,833,"2019",5,0,100,1,0,NA,NA,NA +106,NA,834,"2019",6,1,100,1,100,NA,NA,NA +106,NA,835,"2019",5,1,80,1,80,NA,NA,NA +106,NA,836,"2019",4,1,100,1,100,NA,NA,NA +106,NA,837,"2019",3,0,26,1,74,NA,NA,NA +106,NA,839,"2019",2,0,42,1,58,NA,NA,NA +106,NA,840,"2019",2,1,25,1,25,NA,NA,NA +106,NA,841,"2019",3,0,50,1,50,NA,NA,NA +106,NA,842,"2019",4,1,65,1,65,NA,NA,NA +106,NA,843,"2019",5,1,73,1,73,NA,NA,NA +106,NA,845,"2019",2,1,50,1,50,NA,NA,NA +106,NA,846,"2019",5,1,100,1,100,NA,NA,NA +106,NA,847,"2019",2,0,50,1,50,NA,NA,NA +106,NA,848,"2019",3,0,90,1,10,NA,NA,NA +106,NA,849,"2019",4,0,100,1,0,NA,NA,NA +106,NA,850,"2019",2,1,55,1,55,NA,NA,NA +106,NA,851,"2019",5,0,75,1,25,NA,NA,NA +106,NA,852,"2019",4,0,10,1,90,NA,NA,NA +106,NA,853,"2019",4,0,67,1,33,NA,NA,NA +106,NA,854,"2019",3,0,50,1,50,NA,NA,NA +106,NA,855,"2019",6,1,71,1,71,NA,NA,NA +106,NA,856,"2019",2,1,50,1,50,NA,NA,NA +106,NA,857,"2019",3,1,100,1,100,NA,NA,NA +106,NA,858,"2019",5,1,23,1,23,NA,NA,NA +106,NA,859,"2019",4,0,20,1,80,NA,NA,NA +106,NA,860,"2019",2,1,66,1,66,NA,NA,NA +106,NA,861,"2019",6,1,100,1,100,NA,NA,NA +106,NA,862,"2019",2,1,60,1,60,NA,NA,NA +106,NA,864,"2019",2,0,50,1,50,NA,NA,NA +106,NA,865,"2019",4,1,0,1,0,NA,NA,NA +106,NA,867,"2019",4,0,49,1,51,NA,NA,NA +106,NA,868,"2019",6,1,92,1,92,NA,NA,NA +106,NA,869,"2019",3,0,3,1,97,NA,NA,NA +106,NA,870,"2019",5,0,50,1,50,NA,NA,NA +106,NA,871,"2019",6,1,56,1,56,NA,NA,NA +106,NA,872,"2019",2,1,42,1,42,NA,NA,NA +106,NA,873,"2019",4,1,87,1,87,NA,NA,NA +106,NA,874,"2019",3,1,50,1,50,NA,NA,NA +106,NA,876,"2019",6,0,50,1,50,NA,NA,NA +106,NA,877,"2019",3,1,23,1,23,NA,NA,NA +106,NA,878,"2019",6,0,84,1,16,NA,NA,NA +106,NA,880,"2019",3,1,72,1,72,NA,NA,NA +106,NA,881,"2019",2,0,91,1,9,NA,NA,NA +106,NA,882,"2019",2,0,50,1,50,NA,NA,NA +106,NA,883,"2019",6,1,78,1,78,NA,NA,NA +106,NA,884,"2019",2,0,75,1,25,NA,NA,NA +106,NA,886,"2019",3,1,99,1,99,NA,NA,NA +106,NA,887,"2019",6,0,100,1,0,NA,NA,NA +106,NA,888,"2019",3,0,80,1,20,NA,NA,NA +106,NA,889,"2019",6,1,100,1,100,NA,NA,NA +106,NA,890,"2019",5,0,20,1,80,NA,NA,NA +106,NA,891,"2019",4,1,100,1,100,NA,NA,NA +106,NA,892,"2019",4,0,50,1,50,NA,NA,NA +106,NA,894,"2019",6,1,81,1,81,NA,NA,NA +106,NA,896,"2019",6,0,51,1,49,NA,NA,NA +106,NA,897,"2019",2,0,100,1,0,NA,NA,NA +106,NA,899,"2019",5,1,100,1,100,NA,NA,NA +106,NA,901,"2019",5,1,61,1,61,NA,NA,NA +106,NA,902,"2019",3,0,18,1,82,NA,NA,NA +106,NA,903,"2019",4,0,0,1,100,NA,NA,NA +106,NA,904,"2019",5,1,76,1,76,NA,NA,NA +106,NA,905,"2019",5,0,50,1,50,NA,NA,NA +106,NA,906,"2019",4,0,78,1,22,NA,NA,NA +106,NA,908,"2019",6,0,29,1,71,NA,NA,NA +106,NA,909,"2019",2,1,76,1,76,NA,NA,NA +106,NA,910,"2019",5,0,32,1,68,NA,NA,NA +106,NA,911,"2019",6,1,100,1,100,NA,NA,NA +106,NA,912,"2019",2,0,1,1,99,NA,NA,NA +106,NA,913,"2019",2,1,72,1,72,NA,NA,NA +106,NA,914,"2019",6,1,98,1,98,NA,NA,NA +106,NA,915,"2019",4,1,92,1,92,NA,NA,NA +106,NA,916,"2019",6,0,50,1,50,NA,NA,NA +106,NA,917,"2019",6,0,20,1,80,NA,NA,NA +106,NA,918,"2019",2,1,0,1,0,NA,NA,NA +106,NA,919,"2019",2,1,81,1,81,NA,NA,NA +106,NA,920,"2019",2,1,64,1,64,NA,NA,NA +106,NA,921,"2019",2,1,50,1,50,NA,NA,NA +106,NA,923,"2019",3,0,91,1,9,NA,NA,NA +106,NA,924,"2019",2,0,1,1,99,NA,NA,NA +106,NA,926,"2019",3,0,31,1,69,NA,NA,NA +106,NA,927,"2019",6,1,50,1,50,NA,NA,NA +106,NA,928,"2019",5,0,10,1,90,NA,NA,NA +106,NA,929,"2019",2,0,73,1,27,NA,NA,NA +106,NA,930,"2019",2,0,50,1,50,NA,NA,NA +106,NA,931,"2019",5,0,26,1,74,NA,NA,NA +106,NA,932,"2019",4,0,50,1,50,NA,NA,NA +106,NA,933,"2019",2,1,93,1,93,NA,NA,NA +106,NA,934,"2019",5,1,30,1,30,NA,NA,NA +106,NA,935,"2019",2,0,78,1,22,NA,NA,NA +106,NA,936,"2019",2,1,100,1,100,NA,NA,NA +106,NA,937,"2019",4,0,6,1,94,NA,NA,NA +106,NA,938,"2019",3,1,100,1,100,NA,NA,NA +106,NA,939,"2019",5,1,81,1,81,NA,NA,NA +106,NA,940,"2019",3,0,52,1,48,NA,NA,NA +106,NA,944,"2019",3,0,0,1,100,NA,NA,NA +106,NA,945,"2019",3,0,43,1,57,NA,NA,NA +106,NA,946,"2019",3,0,93,1,7,NA,NA,NA +106,NA,947,"2019",4,0,45,1,55,NA,NA,NA +106,NA,948,"2019",4,0,50,1,50,NA,NA,NA +106,NA,950,"2019",5,0,82,1,18,NA,NA,NA +106,NA,951,"2019",5,0,72,1,28,NA,NA,NA +106,NA,952,"2019",3,0,0,1,100,NA,NA,NA +106,NA,953,"2019",2,0,70,1,30,NA,NA,NA +106,NA,954,"2019",5,1,100,1,100,NA,NA,NA +106,NA,955,"2019",5,1,100,1,100,NA,NA,NA +106,NA,956,"2019",5,0,6,1,94,NA,NA,NA +106,NA,957,"2019",3,1,91,1,91,NA,NA,NA +106,NA,959,"2019",3,1,0,1,0,NA,NA,NA +106,NA,960,"2019",4,1,50,1,50,NA,NA,NA +106,NA,962,"2019",2,1,100,1,100,NA,NA,NA +106,NA,963,"2019",3,1,51,1,51,NA,NA,NA +106,NA,964,"2019",4,0,1,1,99,NA,NA,NA +106,NA,965,"2019",5,0,49,1,51,NA,NA,NA +106,NA,966,"2019",2,1,21,1,21,NA,NA,NA +106,NA,967,"2019",2,1,99,1,99,NA,NA,NA +106,NA,968,"2019",6,1,100,1,100,NA,NA,NA +106,NA,969,"2019",2,1,100,1,100,NA,NA,NA +106,NA,971,"2019",4,1,26,1,26,NA,NA,NA +106,NA,972,"2019",5,1,83,1,83,NA,NA,NA +106,NA,973,"2019",3,1,72,1,72,NA,NA,NA +106,NA,974,"2019",5,0,30,1,70,NA,NA,NA +106,NA,976,"2019",3,0,52,1,48,NA,NA,NA +106,NA,978,"2019",6,0,0,1,100,NA,NA,NA +106,NA,979,"2019",6,1,64,1,64,NA,NA,NA +106,NA,980,"2019",5,0,23,1,77,NA,NA,NA +106,NA,981,"2019",5,0,2,1,98,NA,NA,NA +106,NA,982,"2019",2,1,91,1,91,NA,NA,NA +106,NA,983,"2019",5,0,11,1,89,NA,NA,NA +106,NA,984,"2019",5,1,31,1,31,NA,NA,NA +106,NA,985,"2019",4,0,82,1,18,NA,NA,NA +106,NA,986,"2019",5,0,94,1,6,NA,NA,NA +106,NA,987,"2019",4,0,26,1,74,NA,NA,NA +106,NA,991,"2019",6,0,56,1,44,NA,NA,NA +106,NA,993,"2019",4,0,60,1,40,NA,NA,NA +106,NA,994,"2019",5,0,0,1,100,NA,NA,NA +106,NA,995,"2019",2,1,100,1,100,NA,NA,NA +106,NA,996,"2019",4,1,73,1,73,NA,NA,NA +106,NA,997,"2019",2,1,99,1,99,NA,NA,NA +106,NA,998,"2019",3,1,97,1,97,NA,NA,NA +106,NA,999,"2019",5,0,9,1,91,NA,NA,NA +106,NA,1000,"2019",5,1,51,1,51,NA,NA,NA +106,NA,1001,"2019",5,1,95,1,95,NA,NA,NA +106,NA,1003,"2019",3,1,60,1,60,NA,NA,NA +106,NA,1004,"2019",4,0,91,1,9,NA,NA,NA +106,NA,1006,"2019",4,0,50,1,50,NA,NA,NA +106,NA,1008,"2019",2,0,37,1,63,NA,NA,NA +106,NA,1010,"2019",3,1,19,1,19,NA,NA,NA +106,NA,1011,"2019",5,0,0,1,100,NA,NA,NA +106,NA,1012,"2019",5,1,64,1,64,NA,NA,NA +106,NA,1014,"2019",3,1,100,1,100,NA,NA,NA +106,NA,1015,"2019",3,1,98,1,98,NA,NA,NA +106,NA,1016,"2019",5,0,61,1,39,NA,NA,NA +106,NA,1019,"2019",3,0,100,1,0,NA,NA,NA +106,NA,1020,"2019",4,1,92,1,92,NA,NA,NA +106,NA,1021,"2019",3,0,86,1,14,NA,NA,NA +106,NA,1022,"2019",5,1,51,1,51,NA,NA,NA +106,NA,1023,"2019",3,0,11,1,89,NA,NA,NA +106,NA,1024,"2019",4,0,10,1,90,NA,NA,NA +106,NA,1025,"2019",2,0,41,1,59,NA,NA,NA +106,NA,1026,"2019",2,0,50,1,50,NA,NA,NA +106,NA,1028,"2019",3,1,50,1,50,NA,NA,NA +106,NA,1029,"2019",3,0,0,1,100,NA,NA,NA +106,NA,1030,"2019",5,0,32,1,68,NA,NA,NA +106,NA,1031,"2019",3,0,50,1,50,NA,NA,NA +106,NA,1032,"2019",4,1,18,1,18,NA,NA,NA +106,NA,1033,"2019",6,1,86,1,86,NA,NA,NA +106,NA,1035,"2019",6,1,100,1,100,NA,NA,NA +106,NA,1036,"2019",5,1,100,1,100,NA,NA,NA +106,NA,1037,"2019",6,0,52,1,48,NA,NA,NA +106,NA,1038,"2019",3,0,50,1,50,NA,NA,NA +106,NA,1039,"2019",3,1,81,1,81,NA,NA,NA +106,NA,1040,"2019",2,0,40,1,60,NA,NA,NA +106,NA,1041,"2019",3,1,50,1,50,NA,NA,NA +106,NA,1042,"2019",3,1,50,1,50,NA,NA,NA +106,NA,1045,"2019",4,1,100,1,100,NA,NA,NA +106,NA,1046,"2019",5,0,36,1,64,NA,NA,NA +106,NA,1047,"2019",3,0,76,1,24,NA,NA,NA +106,NA,1048,"2019",6,1,51,1,51,NA,NA,NA +106,NA,1049,"2019",6,1,100,1,100,NA,NA,NA +106,NA,1050,"2019",5,1,66,1,66,NA,NA,NA +106,NA,1052,"2019",2,1,90,1,90,NA,NA,NA +106,NA,1053,"2019",4,1,51,1,51,NA,NA,NA +106,NA,1056,"2019",6,1,100,1,100,NA,NA,NA +106,NA,1057,"2019",6,1,71,1,71,NA,NA,NA +106,NA,1058,"2019",3,0,0,1,100,NA,NA,NA +106,NA,1059,"2019",2,1,64,1,64,NA,NA,NA +106,NA,1060,"2019",2,1,100,1,100,NA,NA,NA +106,NA,1061,"2019",2,1,100,1,100,NA,NA,NA +106,NA,1063,"2019",6,0,51,1,49,NA,NA,NA +106,NA,1065,"2019",5,1,100,1,100,NA,NA,NA +106,NA,1066,"2019",4,0,85,1,15,NA,NA,NA +106,NA,1067,"2019",3,0,98,1,2,NA,NA,NA +106,NA,1068,"2019",4,1,76,1,76,NA,NA,NA +106,NA,1069,"2019",2,0,11,1,89,NA,NA,NA +106,NA,1070,"2019",6,0,28,1,72,NA,NA,NA +106,NA,1071,"2019",2,1,100,1,100,NA,NA,NA +106,NA,1072,"2019",4,0,98,1,2,NA,NA,NA +106,NA,1073,"2019",4,0,18,1,82,NA,NA,NA +106,NA,1074,"2019",4,0,50,1,50,NA,NA,NA +106,NA,1075,"2019",3,1,100,1,100,NA,NA,NA +106,NA,1076,"2019",3,1,51,1,51,NA,NA,NA +106,NA,1077,"2019",6,1,100,1,100,NA,NA,NA +106,NA,1078,"2019",6,0,30,1,70,NA,NA,NA +106,NA,1079,"2019",5,1,100,1,100,NA,NA,NA +106,NA,1080,"2019",5,1,72,1,72,NA,NA,NA +106,NA,1081,"2019",6,0,50,1,50,NA,NA,NA +106,NA,1083,"2019",2,0,100,1,0,NA,NA,NA +106,NA,1084,"2019",2,0,33,1,67,NA,NA,NA +106,NA,1085,"2019",2,0,50,1,50,NA,NA,NA +106,NA,1086,"2019",5,1,79,1,79,NA,NA,NA +106,NA,1087,"2019",6,1,81,1,81,NA,NA,NA +106,NA,1088,"2019",5,0,50,1,50,NA,NA,NA +106,NA,1089,"2019",6,1,81,1,81,NA,NA,NA +106,NA,1090,"2019",5,1,82,1,82,NA,NA,NA +106,NA,1092,"2019",4,0,100,1,0,NA,NA,NA +106,NA,1093,"2019",5,0,21,1,79,NA,NA,NA +106,NA,1094,"2019",3,1,50,1,50,NA,NA,NA +106,NA,1095,"2019",6,0,53,1,47,NA,NA,NA +106,NA,1096,"2019",4,1,88,1,88,NA,NA,NA +106,NA,1097,"2019",6,0,71,1,29,NA,NA,NA +106,NA,1098,"2019",4,1,15,1,15,NA,NA,NA +106,NA,1099,"2019",3,1,89,1,89,NA,NA,NA +106,NA,1100,"2019",4,1,22,1,22,NA,NA,NA +106,NA,1101,"2019",3,1,61,1,61,NA,NA,NA +106,NA,1102,"2019",5,0,50,1,50,NA,NA,NA +106,NA,1104,"2019",2,1,16,1,16,NA,NA,NA +106,NA,1105,"2019",2,1,88,1,88,NA,NA,NA +106,NA,1108,"2019",6,0,85,1,15,NA,NA,NA +106,NA,1109,"2019",6,0,29,1,71,NA,NA,NA +106,NA,1111,"2019",3,0,0,1,100,NA,NA,NA +106,NA,1112,"2019",6,1,93,1,93,NA,NA,NA +106,NA,1113,"2019",5,0,84,1,16,NA,NA,NA +106,NA,1114,"2019",2,0,0,1,100,NA,NA,NA +106,NA,1117,"2019",6,0,3,1,97,NA,NA,NA +106,NA,1118,"2019",5,1,80,1,80,NA,NA,NA +106,NA,1119,"2019",4,0,40,1,60,NA,NA,NA +106,NA,1121,"2019",4,1,77,1,77,NA,NA,NA +106,NA,1122,"2019",5,1,83,1,83,NA,NA,NA +106,NA,1123,"2019",3,0,22,1,78,NA,NA,NA +106,NA,1124,"2019",4,0,85,1,15,NA,NA,NA +106,NA,1125,"2019",3,1,80,1,80,NA,NA,NA +106,NA,1126,"2019",3,0,22,1,78,NA,NA,NA +106,NA,1128,"2019",5,1,100,1,100,NA,NA,NA +106,NA,1129,"2019",4,1,85,1,85,NA,NA,NA +106,NA,1130,"2019",6,1,100,1,100,NA,NA,NA +106,NA,1131,"2019",4,1,87,1,87,NA,NA,NA +106,NA,1133,"2019",6,0,77,1,23,NA,NA,NA +106,NA,1135,"2019",5,0,50,1,50,NA,NA,NA +106,NA,1136,"2019",4,1,81,1,81,NA,NA,NA +106,NA,1137,"2019",3,1,6,1,6,NA,NA,NA +106,NA,1138,"2019",4,1,50,1,50,NA,NA,NA +106,NA,1139,"2019",3,1,100,1,100,NA,NA,NA +106,NA,1140,"2019",3,0,80,1,20,NA,NA,NA +106,NA,1142,"2019",5,0,90,1,10,NA,NA,NA +106,NA,1143,"2019",2,0,8,1,92,NA,NA,NA +106,NA,1144,"2019",5,1,97,1,97,NA,NA,NA +106,NA,1145,"2019",2,1,80,1,80,NA,NA,NA +106,NA,1146,"2019",2,0,16,1,84,NA,NA,NA +106,NA,1147,"2019",2,0,60,1,40,NA,NA,NA +106,NA,1148,"2019",6,1,92,1,92,NA,NA,NA +106,NA,1150,"2019",6,0,82,1,18,NA,NA,NA +106,NA,1151,"2019",5,1,0,1,0,NA,NA,NA +106,NA,1154,"2019",2,0,54,1,46,NA,NA,NA +106,NA,1155,"2019",6,0,83,1,17,NA,NA,NA +106,NA,1156,"2019",6,1,100,1,100,NA,NA,NA +106,NA,1157,"2019",2,1,84,1,84,NA,NA,NA +106,NA,1158,"2019",6,0,87,1,13,NA,NA,NA +106,NA,1159,"2019",4,0,50,1,50,NA,NA,NA +106,NA,1160,"2019",6,0,87,1,13,NA,NA,NA +106,NA,1162,"2019",2,0,79,1,21,NA,NA,NA +106,NA,1163,"2019",4,1,88,1,88,NA,NA,NA +106,NA,1164,"2019",5,0,87,1,13,NA,NA,NA +106,NA,1165,"2019",6,1,87,1,87,NA,NA,NA +106,NA,1166,"2019",6,1,86,1,86,NA,NA,NA +106,NA,1167,"2019",3,1,88,1,88,NA,NA,NA +106,NA,1168,"2019",5,1,19,1,19,NA,NA,NA +106,108,144,"2019",5,0,9,2,91,74,"BBC",NA +106,108,145,"2019",6,0,88,2,12,29,"BBC",NA +106,108,146,"2019",5,0,72,2,28,63,"BBC",NA +106,108,147,"2019",5,0,10,3,90,50,"BBC",NA +106,108,148,"2019",5,0,23,3,77,79,"BBC",NA +106,108,149,"2019",5,1,77,2,77,84,"BBC",NA +106,108,155,"2019",2,0,36,3,64,61,"BBC",NA +106,108,157,"2019",3,0,39,2,61,50,"BBC",NA +106,108,161,"2019",2,0,21,3,79,70,"BBC",NA +106,108,162,"2019",5,1,100,2,100,87,"BBC",NA +106,108,165,"2019",3,0,51,2,49,49,"BBC",NA +106,108,166,"2019",5,1,75,2,75,63,"BBC",NA +106,108,174,"2019",2,0,94,3,6,6,"BBC",NA +106,108,175,"2019",6,1,78,3,78,70,"BBC",NA +106,108,179,"2019",5,1,73,2,73,50,"BBC",NA +106,108,187,"2019",2,1,91,2,91,19,"BBC",NA +106,108,189,"2019",6,1,100,2,100,99,"BBC",NA +106,108,193,"2019",4,0,31,3,69,NA,"BBC",NA +106,108,194,"2019",5,0,8,3,92,9,"BBC",NA +106,108,195,"2019",3,0,100,3,0,0,"BBC",NA +106,108,196,"2019",2,1,98,2,98,71,"BBC",NA +106,108,197,"2019",6,0,92,3,8,50,"BBC",NA +106,108,199,"2019",3,0,65,3,35,36,"BBC",NA +106,108,201,"2019",6,0,77,3,23,23,"BBC",NA +106,108,204,"2019",2,1,71,3,71,28,"BBC",NA +106,108,207,"2019",4,1,100,3,100,NA,"BBC",NA +106,108,211,"2019",5,0,0,3,100,100,"BBC",NA +106,108,212,"2019",3,0,61,2,39,39,"BBC",NA +106,108,217,"2019",6,0,30,3,70,50,"BBC",NA +106,108,223,"2019",3,0,79,2,21,33,"BBC",NA +106,108,224,"2019",6,1,80,3,80,80,"BBC",NA +106,108,226,"2019",5,1,19,3,19,19,"BBC",NA +106,108,227,"2019",3,1,82,2,82,82,"BBC",NA +106,108,229,"2019",4,1,91,3,91,NA,"BBC",NA +106,108,230,"2019",5,1,94,2,94,81,"BBC",NA +106,108,231,"2019",3,0,0,3,100,100,"BBC",NA +106,108,233,"2019",6,0,0,2,100,50,"BBC",NA +106,108,234,"2019",5,0,7,2,93,79,"BBC",NA +106,108,236,"2019",2,0,52,3,48,32,"BBC",NA +106,108,239,"2019",3,1,74,2,74,68,"BBC",NA +106,108,240,"2019",3,1,90,3,90,90,"BBC",NA +106,108,242,"2019",2,0,100,2,0,0,"BBC",NA +106,108,243,"2019",6,0,100,3,0,0,"BBC",NA +106,108,249,"2019",3,0,100,3,0,0,"BBC",NA +106,108,252,"2019",6,0,54,2,46,48,"BBC",NA +106,108,253,"2019",6,0,21,3,79,79,"BBC",NA +106,108,255,"2019",6,0,14,3,86,75,"BBC",NA +106,108,257,"2019",4,0,21,3,79,NA,"BBC",NA +106,108,260,"2019",6,1,80,3,80,80,"BBC",NA +106,108,264,"2019",5,0,64,2,36,39,"BBC",NA +106,108,265,"2019",5,1,80,3,80,70,"BBC",NA +106,108,267,"2019",6,0,73,3,27,37,"BBC",NA +106,108,268,"2019",5,0,91,2,9,20,"BBC",NA +106,108,269,"2019",6,0,100,3,0,0,"BBC",NA +106,108,273,"2019",4,0,21,3,79,NA,"BBC",NA +106,108,275,"2019",3,1,80,2,80,80,"BBC",NA +106,108,281,"2019",3,0,30,2,70,31,"BBC",NA +106,108,283,"2019",4,1,67,3,67,NA,"BBC",NA +106,108,284,"2019",6,0,79,3,21,12,"BBC",NA +106,108,286,"2019",3,0,47,2,53,49,"BBC",NA +106,108,299,"2019",5,1,7,3,7,7,"BBC",NA +106,108,301,"2019",2,0,0,2,100,100,"BBC",NA +106,108,304,"2019",3,1,100,2,100,100,"BBC",NA +106,108,306,"2019",2,1,50,2,50,50,"BBC",NA +106,108,308,"2019",2,0,95,3,5,13,"BBC",NA +106,108,310,"2019",2,0,11,2,89,89,"BBC",NA +106,108,317,"2019",5,1,0,3,0,48,"BBC",NA +106,108,318,"2019",2,0,83,2,17,17,"BBC",NA +106,108,322,"2019",6,1,100,3,100,100,"BBC",NA +106,108,323,"2019",5,0,0,3,100,93,"BBC",NA +106,108,325,"2019",3,0,0,3,100,99,"BBC",NA +106,108,327,"2019",3,1,90,2,90,56,"BBC",NA +106,108,331,"2019",5,1,95,3,95,95,"BBC",NA +106,108,333,"2019",2,1,100,2,100,100,"BBC",NA +106,108,334,"2019",2,0,73,2,27,0,"BBC",NA +106,108,336,"2019",2,1,78,2,78,60,"BBC",NA +106,108,337,"2019",3,1,100,2,100,96,"BBC",NA +106,108,340,"2019",2,1,91,3,91,79,"BBC",NA +106,108,341,"2019",5,1,68,3,68,59,"BBC",NA +106,108,344,"2019",6,1,86,3,86,86,"BBC",NA +106,108,345,"2019",2,0,89,3,11,50,"BBC",NA +106,108,346,"2019",2,0,0,3,100,100,"BBC",NA +106,108,347,"2019",3,0,2,3,98,94,"BBC",NA +106,108,350,"2019",2,1,64,2,64,64,"BBC",NA +106,108,351,"2019",2,1,50,2,50,50,"BBC",NA +106,108,354,"2019",5,1,100,3,100,100,"BBC",NA +106,108,355,"2019",5,0,57,3,43,56,"BBC",NA +106,108,358,"2019",5,0,63,2,37,37,"BBC",NA +106,108,359,"2019",5,1,93,2,93,66,"BBC",NA +106,108,360,"2019",6,0,0,3,100,100,"BBC",NA +106,108,361,"2019",6,0,65,3,35,20,"BBC",NA +106,108,362,"2019",2,1,76,2,76,60,"BBC",NA +106,108,363,"2019",2,1,50,3,50,50,"BBC",NA +106,108,365,"2019",2,0,60,2,40,84,"BBC",NA +106,108,366,"2019",6,1,100,2,100,100,"BBC",NA +106,108,367,"2019",6,0,67,2,33,33,"BBC",NA +106,108,370,"2019",3,0,100,3,0,0,"BBC",NA +106,108,373,"2019",3,0,0,3,100,100,"BBC",NA +106,108,375,"2019",6,1,100,3,100,100,"BBC",NA +106,108,376,"2019",6,1,86,2,86,76,"BBC",NA +106,108,377,"2019",3,0,29,2,71,42,"BBC",NA +106,108,381,"2019",6,0,83,3,17,18,"BBC",NA +106,108,382,"2019",2,1,50,2,50,13,"BBC",NA +106,108,385,"2019",2,1,100,3,100,100,"BBC",NA +106,108,387,"2019",5,1,92,3,92,92,"BBC",NA +106,108,392,"2019",5,0,0,3,100,100,"BBC",NA +106,108,397,"2019",2,0,92,3,8,94,"BBC",NA +106,108,398,"2019",6,0,2,2,98,98,"BBC",NA +106,108,400,"2019",2,1,47,2,47,35,"BBC",NA +106,108,403,"2019",6,0,0,2,100,50,"BBC",NA +106,108,405,"2019",5,0,55,2,45,63,"BBC",NA +106,108,406,"2019",3,0,76,2,24,32,"BBC",NA +106,108,410,"2019",2,0,48,2,52,52,"BBC",NA +106,108,415,"2019",6,1,50,3,50,50,"BBC",NA +106,108,417,"2019",3,1,100,3,100,77,"BBC",NA +106,108,419,"2019",3,1,80,3,80,68,"BBC",NA +106,108,423,"2019",2,1,70,2,70,70,"BBC",NA +106,108,424,"2019",2,0,13,3,87,63,"BBC",NA +106,108,425,"2019",3,1,100,2,100,100,"BBC",NA +106,108,429,"2019",6,1,43,3,43,47,"BBC",NA +106,108,430,"2019",4,1,59,3,59,NA,"BBC",NA +106,108,432,"2019",3,1,50,3,50,100,"BBC",NA +106,108,433,"2019",6,1,50,3,50,50,"BBC",NA +106,108,440,"2019",6,0,75,3,25,74,"BBC",NA +106,108,443,"2019",6,0,83,3,17,65,"BBC",NA +106,108,444,"2019",5,1,100,2,100,100,"BBC",NA +106,108,449,"2019",2,1,100,2,100,100,"BBC",NA +106,108,456,"2019",3,1,100,2,100,100,"BBC",NA +106,108,457,"2019",6,0,47,2,53,31,"BBC",NA +106,108,461,"2019",2,0,50,3,50,50,"BBC",NA +106,108,463,"2019",3,0,64,3,36,36,"BBC",NA +106,108,465,"2019",6,1,67,3,67,59,"BBC",NA +106,108,470,"2019",5,0,0,3,100,100,"BBC",NA +106,108,471,"2019",5,0,50,2,50,50,"BBC",NA +106,108,476,"2019",2,0,58,2,42,59,"BBC",NA +106,108,486,"2019",6,0,50,3,50,50,"BBC",NA +106,108,490,"2019",3,1,78,2,78,64,"BBC",NA +106,108,493,"2019",2,1,82,3,82,82,"BBC",NA +106,108,494,"2019",5,1,64,2,64,37,"BBC",NA +106,108,498,"2019",2,0,3,2,97,20,"BBC",NA +106,108,499,"2019",5,1,67,2,67,51,"BBC",NA +106,108,502,"2019",6,1,90,3,90,90,"BBC",NA +106,108,504,"2019",6,1,14,3,14,28,"BBC",NA +106,108,505,"2019",2,0,10,3,90,100,"BBC",NA +106,108,506,"2019",3,0,28,3,72,100,"BBC",NA +106,108,508,"2019",3,0,30,2,70,26,"BBC",NA +106,108,510,"2019",3,0,85,3,15,15,"BBC",NA +106,108,513,"2019",2,1,78,3,78,71,"BBC",NA +106,108,515,"2019",3,1,98,3,98,92,"BBC",NA +106,108,519,"2019",3,0,50,2,50,50,"BBC",NA +106,108,520,"2019",3,0,80,3,20,35,"BBC",NA +106,108,522,"2019",6,0,2,3,98,82,"BBC",NA +106,108,529,"2019",5,0,64,3,36,47,"BBC",NA +106,108,531,"2019",2,0,34,2,66,77,"BBC",NA +106,108,535,"2019",6,1,83,3,83,18,"BBC",NA +106,108,537,"2019",5,1,78,3,78,71,"BBC",NA +106,108,542,"2019",2,1,51,3,51,44,"BBC",NA +106,108,543,"2019",2,0,55,2,45,27,"BBC",NA +106,108,544,"2019",3,0,71,2,29,73,"BBC",NA +106,108,545,"2019",3,1,67,3,67,56,"BBC",NA +106,108,548,"2019",5,1,48,3,48,48,"BBC",NA +106,108,549,"2019",2,0,50,3,50,50,"BBC",NA +106,108,554,"2019",6,1,47,3,47,38,"BBC",NA +106,108,557,"2019",4,0,0,3,100,NA,"BBC",NA +106,108,563,"2019",6,1,0,3,0,81,"BBC",NA +106,108,569,"2019",2,1,17,2,17,50,"BBC",NA +106,108,579,"2019",4,1,50,3,50,NA,"BBC",NA +106,108,587,"2019",2,0,64,2,36,36,"BBC",NA +106,108,590,"2019",2,1,66,2,66,66,"BBC",NA +106,108,593,"2019",2,0,63,3,37,56,"BBC",NA +106,108,596,"2019",3,1,74,3,74,74,"BBC",NA +106,108,599,"2019",5,1,91,3,91,75,"BBC",NA +106,108,600,"2019",3,1,90,3,90,90,"BBC",NA +106,108,603,"2019",6,1,72,2,72,43,"BBC",NA +106,108,604,"2019",5,0,68,2,32,61,"BBC",NA +106,108,605,"2019",2,1,74,3,74,68,"BBC",NA +106,108,608,"2019",2,1,84,3,84,84,"BBC",NA +106,108,609,"2019",3,1,50,2,50,50,"BBC",NA +106,108,617,"2019",5,0,48,2,52,50,"BBC",NA +106,108,618,"2019",2,0,68,3,32,67,"BBC",NA +106,108,623,"2019",2,1,93,2,93,83,"BBC",NA +106,108,624,"2019",4,0,60,3,40,NA,"BBC",NA +106,108,628,"2019",2,0,50,2,50,50,"BBC",NA +106,108,629,"2019",6,1,50,2,50,50,"BBC",NA +106,108,631,"2019",3,0,50,3,50,50,"BBC",NA +106,108,632,"2019",6,0,77,3,23,23,"BBC",NA +106,108,633,"2019",6,1,100,3,100,0,"BBC",NA +106,108,634,"2019",5,0,92,3,8,8,"BBC",NA +106,108,643,"2019",3,1,50,3,50,50,"BBC",NA +106,108,645,"2019",3,0,18,2,82,82,"BBC",NA +106,108,646,"2019",5,1,26,3,26,26,"BBC",NA +106,108,647,"2019",5,0,30,2,70,60,"BBC",NA +106,108,650,"2019",2,0,84,3,16,76,"BBC",NA +106,108,655,"2019",6,1,100,2,100,100,"BBC",NA +106,108,659,"2019",2,1,62,2,62,50,"BBC",NA +106,108,667,"2019",6,1,100,2,100,100,"BBC",NA +106,108,668,"2019",4,1,100,3,100,NA,"BBC",NA +106,108,670,"2019",3,0,50,3,50,50,"BBC",NA +106,108,672,"2019",3,0,100,3,0,0,"BBC",NA +106,108,674,"2019",3,0,50,2,50,80,"BBC",NA +106,108,675,"2019",2,0,30,2,70,75,"BBC",NA +106,108,677,"2019",2,1,23,3,23,100,"BBC",NA +106,108,679,"2019",6,1,96,3,96,96,"BBC",NA +106,108,680,"2019",3,0,55,2,45,33,"BBC",NA +106,108,684,"2019",5,0,100,3,0,0,"BBC",NA +106,108,685,"2019",2,0,82,3,18,0,"BBC",NA +106,108,686,"2019",6,0,100,3,0,0,"BBC",NA +106,108,690,"2019",2,1,0,2,0,85,"BBC",NA +106,108,691,"2019",6,0,22,2,78,78,"BBC",NA +106,108,692,"2019",3,1,71,2,71,71,"BBC",NA +106,108,695,"2019",6,1,100,2,100,100,"BBC",NA +106,108,698,"2019",3,0,0,3,100,100,"BBC",NA +106,108,699,"2019",2,1,100,2,100,75,"BBC",NA +106,108,704,"2019",6,0,0,3,100,100,"BBC",NA +106,108,708,"2019",5,0,50,3,50,50,"BBC",NA +106,108,710,"2019",5,1,99,2,99,91,"BBC",NA +106,108,711,"2019",3,1,99,2,99,50,"BBC",NA +106,108,715,"2019",5,1,74,2,74,16,"BBC",NA +106,108,719,"2019",5,0,5,2,95,65,"BBC",NA +106,108,720,"2019",3,0,88,3,12,12,"BBC",NA +106,108,727,"2019",2,1,82,2,82,82,"BBC",NA +106,108,729,"2019",2,0,100,2,0,0,"BBC",NA +106,108,730,"2019",3,0,77,3,23,23,"BBC",NA +106,108,733,"2019",3,1,50,2,50,50,"BBC",NA +106,108,734,"2019",5,1,50,2,50,50,"BBC",NA +106,108,735,"2019",3,1,100,2,100,50,"BBC",NA +106,108,747,"2019",5,1,78,2,78,78,"BBC",NA +106,108,750,"2019",3,0,0,2,100,100,"BBC",NA +106,108,753,"2019",2,0,50,2,50,75,"BBC",NA +106,108,754,"2019",2,0,50,2,50,50,"BBC",NA +106,108,757,"2019",6,1,50,2,50,50,"BBC",NA +106,108,758,"2019",5,0,0,2,100,0,"BBC",NA +106,108,759,"2019",5,1,0,3,0,36,"BBC",NA +106,108,760,"2019",4,1,71,3,71,NA,"BBC",NA +106,108,767,"2019",6,0,50,2,50,50,"BBC",NA +106,108,768,"2019",6,0,50,3,50,50,"BBC",NA +106,108,771,"2019",6,0,0,2,100,0,"BBC",NA +106,108,776,"2019",6,1,91,2,91,91,"BBC",NA +106,108,778,"2019",3,0,0,3,100,100,"BBC",NA +106,108,789,"2019",2,0,71,3,29,41,"BBC",NA +106,108,794,"2019",2,0,51,3,49,49,"BBC",NA +106,108,796,"2019",3,0,6,2,94,73,"BBC",NA +106,108,797,"2019",5,0,50,2,50,0,"BBC",NA +106,108,800,"2019",3,1,100,2,100,100,"BBC",NA +106,108,806,"2019",2,0,100,2,0,0,"BBC",NA +106,108,807,"2019",2,0,100,3,0,0,"BBC",NA +106,108,812,"2019",5,1,61,3,61,66,"BBC",NA +106,108,814,"2019",2,0,44,3,56,81,"BBC",NA +106,108,820,"2019",3,0,100,2,0,0,"BBC",NA +106,108,822,"2019",2,1,100,2,100,50,"BBC",NA +106,108,824,"2019",2,0,50,2,50,50,"BBC",NA +106,108,826,"2019",3,1,100,2,100,93,"BBC",NA +106,108,828,"2019",2,1,100,3,100,71,"BBC",NA +106,108,830,"2019",5,0,98,2,2,2,"BBC",NA +106,108,832,"2019",3,1,50,2,50,50,"BBC",NA +106,108,834,"2019",6,1,0,3,0,0,"BBC",NA +106,108,835,"2019",5,1,88,2,88,80,"BBC",NA +106,108,839,"2019",2,0,81,3,19,19,"BBC",NA +106,108,850,"2019",2,1,93,2,93,55,"BBC",NA +106,108,853,"2019",4,0,60,3,40,NA,"BBC",NA +106,108,855,"2019",6,1,71,2,71,71,"BBC",NA +106,108,857,"2019",3,1,100,2,100,100,"BBC",NA +106,108,860,"2019",2,1,53,3,53,66,"BBC",NA +106,108,861,"2019",6,1,100,2,100,100,"BBC",NA +106,108,862,"2019",2,1,71,3,71,50,"BBC",NA +106,108,877,"2019",3,1,23,3,23,23,"BBC",NA +106,108,878,"2019",6,0,94,3,6,6,"BBC",NA +106,108,880,"2019",3,1,99,3,99,80,"BBC",NA +106,108,881,"2019",2,0,91,2,9,9,"BBC",NA +106,108,882,"2019",2,0,50,2,50,50,"BBC",NA +106,108,883,"2019",6,1,89,3,89,89,"BBC",NA +106,108,886,"2019",3,1,99,2,99,99,"BBC",NA +106,108,887,"2019",6,0,100,3,0,0,"BBC",NA +106,108,892,"2019",4,0,50,3,50,NA,"BBC",NA +106,108,896,"2019",6,0,51,2,49,49,"BBC",NA +106,108,899,"2019",5,1,100,3,100,100,"BBC",NA +106,108,901,"2019",5,1,61,2,61,61,"BBC",NA +106,108,902,"2019",3,0,50,3,50,71,"BBC",NA +106,108,904,"2019",5,1,93,2,93,76,"BBC",NA +106,108,905,"2019",5,0,50,3,50,50,"BBC",NA +106,108,906,"2019",4,0,87,3,13,NA,"BBC",NA +106,108,912,"2019",2,0,1,2,99,99,"BBC",NA +106,108,913,"2019",2,1,77,2,77,72,"BBC",NA +106,108,914,"2019",6,1,100,3,100,100,"BBC",NA +106,108,915,"2019",4,1,92,3,92,NA,"BBC",NA +106,108,917,"2019",6,0,20,3,80,80,"BBC",NA +106,108,919,"2019",2,1,74,2,74,81,"BBC",NA +106,108,921,"2019",2,1,89,3,89,50,"BBC",NA +106,108,923,"2019",3,0,91,3,9,9,"BBC",NA +106,108,926,"2019",3,0,0,3,100,100,"BBC",NA +106,108,927,"2019",6,1,100,3,100,83,"BBC",NA +106,108,928,"2019",5,0,90,3,10,18,"BBC",NA +106,108,929,"2019",2,0,56,2,44,27,"BBC",NA +106,108,930,"2019",2,0,19,2,81,50,"BBC",NA +106,108,933,"2019",2,1,100,3,100,93,"BBC",NA +106,108,934,"2019",5,1,81,2,81,30,"BBC",NA +106,108,936,"2019",2,1,100,2,100,100,"BBC",NA +106,108,937,"2019",4,0,6,3,94,NA,"BBC",NA +106,108,938,"2019",3,1,100,2,100,100,"BBC",NA +106,108,939,"2019",5,1,71,2,71,81,"BBC",NA +106,108,940,"2019",3,0,50,2,50,48,"BBC",NA +106,108,945,"2019",3,0,55,3,45,57,"BBC",NA +106,108,946,"2019",3,0,93,2,7,7,"BBC",NA +106,108,948,"2019",4,0,50,3,50,NA,"BBC",NA +106,108,950,"2019",5,0,82,3,18,18,"BBC",NA +106,108,951,"2019",5,0,72,2,28,28,"BBC",NA +106,108,956,"2019",5,0,6,3,94,94,"BBC",NA +106,108,959,"2019",3,1,0,2,0,0,"BBC",NA +106,108,963,"2019",3,1,60,2,60,51,"BBC",NA +106,108,968,"2019",6,1,100,3,100,100,"BBC",NA +106,108,972,"2019",5,1,88,2,88,83,"BBC",NA +106,108,973,"2019",3,1,77,3,77,73,"BBC",NA +106,108,974,"2019",5,0,10,3,90,80,"BBC",NA +106,108,978,"2019",6,0,0,2,100,100,"BBC",NA +106,108,979,"2019",6,1,81,3,81,81,"BBC",NA +106,108,980,"2019",5,0,14,3,86,77,"BBC",NA +106,108,982,"2019",2,1,100,2,100,91,"BBC",NA +106,108,994,"2019",5,0,100,2,0,100,"BBC",NA +106,108,996,"2019",4,1,81,3,81,NA,"BBC",NA +106,108,999,"2019",5,0,9,3,91,91,"BBC",NA +106,108,1003,"2019",3,1,62,3,62,70,"BBC",NA +106,108,1008,"2019",2,0,73,3,27,35,"BBC",NA +106,108,1010,"2019",3,1,16,2,16,19,"BBC",NA +106,108,1011,"2019",5,0,0,3,100,100,"BBC",NA +106,108,1012,"2019",5,1,75,3,75,70,"BBC",NA +106,108,1014,"2019",3,1,100,3,100,100,"BBC",NA +106,108,1019,"2019",3,0,100,2,0,0,"BBC",NA +106,108,1020,"2019",4,1,99,3,99,NA,"BBC",NA +106,108,1022,"2019",5,1,100,3,100,51,"BBC",NA +106,108,1023,"2019",3,0,11,2,89,89,"BBC",NA +106,108,1025,"2019",2,0,0,2,100,59,"BBC",NA +106,108,1029,"2019",3,0,0,2,100,100,"BBC",NA +106,108,1035,"2019",6,1,100,2,100,100,"BBC",NA +106,108,1042,"2019",3,1,50,2,50,50,"BBC",NA +106,108,1045,"2019",4,1,100,3,100,NA,"BBC",NA +106,108,1047,"2019",3,0,85,2,15,24,"BBC",NA +106,108,1057,"2019",6,1,71,2,71,71,"BBC",NA +106,108,1059,"2019",2,1,79,3,79,64,"BBC",NA +106,108,1061,"2019",2,1,100,2,100,100,"BBC",NA +106,108,1065,"2019",5,1,100,2,100,100,"BBC",NA +106,108,1069,"2019",2,0,31,2,69,89,"BBC",NA +106,108,1070,"2019",6,0,0,3,100,93,"BBC",NA +106,108,1075,"2019",3,1,100,2,100,100,"BBC",NA +106,108,1076,"2019",3,1,100,2,100,51,"BBC",NA +106,108,1079,"2019",5,1,100,2,100,100,"BBC",NA +106,108,1080,"2019",5,1,72,2,72,72,"BBC",NA +106,108,1083,"2019",2,0,39,3,61,0,"BBC",NA +106,108,1086,"2019",5,1,92,3,92,79,"BBC",NA +106,108,1087,"2019",6,1,100,3,100,91,"BBC",NA +106,108,1089,"2019",6,1,81,2,81,81,"BBC",NA +106,108,1094,"2019",3,1,82,2,82,50,"BBC",NA +106,108,1097,"2019",6,0,86,2,14,29,"BBC",NA +106,108,1101,"2019",3,1,79,3,79,69,"BBC",NA +106,108,1104,"2019",2,1,9,3,9,9,"BBC",NA +106,108,1105,"2019",2,1,92,2,92,88,"BBC",NA +106,108,1108,"2019",6,0,74,3,26,20,"BBC",NA +106,108,1111,"2019",3,0,0,2,100,100,"BBC",NA +106,108,1112,"2019",6,1,93,2,93,93,"BBC",NA +106,108,1113,"2019",5,0,84,2,16,16,"BBC",NA +106,108,1114,"2019",2,0,0,2,100,100,"BBC",NA +106,108,1118,"2019",5,1,80,2,80,80,"BBC",NA +106,108,1122,"2019",5,1,92,3,92,92,"BBC",NA +106,108,1123,"2019",3,0,1,2,99,78,"BBC",NA +106,108,1126,"2019",3,0,18,2,82,78,"BBC",NA +106,108,1130,"2019",6,1,100,2,100,100,"BBC",NA +106,108,1133,"2019",6,0,77,3,23,23,"BBC",NA +106,108,1135,"2019",5,0,0,2,100,50,"BBC",NA +106,108,1137,"2019",3,1,28,3,28,17,"BBC",NA +106,108,1140,"2019",3,0,87,2,13,20,"BBC",NA +106,108,1142,"2019",5,0,0,2,100,10,"BBC",NA +106,108,1143,"2019",2,0,4,2,96,92,"BBC",NA +106,108,1150,"2019",6,0,82,2,18,18,"BBC",NA +106,108,1155,"2019",6,0,83,2,17,17,"BBC",NA +106,108,1156,"2019",6,1,100,3,100,100,"BBC",NA +106,108,1158,"2019",6,0,83,2,17,13,"BBC",NA +106,108,1162,"2019",2,0,75,2,25,21,"BBC",NA +106,108,1164,"2019",5,0,82,2,18,13,"BBC",NA +106,108,1166,"2019",6,1,75,3,75,81,"BBC",NA +106,114,144,"2019",5,0,13,3,87,91,"Xinhua",NA +106,114,145,"2019",6,0,0,3,100,12,"Xinhua",NA +106,114,147,"2019",5,0,50,2,50,70,"Xinhua",NA +106,114,150,"2019",6,1,70,3,70,81,"Xinhua",NA +106,114,151,"2019",2,0,0,2,100,50,"Xinhua",NA +106,114,153,"2019",6,1,86,2,86,86,"Xinhua",NA +106,114,154,"2019",5,0,4,3,96,96,"Xinhua",NA +106,114,156,"2019",2,1,57,3,57,55,"Xinhua",NA +106,114,159,"2019",5,1,65,2,65,65,"Xinhua",NA +106,114,161,"2019",2,0,30,2,70,90,"Xinhua",NA +106,114,162,"2019",5,1,100,3,100,100,"Xinhua",NA +106,114,163,"2019",3,0,19,2,81,39,"Xinhua",NA +106,114,167,"2019",3,0,16,2,84,33,"Xinhua",NA +106,114,169,"2019",4,1,60,2,60,60,"Xinhua",NA +106,114,170,"2019",3,0,1,2,99,99,"Xinhua",NA +106,114,174,"2019",2,0,94,2,6,45,"Xinhua",NA +106,114,176,"2019",2,1,100,2,100,100,"Xinhua",NA +106,114,178,"2019",3,1,100,2,100,100,"Xinhua",NA +106,114,179,"2019",5,1,77,3,77,73,"Xinhua",NA +106,114,180,"2019",2,0,58,2,42,55,"Xinhua",NA +106,114,181,"2019",2,0,22,3,78,87,"Xinhua",NA +106,114,182,"2019",6,1,79,2,79,69,"Xinhua",NA +106,114,184,"2019",5,0,0,3,100,100,"Xinhua",NA +106,114,185,"2019",5,0,14,2,86,83,"Xinhua",NA +106,114,192,"2019",6,1,100,2,100,100,"Xinhua",NA +106,114,194,"2019",5,0,91,2,9,9,"Xinhua",NA +106,114,195,"2019",3,0,100,2,0,0,"Xinhua",NA +106,114,198,"2019",3,1,88,2,88,82,"Xinhua",NA +106,114,206,"2019",6,1,84,3,84,84,"Xinhua",NA +106,114,208,"2019",5,1,84,3,84,67,"Xinhua",NA +106,114,212,"2019",3,0,81,3,19,39,"Xinhua",NA +106,114,218,"2019",6,1,100,3,100,100,"Xinhua",NA +106,114,219,"2019",6,1,100,2,100,100,"Xinhua",NA +106,114,221,"2019",6,1,50,3,50,100,"Xinhua",NA +106,114,222,"2019",2,1,52,2,52,51,"Xinhua",NA +106,114,224,"2019",6,1,80,2,80,80,"Xinhua",NA +106,114,232,"2019",2,0,100,3,0,9,"Xinhua",NA +106,114,233,"2019",6,0,0,3,100,100,"Xinhua",NA +106,114,237,"2019",3,1,91,3,91,82,"Xinhua",NA +106,114,238,"2019",6,1,50,3,50,50,"Xinhua",NA +106,114,239,"2019",3,1,86,3,86,74,"Xinhua",NA +106,114,240,"2019",3,1,90,2,90,95,"Xinhua",NA +106,114,242,"2019",2,0,100,3,0,0,"Xinhua",NA +106,114,243,"2019",6,0,100,2,0,0,"Xinhua",NA +106,114,244,"2019",4,1,50,2,50,50,"Xinhua",NA +106,114,245,"2019",6,0,70,2,30,30,"Xinhua",NA +106,114,247,"2019",3,0,0,3,100,100,"Xinhua",NA +106,114,253,"2019",6,0,21,2,79,79,"Xinhua",NA +106,114,255,"2019",6,0,25,2,75,67,"Xinhua",NA +106,114,256,"2019",4,0,22,2,78,78,"Xinhua",NA +106,114,258,"2019",6,0,61,2,39,34,"Xinhua",NA +106,114,259,"2019",6,0,0,2,100,100,"Xinhua",NA +106,114,261,"2019",2,0,88,3,12,24,"Xinhua",NA +106,114,262,"2019",5,0,30,3,70,59,"Xinhua",NA +106,114,263,"2019",4,1,100,2,100,91,"Xinhua",NA +106,114,266,"2019",2,1,61,2,61,61,"Xinhua",NA +106,114,274,"2019",5,1,100,3,100,95,"Xinhua",NA +106,114,275,"2019",3,1,80,3,80,80,"Xinhua",NA +106,114,276,"2019",3,0,73,2,27,50,"Xinhua",NA +106,114,278,"2019",5,1,84,3,84,15,"Xinhua",NA +106,114,281,"2019",3,0,30,3,70,70,"Xinhua",NA +106,114,287,"2019",2,1,53,3,53,6,"Xinhua",NA +106,114,288,"2019",3,1,63,2,63,72,"Xinhua",NA +106,114,289,"2019",4,1,96,2,96,100,"Xinhua",NA +106,114,290,"2019",4,1,50,2,50,50,"Xinhua",NA +106,114,291,"2019",3,1,91,3,91,60,"Xinhua",NA +106,114,295,"2019",2,0,0,2,100,94,"Xinhua",NA +106,114,297,"2019",3,0,0,2,100,93,"Xinhua",NA +106,114,298,"2019",5,0,91,2,9,50,"Xinhua",NA +106,114,299,"2019",5,1,7,2,7,7,"Xinhua",NA +106,114,300,"2019",6,0,0,3,100,100,"Xinhua",NA +106,114,302,"2019",3,0,51,3,49,49,"Xinhua",NA +106,114,303,"2019",2,0,83,3,17,40,"Xinhua",NA +106,114,305,"2019",6,1,70,3,70,70,"Xinhua",NA +106,114,307,"2019",5,0,76,3,24,35,"Xinhua",NA +106,114,311,"2019",4,0,86,2,14,14,"Xinhua",NA +106,114,312,"2019",2,0,99,3,1,72,"Xinhua",NA +106,114,314,"2019",3,0,90,2,10,19,"Xinhua",NA +106,114,315,"2019",5,1,100,2,100,100,"Xinhua",NA +106,114,319,"2019",3,1,100,2,100,53,"Xinhua",NA +106,114,322,"2019",6,1,100,2,100,50,"Xinhua",NA +106,114,323,"2019",5,0,7,2,93,64,"Xinhua",NA +106,114,324,"2019",6,0,88,3,12,12,"Xinhua",NA +106,114,334,"2019",2,0,73,3,27,27,"Xinhua",NA +106,114,337,"2019",3,1,100,3,100,100,"Xinhua",NA +106,114,338,"2019",6,1,88,2,88,88,"Xinhua",NA +106,114,348,"2019",5,1,37,3,37,100,"Xinhua",NA +106,114,350,"2019",2,1,72,3,72,64,"Xinhua",NA +106,114,351,"2019",2,1,100,3,100,50,"Xinhua",NA +106,114,352,"2019",6,0,85,3,15,91,"Xinhua",NA +106,114,354,"2019",5,1,100,2,100,100,"Xinhua",NA +106,114,355,"2019",5,0,44,2,56,56,"Xinhua",NA +106,114,356,"2019",2,1,86,2,86,49,"Xinhua",NA +106,114,357,"2019",6,1,74,2,74,50,"Xinhua",NA +106,114,360,"2019",6,0,0,2,100,100,"Xinhua",NA +106,114,361,"2019",6,0,80,2,20,50,"Xinhua",NA +106,114,362,"2019",2,1,76,3,76,76,"Xinhua",NA +106,114,367,"2019",6,0,67,3,33,33,"Xinhua",NA +106,114,368,"2019",3,1,79,3,79,79,"Xinhua",NA +106,114,371,"2019",4,0,19,2,81,81,"Xinhua",NA +106,114,376,"2019",6,1,60,3,60,86,"Xinhua",NA +106,114,379,"2019",4,0,0,2,100,100,"Xinhua",NA +106,114,380,"2019",2,1,100,2,100,81,"Xinhua",NA +106,114,381,"2019",6,0,82,2,18,19,"Xinhua",NA +106,114,388,"2019",5,0,100,3,0,0,"Xinhua",NA +106,114,389,"2019",5,1,71,3,71,59,"Xinhua",NA +106,114,391,"2019",6,1,73,2,73,50,"Xinhua",NA +106,114,392,"2019",5,0,0,2,100,100,"Xinhua",NA +106,114,395,"2019",5,0,14,2,86,86,"Xinhua",NA +106,114,397,"2019",2,0,6,2,94,94,"Xinhua",NA +106,114,399,"2019",4,1,100,2,100,100,"Xinhua",NA +106,114,401,"2019",6,1,68,3,68,51,"Xinhua",NA +106,114,402,"2019",2,1,50,3,50,50,"Xinhua",NA +106,114,407,"2019",3,0,0,3,100,100,"Xinhua",NA +106,114,408,"2019",4,0,78,2,22,50,"Xinhua",NA +106,114,409,"2019",6,0,85,2,15,26,"Xinhua",NA +106,114,411,"2019",5,0,99,3,1,17,"Xinhua",NA +106,114,412,"2019",3,0,82,3,18,18,"Xinhua",NA +106,114,413,"2019",3,1,50,2,50,50,"Xinhua",NA +106,114,414,"2019",2,1,71,3,71,69,"Xinhua",NA +106,114,416,"2019",5,1,100,2,100,72,"Xinhua",NA +106,114,418,"2019",2,1,82,2,82,82,"Xinhua",NA +106,114,419,"2019",3,1,68,2,68,68,"Xinhua",NA +106,114,421,"2019",6,1,71,2,71,50,"Xinhua",NA +106,114,424,"2019",2,0,37,2,63,33,"Xinhua",NA +106,114,426,"2019",3,0,5,2,95,92,"Xinhua",NA +106,114,427,"2019",3,1,100,2,100,100,"Xinhua",NA +106,114,428,"2019",3,1,69,2,69,52,"Xinhua",NA +106,114,431,"2019",4,1,57,2,57,55,"Xinhua",NA +106,114,432,"2019",3,1,100,2,100,0,"Xinhua",NA +106,114,433,"2019",6,1,50,2,50,50,"Xinhua",NA +106,114,434,"2019",2,1,89,3,89,89,"Xinhua",NA +106,114,437,"2019",6,0,0,3,100,0,"Xinhua",NA +106,114,440,"2019",6,0,26,2,74,72,"Xinhua",NA +106,114,441,"2019",5,0,0,3,100,93,"Xinhua",NA +106,114,442,"2019",2,0,72,3,28,28,"Xinhua",NA +106,114,444,"2019",5,1,100,3,100,100,"Xinhua",NA +106,114,446,"2019",5,1,86,2,86,69,"Xinhua",NA +106,114,448,"2019",2,1,91,2,91,91,"Xinhua",NA +106,114,452,"2019",4,1,100,2,100,93,"Xinhua",NA +106,114,453,"2019",6,1,100,2,100,50,"Xinhua",NA +106,114,455,"2019",4,0,12,2,88,89,"Xinhua",NA +106,114,457,"2019",6,0,67,3,33,53,"Xinhua",NA +106,114,459,"2019",4,0,40,2,60,48,"Xinhua",NA +106,114,460,"2019",6,0,82,3,18,25,"Xinhua",NA +106,114,461,"2019",2,0,50,2,50,50,"Xinhua",NA +106,114,467,"2019",2,0,49,2,51,0,"Xinhua",NA +106,114,468,"2019",4,1,67,2,67,67,"Xinhua",NA +106,114,469,"2019",5,0,30,2,70,61,"Xinhua",NA +106,114,470,"2019",5,0,0,2,100,100,"Xinhua",NA +106,114,472,"2019",4,0,77,2,23,14,"Xinhua",NA +106,114,474,"2019",2,0,79,2,21,36,"Xinhua",NA +106,114,479,"2019",5,0,92,2,8,43,"Xinhua",NA +106,114,484,"2019",6,0,14,3,86,82,"Xinhua",NA +106,114,486,"2019",6,0,50,2,50,51,"Xinhua",NA +106,114,489,"2019",2,1,70,3,70,70,"Xinhua",NA +106,114,493,"2019",2,1,82,2,82,82,"Xinhua",NA +106,114,494,"2019",5,1,57,3,57,64,"Xinhua",NA +106,114,501,"2019",5,0,85,2,15,77,"Xinhua",NA +106,114,504,"2019",6,1,28,2,28,28,"Xinhua",NA +106,114,505,"2019",2,0,0,2,100,100,"Xinhua",NA +106,114,510,"2019",3,0,85,2,15,15,"Xinhua",NA +106,114,511,"2019",5,1,24,3,24,67,"Xinhua",NA +106,114,512,"2019",6,0,29,3,71,50,"Xinhua",NA +106,114,517,"2019",2,1,69,2,69,63,"Xinhua",NA +106,114,520,"2019",3,0,65,2,35,32,"Xinhua",NA +106,114,522,"2019",6,0,18,2,82,72,"Xinhua",NA +106,114,524,"2019",2,0,80,3,20,50,"Xinhua",NA +106,114,527,"2019",5,0,50,2,50,50,"Xinhua",NA +106,114,528,"2019",5,1,82,3,82,82,"Xinhua",NA +106,114,530,"2019",4,0,52,2,48,48,"Xinhua",NA +106,114,532,"2019",2,1,50,2,50,50,"Xinhua",NA +106,114,533,"2019",6,1,100,3,100,100,"Xinhua",NA +106,114,536,"2019",5,0,89,2,11,11,"Xinhua",NA +106,114,538,"2019",3,1,57,2,57,57,"Xinhua",NA +106,114,540,"2019",6,1,63,2,63,35,"Xinhua",NA +106,114,541,"2019",4,1,79,2,79,50,"Xinhua",NA +106,114,542,"2019",2,1,44,2,44,63,"Xinhua",NA +106,114,543,"2019",2,0,77,3,23,45,"Xinhua",NA +106,114,548,"2019",5,1,48,2,48,45,"Xinhua",NA +106,114,550,"2019",4,1,50,2,50,50,"Xinhua",NA +106,114,551,"2019",6,1,72,2,72,65,"Xinhua",NA +106,114,555,"2019",2,1,21,2,21,29,"Xinhua",NA +106,114,558,"2019",6,1,77,2,77,68,"Xinhua",NA +106,114,559,"2019",5,1,74,2,74,74,"Xinhua",NA +106,114,563,"2019",6,1,81,2,81,81,"Xinhua",NA +106,114,565,"2019",5,0,72,3,28,29,"Xinhua",NA +106,114,567,"2019",2,0,66,2,34,50,"Xinhua",NA +106,114,570,"2019",6,0,100,3,0,0,"Xinhua",NA +106,114,572,"2019",5,0,70,2,30,50,"Xinhua",NA +106,114,575,"2019",5,1,100,3,100,100,"Xinhua",NA +106,114,576,"2019",3,0,100,3,0,0,"Xinhua",NA +106,114,577,"2019",3,0,50,2,50,50,"Xinhua",NA +106,114,578,"2019",6,0,81,2,19,29,"Xinhua",NA +106,114,580,"2019",6,1,100,3,100,100,"Xinhua",NA +106,114,581,"2019",3,0,21,2,79,74,"Xinhua",NA +106,114,584,"2019",5,1,69,3,69,69,"Xinhua",NA +106,114,587,"2019",2,0,64,3,36,36,"Xinhua",NA +106,114,588,"2019",4,1,70,2,70,62,"Xinhua",NA +106,114,589,"2019",6,1,83,3,83,83,"Xinhua",NA +106,114,590,"2019",2,1,66,3,66,66,"Xinhua",NA +106,114,593,"2019",2,0,44,2,56,38,"Xinhua",NA +106,114,595,"2019",5,1,0,3,0,0,"Xinhua",NA +106,114,603,"2019",6,1,66,3,66,72,"Xinhua",NA +106,114,604,"2019",5,0,42,3,58,32,"Xinhua",NA +106,114,605,"2019",2,1,68,2,68,59,"Xinhua",NA +106,114,606,"2019",6,0,68,3,32,32,"Xinhua",NA +106,114,608,"2019",2,1,84,2,84,84,"Xinhua",NA +106,114,610,"2019",3,1,60,2,60,71,"Xinhua",NA +106,114,613,"2019",6,1,35,3,35,35,"Xinhua",NA +106,114,614,"2019",6,0,50,3,50,50,"Xinhua",NA +106,114,619,"2019",4,1,46,2,46,46,"Xinhua",NA +106,114,620,"2019",6,1,0,3,0,0,"Xinhua",NA +106,114,622,"2019",2,1,80,3,80,80,"Xinhua",NA +106,114,623,"2019",2,1,100,3,100,93,"Xinhua",NA +106,114,632,"2019",6,0,77,2,23,23,"Xinhua",NA +106,114,633,"2019",6,1,0,2,0,0,"Xinhua",NA +106,114,635,"2019",4,1,100,2,100,100,"Xinhua",NA +106,114,636,"2019",5,0,100,2,0,97,"Xinhua",NA +106,114,639,"2019",2,1,50,3,50,50,"Xinhua",NA +106,114,640,"2019",2,0,9,2,91,80,"Xinhua",NA +106,114,646,"2019",5,1,26,2,26,33,"Xinhua",NA +106,114,647,"2019",5,0,24,3,76,70,"Xinhua",NA +106,114,648,"2019",6,0,68,3,32,32,"Xinhua",NA +106,114,650,"2019",2,0,24,2,76,19,"Xinhua",NA +106,114,651,"2019",4,1,87,2,87,100,"Xinhua",NA +106,114,652,"2019",3,1,91,2,91,91,"Xinhua",NA +106,114,654,"2019",2,1,100,2,100,100,"Xinhua",NA +106,114,655,"2019",6,1,100,3,100,100,"Xinhua",NA +106,114,656,"2019",2,1,49,2,49,100,"Xinhua",NA +106,114,657,"2019",4,1,90,2,90,90,"Xinhua",NA +106,114,660,"2019",3,0,63,2,37,60,"Xinhua",NA +106,114,663,"2019",5,0,100,3,0,100,"Xinhua",NA +106,114,664,"2019",6,0,23,2,77,79,"Xinhua",NA +106,114,669,"2019",6,1,66,2,66,66,"Xinhua",NA +106,114,676,"2019",2,0,50,3,50,50,"Xinhua",NA +106,114,677,"2019",2,1,100,2,100,73,"Xinhua",NA +106,114,681,"2019",6,0,71,3,29,29,"Xinhua",NA +106,114,687,"2019",3,1,100,3,100,95,"Xinhua",NA +106,114,689,"2019",2,0,50,2,50,50,"Xinhua",NA +106,114,692,"2019",3,1,71,3,71,71,"Xinhua",NA +106,114,693,"2019",2,1,0,3,0,0,"Xinhua",NA +106,114,694,"2019",2,1,20,2,20,1,"Xinhua",NA +106,114,696,"2019",4,1,0,2,0,0,"Xinhua",NA +106,114,698,"2019",3,0,0,2,100,100,"Xinhua",NA +106,114,705,"2019",6,0,8,3,92,86,"Xinhua",NA +106,114,706,"2019",4,0,0,2,100,100,"Xinhua",NA +106,114,707,"2019",4,0,91,2,9,33,"Xinhua",NA +106,114,709,"2019",5,1,100,3,100,0,"Xinhua",NA +106,114,712,"2019",3,1,51,3,51,83,"Xinhua",NA +106,114,713,"2019",4,0,70,2,30,20,"Xinhua",NA +106,114,716,"2019",2,0,50,2,50,50,"Xinhua",NA +106,114,719,"2019",5,0,2,3,98,95,"Xinhua",NA +106,114,722,"2019",4,1,68,2,68,68,"Xinhua",NA +106,114,729,"2019",2,0,100,3,0,0,"Xinhua",NA +106,114,730,"2019",3,0,77,2,23,23,"Xinhua",NA +106,114,735,"2019",3,1,50,3,50,100,"Xinhua",NA +106,114,737,"2019",3,1,89,2,89,71,"Xinhua",NA +106,114,739,"2019",2,1,91,3,91,81,"Xinhua",NA +106,114,740,"2019",5,0,100,2,0,50,"Xinhua",NA +106,114,743,"2019",3,0,100,3,0,0,"Xinhua",NA +106,114,746,"2019",4,1,94,2,94,94,"Xinhua",NA +106,114,747,"2019",5,1,90,3,90,78,"Xinhua",NA +106,114,750,"2019",3,0,0,3,100,100,"Xinhua",NA +106,114,751,"2019",4,1,87,2,87,50,"Xinhua",NA +106,114,753,"2019",2,0,82,3,18,50,"Xinhua",NA +106,114,757,"2019",6,1,50,3,50,50,"Xinhua",NA +106,114,759,"2019",5,1,36,2,36,100,"Xinhua",NA +106,114,761,"2019",6,1,63,3,63,81,"Xinhua",NA +106,114,763,"2019",3,1,50,2,50,50,"Xinhua",NA +106,114,765,"2019",3,1,0,3,0,95,"Xinhua",NA +106,114,769,"2019",4,1,100,2,100,100,"Xinhua",NA +106,114,770,"2019",4,1,50,2,50,50,"Xinhua",NA +106,114,774,"2019",5,1,0,3,0,100,"Xinhua",NA +106,114,775,"2019",6,0,3,3,97,97,"Xinhua",NA +106,114,778,"2019",3,0,0,2,100,100,"Xinhua",NA +106,114,782,"2019",6,1,67,3,67,67,"Xinhua",NA +106,114,783,"2019",5,0,20,2,80,50,"Xinhua",NA +106,114,784,"2019",4,0,77,2,23,50,"Xinhua",NA +106,114,788,"2019",5,1,15,3,15,22,"Xinhua",NA +106,114,793,"2019",4,0,59,2,41,91,"Xinhua",NA +106,114,794,"2019",2,0,51,2,49,49,"Xinhua",NA +106,114,795,"2019",4,0,0,2,100,58,"Xinhua",NA +106,114,798,"2019",6,0,100,3,0,0,"Xinhua",NA +106,114,807,"2019",2,0,100,2,0,80,"Xinhua",NA +106,114,811,"2019",2,1,100,2,100,100,"Xinhua",NA +106,114,817,"2019",5,1,100,2,100,100,"Xinhua",NA +106,114,818,"2019",6,1,0,3,0,50,"Xinhua",NA +106,114,821,"2019",5,1,100,3,100,16,"Xinhua",NA +106,114,824,"2019",2,0,100,3,0,50,"Xinhua",NA +106,114,825,"2019",3,1,100,3,100,100,"Xinhua",NA +106,114,827,"2019",2,1,56,3,56,72,"Xinhua",NA +106,114,828,"2019",2,1,71,2,71,50,"Xinhua",NA +106,114,831,"2019",2,0,0,2,100,50,"Xinhua",NA +106,114,832,"2019",3,1,100,3,100,50,"Xinhua",NA +106,114,836,"2019",4,1,100,2,100,100,"Xinhua",NA +106,114,841,"2019",3,0,0,3,100,100,"Xinhua",NA +106,114,842,"2019",4,1,65,2,65,65,"Xinhua",NA +106,114,843,"2019",5,1,100,3,100,100,"Xinhua",NA +106,114,846,"2019",5,1,100,3,100,100,"Xinhua",NA +106,114,847,"2019",2,0,100,3,0,9,"Xinhua",NA +106,114,848,"2019",3,0,93,2,7,10,"Xinhua",NA +106,114,849,"2019",4,0,100,2,0,0,"Xinhua",NA +106,114,850,"2019",2,1,93,3,93,93,"Xinhua",NA +106,114,852,"2019",4,0,13,2,87,90,"Xinhua",NA +106,114,855,"2019",6,1,92,3,92,71,"Xinhua",NA +106,114,857,"2019",3,1,92,3,92,100,"Xinhua",NA +106,114,858,"2019",5,1,23,2,23,23,"Xinhua",NA +106,114,868,"2019",6,1,100,2,100,92,"Xinhua",NA +106,114,870,"2019",5,0,50,3,50,50,"Xinhua",NA +106,114,871,"2019",6,1,100,3,100,75,"Xinhua",NA +106,114,872,"2019",2,1,48,3,48,42,"Xinhua",NA +106,114,873,"2019",4,1,97,2,97,87,"Xinhua",NA +106,114,876,"2019",6,0,100,3,0,0,"Xinhua",NA +106,114,878,"2019",6,0,94,2,6,16,"Xinhua",NA +106,114,881,"2019",2,0,91,3,9,9,"Xinhua",NA +106,114,884,"2019",2,0,75,2,25,25,"Xinhua",NA +106,114,887,"2019",6,0,100,2,0,0,"Xinhua",NA +106,114,888,"2019",3,0,82,3,18,19,"Xinhua",NA +106,114,889,"2019",6,1,100,2,100,100,"Xinhua",NA +106,114,891,"2019",4,1,100,2,100,100,"Xinhua",NA +106,114,894,"2019",6,1,86,2,86,81,"Xinhua",NA +106,114,896,"2019",6,0,20,3,80,49,"Xinhua",NA +106,114,897,"2019",2,0,100,2,0,0,"Xinhua",NA +106,114,903,"2019",4,0,100,2,0,100,"Xinhua",NA +106,114,908,"2019",6,0,0,3,100,99,"Xinhua",NA +106,114,909,"2019",2,1,95,3,95,86,"Xinhua",NA +106,114,910,"2019",5,0,42,3,58,49,"Xinhua",NA +106,114,911,"2019",6,1,100,2,100,100,"Xinhua",NA +106,114,919,"2019",2,1,73,3,73,74,"Xinhua",NA +106,114,920,"2019",2,1,90,3,90,80,"Xinhua",NA +106,114,924,"2019",2,0,0,2,100,99,"Xinhua",NA +106,114,926,"2019",3,0,0,2,100,69,"Xinhua",NA +106,114,928,"2019",5,0,82,2,18,90,"Xinhua",NA +106,114,930,"2019",2,0,19,3,81,81,"Xinhua",NA +106,114,931,"2019",5,0,21,2,79,74,"Xinhua",NA +106,114,932,"2019",4,0,31,2,69,50,"Xinhua",NA +106,114,933,"2019",2,1,93,2,93,93,"Xinhua",NA +106,114,935,"2019",2,0,96,3,4,20,"Xinhua",NA +106,114,938,"2019",3,1,100,3,100,100,"Xinhua",NA +106,114,944,"2019",3,0,0,2,100,100,"Xinhua",NA +106,114,946,"2019",3,0,93,3,7,7,"Xinhua",NA +106,114,950,"2019",5,0,82,2,18,18,"Xinhua",NA +106,114,952,"2019",3,0,0,2,100,100,"Xinhua",NA +106,114,953,"2019",2,0,62,2,38,30,"Xinhua",NA +106,114,954,"2019",5,1,100,3,100,100,"Xinhua",NA +106,114,956,"2019",5,0,6,2,94,94,"Xinhua",NA +106,114,957,"2019",3,1,100,3,100,91,"Xinhua",NA +106,114,960,"2019",4,1,50,2,50,50,"Xinhua",NA +106,114,962,"2019",2,1,100,2,100,100,"Xinhua",NA +106,114,964,"2019",4,0,2,2,98,99,"Xinhua",NA +106,114,965,"2019",5,0,92,2,8,51,"Xinhua",NA +106,114,969,"2019",2,1,100,2,100,100,"Xinhua",NA +106,114,971,"2019",4,1,20,2,20,26,"Xinhua",NA +106,114,974,"2019",5,0,20,2,80,70,"Xinhua",NA +106,114,976,"2019",3,0,0,2,100,48,"Xinhua",NA +106,114,979,"2019",6,1,81,2,81,64,"Xinhua",NA +106,114,981,"2019",5,0,2,2,98,98,"Xinhua",NA +106,114,983,"2019",5,0,11,3,89,89,"Xinhua",NA +106,114,984,"2019",5,1,71,2,71,31,"Xinhua",NA +106,114,987,"2019",4,0,26,2,74,74,"Xinhua",NA +106,114,994,"2019",5,0,99,3,1,0,"Xinhua",NA +106,114,997,"2019",2,1,100,2,100,99,"Xinhua",NA +106,114,998,"2019",3,1,97,2,97,97,"Xinhua",NA +106,114,999,"2019",5,0,9,2,91,91,"Xinhua",NA +106,114,1000,"2019",5,1,81,3,81,71,"Xinhua",NA +106,114,1001,"2019",5,1,82,3,82,53,"Xinhua",NA +106,114,1004,"2019",4,0,96,2,4,9,"Xinhua",NA +106,114,1011,"2019",5,0,0,2,100,100,"Xinhua",NA +106,114,1014,"2019",3,1,100,2,100,100,"Xinhua",NA +106,114,1015,"2019",3,1,100,3,100,98,"Xinhua",NA +106,114,1016,"2019",5,0,71,3,29,49,"Xinhua",NA +106,114,1019,"2019",3,0,100,3,0,0,"Xinhua",NA +106,114,1022,"2019",5,1,51,2,51,51,"Xinhua",NA +106,114,1025,"2019",2,0,52,3,48,100,"Xinhua",NA +106,114,1026,"2019",2,0,30,3,70,50,"Xinhua",NA +106,114,1028,"2019",3,1,50,2,50,50,"Xinhua",NA +106,114,1030,"2019",5,0,12,2,88,68,"Xinhua",NA +106,114,1031,"2019",3,0,92,3,8,8,"Xinhua",NA +106,114,1036,"2019",5,1,100,3,100,100,"Xinhua",NA +106,114,1037,"2019",6,0,50,3,50,50,"Xinhua",NA +106,114,1038,"2019",3,0,50,2,50,50,"Xinhua",NA +106,114,1039,"2019",3,1,51,3,51,92,"Xinhua",NA +106,114,1040,"2019",2,0,78,2,22,60,"Xinhua",NA +106,114,1041,"2019",3,1,91,3,91,91,"Xinhua",NA +106,114,1046,"2019",5,0,62,3,38,64,"Xinhua",NA +106,114,1048,"2019",6,1,73,3,73,100,"Xinhua",NA +106,114,1049,"2019",6,1,100,2,100,100,"Xinhua",NA +106,114,1050,"2019",5,1,66,2,66,66,"Xinhua",NA +106,114,1052,"2019",2,1,17,3,17,18,"Xinhua",NA +106,114,1053,"2019",4,1,100,2,100,51,"Xinhua",NA +106,114,1056,"2019",6,1,100,3,100,100,"Xinhua",NA +106,114,1057,"2019",6,1,71,3,71,71,"Xinhua",NA +106,114,1058,"2019",3,0,0,2,100,100,"Xinhua",NA +106,114,1060,"2019",2,1,100,2,100,100,"Xinhua",NA +106,114,1061,"2019",2,1,100,3,100,100,"Xinhua",NA +106,114,1066,"2019",4,0,85,2,15,15,"Xinhua",NA +106,114,1067,"2019",3,0,98,3,2,2,"Xinhua",NA +106,114,1068,"2019",4,1,73,2,73,76,"Xinhua",NA +106,114,1069,"2019",2,0,31,3,69,69,"Xinhua",NA +106,114,1071,"2019",2,1,100,2,100,100,"Xinhua",NA +106,114,1073,"2019",4,0,11,2,89,82,"Xinhua",NA +106,114,1074,"2019",4,0,50,2,50,50,"Xinhua",NA +106,114,1077,"2019",6,1,100,2,100,100,"Xinhua",NA +106,114,1080,"2019",5,1,85,3,85,72,"Xinhua",NA +106,114,1081,"2019",6,0,81,3,19,19,"Xinhua",NA +106,114,1084,"2019",2,0,58,3,42,33,"Xinhua",NA +106,114,1085,"2019",2,0,100,3,0,50,"Xinhua",NA +106,114,1088,"2019",5,0,50,2,50,50,"Xinhua",NA +106,114,1090,"2019",5,1,82,2,82,82,"Xinhua",NA +106,114,1093,"2019",5,0,21,2,79,79,"Xinhua",NA +106,114,1094,"2019",3,1,93,3,93,82,"Xinhua",NA +106,114,1097,"2019",6,0,94,3,6,14,"Xinhua",NA +106,114,1098,"2019",4,1,12,2,12,15,"Xinhua",NA +106,114,1099,"2019",3,1,69,3,69,81,"Xinhua",NA +106,114,1105,"2019",2,1,100,3,100,92,"Xinhua",NA +106,114,1112,"2019",6,1,93,3,93,93,"Xinhua",NA +106,114,1114,"2019",2,0,0,3,100,100,"Xinhua",NA +106,114,1117,"2019",6,0,0,2,100,97,"Xinhua",NA +106,114,1124,"2019",4,0,92,2,8,15,"Xinhua",NA +106,114,1125,"2019",3,1,82,2,82,80,"Xinhua",NA +106,114,1128,"2019",5,1,100,2,100,100,"Xinhua",NA +106,114,1129,"2019",4,1,81,2,81,85,"Xinhua",NA +106,114,1135,"2019",5,0,0,3,100,100,"Xinhua",NA +106,114,1137,"2019",3,1,17,2,17,6,"Xinhua",NA +106,114,1138,"2019",4,1,17,2,17,50,"Xinhua",NA +106,114,1139,"2019",3,1,50,3,50,100,"Xinhua",NA +106,114,1140,"2019",3,0,92,3,8,13,"Xinhua",NA +106,114,1146,"2019",2,0,16,3,84,84,"Xinhua",NA +106,114,1148,"2019",6,1,92,2,92,92,"Xinhua",NA +106,114,1150,"2019",6,0,82,3,18,18,"Xinhua",NA +106,114,1151,"2019",5,1,100,2,100,0,"Xinhua",NA +106,114,1154,"2019",2,0,76,3,24,24,"Xinhua",NA +106,114,1156,"2019",6,1,100,2,100,100,"Xinhua",NA +106,114,1157,"2019",2,1,84,2,84,84,"Xinhua",NA +106,114,1158,"2019",6,0,76,3,24,17,"Xinhua",NA +106,114,1163,"2019",4,1,82,2,82,88,"Xinhua",NA +106,114,1166,"2019",6,1,81,2,81,86,"Xinhua",NA +106,114,1167,"2019",3,1,84,2,84,88,"Xinhua",NA +106,119,146,"2019",5,0,95,3,5,28,"Nanfang Dushibao",NA +106,119,148,"2019",5,0,21,2,79,66,"Nanfang Dushibao",NA +106,119,153,"2019",6,1,86,3,86,86,"Nanfang Dushibao",NA +106,119,155,"2019",2,0,39,2,61,62,"Nanfang Dushibao",NA +106,119,157,"2019",3,0,38,3,62,61,"Nanfang Dushibao",NA +106,119,158,"2019",3,0,9,2,91,80,"Nanfang Dushibao",NA +106,119,159,"2019",5,1,78,3,78,65,"Nanfang Dushibao",NA +106,119,163,"2019",3,0,1,3,99,81,"Nanfang Dushibao",NA +106,119,164,"2019",2,1,100,3,100,95,"Nanfang Dushibao",NA +106,119,166,"2019",5,1,61,3,61,75,"Nanfang Dushibao",NA +106,119,167,"2019",3,0,0,3,100,84,"Nanfang Dushibao",NA +106,119,170,"2019",3,0,1,3,99,99,"Nanfang Dushibao",NA +106,119,172,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,173,"2019",6,0,86,3,14,100,"Nanfang Dushibao",NA +106,119,176,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,183,"2019",4,1,56,4,56,NA,"Nanfang Dushibao",NA +106,119,186,"2019",4,0,26,4,74,NA,"Nanfang Dushibao",NA +106,119,187,"2019",2,1,62,3,62,91,"Nanfang Dushibao",NA +106,119,190,"2019",3,0,76,2,24,62,"Nanfang Dushibao",NA +106,119,192,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,196,"2019",2,1,100,3,100,98,"Nanfang Dushibao",NA +106,119,198,"2019",3,1,93,3,93,88,"Nanfang Dushibao",NA +106,119,206,"2019",6,1,84,2,84,72,"Nanfang Dushibao",NA +106,119,208,"2019",5,1,67,2,67,84,"Nanfang Dushibao",NA +106,119,209,"2019",2,1,91,2,91,39,"Nanfang Dushibao",NA +106,119,211,"2019",5,0,0,2,100,100,"Nanfang Dushibao",NA +106,119,217,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,218,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,225,"2019",3,1,98,3,98,14,"Nanfang Dushibao",NA +106,119,226,"2019",5,1,19,2,19,19,"Nanfang Dushibao",NA +106,119,227,"2019",3,1,82,3,82,82,"Nanfang Dushibao",NA +106,119,228,"2019",6,0,25,3,75,22,"Nanfang Dushibao",NA +106,119,236,"2019",2,0,68,2,32,32,"Nanfang Dushibao",NA +106,119,245,"2019",6,0,70,3,30,30,"Nanfang Dushibao",NA +106,119,249,"2019",3,0,100,2,0,0,"Nanfang Dushibao",NA +106,119,259,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +106,119,260,"2019",6,1,80,2,80,80,"Nanfang Dushibao",NA +106,119,262,"2019",5,0,41,2,59,50,"Nanfang Dushibao",NA +106,119,264,"2019",5,0,86,3,14,36,"Nanfang Dushibao",NA +106,119,267,"2019",6,0,63,2,37,47,"Nanfang Dushibao",NA +106,119,268,"2019",5,0,91,3,9,9,"Nanfang Dushibao",NA +106,119,270,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +106,119,271,"2019",4,0,94,4,6,NA,"Nanfang Dushibao",NA +106,119,272,"2019",3,1,90,3,90,86,"Nanfang Dushibao",NA +106,119,277,"2019",5,0,81,2,19,19,"Nanfang Dushibao",NA +106,119,280,"2019",4,1,79,4,79,NA,"Nanfang Dushibao",NA +106,119,284,"2019",6,0,88,2,12,25,"Nanfang Dushibao",NA +106,119,285,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +106,119,288,"2019",3,1,63,3,63,63,"Nanfang Dushibao",NA +106,119,291,"2019",3,1,60,2,60,89,"Nanfang Dushibao",NA +106,119,294,"2019",4,0,20,4,80,NA,"Nanfang Dushibao",NA +106,119,297,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +106,119,300,"2019",6,0,0,2,100,94,"Nanfang Dushibao",NA +106,119,303,"2019",2,0,60,2,40,50,"Nanfang Dushibao",NA +106,119,305,"2019",6,1,70,2,70,50,"Nanfang Dushibao",NA +106,119,309,"2019",4,0,23,4,77,NA,"Nanfang Dushibao",NA +106,119,312,"2019",2,0,28,2,72,60,"Nanfang Dushibao",NA +106,119,314,"2019",3,0,90,3,10,10,"Nanfang Dushibao",NA +106,119,319,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,320,"2019",5,0,0,3,100,100,"Nanfang Dushibao",NA +106,119,325,"2019",3,0,1,2,99,50,"Nanfang Dushibao",NA +106,119,326,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,329,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,330,"2019",4,0,29,4,71,NA,"Nanfang Dushibao",NA +106,119,332,"2019",6,1,81,3,81,81,"Nanfang Dushibao",NA +106,119,338,"2019",6,1,88,3,88,88,"Nanfang Dushibao",NA +106,119,340,"2019",2,1,79,2,79,71,"Nanfang Dushibao",NA +106,119,341,"2019",5,1,59,2,59,59,"Nanfang Dushibao",NA +106,119,342,"2019",2,0,70,3,30,52,"Nanfang Dushibao",NA +106,119,344,"2019",6,1,86,2,86,80,"Nanfang Dushibao",NA +106,119,345,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,346,"2019",2,0,0,2,100,100,"Nanfang Dushibao",NA +106,119,347,"2019",3,0,6,2,94,86,"Nanfang Dushibao",NA +106,119,352,"2019",6,0,9,2,91,100,"Nanfang Dushibao",NA +106,119,356,"2019",2,1,100,3,100,86,"Nanfang Dushibao",NA +106,119,358,"2019",5,0,27,3,73,37,"Nanfang Dushibao",NA +106,119,364,"2019",2,1,100,3,100,50,"Nanfang Dushibao",NA +106,119,365,"2019",2,0,96,3,4,40,"Nanfang Dushibao",NA +106,119,372,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +106,119,375,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,378,"2019",6,0,57,2,43,63,"Nanfang Dushibao",NA +106,119,380,"2019",2,1,70,3,70,100,"Nanfang Dushibao",NA +106,119,383,"2019",5,0,0,2,100,100,"Nanfang Dushibao",NA +106,119,385,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,387,"2019",5,1,92,2,92,92,"Nanfang Dushibao",NA +106,119,388,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +106,119,389,"2019",5,1,59,2,59,51,"Nanfang Dushibao",NA +106,119,391,"2019",6,1,84,3,84,73,"Nanfang Dushibao",NA +106,119,393,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +106,119,395,"2019",5,0,14,3,86,86,"Nanfang Dushibao",NA +106,119,396,"2019",6,0,0,2,100,2,"Nanfang Dushibao",NA +106,119,398,"2019",6,0,2,3,98,98,"Nanfang Dushibao",NA +106,119,400,"2019",2,1,36,3,36,47,"Nanfang Dushibao",NA +106,119,403,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +106,119,404,"2019",2,1,10,3,10,10,"Nanfang Dushibao",NA +106,119,407,"2019",3,0,0,2,100,100,"Nanfang Dushibao",NA +106,119,409,"2019",6,0,61,3,39,15,"Nanfang Dushibao",NA +106,119,412,"2019",3,0,82,2,18,41,"Nanfang Dushibao",NA +106,119,413,"2019",3,1,81,3,81,50,"Nanfang Dushibao",NA +106,119,416,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,421,"2019",6,1,71,3,71,71,"Nanfang Dushibao",NA +106,119,422,"2019",2,1,90,3,90,90,"Nanfang Dushibao",NA +106,119,425,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,428,"2019",3,1,96,3,96,69,"Nanfang Dushibao",NA +106,119,429,"2019",6,1,47,2,47,45,"Nanfang Dushibao",NA +106,119,437,"2019",6,0,100,2,0,45,"Nanfang Dushibao",NA +106,119,439,"2019",2,1,91,2,91,100,"Nanfang Dushibao",NA +106,119,443,"2019",6,0,35,2,65,29,"Nanfang Dushibao",NA +106,119,446,"2019",5,1,61,3,61,86,"Nanfang Dushibao",NA +106,119,447,"2019",4,1,72,4,72,NA,"Nanfang Dushibao",NA +106,119,448,"2019",2,1,91,3,91,91,"Nanfang Dushibao",NA +106,119,449,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,450,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +106,119,454,"2019",3,1,95,2,95,95,"Nanfang Dushibao",NA +106,119,460,"2019",6,0,75,2,25,30,"Nanfang Dushibao",NA +106,119,463,"2019",3,0,64,2,36,36,"Nanfang Dushibao",NA +106,119,464,"2019",2,1,84,2,84,78,"Nanfang Dushibao",NA +106,119,466,"2019",4,0,0,4,100,NA,"Nanfang Dushibao",NA +106,119,469,"2019",5,0,23,3,77,70,"Nanfang Dushibao",NA +106,119,471,"2019",5,0,50,3,50,50,"Nanfang Dushibao",NA +106,119,478,"2019",4,1,68,4,68,NA,"Nanfang Dushibao",NA +106,119,479,"2019",5,0,16,3,84,8,"Nanfang Dushibao",NA +106,119,480,"2019",5,1,64,2,64,64,"Nanfang Dushibao",NA +106,119,487,"2019",6,1,81,2,81,50,"Nanfang Dushibao",NA +106,119,495,"2019",6,0,21,2,79,30,"Nanfang Dushibao",NA +106,119,497,"2019",3,0,71,3,29,29,"Nanfang Dushibao",NA +106,119,499,"2019",5,1,67,3,67,67,"Nanfang Dushibao",NA +106,119,501,"2019",5,0,70,3,30,15,"Nanfang Dushibao",NA +106,119,503,"2019",4,0,68,4,32,NA,"Nanfang Dushibao",NA +106,119,507,"2019",3,1,98,2,98,98,"Nanfang Dushibao",NA +106,119,509,"2019",4,1,66,4,66,NA,"Nanfang Dushibao",NA +106,119,514,"2019",2,1,67,2,67,67,"Nanfang Dushibao",NA +106,119,516,"2019",2,1,70,3,70,77,"Nanfang Dushibao",NA +106,119,517,"2019",2,1,79,3,79,69,"Nanfang Dushibao",NA +106,119,524,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,527,"2019",5,0,50,3,50,50,"Nanfang Dushibao",NA +106,119,528,"2019",5,1,82,2,82,65,"Nanfang Dushibao",NA +106,119,533,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,535,"2019",6,1,18,2,18,82,"Nanfang Dushibao",NA +106,119,536,"2019",5,0,89,3,11,11,"Nanfang Dushibao",NA +106,119,538,"2019",3,1,57,3,57,57,"Nanfang Dushibao",NA +106,119,540,"2019",6,1,63,3,63,63,"Nanfang Dushibao",NA +106,119,545,"2019",3,1,56,2,56,73,"Nanfang Dushibao",NA +106,119,549,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,552,"2019",5,0,25,2,75,75,"Nanfang Dushibao",NA +106,119,565,"2019",5,0,71,2,29,80,"Nanfang Dushibao",NA +106,119,569,"2019",2,1,17,3,17,17,"Nanfang Dushibao",NA +106,119,570,"2019",6,0,100,2,0,13,"Nanfang Dushibao",NA +106,119,574,"2019",2,0,30,3,70,70,"Nanfang Dushibao",NA +106,119,575,"2019",5,1,100,2,100,50,"Nanfang Dushibao",NA +106,119,576,"2019",3,0,100,2,0,0,"Nanfang Dushibao",NA +106,119,577,"2019",3,0,100,3,0,50,"Nanfang Dushibao",NA +106,119,578,"2019",6,0,81,3,19,19,"Nanfang Dushibao",NA +106,119,580,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,581,"2019",3,0,84,3,16,79,"Nanfang Dushibao",NA +106,119,583,"2019",3,1,45,3,45,45,"Nanfang Dushibao",NA +106,119,584,"2019",5,1,69,2,69,53,"Nanfang Dushibao",NA +106,119,585,"2019",2,0,66,3,34,34,"Nanfang Dushibao",NA +106,119,586,"2019",6,0,12,2,88,99,"Nanfang Dushibao",NA +106,119,591,"2019",3,1,64,2,64,45,"Nanfang Dushibao",NA +106,119,596,"2019",3,1,74,2,74,74,"Nanfang Dushibao",NA +106,119,597,"2019",5,0,68,2,32,27,"Nanfang Dushibao",NA +106,119,598,"2019",6,0,47,3,53,41,"Nanfang Dushibao",NA +106,119,601,"2019",5,0,69,2,31,31,"Nanfang Dushibao",NA +106,119,606,"2019",6,0,68,2,32,32,"Nanfang Dushibao",NA +106,119,609,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +106,119,610,"2019",3,1,78,3,78,60,"Nanfang Dushibao",NA +106,119,611,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +106,119,614,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,617,"2019",5,0,61,3,39,52,"Nanfang Dushibao",NA +106,119,622,"2019",2,1,80,2,80,80,"Nanfang Dushibao",NA +106,119,627,"2019",4,1,0,4,0,NA,"Nanfang Dushibao",NA +106,119,629,"2019",6,1,50,3,50,50,"Nanfang Dushibao",NA +106,119,630,"2019",6,1,100,3,100,50,"Nanfang Dushibao",NA +106,119,631,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,634,"2019",5,0,92,2,8,49,"Nanfang Dushibao",NA +106,119,637,"2019",5,1,100,3,100,68,"Nanfang Dushibao",NA +106,119,638,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +106,119,641,"2019",2,1,77,2,77,77,"Nanfang Dushibao",NA +106,119,642,"2019",4,1,86,4,86,NA,"Nanfang Dushibao",NA +106,119,649,"2019",2,0,0,3,100,100,"Nanfang Dushibao",NA +106,119,653,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +106,119,656,"2019",2,1,50,3,50,49,"Nanfang Dushibao",NA +106,119,659,"2019",2,1,62,3,62,62,"Nanfang Dushibao",NA +106,119,660,"2019",3,0,5,3,95,37,"Nanfang Dushibao",NA +106,119,665,"2019",6,0,22,2,78,78,"Nanfang Dushibao",NA +106,119,669,"2019",6,1,87,3,87,66,"Nanfang Dushibao",NA +106,119,670,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,675,"2019",2,0,39,3,61,70,"Nanfang Dushibao",NA +106,119,679,"2019",6,1,96,2,96,50,"Nanfang Dushibao",NA +106,119,680,"2019",3,0,51,3,49,45,"Nanfang Dushibao",NA +106,119,687,"2019",3,1,95,2,95,95,"Nanfang Dushibao",NA +106,119,691,"2019",6,0,22,3,78,78,"Nanfang Dushibao",NA +106,119,694,"2019",2,1,20,3,20,20,"Nanfang Dushibao",NA +106,119,699,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,700,"2019",2,0,13,2,87,87,"Nanfang Dushibao",NA +106,119,701,"2019",4,0,27,4,73,NA,"Nanfang Dushibao",NA +106,119,703,"2019",6,0,22,2,78,78,"Nanfang Dushibao",NA +106,119,704,"2019",6,0,0,2,100,14,"Nanfang Dushibao",NA +106,119,705,"2019",6,0,14,2,86,84,"Nanfang Dushibao",NA +106,119,710,"2019",5,1,99,3,99,99,"Nanfang Dushibao",NA +106,119,711,"2019",3,1,99,3,99,99,"Nanfang Dushibao",NA +106,119,712,"2019",3,1,83,2,83,85,"Nanfang Dushibao",NA +106,119,715,"2019",5,1,89,3,89,74,"Nanfang Dushibao",NA +106,119,717,"2019",5,0,60,2,40,77,"Nanfang Dushibao",NA +106,119,721,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +106,119,727,"2019",2,1,87,3,87,82,"Nanfang Dushibao",NA +106,119,731,"2019",4,1,71,4,71,NA,"Nanfang Dushibao",NA +106,119,733,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +106,119,734,"2019",5,1,50,3,50,50,"Nanfang Dushibao",NA +106,119,736,"2019",5,1,98,2,98,91,"Nanfang Dushibao",NA +106,119,737,"2019",3,1,89,3,89,89,"Nanfang Dushibao",NA +106,119,739,"2019",2,1,81,2,81,50,"Nanfang Dushibao",NA +106,119,740,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +106,119,742,"2019",2,0,50,3,50,0,"Nanfang Dushibao",NA +106,119,744,"2019",4,0,77,4,23,NA,"Nanfang Dushibao",NA +106,119,745,"2019",3,1,80,2,80,80,"Nanfang Dushibao",NA +106,119,748,"2019",2,1,85,3,85,100,"Nanfang Dushibao",NA +106,119,754,"2019",2,0,50,3,50,50,"Nanfang Dushibao",NA +106,119,758,"2019",5,0,50,3,50,100,"Nanfang Dushibao",NA +106,119,762,"2019",5,1,89,3,89,89,"Nanfang Dushibao",NA +106,119,767,"2019",6,0,100,3,0,50,"Nanfang Dushibao",NA +106,119,768,"2019",6,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,773,"2019",6,1,50,2,50,50,"Nanfang Dushibao",NA +106,119,774,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,775,"2019",6,0,3,2,97,97,"Nanfang Dushibao",NA +106,119,780,"2019",2,0,51,2,49,49,"Nanfang Dushibao",NA +106,119,781,"2019",4,0,92,4,8,NA,"Nanfang Dushibao",NA +106,119,782,"2019",6,1,67,2,67,67,"Nanfang Dushibao",NA +106,119,783,"2019",5,0,20,3,80,80,"Nanfang Dushibao",NA +106,119,786,"2019",6,1,94,2,94,68,"Nanfang Dushibao",NA +106,119,787,"2019",2,1,81,3,81,79,"Nanfang Dushibao",NA +106,119,788,"2019",5,1,22,2,22,35,"Nanfang Dushibao",NA +106,119,789,"2019",2,0,59,2,41,50,"Nanfang Dushibao",NA +106,119,796,"2019",3,0,6,3,94,94,"Nanfang Dushibao",NA +106,119,799,"2019",6,1,70,3,70,95,"Nanfang Dushibao",NA +106,119,804,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +106,119,806,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +106,119,808,"2019",3,0,100,3,0,100,"Nanfang Dushibao",NA +106,119,809,"2019",4,0,50,4,50,NA,"Nanfang Dushibao",NA +106,119,813,"2019",6,1,50,3,50,50,"Nanfang Dushibao",NA +106,119,817,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,819,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +106,119,820,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +106,119,821,"2019",5,1,16,2,16,16,"Nanfang Dushibao",NA +106,119,822,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,823,"2019",4,1,92,4,92,NA,"Nanfang Dushibao",NA +106,119,827,"2019",2,1,72,2,72,72,"Nanfang Dushibao",NA +106,119,830,"2019",5,0,8,3,92,2,"Nanfang Dushibao",NA +106,119,833,"2019",5,0,100,2,0,0,"Nanfang Dushibao",NA +106,119,837,"2019",3,0,12,3,88,88,"Nanfang Dushibao",NA +106,119,840,"2019",2,1,25,2,25,25,"Nanfang Dushibao",NA +106,119,841,"2019",3,0,0,2,100,50,"Nanfang Dushibao",NA +106,119,843,"2019",5,1,100,2,100,73,"Nanfang Dushibao",NA +106,119,845,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +106,119,846,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,848,"2019",3,0,89,3,11,7,"Nanfang Dushibao",NA +106,119,851,"2019",5,0,75,3,25,25,"Nanfang Dushibao",NA +106,119,854,"2019",3,0,92,3,8,8,"Nanfang Dushibao",NA +106,119,856,"2019",2,1,43,3,43,46,"Nanfang Dushibao",NA +106,119,858,"2019",5,1,23,3,23,23,"Nanfang Dushibao",NA +106,119,861,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,864,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,867,"2019",4,0,65,4,35,NA,"Nanfang Dushibao",NA +106,119,868,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,869,"2019",3,0,3,3,97,97,"Nanfang Dushibao",NA +106,119,871,"2019",6,1,75,2,75,56,"Nanfang Dushibao",NA +106,119,874,"2019",3,1,83,2,83,50,"Nanfang Dushibao",NA +106,119,880,"2019",3,1,80,2,80,72,"Nanfang Dushibao",NA +106,119,882,"2019",2,0,50,3,50,50,"Nanfang Dushibao",NA +106,119,884,"2019",2,0,75,3,25,25,"Nanfang Dushibao",NA +106,119,886,"2019",3,1,99,3,99,99,"Nanfang Dushibao",NA +106,119,888,"2019",3,0,81,2,19,20,"Nanfang Dushibao",NA +106,119,890,"2019",5,0,45,2,55,80,"Nanfang Dushibao",NA +106,119,897,"2019",2,0,99,3,1,0,"Nanfang Dushibao",NA +106,119,899,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,902,"2019",3,0,29,2,71,82,"Nanfang Dushibao",NA +106,119,904,"2019",5,1,97,3,97,93,"Nanfang Dushibao",NA +106,119,905,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,911,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,912,"2019",2,0,1,3,99,99,"Nanfang Dushibao",NA +106,119,913,"2019",2,1,74,3,74,77,"Nanfang Dushibao",NA +106,119,916,"2019",6,0,30,3,70,61,"Nanfang Dushibao",NA +106,119,917,"2019",6,0,20,2,80,80,"Nanfang Dushibao",NA +106,119,918,"2019",2,1,1,3,1,82,"Nanfang Dushibao",NA +106,119,924,"2019",2,0,0,3,100,100,"Nanfang Dushibao",NA +106,119,931,"2019",5,0,16,3,84,79,"Nanfang Dushibao",NA +106,119,934,"2019",5,1,28,3,28,81,"Nanfang Dushibao",NA +106,119,945,"2019",3,0,43,2,57,57,"Nanfang Dushibao",NA +106,119,951,"2019",5,0,72,3,28,28,"Nanfang Dushibao",NA +106,119,953,"2019",2,0,46,3,54,38,"Nanfang Dushibao",NA +106,119,955,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,957,"2019",3,1,91,2,91,91,"Nanfang Dushibao",NA +106,119,966,"2019",2,1,20,3,20,20,"Nanfang Dushibao",NA +106,119,967,"2019",2,1,100,2,100,99,"Nanfang Dushibao",NA +106,119,968,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,969,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,973,"2019",3,1,73,2,73,72,"Nanfang Dushibao",NA +106,119,976,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +106,119,981,"2019",5,0,2,3,98,98,"Nanfang Dushibao",NA +106,119,982,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,986,"2019",5,0,95,3,5,5,"Nanfang Dushibao",NA +106,119,991,"2019",6,0,45,3,55,71,"Nanfang Dushibao",NA +106,119,995,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,1000,"2019",5,1,71,2,71,51,"Nanfang Dushibao",NA +106,119,1003,"2019",3,1,70,2,70,60,"Nanfang Dushibao",NA +106,119,1012,"2019",5,1,70,2,70,64,"Nanfang Dushibao",NA +106,119,1016,"2019",5,0,51,2,49,39,"Nanfang Dushibao",NA +106,119,1021,"2019",3,0,74,3,26,18,"Nanfang Dushibao",NA +106,119,1031,"2019",3,0,92,2,8,50,"Nanfang Dushibao",NA +106,119,1033,"2019",6,1,51,2,51,86,"Nanfang Dushibao",NA +106,119,1035,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,1036,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +106,119,1041,"2019",3,1,91,2,91,50,"Nanfang Dushibao",NA +106,119,1047,"2019",3,0,86,3,14,15,"Nanfang Dushibao",NA +106,119,1048,"2019",6,1,100,2,100,51,"Nanfang Dushibao",NA +106,119,1049,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,1058,"2019",3,0,1,3,99,100,"Nanfang Dushibao",NA +106,119,1063,"2019",6,0,54,3,46,48,"Nanfang Dushibao",NA +106,119,1067,"2019",3,0,98,2,2,2,"Nanfang Dushibao",NA +106,119,1070,"2019",6,0,7,2,93,72,"Nanfang Dushibao",NA +106,119,1071,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,1075,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,1077,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,1078,"2019",6,0,25,3,75,70,"Nanfang Dushibao",NA +106,119,1079,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,1083,"2019",2,0,100,2,0,0,"Nanfang Dushibao",NA +106,119,1085,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +106,119,1088,"2019",5,0,50,3,50,50,"Nanfang Dushibao",NA +106,119,1095,"2019",6,0,64,3,36,42,"Nanfang Dushibao",NA +106,119,1096,"2019",4,1,96,4,96,NA,"Nanfang Dushibao",NA +106,119,1099,"2019",3,1,81,2,81,89,"Nanfang Dushibao",NA +106,119,1102,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +106,119,1109,"2019",6,0,61,2,39,71,"Nanfang Dushibao",NA +106,119,1113,"2019",5,0,84,3,16,16,"Nanfang Dushibao",NA +106,119,1118,"2019",5,1,89,3,89,80,"Nanfang Dushibao",NA +106,119,1121,"2019",4,1,90,4,90,NA,"Nanfang Dushibao",NA +106,119,1126,"2019",3,0,15,3,85,82,"Nanfang Dushibao",NA +106,119,1128,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,1130,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +106,119,1131,"2019",4,1,98,4,98,NA,"Nanfang Dushibao",NA +106,119,1143,"2019",2,0,0,3,100,96,"Nanfang Dushibao",NA +106,119,1144,"2019",5,1,97,2,97,97,"Nanfang Dushibao",NA +106,119,1145,"2019",2,1,80,2,80,80,"Nanfang Dushibao",NA +106,119,1147,"2019",2,0,64,2,36,40,"Nanfang Dushibao",NA +106,119,1148,"2019",6,1,92,3,92,92,"Nanfang Dushibao",NA +106,119,1151,"2019",5,1,99,3,99,100,"Nanfang Dushibao",NA +106,119,1154,"2019",2,0,76,2,24,46,"Nanfang Dushibao",NA +106,119,1155,"2019",6,0,83,3,17,17,"Nanfang Dushibao",NA +106,119,1160,"2019",6,0,83,2,17,13,"Nanfang Dushibao",NA +106,119,1165,"2019",6,1,80,2,80,87,"Nanfang Dushibao",NA +106,119,1167,"2019",3,1,76,3,76,84,"Nanfang Dushibao",NA +106,119,1168,"2019",5,1,34,3,34,67,"Nanfang Dushibao",NA +106,120,149,"2019",5,1,91,3,91,77,"Huanqiu",NA +106,120,150,"2019",6,1,81,2,81,94,"Huanqiu",NA +106,120,151,"2019",2,0,100,3,0,100,"Huanqiu",NA +106,120,152,"2019",4,0,0,5,100,NA,"Huanqiu",NA +106,120,154,"2019",5,0,4,2,96,91,"Huanqiu",NA +106,120,156,"2019",2,1,55,2,55,60,"Huanqiu",NA +106,120,158,"2019",3,0,0,3,100,91,"Huanqiu",NA +106,120,164,"2019",2,1,95,2,95,81,"Huanqiu",NA +106,120,165,"2019",3,0,100,3,0,49,"Huanqiu",NA +106,120,172,"2019",3,1,100,3,100,100,"Huanqiu",NA +106,120,173,"2019",6,0,0,2,100,100,"Huanqiu",NA +106,120,175,"2019",6,1,70,2,70,61,"Huanqiu",NA +106,120,177,"2019",4,0,51,5,49,NA,"Huanqiu",NA +106,120,178,"2019",3,1,100,3,100,100,"Huanqiu",NA +106,120,180,"2019",2,0,60,3,40,42,"Huanqiu",NA +106,120,181,"2019",2,0,13,2,87,18,"Huanqiu",NA +106,120,182,"2019",6,1,72,3,72,79,"Huanqiu",NA +106,120,184,"2019",5,0,0,2,100,100,"Huanqiu",NA +106,120,185,"2019",5,0,14,3,86,86,"Huanqiu",NA +106,120,189,"2019",6,1,100,3,100,100,"Huanqiu",NA +106,120,190,"2019",3,0,91,3,9,24,"Huanqiu",NA +106,120,197,"2019",6,0,50,2,50,50,"Huanqiu",NA +106,120,199,"2019",3,0,64,2,36,50,"Huanqiu",NA +106,120,201,"2019",6,0,77,2,23,82,"Huanqiu",NA +106,120,204,"2019",2,1,28,2,28,62,"Huanqiu",NA +106,120,209,"2019",2,1,91,3,91,91,"Huanqiu",NA +106,120,219,"2019",6,1,0,3,0,100,"Huanqiu",NA +106,120,221,"2019",6,1,100,2,100,100,"Huanqiu",NA +106,120,222,"2019",2,1,53,3,53,52,"Huanqiu",NA +106,120,223,"2019",3,0,79,3,21,21,"Huanqiu",NA +106,120,225,"2019",3,1,14,2,14,92,"Huanqiu",NA +106,120,228,"2019",6,0,78,2,22,22,"Huanqiu",NA +106,120,230,"2019",5,1,94,3,94,94,"Huanqiu",NA +106,120,231,"2019",3,0,0,2,100,50,"Huanqiu",NA +106,120,232,"2019",2,0,91,2,9,52,"Huanqiu",NA +106,120,234,"2019",5,0,3,3,97,93,"Huanqiu",NA +106,120,237,"2019",3,1,82,2,82,93,"Huanqiu",NA +106,120,238,"2019",6,1,50,2,50,50,"Huanqiu",NA +106,120,246,"2019",4,1,86,5,86,NA,"Huanqiu",NA +106,120,247,"2019",3,0,0,2,100,100,"Huanqiu",NA +106,120,251,"2019",4,0,55,5,45,NA,"Huanqiu",NA +106,120,252,"2019",6,0,94,3,6,46,"Huanqiu",NA +106,120,258,"2019",6,0,69,3,31,39,"Huanqiu",NA +106,120,261,"2019",2,0,76,2,24,77,"Huanqiu",NA +106,120,265,"2019",5,1,70,2,70,61,"Huanqiu",NA +106,120,266,"2019",2,1,50,3,50,61,"Huanqiu",NA +106,120,269,"2019",6,0,100,2,0,0,"Huanqiu",NA +106,120,272,"2019",3,1,86,2,86,64,"Huanqiu",NA +106,120,274,"2019",5,1,95,2,95,95,"Huanqiu",NA +106,120,276,"2019",3,0,93,3,7,27,"Huanqiu",NA +106,120,277,"2019",5,0,81,3,19,19,"Huanqiu",NA +106,120,278,"2019",5,1,15,2,15,50,"Huanqiu",NA +106,120,286,"2019",3,0,45,3,55,53,"Huanqiu",NA +106,120,287,"2019",2,1,6,2,6,94,"Huanqiu",NA +106,120,295,"2019",2,0,0,3,100,100,"Huanqiu",NA +106,120,298,"2019",5,0,91,3,9,9,"Huanqiu",NA +106,120,301,"2019",2,0,100,3,0,100,"Huanqiu",NA +106,120,302,"2019",3,0,51,2,49,49,"Huanqiu",NA +106,120,304,"2019",3,1,100,3,100,100,"Huanqiu",NA +106,120,306,"2019",2,1,50,3,50,50,"Huanqiu",NA +106,120,307,"2019",5,0,65,2,35,50,"Huanqiu",NA +106,120,308,"2019",2,0,87,2,13,50,"Huanqiu",NA +106,120,310,"2019",2,0,89,3,11,89,"Huanqiu",NA +106,120,315,"2019",5,1,100,3,100,100,"Huanqiu",NA +106,120,317,"2019",5,1,48,2,48,100,"Huanqiu",NA +106,120,318,"2019",2,0,83,3,17,17,"Huanqiu",NA +106,120,320,"2019",5,0,0,2,100,100,"Huanqiu",NA +106,120,324,"2019",6,0,88,2,12,80,"Huanqiu",NA +106,120,326,"2019",6,0,100,3,0,50,"Huanqiu",NA +106,120,327,"2019",3,1,84,3,84,90,"Huanqiu",NA +106,120,329,"2019",2,1,100,2,100,100,"Huanqiu",NA +106,120,331,"2019",5,1,95,2,95,95,"Huanqiu",NA +106,120,332,"2019",6,1,81,2,81,71,"Huanqiu",NA +106,120,333,"2019",2,1,100,3,100,100,"Huanqiu",NA +106,120,336,"2019",2,1,4,3,4,78,"Huanqiu",NA +106,120,342,"2019",2,0,48,2,52,51,"Huanqiu",NA +106,120,348,"2019",5,1,100,2,100,97,"Huanqiu",NA +106,120,349,"2019",4,1,70,5,70,NA,"Huanqiu",NA +106,120,353,"2019",4,0,0,5,100,NA,"Huanqiu",NA +106,120,357,"2019",6,1,18,3,18,74,"Huanqiu",NA +106,120,359,"2019",5,1,46,3,46,93,"Huanqiu",NA +106,120,363,"2019",2,1,50,2,50,50,"Huanqiu",NA +106,120,364,"2019",2,1,50,2,50,50,"Huanqiu",NA +106,120,366,"2019",6,1,100,3,100,100,"Huanqiu",NA +106,120,368,"2019",3,1,79,2,79,44,"Huanqiu",NA +106,120,369,"2019",4,1,78,5,78,NA,"Huanqiu",NA +106,120,370,"2019",3,0,100,2,0,50,"Huanqiu",NA +106,120,372,"2019",3,0,0,2,100,100,"Huanqiu",NA +106,120,373,"2019",3,0,0,2,100,100,"Huanqiu",NA +106,120,377,"2019",3,0,29,3,71,71,"Huanqiu",NA +106,120,378,"2019",6,0,43,3,57,43,"Huanqiu",NA +106,120,382,"2019",2,1,59,3,59,50,"Huanqiu",NA +106,120,383,"2019",5,0,100,3,0,100,"Huanqiu",NA +106,120,396,"2019",6,0,56,3,44,100,"Huanqiu",NA +106,120,401,"2019",6,1,51,2,51,68,"Huanqiu",NA +106,120,402,"2019",2,1,50,2,50,50,"Huanqiu",NA +106,120,404,"2019",2,1,10,2,10,50,"Huanqiu",NA +106,120,405,"2019",5,0,48,3,52,45,"Huanqiu",NA +106,120,406,"2019",3,0,31,3,69,24,"Huanqiu",NA +106,120,410,"2019",2,0,100,3,0,52,"Huanqiu",NA +106,120,411,"2019",5,0,83,2,17,36,"Huanqiu",NA +106,120,414,"2019",2,1,69,2,69,94,"Huanqiu",NA +106,120,415,"2019",6,1,50,2,50,50,"Huanqiu",NA +106,120,417,"2019",3,1,77,2,77,77,"Huanqiu",NA +106,120,418,"2019",2,1,82,3,82,82,"Huanqiu",NA +106,120,422,"2019",2,1,90,2,90,50,"Huanqiu",NA +106,120,423,"2019",2,1,70,3,70,70,"Huanqiu",NA +106,120,426,"2019",3,0,5,3,95,95,"Huanqiu",NA +106,120,427,"2019",3,1,100,3,100,100,"Huanqiu",NA +106,120,434,"2019",2,1,89,2,89,89,"Huanqiu",NA +106,120,435,"2019",4,0,80,5,20,NA,"Huanqiu",NA +106,120,438,"2019",4,0,100,5,0,NA,"Huanqiu",NA +106,120,439,"2019",2,1,100,3,100,91,"Huanqiu",NA +106,120,441,"2019",5,0,7,2,93,50,"Huanqiu",NA +106,120,442,"2019",2,0,72,2,28,73,"Huanqiu",NA +106,120,445,"2019",4,0,99,5,1,NA,"Huanqiu",NA +106,120,451,"2019",4,0,0,5,100,NA,"Huanqiu",NA +106,120,453,"2019",6,1,100,3,100,100,"Huanqiu",NA +106,120,454,"2019",3,1,95,3,95,95,"Huanqiu",NA +106,120,456,"2019",3,1,0,3,0,100,"Huanqiu",NA +106,120,458,"2019",4,1,91,5,91,NA,"Huanqiu",NA +106,120,464,"2019",2,1,84,3,84,84,"Huanqiu",NA +106,120,465,"2019",6,1,59,2,59,55,"Huanqiu",NA +106,120,467,"2019",2,0,100,3,0,51,"Huanqiu",NA +106,120,474,"2019",2,0,79,3,21,21,"Huanqiu",NA +106,120,476,"2019",2,0,63,3,37,42,"Huanqiu",NA +106,120,480,"2019",5,1,52,3,52,64,"Huanqiu",NA +106,120,481,"2019",4,1,100,5,100,NA,"Huanqiu",NA +106,120,484,"2019",6,0,18,2,82,71,"Huanqiu",NA +106,120,487,"2019",6,1,81,3,81,81,"Huanqiu",NA +106,120,489,"2019",2,1,70,2,70,50,"Huanqiu",NA +106,120,490,"2019",3,1,78,3,78,78,"Huanqiu",NA +106,120,495,"2019",6,0,68,3,32,79,"Huanqiu",NA +106,120,497,"2019",3,0,71,2,29,37,"Huanqiu",NA +106,120,498,"2019",2,0,78,3,22,97,"Huanqiu",NA +106,120,500,"2019",4,1,100,5,100,NA,"Huanqiu",NA +106,120,502,"2019",6,1,90,2,90,90,"Huanqiu",NA +106,120,506,"2019",3,0,0,2,100,50,"Huanqiu",NA +106,120,507,"2019",3,1,98,3,98,98,"Huanqiu",NA +106,120,508,"2019",3,0,62,3,38,70,"Huanqiu",NA +106,120,511,"2019",5,1,67,2,67,28,"Huanqiu",NA +106,120,512,"2019",6,0,50,2,50,50,"Huanqiu",NA +106,120,513,"2019",2,1,71,2,71,63,"Huanqiu",NA +106,120,514,"2019",2,1,67,3,67,67,"Huanqiu",NA +106,120,515,"2019",3,1,92,2,92,89,"Huanqiu",NA +106,120,516,"2019",2,1,77,2,77,50,"Huanqiu",NA +106,120,518,"2019",4,1,51,5,51,NA,"Huanqiu",NA +106,120,519,"2019",3,0,50,3,50,50,"Huanqiu",NA +106,120,526,"2019",4,0,68,5,32,NA,"Huanqiu",NA +106,120,529,"2019",5,0,53,2,47,39,"Huanqiu",NA +106,120,531,"2019",2,0,48,3,52,66,"Huanqiu",NA +106,120,532,"2019",2,1,76,3,76,50,"Huanqiu",NA +106,120,537,"2019",5,1,71,2,71,71,"Huanqiu",NA +106,120,544,"2019",3,0,63,3,37,29,"Huanqiu",NA +106,120,551,"2019",6,1,72,3,72,72,"Huanqiu",NA +106,120,552,"2019",5,0,25,3,75,75,"Huanqiu",NA +106,120,554,"2019",6,1,38,2,38,41,"Huanqiu",NA +106,120,555,"2019",2,1,99,3,99,21,"Huanqiu",NA +106,120,558,"2019",6,1,77,3,77,77,"Huanqiu",NA +106,120,559,"2019",5,1,59,3,59,74,"Huanqiu",NA +106,120,564,"2019",4,0,20,5,80,NA,"Huanqiu",NA +106,120,567,"2019",2,0,97,3,3,34,"Huanqiu",NA +106,120,568,"2019",4,1,44,5,44,NA,"Huanqiu",NA +106,120,572,"2019",5,0,50,3,50,30,"Huanqiu",NA +106,120,574,"2019",2,0,30,2,70,70,"Huanqiu",NA +106,120,583,"2019",3,1,45,2,45,45,"Huanqiu",NA +106,120,585,"2019",2,0,66,2,34,34,"Huanqiu",NA +106,120,586,"2019",6,0,12,3,88,88,"Huanqiu",NA +106,120,589,"2019",6,1,83,2,83,83,"Huanqiu",NA +106,120,591,"2019",3,1,43,3,43,64,"Huanqiu",NA +106,120,595,"2019",5,1,0,2,0,0,"Huanqiu",NA +106,120,597,"2019",5,0,61,3,39,32,"Huanqiu",NA +106,120,598,"2019",6,0,59,2,41,36,"Huanqiu",NA +106,120,599,"2019",5,1,75,2,75,75,"Huanqiu",NA +106,120,600,"2019",3,1,90,2,90,76,"Huanqiu",NA +106,120,601,"2019",5,0,79,3,21,31,"Huanqiu",NA +106,120,611,"2019",3,1,50,3,50,50,"Huanqiu",NA +106,120,613,"2019",6,1,35,2,35,45,"Huanqiu",NA +106,120,615,"2019",4,1,82,5,82,NA,"Huanqiu",NA +106,120,618,"2019",2,0,33,2,67,67,"Huanqiu",NA +106,120,620,"2019",6,1,0,2,0,0,"Huanqiu",NA +106,120,625,"2019",4,0,50,5,50,NA,"Huanqiu",NA +106,120,628,"2019",2,0,50,3,50,50,"Huanqiu",NA +106,120,630,"2019",6,1,50,2,50,50,"Huanqiu",NA +106,120,636,"2019",5,0,41,3,59,0,"Huanqiu",NA +106,120,637,"2019",5,1,68,2,68,19,"Huanqiu",NA +106,120,639,"2019",2,1,50,2,50,50,"Huanqiu",NA +106,120,640,"2019",2,0,76,3,24,91,"Huanqiu",NA +106,120,641,"2019",2,1,84,3,84,77,"Huanqiu",NA +106,120,643,"2019",3,1,50,2,50,50,"Huanqiu",NA +106,120,645,"2019",3,0,18,3,82,82,"Huanqiu",NA +106,120,648,"2019",6,0,68,2,32,32,"Huanqiu",NA +106,120,649,"2019",2,0,0,2,100,100,"Huanqiu",NA +106,120,652,"2019",3,1,91,3,91,91,"Huanqiu",NA +106,120,654,"2019",2,1,100,3,100,100,"Huanqiu",NA +106,120,663,"2019",5,0,0,2,100,50,"Huanqiu",NA +106,120,664,"2019",6,0,23,3,77,77,"Huanqiu",NA +106,120,665,"2019",6,0,22,3,78,78,"Huanqiu",NA +106,120,667,"2019",6,1,100,3,100,100,"Huanqiu",NA +106,120,672,"2019",3,0,100,2,0,50,"Huanqiu",NA +106,120,673,"2019",4,0,100,5,0,NA,"Huanqiu",NA +106,120,674,"2019",3,0,50,3,50,50,"Huanqiu",NA +106,120,676,"2019",2,0,50,2,50,50,"Huanqiu",NA +106,120,678,"2019",4,1,85,5,85,NA,"Huanqiu",NA +106,120,681,"2019",6,0,71,2,29,24,"Huanqiu",NA +106,120,682,"2019",4,0,50,5,50,NA,"Huanqiu",NA +106,120,684,"2019",5,0,100,2,0,100,"Huanqiu",NA +106,120,685,"2019",2,0,100,2,0,0,"Huanqiu",NA +106,120,686,"2019",6,0,100,2,0,0,"Huanqiu",NA +106,120,689,"2019",2,0,100,3,0,50,"Huanqiu",NA +106,120,690,"2019",2,1,0,3,0,0,"Huanqiu",NA +106,120,693,"2019",2,1,0,2,0,50,"Huanqiu",NA +106,120,695,"2019",6,1,100,3,100,100,"Huanqiu",NA +106,120,700,"2019",2,0,100,3,0,87,"Huanqiu",NA +106,120,703,"2019",6,0,0,3,100,78,"Huanqiu",NA +106,120,708,"2019",5,0,50,2,50,50,"Huanqiu",NA +106,120,709,"2019",5,1,0,2,0,50,"Huanqiu",NA +106,120,716,"2019",2,0,58,3,42,50,"Huanqiu",NA +106,120,717,"2019",5,0,70,3,30,40,"Huanqiu",NA +106,120,720,"2019",3,0,88,2,12,12,"Huanqiu",NA +106,120,721,"2019",5,0,100,2,0,0,"Huanqiu",NA +106,120,728,"2019",4,0,2,5,98,NA,"Huanqiu",NA +106,120,732,"2019",4,0,50,5,50,NA,"Huanqiu",NA +106,120,736,"2019",5,1,98,3,98,98,"Huanqiu",NA +106,120,741,"2019",4,0,12,5,88,NA,"Huanqiu",NA +106,120,742,"2019",2,0,100,2,0,100,"Huanqiu",NA +106,120,743,"2019",3,0,100,2,0,0,"Huanqiu",NA +106,120,745,"2019",3,1,80,3,80,80,"Huanqiu",NA +106,120,748,"2019",2,1,100,2,100,50,"Huanqiu",NA +106,120,761,"2019",6,1,81,2,81,25,"Huanqiu",NA +106,120,762,"2019",5,1,89,2,89,89,"Huanqiu",NA +106,120,763,"2019",3,1,50,3,50,50,"Huanqiu",NA +106,120,765,"2019",3,1,95,2,95,95,"Huanqiu",NA +106,120,771,"2019",6,0,100,3,0,100,"Huanqiu",NA +106,120,772,"2019",4,1,100,5,100,NA,"Huanqiu",NA +106,120,773,"2019",6,1,50,3,50,50,"Huanqiu",NA +106,120,776,"2019",6,1,91,3,91,91,"Huanqiu",NA +106,120,779,"2019",4,1,100,5,100,NA,"Huanqiu",NA +106,120,780,"2019",2,0,60,3,40,49,"Huanqiu",NA +106,120,786,"2019",6,1,84,3,84,94,"Huanqiu",NA +106,120,787,"2019",2,1,79,2,79,79,"Huanqiu",NA +106,120,792,"2019",4,1,92,5,92,NA,"Huanqiu",NA +106,120,797,"2019",5,0,100,3,0,50,"Huanqiu",NA +106,120,798,"2019",6,0,100,2,0,0,"Huanqiu",NA +106,120,799,"2019",6,1,95,2,95,95,"Huanqiu",NA +106,120,800,"2019",3,1,100,3,100,100,"Huanqiu",NA +106,120,804,"2019",6,0,50,2,50,50,"Huanqiu",NA +106,120,808,"2019",3,0,0,2,100,50,"Huanqiu",NA +106,120,811,"2019",2,1,92,3,92,100,"Huanqiu",NA +106,120,812,"2019",5,1,66,2,66,66,"Huanqiu",NA +106,120,813,"2019",6,1,50,2,50,50,"Huanqiu",NA +106,120,814,"2019",2,0,19,2,81,65,"Huanqiu",NA +106,120,816,"2019",4,1,1,5,1,NA,"Huanqiu",NA +106,120,818,"2019",6,1,50,2,50,50,"Huanqiu",NA +106,120,819,"2019",6,0,0,3,100,100,"Huanqiu",NA +106,120,825,"2019",3,1,100,2,100,100,"Huanqiu",NA +106,120,826,"2019",3,1,100,3,100,100,"Huanqiu",NA +106,120,831,"2019",2,0,100,3,0,100,"Huanqiu",NA +106,120,833,"2019",5,0,100,3,0,0,"Huanqiu",NA +106,120,834,"2019",6,1,0,2,0,100,"Huanqiu",NA +106,120,835,"2019",5,1,88,3,88,88,"Huanqiu",NA +106,120,837,"2019",3,0,12,2,88,74,"Huanqiu",NA +106,120,839,"2019",2,0,81,2,19,58,"Huanqiu",NA +106,120,840,"2019",2,1,25,3,25,25,"Huanqiu",NA +106,120,845,"2019",2,1,50,3,50,50,"Huanqiu",NA +106,120,847,"2019",2,0,91,2,9,50,"Huanqiu",NA +106,120,851,"2019",5,0,75,2,25,25,"Huanqiu",NA +106,120,854,"2019",3,0,92,2,8,50,"Huanqiu",NA +106,120,856,"2019",2,1,46,2,46,50,"Huanqiu",NA +106,120,859,"2019",4,0,95,5,5,NA,"Huanqiu",NA +106,120,860,"2019",2,1,66,2,66,66,"Huanqiu",NA +106,120,862,"2019",2,1,50,2,50,60,"Huanqiu",NA +106,120,864,"2019",2,0,62,3,38,50,"Huanqiu",NA +106,120,865,"2019",4,1,0,5,0,NA,"Huanqiu",NA +106,120,869,"2019",3,0,3,2,97,97,"Huanqiu",NA +106,120,870,"2019",5,0,50,2,50,50,"Huanqiu",NA +106,120,872,"2019",2,1,42,2,42,42,"Huanqiu",NA +106,120,876,"2019",6,0,100,2,0,50,"Huanqiu",NA +106,120,877,"2019",3,1,23,2,23,23,"Huanqiu",NA +106,120,883,"2019",6,1,89,2,89,78,"Huanqiu",NA +106,120,889,"2019",6,1,0,3,0,100,"Huanqiu",NA +106,120,890,"2019",5,0,71,3,29,55,"Huanqiu",NA +106,120,894,"2019",6,1,86,3,86,86,"Huanqiu",NA +106,120,901,"2019",5,1,61,3,61,61,"Huanqiu",NA +106,120,908,"2019",6,0,1,2,99,71,"Huanqiu",NA +106,120,909,"2019",2,1,86,2,86,76,"Huanqiu",NA +106,120,910,"2019",5,0,51,2,49,68,"Huanqiu",NA +106,120,914,"2019",6,1,100,2,100,98,"Huanqiu",NA +106,120,916,"2019",6,0,39,2,61,50,"Huanqiu",NA +106,120,918,"2019",2,1,82,2,82,0,"Huanqiu",NA +106,120,920,"2019",2,1,80,2,80,64,"Huanqiu",NA +106,120,921,"2019",2,1,50,2,50,50,"Huanqiu",NA +106,120,923,"2019",3,0,91,2,9,9,"Huanqiu",NA +106,120,927,"2019",6,1,83,2,83,50,"Huanqiu",NA +106,120,929,"2019",2,0,69,3,31,44,"Huanqiu",NA +106,120,935,"2019",2,0,80,2,20,22,"Huanqiu",NA +106,120,936,"2019",2,1,100,3,100,100,"Huanqiu",NA +106,120,939,"2019",5,1,71,3,71,71,"Huanqiu",NA +106,120,940,"2019",3,0,52,3,48,50,"Huanqiu",NA +106,120,944,"2019",3,0,0,3,100,100,"Huanqiu",NA +106,120,947,"2019",4,0,61,5,39,NA,"Huanqiu",NA +106,120,952,"2019",3,0,0,3,100,100,"Huanqiu",NA +106,120,954,"2019",5,1,100,2,100,100,"Huanqiu",NA +106,120,955,"2019",5,1,0,3,0,100,"Huanqiu",NA +106,120,959,"2019",3,1,0,3,0,0,"Huanqiu",NA +106,120,962,"2019",2,1,100,3,100,100,"Huanqiu",NA +106,120,963,"2019",3,1,82,3,82,60,"Huanqiu",NA +106,120,965,"2019",5,0,1,3,99,8,"Huanqiu",NA +106,120,966,"2019",2,1,20,2,20,21,"Huanqiu",NA +106,120,967,"2019",2,1,100,3,100,100,"Huanqiu",NA +106,120,972,"2019",5,1,91,3,91,88,"Huanqiu",NA +106,120,978,"2019",6,0,0,3,100,100,"Huanqiu",NA +106,120,980,"2019",5,0,23,2,77,77,"Huanqiu",NA +106,120,983,"2019",5,0,11,2,89,89,"Huanqiu",NA +106,120,984,"2019",5,1,80,3,80,71,"Huanqiu",NA +106,120,985,"2019",4,0,51,5,49,NA,"Huanqiu",NA +106,120,986,"2019",5,0,95,2,5,6,"Huanqiu",NA +106,120,991,"2019",6,0,29,2,71,44,"Huanqiu",NA +106,120,993,"2019",4,0,51,5,49,NA,"Huanqiu",NA +106,120,995,"2019",2,1,100,3,100,100,"Huanqiu",NA +106,120,997,"2019",2,1,100,3,100,100,"Huanqiu",NA +106,120,998,"2019",3,1,97,3,97,97,"Huanqiu",NA +106,120,1001,"2019",5,1,53,2,53,95,"Huanqiu",NA +106,120,1006,"2019",4,0,14,5,86,NA,"Huanqiu",NA +106,120,1008,"2019",2,0,65,2,35,63,"Huanqiu",NA +106,120,1010,"2019",3,1,71,3,71,16,"Huanqiu",NA +106,120,1015,"2019",3,1,98,2,98,98,"Huanqiu",NA +106,120,1021,"2019",3,0,82,2,18,14,"Huanqiu",NA +106,120,1023,"2019",3,0,93,3,7,89,"Huanqiu",NA +106,120,1024,"2019",4,0,5,5,95,NA,"Huanqiu",NA +106,120,1026,"2019",2,0,50,2,50,50,"Huanqiu",NA +106,120,1028,"2019",3,1,50,3,50,50,"Huanqiu",NA +106,120,1029,"2019",3,0,0,3,100,100,"Huanqiu",NA +106,120,1030,"2019",5,0,2,3,98,88,"Huanqiu",NA +106,120,1032,"2019",4,1,71,5,71,NA,"Huanqiu",NA +106,120,1033,"2019",6,1,51,3,51,51,"Huanqiu",NA +106,120,1037,"2019",6,0,50,2,50,48,"Huanqiu",NA +106,120,1038,"2019",3,0,100,3,0,50,"Huanqiu",NA +106,120,1039,"2019",3,1,92,2,92,81,"Huanqiu",NA +106,120,1040,"2019",2,0,83,3,17,22,"Huanqiu",NA +106,120,1042,"2019",3,1,2,3,2,50,"Huanqiu",NA +106,120,1046,"2019",5,0,36,2,64,64,"Huanqiu",NA +106,120,1050,"2019",5,1,66,3,66,66,"Huanqiu",NA +106,120,1052,"2019",2,1,18,2,18,90,"Huanqiu",NA +106,120,1056,"2019",6,1,100,2,100,100,"Huanqiu",NA +106,120,1059,"2019",2,1,64,2,64,64,"Huanqiu",NA +106,120,1060,"2019",2,1,100,3,100,100,"Huanqiu",NA +106,120,1063,"2019",6,0,52,2,48,49,"Huanqiu",NA +106,120,1065,"2019",5,1,100,3,100,100,"Huanqiu",NA +106,120,1072,"2019",4,0,98,5,2,NA,"Huanqiu",NA +106,120,1076,"2019",3,1,100,3,100,100,"Huanqiu",NA +106,120,1078,"2019",6,0,30,2,70,70,"Huanqiu",NA +106,120,1081,"2019",6,0,81,2,19,50,"Huanqiu",NA +106,120,1084,"2019",2,0,67,2,33,67,"Huanqiu",NA +106,120,1086,"2019",5,1,79,2,79,79,"Huanqiu",NA +106,120,1087,"2019",6,1,91,2,91,81,"Huanqiu",NA +106,120,1089,"2019",6,1,81,3,81,81,"Huanqiu",NA +106,120,1090,"2019",5,1,82,3,82,82,"Huanqiu",NA +106,120,1092,"2019",4,0,100,5,0,NA,"Huanqiu",NA +106,120,1093,"2019",5,0,19,3,81,79,"Huanqiu",NA +106,120,1095,"2019",6,0,58,2,42,47,"Huanqiu",NA +106,120,1100,"2019",4,1,12,5,12,NA,"Huanqiu",NA +106,120,1101,"2019",3,1,69,2,69,61,"Huanqiu",NA +106,120,1102,"2019",5,0,100,2,0,50,"Huanqiu",NA +106,120,1104,"2019",2,1,9,2,9,16,"Huanqiu",NA +106,120,1108,"2019",6,0,80,2,20,15,"Huanqiu",NA +106,120,1109,"2019",6,0,61,3,39,39,"Huanqiu",NA +106,120,1111,"2019",3,0,1,3,99,100,"Huanqiu",NA +106,120,1117,"2019",6,0,0,3,100,100,"Huanqiu",NA +106,120,1119,"2019",4,0,78,5,22,NA,"Huanqiu",NA +106,120,1122,"2019",5,1,92,2,92,83,"Huanqiu",NA +106,120,1123,"2019",3,0,0,3,100,99,"Huanqiu",NA +106,120,1125,"2019",3,1,77,3,77,82,"Huanqiu",NA +106,120,1133,"2019",6,0,77,2,23,23,"Huanqiu",NA +106,120,1136,"2019",4,1,81,5,81,NA,"Huanqiu",NA +106,120,1139,"2019",3,1,100,2,100,100,"Huanqiu",NA +106,120,1142,"2019",5,0,0,3,100,100,"Huanqiu",NA +106,120,1144,"2019",5,1,97,3,97,97,"Huanqiu",NA +106,120,1145,"2019",2,1,80,3,80,80,"Huanqiu",NA +106,120,1146,"2019",2,0,16,2,84,84,"Huanqiu",NA +106,120,1147,"2019",2,0,66,3,34,36,"Huanqiu",NA +106,120,1157,"2019",2,1,84,3,84,84,"Huanqiu",NA +106,120,1159,"2019",4,0,50,5,50,NA,"Huanqiu",NA +106,120,1160,"2019",6,0,79,3,21,17,"Huanqiu",NA +106,120,1162,"2019",2,0,70,3,30,25,"Huanqiu",NA +106,120,1164,"2019",5,0,78,3,22,18,"Huanqiu",NA +106,120,1165,"2019",6,1,76,3,76,80,"Huanqiu",NA +106,120,1168,"2019",5,1,67,2,67,19,"Huanqiu",NA +107,NA,2,"2017",4,0,NA,1,NA,NA,NA,NA +107,NA,3,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,3,"2017",1,0,NA,4,NA,NA,NA,NA +107,NA,3,"2017",1,0,NA,3,NA,NA,NA,NA +107,NA,3,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,4,"2017",5,1,NA,1,NA,NA,NA,NA +107,NA,5,"2017",5,0,NA,1,NA,NA,NA,NA +107,NA,6,"2017",3,0,0,1,100,NA,NA,NA +107,NA,7,"2017",6,1,50,1,50,NA,NA,NA +107,NA,8,"2017",1,1,99,2,99,99,NA,NA +107,NA,8,"2017",1,1,99,4,99,99,NA,NA +107,NA,8,"2017",1,1,99,1,99,NA,NA,NA +107,NA,8,"2017",1,1,99,3,99,99,NA,NA +107,NA,9,"2017",2,0,99,1,1,NA,NA,NA +107,NA,10,"2017",6,0,30,1,70,NA,NA,NA +107,NA,11,"2017",4,1,50,1,50,NA,NA,NA +107,NA,12,"2017",1,1,1,3,1,1,NA,NA +107,NA,12,"2017",1,1,99,4,99,1,NA,NA +107,NA,12,"2017",1,1,1,2,1,99,NA,NA +107,NA,12,"2017",1,1,99,1,99,NA,NA,NA +107,NA,13,"2017",4,1,90,1,90,NA,NA,NA +107,NA,14,"2017",2,1,1,1,1,NA,NA,NA +107,NA,15,"2017",5,0,99,1,1,NA,NA,NA +107,NA,16,"2017",5,1,99,1,99,NA,NA,NA +107,NA,17,"2017",5,1,99,1,99,NA,NA,NA +107,NA,18,"2017",2,0,99,1,1,NA,NA,NA +107,NA,19,"2017",2,1,99,1,99,NA,NA,NA +107,NA,20,"2017",6,1,1,1,1,NA,NA,NA +107,NA,21,"2017",6,0,50,1,50,NA,NA,NA +107,NA,22,"2017",4,0,10,1,90,NA,NA,NA +107,NA,23,"2017",5,1,99,1,99,NA,NA,NA +107,NA,24,"2017",2,0,90,1,10,NA,NA,NA +107,NA,25,"2017",3,0,99,1,1,NA,NA,NA +107,NA,26,"2017",4,1,30,1,30,NA,NA,NA +107,NA,27,"2017",5,1,80,1,80,NA,NA,NA +107,NA,28,"2017",4,1,99,1,99,NA,NA,NA +107,NA,29,"2017",5,0,NA,1,NA,NA,NA,NA +107,NA,30,"2017",6,NA,NA,1,NA,NA,NA,NA +107,NA,31,"2017",3,NA,NA,1,NA,NA,NA,NA +107,NA,32,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,32,"2017",1,0,NA,3,NA,NA,NA,NA +107,NA,32,"2017",1,0,NA,4,NA,NA,NA,NA +107,NA,32,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,33,"2017",1,1,90,1,90,NA,NA,NA +107,NA,33,"2017",1,1,90,3,90,90,NA,NA +107,NA,33,"2017",1,1,90,2,90,90,NA,NA +107,NA,33,"2017",1,1,90,4,90,90,NA,NA +107,NA,34,"2017",2,1,99,1,99,NA,NA,NA +107,NA,35,"2017",5,0,1,1,99,NA,NA,NA +107,NA,36,"2017",1,1,1,3,1,1,NA,NA +107,NA,36,"2017",1,1,60,4,60,1,NA,NA +107,NA,36,"2017",1,1,1,2,1,1,NA,NA +107,NA,36,"2017",1,1,1,1,1,NA,NA,NA +107,NA,37,"2017",4,0,50,1,50,NA,NA,NA +107,NA,38,"2017",4,0,99,1,1,NA,NA,NA +107,NA,39,"2017",6,1,30,1,30,NA,NA,NA +107,NA,40,"2017",2,1,2,1,2,NA,NA,NA +107,NA,41,"2017",1,1,22,4,22,22,NA,NA +107,NA,41,"2017",1,1,23,2,23,22,NA,NA +107,NA,41,"2017",1,1,22,1,22,NA,NA,NA +107,NA,41,"2017",1,1,22,3,22,23,NA,NA +107,NA,42,"2017",4,1,80,1,80,NA,NA,NA +107,NA,43,"2017",6,0,NA,1,NA,NA,NA,NA +107,NA,44,"2017",4,0,1,1,99,NA,NA,NA +107,NA,45,"2017",5,0,44,1,56,NA,NA,NA +107,NA,46,"2017",4,1,99,1,99,NA,NA,NA +107,NA,47,"2017",4,0,99,1,1,NA,NA,NA +107,NA,48,"2017",5,1,10,1,10,NA,NA,NA +107,NA,49,"2017",5,0,32,1,68,NA,NA,NA +107,NA,50,"2017",4,0,20,1,80,NA,NA,NA +107,NA,51,"2017",4,1,50,1,50,NA,NA,NA +107,NA,52,"2017",3,0,20,1,80,NA,NA,NA +107,NA,53,"2017",4,0,10,1,90,NA,NA,NA +107,NA,54,"2017",6,0,50,1,50,NA,NA,NA +107,NA,55,"2017",6,0,50,1,50,NA,NA,NA +107,NA,56,"2017",3,0,50,1,50,NA,NA,NA +107,NA,57,"2017",4,1,60,1,60,NA,NA,NA +107,NA,58,"2017",4,0,50,1,50,NA,NA,NA +107,NA,59,"2017",4,0,90,1,10,NA,NA,NA +107,NA,60,"2017",4,0,99,1,1,NA,NA,NA +107,NA,61,"2017",5,0,1,1,99,NA,NA,NA +107,NA,62,"2017",1,0,20,4,80,50,NA,NA +107,NA,62,"2017",1,0,50,1,50,NA,NA,NA +107,NA,62,"2017",1,0,50,3,50,50,NA,NA +107,NA,62,"2017",1,0,50,2,50,50,NA,NA +107,NA,63,"2017",4,0,1,1,99,NA,NA,NA +107,NA,64,"2017",5,1,1,1,1,NA,NA,NA +107,NA,65,"2017",5,0,95,1,5,NA,NA,NA +107,NA,66,"2017",1,1,60,3,60,60,NA,NA +107,NA,66,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,66,"2017",1,1,7,4,7,60,NA,NA +107,NA,66,"2017",1,1,60,2,60,NA,NA,NA +107,NA,67,"2017",2,1,99,1,99,NA,NA,NA +107,NA,68,"2017",4,1,1,1,1,NA,NA,NA +107,NA,69,"2017",6,1,99,1,99,NA,NA,NA +107,NA,70,"2017",6,1,90,1,90,NA,NA,NA +107,NA,71,"2017",3,1,50,1,50,NA,NA,NA +107,NA,72,"2017",1,1,1,1,1,NA,NA,NA +107,NA,72,"2017",1,1,99,4,99,99,NA,NA +107,NA,72,"2017",1,1,99,3,99,1,NA,NA +107,NA,72,"2017",1,1,1,2,1,1,NA,NA +107,NA,1169,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1170,"2017",1,0,100,3,0,0,NA,NA +107,NA,1170,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1170,"2017",1,0,100,2,0,1,NA,NA +107,NA,1170,"2017",1,0,100,4,0,0,NA,NA +107,NA,1171,"2017",2,1,0,1,0,NA,NA,NA +107,NA,1172,"2017",5,0,100,1,0,NA,NA,NA +107,NA,1173,"2017",1,0,50,4,50,50,NA,NA +107,NA,1173,"2017",1,0,90,1,10,NA,NA,NA +107,NA,1173,"2017",1,0,50,3,50,50,NA,NA +107,NA,1173,"2017",1,0,50,2,50,10,NA,NA +107,NA,1174,"2017",3,1,0,1,0,NA,NA,NA +107,NA,1175,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1176,"2017",4,0,100,1,0,NA,NA,NA +107,NA,1177,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1178,"2017",4,1,40,1,40,NA,NA,NA +107,NA,1179,"2017",6,1,20,1,20,NA,NA,NA +107,NA,1180,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1181,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1182,"2017",5,1,20,1,20,NA,NA,NA +107,NA,1183,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1184,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1184,"2017",1,1,99,4,99,99,NA,NA +107,NA,1184,"2017",1,1,99,2,99,99,NA,NA +107,NA,1184,"2017",1,1,99,3,99,99,NA,NA +107,NA,1185,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1186,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1187,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1188,"2017",1,1,100,4,100,95,NA,NA +107,NA,1188,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1188,"2017",1,1,75,2,75,50,NA,NA +107,NA,1188,"2017",1,1,95,3,95,75,NA,NA +107,NA,1189,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1190,"2017",6,0,30,1,70,NA,NA,NA +107,NA,1191,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1192,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1193,"2017",6,1,30,1,30,NA,NA,NA +107,NA,1194,"2017",4,0,80,1,20,NA,NA,NA +107,NA,1195,"2017",3,1,30,1,30,NA,NA,NA +107,NA,1196,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1197,"2017",5,1,15,1,15,NA,NA,NA +107,NA,1198,"2017",2,1,20,1,20,NA,NA,NA +107,NA,1199,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1200,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1200,"2017",1,0,99,3,1,1,NA,NA +107,NA,1200,"2017",1,0,99,2,1,50,NA,NA +107,NA,1200,"2017",1,0,99,4,1,1,NA,NA +107,NA,1201,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1202,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1203,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1204,"2017",1,0,1,4,99,30,NA,NA +107,NA,1204,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1204,"2017",1,0,75,2,25,50,NA,NA +107,NA,1204,"2017",1,0,70,3,30,25,NA,NA +107,NA,1205,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1206,"2017",3,1,40,1,40,NA,NA,NA +107,NA,1207,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1208,"2017",4,0,100,1,0,NA,NA,NA +107,NA,1209,"2017",5,0,100,1,0,NA,NA,NA +107,NA,1210,"2017",5,0,40,1,60,NA,NA,NA +107,NA,1211,"2017",3,1,40,1,40,NA,NA,NA +107,NA,1212,"2017",3,0,30,1,70,NA,NA,NA +107,NA,1213,"2017",3,1,40,1,40,NA,NA,NA +107,NA,1214,"2017",4,0,100,1,0,NA,NA,NA +107,NA,1215,"2017",5,0,20,1,80,NA,NA,NA +107,NA,1216,"2017",4,0,40,1,60,NA,NA,NA +107,NA,1217,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1218,"2017",1,1,20,1,20,NA,NA,NA +107,NA,1218,"2017",1,1,15,4,15,20,NA,NA +107,NA,1218,"2017",1,1,20,3,20,20,NA,NA +107,NA,1218,"2017",1,1,20,2,20,20,NA,NA +107,NA,1219,"2017",5,1,11,1,11,NA,NA,NA +107,NA,1220,"2017",4,0,20,1,80,NA,NA,NA +107,NA,1221,"2017",6,1,20,1,20,NA,NA,NA +107,NA,1222,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1223,"2017",6,1,14,1,14,NA,NA,NA +107,NA,1224,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1225,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1226,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1227,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1228,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1229,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1230,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1231,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1232,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1233,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1234,"2017",1,1,50,4,50,20,NA,NA +107,NA,1234,"2017",1,1,10,2,10,NA,NA,NA +107,NA,1234,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1234,"2017",1,1,20,3,20,10,NA,NA +107,NA,1235,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1236,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1237,"2017",5,0,60,1,40,NA,NA,NA +107,NA,1238,"2017",2,1,90,1,90,NA,NA,NA +107,NA,1239,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1240,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1241,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1242,"2017",3,0,1,1,99,NA,NA,NA +107,NA,1243,"2017",4,1,70,1,70,NA,NA,NA +107,NA,1244,"2017",1,1,0,1,0,NA,NA,NA +107,NA,1244,"2017",1,1,50,3,50,50,NA,NA +107,NA,1244,"2017",1,1,50,4,50,50,NA,NA +107,NA,1244,"2017",1,1,50,2,50,0,NA,NA +107,NA,1245,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1246,"2017",5,0,60,1,40,NA,NA,NA +107,NA,1247,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1248,"2017",1,1,99,2,99,99,NA,NA +107,NA,1248,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1248,"2017",1,1,99,3,99,99,NA,NA +107,NA,1248,"2017",1,1,99,4,99,99,NA,NA +107,NA,1249,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1250,"2017",6,0,100,1,0,NA,NA,NA +107,NA,1251,"2017",2,0,NA,1,NA,NA,NA,NA +107,NA,1252,"2017",1,1,1,3,1,NA,NA,NA +107,NA,1252,"2017",1,1,NA,4,NA,1,NA,NA +107,NA,1252,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1252,"2017",1,1,NA,2,NA,NA,NA,NA +107,NA,1253,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1254,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1255,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1256,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1257,"2017",1,0,99,2,1,NA,NA,NA +107,NA,1257,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1257,"2017",1,0,99,3,1,1,NA,NA +107,NA,1257,"2017",1,0,99,4,1,1,NA,NA +107,NA,1258,"2017",1,0,1,4,99,99,NA,NA +107,NA,1258,"2017",1,0,1,3,99,1,NA,NA +107,NA,1258,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1258,"2017",1,0,99,2,1,1,NA,NA +107,NA,1259,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1260,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1260,"2017",1,1,99,4,99,99,NA,NA +107,NA,1260,"2017",1,1,99,3,99,99,NA,NA +107,NA,1260,"2017",1,1,99,2,99,99,NA,NA +107,NA,1261,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1261,"2017",1,1,99,2,99,99,NA,NA +107,NA,1261,"2017",1,1,99,4,99,99,NA,NA +107,NA,1261,"2017",1,1,99,3,99,99,NA,NA +107,NA,1262,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1263,"2017",6,1,5,1,5,NA,NA,NA +107,NA,1264,"2017",3,1,100,1,100,NA,NA,NA +107,NA,1265,"2017",5,1,100,1,100,NA,NA,NA +107,NA,1266,"2017",1,1,67,2,67,25,NA,NA +107,NA,1266,"2017",1,1,25,1,25,NA,NA,NA +107,NA,1266,"2017",1,1,66,3,66,67,NA,NA +107,NA,1266,"2017",1,1,1,4,1,66,NA,NA +107,NA,1267,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1268,"2017",2,1,0,1,0,NA,NA,NA +107,NA,1269,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1270,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1271,"2017",2,0,88,1,12,NA,NA,NA +107,NA,1272,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1273,"2017",1,0,NA,4,NA,1,NA,NA +107,NA,1273,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1273,"2017",1,0,99,3,1,1,NA,NA +107,NA,1273,"2017",1,0,99,2,1,1,NA,NA +107,NA,1274,"2017",6,1,NA,1,NA,NA,NA,NA +107,NA,1275,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1276,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1277,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1278,"2017",1,1,99,4,99,99,NA,NA +107,NA,1278,"2017",1,1,99,3,99,99,NA,NA +107,NA,1278,"2017",1,1,99,2,99,99,NA,NA +107,NA,1278,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1279,"2017",4,1,100,1,100,NA,NA,NA +107,NA,1280,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1281,"2017",2,1,90,1,90,NA,NA,NA +107,NA,1282,"2017",3,1,80,1,80,NA,NA,NA +107,NA,1283,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1284,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1285,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1286,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1287,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1288,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1289,"2017",5,1,24,1,24,NA,NA,NA +107,NA,1290,"2017",3,0,0,1,100,NA,NA,NA +107,NA,1291,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1292,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1293,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1294,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1295,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1296,"2017",3,1,66,1,66,NA,NA,NA +107,NA,1297,"2017",5,1,90,1,90,NA,NA,NA +107,NA,1298,"2017",1,1,80,3,80,50,NA,NA +107,NA,1298,"2017",1,1,50,2,50,7,NA,NA +107,NA,1298,"2017",1,1,50,4,50,80,NA,NA +107,NA,1298,"2017",1,1,7,1,7,NA,NA,NA +107,NA,1299,"2017",3,1,100,1,100,NA,NA,NA +107,NA,1300,"2017",2,0,100,1,0,NA,NA,NA +107,NA,1301,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1302,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1302,"2017",1,0,99,2,1,1,NA,NA +107,NA,1302,"2017",1,0,99,3,1,1,NA,NA +107,NA,1302,"2017",1,0,99,4,1,1,NA,NA +107,NA,1303,"2017",3,1,5,1,5,NA,NA,NA +107,NA,1304,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1305,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1306,"2017",1,1,99,3,99,99,NA,NA +107,NA,1306,"2017",1,1,99,2,99,NA,NA,NA +107,NA,1306,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1306,"2017",1,1,NA,4,NA,99,NA,NA +107,NA,1307,"2017",1,1,45,4,45,NA,NA,NA +107,NA,1307,"2017",1,1,45,1,45,NA,NA,NA +107,NA,1307,"2017",1,1,NA,3,NA,46,NA,NA +107,NA,1308,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1309,"2017",2,0,100,1,0,NA,NA,NA +107,NA,1310,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1310,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,1310,"2017",1,0,99,3,1,NA,NA,NA +107,NA,1310,"2017",1,0,99,4,1,1,NA,NA +107,NA,1311,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1313,"2017",6,1,40,1,40,NA,NA,NA +107,NA,1314,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1315,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1316,"2017",2,0,NA,1,NA,NA,NA,NA +107,NA,1317,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1318,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1319,"2017",1,1,NA,4,NA,NA,NA,NA +107,NA,1319,"2017",1,1,NA,3,NA,9,NA,NA +107,NA,1319,"2017",1,1,9,2,9,NA,NA,NA +107,NA,1319,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1320,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1321,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1322,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1323,"2017",1,1,1,4,1,1,NA,NA +107,NA,1323,"2017",1,1,99,2,99,99,NA,NA +107,NA,1323,"2017",1,1,1,3,1,99,NA,NA +107,NA,1323,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1324,"2017",1,0,80,2,20,40,NA,NA +107,NA,1324,"2017",1,0,60,1,40,NA,NA,NA +107,NA,1324,"2017",1,0,80,3,20,20,NA,NA +107,NA,1324,"2017",1,0,40,4,60,20,NA,NA +107,NA,1325,"2017",6,0,10,1,90,NA,NA,NA +107,NA,1326,"2017",1,0,50,3,50,99,NA,NA +107,NA,1326,"2017",1,0,1,2,99,1,NA,NA +107,NA,1326,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1326,"2017",1,0,70,4,30,50,NA,NA +107,NA,1327,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1327,"2017",1,0,99,4,1,50,NA,NA +107,NA,1327,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,1327,"2017",1,0,50,3,50,NA,NA,NA +107,NA,1328,"2017",1,1,1,4,1,1,NA,NA +107,NA,1328,"2017",1,1,1,3,1,99,NA,NA +107,NA,1328,"2017",1,1,99,2,99,99,NA,NA +107,NA,1328,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1329,"2017",3,1,48,1,48,NA,NA,NA +107,NA,1330,"2017",5,0,100,1,0,NA,NA,NA +107,NA,1331,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1332,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1333,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1334,"2017",1,1,1,4,1,0,NA,NA +107,NA,1334,"2017",1,1,0,3,0,99,NA,NA +107,NA,1334,"2017",1,1,99,2,99,50,NA,NA +107,NA,1334,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1335,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1336,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1337,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1338,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1339,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1340,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1341,"2017",3,1,20,1,20,NA,NA,NA +107,NA,1342,"2017",1,1,90,4,90,90,NA,NA +107,NA,1342,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1342,"2017",1,1,90,3,90,90,NA,NA +107,NA,1342,"2017",1,1,90,2,90,50,NA,NA +107,NA,1343,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1344,"2017",5,0,80,1,20,NA,NA,NA +107,NA,1345,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1346,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1347,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1348,"2017",3,1,80,1,80,NA,NA,NA +107,NA,1349,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1350,"2017",1,1,40,4,40,40,NA,NA +107,NA,1350,"2017",1,1,50,2,50,40,NA,NA +107,NA,1350,"2017",1,1,40,3,40,50,NA,NA +107,NA,1350,"2017",1,1,40,1,40,NA,NA,NA +107,NA,1351,"2017",6,1,80,1,80,NA,NA,NA +107,NA,1352,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1353,"2017",2,0,NA,1,NA,NA,NA,NA +107,NA,1354,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1355,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1356,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1357,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1358,"2017",3,1,1,1,1,NA,NA,NA +107,NA,1359,"2017",3,0,1,1,99,NA,NA,NA +107,NA,1360,"2017",4,1,70,1,70,NA,NA,NA +107,NA,1361,"2017",1,1,99,3,99,0,NA,NA +107,NA,1361,"2017",1,1,0,1,0,NA,NA,NA +107,NA,1361,"2017",1,1,99,4,99,99,NA,NA +107,NA,1362,"2017",5,1,60,1,60,NA,NA,NA +107,NA,1363,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1363,"2017",1,0,0,4,100,0,NA,NA +107,NA,1363,"2017",1,0,100,3,0,0,NA,NA +107,NA,1363,"2017",1,0,100,2,0,NA,NA,NA +107,NA,1364,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1365,"2017",1,1,1,2,1,1,NA,NA +107,NA,1365,"2017",1,1,99,4,99,1,NA,NA +107,NA,1365,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1365,"2017",1,1,1,3,1,1,NA,NA +107,NA,1366,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1367,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1367,"2017",1,1,1,2,1,1,NA,NA +107,NA,1367,"2017",1,1,1,3,1,1,NA,NA +107,NA,1367,"2017",1,1,1,4,1,1,NA,NA +107,NA,1368,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1369,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1370,"2017",1,0,1,3,99,NA,NA,NA +107,NA,1370,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1370,"2017",1,0,NA,4,NA,99,NA,NA +107,NA,1370,"2017",1,0,NA,2,NA,1,NA,NA +107,NA,1371,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1371,"2017",1,1,50,3,50,50,NA,NA +107,NA,1371,"2017",1,1,50,2,50,50,NA,NA +107,NA,1371,"2017",1,1,50,4,50,50,NA,NA +107,NA,1372,"2017",1,0,30,4,70,80,NA,NA +107,NA,1372,"2017",1,0,20,1,80,NA,NA,NA +107,NA,1372,"2017",1,0,20,2,80,80,NA,NA +107,NA,1372,"2017",1,0,20,3,80,80,NA,NA +107,NA,1373,"2017",1,0,50,4,50,20,NA,NA +107,NA,1373,"2017",1,0,99,2,1,20,NA,NA +107,NA,1373,"2017",1,0,80,3,20,1,NA,NA +107,NA,1373,"2017",1,0,80,1,20,NA,NA,NA +107,NA,1374,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1375,"2017",5,0,30,1,70,NA,NA,NA +107,NA,1376,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1376,"2017",1,0,NA,3,NA,60,NA,NA +107,NA,1376,"2017",1,0,40,2,60,1,NA,NA +107,NA,1376,"2017",1,0,NA,4,NA,NA,NA,NA +107,NA,1377,"2017",4,1,20,1,20,NA,NA,NA +107,NA,1378,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1379,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1380,"2017",1,1,99,4,99,1,NA,NA +107,NA,1380,"2017",1,1,1,2,1,1,NA,NA +107,NA,1380,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1380,"2017",1,1,1,3,1,1,NA,NA +107,NA,1381,"2017",2,1,20,1,20,NA,NA,NA +107,NA,1382,"2017",1,1,99,3,99,99,NA,NA +107,NA,1382,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1382,"2017",1,1,99,4,99,99,NA,NA +107,NA,1382,"2017",1,1,99,2,99,NA,NA,NA +107,NA,1383,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1383,"2017",1,1,100,2,100,99,NA,NA +107,NA,1383,"2017",1,1,100,3,100,100,NA,NA +107,NA,1383,"2017",1,1,99,4,99,100,NA,NA +107,NA,1384,"2017",5,1,85,1,85,NA,NA,NA +107,NA,1385,"2017",4,0,85,1,15,NA,NA,NA +107,NA,1386,"2017",1,1,99,2,99,NA,NA,NA +107,NA,1386,"2017",1,1,50,3,50,99,NA,NA +107,NA,1386,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1386,"2017",1,1,50,4,50,50,NA,NA +107,NA,1387,"2017",1,0,100,1,0,NA,NA,NA +107,NA,1387,"2017",1,0,99,3,1,1,NA,NA +107,NA,1387,"2017",1,0,99,2,1,0,NA,NA +107,NA,1387,"2017",1,0,99,4,1,1,NA,NA +107,NA,1388,"2017",6,1,70,1,70,NA,NA,NA +107,NA,1389,"2017",1,0,50,3,50,50,NA,NA +107,NA,1389,"2017",1,0,1,1,99,NA,NA,NA +107,NA,1389,"2017",1,0,50,2,50,99,NA,NA +107,NA,1389,"2017",1,0,99,4,1,50,NA,NA +107,NA,1390,"2017",2,0,10,1,90,NA,NA,NA +107,NA,1391,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1392,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1393,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1393,"2017",1,1,99,2,99,NA,NA,NA +107,NA,1393,"2017",1,1,99,3,99,99,NA,NA +107,NA,1393,"2017",1,1,99,4,99,99,NA,NA +107,NA,1394,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1395,"2017",1,0,80,4,20,20,NA,NA +107,NA,1395,"2017",1,0,90,2,10,11,NA,NA +107,NA,1395,"2017",1,0,80,3,20,10,NA,NA +107,NA,1395,"2017",1,0,89,1,11,NA,NA,NA +107,NA,1396,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1397,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1398,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1399,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1400,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1401,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1402,"2017",4,0,10,1,90,NA,NA,NA +107,NA,1403,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1404,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1405,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1406,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1407,"2017",5,0,40,1,60,NA,NA,NA +107,NA,1408,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1409,"2017",6,0,60,1,40,NA,NA,NA +107,NA,1410,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1411,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1412,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1412,"2017",1,0,1,4,99,50,NA,NA +107,NA,1412,"2017",1,0,50,3,50,1,NA,NA +107,NA,1412,"2017",1,0,99,2,1,50,NA,NA +107,NA,1413,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1414,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1415,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1416,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1417,"2017",2,1,40,1,40,NA,NA,NA +107,NA,1418,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1419,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1420,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1421,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1422,"2017",4,1,4,1,4,NA,NA,NA +107,NA,1423,"2017",5,0,70,1,30,NA,NA,NA +107,NA,1424,"2017",1,0,50,3,50,50,NA,NA +107,NA,1424,"2017",1,0,50,2,50,50,NA,NA +107,NA,1424,"2017",1,0,50,4,50,50,NA,NA +107,NA,1424,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1425,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1425,"2017",1,0,99,4,1,1,NA,NA +107,NA,1425,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,1425,"2017",1,0,99,3,1,NA,NA,NA +107,NA,1426,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1427,"2017",6,1,NA,1,NA,NA,NA,NA +107,NA,1428,"2017",3,0,NA,1,NA,NA,NA,NA +107,NA,1429,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1429,"2017",1,0,99,2,1,1,NA,NA +107,NA,1429,"2017",1,0,1,3,99,1,NA,NA +107,NA,1429,"2017",1,0,1,4,99,99,NA,NA +107,NA,1430,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1431,"2017",1,1,1,2,1,0,NA,NA +107,NA,1431,"2017",1,1,1,4,1,1,NA,NA +107,NA,1431,"2017",1,1,1,3,1,1,NA,NA +107,NA,1431,"2017",1,1,0,1,0,NA,NA,NA +107,NA,1432,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1433,"2017",4,0,NA,1,NA,NA,NA,NA +107,NA,1434,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1435,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1436,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1437,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1438,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1439,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1440,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1441,"2017",2,1,88,1,88,NA,NA,NA +107,NA,1442,"2017",3,1,NA,1,NA,NA,NA,NA +107,NA,1443,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1443,"2017",1,1,99,4,99,NA,NA,NA +107,NA,1443,"2017",1,1,99,2,99,99,NA,NA +107,NA,1443,"2017",1,1,NA,3,NA,99,NA,NA +107,NA,1444,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1445,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1446,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1447,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1448,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1449,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1450,"2017",6,0,30,1,70,NA,NA,NA +107,NA,1451,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1452,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1453,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1454,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1455,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1456,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1457,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1458,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1459,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1460,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1461,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1462,"2017",4,1,10,1,10,NA,NA,NA +107,NA,1463,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1464,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1465,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1466,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1467,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1468,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1469,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1470,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1471,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1472,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1472,"2017",1,0,99,4,1,99,NA,NA +107,NA,1472,"2017",1,0,1,2,99,1,NA,NA +107,NA,1472,"2017",1,0,1,3,99,99,NA,NA +107,NA,1473,"2017",1,1,80,2,80,NA,NA,NA +107,NA,1473,"2017",1,1,60,3,60,80,NA,NA +107,NA,1473,"2017",1,1,70,4,70,60,NA,NA +107,NA,1473,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1474,"2017",3,1,1,1,1,NA,NA,NA +107,NA,1475,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1476,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1477,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1478,"2017",3,1,1,1,1,NA,NA,NA +107,NA,1479,"2017",1,0,80,4,20,90,NA,NA +107,NA,1479,"2017",1,0,80,1,20,NA,NA,NA +107,NA,1479,"2017",1,0,10,3,90,NA,NA,NA +107,NA,1479,"2017",1,0,NA,2,NA,20,NA,NA +107,NA,1480,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1481,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1482,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1483,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1484,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1484,"2017",1,1,40,2,40,50,NA,NA +107,NA,1484,"2017",1,1,50,4,50,50,NA,NA +107,NA,1484,"2017",1,1,50,3,50,40,NA,NA +107,NA,1485,"2017",3,1,2,1,2,NA,NA,NA +107,NA,1486,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1487,"2017",1,0,NA,2,NA,1,NA,NA +107,NA,1487,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1487,"2017",1,0,99,4,1,1,NA,NA +107,NA,1487,"2017",1,0,99,3,1,NA,NA,NA +107,NA,1488,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1489,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1490,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1491,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1491,"2017",1,0,1,3,99,99,NA,NA +107,NA,1491,"2017",1,0,1,4,99,99,NA,NA +107,NA,1491,"2017",1,0,1,2,99,50,NA,NA +107,NA,1492,"2017",3,0,1,1,99,NA,NA,NA +107,NA,1493,"2017",1,0,99,3,1,1,NA,NA +107,NA,1493,"2017",1,0,99,2,1,1,NA,NA +107,NA,1493,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1493,"2017",1,0,99,4,1,1,NA,NA +107,NA,1494,"2017",1,1,99,3,99,NA,NA,NA +107,NA,1494,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1494,"2017",1,1,NA,2,NA,1,NA,NA +107,NA,1494,"2017",1,1,1,4,1,99,NA,NA +107,NA,1495,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1496,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1497,"2017",1,0,30,3,70,90,NA,NA +107,NA,1497,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1497,"2017",1,0,20,4,80,70,NA,NA +107,NA,1497,"2017",1,0,10,2,90,50,NA,NA +107,NA,1498,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1499,"2017",5,1,80,1,80,NA,NA,NA +107,NA,1500,"2017",1,0,99,4,1,1,NA,NA +107,NA,1500,"2017",1,0,99,2,1,40,NA,NA +107,NA,1500,"2017",1,0,60,1,40,NA,NA,NA +107,NA,1500,"2017",1,0,99,3,1,1,NA,NA +107,NA,1501,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1502,"2017",1,0,1,3,99,50,NA,NA +107,NA,1502,"2017",1,0,99,4,1,99,NA,NA +107,NA,1502,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1502,"2017",1,0,50,2,50,NA,NA,NA +107,NA,1503,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1504,"2017",1,1,NA,2,NA,NA,NA,NA +107,NA,1504,"2017",1,1,90,4,90,50,NA,NA +107,NA,1504,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1504,"2017",1,1,50,3,50,NA,NA,NA +107,NA,1505,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1506,"2017",1,1,50,3,50,50,NA,NA +107,NA,1506,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1506,"2017",1,1,50,2,50,50,NA,NA +107,NA,1506,"2017",1,1,50,4,50,50,NA,NA +107,NA,1507,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1508,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1509,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1509,"2017",1,1,80,2,80,50,NA,NA +107,NA,1509,"2017",1,1,85,4,85,75,NA,NA +107,NA,1509,"2017",1,1,75,3,75,80,NA,NA +107,NA,1510,"2017",4,0,70,1,30,NA,NA,NA +107,NA,1511,"2017",1,0,99,3,1,1,NA,NA +107,NA,1511,"2017",1,0,99,2,1,1,NA,NA +107,NA,1511,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1511,"2017",1,0,99,4,1,1,NA,NA +107,NA,1512,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1513,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1514,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1515,"2017",1,0,0,2,100,0,NA,NA +107,NA,1515,"2017",1,0,1,4,99,100,NA,NA +107,NA,1515,"2017",1,0,0,3,100,100,NA,NA +107,NA,1515,"2017",1,0,100,1,0,NA,NA,NA +107,NA,1516,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1517,"2017",5,1,95,1,95,NA,NA,NA +107,NA,1518,"2017",4,1,90,1,90,NA,NA,NA +107,NA,1519,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1520,"2017",3,1,1,1,1,NA,NA,NA +107,NA,1521,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1522,"2017",4,1,90,1,90,NA,NA,NA +107,NA,1523,"2017",3,1,2,1,2,NA,NA,NA +107,NA,1524,"2017",3,0,5,1,95,NA,NA,NA +107,NA,1525,"2017",3,1,80,1,80,NA,NA,NA +107,NA,1526,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1527,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1528,"2017",6,1,69,1,69,NA,NA,NA +107,NA,1529,"2017",1,0,50,3,50,50,NA,NA +107,NA,1529,"2017",1,0,50,2,50,1,NA,NA +107,NA,1529,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1529,"2017",1,0,NA,4,NA,50,NA,NA +107,NA,1530,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1531,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1532,"2017",3,0,70,1,30,NA,NA,NA +107,NA,1533,"2017",1,0,50,2,50,12,NA,NA +107,NA,1533,"2017",1,0,50,3,50,50,NA,NA +107,NA,1533,"2017",1,0,88,1,12,NA,NA,NA +107,NA,1533,"2017",1,0,40,4,60,50,NA,NA +107,NA,1534,"2017",6,0,30,1,70,NA,NA,NA +107,NA,1535,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1536,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1537,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1538,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1539,"2017",4,1,56,1,56,NA,NA,NA +107,NA,1540,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1541,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1542,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1543,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1544,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1545,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1546,"2017",5,0,65,1,35,NA,NA,NA +107,NA,1547,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1548,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1549,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1550,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1551,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1552,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1553,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1553,"2017",1,1,1,4,1,1,NA,NA +107,NA,1553,"2017",1,1,1,2,1,1,NA,NA +107,NA,1553,"2017",1,1,1,3,1,1,NA,NA +107,NA,1554,"2017",3,0,80,1,20,NA,NA,NA +107,NA,1555,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1556,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1557,"2017",1,1,1,2,1,1,NA,NA +107,NA,1557,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1557,"2017",1,1,99,4,99,1,NA,NA +107,NA,1557,"2017",1,1,1,3,1,1,NA,NA +107,NA,1558,"2017",6,1,NA,1,NA,NA,NA,NA +107,NA,1559,"2017",6,1,55,1,55,NA,NA,NA +107,NA,1560,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1561,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1562,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1563,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1564,"2017",3,0,20,1,80,NA,NA,NA +107,NA,1565,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1566,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1567,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1568,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1569,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1570,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1571,"2017",2,0,70,1,30,NA,NA,NA +107,NA,1572,"2017",2,0,80,1,20,NA,NA,NA +107,NA,1573,"2017",3,1,1,1,1,NA,NA,NA +107,NA,1574,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1575,"2017",1,1,100,4,100,100,NA,NA +107,NA,1575,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1575,"2017",1,1,100,2,100,1,NA,NA +107,NA,1575,"2017",1,1,100,3,100,100,NA,NA +107,NA,1576,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1577,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1578,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1579,"2017",3,1,0,1,0,NA,NA,NA +107,NA,1580,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1581,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1582,"2017",3,0,90,1,10,NA,NA,NA +107,NA,1583,"2017",2,0,8,1,92,NA,NA,NA +107,NA,1584,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1585,"2017",6,1,NA,1,NA,NA,NA,NA +107,NA,1586,"2017",1,0,1,4,99,40,NA,NA +107,NA,1586,"2017",1,0,60,3,40,50,NA,NA +107,NA,1586,"2017",1,0,80,1,20,NA,NA,NA +107,NA,1586,"2017",1,0,50,2,50,20,NA,NA +107,NA,1587,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1588,"2017",4,1,10,1,10,NA,NA,NA +107,NA,1589,"2017",4,1,90,1,90,NA,NA,NA +107,NA,1590,"2017",4,1,90,1,90,NA,NA,NA +107,NA,1591,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1592,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1593,"2017",3,1,55,1,55,NA,NA,NA +107,NA,1594,"2017",4,0,NA,1,NA,NA,NA,NA +107,NA,1595,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1596,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1597,"2017",6,0,90,1,10,NA,NA,NA +107,NA,1598,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1599,"2017",3,1,NA,1,NA,NA,NA,NA +107,NA,1600,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1601,"2017",4,1,30,1,30,NA,NA,NA +107,NA,1602,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1603,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1604,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1605,"2017",1,1,1,4,1,NA,NA,NA +107,NA,1605,"2017",1,1,NA,3,NA,1,NA,NA +107,NA,1605,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1605,"2017",1,1,1,2,1,NA,NA,NA +107,NA,1606,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1607,"2017",5,0,60,1,40,NA,NA,NA +107,NA,1608,"2017",1,0,0,1,100,NA,NA,NA +107,NA,1608,"2017",1,0,0,2,100,100,NA,NA +107,NA,1608,"2017",1,0,1,4,99,100,NA,NA +107,NA,1608,"2017",1,0,0,3,100,100,NA,NA +107,NA,1609,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1610,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1611,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1612,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1613,"2017",1,1,1,2,1,1,NA,NA +107,NA,1613,"2017",1,1,1,3,1,1,NA,NA +107,NA,1613,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1613,"2017",1,1,1,4,1,1,NA,NA +107,NA,1614,"2017",5,1,0,1,0,NA,NA,NA +107,NA,1615,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1615,"2017",1,1,NA,3,NA,NA,NA,NA +107,NA,1615,"2017",1,1,1,4,1,NA,NA,NA +107,NA,1615,"2017",1,1,NA,2,NA,NA,NA,NA +107,NA,1616,"2017",3,1,NA,1,NA,NA,NA,NA +107,NA,1617,"2017",1,0,50,2,50,95,NA,NA +107,NA,1617,"2017",1,0,30,3,70,50,NA,NA +107,NA,1617,"2017",1,0,0,4,100,70,NA,NA +107,NA,1617,"2017",1,0,5,1,95,NA,NA,NA +107,NA,1618,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1619,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1620,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1621,"2017",4,0,70,1,30,NA,NA,NA +107,NA,1622,"2017",1,0,NA,3,NA,NA,NA,NA +107,NA,1622,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,1622,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1622,"2017",1,0,NA,4,NA,NA,NA,NA +107,NA,1623,"2017",3,0,NA,1,NA,NA,NA,NA +107,NA,1624,"2017",1,0,85,3,15,5,NA,NA +107,NA,1624,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1624,"2017",1,0,95,2,5,NA,NA,NA +107,NA,1624,"2017",1,0,50,4,50,15,NA,NA +107,NA,1625,"2017",1,0,40,1,60,NA,NA,NA +107,NA,1625,"2017",1,0,10,4,90,90,NA,NA +107,NA,1625,"2017",1,0,30,2,70,60,NA,NA +107,NA,1625,"2017",1,0,10,3,90,70,NA,NA +107,NA,1626,"2017",1,1,NA,3,NA,NA,NA,NA +107,NA,1626,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1626,"2017",1,1,NA,4,NA,NA,NA,NA +107,NA,1626,"2017",1,1,NA,2,NA,NA,NA,NA +107,NA,1627,"2017",2,1,30,1,30,NA,NA,NA +107,NA,1628,"2017",4,0,90,1,10,NA,NA,NA +107,NA,1629,"2017",6,0,40,1,60,NA,NA,NA +107,NA,1630,"2017",6,0,45,1,55,NA,NA,NA +107,NA,1631,"2017",1,0,5,4,95,95,NA,NA +107,NA,1631,"2017",1,0,5,3,95,95,NA,NA +107,NA,1631,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1631,"2017",1,0,5,2,95,NA,NA,NA +107,NA,1632,"2017",3,1,10,1,10,NA,NA,NA +107,NA,1633,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1634,"2017",1,1,40,4,40,40,NA,NA +107,NA,1634,"2017",1,1,40,1,40,NA,NA,NA +107,NA,1634,"2017",1,1,40,2,40,40,NA,NA +107,NA,1634,"2017",1,1,40,3,40,40,NA,NA +107,NA,1635,"2017",2,0,80,1,20,NA,NA,NA +107,NA,1636,"2017",3,0,100,1,0,NA,NA,NA +107,NA,1637,"2017",5,1,40,1,40,NA,NA,NA +107,NA,1638,"2017",1,0,99,2,1,50,NA,NA +107,NA,1638,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1638,"2017",1,0,1,3,99,1,NA,NA +107,NA,1638,"2017",1,0,99,4,1,99,NA,NA +107,NA,1639,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1640,"2017",1,1,90,3,90,90,NA,NA +107,NA,1640,"2017",1,1,90,2,90,60,NA,NA +107,NA,1640,"2017",1,1,99,4,99,90,NA,NA +107,NA,1640,"2017",1,1,60,1,60,NA,NA,NA +107,NA,1641,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1642,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1643,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1644,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1645,"2017",3,1,80,1,80,NA,NA,NA +107,NA,1646,"2017",3,1,10,1,10,NA,NA,NA +107,NA,1647,"2017",3,1,NA,1,NA,NA,NA,NA +107,NA,1648,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1649,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1650,"2017",5,1,48,1,48,NA,NA,NA +107,NA,1651,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1652,"2017",4,1,20,1,20,NA,NA,NA +107,NA,1653,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1654,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1655,"2017",3,0,1,1,99,NA,NA,NA +107,NA,1656,"2017",4,1,60,1,60,NA,NA,NA +107,NA,1657,"2017",1,0,NA,3,NA,1,NA,NA +107,NA,1657,"2017",1,0,99,4,1,NA,NA,NA +107,NA,1657,"2017",1,0,99,2,1,1,NA,NA +107,NA,1657,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1658,"2017",1,0,1,1,99,NA,NA,NA +107,NA,1658,"2017",1,0,1,3,99,1,NA,NA +107,NA,1658,"2017",1,0,99,2,1,99,NA,NA +107,NA,1658,"2017",1,0,99,4,1,99,NA,NA +107,NA,1659,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1660,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1661,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1662,"2017",2,1,70,1,70,NA,NA,NA +107,NA,1663,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1664,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1665,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1666,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1667,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1668,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1669,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1670,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1671,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1672,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1673,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1674,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1675,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1675,"2017",1,0,1,4,99,NA,NA,NA +107,NA,1675,"2017",1,0,99,2,1,1,NA,NA +107,NA,1675,"2017",1,0,NA,3,NA,1,NA,NA +107,NA,1676,"2017",3,1,88,1,88,NA,NA,NA +107,NA,1677,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1678,"2017",2,0,NA,1,NA,NA,NA,NA +107,NA,1679,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1680,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1681,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1682,"2017",3,1,6,1,6,NA,NA,NA +107,NA,1683,"2017",1,0,1,3,99,99,NA,NA +107,NA,1683,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1683,"2017",1,0,1,4,99,99,NA,NA +107,NA,1683,"2017",1,0,1,2,99,NA,NA,NA +107,NA,1684,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1685,"2017",3,0,1,1,99,NA,NA,NA +107,NA,1686,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1687,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1687,"2017",1,1,1,4,1,1,NA,NA +107,NA,1687,"2017",1,1,1,3,1,99,NA,NA +107,NA,1687,"2017",1,1,99,2,99,99,NA,NA +107,NA,1688,"2017",6,0,80,1,20,NA,NA,NA +107,NA,1689,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1690,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1691,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1692,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1693,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1694,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1695,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1696,"2017",4,0,10,1,90,NA,NA,NA +107,NA,1697,"2017",6,0,60,1,40,NA,NA,NA +107,NA,1698,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1699,"2017",2,1,70,1,70,NA,NA,NA +107,NA,1700,"2017",6,1,2,1,2,NA,NA,NA +107,NA,1701,"2017",6,0,70,1,30,NA,NA,NA +107,NA,1702,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1703,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1704,"2017",5,0,0,1,100,NA,NA,NA +107,NA,1705,"2017",3,1,1,1,1,NA,NA,NA +107,NA,1706,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1707,"2017",6,0,60,1,40,NA,NA,NA +107,NA,1708,"2017",3,1,10,1,10,NA,NA,NA +107,NA,1709,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1710,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1711,"2017",1,1,100,4,100,100,NA,NA +107,NA,1711,"2017",1,1,99,2,99,50,NA,NA +107,NA,1711,"2017",1,1,100,3,100,99,NA,NA +107,NA,1711,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1712,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1713,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1714,"2017",4,0,NA,1,NA,NA,NA,NA +107,NA,1715,"2017",1,0,NA,4,NA,78,NA,NA +107,NA,1715,"2017",1,0,15,1,85,NA,NA,NA +107,NA,1715,"2017",1,0,11,2,89,85,NA,NA +107,NA,1715,"2017",1,0,22,3,78,89,NA,NA +107,NA,1716,"2017",1,0,1,3,99,1,NA,NA +107,NA,1716,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1716,"2017",1,0,99,4,1,99,NA,NA +107,NA,1716,"2017",1,0,99,2,1,50,NA,NA +107,NA,1717,"2017",2,0,44,1,56,NA,NA,NA +107,NA,1718,"2017",4,1,49,1,49,NA,NA,NA +107,NA,1719,"2017",2,0,80,1,20,NA,NA,NA +107,NA,1720,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1720,"2017",1,0,7,3,93,NA,NA,NA +107,NA,1720,"2017",1,0,NA,2,NA,50,NA,NA +107,NA,1720,"2017",1,0,NA,4,NA,93,NA,NA +107,NA,1721,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1722,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1723,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1724,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1725,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1726,"2017",2,1,40,1,40,NA,NA,NA +107,NA,1727,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1728,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1729,"2017",5,0,33,1,67,NA,NA,NA +107,NA,1730,"2017",1,1,45,1,45,NA,NA,NA +107,NA,1730,"2017",1,1,12,4,12,99,NA,NA +107,NA,1730,"2017",1,1,90,2,90,45,NA,NA +107,NA,1730,"2017",1,1,99,3,99,90,NA,NA +107,NA,1731,"2017",2,0,80,1,20,NA,NA,NA +107,NA,1733,"2017",1,0,75,4,25,20,NA,NA +107,NA,1733,"2017",1,0,50,2,50,NA,NA,NA +107,NA,1733,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1733,"2017",1,0,80,3,20,50,NA,NA +107,NA,1734,"2017",4,1,20,1,20,NA,NA,NA +107,NA,1735,"2017",3,1,15,1,15,NA,NA,NA +107,NA,1736,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1736,"2017",1,1,60,2,60,50,NA,NA +107,NA,1736,"2017",1,1,70,3,70,60,NA,NA +107,NA,1736,"2017",1,1,90,4,90,70,NA,NA +107,NA,1737,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1738,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1739,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1740,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1740,"2017",1,0,99,3,1,1,NA,NA +107,NA,1740,"2017",1,0,99,2,1,1,NA,NA +107,NA,1740,"2017",1,0,99,4,1,1,NA,NA +107,NA,1741,"2017",4,0,30,1,70,NA,NA,NA +107,NA,1742,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1743,"2017",2,1,50,1,50,NA,NA,NA +107,NA,1744,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1745,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1746,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1747,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1748,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1749,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1750,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1751,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1752,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1753,"2017",6,1,30,1,30,NA,NA,NA +107,NA,1754,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1755,"2017",6,0,60,1,40,NA,NA,NA +107,NA,1756,"2017",4,0,75,1,25,NA,NA,NA +107,NA,1757,"2017",6,0,60,1,40,NA,NA,NA +107,NA,1758,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1759,"2017",1,1,95,2,95,92,NA,NA +107,NA,1759,"2017",1,1,95,4,95,12,NA,NA +107,NA,1759,"2017",1,1,92,1,92,NA,NA,NA +107,NA,1759,"2017",1,1,12,3,12,95,NA,NA +107,NA,1760,"2017",3,1,51,1,51,NA,NA,NA +107,NA,1761,"2017",3,0,58,1,42,NA,NA,NA +107,NA,1762,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1763,"2017",4,0,90,1,10,NA,NA,NA +107,NA,1764,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1765,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1766,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1767,"2017",5,0,100,1,0,NA,NA,NA +107,NA,1768,"2017",1,0,50,1,50,NA,NA,NA +107,NA,1768,"2017",1,0,50,3,50,1,NA,NA +107,NA,1768,"2017",1,0,99,2,1,50,NA,NA +107,NA,1768,"2017",1,0,99,4,1,50,NA,NA +107,NA,1769,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1770,"2017",2,0,100,1,0,NA,NA,NA +107,NA,1771,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1772,"2017",5,1,49,1,49,NA,NA,NA +107,NA,1773,"2017",5,1,87,1,87,NA,NA,NA +107,NA,1774,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1775,"2017",2,0,98,1,2,NA,NA,NA +107,NA,1776,"2017",2,0,87,1,13,NA,NA,NA +107,NA,1777,"2017",2,0,88,1,12,NA,NA,NA +107,NA,1778,"2017",6,0,89,1,11,NA,NA,NA +107,NA,1779,"2017",6,0,96,1,4,NA,NA,NA +107,NA,1780,"2017",2,0,88,1,12,NA,NA,NA +107,NA,1781,"2017",1,1,91,4,91,99,NA,NA +107,NA,1781,"2017",1,1,93,2,93,87,NA,NA +107,NA,1781,"2017",1,1,99,3,99,93,NA,NA +107,NA,1781,"2017",1,1,87,1,87,NA,NA,NA +107,NA,1782,"2017",4,1,91,1,91,NA,NA,NA +107,NA,1783,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1784,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1785,"2017",6,1,86,1,86,NA,NA,NA +107,NA,1786,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1787,"2017",5,1,NA,1,NA,NA,NA,NA +107,NA,1788,"2017",1,0,88,2,12,7,NA,NA +107,NA,1788,"2017",1,0,93,1,7,NA,NA,NA +107,NA,1788,"2017",1,0,98,3,2,12,NA,NA +107,NA,1788,"2017",1,0,NA,4,NA,2,NA,NA +107,NA,1789,"2017",2,0,53,1,47,NA,NA,NA +107,NA,1790,"2017",4,0,90,1,10,NA,NA,NA +107,NA,1791,"2017",1,0,100,4,0,100,NA,NA +107,NA,1791,"2017",1,0,0,3,100,100,NA,NA +107,NA,1791,"2017",1,0,68,1,32,NA,NA,NA +107,NA,1791,"2017",1,0,0,2,100,32,NA,NA +107,NA,1792,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1793,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1793,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,1793,"2017",1,0,79,4,21,12,NA,NA +107,NA,1793,"2017",1,0,88,3,12,NA,NA,NA +107,NA,1794,"2017",6,1,85,1,85,NA,NA,NA +107,NA,1795,"2017",5,1,87,1,87,NA,NA,NA +107,NA,1796,"2017",2,1,86,1,86,NA,NA,NA +107,NA,1797,"2017",3,0,88,1,12,NA,NA,NA +107,NA,1798,"2017",2,1,97,1,97,NA,NA,NA +107,NA,1799,"2017",6,0,NA,1,NA,NA,NA,NA +107,NA,1800,"2017",5,0,NA,1,NA,NA,NA,NA +107,NA,1801,"2017",2,1,88,1,88,NA,NA,NA +107,NA,1802,"2017",4,1,96,1,96,NA,NA,NA +107,NA,1803,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1804,"2017",2,1,88,1,88,NA,NA,NA +107,NA,1805,"2017",4,1,89,1,89,NA,NA,NA +107,NA,1806,"2017",2,0,51,1,49,NA,NA,NA +107,NA,1807,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1808,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1808,"2017",1,1,99,3,99,99,NA,NA +107,NA,1808,"2017",1,1,99,2,99,99,NA,NA +107,NA,1808,"2017",1,1,99,4,99,99,NA,NA +107,NA,1809,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1810,"2017",6,1,80,1,80,NA,NA,NA +107,NA,1811,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1812,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1813,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1813,"2017",1,1,NA,2,NA,NA,NA,NA +107,NA,1813,"2017",1,1,NA,4,NA,NA,NA,NA +107,NA,1813,"2017",1,1,NA,3,NA,NA,NA,NA +107,NA,1814,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1815,"2017",5,0,60,1,40,NA,NA,NA +107,NA,1816,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1817,"2017",5,0,60,1,40,NA,NA,NA +107,NA,1818,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1819,"2017",1,1,90,4,90,70,NA,NA +107,NA,1819,"2017",1,1,70,1,70,NA,NA,NA +107,NA,1819,"2017",1,1,70,3,70,NA,NA,NA +107,NA,1819,"2017",1,1,NA,2,NA,70,NA,NA +107,NA,1820,"2017",4,1,80,1,80,NA,NA,NA +107,NA,1821,"2017",4,0,70,1,30,NA,NA,NA +107,NA,1822,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1822,"2017",1,1,99,4,99,99,NA,NA +107,NA,1822,"2017",1,1,99,2,99,99,NA,NA +107,NA,1822,"2017",1,1,99,3,99,99,NA,NA +107,NA,1823,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1824,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1825,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1826,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1827,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1828,"2017",3,0,30,1,70,NA,NA,NA +107,NA,1829,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1830,"2017",5,0,80,1,20,NA,NA,NA +107,NA,1831,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1832,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1833,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1834,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1835,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1836,"2017",4,0,80,1,20,NA,NA,NA +107,NA,1837,"2017",3,1,0,1,0,NA,NA,NA +107,NA,1838,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1839,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1839,"2017",1,1,99,2,99,99,NA,NA +107,NA,1839,"2017",1,1,1,4,1,1,NA,NA +107,NA,1839,"2017",1,1,1,3,1,99,NA,NA +107,NA,1840,"2017",4,1,30,1,30,NA,NA,NA +107,NA,1841,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1842,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1843,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1844,"2017",1,0,NA,4,NA,NA,NA,NA +107,NA,1844,"2017",1,0,NA,3,NA,99,NA,NA +107,NA,1844,"2017",1,0,1,2,99,1,NA,NA +107,NA,1844,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1845,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1846,"2017",6,0,0,1,100,NA,NA,NA +107,NA,1847,"2017",3,1,0,1,0,NA,NA,NA +107,NA,1848,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1849,"2017",1,1,5,3,5,99,NA,NA +107,NA,1849,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1849,"2017",1,1,99,2,99,99,NA,NA +107,NA,1849,"2017",1,1,99,4,99,5,NA,NA +107,NA,1850,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1851,"2017",6,1,1,1,1,NA,NA,NA +107,NA,1852,"2017",2,0,89,1,11,NA,NA,NA +107,NA,1853,"2017",1,0,99,2,1,99,NA,NA +107,NA,1853,"2017",1,0,1,4,99,1,NA,NA +107,NA,1853,"2017",1,0,1,1,99,NA,NA,NA +107,NA,1853,"2017",1,0,99,3,1,1,NA,NA +107,NA,1854,"2017",6,1,60,1,60,NA,NA,NA +107,NA,1855,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1856,"2017",1,0,80,4,20,20,NA,NA +107,NA,1856,"2017",1,0,90,1,10,NA,NA,NA +107,NA,1856,"2017",1,0,80,3,20,15,NA,NA +107,NA,1856,"2017",1,0,85,2,15,10,NA,NA +107,NA,1857,"2017",6,0,NA,1,NA,NA,NA,NA +107,NA,1858,"2017",2,1,NA,1,NA,NA,NA,NA +107,NA,1859,"2017",4,1,NA,1,NA,NA,NA,NA +107,NA,1860,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1861,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1862,"2017",1,1,100,2,100,100,NA,NA +107,NA,1862,"2017",1,1,100,3,100,100,NA,NA +107,NA,1862,"2017",1,1,99,4,99,100,NA,NA +107,NA,1862,"2017",1,1,100,1,100,NA,NA,NA +107,NA,1863,"2017",3,0,50,1,50,NA,NA,NA +107,NA,1864,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1865,"2017",6,1,30,1,30,NA,NA,NA +107,NA,1866,"2017",3,1,1,1,1,NA,NA,NA +107,NA,1867,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1868,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1869,"2017",1,0,100,1,0,NA,NA,NA +107,NA,1869,"2017",1,0,0,4,100,0,NA,NA +107,NA,1869,"2017",1,0,100,3,0,0,NA,NA +107,NA,1869,"2017",1,0,100,2,0,0,NA,NA +107,NA,1870,"2017",2,1,100,1,100,NA,NA,NA +107,NA,1871,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1872,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1873,"2017",5,1,20,1,20,NA,NA,NA +107,NA,1874,"2017",1,0,NA,3,NA,NA,NA,NA +107,NA,1874,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1874,"2017",1,0,99,4,1,NA,NA,NA +107,NA,1874,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,1875,"2017",5,0,100,1,0,NA,NA,NA +107,NA,1876,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1877,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1878,"2017",5,0,20,1,80,NA,NA,NA +107,NA,1879,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1880,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1881,"2017",3,0,99,1,1,NA,NA,NA +107,NA,1882,"2017",5,1,1,1,1,NA,NA,NA +107,NA,1883,"2017",5,0,70,1,30,NA,NA,NA +107,NA,1884,"2017",6,0,100,1,0,NA,NA,NA +107,NA,1885,"2017",5,0,30,1,70,NA,NA,NA +107,NA,1886,"2017",5,1,80,1,80,NA,NA,NA +107,NA,1887,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1888,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1889,"2017",1,0,1,2,99,99,NA,NA +107,NA,1889,"2017",1,0,1,1,99,NA,NA,NA +107,NA,1889,"2017",1,0,99,4,1,99,NA,NA +107,NA,1889,"2017",1,0,1,3,99,99,NA,NA +107,NA,1890,"2017",5,1,0,1,0,NA,NA,NA +107,NA,1891,"2017",1,1,1,3,1,1,NA,NA +107,NA,1891,"2017",1,1,89,1,89,NA,NA,NA +107,NA,1891,"2017",1,1,99,4,99,1,NA,NA +107,NA,1891,"2017",1,1,1,2,1,89,NA,NA +107,NA,1892,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1893,"2017",3,0,80,1,20,NA,NA,NA +107,NA,1894,"2017",4,0,50,1,50,NA,NA,NA +107,NA,1895,"2017",3,1,1,1,1,NA,NA,NA +107,NA,1896,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1897,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1898,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1899,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1900,"2017",3,0,60,1,40,NA,NA,NA +107,NA,1901,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1901,"2017",1,0,40,2,60,1,NA,NA +107,NA,1901,"2017",1,0,80,4,20,70,NA,NA +107,NA,1901,"2017",1,0,30,3,70,60,NA,NA +107,NA,1902,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1903,"2017",1,1,50,2,50,50,NA,NA +107,NA,1903,"2017",1,1,99,3,99,50,NA,NA +107,NA,1903,"2017",1,1,99,4,99,99,NA,NA +107,NA,1903,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1904,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1904,"2017",1,0,50,3,50,50,NA,NA +107,NA,1904,"2017",1,0,50,2,50,1,NA,NA +107,NA,1904,"2017",1,0,50,4,50,50,NA,NA +107,NA,1905,"2017",6,1,80,1,80,NA,NA,NA +107,NA,1906,"2017",6,0,20,1,80,NA,NA,NA +107,NA,1907,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1907,"2017",1,0,30,2,70,NA,NA,NA +107,NA,1907,"2017",1,0,1,3,99,70,NA,NA +107,NA,1907,"2017",1,0,99,4,1,99,NA,NA +107,NA,1908,"2017",1,0,20,2,80,80,NA,NA +107,NA,1908,"2017",1,0,20,3,80,80,NA,NA +107,NA,1908,"2017",1,0,1,4,99,80,NA,NA +107,NA,1908,"2017",1,0,20,1,80,NA,NA,NA +107,NA,1909,"2017",3,1,70,1,70,NA,NA,NA +107,NA,1910,"2017",1,0,1,2,99,NA,NA,NA +107,NA,1910,"2017",1,0,1,4,99,99,NA,NA +107,NA,1910,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,1910,"2017",1,0,1,3,99,99,NA,NA +107,NA,1911,"2017",6,1,90,1,90,NA,NA,NA +107,NA,1912,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1913,"2017",3,1,50,1,50,NA,NA,NA +107,NA,1914,"2017",2,1,99,1,99,NA,NA,NA +107,NA,1915,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1916,"2017",5,1,60,1,60,NA,NA,NA +107,NA,1917,"2017",5,0,99,1,1,NA,NA,NA +107,NA,1918,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1919,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1920,"2017",4,0,1,1,99,NA,NA,NA +107,NA,1921,"2017",1,0,90,3,10,40,NA,NA +107,NA,1921,"2017",1,0,100,4,0,10,NA,NA +107,NA,1921,"2017",1,0,40,1,60,NA,NA,NA +107,NA,1921,"2017",1,0,60,2,40,60,NA,NA +107,NA,1922,"2017",1,1,99,2,99,5,NA,NA +107,NA,1922,"2017",1,1,99,3,99,99,NA,NA +107,NA,1922,"2017",1,1,5,1,5,NA,NA,NA +107,NA,1922,"2017",1,1,99,4,99,99,NA,NA +107,NA,1923,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1924,"2017",4,0,NA,1,NA,NA,NA,NA +107,NA,1925,"2017",1,1,99,3,99,99,NA,NA +107,NA,1925,"2017",1,1,99,2,99,99,NA,NA +107,NA,1925,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1925,"2017",1,1,NA,4,NA,99,NA,NA +107,NA,1926,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1927,"2017",2,0,98,1,2,NA,NA,NA +107,NA,1928,"2017",5,0,90,1,10,NA,NA,NA +107,NA,1929,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1930,"2017",4,0,60,1,40,NA,NA,NA +107,NA,1931,"2017",5,0,90,1,10,NA,NA,NA +107,NA,1932,"2017",6,1,50,1,50,NA,NA,NA +107,NA,1933,"2017",6,0,60,1,40,NA,NA,NA +107,NA,1934,"2017",2,1,30,1,30,NA,NA,NA +107,NA,1935,"2017",1,1,NA,2,NA,NA,NA,NA +107,NA,1935,"2017",1,1,99,3,99,NA,NA,NA +107,NA,1935,"2017",1,1,99,4,99,99,NA,NA +107,NA,1935,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1936,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1937,"2017",1,1,99,4,99,99,NA,NA +107,NA,1937,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1937,"2017",1,1,99,3,99,1,NA,NA +107,NA,1937,"2017",1,1,1,2,1,1,NA,NA +107,NA,1938,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1938,"2017",1,1,1,4,1,99,NA,NA +107,NA,1938,"2017",1,1,99,2,99,50,NA,NA +107,NA,1938,"2017",1,1,99,3,99,99,NA,NA +107,NA,1939,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1940,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1941,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1942,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1943,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1943,"2017",1,0,1,3,99,1,NA,NA +107,NA,1943,"2017",1,0,1,4,99,99,NA,NA +107,NA,1943,"2017",1,0,99,2,1,1,NA,NA +107,NA,1944,"2017",1,1,1,4,1,1,NA,NA +107,NA,1944,"2017",1,1,1,2,1,1,NA,NA +107,NA,1944,"2017",1,1,1,3,1,1,NA,NA +107,NA,1944,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1945,"2017",2,1,2,1,2,NA,NA,NA +107,NA,1946,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1947,"2017",5,0,20,1,80,NA,NA,NA +107,NA,1948,"2017",2,0,10,1,90,NA,NA,NA +107,NA,1949,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1950,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1951,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1952,"2017",3,1,99,1,99,NA,NA,NA +107,NA,1953,"2017",2,0,99,1,1,NA,NA,NA +107,NA,1954,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1955,"2017",4,0,99,1,1,NA,NA,NA +107,NA,1956,"2017",6,0,90,1,10,NA,NA,NA +107,NA,1957,"2017",3,0,1,1,99,NA,NA,NA +107,NA,1958,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1959,"2017",2,1,80,1,80,NA,NA,NA +107,NA,1960,"2017",1,1,99,3,99,99,NA,NA +107,NA,1960,"2017",1,1,99,4,99,99,NA,NA +107,NA,1960,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1960,"2017",1,1,99,2,99,1,NA,NA +107,NA,1961,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1962,"2017",2,1,90,1,90,NA,NA,NA +107,NA,1963,"2017",2,1,1,1,1,NA,NA,NA +107,NA,1964,"2017",1,1,50,1,50,NA,NA,NA +107,NA,1964,"2017",1,1,50,4,50,10,NA,NA +107,NA,1964,"2017",1,1,10,3,10,10,NA,NA +107,NA,1964,"2017",1,1,10,2,10,50,NA,NA +107,NA,1965,"2017",1,1,99,4,99,99,NA,NA +107,NA,1965,"2017",1,1,99,3,99,99,NA,NA +107,NA,1965,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1965,"2017",1,1,99,2,99,1,NA,NA +107,NA,1966,"2017",6,0,99,1,1,NA,NA,NA +107,NA,1967,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1968,"2017",1,0,99,2,1,1,NA,NA +107,NA,1968,"2017",1,0,99,4,1,1,NA,NA +107,NA,1968,"2017",1,0,99,1,1,NA,NA,NA +107,NA,1968,"2017",1,0,99,3,1,1,NA,NA +107,NA,1969,"2017",4,0,30,1,70,NA,NA,NA +107,NA,1970,"2017",6,1,80,1,80,NA,NA,NA +107,NA,1971,"2017",3,1,100,1,100,NA,NA,NA +107,NA,1972,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1973,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1974,"2017",5,0,1,1,99,NA,NA,NA +107,NA,1975,"2017",1,1,99,3,99,99,NA,NA +107,NA,1975,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1975,"2017",1,1,99,2,99,99,NA,NA +107,NA,1975,"2017",1,1,99,4,99,99,NA,NA +107,NA,1976,"2017",3,1,20,1,20,NA,NA,NA +107,NA,1977,"2017",2,0,50,1,50,NA,NA,NA +107,NA,1978,"2017",5,1,99,1,99,NA,NA,NA +107,NA,1979,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,1979,"2017",1,1,99,3,99,99,NA,NA +107,NA,1979,"2017",1,1,99,2,99,NA,NA,NA +107,NA,1979,"2017",1,1,99,4,99,99,NA,NA +107,NA,1980,"2017",2,0,NA,1,NA,NA,NA,NA +107,NA,1981,"2017",2,0,1,1,99,NA,NA,NA +107,NA,1982,"2017",6,1,NA,1,NA,NA,NA,NA +107,NA,1983,"2017",6,0,NA,1,NA,NA,NA,NA +107,NA,1984,"2017",6,1,99,1,99,NA,NA,NA +107,NA,1985,"2017",5,1,50,1,50,NA,NA,NA +107,NA,1986,"2017",6,0,1,1,99,NA,NA,NA +107,NA,1987,"2017",6,0,90,1,10,NA,NA,NA +107,NA,1988,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1989,"2017",6,0,92,1,8,NA,NA,NA +107,NA,1990,"2017",4,1,1,1,1,NA,NA,NA +107,NA,1991,"2017",6,0,50,1,50,NA,NA,NA +107,NA,1992,"2017",4,1,50,1,50,NA,NA,NA +107,NA,1993,"2017",5,0,88,1,12,NA,NA,NA +107,NA,1994,"2017",1,1,1,3,1,50,NA,NA +107,NA,1994,"2017",1,1,1,4,1,1,NA,NA +107,NA,1994,"2017",1,1,1,1,1,NA,NA,NA +107,NA,1994,"2017",1,1,50,2,50,1,NA,NA +107,NA,1995,"2017",3,0,97,1,3,NA,NA,NA +107,NA,1996,"2017",1,1,99,2,99,99,NA,NA +107,NA,1996,"2017",1,1,99,3,99,99,NA,NA +107,NA,1996,"2017",1,1,99,4,99,99,NA,NA +107,NA,1996,"2017",1,1,99,1,99,NA,NA,NA +107,NA,1997,"2017",4,1,99,1,99,NA,NA,NA +107,NA,1998,"2017",5,0,50,1,50,NA,NA,NA +107,NA,1999,"2017",3,1,60,1,60,NA,NA,NA +107,NA,2000,"2017",2,1,70,1,70,NA,NA,NA +107,NA,2001,"2017",4,1,99,1,99,NA,NA,NA +107,NA,2002,"2017",4,1,1,1,1,NA,NA,NA +107,NA,2003,"2017",1,1,NA,3,NA,90,NA,NA +107,NA,2003,"2017",1,1,90,4,90,NA,NA,NA +107,NA,2003,"2017",1,1,80,1,80,NA,NA,NA +107,NA,2003,"2017",1,1,90,2,90,80,NA,NA +107,NA,2004,"2017",6,1,99,1,99,NA,NA,NA +107,NA,2005,"2017",3,0,1,1,99,NA,NA,NA +107,NA,2006,"2017",4,0,0,1,100,NA,NA,NA +107,NA,2007,"2017",3,1,100,1,100,NA,NA,NA +107,NA,2008,"2017",5,0,99,1,1,NA,NA,NA +107,NA,2009,"2017",3,1,19,1,19,NA,NA,NA +107,NA,2010,"2017",6,1,40,1,40,NA,NA,NA +107,NA,2011,"2017",1,1,99,2,99,99,NA,NA +107,NA,2011,"2017",1,1,NA,4,NA,99,NA,NA +107,NA,2011,"2017",1,1,99,1,99,NA,NA,NA +107,NA,2011,"2017",1,1,99,3,99,99,NA,NA +107,NA,2012,"2017",5,1,90,1,90,NA,NA,NA +107,NA,2013,"2017",5,1,20,1,20,NA,NA,NA +107,NA,2014,"2017",2,0,99,1,1,NA,NA,NA +107,NA,2015,"2017",5,1,1,1,1,NA,NA,NA +107,NA,2016,"2017",6,0,99,1,1,NA,NA,NA +107,NA,2017,"2017",6,0,99,1,1,NA,NA,NA +107,NA,2018,"2017",5,1,50,1,50,NA,NA,NA +107,NA,2019,"2017",1,0,99,3,1,0,NA,NA +107,NA,2019,"2017",1,0,100,2,0,20,NA,NA +107,NA,2019,"2017",1,0,50,4,50,1,NA,NA +107,NA,2019,"2017",1,0,80,1,20,NA,NA,NA +107,NA,2020,"2017",6,0,99,1,1,NA,NA,NA +107,NA,2021,"2017",3,0,90,1,10,NA,NA,NA +107,NA,2022,"2017",2,1,50,1,50,NA,NA,NA +107,NA,2023,"2017",3,0,1,1,99,NA,NA,NA +107,NA,2024,"2017",4,1,10,1,10,NA,NA,NA +107,NA,2025,"2017",6,0,22,1,78,NA,NA,NA +107,NA,2026,"2017",4,0,50,1,50,NA,NA,NA +107,NA,2027,"2017",4,0,2,1,98,NA,NA,NA +107,NA,2028,"2017",5,1,70,1,70,NA,NA,NA +107,NA,2029,"2017",1,0,NA,2,NA,NA,NA,NA +107,NA,2029,"2017",1,0,NA,3,NA,NA,NA,NA +107,NA,2029,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,2029,"2017",1,0,99,4,1,NA,NA,NA +107,NA,2030,"2017",1,1,99,2,99,50,NA,NA +107,NA,2030,"2017",1,1,1,3,1,99,NA,NA +107,NA,2030,"2017",1,1,99,4,99,1,NA,NA +107,NA,2030,"2017",1,1,50,1,50,NA,NA,NA +107,NA,2031,"2017",4,0,50,1,50,NA,NA,NA +107,NA,2032,"2017",2,0,5,1,95,NA,NA,NA +107,NA,2033,"2017",1,1,99,2,99,NA,NA,NA +107,NA,2033,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,2033,"2017",1,1,99,4,99,99,NA,NA +107,NA,2033,"2017",1,1,99,3,99,99,NA,NA +107,NA,2034,"2017",1,0,1,1,99,NA,NA,NA +107,NA,2034,"2017",1,0,1,2,99,99,NA,NA +107,NA,2034,"2017",1,0,1,3,99,99,NA,NA +107,NA,2034,"2017",1,0,50,4,50,99,NA,NA +107,NA,2035,"2017",6,1,90,1,90,NA,NA,NA +107,NA,2036,"2017",5,1,99,1,99,NA,NA,NA +107,NA,2037,"2017",2,0,1,1,99,NA,NA,NA +107,NA,2038,"2017",4,1,50,1,50,NA,NA,NA +107,NA,2039,"2017",5,0,0,1,100,NA,NA,NA +107,NA,2040,"2017",3,1,20,1,20,NA,NA,NA +107,NA,2041,"2017",5,0,1,1,99,NA,NA,NA +107,NA,2042,"2017",2,0,1,1,99,NA,NA,NA +107,NA,2043,"2017",5,0,20,1,80,NA,NA,NA +107,NA,2044,"2017",6,1,80,1,80,NA,NA,NA +107,NA,2045,"2017",2,1,90,1,90,NA,NA,NA +107,NA,2046,"2017",5,1,99,1,99,NA,NA,NA +107,NA,2047,"2017",3,1,99,1,99,NA,NA,NA +107,NA,2048,"2017",3,0,50,1,50,NA,NA,NA +107,NA,2049,"2017",4,0,100,1,0,NA,NA,NA +107,NA,2050,"2017",6,1,99,1,99,NA,NA,NA +107,NA,2051,"2017",5,0,99,1,1,NA,NA,NA +107,NA,2052,"2017",2,1,99,1,99,NA,NA,NA +107,NA,2053,"2017",5,0,80,1,20,NA,NA,NA +107,NA,2054,"2017",5,1,99,1,99,NA,NA,NA +107,NA,2055,"2017",4,0,70,1,30,NA,NA,NA +107,NA,2056,"2017",1,0,80,3,20,50,NA,NA +107,NA,2056,"2017",1,0,99,1,1,NA,NA,NA +107,NA,2056,"2017",1,0,50,2,50,1,NA,NA +107,NA,2056,"2017",1,0,70,4,30,20,NA,NA +107,NA,2057,"2017",2,0,NA,1,NA,NA,NA,NA +107,NA,2058,"2017",2,0,60,1,40,NA,NA,NA +107,NA,2059,"2017",1,0,99,4,1,1,NA,NA +107,NA,2059,"2017",1,0,99,1,1,NA,NA,NA +107,NA,2059,"2017",1,0,99,3,1,1,NA,NA +107,NA,2059,"2017",1,0,99,2,1,1,NA,NA +107,NA,2060,"2017",4,0,1,1,99,NA,NA,NA +107,NA,2061,"2017",4,0,99,1,1,NA,NA,NA +107,NA,2062,"2017",3,0,99,1,1,NA,NA,NA +107,NA,2063,"2017",2,1,99,1,99,NA,NA,NA +107,NA,2064,"2017",2,1,1,1,1,NA,NA,NA +107,NA,2065,"2017",1,1,1,1,1,NA,NA,NA +107,NA,2065,"2017",1,1,1,3,1,1,NA,NA +107,NA,2065,"2017",1,1,1,2,1,1,NA,NA +107,NA,2065,"2017",1,1,1,4,1,1,NA,NA +107,NA,2066,"2017",5,1,NA,1,NA,NA,NA,NA +107,NA,2067,"2017",4,1,88,1,88,NA,NA,NA +107,NA,2068,"2017",3,0,99,1,1,NA,NA,NA +107,NA,2069,"2017",4,1,99,1,99,NA,NA,NA +107,NA,2070,"2017",2,1,99,1,99,NA,NA,NA +107,NA,2071,"2017",1,1,99,1,99,NA,NA,NA +107,NA,2071,"2017",1,1,99,3,99,99,NA,NA +107,NA,2071,"2017",1,1,99,4,99,99,NA,NA +107,NA,2071,"2017",1,1,99,2,99,99,NA,NA +107,NA,2072,"2017",4,1,80,1,80,NA,NA,NA +107,NA,2073,"2017",3,0,99,1,1,NA,NA,NA +107,NA,2074,"2017",4,0,1,1,99,NA,NA,NA +107,NA,2075,"2017",6,1,99,1,99,NA,NA,NA +107,NA,2076,"2017",5,0,99,1,1,NA,NA,NA +107,NA,2077,"2017",4,0,99,1,1,NA,NA,NA +107,NA,2078,"2017",1,1,90,2,90,31,NA,NA +107,NA,2078,"2017",1,1,99,4,99,91,NA,NA +107,NA,2078,"2017",1,1,91,3,91,90,NA,NA +107,NA,2078,"2017",1,1,31,1,31,NA,NA,NA +107,NA,2079,"2017",2,1,99,1,99,NA,NA,NA +107,NA,2080,"2017",2,0,50,1,50,NA,NA,NA +107,NA,2081,"2017",6,0,1,1,99,NA,NA,NA +107,NA,2082,"2017",1,1,99,3,99,99,NA,NA +107,NA,2082,"2017",1,1,99,2,99,99,NA,NA +107,NA,2082,"2017",1,1,99,4,99,99,NA,NA +107,NA,2082,"2017",1,1,99,1,99,NA,NA,NA +107,NA,2083,"2017",2,1,99,1,99,NA,NA,NA +107,NA,2084,"2017",1,0,50,1,50,NA,NA,NA +107,NA,2084,"2017",1,0,1,3,99,50,NA,NA +107,NA,2084,"2017",1,0,50,2,50,50,NA,NA +107,NA,2084,"2017",1,0,1,4,99,99,NA,NA +107,NA,2085,"2017",2,1,99,1,99,NA,NA,NA +107,NA,2086,"2017",1,1,1,2,1,1,NA,NA +107,NA,2086,"2017",1,1,1,3,1,1,NA,NA +107,NA,2086,"2017",1,1,1,4,1,1,NA,NA +107,NA,2086,"2017",1,1,1,1,1,NA,NA,NA +107,NA,2087,"2017",3,1,99,1,99,NA,NA,NA +107,NA,2088,"2017",4,0,NA,1,NA,NA,NA,NA +107,NA,2089,"2017",6,0,NA,1,NA,NA,NA,NA +107,NA,2090,"2017",6,1,99,1,99,NA,NA,NA +107,NA,2091,"2017",5,0,100,1,0,NA,NA,NA +107,NA,2092,"2017",4,0,40,1,60,NA,NA,NA +107,NA,2093,"2017",3,1,70,1,70,NA,NA,NA +107,NA,2094,"2017",6,1,90,1,90,NA,NA,NA +107,NA,2095,"2017",4,1,99,1,99,NA,NA,NA +107,NA,2096,"2017",1,0,1,2,99,99,NA,NA +107,NA,2096,"2017",1,0,1,1,99,NA,NA,NA +107,NA,2096,"2017",1,0,50,4,50,1,NA,NA +107,NA,2096,"2017",1,0,99,3,1,99,NA,NA +107,NA,2097,"2017",1,1,NA,2,NA,99,NA,NA +107,NA,2097,"2017",1,1,50,3,50,NA,NA,NA +107,NA,2097,"2017",1,1,99,4,99,50,NA,NA +107,NA,2097,"2017",1,1,99,1,99,NA,NA,NA +107,NA,2098,"2017",1,0,1,1,99,NA,NA,NA +107,NA,2098,"2017",1,0,1,3,99,99,NA,NA +107,NA,2098,"2017",1,0,1,2,99,99,NA,NA +107,NA,2098,"2017",1,0,1,4,99,99,NA,NA +107,NA,2099,"2017",3,1,99,1,99,NA,NA,NA +107,NA,2100,"2017",1,0,6,3,94,NA,NA,NA +107,NA,2100,"2017",1,0,6,1,94,NA,NA,NA +107,NA,2100,"2017",1,0,NA,2,NA,94,NA,NA +107,NA,2100,"2017",1,0,1,4,99,94,NA,NA +107,NA,2101,"2017",4,1,99,1,99,NA,NA,NA +107,NA,2102,"2017",2,1,99,1,99,NA,NA,NA +107,NA,2103,"2017",2,1,1,1,1,NA,NA,NA +107,NA,2104,"2017",2,0,99,1,1,NA,NA,NA +107,NA,2105,"2017",5,1,50,1,50,NA,NA,NA +107,NA,2106,"2017",5,0,99,1,1,NA,NA,NA +107,NA,2107,"2017",3,0,99,1,1,NA,NA,NA +107,NA,2108,"2017",2,1,99,1,99,NA,NA,NA +107,NA,2109,"2017",1,1,NA,3,NA,NA,NA,NA +107,NA,2109,"2017",1,1,1,4,1,NA,NA,NA +107,NA,2109,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,2109,"2017",1,1,NA,2,NA,NA,NA,NA +107,NA,2110,"2017",3,0,50,1,50,NA,NA,NA +107,NA,2111,"2017",1,1,80,3,80,80,NA,NA +107,NA,2111,"2017",1,1,80,2,80,30,NA,NA +107,NA,2111,"2017",1,1,80,4,80,80,NA,NA +107,NA,2111,"2017",1,1,30,1,30,NA,NA,NA +107,NA,2112,"2017",1,0,50,2,50,50,NA,NA +107,NA,2112,"2017",1,0,50,1,50,NA,NA,NA +107,NA,2112,"2017",1,0,50,4,50,50,NA,NA +107,NA,2112,"2017",1,0,50,3,50,50,NA,NA +107,NA,2113,"2017",3,0,99,1,1,NA,NA,NA +107,NA,2114,"2017",2,0,1,1,99,NA,NA,NA +107,NA,2115,"2017",6,1,99,1,99,NA,NA,NA +107,NA,2116,"2017",1,1,50,2,50,NA,NA,NA +107,NA,2116,"2017",1,1,20,4,20,1,NA,NA +107,NA,2116,"2017",1,1,NA,1,NA,NA,NA,NA +107,NA,2116,"2017",1,1,1,3,1,50,NA,NA +107,NA,2117,"2017",2,0,1,1,99,NA,NA,NA +107,NA,2118,"2017",3,1,55,1,55,NA,NA,NA +107,NA,2119,"2017",4,0,90,1,10,NA,NA,NA +107,NA,2120,"2017",2,1,50,1,50,NA,NA,NA +107,NA,2121,"2017",3,1,99,1,99,NA,NA,NA +107,NA,2122,"2017",3,0,NA,1,NA,NA,NA,NA +107,NA,2123,"2017",2,0,1,1,99,NA,NA,NA +107,NA,2124,"2017",1,0,1,2,99,NA,NA,NA +107,NA,2124,"2017",1,0,1,4,99,99,NA,NA +107,NA,2124,"2017",1,0,NA,1,NA,NA,NA,NA +107,NA,2124,"2017",1,0,1,3,99,99,NA,NA +107,NA,2125,"2017",4,0,1,1,99,NA,NA,NA +107,NA,2126,"2017",5,0,NA,1,NA,NA,NA,NA +107,NA,2127,"2017",4,0,20,1,80,NA,NA,NA +107,NA,2128,"2017",3,1,80,1,80,NA,NA,NA +107,NA,2129,"2017",2,0,NA,1,NA,NA,NA,NA +107,NA,2130,"2017",2,0,60,1,40,NA,NA,NA +107,NA,2131,"2017",3,0,1,1,99,NA,NA,NA +107,NA,2132,"2017",3,0,50,1,50,NA,NA,NA +107,NA,2133,"2017",5,1,99,1,99,NA,NA,NA +107,NA,2134,"2017",5,1,8,1,8,NA,NA,NA +107,NA,2135,"2017",1,0,1,4,99,80,NA,NA +107,NA,2135,"2017",1,0,20,3,80,50,NA,NA +107,NA,2135,"2017",1,0,10,1,90,NA,NA,NA +107,NA,2135,"2017",1,0,50,2,50,90,NA,NA +107,123,5,"2017",5,0,NA,3,NA,NA,"BBC",NA +107,123,6,"2017",3,0,0,3,100,100,"BBC",NA +107,123,7,"2017",6,1,70,2,70,50,"BBC",NA +107,123,9,"2017",2,0,99,3,1,1,"BBC",NA +107,123,10,"2017",6,0,20,2,80,70,"BBC",NA +107,123,13,"2017",4,1,99,3,99,NA,"BBC",NA +107,123,14,"2017",2,1,1,2,1,1,"BBC",NA +107,123,15,"2017",5,0,99,3,1,1,"BBC",NA +107,123,17,"2017",5,1,1,2,1,99,"BBC",NA +107,123,20,"2017",6,1,50,2,50,1,"BBC",NA +107,123,24,"2017",2,0,90,3,10,5,"BBC",NA +107,123,27,"2017",5,1,1,2,1,80,"BBC",NA +107,123,29,"2017",5,0,NA,3,NA,NA,"BBC",NA +107,123,30,"2017",6,NA,NA,3,NA,NA,"BBC",NA +107,123,34,"2017",2,1,99,2,99,99,"BBC",NA +107,123,35,"2017",5,0,1,3,99,99,"BBC",NA +107,123,37,"2017",4,0,50,3,50,NA,"BBC",NA +107,123,40,"2017",2,1,2,2,2,2,"BBC",NA +107,123,45,"2017",5,0,33,2,67,56,"BBC",NA +107,123,48,"2017",5,1,10,3,10,90,"BBC",NA +107,123,49,"2017",5,0,42,2,58,68,"BBC",NA +107,123,53,"2017",4,0,99,3,1,NA,"BBC",NA +107,123,56,"2017",3,0,85,3,15,20,"BBC",NA +107,123,61,"2017",5,0,1,3,99,99,"BBC",NA +107,123,64,"2017",5,1,1,2,1,1,"BBC",NA +107,123,65,"2017",5,0,85,2,15,5,"BBC",NA +107,123,1169,"2017",4,1,1,3,1,NA,"BBC",NA +107,123,1175,"2017",2,0,50,2,50,50,"BBC",NA +107,123,1176,"2017",4,0,100,3,0,NA,"BBC",NA +107,123,1177,"2017",6,0,1,2,99,1,"BBC",NA +107,123,1179,"2017",6,1,20,3,20,20,"BBC",NA +107,123,1181,"2017",5,1,50,3,50,30,"BBC",NA +107,123,1182,"2017",5,1,30,2,30,20,"BBC",NA +107,123,1183,"2017",6,1,50,2,50,50,"BBC",NA +107,123,1185,"2017",2,1,70,3,70,30,"BBC",NA +107,123,1186,"2017",6,1,50,3,50,10,"BBC",NA +107,123,1187,"2017",6,1,50,3,50,30,"BBC",NA +107,123,1189,"2017",2,0,99,2,1,1,"BBC",NA +107,123,1190,"2017",6,0,40,3,60,80,"BBC",NA +107,123,1192,"2017",5,1,80,2,80,50,"BBC",NA +107,123,1193,"2017",6,1,60,2,60,30,"BBC",NA +107,123,1194,"2017",4,0,75,3,25,NA,"BBC",NA +107,123,1196,"2017",2,1,1,3,1,99,"BBC",NA +107,123,1197,"2017",5,1,1,3,1,1,"BBC",NA +107,123,1198,"2017",2,1,20,2,20,20,"BBC",NA +107,123,1202,"2017",6,1,1,3,1,0,"BBC",NA +107,123,1206,"2017",3,1,30,2,30,40,"BBC",NA +107,123,1208,"2017",4,0,100,3,0,NA,"BBC",NA +107,123,1212,"2017",3,0,30,2,70,70,"BBC",NA +107,123,1213,"2017",3,1,30,2,30,40,"BBC",NA +107,123,1219,"2017",5,1,99,3,99,99,"BBC",NA +107,123,1221,"2017",6,1,20,3,20,20,"BBC",NA +107,123,1222,"2017",2,1,1,3,1,1,"BBC",NA +107,123,1223,"2017",6,1,15,3,15,14,"BBC",NA +107,123,1225,"2017",4,1,99,3,99,NA,"BBC",NA +107,123,1229,"2017",5,0,60,3,40,35,"BBC",NA +107,123,1231,"2017",5,0,50,2,50,50,"BBC",NA +107,123,1233,"2017",2,1,1,2,1,1,"BBC",NA +107,123,1235,"2017",3,0,99,2,1,1,"BBC",NA +107,123,1236,"2017",2,1,1,2,1,50,"BBC",NA +107,123,1237,"2017",5,0,30,2,70,40,"BBC",NA +107,123,1238,"2017",2,1,60,3,60,NA,"BBC",NA +107,123,1239,"2017",5,1,50,3,50,50,"BBC",NA +107,123,1241,"2017",6,1,55,2,55,50,"BBC",NA +107,123,1242,"2017",3,0,1,3,99,50,"BBC",NA +107,123,1245,"2017",3,1,50,2,50,50,"BBC",NA +107,123,1247,"2017",6,0,50,3,50,50,"BBC",NA +107,123,1250,"2017",6,0,80,2,20,0,"BBC",NA +107,123,1254,"2017",6,1,1,2,1,99,"BBC",NA +107,123,1255,"2017",2,1,1,2,1,NA,"BBC",NA +107,123,1256,"2017",5,1,99,3,99,99,"BBC",NA +107,123,1259,"2017",3,1,99,3,99,99,"BBC",NA +107,123,1264,"2017",3,1,100,2,100,100,"BBC",NA +107,123,1268,"2017",2,1,0,2,0,0,"BBC",NA +107,123,1269,"2017",5,1,99,2,99,1,"BBC",NA +107,123,1271,"2017",2,0,1,3,99,98,"BBC",NA +107,123,1280,"2017",5,0,50,3,50,50,"BBC",NA +107,123,1281,"2017",2,1,1,3,1,99,"BBC",NA +107,123,1283,"2017",6,1,1,3,1,1,"BBC",NA +107,123,1286,"2017",5,0,99,2,1,99,"BBC",NA +107,123,1288,"2017",2,1,1,2,1,50,"BBC",NA +107,123,1289,"2017",5,1,24,2,24,24,"BBC",NA +107,123,1293,"2017",6,1,1,3,1,1,"BBC",NA +107,123,1295,"2017",3,0,NA,2,NA,50,"BBC",NA +107,123,1296,"2017",3,1,66,2,66,66,"BBC",NA +107,123,1297,"2017",5,1,95,2,95,90,"BBC",NA +107,123,1299,"2017",3,1,9,3,9,99,"BBC",NA +107,123,1300,"2017",2,0,NA,2,NA,0,"BBC",NA +107,123,1301,"2017",5,1,1,2,1,1,"BBC",NA +107,123,1304,"2017",5,1,1,3,1,1,"BBC",NA +107,123,1305,"2017",5,0,50,2,50,50,"BBC",NA +107,123,1309,"2017",2,0,80,2,20,0,"BBC",NA +107,123,1315,"2017",5,0,100,3,0,0,"BBC",NA +107,123,1316,"2017",2,0,NA,3,NA,NA,"BBC",NA +107,123,1320,"2017",2,0,1,2,99,1,"BBC",NA +107,123,1325,"2017",6,0,1,2,99,90,"BBC",NA +107,123,1329,"2017",3,1,48,3,48,48,"BBC",NA +107,123,1330,"2017",5,0,95,3,5,0,"BBC",NA +107,123,1333,"2017",5,1,99,3,99,99,"BBC",NA +107,123,1335,"2017",2,0,70,2,30,50,"BBC",NA +107,123,1336,"2017",5,1,1,2,1,99,"BBC",NA +107,123,1338,"2017",2,1,40,2,40,50,"BBC",NA +107,123,1341,"2017",3,1,50,2,50,20,"BBC",NA +107,123,1343,"2017",3,1,99,3,99,99,"BBC",NA +107,123,1352,"2017",3,1,99,3,99,99,"BBC",NA +107,123,1353,"2017",2,0,NA,2,NA,NA,"BBC",NA +107,123,1354,"2017",2,1,1,3,1,1,"BBC",NA +107,123,1355,"2017",5,0,99,3,1,1,"BBC",NA +107,123,1356,"2017",2,1,1,2,1,1,"BBC",NA +107,123,1357,"2017",6,1,60,3,60,55,"BBC",NA +107,123,1358,"2017",3,1,1,3,1,1,"BBC",NA +107,123,1362,"2017",5,1,50,3,50,60,"BBC",NA +107,123,1374,"2017",5,1,1,3,1,1,"BBC",NA +107,123,1378,"2017",5,1,99,3,99,99,"BBC",NA +107,123,1379,"2017",6,1,1,3,1,100,"BBC",NA +107,123,1381,"2017",2,1,20,2,20,20,"BBC",NA +107,123,1384,"2017",5,1,84,2,84,85,"BBC",NA +107,123,1385,"2017",4,0,65,3,35,NA,"BBC",NA +107,123,1391,"2017",6,0,99,2,1,1,"BBC",NA +107,123,1396,"2017",2,0,1,3,99,99,"BBC",NA +107,123,1397,"2017",2,0,1,2,99,99,"BBC",NA +107,123,1400,"2017",5,0,1,2,99,99,"BBC",NA +107,123,1401,"2017",3,0,99,3,1,1,"BBC",NA +107,123,1404,"2017",2,0,40,2,60,50,"BBC",NA +107,123,1406,"2017",5,0,99,2,1,99,"BBC",NA +107,123,1407,"2017",5,0,50,2,50,60,"BBC",NA +107,123,1409,"2017",6,0,70,3,30,60,"BBC",NA +107,123,1410,"2017",3,1,99,2,99,99,"BBC",NA +107,123,1416,"2017",6,1,99,3,99,99,"BBC",NA +107,123,1422,"2017",4,1,30,3,30,NA,"BBC",NA +107,123,1423,"2017",5,0,75,2,25,30,"BBC",NA +107,123,1426,"2017",3,0,1,3,99,1,"BBC",NA +107,123,1428,"2017",3,0,90,2,10,NA,"BBC",NA +107,123,1430,"2017",6,1,99,3,99,99,"BBC",NA +107,123,1432,"2017",5,1,99,3,99,99,"BBC",NA +107,123,1433,"2017",4,0,1,3,99,NA,"BBC",NA +107,123,1434,"2017",2,1,1,2,1,99,"BBC",NA +107,123,1435,"2017",2,0,NA,2,NA,1,"BBC",NA +107,123,1438,"2017",2,1,80,3,80,99,"BBC",NA +107,123,1441,"2017",2,1,80,2,80,88,"BBC",NA +107,123,1445,"2017",5,0,99,3,1,1,"BBC",NA +107,123,1446,"2017",4,1,50,3,50,NA,"BBC",NA +107,123,1447,"2017",3,1,NA,2,NA,99,"BBC",NA +107,123,1451,"2017",5,1,50,3,50,50,"BBC",NA +107,123,1452,"2017",5,1,99,3,99,99,"BBC",NA +107,123,1454,"2017",2,0,99,3,1,1,"BBC",NA +107,123,1455,"2017",2,1,50,3,50,50,"BBC",NA +107,123,1456,"2017",2,1,99,2,99,1,"BBC",NA +107,123,1459,"2017",3,1,99,3,99,99,"BBC",NA +107,123,1460,"2017",6,0,1,3,99,1,"BBC",NA +107,123,1465,"2017",6,0,99,2,1,1,"BBC",NA +107,123,1467,"2017",6,1,1,2,1,1,"BBC",NA +107,123,1475,"2017",5,1,99,3,99,NA,"BBC",NA +107,123,1482,"2017",5,0,65,2,35,50,"BBC",NA +107,123,1483,"2017",2,0,99,2,1,1,"BBC",NA +107,123,1485,"2017",3,1,4,3,4,89,"BBC",NA +107,123,1489,"2017",6,1,1,3,1,1,"BBC",NA +107,123,1498,"2017",2,1,1,3,1,50,"BBC",NA +107,123,1499,"2017",5,1,95,3,95,85,"BBC",NA +107,123,1501,"2017",6,0,99,3,1,1,"BBC",NA +107,123,1505,"2017",2,1,NA,2,NA,NA,"BBC",NA +107,123,1508,"2017",4,1,50,3,50,NA,"BBC",NA +107,123,1512,"2017",5,1,1,2,1,1,"BBC",NA +107,123,1513,"2017",2,0,50,2,50,1,"BBC",NA +107,123,1514,"2017",6,1,50,3,50,50,"BBC",NA +107,123,1516,"2017",3,0,50,3,50,NA,"BBC",NA +107,123,1517,"2017",5,1,90,3,90,NA,"BBC",NA +107,123,1519,"2017",3,1,54,2,54,50,"BBC",NA +107,123,1522,"2017",4,1,95,3,95,NA,"BBC",NA +107,123,1525,"2017",3,1,90,2,90,80,"BBC",NA +107,123,1527,"2017",3,0,99,2,1,1,"BBC",NA +107,123,1528,"2017",6,1,1,2,1,69,"BBC",NA +107,123,1530,"2017",2,1,50,3,50,50,"BBC",NA +107,123,1534,"2017",6,0,NA,2,NA,70,"BBC",NA +107,123,1540,"2017",3,1,50,2,50,50,"BBC",NA +107,123,1543,"2017",2,1,20,3,20,50,"BBC",NA +107,123,1547,"2017",2,1,80,3,80,1,"BBC",NA +107,123,1548,"2017",5,1,99,3,99,NA,"BBC",NA +107,123,1549,"2017",2,1,NA,3,NA,99,"BBC",NA +107,123,1552,"2017",2,0,50,2,50,50,"BBC",NA +107,123,1555,"2017",3,0,99,2,1,1,"BBC",NA +107,123,1562,"2017",3,0,1,3,99,1,"BBC",NA +107,123,1564,"2017",3,0,20,3,80,80,"BBC",NA +107,123,1566,"2017",2,0,1,3,99,1,"BBC",NA +107,123,1570,"2017",2,1,30,2,30,50,"BBC",NA +107,123,1571,"2017",2,0,80,3,20,30,"BBC",NA +107,123,1572,"2017",2,0,80,2,20,20,"BBC",NA +107,123,1573,"2017",3,1,1,2,1,1,"BBC",NA +107,123,1574,"2017",6,0,1,3,99,99,"BBC",NA +107,123,1578,"2017",2,0,80,3,20,20,"BBC",NA +107,123,1579,"2017",3,1,0,2,0,0,"BBC",NA +107,123,1580,"2017",5,0,99,3,1,1,"BBC",NA +107,123,1581,"2017",5,0,99,3,1,1,"BBC",NA +107,123,1582,"2017",3,0,90,2,10,10,"BBC",NA +107,123,1583,"2017",2,0,66,3,34,NA,"BBC",NA +107,123,1584,"2017",5,0,99,3,1,1,"BBC",NA +107,123,1585,"2017",6,1,NA,2,NA,NA,"BBC",NA +107,123,1587,"2017",6,1,1,2,1,1,"BBC",NA +107,123,1591,"2017",2,0,NA,3,NA,NA,"BBC",NA +107,123,1592,"2017",3,1,99,2,99,99,"BBC",NA +107,123,1596,"2017",6,0,1,2,99,99,"BBC",NA +107,123,1599,"2017",3,1,50,2,50,NA,"BBC",NA +107,123,1600,"2017",5,1,50,3,50,80,"BBC",NA +107,123,1602,"2017",2,0,1,3,99,1,"BBC",NA +107,123,1604,"2017",2,0,50,2,50,50,"BBC",NA +107,123,1606,"2017",3,0,50,2,50,50,"BBC",NA +107,123,1607,"2017",5,0,20,2,80,40,"BBC",NA +107,123,1614,"2017",5,1,50,3,50,80,"BBC",NA +107,123,1616,"2017",3,1,NA,2,NA,NA,"BBC",NA +107,123,1619,"2017",2,1,1,2,1,1,"BBC",NA +107,123,1627,"2017",2,1,30,2,30,30,"BBC",NA +107,123,1629,"2017",6,0,85,3,15,40,"BBC",NA +107,123,1630,"2017",6,0,40,2,60,55,"BBC",NA +107,123,1633,"2017",2,1,1,3,1,NA,"BBC",NA +107,123,1642,"2017",5,0,1,3,99,1,"BBC",NA +107,123,1644,"2017",3,0,99,3,1,1,"BBC",NA +107,123,1646,"2017",3,1,60,3,60,70,"BBC",NA +107,123,1647,"2017",3,1,99,2,99,NA,"BBC",NA +107,123,1650,"2017",5,1,35,3,35,32,"BBC",NA +107,123,1653,"2017",6,1,50,2,50,99,"BBC",NA +107,123,1655,"2017",3,0,NA,2,NA,99,"BBC",NA +107,123,1665,"2017",2,1,NA,3,NA,NA,"BBC",NA +107,123,1669,"2017",3,1,60,2,60,50,"BBC",NA +107,123,1671,"2017",2,0,1,2,99,1,"BBC",NA +107,123,1672,"2017",3,0,99,3,1,1,"BBC",NA +107,123,1674,"2017",2,1,NA,2,NA,NA,"BBC",NA +107,123,1677,"2017",3,0,50,3,50,50,"BBC",NA +107,123,1684,"2017",2,1,40,3,40,99,"BBC",NA +107,123,1686,"2017",6,0,1,3,99,1,"BBC",NA +107,123,1688,"2017",6,0,80,2,20,20,"BBC",NA +107,123,1689,"2017",2,1,99,3,99,99,"BBC",NA +107,123,1693,"2017",6,1,60,2,60,99,"BBC",NA +107,123,1694,"2017",6,1,20,3,20,80,"BBC",NA +107,123,1698,"2017",5,1,44,2,44,50,"BBC",NA +107,123,1699,"2017",2,1,60,3,60,60,"BBC",NA +107,123,1701,"2017",6,0,30,2,70,30,"BBC",NA +107,123,1703,"2017",2,1,50,3,50,1,"BBC",NA +107,123,1705,"2017",3,1,NA,3,NA,99,"BBC",NA +107,123,1707,"2017",6,0,30,2,70,40,"BBC",NA +107,123,1708,"2017",3,1,10,2,10,10,"BBC",NA +107,123,1719,"2017",2,0,2,3,98,20,"BBC",NA +107,123,1721,"2017",2,1,99,3,99,1,"BBC",NA +107,123,1722,"2017",3,1,50,2,50,50,"BBC",NA +107,123,1726,"2017",2,1,50,3,50,20,"BBC",NA +107,123,1727,"2017",5,0,70,3,30,40,"BBC",NA +107,123,1731,"2017",2,0,80,2,20,20,"BBC",NA +107,123,1732,"2017",5,0,NA,2,NA,NA,"BBC",NA +107,123,1735,"2017",3,1,20,2,20,15,"BBC",NA +107,123,1737,"2017",3,1,70,2,70,50,"BBC",NA +107,123,1738,"2017",2,1,1,3,1,90,"BBC",NA +107,123,1739,"2017",6,1,50,3,50,50,"BBC",NA +107,123,1741,"2017",4,0,10,3,90,NA,"BBC",NA +107,123,1742,"2017",5,0,99,3,1,1,"BBC",NA +107,123,1744,"2017",3,1,99,2,99,99,"BBC",NA +107,123,1745,"2017",6,0,50,3,50,50,"BBC",NA +107,123,1746,"2017",6,0,50,2,50,50,"BBC",NA +107,123,1748,"2017",2,1,0,3,0,99,"BBC",NA +107,123,1750,"2017",5,0,1,3,99,1,"BBC",NA +107,123,1753,"2017",6,1,30,2,30,30,"BBC",NA +107,123,1758,"2017",5,1,59,2,59,99,"BBC",NA +107,123,1765,"2017",3,1,NA,2,NA,99,"BBC",NA +107,123,1766,"2017",3,1,1,2,1,99,"BBC",NA +107,123,1770,"2017",2,0,68,2,32,0,"BBC",NA +107,123,1772,"2017",5,1,NA,3,NA,15,"BBC",NA +107,123,1773,"2017",5,1,68,2,68,87,"BBC",NA +107,123,1774,"2017",3,0,56,3,44,1,"BBC",NA +107,123,1775,"2017",2,0,87,2,13,2,"BBC",NA +107,123,1776,"2017",2,0,88,2,12,13,"BBC",NA +107,123,1777,"2017",2,0,NA,2,NA,12,"BBC",NA +107,123,1778,"2017",6,0,93,3,7,12,"BBC",NA +107,123,1780,"2017",2,0,88,2,12,12,"BBC",NA +107,123,1785,"2017",6,1,88,3,88,81,"BBC",NA +107,123,1786,"2017",2,1,92,2,92,99,"BBC",NA +107,123,1787,"2017",5,1,NA,2,NA,NA,"BBC",NA +107,123,1794,"2017",6,1,88,2,88,85,"BBC",NA +107,123,1796,"2017",2,1,97,3,97,88,"BBC",NA +107,123,1800,"2017",5,0,NA,2,NA,NA,"BBC",NA +107,123,1801,"2017",2,1,NA,3,NA,NA,"BBC",NA +107,123,1803,"2017",5,1,88,3,88,87,"BBC",NA +107,123,1804,"2017",2,1,88,2,88,88,"BBC",NA +107,123,1806,"2017",2,0,49,3,51,49,"BBC",NA +107,123,1807,"2017",5,1,99,3,99,50,"BBC",NA +107,123,1809,"2017",2,0,50,2,50,1,"BBC",NA +107,123,1812,"2017",3,1,50,2,50,50,"BBC",NA +107,123,1814,"2017",4,0,50,3,50,NA,"BBC",NA +107,123,1817,"2017",5,0,70,2,30,40,"BBC",NA +107,123,1818,"2017",6,1,60,2,60,50,"BBC",NA +107,123,1820,"2017",4,1,NA,3,NA,NA,"BBC",NA +107,123,1828,"2017",3,0,20,2,80,70,"BBC",NA +107,123,1829,"2017",5,1,1,2,1,1,"BBC",NA +107,123,1830,"2017",5,0,40,3,60,40,"BBC",NA +107,123,1831,"2017",5,1,50,2,50,99,"BBC",NA +107,123,1832,"2017",5,0,1,3,99,99,"BBC",NA +107,123,1833,"2017",6,1,50,3,50,99,"BBC",NA +107,123,1835,"2017",2,1,1,3,1,99,"BBC",NA +107,123,1838,"2017",6,1,99,3,99,99,"BBC",NA +107,123,1842,"2017",4,0,1,3,99,NA,"BBC",NA +107,123,1847,"2017",3,1,99,2,99,0,"BBC",NA +107,123,1848,"2017",2,1,99,2,99,99,"BBC",NA +107,123,1851,"2017",6,1,1,2,1,1,"BBC",NA +107,123,1852,"2017",2,0,75,3,25,11,"BBC",NA +107,123,1857,"2017",6,0,60,3,40,50,"BBC",NA +107,123,1858,"2017",2,1,99,3,99,99,"BBC",NA +107,123,1860,"2017",2,1,99,2,99,99,"BBC",NA +107,123,1863,"2017",3,0,40,2,60,50,"BBC",NA +107,123,1865,"2017",6,1,50,2,50,30,"BBC",NA +107,123,1875,"2017",5,0,0,3,100,0,"BBC",NA +107,123,1876,"2017",6,1,99,2,99,99,"BBC",NA +107,123,1879,"2017",6,1,50,2,50,50,"BBC",NA +107,123,1882,"2017",5,1,1,2,1,1,"BBC",NA +107,123,1883,"2017",5,0,60,2,40,30,"BBC",NA +107,123,1884,"2017",6,0,20,2,80,0,"BBC",NA +107,123,1886,"2017",5,1,80,2,80,80,"BBC",NA +107,123,1887,"2017",5,0,99,2,1,1,"BBC",NA +107,123,1890,"2017",5,1,0,2,0,0,"BBC",NA +107,123,1896,"2017",6,0,1,3,99,99,"BBC",NA +107,123,1899,"2017",4,1,50,3,50,NA,"BBC",NA +107,123,1902,"2017",5,0,50,3,50,1,"BBC",NA +107,123,1905,"2017",6,1,60,2,60,80,"BBC",NA +107,123,1906,"2017",6,0,10,2,90,80,"BBC",NA +107,123,1909,"2017",3,1,70,2,70,70,"BBC",NA +107,123,1912,"2017",6,0,90,3,10,99,"BBC",NA +107,123,1916,"2017",5,1,20,3,20,30,"BBC",NA +107,123,1917,"2017",5,0,99,2,1,1,"BBC",NA +107,123,1918,"2017",4,0,99,3,1,NA,"BBC",NA +107,123,1919,"2017",6,0,1,2,99,99,"BBC",NA +107,123,1927,"2017",2,0,90,2,10,2,"BBC",NA +107,123,1929,"2017",5,1,1,2,1,99,"BBC",NA +107,123,1931,"2017",5,0,50,2,50,10,"BBC",NA +107,123,1933,"2017",6,0,70,3,30,20,"BBC",NA +107,123,1936,"2017",6,0,1,2,99,1,"BBC",NA +107,123,1939,"2017",2,0,99,3,1,1,"BBC",NA +107,123,1941,"2017",5,1,99,2,99,99,"BBC",NA +107,123,1942,"2017",3,1,99,2,99,99,"BBC",NA +107,123,1945,"2017",2,1,1,2,1,2,"BBC",NA +107,123,1946,"2017",5,1,1,2,1,99,"BBC",NA +107,123,1947,"2017",5,0,30,2,70,80,"BBC",NA +107,123,1948,"2017",2,0,1,3,99,90,"BBC",NA +107,123,1949,"2017",4,1,50,3,50,NA,"BBC",NA +107,123,1950,"2017",5,1,99,2,99,99,"BBC",NA +107,123,1951,"2017",5,0,50,3,50,50,"BBC",NA +107,123,1953,"2017",2,0,99,2,1,1,"BBC",NA +107,123,1958,"2017",6,1,1,3,1,1,"BBC",NA +107,123,1962,"2017",2,1,90,2,90,90,"BBC",NA +107,123,1963,"2017",2,1,99,3,99,99,"BBC",NA +107,123,1967,"2017",6,1,99,2,99,99,"BBC",NA +107,123,1969,"2017",4,0,80,3,20,NA,"BBC",NA +107,123,1972,"2017",5,0,50,3,50,NA,"BBC",NA +107,123,1973,"2017",6,0,99,2,1,99,"BBC",NA +107,123,1974,"2017",5,0,50,2,50,99,"BBC",NA +107,123,1976,"2017",3,1,15,3,15,20,"BBC",NA +107,123,1977,"2017",2,0,1,2,99,50,"BBC",NA +107,123,1983,"2017",6,0,NA,3,NA,NA,"BBC",NA +107,123,1984,"2017",6,1,1,2,1,99,"BBC",NA +107,123,1985,"2017",5,1,99,2,99,50,"BBC",NA +107,123,1987,"2017",6,0,80,3,20,10,"BBC",NA +107,123,1989,"2017",6,0,70,3,30,20,"BBC",NA +107,123,1993,"2017",5,0,88,3,12,10,"BBC",NA +107,123,1998,"2017",5,0,60,3,40,25,"BBC",NA +107,123,2005,"2017",3,0,50,2,50,99,"BBC",NA +107,123,2008,"2017",5,0,99,2,1,1,"BBC",NA +107,123,2009,"2017",3,1,50,2,50,19,"BBC",NA +107,123,2013,"2017",5,1,30,3,30,10,"BBC",NA +107,123,2014,"2017",2,0,70,3,30,10,"BBC",NA +107,123,2015,"2017",5,1,1,3,1,1,"BBC",NA +107,123,2017,"2017",6,0,80,2,20,1,"BBC",NA +107,123,2018,"2017",5,1,50,3,50,10,"BBC",NA +107,123,2020,"2017",6,0,1,3,99,50,"BBC",NA +107,123,2021,"2017",3,0,60,2,40,10,"BBC",NA +107,123,2022,"2017",2,1,50,3,50,20,"BBC",NA +107,123,2025,"2017",6,0,11,3,89,10,"BBC",NA +107,123,2032,"2017",2,0,10,3,90,80,"BBC",NA +107,123,2035,"2017",6,1,10,3,10,90,"BBC",NA +107,123,2036,"2017",5,1,99,3,99,99,"BBC",NA +107,123,2039,"2017",5,0,50,3,50,1,"BBC",NA +107,123,2041,"2017",5,0,100,3,0,0,"BBC",NA +107,123,2042,"2017",2,0,1,2,99,99,"BBC",NA +107,123,2044,"2017",6,1,30,2,30,80,"BBC",NA +107,123,2046,"2017",5,1,1,2,1,99,"BBC",NA +107,123,2048,"2017",3,0,50,3,50,50,"BBC",NA +107,123,2050,"2017",6,1,99,3,99,99,"BBC",NA +107,123,2051,"2017",5,0,90,3,10,10,"BBC",NA +107,123,2052,"2017",2,1,99,3,99,99,"BBC",NA +107,123,2053,"2017",5,0,20,2,80,20,"BBC",NA +107,123,2054,"2017",5,1,30,3,30,99,"BBC",NA +107,123,2057,"2017",2,0,NA,2,NA,NA,"BBC",NA +107,123,2063,"2017",2,1,50,3,50,50,"BBC",NA +107,123,2064,"2017",2,1,50,2,50,1,"BBC",NA +107,123,2066,"2017",5,1,NA,2,NA,NA,"BBC",NA +107,123,2067,"2017",4,1,92,3,92,NA,"BBC",NA +107,123,2068,"2017",3,0,99,2,1,1,"BBC",NA +107,123,2070,"2017",2,1,99,2,99,99,"BBC",NA +107,123,2075,"2017",6,1,50,2,50,99,"BBC",NA +107,123,2080,"2017",2,0,50,2,50,50,"BBC",NA +107,123,2081,"2017",6,0,1,3,99,99,"BBC",NA +107,123,2083,"2017",2,1,99,2,99,99,"BBC",NA +107,123,2085,"2017",2,1,5,3,5,99,"BBC",NA +107,123,2090,"2017",6,1,99,3,99,99,"BBC",NA +107,123,2094,"2017",6,1,65,2,65,90,"BBC",NA +107,123,2101,"2017",4,1,99,3,99,NA,"BBC",NA +107,123,2102,"2017",2,1,99,3,99,99,"BBC",NA +107,123,2103,"2017",2,1,1,2,1,1,"BBC",NA +107,123,2104,"2017",2,0,99,3,1,1,"BBC",NA +107,123,2108,"2017",2,1,99,3,99,9,"BBC",NA +107,123,2110,"2017",3,0,50,3,50,50,"BBC",NA +107,123,2117,"2017",2,0,1,2,99,99,"BBC",NA +107,123,2118,"2017",3,1,70,3,70,40,"BBC",NA +107,123,2120,"2017",2,1,50,3,50,50,"BBC",NA +107,123,2121,"2017",3,1,99,3,99,99,"BBC",NA +107,123,2122,"2017",3,0,50,3,50,99,"BBC",NA +107,123,2123,"2017",2,0,50,2,50,99,"BBC",NA +107,123,2126,"2017",5,0,99,2,1,NA,"BBC",NA +107,123,2127,"2017",4,0,10,3,90,NA,"BBC",NA +107,123,2129,"2017",2,0,90,3,10,2,"BBC",NA +107,123,2130,"2017",2,0,99,3,1,20,"BBC",NA +107,123,2131,"2017",3,0,1,3,99,99,"BBC",NA +107,123,2134,"2017",5,1,8,3,8,8,"BBC",NA +107,127,2,"2017",4,0,NA,4,NA,NA,"Nanfang Dushibao",NA +107,127,7,"2017",6,1,60,3,60,70,"Nanfang Dushibao",NA +107,127,10,"2017",6,0,10,3,90,80,"Nanfang Dushibao",NA +107,127,20,"2017",6,1,1,3,1,50,"Nanfang Dushibao",NA +107,127,21,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +107,127,25,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +107,127,38,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +107,127,42,"2017",4,1,80,4,80,NA,"Nanfang Dushibao",NA +107,127,43,"2017",6,0,NA,2,NA,NA,"Nanfang Dushibao",NA +107,127,51,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +107,127,52,"2017",3,0,20,2,80,80,"Nanfang Dushibao",NA +107,127,57,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +107,127,58,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +107,127,59,"2017",4,0,90,4,10,NA,"Nanfang Dushibao",NA +107,127,63,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +107,127,70,"2017",6,1,50,3,50,60,"Nanfang Dushibao",NA +107,127,1177,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +107,127,1180,"2017",3,0,80,2,20,50,"Nanfang Dushibao",NA +107,127,1195,"2017",3,1,0,2,0,30,"Nanfang Dushibao",NA +107,127,1199,"2017",6,0,60,3,40,50,"Nanfang Dushibao",NA +107,127,1202,"2017",6,1,0,2,0,1,"Nanfang Dushibao",NA +107,127,1203,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +107,127,1207,"2017",6,1,90,3,90,90,"Nanfang Dushibao",NA +107,127,1223,"2017",6,1,14,2,14,14,"Nanfang Dushibao",NA +107,127,1226,"2017",6,0,70,2,30,50,"Nanfang Dushibao",NA +107,127,1227,"2017",3,0,100,3,0,1,"Nanfang Dushibao",NA +107,127,1230,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +107,127,1243,"2017",4,1,40,4,40,NA,"Nanfang Dushibao",NA +107,127,1249,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +107,127,1259,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +107,127,1263,"2017",6,1,65,3,65,60,"Nanfang Dushibao",NA +107,127,1270,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +107,127,1272,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +107,127,1275,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +107,127,1282,"2017",3,1,15,3,15,75,"Nanfang Dushibao",NA +107,127,1285,"2017",6,1,1,3,1,99,"Nanfang Dushibao",NA +107,127,1287,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +107,127,1290,"2017",3,0,0,2,100,100,"Nanfang Dushibao",NA +107,127,1291,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +107,127,1292,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +107,127,1293,"2017",6,1,1,2,1,99,"Nanfang Dushibao",NA +107,127,1295,"2017",3,0,NA,3,NA,NA,"Nanfang Dushibao",NA +107,127,1303,"2017",3,1,4,2,4,5,"Nanfang Dushibao",NA +107,127,1312,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +107,127,1313,"2017",6,1,30,3,30,80,"Nanfang Dushibao",NA +107,127,1317,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +107,127,1341,"2017",3,1,1,3,1,50,"Nanfang Dushibao",NA +107,127,1359,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +107,127,1360,"2017",4,1,60,4,60,NA,"Nanfang Dushibao",NA +107,127,1366,"2017",6,1,1,2,1,1,"Nanfang Dushibao",NA +107,127,1398,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +107,127,1403,"2017",6,1,1,3,1,99,"Nanfang Dushibao",NA +107,127,1405,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +107,127,1409,"2017",6,0,40,2,60,40,"Nanfang Dushibao",NA +107,127,1411,"2017",3,0,1,3,99,1,"Nanfang Dushibao",NA +107,127,1416,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +107,127,1419,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +107,127,1421,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +107,127,1428,"2017",3,0,NA,3,NA,10,"Nanfang Dushibao",NA +107,127,1437,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +107,127,1442,"2017",3,1,1,3,1,99,"Nanfang Dushibao",NA +107,127,1453,"2017",3,0,10,2,90,1,"Nanfang Dushibao",NA +107,127,1457,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +107,127,1458,"2017",6,0,1,3,99,50,"Nanfang Dushibao",NA +107,127,1466,"2017",3,0,NA,3,NA,1,"Nanfang Dushibao",NA +107,127,1474,"2017",3,1,1,3,1,99,"Nanfang Dushibao",NA +107,127,1478,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +107,127,1489,"2017",6,1,1,2,1,1,"Nanfang Dushibao",NA +107,127,1496,"2017",3,0,1,2,99,1,"Nanfang Dushibao",NA +107,127,1507,"2017",3,1,50,3,50,50,"Nanfang Dushibao",NA +107,127,1514,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +107,127,1520,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +107,127,1521,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +107,127,1523,"2017",3,1,50,3,50,3,"Nanfang Dushibao",NA +107,127,1524,"2017",3,0,15,3,85,90,"Nanfang Dushibao",NA +107,127,1534,"2017",6,0,NA,3,NA,NA,"Nanfang Dushibao",NA +107,127,1537,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +107,127,1542,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +107,127,1544,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +107,127,1558,"2017",6,1,50,2,50,NA,"Nanfang Dushibao",NA +107,127,1561,"2017",6,1,50,3,50,1,"Nanfang Dushibao",NA +107,127,1563,"2017",4,1,25,4,25,NA,"Nanfang Dushibao",NA +107,127,1569,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +107,127,1574,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +107,127,1579,"2017",3,1,0,3,0,0,"Nanfang Dushibao",NA +107,127,1588,"2017",4,1,10,4,10,NA,"Nanfang Dushibao",NA +107,127,1593,"2017",3,1,55,3,55,55,"Nanfang Dushibao",NA +107,127,1594,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +107,127,1597,"2017",6,0,NA,3,NA,1,"Nanfang Dushibao",NA +107,127,1598,"2017",3,0,5,2,95,1,"Nanfang Dushibao",NA +107,127,1609,"2017",4,1,NA,4,NA,NA,"Nanfang Dushibao",NA +107,127,1618,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +107,127,1623,"2017",3,0,NA,2,NA,NA,"Nanfang Dushibao",NA +107,127,1628,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +107,127,1643,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +107,127,1645,"2017",3,1,80,2,80,80,"Nanfang Dushibao",NA +107,127,1648,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +107,127,1654,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +107,127,1661,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +107,127,1664,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +107,127,1667,"2017",6,0,1,2,99,1,"Nanfang Dushibao",NA +107,127,1669,"2017",3,1,35,3,35,60,"Nanfang Dushibao",NA +107,127,1670,"2017",6,1,50,3,50,99,"Nanfang Dushibao",NA +107,127,1672,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +107,127,1677,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +107,127,1685,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +107,127,1693,"2017",6,1,99,3,99,60,"Nanfang Dushibao",NA +107,127,1697,"2017",6,0,70,3,30,NA,"Nanfang Dushibao",NA +107,127,1701,"2017",6,0,30,3,70,70,"Nanfang Dushibao",NA +107,127,1705,"2017",3,1,99,2,99,1,"Nanfang Dushibao",NA +107,127,1706,"2017",4,1,NA,4,NA,NA,"Nanfang Dushibao",NA +107,127,1708,"2017",3,1,10,3,10,10,"Nanfang Dushibao",NA +107,127,1712,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +107,127,1722,"2017",3,1,50,3,50,50,"Nanfang Dushibao",NA +107,127,1728,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +107,127,1735,"2017",3,1,14,3,14,20,"Nanfang Dushibao",NA +107,127,1744,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +107,127,1745,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +107,127,1747,"2017",3,0,50,2,50,1,"Nanfang Dushibao",NA +107,127,1749,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +107,127,1752,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +107,127,1755,"2017",6,0,20,2,80,40,"Nanfang Dushibao",NA +107,127,1756,"2017",4,0,78,4,22,NA,"Nanfang Dushibao",NA +107,127,1757,"2017",6,0,70,2,30,40,"Nanfang Dushibao",NA +107,127,1760,"2017",3,1,11,2,11,51,"Nanfang Dushibao",NA +107,127,1761,"2017",3,0,29,2,71,42,"Nanfang Dushibao",NA +107,127,1764,"2017",3,0,1,2,99,50,"Nanfang Dushibao",NA +107,127,1766,"2017",3,1,99,3,99,1,"Nanfang Dushibao",NA +107,127,1779,"2017",6,0,99,3,1,3,"Nanfang Dushibao",NA +107,127,1782,"2017",4,1,87,4,87,NA,"Nanfang Dushibao",NA +107,127,1784,"2017",4,1,96,4,96,NA,"Nanfang Dushibao",NA +107,127,1785,"2017",6,1,81,2,81,86,"Nanfang Dushibao",NA +107,127,1790,"2017",4,0,16,4,84,NA,"Nanfang Dushibao",NA +107,127,1797,"2017",3,0,88,3,12,25,"Nanfang Dushibao",NA +107,127,1799,"2017",6,0,NA,2,NA,NA,"Nanfang Dushibao",NA +107,127,1802,"2017",4,1,88,4,88,NA,"Nanfang Dushibao",NA +107,127,1810,"2017",6,1,50,2,50,80,"Nanfang Dushibao",NA +107,127,1821,"2017",4,0,80,4,20,NA,"Nanfang Dushibao",NA +107,127,1824,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +107,127,1827,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +107,127,1833,"2017",6,1,99,2,99,1,"Nanfang Dushibao",NA +107,127,1836,"2017",4,0,80,4,20,NA,"Nanfang Dushibao",NA +107,127,1841,"2017",4,1,0,4,0,NA,"Nanfang Dushibao",NA +107,127,1845,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +107,127,1846,"2017",6,0,0,3,100,0,"Nanfang Dushibao",NA +107,127,1854,"2017",6,1,50,2,50,60,"Nanfang Dushibao",NA +107,127,1859,"2017",4,1,80,4,80,NA,"Nanfang Dushibao",NA +107,127,1863,"2017",3,0,50,3,50,60,"Nanfang Dushibao",NA +107,127,1866,"2017",3,1,50,2,50,1,"Nanfang Dushibao",NA +107,127,1872,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +107,127,1884,"2017",6,0,20,3,80,80,"Nanfang Dushibao",NA +107,127,1893,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +107,127,1900,"2017",3,0,80,3,20,34,"Nanfang Dushibao",NA +107,127,1915,"2017",3,1,1,2,1,99,"Nanfang Dushibao",NA +107,127,1923,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +107,127,1932,"2017",6,1,1,3,1,99,"Nanfang Dushibao",NA +107,127,1942,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +107,127,1956,"2017",6,0,NA,3,NA,10,"Nanfang Dushibao",NA +107,127,1957,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +107,127,1958,"2017",6,1,1,2,1,99,"Nanfang Dushibao",NA +107,127,1970,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +107,127,1971,"2017",3,1,100,2,100,100,"Nanfang Dushibao",NA +107,127,1973,"2017",6,0,50,3,50,1,"Nanfang Dushibao",NA +107,127,1982,"2017",6,1,50,2,50,NA,"Nanfang Dushibao",NA +107,127,1990,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +107,127,1992,"2017",4,1,30,4,30,NA,"Nanfang Dushibao",NA +107,127,1997,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +107,127,1999,"2017",3,1,30,3,30,60,"Nanfang Dushibao",NA +107,127,2004,"2017",6,1,50,3,50,99,"Nanfang Dushibao",NA +107,127,2007,"2017",3,1,75,3,75,92,"Nanfang Dushibao",NA +107,127,2016,"2017",6,0,NA,3,NA,1,"Nanfang Dushibao",NA +107,127,2020,"2017",6,0,50,2,50,1,"Nanfang Dushibao",NA +107,127,2023,"2017",3,0,NA,3,NA,99,"Nanfang Dushibao",NA +107,127,2025,"2017",6,0,90,2,10,78,"Nanfang Dushibao",NA +107,127,2027,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +107,127,2038,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +107,127,2040,"2017",3,1,80,2,80,20,"Nanfang Dushibao",NA +107,127,2044,"2017",6,1,80,3,80,30,"Nanfang Dushibao",NA +107,127,2047,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +107,127,2049,"2017",4,0,15,4,85,NA,"Nanfang Dushibao",NA +107,127,2073,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +107,127,2075,"2017",6,1,58,3,58,50,"Nanfang Dushibao",NA +107,127,2077,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +107,127,2081,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +107,127,2087,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +107,127,2088,"2017",4,0,30,4,70,NA,"Nanfang Dushibao",NA +107,127,2089,"2017",6,0,NA,2,NA,NA,"Nanfang Dushibao",NA +107,127,2094,"2017",6,1,23,3,23,65,"Nanfang Dushibao",NA +107,127,2099,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +107,127,2107,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +107,127,2110,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +107,127,2113,"2017",3,0,50,3,50,1,"Nanfang Dushibao",NA +107,127,2115,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +107,127,2118,"2017",3,1,40,2,40,55,"Nanfang Dushibao",NA +107,127,2119,"2017",4,0,90,4,10,NA,"Nanfang Dushibao",NA +107,127,2121,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +107,127,2128,"2017",3,1,80,2,80,80,"Nanfang Dushibao",NA +107,127,2131,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +107,129,4,"2017",5,1,NA,2,NA,NA,"Huanqiu",NA +107,129,6,"2017",3,0,0,2,100,100,"Huanqiu",NA +107,129,11,"2017",4,1,1,5,1,NA,"Huanqiu",NA +107,129,15,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,16,"2017",5,1,80,2,80,99,"Huanqiu",NA +107,129,18,"2017",2,0,99,3,1,1,"Huanqiu",NA +107,129,19,"2017",2,1,99,2,99,99,"Huanqiu",NA +107,129,21,"2017",6,0,50,2,50,50,"Huanqiu",NA +107,129,22,"2017",4,0,10,5,90,NA,"Huanqiu",NA +107,129,23,"2017",5,1,99,3,99,50,"Huanqiu",NA +107,129,24,"2017",2,0,95,2,5,10,"Huanqiu",NA +107,129,25,"2017",3,0,99,2,1,1,"Huanqiu",NA +107,129,31,"2017",3,NA,NA,2,NA,NA,"Huanqiu",NA +107,129,34,"2017",2,1,99,3,99,99,"Huanqiu",NA +107,129,35,"2017",5,0,1,2,99,99,"Huanqiu",NA +107,129,39,"2017",6,1,40,3,40,30,"Huanqiu",NA +107,129,43,"2017",6,0,NA,3,NA,NA,"Huanqiu",NA +107,129,44,"2017",4,0,1,5,99,NA,"Huanqiu",NA +107,129,46,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,47,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,48,"2017",5,1,90,2,90,10,"Huanqiu",NA +107,129,49,"2017",5,0,42,3,58,58,"Huanqiu",NA +107,129,50,"2017",4,0,20,5,80,NA,"Huanqiu",NA +107,129,52,"2017",3,0,20,3,80,80,"Huanqiu",NA +107,129,54,"2017",6,0,9,2,91,50,"Huanqiu",NA +107,129,55,"2017",6,0,95,3,5,10,"Huanqiu",NA +107,129,61,"2017",5,0,1,2,99,99,"Huanqiu",NA +107,129,64,"2017",5,1,1,3,1,1,"Huanqiu",NA +107,129,67,"2017",2,1,60,2,60,99,"Huanqiu",NA +107,129,69,"2017",6,1,99,2,99,99,"Huanqiu",NA +107,129,70,"2017",6,1,60,2,60,90,"Huanqiu",NA +107,129,71,"2017",3,1,99,3,99,99,"Huanqiu",NA +107,129,1171,"2017",2,1,0,3,0,0,"Huanqiu",NA +107,129,1172,"2017",5,0,100,3,0,0,"Huanqiu",NA +107,129,1174,"2017",3,1,0,3,0,0,"Huanqiu",NA +107,129,1179,"2017",6,1,20,2,20,20,"Huanqiu",NA +107,129,1180,"2017",3,0,90,3,10,20,"Huanqiu",NA +107,129,1182,"2017",5,1,40,3,40,30,"Huanqiu",NA +107,129,1185,"2017",2,1,30,2,30,50,"Huanqiu",NA +107,129,1186,"2017",6,1,10,2,10,50,"Huanqiu",NA +107,129,1187,"2017",6,1,30,2,30,50,"Huanqiu",NA +107,129,1192,"2017",5,1,50,3,50,80,"Huanqiu",NA +107,129,1193,"2017",6,1,10,3,10,60,"Huanqiu",NA +107,129,1195,"2017",3,1,1,3,1,0,"Huanqiu",NA +107,129,1196,"2017",2,1,99,2,99,99,"Huanqiu",NA +107,129,1197,"2017",5,1,1,2,1,15,"Huanqiu",NA +107,129,1198,"2017",2,1,20,3,20,20,"Huanqiu",NA +107,129,1201,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1203,"2017",6,0,85,3,15,50,"Huanqiu",NA +107,129,1206,"2017",3,1,40,3,40,30,"Huanqiu",NA +107,129,1207,"2017",6,1,90,2,90,50,"Huanqiu",NA +107,129,1209,"2017",5,0,100,2,0,0,"Huanqiu",NA +107,129,1210,"2017",5,0,40,3,60,60,"Huanqiu",NA +107,129,1211,"2017",3,1,45,2,45,40,"Huanqiu",NA +107,129,1212,"2017",3,0,30,3,70,70,"Huanqiu",NA +107,129,1213,"2017",3,1,20,3,20,30,"Huanqiu",NA +107,129,1214,"2017",4,0,100,5,0,NA,"Huanqiu",NA +107,129,1215,"2017",5,0,20,2,80,80,"Huanqiu",NA +107,129,1216,"2017",4,0,20,5,80,NA,"Huanqiu",NA +107,129,1217,"2017",6,0,1,2,99,1,"Huanqiu",NA +107,129,1220,"2017",4,0,40,5,60,NA,"Huanqiu",NA +107,129,1221,"2017",6,1,20,2,20,20,"Huanqiu",NA +107,129,1222,"2017",2,1,1,2,1,1,"Huanqiu",NA +107,129,1224,"2017",2,1,1,3,1,99,"Huanqiu",NA +107,129,1226,"2017",6,0,100,3,0,30,"Huanqiu",NA +107,129,1229,"2017",5,0,65,2,35,50,"Huanqiu",NA +107,129,1230,"2017",6,1,1,2,1,1,"Huanqiu",NA +107,129,1235,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,1237,"2017",5,0,20,3,80,70,"Huanqiu",NA +107,129,1239,"2017",5,1,50,2,50,50,"Huanqiu",NA +107,129,1240,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1241,"2017",6,1,55,3,55,55,"Huanqiu",NA +107,129,1242,"2017",3,0,50,2,50,99,"Huanqiu",NA +107,129,1245,"2017",3,1,60,3,60,50,"Huanqiu",NA +107,129,1246,"2017",5,0,75,2,25,40,"Huanqiu",NA +107,129,1249,"2017",3,1,99,3,99,99,"Huanqiu",NA +107,129,1250,"2017",6,0,70,3,30,20,"Huanqiu",NA +107,129,1251,"2017",2,0,99,2,1,NA,"Huanqiu",NA +107,129,1253,"2017",2,0,99,2,1,1,"Huanqiu",NA +107,129,1262,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1264,"2017",3,1,100,3,100,100,"Huanqiu",NA +107,129,1265,"2017",5,1,100,3,100,100,"Huanqiu",NA +107,129,1268,"2017",2,1,50,3,50,0,"Huanqiu",NA +107,129,1269,"2017",5,1,50,3,50,99,"Huanqiu",NA +107,129,1271,"2017",2,0,2,2,98,12,"Huanqiu",NA +107,129,1274,"2017",6,1,50,2,50,NA,"Huanqiu",NA +107,129,1275,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,1276,"2017",5,1,1,3,1,1,"Huanqiu",NA +107,129,1280,"2017",5,0,50,2,50,50,"Huanqiu",NA +107,129,1281,"2017",2,1,99,2,99,90,"Huanqiu",NA +107,129,1286,"2017",5,0,1,3,99,1,"Huanqiu",NA +107,129,1287,"2017",6,1,1,2,1,1,"Huanqiu",NA +107,129,1288,"2017",2,1,99,3,99,1,"Huanqiu",NA +107,129,1297,"2017",5,1,95,3,95,95,"Huanqiu",NA +107,129,1299,"2017",3,1,99,2,99,100,"Huanqiu",NA +107,129,1301,"2017",5,1,5,3,5,1,"Huanqiu",NA +107,129,1303,"2017",3,1,2,3,2,4,"Huanqiu",NA +107,129,1305,"2017",5,0,50,3,50,50,"Huanqiu",NA +107,129,1308,"2017",5,0,50,2,50,1,"Huanqiu",NA +107,129,1312,"2017",6,0,50,3,50,50,"Huanqiu",NA +107,129,1313,"2017",6,1,80,2,80,40,"Huanqiu",NA +107,129,1315,"2017",5,0,100,2,0,1,"Huanqiu",NA +107,129,1316,"2017",2,0,NA,2,NA,NA,"Huanqiu",NA +107,129,1317,"2017",6,1,50,3,50,50,"Huanqiu",NA +107,129,1318,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,1330,"2017",5,0,100,2,0,0,"Huanqiu",NA +107,129,1331,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1332,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1335,"2017",2,0,99,3,1,30,"Huanqiu",NA +107,129,1336,"2017",5,1,50,3,50,1,"Huanqiu",NA +107,129,1338,"2017",2,1,60,3,60,40,"Huanqiu",NA +107,129,1340,"2017",3,1,99,2,99,50,"Huanqiu",NA +107,129,1344,"2017",5,0,80,2,20,20,"Huanqiu",NA +107,129,1345,"2017",2,1,50,2,50,NA,"Huanqiu",NA +107,129,1346,"2017",6,1,1,2,1,50,"Huanqiu",NA +107,129,1347,"2017",5,0,99,3,1,1,"Huanqiu",NA +107,129,1348,"2017",3,1,6,2,6,80,"Huanqiu",NA +107,129,1351,"2017",6,1,80,3,80,80,"Huanqiu",NA +107,129,1353,"2017",2,0,99,3,1,NA,"Huanqiu",NA +107,129,1354,"2017",2,1,1,2,1,99,"Huanqiu",NA +107,129,1358,"2017",3,1,1,2,1,1,"Huanqiu",NA +107,129,1359,"2017",3,0,99,2,1,99,"Huanqiu",NA +107,129,1364,"2017",2,1,99,3,99,99,"Huanqiu",NA +107,129,1366,"2017",6,1,1,3,1,1,"Huanqiu",NA +107,129,1368,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,1369,"2017",2,0,99,3,1,20,"Huanqiu",NA +107,129,1374,"2017",5,1,1,2,1,1,"Huanqiu",NA +107,129,1375,"2017",5,0,30,3,70,70,"Huanqiu",NA +107,129,1378,"2017",5,1,99,2,99,99,"Huanqiu",NA +107,129,1384,"2017",5,1,83,3,83,84,"Huanqiu",NA +107,129,1388,"2017",6,1,60,3,60,50,"Huanqiu",NA +107,129,1390,"2017",2,0,20,3,80,90,"Huanqiu",NA +107,129,1391,"2017",6,0,99,3,1,1,"Huanqiu",NA +107,129,1392,"2017",2,0,NA,2,NA,1,"Huanqiu",NA +107,129,1396,"2017",2,0,1,2,99,99,"Huanqiu",NA +107,129,1399,"2017",6,1,60,2,60,50,"Huanqiu",NA +107,129,1401,"2017",3,0,99,2,1,1,"Huanqiu",NA +107,129,1404,"2017",2,0,60,3,40,60,"Huanqiu",NA +107,129,1413,"2017",5,1,99,2,99,1,"Huanqiu",NA +107,129,1414,"2017",4,0,1,5,99,NA,"Huanqiu",NA +107,129,1415,"2017",4,1,1,5,1,NA,"Huanqiu",NA +107,129,1417,"2017",2,1,40,3,40,40,"Huanqiu",NA +107,129,1418,"2017",2,0,99,2,1,1,"Huanqiu",NA +107,129,1420,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1423,"2017",5,0,80,3,20,25,"Huanqiu",NA +107,129,1427,"2017",6,1,99,3,99,99,"Huanqiu",NA +107,129,1432,"2017",5,1,99,2,99,99,"Huanqiu",NA +107,129,1438,"2017",2,1,99,2,99,99,"Huanqiu",NA +107,129,1439,"2017",2,1,60,3,60,99,"Huanqiu",NA +107,129,1440,"2017",2,1,98,3,98,99,"Huanqiu",NA +107,129,1441,"2017",2,1,70,3,70,80,"Huanqiu",NA +107,129,1442,"2017",3,1,99,2,99,NA,"Huanqiu",NA +107,129,1444,"2017",5,0,1,3,99,99,"Huanqiu",NA +107,129,1445,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,1447,"2017",3,1,NA,3,NA,NA,"Huanqiu",NA +107,129,1448,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1449,"2017",2,1,99,2,99,99,"Huanqiu",NA +107,129,1450,"2017",6,0,30,3,70,70,"Huanqiu",NA +107,129,1451,"2017",5,1,50,2,50,50,"Huanqiu",NA +107,129,1452,"2017",5,1,99,2,99,1,"Huanqiu",NA +107,129,1453,"2017",3,0,50,3,50,90,"Huanqiu",NA +107,129,1455,"2017",2,1,50,2,50,50,"Huanqiu",NA +107,129,1456,"2017",2,1,1,3,1,99,"Huanqiu",NA +107,129,1458,"2017",6,0,50,2,50,99,"Huanqiu",NA +107,129,1459,"2017",3,1,99,2,99,99,"Huanqiu",NA +107,129,1461,"2017",2,0,50,2,50,50,"Huanqiu",NA +107,129,1463,"2017",2,0,11,2,89,99,"Huanqiu",NA +107,129,1464,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,1466,"2017",3,0,99,2,1,1,"Huanqiu",NA +107,129,1470,"2017",6,1,99,3,99,99,"Huanqiu",NA +107,129,1474,"2017",3,1,99,2,99,1,"Huanqiu",NA +107,129,1476,"2017",2,1,1,2,1,1,"Huanqiu",NA +107,129,1477,"2017",5,1,50,3,50,50,"Huanqiu",NA +107,129,1478,"2017",3,1,1,3,1,1,"Huanqiu",NA +107,129,1480,"2017",4,1,50,5,50,NA,"Huanqiu",NA +107,129,1481,"2017",5,1,50,2,50,99,"Huanqiu",NA +107,129,1482,"2017",5,0,65,3,35,35,"Huanqiu",NA +107,129,1485,"2017",3,1,89,2,89,2,"Huanqiu",NA +107,129,1490,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1492,"2017",3,0,3,3,97,98,"Huanqiu",NA +107,129,1498,"2017",2,1,50,2,50,99,"Huanqiu",NA +107,129,1499,"2017",5,1,85,2,85,80,"Huanqiu",NA +107,129,1505,"2017",2,1,1,3,1,NA,"Huanqiu",NA +107,129,1507,"2017",3,1,50,2,50,50,"Huanqiu",NA +107,129,1510,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1520,"2017",3,1,1,3,1,1,"Huanqiu",NA +107,129,1524,"2017",3,0,10,2,90,95,"Huanqiu",NA +107,129,1526,"2017",5,1,20,3,20,NA,"Huanqiu",NA +107,129,1527,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,1530,"2017",2,1,50,2,50,50,"Huanqiu",NA +107,129,1532,"2017",3,0,80,3,20,40,"Huanqiu",NA +107,129,1535,"2017",6,1,99,3,99,99,"Huanqiu",NA +107,129,1536,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1538,"2017",2,1,1,2,1,1,"Huanqiu",NA +107,129,1539,"2017",4,1,56,5,56,NA,"Huanqiu",NA +107,129,1540,"2017",3,1,50,3,50,50,"Huanqiu",NA +107,129,1541,"2017",2,1,99,3,99,99,"Huanqiu",NA +107,129,1545,"2017",6,1,1,2,1,1,"Huanqiu",NA +107,129,1546,"2017",5,0,70,3,30,20,"Huanqiu",NA +107,129,1547,"2017",2,1,1,2,1,NA,"Huanqiu",NA +107,129,1548,"2017",5,1,NA,2,NA,99,"Huanqiu",NA +107,129,1551,"2017",2,0,1,3,99,99,"Huanqiu",NA +107,129,1552,"2017",2,0,50,3,50,50,"Huanqiu",NA +107,129,1554,"2017",3,0,92,3,8,10,"Huanqiu",NA +107,129,1555,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,1559,"2017",6,1,1,2,1,55,"Huanqiu",NA +107,129,1561,"2017",6,1,1,2,1,1,"Huanqiu",NA +107,129,1562,"2017",3,0,99,2,1,1,"Huanqiu",NA +107,129,1564,"2017",3,0,20,2,80,80,"Huanqiu",NA +107,129,1565,"2017",2,0,99,2,1,99,"Huanqiu",NA +107,129,1567,"2017",2,0,50,2,50,1,"Huanqiu",NA +107,129,1570,"2017",2,1,70,3,70,30,"Huanqiu",NA +107,129,1572,"2017",2,0,90,3,10,20,"Huanqiu",NA +107,129,1576,"2017",3,1,99,2,99,99,"Huanqiu",NA +107,129,1577,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1580,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,1581,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,1584,"2017",5,0,99,2,1,50,"Huanqiu",NA +107,129,1585,"2017",6,1,6,3,6,NA,"Huanqiu",NA +107,129,1587,"2017",6,1,1,3,1,1,"Huanqiu",NA +107,129,1591,"2017",2,0,NA,2,NA,50,"Huanqiu",NA +107,129,1593,"2017",3,1,55,2,55,55,"Huanqiu",NA +107,129,1595,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,1597,"2017",6,0,99,2,1,10,"Huanqiu",NA +107,129,1598,"2017",3,0,50,3,50,95,"Huanqiu",NA +107,129,1600,"2017",5,1,80,2,80,50,"Huanqiu",NA +107,129,1601,"2017",4,1,90,5,90,NA,"Huanqiu",NA +107,129,1602,"2017",2,0,99,2,1,99,"Huanqiu",NA +107,129,1604,"2017",2,0,50,3,50,50,"Huanqiu",NA +107,129,1606,"2017",3,0,50,3,50,50,"Huanqiu",NA +107,129,1607,"2017",5,0,10,3,90,80,"Huanqiu",NA +107,129,1610,"2017",6,1,99,3,99,99,"Huanqiu",NA +107,129,1611,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1612,"2017",6,0,50,2,50,50,"Huanqiu",NA +107,129,1619,"2017",2,1,1,3,1,1,"Huanqiu",NA +107,129,1623,"2017",3,0,NA,3,NA,NA,"Huanqiu",NA +107,129,1627,"2017",2,1,60,3,60,30,"Huanqiu",NA +107,129,1630,"2017",6,0,50,3,50,60,"Huanqiu",NA +107,129,1632,"2017",3,1,50,2,50,10,"Huanqiu",NA +107,129,1633,"2017",2,1,NA,2,NA,1,"Huanqiu",NA +107,129,1635,"2017",2,0,50,3,50,20,"Huanqiu",NA +107,129,1636,"2017",3,0,90,2,10,0,"Huanqiu",NA +107,129,1637,"2017",5,1,20,3,20,20,"Huanqiu",NA +107,129,1639,"2017",2,0,99,3,1,1,"Huanqiu",NA +107,129,1641,"2017",5,0,80,2,20,99,"Huanqiu",NA +107,129,1645,"2017",3,1,50,3,50,80,"Huanqiu",NA +107,129,1648,"2017",3,1,99,2,99,99,"Huanqiu",NA +107,129,1649,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1651,"2017",4,1,50,5,50,NA,"Huanqiu",NA +107,129,1652,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1654,"2017",6,0,99,3,1,99,"Huanqiu",NA +107,129,1655,"2017",3,0,1,3,99,NA,"Huanqiu",NA +107,129,1656,"2017",4,1,60,5,60,NA,"Huanqiu",NA +107,129,1659,"2017",2,0,50,3,50,50,"Huanqiu",NA +107,129,1662,"2017",2,1,70,2,70,70,"Huanqiu",NA +107,129,1663,"2017",2,1,99,3,99,NA,"Huanqiu",NA +107,129,1665,"2017",2,1,NA,2,NA,NA,"Huanqiu",NA +107,129,1666,"2017",4,1,NA,5,NA,NA,"Huanqiu",NA +107,129,1667,"2017",6,0,99,3,1,99,"Huanqiu",NA +107,129,1673,"2017",5,0,1,3,99,99,"Huanqiu",NA +107,129,1674,"2017",2,1,NA,3,NA,NA,"Huanqiu",NA +107,129,1676,"2017",3,1,96,3,96,95,"Huanqiu",NA +107,129,1678,"2017",2,0,NA,3,NA,NA,"Huanqiu",NA +107,129,1680,"2017",5,1,NA,3,NA,NA,"Huanqiu",NA +107,129,1682,"2017",3,1,60,2,60,6,"Huanqiu",NA +107,129,1685,"2017",3,0,1,2,99,99,"Huanqiu",NA +107,129,1686,"2017",6,0,99,2,1,99,"Huanqiu",NA +107,129,1688,"2017",6,0,80,3,20,20,"Huanqiu",NA +107,129,1689,"2017",2,1,99,2,99,99,"Huanqiu",NA +107,129,1690,"2017",5,0,99,3,1,1,"Huanqiu",NA +107,129,1691,"2017",3,0,70,2,30,50,"Huanqiu",NA +107,129,1697,"2017",6,0,NA,2,NA,40,"Huanqiu",NA +107,129,1699,"2017",2,1,60,2,60,70,"Huanqiu",NA +107,129,1700,"2017",6,1,2,2,2,2,"Huanqiu",NA +107,129,1702,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,1704,"2017",5,0,60,2,40,100,"Huanqiu",NA +107,129,1709,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1710,"2017",5,0,99,3,1,1,"Huanqiu",NA +107,129,1713,"2017",2,1,99,3,99,99,"Huanqiu",NA +107,129,1714,"2017",4,0,NA,5,NA,NA,"Huanqiu",NA +107,129,1717,"2017",2,0,60,3,40,50,"Huanqiu",NA +107,129,1719,"2017",2,0,80,2,20,20,"Huanqiu",NA +107,129,1721,"2017",2,1,1,2,1,99,"Huanqiu",NA +107,129,1723,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1724,"2017",3,0,50,2,50,50,"Huanqiu",NA +107,129,1725,"2017",5,1,1,3,1,NA,"Huanqiu",NA +107,129,1727,"2017",5,0,60,2,40,50,"Huanqiu",NA +107,129,1729,"2017",5,0,NA,3,NA,78,"Huanqiu",NA +107,129,1731,"2017",2,0,78,3,22,20,"Huanqiu",NA +107,129,1732,"2017",5,0,NA,3,NA,NA,"Huanqiu",NA +107,129,1734,"2017",4,1,40,5,40,NA,"Huanqiu",NA +107,129,1738,"2017",2,1,90,2,90,50,"Huanqiu",NA +107,129,1743,"2017",2,1,50,2,50,50,"Huanqiu",NA +107,129,1746,"2017",6,0,50,3,50,50,"Huanqiu",NA +107,129,1748,"2017",2,1,99,2,99,99,"Huanqiu",NA +107,129,1750,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,1751,"2017",5,0,1,3,99,99,"Huanqiu",NA +107,129,1753,"2017",6,1,40,3,40,30,"Huanqiu",NA +107,129,1761,"2017",3,0,68,3,32,71,"Huanqiu",NA +107,129,1762,"2017",5,0,99,2,1,1,"Huanqiu",NA +107,129,1763,"2017",4,0,90,5,10,NA,"Huanqiu",NA +107,129,1764,"2017",3,0,50,3,50,99,"Huanqiu",NA +107,129,1767,"2017",5,0,99,3,1,1,"Huanqiu",NA +107,129,1769,"2017",2,0,1,2,99,99,"Huanqiu",NA +107,129,1771,"2017",5,1,1,2,1,1,"Huanqiu",NA +107,129,1772,"2017",5,1,15,2,15,49,"Huanqiu",NA +107,129,1773,"2017",5,1,NA,3,NA,68,"Huanqiu",NA +107,129,1774,"2017",3,0,99,2,1,1,"Huanqiu",NA +107,129,1775,"2017",2,0,87,3,13,13,"Huanqiu",NA +107,129,1776,"2017",2,0,87,3,13,12,"Huanqiu",NA +107,129,1778,"2017",6,0,88,2,12,11,"Huanqiu",NA +107,129,1780,"2017",2,0,89,3,11,12,"Huanqiu",NA +107,129,1786,"2017",2,1,89,3,89,92,"Huanqiu",NA +107,129,1787,"2017",5,1,NA,3,NA,NA,"Huanqiu",NA +107,129,1789,"2017",2,0,9,3,91,4,"Huanqiu",NA +107,129,1792,"2017",4,1,0,5,0,NA,"Huanqiu",NA +107,129,1795,"2017",5,1,95,2,95,87,"Huanqiu",NA +107,129,1796,"2017",2,1,88,2,88,86,"Huanqiu",NA +107,129,1797,"2017",3,0,75,2,25,12,"Huanqiu",NA +107,129,1798,"2017",2,1,85,2,85,97,"Huanqiu",NA +107,129,1799,"2017",6,0,NA,3,NA,NA,"Huanqiu",NA +107,129,1803,"2017",5,1,87,2,87,99,"Huanqiu",NA +107,129,1805,"2017",4,1,85,5,85,NA,"Huanqiu",NA +107,129,1807,"2017",5,1,50,2,50,50,"Huanqiu",NA +107,129,1809,"2017",2,0,99,3,1,50,"Huanqiu",NA +107,129,1810,"2017",6,1,55,3,55,50,"Huanqiu",NA +107,129,1811,"2017",2,0,50,2,50,99,"Huanqiu",NA +107,129,1812,"2017",3,1,50,3,50,50,"Huanqiu",NA +107,129,1815,"2017",5,0,70,2,30,40,"Huanqiu",NA +107,129,1816,"2017",6,1,70,2,70,50,"Huanqiu",NA +107,129,1817,"2017",5,0,80,3,20,30,"Huanqiu",NA +107,129,1824,"2017",3,0,99,2,1,1,"Huanqiu",NA +107,129,1825,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1826,"2017",6,0,1,2,99,99,"Huanqiu",NA +107,129,1828,"2017",3,0,10,3,90,80,"Huanqiu",NA +107,129,1837,"2017",3,1,0,3,0,0,"Huanqiu",NA +107,129,1838,"2017",6,1,99,2,99,99,"Huanqiu",NA +107,129,1843,"2017",3,0,99,2,1,1,"Huanqiu",NA +107,129,1846,"2017",6,0,100,2,0,100,"Huanqiu",NA +107,129,1850,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1854,"2017",6,1,4,3,4,50,"Huanqiu",NA +107,129,1855,"2017",2,1,99,3,99,99,"Huanqiu",NA +107,129,1860,"2017",2,1,99,3,99,99,"Huanqiu",NA +107,129,1861,"2017",4,0,1,5,99,NA,"Huanqiu",NA +107,129,1866,"2017",3,1,50,3,50,50,"Huanqiu",NA +107,129,1867,"2017",3,0,99,2,1,1,"Huanqiu",NA +107,129,1870,"2017",2,1,100,2,100,100,"Huanqiu",NA +107,129,1871,"2017",6,0,99,2,1,1,"Huanqiu",NA +107,129,1873,"2017",5,1,99,2,99,20,"Huanqiu",NA +107,129,1877,"2017",6,0,1,2,99,99,"Huanqiu",NA +107,129,1878,"2017",5,0,80,2,20,80,"Huanqiu",NA +107,129,1881,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,1885,"2017",5,0,30,3,70,70,"Huanqiu",NA +107,129,1886,"2017",5,1,70,3,70,80,"Huanqiu",NA +107,129,1888,"2017",3,1,1,2,1,99,"Huanqiu",NA +107,129,1892,"2017",2,1,1,2,1,1,"Huanqiu",NA +107,129,1895,"2017",3,1,1,2,1,1,"Huanqiu",NA +107,129,1896,"2017",6,0,1,2,99,99,"Huanqiu",NA +107,129,1897,"2017",6,0,1,2,99,99,"Huanqiu",NA +107,129,1898,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1900,"2017",3,0,66,2,34,40,"Huanqiu",NA +107,129,1905,"2017",6,1,77,3,77,60,"Huanqiu",NA +107,129,1906,"2017",6,0,1,3,99,90,"Huanqiu",NA +107,129,1909,"2017",3,1,70,3,70,70,"Huanqiu",NA +107,129,1911,"2017",6,1,90,2,90,90,"Huanqiu",NA +107,129,1913,"2017",3,1,1,3,1,50,"Huanqiu",NA +107,129,1914,"2017",2,1,50,3,50,50,"Huanqiu",NA +107,129,1915,"2017",3,1,1,3,1,1,"Huanqiu",NA +107,129,1916,"2017",5,1,30,2,30,60,"Huanqiu",NA +107,129,1920,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1926,"2017",3,1,99,3,99,99,"Huanqiu",NA +107,129,1927,"2017",2,0,85,3,15,10,"Huanqiu",NA +107,129,1928,"2017",5,0,95,2,5,10,"Huanqiu",NA +107,129,1930,"2017",4,0,70,5,30,NA,"Huanqiu",NA +107,129,1932,"2017",6,1,99,2,99,50,"Huanqiu",NA +107,129,1934,"2017",2,1,30,2,30,30,"Huanqiu",NA +107,129,1936,"2017",6,0,99,3,1,99,"Huanqiu",NA +107,129,1946,"2017",5,1,1,3,1,1,"Huanqiu",NA +107,129,1947,"2017",5,0,40,3,60,70,"Huanqiu",NA +107,129,1950,"2017",5,1,99,3,99,99,"Huanqiu",NA +107,129,1951,"2017",5,0,50,2,50,50,"Huanqiu",NA +107,129,1952,"2017",3,1,99,3,99,99,"Huanqiu",NA +107,129,1953,"2017",2,0,99,3,1,1,"Huanqiu",NA +107,129,1955,"2017",4,0,99,5,1,NA,"Huanqiu",NA +107,129,1956,"2017",6,0,90,2,10,10,"Huanqiu",NA +107,129,1957,"2017",3,0,1,2,99,99,"Huanqiu",NA +107,129,1959,"2017",2,1,70,3,70,50,"Huanqiu",NA +107,129,1961,"2017",6,1,99,2,99,99,"Huanqiu",NA +107,129,1962,"2017",2,1,90,3,90,90,"Huanqiu",NA +107,129,1963,"2017",2,1,99,2,99,1,"Huanqiu",NA +107,129,1966,"2017",6,0,98,2,2,1,"Huanqiu",NA +107,129,1970,"2017",6,1,99,2,99,80,"Huanqiu",NA +107,129,1977,"2017",2,0,99,3,1,99,"Huanqiu",NA +107,129,1978,"2017",5,1,99,3,99,50,"Huanqiu",NA +107,129,1980,"2017",2,0,88,3,12,NA,"Huanqiu",NA +107,129,1981,"2017",2,0,1,3,99,99,"Huanqiu",NA +107,129,1982,"2017",6,1,NA,3,NA,50,"Huanqiu",NA +107,129,1983,"2017",6,0,NA,2,NA,NA,"Huanqiu",NA +107,129,1984,"2017",6,1,99,3,99,1,"Huanqiu",NA +107,129,1985,"2017",5,1,50,3,50,99,"Huanqiu",NA +107,129,1986,"2017",6,0,99,3,1,1,"Huanqiu",NA +107,129,1987,"2017",6,0,90,2,10,10,"Huanqiu",NA +107,129,1988,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,1989,"2017",6,0,80,2,20,8,"Huanqiu",NA +107,129,1991,"2017",6,0,99,2,1,50,"Huanqiu",NA +107,129,1995,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,1999,"2017",3,1,60,2,60,60,"Huanqiu",NA +107,129,2000,"2017",2,1,90,3,90,80,"Huanqiu",NA +107,129,2001,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,2002,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,2004,"2017",6,1,99,2,99,99,"Huanqiu",NA +107,129,2006,"2017",4,0,50,5,50,NA,"Huanqiu",NA +107,129,2009,"2017",3,1,69,3,69,50,"Huanqiu",NA +107,129,2010,"2017",6,1,10,3,10,20,"Huanqiu",NA +107,129,2012,"2017",5,1,1,3,1,20,"Huanqiu",NA +107,129,2017,"2017",6,0,99,3,1,20,"Huanqiu",NA +107,129,2022,"2017",2,1,20,2,20,50,"Huanqiu",NA +107,129,2023,"2017",3,0,1,2,99,99,"Huanqiu",NA +107,129,2028,"2017",5,1,70,3,70,NA,"Huanqiu",NA +107,129,2032,"2017",2,0,20,2,80,95,"Huanqiu",NA +107,129,2036,"2017",5,1,99,2,99,99,"Huanqiu",NA +107,129,2037,"2017",2,0,1,2,99,99,"Huanqiu",NA +107,129,2039,"2017",5,0,99,2,1,100,"Huanqiu",NA +107,129,2040,"2017",3,1,20,3,20,80,"Huanqiu",NA +107,129,2041,"2017",5,0,100,2,0,99,"Huanqiu",NA +107,129,2043,"2017",5,0,50,3,50,50,"Huanqiu",NA +107,129,2045,"2017",2,1,90,3,90,50,"Huanqiu",NA +107,129,2046,"2017",5,1,99,3,99,1,"Huanqiu",NA +107,129,2047,"2017",3,1,99,2,99,99,"Huanqiu",NA +107,129,2048,"2017",3,0,50,2,50,50,"Huanqiu",NA +107,129,2051,"2017",5,0,90,2,10,1,"Huanqiu",NA +107,129,2053,"2017",5,0,80,3,20,80,"Huanqiu",NA +107,129,2054,"2017",5,1,99,2,99,99,"Huanqiu",NA +107,129,2057,"2017",2,0,0,3,100,NA,"Huanqiu",NA +107,129,2058,"2017",2,0,40,3,60,60,"Huanqiu",NA +107,129,2061,"2017",4,0,5,5,95,NA,"Huanqiu",NA +107,129,2062,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,2063,"2017",2,1,50,2,50,99,"Huanqiu",NA +107,129,2066,"2017",5,1,NA,3,NA,NA,"Huanqiu",NA +107,129,2068,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,2070,"2017",2,1,99,3,99,99,"Huanqiu",NA +107,129,2073,"2017",3,0,99,3,1,1,"Huanqiu",NA +107,129,2074,"2017",4,0,50,5,50,NA,"Huanqiu",NA +107,129,2076,"2017",5,0,99,3,1,1,"Huanqiu",NA +107,129,2079,"2017",2,1,80,3,80,80,"Huanqiu",NA +107,129,2085,"2017",2,1,99,2,99,99,"Huanqiu",NA +107,129,2087,"2017",3,1,99,3,99,99,"Huanqiu",NA +107,129,2091,"2017",5,0,100,2,0,0,"Huanqiu",NA +107,129,2093,"2017",3,1,70,3,70,80,"Huanqiu",NA +107,129,2095,"2017",4,1,99,5,99,NA,"Huanqiu",NA +107,129,2102,"2017",2,1,99,2,99,99,"Huanqiu",NA +107,129,2104,"2017",2,0,99,2,1,1,"Huanqiu",NA +107,129,2105,"2017",5,1,50,2,50,50,"Huanqiu",NA +107,129,2106,"2017",5,0,50,3,50,1,"Huanqiu",NA +107,129,2108,"2017",2,1,9,2,9,99,"Huanqiu",NA +107,129,2114,"2017",2,0,1,3,99,NA,"Huanqiu",NA +107,129,2115,"2017",6,1,99,2,99,99,"Huanqiu",NA +107,129,2120,"2017",2,1,50,2,50,50,"Huanqiu",NA +107,129,2125,"2017",4,0,1,5,99,NA,"Huanqiu",NA +107,129,2129,"2017",2,0,98,2,2,NA,"Huanqiu",NA +107,129,2132,"2017",3,0,50,2,50,50,"Huanqiu",NA +107,129,2133,"2017",5,1,99,2,99,99,"Huanqiu",NA +107,129,2134,"2017",5,1,8,2,8,8,"Huanqiu",NA +107,131,4,"2017",5,1,NA,3,NA,NA,"Xinhua",NA +107,131,5,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +107,131,9,"2017",2,0,99,2,1,1,"Xinhua",NA +107,131,14,"2017",2,1,1,3,1,1,"Xinhua",NA +107,131,16,"2017",5,1,85,3,85,80,"Xinhua",NA +107,131,17,"2017",5,1,99,3,99,1,"Xinhua",NA +107,131,18,"2017",2,0,99,2,1,1,"Xinhua",NA +107,131,19,"2017",2,1,99,3,99,99,"Xinhua",NA +107,131,23,"2017",5,1,50,2,50,99,"Xinhua",NA +107,131,26,"2017",4,1,60,2,60,30,"Xinhua",NA +107,131,27,"2017",5,1,99,3,99,1,"Xinhua",NA +107,131,28,"2017",4,1,80,2,80,99,"Xinhua",NA +107,131,29,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +107,131,30,"2017",6,NA,NA,2,NA,NA,"Xinhua",NA +107,131,31,"2017",3,NA,NA,3,NA,NA,"Xinhua",NA +107,131,39,"2017",6,1,30,2,30,30,"Xinhua",NA +107,131,40,"2017",2,1,2,3,2,2,"Xinhua",NA +107,131,45,"2017",5,0,22,3,78,67,"Xinhua",NA +107,131,54,"2017",6,0,99,3,1,91,"Xinhua",NA +107,131,55,"2017",6,0,90,2,10,50,"Xinhua",NA +107,131,56,"2017",3,0,80,2,20,50,"Xinhua",NA +107,131,60,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,65,"2017",5,0,90,3,10,15,"Xinhua",NA +107,131,67,"2017",2,1,60,3,60,60,"Xinhua",NA +107,131,68,"2017",4,1,99,2,99,1,"Xinhua",NA +107,131,69,"2017",6,1,99,3,99,99,"Xinhua",NA +107,131,71,"2017",3,1,99,2,99,50,"Xinhua",NA +107,131,1171,"2017",2,1,0,2,0,0,"Xinhua",NA +107,131,1172,"2017",5,0,100,2,0,0,"Xinhua",NA +107,131,1174,"2017",3,1,0,2,0,0,"Xinhua",NA +107,131,1175,"2017",2,0,50,3,50,50,"Xinhua",NA +107,131,1178,"2017",4,1,20,2,20,40,"Xinhua",NA +107,131,1181,"2017",5,1,30,2,30,50,"Xinhua",NA +107,131,1183,"2017",6,1,20,3,20,50,"Xinhua",NA +107,131,1189,"2017",2,0,99,3,1,1,"Xinhua",NA +107,131,1190,"2017",6,0,20,2,80,70,"Xinhua",NA +107,131,1191,"2017",4,1,NA,2,NA,NA,"Xinhua",NA +107,131,1199,"2017",6,0,50,2,50,50,"Xinhua",NA +107,131,1205,"2017",4,1,20,2,20,50,"Xinhua",NA +107,131,1209,"2017",5,0,100,3,0,0,"Xinhua",NA +107,131,1210,"2017",5,0,40,2,60,60,"Xinhua",NA +107,131,1211,"2017",3,1,40,3,40,45,"Xinhua",NA +107,131,1215,"2017",5,0,20,3,80,80,"Xinhua",NA +107,131,1217,"2017",6,0,99,3,1,99,"Xinhua",NA +107,131,1219,"2017",5,1,99,2,99,11,"Xinhua",NA +107,131,1224,"2017",2,1,99,2,99,99,"Xinhua",NA +107,131,1227,"2017",3,0,99,2,1,50,"Xinhua",NA +107,131,1228,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1231,"2017",5,0,NA,3,NA,50,"Xinhua",NA +107,131,1232,"2017",4,1,1,2,1,1,"Xinhua",NA +107,131,1233,"2017",2,1,99,3,99,1,"Xinhua",NA +107,131,1236,"2017",2,1,50,3,50,1,"Xinhua",NA +107,131,1238,"2017",2,1,NA,2,NA,90,"Xinhua",NA +107,131,1246,"2017",5,0,80,3,20,25,"Xinhua",NA +107,131,1247,"2017",6,0,50,2,50,50,"Xinhua",NA +107,131,1251,"2017",2,0,NA,3,NA,1,"Xinhua",NA +107,131,1253,"2017",2,0,99,3,1,1,"Xinhua",NA +107,131,1254,"2017",6,1,50,3,50,1,"Xinhua",NA +107,131,1255,"2017",2,1,NA,3,NA,1,"Xinhua",NA +107,131,1256,"2017",5,1,99,2,99,99,"Xinhua",NA +107,131,1263,"2017",6,1,60,2,60,5,"Xinhua",NA +107,131,1265,"2017",5,1,100,2,100,100,"Xinhua",NA +107,131,1267,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1270,"2017",3,0,50,2,50,50,"Xinhua",NA +107,131,1274,"2017",6,1,50,3,50,50,"Xinhua",NA +107,131,1276,"2017",5,1,1,2,1,1,"Xinhua",NA +107,131,1277,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1279,"2017",4,1,95,2,95,100,"Xinhua",NA +107,131,1282,"2017",3,1,75,2,75,80,"Xinhua",NA +107,131,1283,"2017",6,1,1,2,1,1,"Xinhua",NA +107,131,1284,"2017",4,1,1,2,1,99,"Xinhua",NA +107,131,1285,"2017",6,1,99,2,99,1,"Xinhua",NA +107,131,1289,"2017",5,1,68,3,68,24,"Xinhua",NA +107,131,1290,"2017",3,0,0,3,100,100,"Xinhua",NA +107,131,1291,"2017",6,0,1,2,99,99,"Xinhua",NA +107,131,1292,"2017",6,0,99,2,1,1,"Xinhua",NA +107,131,1294,"2017",4,0,50,2,50,99,"Xinhua",NA +107,131,1296,"2017",3,1,66,3,66,66,"Xinhua",NA +107,131,1300,"2017",2,0,100,3,0,NA,"Xinhua",NA +107,131,1304,"2017",5,1,1,2,1,1,"Xinhua",NA +107,131,1308,"2017",5,0,NA,3,NA,50,"Xinhua",NA +107,131,1309,"2017",2,0,100,3,0,20,"Xinhua",NA +107,131,1311,"2017",4,1,50,2,50,50,"Xinhua",NA +107,131,1314,"2017",4,1,NA,2,NA,NA,"Xinhua",NA +107,131,1318,"2017",3,0,99,2,1,1,"Xinhua",NA +107,131,1320,"2017",2,0,99,3,1,99,"Xinhua",NA +107,131,1321,"2017",4,1,50,2,50,50,"Xinhua",NA +107,131,1322,"2017",4,1,50,2,50,50,"Xinhua",NA +107,131,1325,"2017",6,0,99,3,1,99,"Xinhua",NA +107,131,1333,"2017",5,1,99,2,99,99,"Xinhua",NA +107,131,1337,"2017",4,0,1,2,99,99,"Xinhua",NA +107,131,1339,"2017",4,1,99,2,99,99,"Xinhua",NA +107,131,1340,"2017",3,1,99,3,99,99,"Xinhua",NA +107,131,1343,"2017",3,1,99,2,99,99,"Xinhua",NA +107,131,1344,"2017",5,0,80,3,20,20,"Xinhua",NA +107,131,1345,"2017",2,1,70,3,70,50,"Xinhua",NA +107,131,1346,"2017",6,1,1,3,1,1,"Xinhua",NA +107,131,1347,"2017",5,0,99,2,1,1,"Xinhua",NA +107,131,1348,"2017",3,1,60,3,60,6,"Xinhua",NA +107,131,1351,"2017",6,1,80,2,80,80,"Xinhua",NA +107,131,1352,"2017",3,1,99,2,99,99,"Xinhua",NA +107,131,1355,"2017",5,0,99,2,1,50,"Xinhua",NA +107,131,1356,"2017",2,1,1,3,1,1,"Xinhua",NA +107,131,1357,"2017",6,1,55,2,55,50,"Xinhua",NA +107,131,1362,"2017",5,1,60,2,60,60,"Xinhua",NA +107,131,1364,"2017",2,1,99,2,99,99,"Xinhua",NA +107,131,1368,"2017",5,0,99,3,1,1,"Xinhua",NA +107,131,1369,"2017",2,0,80,2,20,50,"Xinhua",NA +107,131,1375,"2017",5,0,30,2,70,70,"Xinhua",NA +107,131,1377,"2017",4,1,20,2,20,20,"Xinhua",NA +107,131,1379,"2017",6,1,100,2,100,1,"Xinhua",NA +107,131,1381,"2017",2,1,22,3,22,20,"Xinhua",NA +107,131,1388,"2017",6,1,50,2,50,70,"Xinhua",NA +107,131,1390,"2017",2,0,10,2,90,90,"Xinhua",NA +107,131,1392,"2017",2,0,99,3,1,NA,"Xinhua",NA +107,131,1394,"2017",4,1,50,2,50,50,"Xinhua",NA +107,131,1397,"2017",2,0,99,3,1,99,"Xinhua",NA +107,131,1399,"2017",6,1,30,3,30,60,"Xinhua",NA +107,131,1400,"2017",5,0,1,3,99,99,"Xinhua",NA +107,131,1402,"2017",4,0,20,2,80,90,"Xinhua",NA +107,131,1403,"2017",6,1,99,2,99,99,"Xinhua",NA +107,131,1406,"2017",5,0,99,3,1,1,"Xinhua",NA +107,131,1407,"2017",5,0,40,3,60,50,"Xinhua",NA +107,131,1408,"2017",4,1,1,2,1,99,"Xinhua",NA +107,131,1410,"2017",3,1,99,3,99,99,"Xinhua",NA +107,131,1411,"2017",3,0,99,2,1,1,"Xinhua",NA +107,131,1413,"2017",5,1,99,3,99,99,"Xinhua",NA +107,131,1417,"2017",2,1,40,2,40,40,"Xinhua",NA +107,131,1418,"2017",2,0,99,3,1,1,"Xinhua",NA +107,131,1421,"2017",3,0,99,3,1,1,"Xinhua",NA +107,131,1426,"2017",3,0,99,2,1,1,"Xinhua",NA +107,131,1427,"2017",6,1,99,2,99,NA,"Xinhua",NA +107,131,1430,"2017",6,1,99,2,99,99,"Xinhua",NA +107,131,1434,"2017",2,1,99,3,99,1,"Xinhua",NA +107,131,1435,"2017",2,0,99,3,1,NA,"Xinhua",NA +107,131,1436,"2017",4,0,99,2,1,99,"Xinhua",NA +107,131,1439,"2017",2,1,99,2,99,99,"Xinhua",NA +107,131,1440,"2017",2,1,99,2,99,99,"Xinhua",NA +107,131,1444,"2017",5,0,1,2,99,99,"Xinhua",NA +107,131,1449,"2017",2,1,99,3,99,99,"Xinhua",NA +107,131,1450,"2017",6,0,30,2,70,70,"Xinhua",NA +107,131,1454,"2017",2,0,99,2,1,1,"Xinhua",NA +107,131,1457,"2017",6,0,1,3,99,99,"Xinhua",NA +107,131,1460,"2017",6,0,99,2,1,99,"Xinhua",NA +107,131,1461,"2017",2,0,50,3,50,50,"Xinhua",NA +107,131,1462,"2017",4,1,1,2,1,10,"Xinhua",NA +107,131,1463,"2017",2,0,50,3,50,89,"Xinhua",NA +107,131,1464,"2017",5,0,99,3,1,1,"Xinhua",NA +107,131,1465,"2017",6,0,99,3,1,1,"Xinhua",NA +107,131,1467,"2017",6,1,1,3,1,1,"Xinhua",NA +107,131,1468,"2017",4,1,50,2,50,50,"Xinhua",NA +107,131,1469,"2017",4,1,1,2,1,1,"Xinhua",NA +107,131,1470,"2017",6,1,99,2,99,50,"Xinhua",NA +107,131,1471,"2017",4,1,99,2,99,99,"Xinhua",NA +107,131,1475,"2017",5,1,NA,2,NA,99,"Xinhua",NA +107,131,1476,"2017",2,1,1,3,1,1,"Xinhua",NA +107,131,1477,"2017",5,1,50,2,50,50,"Xinhua",NA +107,131,1481,"2017",5,1,30,3,30,50,"Xinhua",NA +107,131,1483,"2017",2,0,99,3,1,1,"Xinhua",NA +107,131,1486,"2017",4,0,1,2,99,99,"Xinhua",NA +107,131,1488,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1492,"2017",3,0,2,2,98,99,"Xinhua",NA +107,131,1495,"2017",4,1,99,2,99,1,"Xinhua",NA +107,131,1496,"2017",3,0,99,3,1,99,"Xinhua",NA +107,131,1501,"2017",6,0,99,2,1,1,"Xinhua",NA +107,131,1503,"2017",4,1,NA,2,NA,99,"Xinhua",NA +107,131,1512,"2017",5,1,99,3,99,1,"Xinhua",NA +107,131,1513,"2017",2,0,99,3,1,50,"Xinhua",NA +107,131,1516,"2017",3,0,NA,2,NA,50,"Xinhua",NA +107,131,1517,"2017",5,1,NA,2,NA,95,"Xinhua",NA +107,131,1518,"2017",4,1,99,2,99,90,"Xinhua",NA +107,131,1519,"2017",3,1,45,3,45,54,"Xinhua",NA +107,131,1521,"2017",6,0,1,3,99,99,"Xinhua",NA +107,131,1523,"2017",3,1,3,2,3,2,"Xinhua",NA +107,131,1525,"2017",3,1,60,3,60,90,"Xinhua",NA +107,131,1526,"2017",5,1,NA,2,NA,50,"Xinhua",NA +107,131,1528,"2017",6,1,1,3,1,1,"Xinhua",NA +107,131,1531,"2017",4,0,99,2,1,50,"Xinhua",NA +107,131,1532,"2017",3,0,60,2,40,30,"Xinhua",NA +107,131,1535,"2017",6,1,99,2,99,99,"Xinhua",NA +107,131,1541,"2017",2,1,99,2,99,99,"Xinhua",NA +107,131,1543,"2017",2,1,50,2,50,1,"Xinhua",NA +107,131,1544,"2017",6,0,99,3,1,50,"Xinhua",NA +107,131,1545,"2017",6,1,1,3,1,1,"Xinhua",NA +107,131,1546,"2017",5,0,80,2,20,35,"Xinhua",NA +107,131,1549,"2017",2,1,99,2,99,NA,"Xinhua",NA +107,131,1550,"2017",4,0,50,2,50,1,"Xinhua",NA +107,131,1551,"2017",2,0,1,2,99,99,"Xinhua",NA +107,131,1554,"2017",3,0,90,2,10,20,"Xinhua",NA +107,131,1556,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1558,"2017",6,1,99,3,99,50,"Xinhua",NA +107,131,1559,"2017",6,1,66,3,66,1,"Xinhua",NA +107,131,1560,"2017",4,1,1,2,1,50,"Xinhua",NA +107,131,1565,"2017",2,0,1,3,99,1,"Xinhua",NA +107,131,1566,"2017",2,0,99,2,1,1,"Xinhua",NA +107,131,1567,"2017",2,0,99,3,1,50,"Xinhua",NA +107,131,1568,"2017",4,1,1,2,1,NA,"Xinhua",NA +107,131,1569,"2017",3,1,50,3,50,50,"Xinhua",NA +107,131,1571,"2017",2,0,70,2,30,30,"Xinhua",NA +107,131,1573,"2017",3,1,1,3,1,1,"Xinhua",NA +107,131,1576,"2017",3,1,99,3,99,99,"Xinhua",NA +107,131,1578,"2017",2,0,80,2,20,1,"Xinhua",NA +107,131,1582,"2017",3,0,90,3,10,10,"Xinhua",NA +107,131,1583,"2017",2,0,NA,2,NA,92,"Xinhua",NA +107,131,1589,"2017",4,1,9,2,9,90,"Xinhua",NA +107,131,1590,"2017",4,1,80,2,80,90,"Xinhua",NA +107,131,1592,"2017",3,1,99,3,99,99,"Xinhua",NA +107,131,1595,"2017",5,0,99,3,1,1,"Xinhua",NA +107,131,1596,"2017",6,0,1,3,99,99,"Xinhua",NA +107,131,1599,"2017",3,1,4,3,4,50,"Xinhua",NA +107,131,1603,"2017",4,1,NA,2,NA,NA,"Xinhua",NA +107,131,1610,"2017",6,1,99,2,99,99,"Xinhua",NA +107,131,1612,"2017",6,0,50,3,50,50,"Xinhua",NA +107,131,1614,"2017",5,1,80,2,80,0,"Xinhua",NA +107,131,1616,"2017",3,1,99,3,99,NA,"Xinhua",NA +107,131,1620,"2017",4,1,50,2,50,99,"Xinhua",NA +107,131,1621,"2017",4,0,80,2,20,30,"Xinhua",NA +107,131,1629,"2017",6,0,60,2,40,60,"Xinhua",NA +107,131,1632,"2017",3,1,50,3,50,50,"Xinhua",NA +107,131,1635,"2017",2,0,80,2,20,20,"Xinhua",NA +107,131,1636,"2017",3,0,80,3,20,10,"Xinhua",NA +107,131,1637,"2017",5,1,20,2,20,40,"Xinhua",NA +107,131,1639,"2017",2,0,99,2,1,99,"Xinhua",NA +107,131,1641,"2017",5,0,85,3,15,20,"Xinhua",NA +107,131,1642,"2017",5,0,99,2,1,1,"Xinhua",NA +107,131,1643,"2017",6,0,50,2,50,50,"Xinhua",NA +107,131,1644,"2017",3,0,99,2,1,1,"Xinhua",NA +107,131,1646,"2017",3,1,70,2,70,10,"Xinhua",NA +107,131,1647,"2017",3,1,NA,3,NA,99,"Xinhua",NA +107,131,1650,"2017",5,1,32,2,32,48,"Xinhua",NA +107,131,1653,"2017",6,1,50,3,50,50,"Xinhua",NA +107,131,1659,"2017",2,0,50,2,50,50,"Xinhua",NA +107,131,1660,"2017",4,0,NA,2,NA,50,"Xinhua",NA +107,131,1662,"2017",2,1,80,3,80,70,"Xinhua",NA +107,131,1663,"2017",2,1,NA,2,NA,NA,"Xinhua",NA +107,131,1664,"2017",6,0,1,2,99,99,"Xinhua",NA +107,131,1668,"2017",4,1,99,2,99,99,"Xinhua",NA +107,131,1670,"2017",6,1,99,2,99,99,"Xinhua",NA +107,131,1671,"2017",2,0,99,3,1,99,"Xinhua",NA +107,131,1673,"2017",5,0,1,2,99,99,"Xinhua",NA +107,131,1676,"2017",3,1,95,2,95,88,"Xinhua",NA +107,131,1678,"2017",2,0,NA,2,NA,NA,"Xinhua",NA +107,131,1679,"2017",4,0,99,2,1,50,"Xinhua",NA +107,131,1680,"2017",5,1,NA,2,NA,1,"Xinhua",NA +107,131,1681,"2017",4,1,1,2,1,1,"Xinhua",NA +107,131,1682,"2017",3,1,70,3,70,60,"Xinhua",NA +107,131,1684,"2017",2,1,99,2,99,99,"Xinhua",NA +107,131,1690,"2017",5,0,99,2,1,1,"Xinhua",NA +107,131,1691,"2017",3,0,80,3,20,30,"Xinhua",NA +107,131,1692,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1694,"2017",6,1,80,2,80,99,"Xinhua",NA +107,131,1695,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1696,"2017",4,0,95,2,5,90,"Xinhua",NA +107,131,1698,"2017",5,1,70,3,70,44,"Xinhua",NA +107,131,1700,"2017",6,1,2,3,2,2,"Xinhua",NA +107,131,1702,"2017",3,0,99,2,1,1,"Xinhua",NA +107,131,1703,"2017",2,1,1,2,1,1,"Xinhua",NA +107,131,1704,"2017",5,0,90,3,10,40,"Xinhua",NA +107,131,1707,"2017",6,0,80,3,20,70,"Xinhua",NA +107,131,1710,"2017",5,0,99,2,1,1,"Xinhua",NA +107,131,1712,"2017",6,0,50,2,50,50,"Xinhua",NA +107,131,1713,"2017",2,1,99,2,99,99,"Xinhua",NA +107,131,1717,"2017",2,0,50,2,50,56,"Xinhua",NA +107,131,1718,"2017",4,1,98,2,98,49,"Xinhua",NA +107,131,1724,"2017",3,0,99,3,1,50,"Xinhua",NA +107,131,1725,"2017",5,1,NA,2,NA,1,"Xinhua",NA +107,131,1726,"2017",2,1,20,2,20,40,"Xinhua",NA +107,131,1729,"2017",5,0,22,2,78,67,"Xinhua",NA +107,131,1737,"2017",3,1,30,3,30,70,"Xinhua",NA +107,131,1739,"2017",6,1,50,2,50,50,"Xinhua",NA +107,131,1742,"2017",5,0,99,2,1,1,"Xinhua",NA +107,131,1743,"2017",2,1,50,3,50,50,"Xinhua",NA +107,131,1747,"2017",3,0,99,3,1,50,"Xinhua",NA +107,131,1751,"2017",5,0,1,2,99,99,"Xinhua",NA +107,131,1754,"2017",4,0,99,2,1,99,"Xinhua",NA +107,131,1755,"2017",6,0,30,3,70,80,"Xinhua",NA +107,131,1757,"2017",6,0,75,3,25,30,"Xinhua",NA +107,131,1758,"2017",5,1,89,3,89,59,"Xinhua",NA +107,131,1760,"2017",3,1,10,3,10,11,"Xinhua",NA +107,131,1762,"2017",5,0,99,3,1,1,"Xinhua",NA +107,131,1765,"2017",3,1,99,3,99,NA,"Xinhua",NA +107,131,1767,"2017",5,0,99,2,1,0,"Xinhua",NA +107,131,1769,"2017",2,0,1,3,99,99,"Xinhua",NA +107,131,1770,"2017",2,0,100,3,0,32,"Xinhua",NA +107,131,1771,"2017",5,1,1,3,1,1,"Xinhua",NA +107,131,1777,"2017",2,0,90,3,10,NA,"Xinhua",NA +107,131,1779,"2017",6,0,97,2,3,4,"Xinhua",NA +107,131,1783,"2017",4,1,1,2,1,NA,"Xinhua",NA +107,131,1789,"2017",2,0,96,2,4,47,"Xinhua",NA +107,131,1794,"2017",6,1,93,3,93,88,"Xinhua",NA +107,131,1795,"2017",5,1,NA,3,NA,95,"Xinhua",NA +107,131,1798,"2017",2,1,86,3,86,85,"Xinhua",NA +107,131,1800,"2017",5,0,89,3,11,NA,"Xinhua",NA +107,131,1801,"2017",2,1,NA,2,NA,88,"Xinhua",NA +107,131,1804,"2017",2,1,NA,3,NA,88,"Xinhua",NA +107,131,1806,"2017",2,0,51,2,49,49,"Xinhua",NA +107,131,1811,"2017",2,0,99,3,1,50,"Xinhua",NA +107,131,1815,"2017",5,0,80,3,20,30,"Xinhua",NA +107,131,1816,"2017",6,1,80,3,80,70,"Xinhua",NA +107,131,1818,"2017",6,1,80,3,80,60,"Xinhua",NA +107,131,1823,"2017",4,1,NA,2,NA,1,"Xinhua",NA +107,131,1826,"2017",6,0,1,3,99,99,"Xinhua",NA +107,131,1829,"2017",5,1,1,3,1,1,"Xinhua",NA +107,131,1830,"2017",5,0,60,2,40,20,"Xinhua",NA +107,131,1831,"2017",5,1,99,3,99,50,"Xinhua",NA +107,131,1832,"2017",5,0,1,2,99,99,"Xinhua",NA +107,131,1834,"2017",4,1,99,2,99,1,"Xinhua",NA +107,131,1835,"2017",2,1,99,2,99,1,"Xinhua",NA +107,131,1837,"2017",3,1,0,2,0,0,"Xinhua",NA +107,131,1840,"2017",4,1,30,2,30,30,"Xinhua",NA +107,131,1843,"2017",3,0,99,3,1,1,"Xinhua",NA +107,131,1845,"2017",6,1,1,2,1,1,"Xinhua",NA +107,131,1847,"2017",3,1,99,3,99,99,"Xinhua",NA +107,131,1848,"2017",2,1,99,3,99,99,"Xinhua",NA +107,131,1851,"2017",6,1,1,3,1,1,"Xinhua",NA +107,131,1852,"2017",2,0,89,2,11,11,"Xinhua",NA +107,131,1855,"2017",2,1,99,2,99,1,"Xinhua",NA +107,131,1857,"2017",6,0,50,2,50,NA,"Xinhua",NA +107,131,1858,"2017",2,1,99,2,99,NA,"Xinhua",NA +107,131,1864,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1865,"2017",6,1,70,3,70,50,"Xinhua",NA +107,131,1867,"2017",3,0,99,3,1,1,"Xinhua",NA +107,131,1868,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1870,"2017",2,1,100,3,100,100,"Xinhua",NA +107,131,1871,"2017",6,0,99,3,1,1,"Xinhua",NA +107,131,1872,"2017",3,1,99,3,99,99,"Xinhua",NA +107,131,1873,"2017",5,1,99,3,99,99,"Xinhua",NA +107,131,1875,"2017",5,0,100,2,0,0,"Xinhua",NA +107,131,1876,"2017",6,1,89,3,89,99,"Xinhua",NA +107,131,1877,"2017",6,0,1,3,99,99,"Xinhua",NA +107,131,1878,"2017",5,0,80,3,20,20,"Xinhua",NA +107,131,1879,"2017",6,1,20,3,20,50,"Xinhua",NA +107,131,1880,"2017",4,0,99,2,1,1,"Xinhua",NA +107,131,1881,"2017",3,0,99,2,1,1,"Xinhua",NA +107,131,1882,"2017",5,1,50,3,50,1,"Xinhua",NA +107,131,1883,"2017",5,0,70,3,30,40,"Xinhua",NA +107,131,1885,"2017",5,0,30,2,70,70,"Xinhua",NA +107,131,1887,"2017",5,0,99,3,1,1,"Xinhua",NA +107,131,1888,"2017",3,1,1,3,1,1,"Xinhua",NA +107,131,1890,"2017",5,1,0,3,0,0,"Xinhua",NA +107,131,1892,"2017",2,1,80,3,80,1,"Xinhua",NA +107,131,1893,"2017",3,0,99,2,1,20,"Xinhua",NA +107,131,1894,"2017",4,0,50,2,50,50,"Xinhua",NA +107,131,1895,"2017",3,1,NA,3,NA,1,"Xinhua",NA +107,131,1897,"2017",6,0,1,3,99,99,"Xinhua",NA +107,131,1902,"2017",5,0,99,2,1,1,"Xinhua",NA +107,131,1911,"2017",6,1,90,3,90,90,"Xinhua",NA +107,131,1912,"2017",6,0,1,2,99,99,"Xinhua",NA +107,131,1913,"2017",3,1,50,2,50,50,"Xinhua",NA +107,131,1914,"2017",2,1,50,2,50,99,"Xinhua",NA +107,131,1917,"2017",5,0,50,3,50,1,"Xinhua",NA +107,131,1919,"2017",6,0,1,3,99,99,"Xinhua",NA +107,131,1924,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +107,131,1926,"2017",3,1,99,2,99,99,"Xinhua",NA +107,131,1928,"2017",5,0,99,3,1,5,"Xinhua",NA +107,131,1929,"2017",5,1,99,3,99,1,"Xinhua",NA +107,131,1931,"2017",5,0,90,3,10,50,"Xinhua",NA +107,131,1933,"2017",6,0,80,2,20,40,"Xinhua",NA +107,131,1934,"2017",2,1,30,3,30,30,"Xinhua",NA +107,131,1939,"2017",2,0,99,2,1,1,"Xinhua",NA +107,131,1940,"2017",4,1,1,2,1,50,"Xinhua",NA +107,131,1941,"2017",5,1,99,3,99,99,"Xinhua",NA +107,131,1945,"2017",2,1,99,3,99,1,"Xinhua",NA +107,131,1948,"2017",2,0,10,2,90,90,"Xinhua",NA +107,131,1952,"2017",3,1,99,2,99,99,"Xinhua",NA +107,131,1954,"2017",4,1,99,2,99,99,"Xinhua",NA +107,131,1961,"2017",6,1,1,3,1,99,"Xinhua",NA +107,131,1966,"2017",6,0,95,3,5,2,"Xinhua",NA +107,131,1967,"2017",6,1,99,3,99,99,"Xinhua",NA +107,131,1971,"2017",3,1,100,3,100,100,"Xinhua",NA +107,131,1972,"2017",5,0,NA,2,NA,50,"Xinhua",NA +107,131,1974,"2017",5,0,50,3,50,50,"Xinhua",NA +107,131,1976,"2017",3,1,20,2,20,20,"Xinhua",NA +107,131,1978,"2017",5,1,50,2,50,99,"Xinhua",NA +107,131,1980,"2017",2,0,NA,2,NA,NA,"Xinhua",NA +107,131,1981,"2017",2,0,1,2,99,99,"Xinhua",NA +107,131,1986,"2017",6,0,99,2,1,99,"Xinhua",NA +107,131,1991,"2017",6,0,50,3,50,1,"Xinhua",NA +107,131,1993,"2017",5,0,90,2,10,12,"Xinhua",NA +107,131,1995,"2017",3,0,99,2,1,3,"Xinhua",NA +107,131,1998,"2017",5,0,75,2,25,50,"Xinhua",NA +107,131,2000,"2017",2,1,80,2,80,70,"Xinhua",NA +107,131,2005,"2017",3,0,80,3,20,50,"Xinhua",NA +107,131,2007,"2017",3,1,92,2,92,100,"Xinhua",NA +107,131,2008,"2017",5,0,100,3,0,1,"Xinhua",NA +107,131,2010,"2017",6,1,20,2,20,40,"Xinhua",NA +107,131,2012,"2017",5,1,20,2,20,90,"Xinhua",NA +107,131,2013,"2017",5,1,10,2,10,20,"Xinhua",NA +107,131,2014,"2017",2,0,90,2,10,1,"Xinhua",NA +107,131,2015,"2017",5,1,1,2,1,1,"Xinhua",NA +107,131,2016,"2017",6,0,99,2,1,1,"Xinhua",NA +107,131,2018,"2017",5,1,10,2,10,50,"Xinhua",NA +107,131,2021,"2017",3,0,80,3,20,40,"Xinhua",NA +107,131,2024,"2017",4,1,1,2,1,10,"Xinhua",NA +107,131,2026,"2017",4,0,80,2,20,50,"Xinhua",NA +107,131,2028,"2017",5,1,NA,2,NA,70,"Xinhua",NA +107,131,2031,"2017",4,0,50,2,50,50,"Xinhua",NA +107,131,2035,"2017",6,1,90,2,90,90,"Xinhua",NA +107,131,2037,"2017",2,0,0,3,100,99,"Xinhua",NA +107,131,2042,"2017",2,0,1,3,99,99,"Xinhua",NA +107,131,2043,"2017",5,0,50,2,50,80,"Xinhua",NA +107,131,2045,"2017",2,1,50,2,50,90,"Xinhua",NA +107,131,2050,"2017",6,1,99,2,99,99,"Xinhua",NA +107,131,2052,"2017",2,1,99,2,99,99,"Xinhua",NA +107,131,2055,"2017",4,0,60,2,40,30,"Xinhua",NA +107,131,2058,"2017",2,0,40,2,60,40,"Xinhua",NA +107,131,2060,"2017",4,0,99,2,1,99,"Xinhua",NA +107,131,2062,"2017",3,0,99,2,1,1,"Xinhua",NA +107,131,2064,"2017",2,1,99,3,99,50,"Xinhua",NA +107,131,2069,"2017",4,1,99,2,99,99,"Xinhua",NA +107,131,2072,"2017",4,1,70,2,70,80,"Xinhua",NA +107,131,2076,"2017",5,0,99,2,1,1,"Xinhua",NA +107,131,2079,"2017",2,1,80,2,80,99,"Xinhua",NA +107,131,2080,"2017",2,0,70,3,30,50,"Xinhua",NA +107,131,2083,"2017",2,1,99,3,99,99,"Xinhua",NA +107,131,2089,"2017",6,0,NA,3,NA,NA,"Xinhua",NA +107,131,2090,"2017",6,1,99,2,99,99,"Xinhua",NA +107,131,2091,"2017",5,0,100,3,0,0,"Xinhua",NA +107,131,2092,"2017",4,0,70,2,30,60,"Xinhua",NA +107,131,2093,"2017",3,1,80,2,80,70,"Xinhua",NA +107,131,2099,"2017",3,1,99,3,99,99,"Xinhua",NA +107,131,2103,"2017",2,1,1,3,1,1,"Xinhua",NA +107,131,2105,"2017",5,1,NA,3,NA,50,"Xinhua",NA +107,131,2106,"2017",5,0,99,2,1,1,"Xinhua",NA +107,131,2107,"2017",3,0,99,3,1,1,"Xinhua",NA +107,131,2113,"2017",3,0,99,2,1,1,"Xinhua",NA +107,131,2114,"2017",2,0,NA,2,NA,99,"Xinhua",NA +107,131,2117,"2017",2,0,1,3,99,99,"Xinhua",NA +107,131,2122,"2017",3,0,1,2,99,NA,"Xinhua",NA +107,131,2123,"2017",2,0,50,3,50,50,"Xinhua",NA +107,131,2126,"2017",5,0,99,3,1,1,"Xinhua",NA +107,131,2128,"2017",3,1,80,3,80,80,"Xinhua",NA +107,131,2130,"2017",2,0,80,2,20,40,"Xinhua",NA +107,131,2132,"2017",3,0,60,3,40,50,"Xinhua",NA +107,131,2133,"2017",5,1,99,3,99,99,"Xinhua",NA +108,NA,1,"2017",6,1,90,1,90,NA,NA,NA +108,NA,2,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,3,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,4,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,5,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,5,"2017",1,1,NA,2,NA,NA,NA,NA +108,NA,5,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,5,"2017",1,1,NA,4,NA,NA,NA,NA +108,NA,6,"2017",5,0,0,1,100,NA,NA,NA +108,NA,7,"2017",5,1,80,1,80,NA,NA,NA +108,NA,8,"2017",2,0,1,1,99,NA,NA,NA +108,NA,9,"2017",6,1,99,1,99,NA,NA,NA +108,NA,10,"2017",2,0,1,1,99,NA,NA,NA +108,NA,11,"2017",6,1,50,1,50,NA,NA,NA +108,NA,12,"2017",4,0,99,1,1,NA,NA,NA +108,NA,13,"2017",5,1,50,1,50,NA,NA,NA +108,NA,14,"2017",4,0,99,1,1,NA,NA,NA +108,NA,15,"2017",6,1,50,1,50,NA,NA,NA +108,NA,16,"2017",4,1,80,1,80,NA,NA,NA +108,NA,17,"2017",2,0,99,1,1,NA,NA,NA +108,NA,18,"2017",3,1,7,1,7,NA,NA,NA +108,NA,19,"2017",1,0,80,1,20,NA,NA,NA +108,NA,19,"2017",1,0,70,3,30,5,NA,NA +108,NA,19,"2017",1,0,60,4,40,30,NA,NA +108,NA,19,"2017",1,0,95,2,5,20,NA,NA +108,NA,20,"2017",1,0,20,2,80,50,NA,NA +108,NA,20,"2017",1,0,50,1,50,NA,NA,NA +108,NA,20,"2017",1,0,1,3,99,80,NA,NA +108,NA,20,"2017",1,0,1,4,99,99,NA,NA +108,NA,21,"2017",1,1,50,1,50,NA,NA,NA +108,NA,21,"2017",1,1,99,3,99,99,NA,NA +108,NA,21,"2017",1,1,99,4,99,99,NA,NA +108,NA,21,"2017",1,1,99,2,99,50,NA,NA +108,NA,22,"2017",5,1,99,1,99,NA,NA,NA +108,NA,23,"2017",6,1,99,1,99,NA,NA,NA +108,NA,24,"2017",3,1,50,1,50,NA,NA,NA +108,NA,25,"2017",2,0,99,1,1,NA,NA,NA +108,NA,26,"2017",2,0,20,1,80,NA,NA,NA +108,NA,27,"2017",2,0,80,1,20,NA,NA,NA +108,NA,28,"2017",2,0,10,1,90,NA,NA,NA +108,NA,29,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,30,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,31,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,32,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,33,"2017",2,1,1,1,1,NA,NA,NA +108,NA,34,"2017",3,0,99,1,1,NA,NA,NA +108,NA,35,"2017",3,0,99,1,1,NA,NA,NA +108,NA,36,"2017",3,0,50,1,50,NA,NA,NA +108,NA,37,"2017",1,1,NA,2,NA,1,NA,NA +108,NA,37,"2017",1,1,1,1,1,NA,NA,NA +108,NA,37,"2017",1,1,99,4,99,1,NA,NA +108,NA,37,"2017",1,1,1,3,1,NA,NA,NA +108,NA,38,"2017",1,0,99,4,1,NA,NA,NA +108,NA,38,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,38,"2017",1,0,NA,3,NA,NA,NA,NA +108,NA,38,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,39,"2017",5,1,30,1,30,NA,NA,NA +108,NA,40,"2017",1,1,98,3,98,2,NA,NA +108,NA,40,"2017",1,1,98,4,98,98,NA,NA +108,NA,40,"2017",1,1,2,2,2,20,NA,NA +108,NA,40,"2017",1,1,20,1,20,NA,NA,NA +108,NA,41,"2017",5,0,23,1,77,NA,NA,NA +108,NA,42,"2017",3,1,50,1,50,NA,NA,NA +108,NA,43,"2017",3,0,99,1,1,NA,NA,NA +108,NA,44,"2017",1,1,99,1,99,NA,NA,NA +108,NA,44,"2017",1,1,1,3,1,1,NA,NA +108,NA,44,"2017",1,1,1,4,1,1,NA,NA +108,NA,44,"2017",1,1,1,2,1,99,NA,NA +108,NA,45,"2017",6,0,33,1,67,NA,NA,NA +108,NA,46,"2017",2,0,90,1,10,NA,NA,NA +108,NA,47,"2017",3,0,50,1,50,NA,NA,NA +108,NA,48,"2017",3,0,10,1,90,NA,NA,NA +108,NA,49,"2017",3,0,41,1,59,NA,NA,NA +108,NA,50,"2017",6,1,10,1,10,NA,NA,NA +108,NA,51,"2017",5,0,50,1,50,NA,NA,NA +108,NA,52,"2017",1,0,40,1,60,NA,NA,NA +108,NA,52,"2017",1,0,30,3,70,60,NA,NA +108,NA,52,"2017",1,0,40,2,60,60,NA,NA +108,NA,52,"2017",1,0,40,4,60,70,NA,NA +108,NA,53,"2017",1,1,99,2,99,1,NA,NA +108,NA,53,"2017",1,1,60,4,60,90,NA,NA +108,NA,53,"2017",1,1,1,1,1,NA,NA,NA +108,NA,53,"2017",1,1,90,3,90,99,NA,NA +108,NA,54,"2017",5,1,50,1,50,NA,NA,NA +108,NA,55,"2017",5,1,50,1,50,NA,NA,NA +108,NA,56,"2017",5,0,80,1,20,NA,NA,NA +108,NA,57,"2017",6,1,65,1,65,NA,NA,NA +108,NA,58,"2017",2,0,90,1,10,NA,NA,NA +108,NA,59,"2017",2,1,40,1,40,NA,NA,NA +108,NA,60,"2017",6,0,50,1,50,NA,NA,NA +108,NA,61,"2017",1,1,99,4,99,99,NA,NA +108,NA,61,"2017",1,1,99,3,99,99,NA,NA +108,NA,61,"2017",1,1,99,2,99,99,NA,NA +108,NA,61,"2017",1,1,99,1,99,NA,NA,NA +108,NA,62,"2017",6,0,99,1,1,NA,NA,NA +108,NA,63,"2017",3,0,99,1,1,NA,NA,NA +108,NA,64,"2017",2,0,99,1,1,NA,NA,NA +108,NA,65,"2017",6,1,35,1,35,NA,NA,NA +108,NA,66,"2017",4,0,60,1,40,NA,NA,NA +108,NA,67,"2017",4,0,10,1,90,NA,NA,NA +108,NA,68,"2017",6,0,50,1,50,NA,NA,NA +108,NA,69,"2017",1,1,99,4,99,99,NA,NA +108,NA,69,"2017",1,1,99,3,99,40,NA,NA +108,NA,69,"2017",1,1,40,2,40,NA,NA,NA +108,NA,69,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,70,"2017",2,1,80,1,80,NA,NA,NA +108,NA,71,"2017",4,0,50,1,50,NA,NA,NA +108,NA,72,"2017",6,0,99,1,1,NA,NA,NA +108,NA,73,"2017",3,1,0,1,0,NA,NA,NA +108,NA,74,"2017",1,1,99,2,99,20,NA,NA +108,NA,74,"2017",1,1,20,1,20,NA,NA,NA +108,NA,74,"2017",1,1,30,4,30,80,NA,NA +108,NA,74,"2017",1,1,80,3,80,99,NA,NA +108,NA,75,"2017",1,0,50,2,50,50,NA,NA +108,NA,75,"2017",1,0,1,3,99,50,NA,NA +108,NA,75,"2017",1,0,50,1,50,NA,NA,NA +108,NA,75,"2017",1,0,50,4,50,99,NA,NA +108,NA,76,"2017",4,0,50,1,50,NA,NA,NA +108,NA,77,"2017",1,0,99,3,1,1,NA,NA +108,NA,77,"2017",1,0,99,2,1,1,NA,NA +108,NA,77,"2017",1,0,99,4,1,1,NA,NA +108,NA,77,"2017",1,0,99,1,1,NA,NA,NA +108,NA,78,"2017",1,1,99,3,99,99,NA,NA +108,NA,78,"2017",1,1,99,2,99,99,NA,NA +108,NA,78,"2017",1,1,99,4,99,99,NA,NA +108,NA,78,"2017",1,1,99,1,99,NA,NA,NA +108,NA,79,"2017",4,1,1,1,1,NA,NA,NA +108,NA,80,"2017",3,0,99,1,1,NA,NA,NA +108,NA,81,"2017",1,1,30,4,30,20,NA,NA +108,NA,81,"2017",1,1,30,1,30,NA,NA,NA +108,NA,81,"2017",1,1,20,2,20,30,NA,NA +108,NA,81,"2017",1,1,20,3,20,20,NA,NA +108,NA,82,"2017",4,0,80,1,20,NA,NA,NA +108,NA,83,"2017",3,1,90,1,90,NA,NA,NA +108,NA,84,"2017",4,0,99,1,1,NA,NA,NA +108,NA,85,"2017",3,1,0,1,0,NA,NA,NA +108,NA,86,"2017",2,0,80,1,20,NA,NA,NA +108,NA,87,"2017",1,1,99,2,99,99,NA,NA +108,NA,87,"2017",1,1,99,1,99,NA,NA,NA +108,NA,87,"2017",1,1,99,4,99,99,NA,NA +108,NA,87,"2017",1,1,99,3,99,99,NA,NA +108,NA,88,"2017",3,1,70,1,70,NA,NA,NA +108,NA,89,"2017",4,0,50,1,50,NA,NA,NA +108,NA,90,"2017",2,1,99,1,99,NA,NA,NA +108,NA,91,"2017",1,1,100,3,100,100,NA,NA +108,NA,91,"2017",1,1,100,2,100,0,NA,NA +108,NA,91,"2017",1,1,100,4,100,100,NA,NA +108,NA,91,"2017",1,1,0,1,0,NA,NA,NA +108,NA,92,"2017",4,1,99,1,99,NA,NA,NA +108,NA,93,"2017",1,0,99,3,1,1,NA,NA +108,NA,93,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,93,"2017",1,0,99,4,1,1,NA,NA +108,NA,93,"2017",1,0,99,2,1,NA,NA,NA +108,NA,94,"2017",4,0,0,1,100,NA,NA,NA +108,NA,95,"2017",1,1,0,1,0,NA,NA,NA +108,NA,95,"2017",1,1,0,2,0,0,NA,NA +108,NA,95,"2017",1,1,0,4,0,0,NA,NA +108,NA,95,"2017",1,1,0,3,0,0,NA,NA +108,NA,96,"2017",4,0,1,1,99,NA,NA,NA +108,NA,97,"2017",2,0,75,1,25,NA,NA,NA +108,NA,98,"2017",1,0,50,1,50,NA,NA,NA +108,NA,98,"2017",1,0,1,2,99,50,NA,NA +108,NA,98,"2017",1,0,90,3,10,99,NA,NA +108,NA,98,"2017",1,0,50,4,50,10,NA,NA +108,NA,99,"2017",4,1,1,1,1,NA,NA,NA +108,NA,100,"2017",3,1,1,1,1,NA,NA,NA +108,NA,101,"2017",3,1,1,1,1,NA,NA,NA +108,NA,102,"2017",3,1,99,1,99,NA,NA,NA +108,NA,103,"2017",1,0,1,3,99,99,NA,NA +108,NA,103,"2017",1,0,60,1,40,NA,NA,NA +108,NA,103,"2017",1,0,1,4,99,99,NA,NA +108,NA,103,"2017",1,0,1,2,99,40,NA,NA +108,NA,104,"2017",4,0,50,1,50,NA,NA,NA +108,NA,105,"2017",2,1,80,1,80,NA,NA,NA +108,NA,106,"2017",4,1,0,1,0,NA,NA,NA +108,NA,107,"2017",2,1,45,1,45,NA,NA,NA +108,NA,108,"2017",4,1,0,1,0,NA,NA,NA +108,NA,109,"2017",3,1,100,1,100,NA,NA,NA +108,NA,110,"2017",1,0,1,1,99,NA,NA,NA +108,NA,110,"2017",1,0,1,2,99,99,NA,NA +108,NA,110,"2017",1,0,1,4,99,99,NA,NA +108,NA,110,"2017",1,0,1,3,99,99,NA,NA +108,NA,112,"2017",4,0,99,1,1,NA,NA,NA +108,NA,113,"2017",1,0,30,2,70,50,NA,NA +108,NA,113,"2017",1,0,80,4,20,80,NA,NA +108,NA,113,"2017",1,0,50,1,50,NA,NA,NA +108,NA,113,"2017",1,0,20,3,80,70,NA,NA +108,NA,114,"2017",4,0,60,1,40,NA,NA,NA +108,NA,115,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,116,"2017",4,1,50,1,50,NA,NA,NA +108,NA,117,"2017",2,0,90,1,10,NA,NA,NA +108,NA,118,"2017",3,0,50,1,50,NA,NA,NA +108,NA,119,"2017",1,0,6,3,94,88,NA,NA +108,NA,119,"2017",1,0,75,1,25,NA,NA,NA +108,NA,119,"2017",1,0,5,4,95,94,NA,NA +108,NA,119,"2017",1,0,12,2,88,25,NA,NA +108,NA,120,"2017",3,1,99,1,99,NA,NA,NA +108,NA,121,"2017",4,1,90,1,90,NA,NA,NA +108,NA,122,"2017",1,0,1,3,99,99,NA,NA +108,NA,122,"2017",1,0,1,4,99,99,NA,NA +108,NA,122,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,122,"2017",1,0,1,2,99,NA,NA,NA +108,NA,123,"2017",3,1,99,1,99,NA,NA,NA +108,NA,124,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,125,"2017",3,0,50,1,50,NA,NA,NA +108,NA,126,"2017",4,0,1,1,99,NA,NA,NA +108,NA,127,"2017",2,0,80,1,20,NA,NA,NA +108,NA,128,"2017",3,1,99,1,99,NA,NA,NA +108,NA,129,"2017",1,1,99,3,99,1,NA,NA +108,NA,129,"2017",1,1,99,4,99,99,NA,NA +108,NA,129,"2017",1,1,1,2,1,55,NA,NA +108,NA,129,"2017",1,1,55,1,55,NA,NA,NA +108,NA,130,"2017",4,1,99,1,99,NA,NA,NA +108,NA,131,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,132,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,133,"2017",2,0,60,1,40,NA,NA,NA +108,NA,134,"2017",4,1,99,1,99,NA,NA,NA +108,NA,135,"2017",2,0,50,1,50,NA,NA,NA +108,NA,136,"2017",2,1,99,1,99,NA,NA,NA +108,NA,137,"2017",3,0,99,1,1,NA,NA,NA +108,NA,138,"2017",1,0,99,1,1,NA,NA,NA +108,NA,138,"2017",1,0,88,4,12,1,NA,NA +108,NA,138,"2017",1,0,99,3,1,99,NA,NA +108,NA,138,"2017",1,0,1,2,99,1,NA,NA +108,NA,139,"2017",1,0,50,4,50,50,NA,NA +108,NA,139,"2017",1,0,50,3,50,50,NA,NA +108,NA,139,"2017",1,0,1,1,99,NA,NA,NA +108,NA,139,"2017",1,0,50,2,50,99,NA,NA +108,NA,140,"2017",3,1,90,1,90,NA,NA,NA +108,NA,141,"2017",1,1,1,1,1,NA,NA,NA +108,NA,141,"2017",1,1,1,4,1,1,NA,NA +108,NA,141,"2017",1,1,1,3,1,99,NA,NA +108,NA,141,"2017",1,1,99,2,99,1,NA,NA +108,NA,142,"2017",1,1,40,1,40,NA,NA,NA +108,NA,142,"2017",1,1,40,4,40,40,NA,NA +108,NA,142,"2017",1,1,60,2,60,40,NA,NA +108,NA,142,"2017",1,1,40,3,40,60,NA,NA +108,NA,143,"2017",3,1,13,1,13,NA,NA,NA +108,NA,1169,"2017",2,1,70,1,70,NA,NA,NA +108,NA,1170,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1171,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1172,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1173,"2017",4,0,20,1,80,NA,NA,NA +108,NA,1174,"2017",1,0,90,1,10,NA,NA,NA +108,NA,1174,"2017",1,0,80,2,20,10,NA,NA +108,NA,1174,"2017",1,0,100,4,0,0,NA,NA +108,NA,1174,"2017",1,0,100,3,0,20,NA,NA +108,NA,1175,"2017",3,0,90,1,10,NA,NA,NA +108,NA,1176,"2017",6,0,100,1,0,NA,NA,NA +108,NA,1177,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1178,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1179,"2017",3,0,20,1,80,NA,NA,NA +108,NA,1180,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1181,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1182,"2017",6,0,40,1,60,NA,NA,NA +108,NA,1183,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1184,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1185,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1186,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1187,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1188,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1189,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1190,"2017",5,1,40,1,40,NA,NA,NA +108,NA,1191,"2017",1,1,NA,4,NA,NA,NA,NA +108,NA,1191,"2017",1,1,NA,3,NA,80,NA,NA +108,NA,1191,"2017",1,1,80,2,80,NA,NA,NA +108,NA,1191,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1192,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1193,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1193,"2017",1,0,50,3,50,NA,NA,NA +108,NA,1193,"2017",1,0,30,4,70,50,NA,NA +108,NA,1193,"2017",1,0,NA,2,NA,50,NA,NA +108,NA,1194,"2017",2,0,70,1,30,NA,NA,NA +108,NA,1195,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1196,"2017",4,0,1,1,99,NA,NA,NA +108,NA,1197,"2017",3,1,10,1,10,NA,NA,NA +108,NA,1198,"2017",3,0,20,1,80,NA,NA,NA +108,NA,1199,"2017",5,0,90,1,10,NA,NA,NA +108,NA,1200,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1201,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1202,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1203,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1204,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1205,"2017",1,0,1,4,99,99,NA,NA +108,NA,1205,"2017",1,0,1,2,99,50,NA,NA +108,NA,1205,"2017",1,0,1,3,99,99,NA,NA +108,NA,1205,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1206,"2017",4,1,40,1,40,NA,NA,NA +108,NA,1207,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1208,"2017",1,0,80,2,20,20,NA,NA +108,NA,1208,"2017",1,0,80,1,20,NA,NA,NA +108,NA,1208,"2017",1,0,80,4,20,20,NA,NA +108,NA,1208,"2017",1,0,80,3,20,20,NA,NA +108,NA,1209,"2017",1,0,100,3,0,0,NA,NA +108,NA,1209,"2017",1,0,100,2,0,0,NA,NA +108,NA,1209,"2017",1,0,100,4,0,0,NA,NA +108,NA,1209,"2017",1,0,100,1,0,NA,NA,NA +108,NA,1210,"2017",3,1,40,1,40,NA,NA,NA +108,NA,1211,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1211,"2017",1,0,9,2,91,50,NA,NA +108,NA,1211,"2017",1,0,88,3,12,91,NA,NA +108,NA,1211,"2017",1,0,1,4,99,12,NA,NA +108,NA,1212,"2017",4,1,30,1,30,NA,NA,NA +108,NA,1213,"2017",5,0,40,1,60,NA,NA,NA +108,NA,1214,"2017",6,0,40,1,60,NA,NA,NA +108,NA,1215,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1216,"2017",6,1,40,1,40,NA,NA,NA +108,NA,1217,"2017",1,1,1,4,1,50,NA,NA +108,NA,1217,"2017",1,1,90,1,90,NA,NA,NA +108,NA,1217,"2017",1,1,50,3,50,99,NA,NA +108,NA,1217,"2017",1,1,99,2,99,90,NA,NA +108,NA,1218,"2017",3,0,20,1,80,NA,NA,NA +108,NA,1219,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1220,"2017",5,1,20,1,20,NA,NA,NA +108,NA,1221,"2017",5,0,20,1,80,NA,NA,NA +108,NA,1222,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1223,"2017",5,1,20,1,20,NA,NA,NA +108,NA,1224,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1225,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1226,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1227,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1228,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1229,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1230,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1231,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1232,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1233,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1234,"2017",5,1,70,1,70,NA,NA,NA +108,NA,1235,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1236,"2017",1,0,99,3,1,1,NA,NA +108,NA,1236,"2017",1,0,99,4,1,1,NA,NA +108,NA,1236,"2017",1,0,99,2,1,1,NA,NA +108,NA,1236,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1237,"2017",6,1,60,1,60,NA,NA,NA +108,NA,1238,"2017",3,0,6,1,94,NA,NA,NA +108,NA,1239,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1240,"2017",6,1,NA,1,NA,NA,NA,NA +108,NA,1241,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1242,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1243,"2017",5,1,60,1,60,NA,NA,NA +108,NA,1244,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1245,"2017",1,1,99,3,99,90,NA,NA +108,NA,1245,"2017",1,1,100,4,100,99,NA,NA +108,NA,1245,"2017",1,1,90,2,90,50,NA,NA +108,NA,1245,"2017",1,1,50,1,50,NA,NA,NA +108,NA,1246,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1247,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1248,"2017",5,1,4,1,4,NA,NA,NA +108,NA,1249,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1250,"2017",4,0,80,1,20,NA,NA,NA +108,NA,1251,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1252,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1253,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1254,"2017",1,0,50,3,50,99,NA,NA +108,NA,1254,"2017",1,0,99,4,1,50,NA,NA +108,NA,1254,"2017",1,0,1,2,99,50,NA,NA +108,NA,1254,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1255,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1256,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1257,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1258,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1259,"2017",2,1,5,1,5,NA,NA,NA +108,NA,1260,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1261,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1262,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1263,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1264,"2017",5,0,99,1,1,NA,NA,NA +108,NA,1265,"2017",3,0,100,1,0,NA,NA,NA +108,NA,1266,"2017",6,1,1,1,1,NA,NA,NA +108,NA,1267,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,1268,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1269,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1270,"2017",1,1,80,2,80,NA,NA,NA +108,NA,1270,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1270,"2017",1,1,80,3,80,80,NA,NA +108,NA,1270,"2017",1,1,80,4,80,80,NA,NA +108,NA,1271,"2017",4,1,30,1,30,NA,NA,NA +108,NA,1272,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1273,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1274,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1275,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1276,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1277,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1278,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1279,"2017",1,1,100,4,100,100,NA,NA +108,NA,1279,"2017",1,1,100,3,100,50,NA,NA +108,NA,1279,"2017",1,1,50,2,50,NA,NA,NA +108,NA,1279,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1280,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1281,"2017",1,0,10,3,90,80,NA,NA +108,NA,1281,"2017",1,0,90,1,10,NA,NA,NA +108,NA,1281,"2017",1,0,20,2,80,10,NA,NA +108,NA,1281,"2017",1,0,1,4,99,90,NA,NA +108,NA,1282,"2017",2,1,8,1,8,NA,NA,NA +108,NA,1283,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,1284,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1285,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1286,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1287,"2017",1,1,1,4,1,99,NA,NA +108,NA,1287,"2017",1,1,99,2,99,NA,NA,NA +108,NA,1287,"2017",1,1,99,3,99,99,NA,NA +108,NA,1287,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1288,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1289,"2017",3,0,68,1,32,NA,NA,NA +108,NA,1290,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1291,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1292,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1293,"2017",1,1,50,2,50,1,NA,NA +108,NA,1293,"2017",1,1,99,4,99,99,NA,NA +108,NA,1293,"2017",1,1,1,1,1,NA,NA,NA +108,NA,1293,"2017",1,1,99,3,99,50,NA,NA +108,NA,1294,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,1295,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1296,"2017",1,0,88,3,12,1,NA,NA +108,NA,1296,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1296,"2017",1,0,99,4,1,12,NA,NA +108,NA,1296,"2017",1,0,99,2,1,NA,NA,NA +108,NA,1297,"2017",1,1,94,4,94,94,NA,NA +108,NA,1297,"2017",1,1,94,2,94,90,NA,NA +108,NA,1297,"2017",1,1,94,3,94,94,NA,NA +108,NA,1297,"2017",1,1,90,1,90,NA,NA,NA +108,NA,1298,"2017",6,0,70,1,30,NA,NA,NA +108,NA,1299,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1300,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1300,"2017",1,0,7,3,93,NA,NA,NA +108,NA,1300,"2017",1,0,75,4,25,93,NA,NA +108,NA,1300,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,1301,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1302,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1303,"2017",1,0,2,3,98,99,NA,NA +108,NA,1303,"2017",1,0,1,2,99,98,NA,NA +108,NA,1303,"2017",1,0,2,1,98,NA,NA,NA +108,NA,1303,"2017",1,0,3,4,97,98,NA,NA +108,NA,1304,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1305,"2017",1,0,0,3,100,57,NA,NA +108,NA,1305,"2017",1,0,45,1,55,NA,NA,NA +108,NA,1305,"2017",1,0,NA,4,NA,100,NA,NA +108,NA,1305,"2017",1,0,43,2,57,55,NA,NA +108,NA,1306,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1307,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1308,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1309,"2017",3,0,100,1,0,NA,NA,NA +108,NA,1310,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1311,"2017",3,1,80,1,80,NA,NA,NA +108,NA,1312,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1313,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1314,"2017",6,1,1,1,1,NA,NA,NA +108,NA,1315,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1316,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,1317,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1318,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1319,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1320,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1321,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1322,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1323,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1324,"2017",3,0,40,1,60,NA,NA,NA +108,NA,1325,"2017",1,0,NA,4,NA,1,NA,NA +108,NA,1325,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,1325,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1325,"2017",1,0,99,3,1,NA,NA,NA +108,NA,1326,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1327,"2017",5,1,55,1,55,NA,NA,NA +108,NA,1328,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1329,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1330,"2017",1,1,100,1,100,NA,NA,NA +108,NA,1330,"2017",1,1,100,3,100,100,NA,NA +108,NA,1330,"2017",1,1,10,4,10,100,NA,NA +108,NA,1330,"2017",1,1,100,2,100,100,NA,NA +108,NA,1331,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1332,"2017",5,0,80,1,20,NA,NA,NA +108,NA,1333,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1334,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1335,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1336,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1337,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1338,"2017",1,0,60,3,40,50,NA,NA +108,NA,1338,"2017",1,0,60,4,40,40,NA,NA +108,NA,1338,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1338,"2017",1,0,50,2,50,50,NA,NA +108,NA,1339,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1340,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1341,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1342,"2017",6,0,70,1,30,NA,NA,NA +108,NA,1343,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1344,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1345,"2017",6,1,NA,1,NA,NA,NA,NA +108,NA,1346,"2017",1,0,50,2,50,50,NA,NA +108,NA,1346,"2017",1,0,99,4,1,50,NA,NA +108,NA,1346,"2017",1,0,50,3,50,50,NA,NA +108,NA,1346,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1347,"2017",1,0,1,4,99,NA,NA,NA +108,NA,1347,"2017",1,0,NA,3,NA,NA,NA,NA +108,NA,1347,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1347,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,1348,"2017",2,0,1,1,99,NA,NA,NA +108,NA,1349,"2017",1,1,50,3,50,50,NA,NA +108,NA,1349,"2017",1,1,50,2,50,50,NA,NA +108,NA,1349,"2017",1,1,50,1,50,NA,NA,NA +108,NA,1349,"2017",1,1,50,4,50,50,NA,NA +108,NA,1350,"2017",5,1,40,1,40,NA,NA,NA +108,NA,1351,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1352,"2017",6,0,90,1,10,NA,NA,NA +108,NA,1353,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1354,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1355,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1356,"2017",5,0,99,1,1,NA,NA,NA +108,NA,1357,"2017",4,0,1,1,99,NA,NA,NA +108,NA,1358,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1359,"2017",6,1,1,1,1,NA,NA,NA +108,NA,1360,"2017",6,1,30,1,30,NA,NA,NA +108,NA,1361,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1362,"2017",1,1,50,1,50,NA,NA,NA +108,NA,1362,"2017",1,1,50,4,50,10,NA,NA +108,NA,1362,"2017",1,1,10,3,10,20,NA,NA +108,NA,1362,"2017",1,1,20,2,20,50,NA,NA +108,NA,1363,"2017",4,0,12,1,88,NA,NA,NA +108,NA,1364,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1365,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1366,"2017",1,1,1,4,1,99,NA,NA +108,NA,1366,"2017",1,1,99,2,99,99,NA,NA +108,NA,1366,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1366,"2017",1,1,99,3,99,99,NA,NA +108,NA,1367,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1368,"2017",1,0,99,2,1,1,NA,NA +108,NA,1368,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1368,"2017",1,0,99,3,1,1,NA,NA +108,NA,1368,"2017",1,0,99,4,1,1,NA,NA +108,NA,1369,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1370,"2017",6,1,9,1,9,NA,NA,NA +108,NA,1371,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1372,"2017",3,1,30,1,30,NA,NA,NA +108,NA,1373,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1374,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1375,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1376,"2017",6,0,35,1,65,NA,NA,NA +108,NA,1377,"2017",6,1,15,1,15,NA,NA,NA +108,NA,1378,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1379,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,1379,"2017",1,0,NA,4,NA,99,NA,NA +108,NA,1379,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1379,"2017",1,0,1,3,99,NA,NA,NA +108,NA,1380,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1381,"2017",1,0,22,1,78,NA,NA,NA +108,NA,1381,"2017",1,0,22,3,78,70,NA,NA +108,NA,1381,"2017",1,0,14,4,86,78,NA,NA +108,NA,1381,"2017",1,0,30,2,70,78,NA,NA +108,NA,1382,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1383,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1384,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1384,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,1384,"2017",1,0,58,3,42,NA,NA,NA +108,NA,1384,"2017",1,0,89,4,11,42,NA,NA +108,NA,1385,"2017",5,1,80,1,80,NA,NA,NA +108,NA,1386,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1387,"2017",3,1,100,1,100,NA,NA,NA +108,NA,1388,"2017",2,0,60,1,40,NA,NA,NA +108,NA,1389,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1390,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1391,"2017",2,0,1,1,99,NA,NA,NA +108,NA,1392,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1393,"2017",5,0,0,1,100,NA,NA,NA +108,NA,1394,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1394,"2017",1,0,50,2,50,1,NA,NA +108,NA,1394,"2017",1,0,50,4,50,50,NA,NA +108,NA,1394,"2017",1,0,50,3,50,50,NA,NA +108,NA,1395,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1396,"2017",1,0,1,4,99,1,NA,NA +108,NA,1396,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1396,"2017",1,0,99,3,1,1,NA,NA +108,NA,1396,"2017",1,0,99,2,1,50,NA,NA +108,NA,1397,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1398,"2017",2,0,6,1,94,NA,NA,NA +108,NA,1399,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1400,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1401,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1402,"2017",1,1,90,3,90,99,NA,NA +108,NA,1402,"2017",1,1,60,4,60,90,NA,NA +108,NA,1402,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1402,"2017",1,1,99,2,99,NA,NA,NA +108,NA,1403,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1403,"2017",1,1,99,4,99,99,NA,NA +108,NA,1403,"2017",1,1,99,2,99,99,NA,NA +108,NA,1403,"2017",1,1,99,3,99,99,NA,NA +108,NA,1404,"2017",1,0,70,4,30,40,NA,NA +108,NA,1404,"2017",1,0,40,2,60,20,NA,NA +108,NA,1404,"2017",1,0,60,3,40,60,NA,NA +108,NA,1404,"2017",1,0,80,1,20,NA,NA,NA +108,NA,1405,"2017",5,0,99,1,1,NA,NA,NA +108,NA,1406,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1407,"2017",3,0,40,1,60,NA,NA,NA +108,NA,1408,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1409,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1410,"2017",1,1,99,2,99,0,NA,NA +108,NA,1410,"2017",1,1,0,1,0,NA,NA,NA +108,NA,1410,"2017",1,1,0,4,0,99,NA,NA +108,NA,1410,"2017",1,1,99,3,99,99,NA,NA +108,NA,1411,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1412,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1413,"2017",1,1,1,3,1,80,NA,NA +108,NA,1413,"2017",1,1,80,4,80,1,NA,NA +108,NA,1413,"2017",1,1,80,2,80,1,NA,NA +108,NA,1413,"2017",1,1,1,1,1,NA,NA,NA +108,NA,1414,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1415,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1416,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1417,"2017",3,0,40,1,60,NA,NA,NA +108,NA,1418,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1419,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1420,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1421,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1422,"2017",1,0,1,1,99,NA,NA,NA +108,NA,1422,"2017",1,0,1,2,99,99,NA,NA +108,NA,1422,"2017",1,0,NA,3,NA,99,NA,NA +108,NA,1422,"2017",1,0,1,4,99,NA,NA,NA +108,NA,1423,"2017",1,1,56,1,56,NA,NA,NA +108,NA,1423,"2017",1,1,67,3,67,56,NA,NA +108,NA,1423,"2017",1,1,75,4,75,67,NA,NA +108,NA,1423,"2017",1,1,56,2,56,56,NA,NA +108,NA,1424,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1425,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1426,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1427,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1428,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1429,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1430,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1431,"2017",2,0,1,1,99,NA,NA,NA +108,NA,1432,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1433,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1434,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1434,"2017",1,0,1,3,99,50,NA,NA +108,NA,1434,"2017",1,0,99,4,1,99,NA,NA +108,NA,1435,"2017",1,0,99,4,1,50,NA,NA +108,NA,1435,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1435,"2017",1,0,50,3,50,1,NA,NA +108,NA,1436,"2017",6,1,NA,1,NA,NA,NA,NA +108,NA,1437,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1438,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1439,"2017",6,1,80,1,80,NA,NA,NA +108,NA,1440,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1441,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1442,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1443,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1444,"2017",1,0,1,2,99,99,NA,NA +108,NA,1444,"2017",1,0,1,4,99,80,NA,NA +108,NA,1444,"2017",1,0,20,3,80,99,NA,NA +108,NA,1444,"2017",1,0,1,1,99,NA,NA,NA +108,NA,1445,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1446,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1447,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1448,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1449,"2017",1,0,50,4,50,50,NA,NA +108,NA,1449,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1449,"2017",1,0,50,3,50,1,NA,NA +108,NA,1449,"2017",1,0,99,2,1,NA,NA,NA +108,NA,1450,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1451,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1452,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1453,"2017",4,0,90,1,10,NA,NA,NA +108,NA,1454,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1455,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1456,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1457,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1458,"2017",3,1,9,1,9,NA,NA,NA +108,NA,1459,"2017",2,0,1,1,99,NA,NA,NA +108,NA,1460,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1461,"2017",1,0,50,2,50,NA,NA,NA +108,NA,1461,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1461,"2017",1,0,50,4,50,50,NA,NA +108,NA,1461,"2017",1,0,50,3,50,50,NA,NA +108,NA,1462,"2017",1,1,80,2,80,4,NA,NA +108,NA,1462,"2017",1,1,99,4,99,85,NA,NA +108,NA,1462,"2017",1,1,4,1,4,NA,NA,NA +108,NA,1462,"2017",1,1,85,3,85,80,NA,NA +108,NA,1463,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1464,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1465,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1466,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1467,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1468,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1469,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1470,"2017",4,1,1,1,1,NA,NA,NA +108,NA,1471,"2017",6,1,1,1,1,NA,NA,NA +108,NA,1472,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1473,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1474,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1475,"2017",1,0,99,3,1,1,NA,NA +108,NA,1475,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1475,"2017",1,0,50,4,50,1,NA,NA +108,NA,1475,"2017",1,0,99,2,1,1,NA,NA +108,NA,1476,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1477,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1478,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1479,"2017",2,0,10,1,90,NA,NA,NA +108,NA,1480,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1481,"2017",1,1,70,4,70,60,NA,NA +108,NA,1481,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1481,"2017",1,1,50,2,50,99,NA,NA +108,NA,1481,"2017",1,1,60,3,60,50,NA,NA +108,NA,1482,"2017",3,0,54,1,46,NA,NA,NA +108,NA,1483,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1484,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1485,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1486,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1487,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1488,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1489,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1490,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1491,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1492,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1493,"2017",6,1,80,1,80,NA,NA,NA +108,NA,1494,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1495,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1496,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,1497,"2017",3,0,90,1,10,NA,NA,NA +108,NA,1498,"2017",1,1,50,1,50,NA,NA,NA +108,NA,1498,"2017",1,1,99,4,99,1,NA,NA +108,NA,1498,"2017",1,1,1,3,1,99,NA,NA +108,NA,1498,"2017",1,1,99,2,99,50,NA,NA +108,NA,1499,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1500,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1501,"2017",1,0,99,4,1,1,NA,NA +108,NA,1501,"2017",1,0,99,3,1,1,NA,NA +108,NA,1501,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1501,"2017",1,0,99,2,1,1,NA,NA +108,NA,1502,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1503,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1504,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1505,"2017",6,1,90,1,90,NA,NA,NA +108,NA,1506,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1507,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1508,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1509,"2017",4,1,90,1,90,NA,NA,NA +108,NA,1510,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1511,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1512,"2017",1,1,99,4,99,99,NA,NA +108,NA,1512,"2017",1,1,99,3,99,1,NA,NA +108,NA,1512,"2017",1,1,1,2,1,1,NA,NA +108,NA,1512,"2017",1,1,1,1,1,NA,NA,NA +108,NA,1513,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1514,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1515,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1516,"2017",5,0,99,1,1,NA,NA,NA +108,NA,1517,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1518,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1519,"2017",5,0,55,1,45,NA,NA,NA +108,NA,1520,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1521,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1522,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1523,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1524,"2017",4,0,8,1,92,NA,NA,NA +108,NA,1525,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1526,"2017",1,0,1,3,99,99,NA,NA +108,NA,1526,"2017",1,0,1,4,99,99,NA,NA +108,NA,1526,"2017",1,0,1,2,99,NA,NA,NA +108,NA,1526,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1527,"2017",2,0,9,1,91,NA,NA,NA +108,NA,1528,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1529,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1530,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1531,"2017",1,0,99,4,1,99,NA,NA +108,NA,1531,"2017",1,0,1,3,99,99,NA,NA +108,NA,1531,"2017",1,0,1,2,99,99,NA,NA +108,NA,1531,"2017",1,0,1,1,99,NA,NA,NA +108,NA,1532,"2017",1,1,30,1,30,NA,NA,NA +108,NA,1532,"2017",1,1,20,4,20,NA,NA,NA +108,NA,1532,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,1532,"2017",1,1,NA,2,NA,30,NA,NA +108,NA,1533,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1534,"2017",2,0,70,1,30,NA,NA,NA +108,NA,1535,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1536,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1537,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1538,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1539,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1540,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1541,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1542,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1543,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,1544,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1545,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1546,"2017",2,0,60,1,40,NA,NA,NA +108,NA,1547,"2017",1,1,80,3,80,80,NA,NA +108,NA,1547,"2017",1,1,NA,4,NA,80,NA,NA +108,NA,1547,"2017",1,1,80,2,80,50,NA,NA +108,NA,1547,"2017",1,1,50,1,50,NA,NA,NA +108,NA,1548,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1549,"2017",1,0,1,2,99,99,NA,NA +108,NA,1549,"2017",1,0,1,1,99,NA,NA,NA +108,NA,1549,"2017",1,0,1,3,99,99,NA,NA +108,NA,1549,"2017",1,0,NA,4,NA,99,NA,NA +108,NA,1550,"2017",1,1,1,1,1,NA,NA,NA +108,NA,1550,"2017",1,1,NA,2,NA,1,NA,NA +108,NA,1550,"2017",1,1,1,3,1,NA,NA,NA +108,NA,1550,"2017",1,1,99,4,99,1,NA,NA +108,NA,1551,"2017",5,0,80,1,20,NA,NA,NA +108,NA,1552,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1553,"2017",5,0,99,1,1,NA,NA,NA +108,NA,1554,"2017",1,1,70,1,70,NA,NA,NA +108,NA,1554,"2017",1,1,NA,2,NA,70,NA,NA +108,NA,1554,"2017",1,1,10,3,10,NA,NA,NA +108,NA,1554,"2017",1,1,NA,4,NA,10,NA,NA +108,NA,1555,"2017",5,0,9,1,91,NA,NA,NA +108,NA,1556,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1557,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1558,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1559,"2017",1,0,1,3,99,1,NA,NA +108,NA,1559,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1559,"2017",1,0,66,4,34,99,NA,NA +108,NA,1559,"2017",1,0,99,2,1,1,NA,NA +108,NA,1560,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1560,"2017",1,0,0,4,100,99,NA,NA +108,NA,1560,"2017",1,0,1,3,99,50,NA,NA +108,NA,1560,"2017",1,0,50,2,50,1,NA,NA +108,NA,1561,"2017",1,1,1,3,1,1,NA,NA +108,NA,1561,"2017",1,1,1,2,1,1,NA,NA +108,NA,1561,"2017",1,1,99,4,99,1,NA,NA +108,NA,1561,"2017",1,1,1,1,1,NA,NA,NA +108,NA,1562,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1563,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1564,"2017",5,0,20,1,80,NA,NA,NA +108,NA,1565,"2017",5,0,99,1,1,NA,NA,NA +108,NA,1566,"2017",5,0,99,1,1,NA,NA,NA +108,NA,1567,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1568,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1569,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1570,"2017",5,0,80,1,20,NA,NA,NA +108,NA,1571,"2017",4,0,80,1,20,NA,NA,NA +108,NA,1572,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1573,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1574,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1575,"2017",6,1,0,1,0,NA,NA,NA +108,NA,1576,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1577,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1578,"2017",1,1,50,2,50,NA,NA,NA +108,NA,1578,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1578,"2017",1,1,1,4,1,1,NA,NA +108,NA,1578,"2017",1,1,1,3,1,50,NA,NA +108,NA,1579,"2017",6,1,NA,1,NA,NA,NA,NA +108,NA,1580,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1581,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1582,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1583,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1584,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1585,"2017",3,0,8,1,92,NA,NA,NA +108,NA,1586,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1587,"2017",4,1,1,1,1,NA,NA,NA +108,NA,1588,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1589,"2017",3,0,9,1,91,NA,NA,NA +108,NA,1590,"2017",3,0,80,1,20,NA,NA,NA +108,NA,1591,"2017",1,0,50,3,50,NA,NA,NA +108,NA,1591,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1591,"2017",1,0,50,4,50,50,NA,NA +108,NA,1591,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,1592,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1593,"2017",1,1,NA,4,NA,3,NA,NA +108,NA,1593,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1593,"2017",1,1,NA,2,NA,NA,NA,NA +108,NA,1593,"2017",1,1,3,3,3,NA,NA,NA +108,NA,1594,"2017",1,0,NA,4,NA,50,NA,NA +108,NA,1594,"2017",1,0,50,3,50,NA,NA,NA +108,NA,1594,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1594,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,1595,"2017",1,1,1,2,1,99,NA,NA +108,NA,1595,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1595,"2017",1,1,99,3,99,1,NA,NA +108,NA,1595,"2017",1,1,50,4,50,99,NA,NA +108,NA,1596,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1597,"2017",1,0,80,1,20,NA,NA,NA +108,NA,1597,"2017",1,0,NA,4,NA,30,NA,NA +108,NA,1597,"2017",1,0,70,3,30,10,NA,NA +108,NA,1598,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1599,"2017",6,1,45,1,45,NA,NA,NA +108,NA,1600,"2017",4,0,20,1,80,NA,NA,NA +108,NA,1601,"2017",6,1,80,1,80,NA,NA,NA +108,NA,1602,"2017",1,0,0,4,100,100,NA,NA +108,NA,1602,"2017",1,0,0,1,100,NA,NA,NA +108,NA,1602,"2017",1,0,0,3,100,0,NA,NA +108,NA,1602,"2017",1,0,100,2,0,100,NA,NA +108,NA,1603,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,1604,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1605,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1606,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1607,"2017",4,1,20,1,20,NA,NA,NA +108,NA,1608,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1609,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1610,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1611,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,1612,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1613,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1614,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1615,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,1616,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1617,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1618,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1619,"2017",1,0,50,2,50,NA,NA,NA +108,NA,1619,"2017",1,0,1,4,99,99,NA,NA +108,NA,1619,"2017",1,0,1,3,99,50,NA,NA +108,NA,1619,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1620,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1621,"2017",6,0,60,1,40,NA,NA,NA +108,NA,1622,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1623,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1624,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1625,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1626,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1627,"2017",1,0,60,1,40,NA,NA,NA +108,NA,1627,"2017",1,0,50,2,50,40,NA,NA +108,NA,1627,"2017",1,0,NA,3,NA,50,NA,NA +108,NA,1627,"2017",1,0,40,4,60,NA,NA,NA +108,NA,1628,"2017",1,0,40,4,60,60,NA,NA +108,NA,1628,"2017",1,0,40,3,60,NA,NA,NA +108,NA,1628,"2017",1,0,NA,2,NA,50,NA,NA +108,NA,1628,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1629,"2017",5,0,90,1,10,NA,NA,NA +108,NA,1630,"2017",1,0,25,2,75,65,NA,NA +108,NA,1630,"2017",1,0,35,1,65,NA,NA,NA +108,NA,1630,"2017",1,0,20,3,80,75,NA,NA +108,NA,1630,"2017",1,0,15,4,85,80,NA,NA +108,NA,1631,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1632,"2017",1,0,15,4,85,20,NA,NA +108,NA,1632,"2017",1,0,80,2,20,20,NA,NA +108,NA,1632,"2017",1,0,80,3,20,20,NA,NA +108,NA,1632,"2017",1,0,80,1,20,NA,NA,NA +108,NA,1633,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1633,"2017",1,1,50,4,50,NA,NA,NA +108,NA,1633,"2017",1,1,NA,2,NA,99,NA,NA +108,NA,1633,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,1634,"2017",5,0,40,1,60,NA,NA,NA +108,NA,1635,"2017",4,0,90,1,10,NA,NA,NA +108,NA,1636,"2017",6,1,100,1,100,NA,NA,NA +108,NA,1637,"2017",1,1,80,3,80,60,NA,NA +108,NA,1637,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1637,"2017",1,1,80,4,80,80,NA,NA +108,NA,1637,"2017",1,1,60,2,60,NA,NA,NA +108,NA,1638,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1639,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1640,"2017",5,0,60,1,40,NA,NA,NA +108,NA,1641,"2017",3,1,80,1,80,NA,NA,NA +108,NA,1642,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1643,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1643,"2017",1,0,50,3,50,50,NA,NA +108,NA,1643,"2017",1,0,50,4,50,50,NA,NA +108,NA,1643,"2017",1,0,50,2,50,50,NA,NA +108,NA,1644,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1645,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1646,"2017",5,0,20,1,80,NA,NA,NA +108,NA,1647,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1648,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1649,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1650,"2017",3,1,30,1,30,NA,NA,NA +108,NA,1651,"2017",1,1,50,1,50,NA,NA,NA +108,NA,1651,"2017",1,1,1,3,1,99,NA,NA +108,NA,1651,"2017",1,1,99,2,99,50,NA,NA +108,NA,1651,"2017",1,1,99,4,99,1,NA,NA +108,NA,1652,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1653,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1654,"2017",1,1,99,4,99,99,NA,NA +108,NA,1654,"2017",1,1,100,1,100,NA,NA,NA +108,NA,1654,"2017",1,1,99,3,99,99,NA,NA +108,NA,1654,"2017",1,1,99,2,99,100,NA,NA +108,NA,1655,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1656,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1657,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1658,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1659,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1660,"2017",1,0,50,2,50,NA,NA,NA +108,NA,1660,"2017",1,0,50,3,50,50,NA,NA +108,NA,1660,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1660,"2017",1,0,NA,4,NA,50,NA,NA +108,NA,1661,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1662,"2017",3,1,80,1,80,NA,NA,NA +108,NA,1663,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1664,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1665,"2017",1,1,NA,2,NA,NA,NA,NA +108,NA,1665,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,1665,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1665,"2017",1,1,NA,4,NA,NA,NA,NA +108,NA,1666,"2017",1,1,NA,4,NA,NA,NA,NA +108,NA,1666,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1666,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,1666,"2017",1,1,NA,2,NA,NA,NA,NA +108,NA,1667,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1668,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1669,"2017",6,0,60,1,40,NA,NA,NA +108,NA,1670,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1671,"2017",6,1,1,1,1,NA,NA,NA +108,NA,1672,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1672,"2017",1,0,99,2,1,1,NA,NA +108,NA,1672,"2017",1,0,99,4,1,1,NA,NA +108,NA,1672,"2017",1,0,99,3,1,1,NA,NA +108,NA,1673,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1673,"2017",1,0,99,2,1,1,NA,NA +108,NA,1673,"2017",1,0,NA,3,NA,1,NA,NA +108,NA,1674,"2017",6,1,60,1,60,NA,NA,NA +108,NA,1675,"2017",2,0,1,1,99,NA,NA,NA +108,NA,1676,"2017",2,0,7.2,1,92.8,NA,NA,NA +108,NA,1677,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1678,"2017",1,1,NA,2,NA,NA,NA,NA +108,NA,1678,"2017",1,1,NA,4,NA,NA,NA,NA +108,NA,1678,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,1678,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1679,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1680,"2017",1,1,99,4,99,90,NA,NA +108,NA,1680,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1680,"2017",1,1,90,2,90,NA,NA,NA +108,NA,1680,"2017",1,1,90,3,90,90,NA,NA +108,NA,1681,"2017",1,1,NA,2,NA,NA,NA,NA +108,NA,1681,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,1681,"2017",1,1,99,4,99,NA,NA,NA +108,NA,1681,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1682,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1683,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1684,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1685,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1685,"2017",1,0,NA,2,NA,1,NA,NA +108,NA,1685,"2017",1,0,99,3,1,NA,NA,NA +108,NA,1685,"2017",1,0,99,4,1,1,NA,NA +108,NA,1686,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1687,"2017",2,0,1,1,99,NA,NA,NA +108,NA,1688,"2017",3,1,80,1,80,NA,NA,NA +108,NA,1689,"2017",1,0,99,2,1,50,NA,NA +108,NA,1689,"2017",1,0,1,4,99,50,NA,NA +108,NA,1689,"2017",1,0,50,3,50,1,NA,NA +108,NA,1689,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1690,"2017",4,0,1,1,99,NA,NA,NA +108,NA,1691,"2017",2,0,60,1,40,NA,NA,NA +108,NA,1692,"2017",1,1,50,3,50,99,NA,NA +108,NA,1692,"2017",1,1,50,1,50,NA,NA,NA +108,NA,1692,"2017",1,1,99,2,99,50,NA,NA +108,NA,1692,"2017",1,1,50,4,50,50,NA,NA +108,NA,1693,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1694,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1695,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1696,"2017",3,1,90,1,90,NA,NA,NA +108,NA,1697,"2017",3,0,60,1,40,NA,NA,NA +108,NA,1698,"2017",4,1,60,1,60,NA,NA,NA +108,NA,1699,"2017",6,1,65,1,65,NA,NA,NA +108,NA,1700,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1701,"2017",1,0,40,3,60,35,NA,NA +108,NA,1701,"2017",1,0,65,2,35,30,NA,NA +108,NA,1701,"2017",1,0,70,1,30,NA,NA,NA +108,NA,1701,"2017",1,0,30,4,70,60,NA,NA +108,NA,1702,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1702,"2017",1,0,99,2,1,1,NA,NA +108,NA,1702,"2017",1,0,1,3,99,1,NA,NA +108,NA,1702,"2017",1,0,1,4,99,99,NA,NA +108,NA,1703,"2017",1,0,1,4,99,1,NA,NA +108,NA,1703,"2017",1,0,50,2,50,50,NA,NA +108,NA,1703,"2017",1,0,99,3,1,50,NA,NA +108,NA,1703,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1704,"2017",4,1,60,1,60,NA,NA,NA +108,NA,1705,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1706,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1707,"2017",5,1,60,1,60,NA,NA,NA +108,NA,1708,"2017",1,1,0,4,0,70,NA,NA +108,NA,1708,"2017",1,1,60,1,60,NA,NA,NA +108,NA,1708,"2017",1,1,70,3,70,70,NA,NA +108,NA,1708,"2017",1,1,70,2,70,60,NA,NA +108,NA,1709,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1710,"2017",2,1,50,1,50,NA,NA,NA +108,NA,1711,"2017",5,1,100,1,100,NA,NA,NA +108,NA,1712,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1713,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1714,"2017",6,1,40,1,40,NA,NA,NA +108,NA,1715,"2017",2,1,44,1,44,NA,NA,NA +108,NA,1716,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1717,"2017",1,1,50,2,50,44,NA,NA +108,NA,1717,"2017",1,1,44,4,44,44,NA,NA +108,NA,1717,"2017",1,1,44,1,44,NA,NA,NA +108,NA,1717,"2017",1,1,44,3,44,50,NA,NA +108,NA,1718,"2017",1,0,99,3,1,99,NA,NA +108,NA,1718,"2017",1,0,1,2,99,50,NA,NA +108,NA,1718,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1718,"2017",1,0,1,4,99,1,NA,NA +108,NA,1719,"2017",6,0,2,1,98,NA,NA,NA +108,NA,1720,"2017",5,1,100,1,100,NA,NA,NA +108,NA,1721,"2017",4,1,1,1,1,NA,NA,NA +108,NA,1722,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1723,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1724,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1725,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1726,"2017",5,0,30,1,70,NA,NA,NA +108,NA,1727,"2017",3,0,58,1,42,NA,NA,NA +108,NA,1728,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1729,"2017",4,0,40,1,60,NA,NA,NA +108,NA,1730,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1731,"2017",6,0,69,1,31,NA,NA,NA +108,NA,1732,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,1733,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1734,"2017",6,1,20,1,20,NA,NA,NA +108,NA,1735,"2017",6,1,30,1,30,NA,NA,NA +108,NA,1736,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1737,"2017",1,0,1,3,99,99,NA,NA +108,NA,1737,"2017",1,0,0,4,100,99,NA,NA +108,NA,1737,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1737,"2017",1,0,1,2,99,50,NA,NA +108,NA,1738,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1739,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1740,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1741,"2017",2,0,35,1,65,NA,NA,NA +108,NA,1742,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1743,"2017",1,0,99,4,1,50,NA,NA +108,NA,1743,"2017",1,0,2,2,98,99,NA,NA +108,NA,1743,"2017",1,0,1,1,99,NA,NA,NA +108,NA,1743,"2017",1,0,50,3,50,98,NA,NA +108,NA,1744,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1745,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1746,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1747,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1748,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1749,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1749,"2017",1,1,50,4,50,50,NA,NA +108,NA,1749,"2017",1,1,50,3,50,50,NA,NA +108,NA,1749,"2017",1,1,50,2,50,99,NA,NA +108,NA,1750,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1751,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1752,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1753,"2017",4,0,30,1,70,NA,NA,NA +108,NA,1754,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1755,"2017",1,0,40,1,60,NA,NA,NA +108,NA,1755,"2017",1,0,30,4,70,40,NA,NA +108,NA,1755,"2017",1,0,70,2,30,60,NA,NA +108,NA,1755,"2017",1,0,60,3,40,30,NA,NA +108,NA,1756,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1757,"2017",1,0,60,1,40,NA,NA,NA +108,NA,1757,"2017",1,0,70,3,30,20,NA,NA +108,NA,1757,"2017",1,0,80,2,20,40,NA,NA +108,NA,1757,"2017",1,0,50,4,50,30,NA,NA +108,NA,1758,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1759,"2017",4,1,32,1,32,NA,NA,NA +108,NA,1760,"2017",2,0,51,1,49,NA,NA,NA +108,NA,1761,"2017",2,0,58,1,42,NA,NA,NA +108,NA,1762,"2017",1,1,50,3,50,50,NA,NA +108,NA,1762,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1762,"2017",1,1,1,4,1,50,NA,NA +108,NA,1762,"2017",1,1,50,2,50,NA,NA,NA +108,NA,1763,"2017",6,0,90,1,10,NA,NA,NA +108,NA,1764,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1765,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1766,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1767,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1768,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1769,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1770,"2017",6,1,8,1,8,NA,NA,NA +108,NA,1771,"2017",6,1,27,1,27,NA,NA,NA +108,NA,1772,"2017",3,0,59,1,41,NA,NA,NA +108,NA,1773,"2017",3,0,88,1,12,NA,NA,NA +108,NA,1774,"2017",2,1,16,1,16,NA,NA,NA +108,NA,1775,"2017",1,1,88,3,88,89,NA,NA +108,NA,1775,"2017",1,1,89,2,89,NA,NA,NA +108,NA,1775,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1775,"2017",1,1,99,4,99,88,NA,NA +108,NA,1776,"2017",6,0,88,1,12,NA,NA,NA +108,NA,1777,"2017",5,1,87,1,87,NA,NA,NA +108,NA,1778,"2017",2,1,82,1,82,NA,NA,NA +108,NA,1779,"2017",5,0,86,1,14,NA,NA,NA +108,NA,1780,"2017",6,1,97,1,97,NA,NA,NA +108,NA,1781,"2017",3,1,97,1,97,NA,NA,NA +108,NA,1782,"2017",6,0,83,1,17,NA,NA,NA +108,NA,1783,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1784,"2017",2,1,84,1,84,NA,NA,NA +108,NA,1785,"2017",2,1,87,1,87,NA,NA,NA +108,NA,1786,"2017",5,0,86,1,14,NA,NA,NA +108,NA,1787,"2017",6,1,84,1,84,NA,NA,NA +108,NA,1788,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1789,"2017",5,0,14,1,86,NA,NA,NA +108,NA,1790,"2017",2,1,84,1,84,NA,NA,NA +108,NA,1791,"2017",3,1,22,1,22,NA,NA,NA +108,NA,1792,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1793,"2017",2,1,85,1,85,NA,NA,NA +108,NA,1794,"2017",3,0,73,1,27,NA,NA,NA +108,NA,1795,"2017",6,1,NA,1,NA,NA,NA,NA +108,NA,1796,"2017",6,0,84,1,16,NA,NA,NA +108,NA,1797,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1798,"2017",6,0,86,1,14,NA,NA,NA +108,NA,1799,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1800,"2017",4,0,98,1,2,NA,NA,NA +108,NA,1801,"2017",1,0,89,2,11,11,NA,NA +108,NA,1801,"2017",1,0,89,1,11,NA,NA,NA +108,NA,1801,"2017",1,0,85,4,15,1,NA,NA +108,NA,1801,"2017",1,0,99,3,1,11,NA,NA +108,NA,1802,"2017",1,1,98,4,98,NA,NA,NA +108,NA,1802,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,1802,"2017",1,1,NA,2,NA,NA,NA,NA +108,NA,1802,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1803,"2017",4,1,87,1,87,NA,NA,NA +108,NA,1804,"2017",1,0,79,2,21,13,NA,NA +108,NA,1804,"2017",1,0,99,3,1,21,NA,NA +108,NA,1804,"2017",1,0,87,1,13,NA,NA,NA +108,NA,1804,"2017",1,0,87,4,13,1,NA,NA +108,NA,1805,"2017",1,0,97,2,3,11,NA,NA +108,NA,1805,"2017",1,0,92,3,8,3,NA,NA +108,NA,1805,"2017",1,0,89,1,11,NA,NA,NA +108,NA,1805,"2017",1,0,89,4,11,8,NA,NA +108,NA,1806,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1807,"2017",1,0,99,2,1,99,NA,NA +108,NA,1807,"2017",1,0,1,1,99,NA,NA,NA +108,NA,1807,"2017",1,0,1,4,99,99,NA,NA +108,NA,1807,"2017",1,0,1,3,99,1,NA,NA +108,NA,1808,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1809,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1810,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1811,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1812,"2017",6,1,NA,1,NA,NA,NA,NA +108,NA,1813,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1814,"2017",1,1,90,3,90,70,NA,NA +108,NA,1814,"2017",1,1,50,1,50,NA,NA,NA +108,NA,1814,"2017",1,1,70,4,70,90,NA,NA +108,NA,1814,"2017",1,1,70,2,70,50,NA,NA +108,NA,1815,"2017",3,0,80,1,20,NA,NA,NA +108,NA,1816,"2017",4,1,60,1,60,NA,NA,NA +108,NA,1817,"2017",2,0,60,1,40,NA,NA,NA +108,NA,1818,"2017",4,0,70,1,30,NA,NA,NA +108,NA,1819,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1820,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1821,"2017",6,1,60,1,60,NA,NA,NA +108,NA,1822,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1823,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1824,"2017",2,1,90,1,90,NA,NA,NA +108,NA,1825,"2017",1,0,1,2,99,1,NA,NA +108,NA,1825,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1825,"2017",1,0,99,4,1,1,NA,NA +108,NA,1825,"2017",1,0,99,3,1,99,NA,NA +108,NA,1826,"2017",1,0,1,3,99,99,NA,NA +108,NA,1826,"2017",1,0,1,2,99,NA,NA,NA +108,NA,1826,"2017",1,0,1,4,99,99,NA,NA +108,NA,1826,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1827,"2017",3,1,50,1,50,NA,NA,NA +108,NA,1828,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1829,"2017",1,0,1,1,99,NA,NA,NA +108,NA,1829,"2017",1,0,99,4,1,NA,NA,NA +108,NA,1829,"2017",1,0,NA,3,NA,99,NA,NA +108,NA,1829,"2017",1,0,1,2,99,99,NA,NA +108,NA,1830,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1831,"2017",4,0,1,1,99,NA,NA,NA +108,NA,1832,"2017",1,1,1,3,1,1,NA,NA +108,NA,1832,"2017",1,1,1,2,1,80,NA,NA +108,NA,1832,"2017",1,1,1,4,1,1,NA,NA +108,NA,1832,"2017",1,1,80,1,80,NA,NA,NA +108,NA,1833,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1834,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1835,"2017",4,0,1,1,99,NA,NA,NA +108,NA,1836,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1837,"2017",6,0,98,1,2,NA,NA,NA +108,NA,1838,"2017",1,0,20,2,80,90,NA,NA +108,NA,1838,"2017",1,0,20,3,80,80,NA,NA +108,NA,1838,"2017",1,0,20,4,80,80,NA,NA +108,NA,1838,"2017",1,0,10,1,90,NA,NA,NA +108,NA,1839,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1840,"2017",3,1,80,1,80,NA,NA,NA +108,NA,1841,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1842,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1843,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1844,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1845,"2017",3,0,70,1,30,NA,NA,NA +108,NA,1846,"2017",4,1,100,1,100,NA,NA,NA +108,NA,1847,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1848,"2017",1,1,NA,2,NA,NA,NA,NA +108,NA,1848,"2017",1,1,99,4,99,99,NA,NA +108,NA,1848,"2017",1,1,99,3,99,NA,NA,NA +108,NA,1848,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1849,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1850,"2017",1,1,NA,2,NA,99,NA,NA +108,NA,1850,"2017",1,1,99,3,99,NA,NA,NA +108,NA,1850,"2017",1,1,99,4,99,99,NA,NA +108,NA,1850,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1851,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1852,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1853,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1854,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1854,"2017",1,0,99,4,1,1,NA,NA +108,NA,1854,"2017",1,0,99,2,1,1,NA,NA +108,NA,1854,"2017",1,0,99,3,1,1,NA,NA +108,NA,1855,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1856,"2017",2,0,90,1,10,NA,NA,NA +108,NA,1857,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,1858,"2017",4,1,1,1,1,NA,NA,NA +108,NA,1859,"2017",5,0,90,1,10,NA,NA,NA +108,NA,1860,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1861,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1862,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1863,"2017",1,1,99,4,99,NA,NA,NA +108,NA,1863,"2017",1,1,NA,3,NA,NA,NA,NA +108,NA,1863,"2017",1,1,NA,2,NA,99,NA,NA +108,NA,1863,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1864,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1865,"2017",3,0,60,1,40,NA,NA,NA +108,NA,1866,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1867,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1868,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1869,"2017",4,0,0,1,100,NA,NA,NA +108,NA,1870,"2017",6,0,0,1,100,NA,NA,NA +108,NA,1871,"2017",2,0,1,1,99,NA,NA,NA +108,NA,1872,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1872,"2017",1,1,1,2,1,99,NA,NA +108,NA,1873,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1874,"2017",3,1,1,1,1,NA,NA,NA +108,NA,1875,"2017",3,0,100,1,0,NA,NA,NA +108,NA,1876,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1877,"2017",5,0,1,1,99,NA,NA,NA +108,NA,1878,"2017",4,0,88,1,12,NA,NA,NA +108,NA,1879,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1880,"2017",1,0,1,2,99,99,NA,NA +108,NA,1880,"2017",1,0,99,3,1,99,NA,NA +108,NA,1880,"2017",1,0,99,4,1,1,NA,NA +108,NA,1880,"2017",1,0,1,1,99,NA,NA,NA +108,NA,1881,"2017",1,1,1,4,1,99,NA,NA +108,NA,1881,"2017",1,1,99,3,99,99,NA,NA +108,NA,1881,"2017",1,1,99,2,99,1,NA,NA +108,NA,1881,"2017",1,1,1,1,1,NA,NA,NA +108,NA,1882,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1883,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1884,"2017",3,0,100,1,0,NA,NA,NA +108,NA,1885,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1886,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1887,"2017",2,0,99,1,1,NA,NA,NA +108,NA,1888,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1889,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1890,"2017",2,1,100,1,100,NA,NA,NA +108,NA,1891,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1892,"2017",6,1,1,1,1,NA,NA,NA +108,NA,1893,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1894,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1895,"2017",5,0,99,1,1,NA,NA,NA +108,NA,1896,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1897,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1898,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1899,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1900,"2017",5,0,55,1,45,NA,NA,NA +108,NA,1901,"2017",2,0,20,1,80,NA,NA,NA +108,NA,1902,"2017",2,0,1,1,99,NA,NA,NA +108,NA,1903,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1904,"2017",2,0,50,1,50,NA,NA,NA +108,NA,1905,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,1906,"2017",5,0,30,1,70,NA,NA,NA +108,NA,1907,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1908,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1909,"2017",6,0,90,1,10,NA,NA,NA +108,NA,1910,"2017",4,0,1,1,99,NA,NA,NA +108,NA,1911,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,1912,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1913,"2017",4,1,50,1,50,NA,NA,NA +108,NA,1914,"2017",1,0,1,2,99,1,NA,NA +108,NA,1914,"2017",1,0,99,1,1,NA,NA,NA +108,NA,1914,"2017",1,0,99,3,1,99,NA,NA +108,NA,1914,"2017",1,0,1,4,99,1,NA,NA +108,NA,1915,"2017",6,0,1,1,99,NA,NA,NA +108,NA,1916,"2017",6,0,80,1,20,NA,NA,NA +108,NA,1917,"2017",1,0,50,2,50,50,NA,NA +108,NA,1917,"2017",1,0,50,1,50,NA,NA,NA +108,NA,1917,"2017",1,0,NA,3,NA,50,NA,NA +108,NA,1917,"2017",1,0,99,4,1,NA,NA,NA +108,NA,1918,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1919,"2017",1,0,0,4,100,100,NA,NA +108,NA,1919,"2017",1,0,0,1,100,NA,NA,NA +108,NA,1919,"2017",1,0,NA,2,NA,100,NA,NA +108,NA,1919,"2017",1,0,0,3,100,NA,NA,NA +108,NA,1920,"2017",3,0,1,1,99,NA,NA,NA +108,NA,1921,"2017",6,0,30,1,70,NA,NA,NA +108,NA,1922,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1923,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1924,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1925,"2017",2,0,100,1,0,NA,NA,NA +108,NA,1926,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1927,"2017",5,1,90,1,90,NA,NA,NA +108,NA,1928,"2017",3,1,95,1,95,NA,NA,NA +108,NA,1929,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1930,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1931,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1932,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1933,"2017",4,1,80,1,80,NA,NA,NA +108,NA,1934,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1935,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1936,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1937,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1938,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1939,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1940,"2017",1,1,90,3,90,90,NA,NA +108,NA,1940,"2017",1,1,90,4,90,90,NA,NA +108,NA,1940,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1940,"2017",1,1,90,2,90,NA,NA,NA +108,NA,1941,"2017",1,0,1,3,99,100,NA,NA +108,NA,1941,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1941,"2017",1,0,0,2,100,NA,NA,NA +108,NA,1941,"2017",1,0,1,4,99,99,NA,NA +108,NA,1942,"2017",1,0,56,4,44,NA,NA,NA +108,NA,1942,"2017",1,0,30,2,70,55,NA,NA +108,NA,1942,"2017",1,0,NA,3,NA,70,NA,NA +108,NA,1942,"2017",1,0,45,1,55,NA,NA,NA +108,NA,1943,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,1944,"2017",4,0,99,1,1,NA,NA,NA +108,NA,1945,"2017",6,0,99,1,1,NA,NA,NA +108,NA,1946,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1947,"2017",1,0,60,3,40,60,NA,NA +108,NA,1947,"2017",1,0,45,4,55,40,NA,NA +108,NA,1947,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1947,"2017",1,0,40,2,60,NA,NA,NA +108,NA,1948,"2017",6,0,90,1,10,NA,NA,NA +108,NA,1949,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1950,"2017",3,0,50,1,50,NA,NA,NA +108,NA,1951,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1952,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1953,"2017",3,0,99,1,1,NA,NA,NA +108,NA,1954,"2017",1,1,99,4,99,99,NA,NA +108,NA,1954,"2017",1,1,1,2,1,1,NA,NA +108,NA,1954,"2017",1,1,99,3,99,1,NA,NA +108,NA,1954,"2017",1,1,1,1,1,NA,NA,NA +108,NA,1955,"2017",2,0,6,1,94,NA,NA,NA +108,NA,1956,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,1957,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,1958,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1959,"2017",3,1,70,1,70,NA,NA,NA +108,NA,1960,"2017",5,0,50,1,50,NA,NA,NA +108,NA,1961,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1962,"2017",1,1,80,3,80,80,NA,NA +108,NA,1962,"2017",1,1,80,2,80,80,NA,NA +108,NA,1962,"2017",1,1,80,1,80,NA,NA,NA +108,NA,1962,"2017",1,1,80,4,80,80,NA,NA +108,NA,1963,"2017",6,1,12,1,12,NA,NA,NA +108,NA,1964,"2017",2,1,1,1,1,NA,NA,NA +108,NA,1965,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,1966,"2017",1,0,80,4,20,5,NA,NA +108,NA,1966,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1966,"2017",1,0,60,2,40,NA,NA,NA +108,NA,1966,"2017",1,0,95,3,5,40,NA,NA +108,NA,1967,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1968,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1969,"2017",3,0,30,1,70,NA,NA,NA +108,NA,1970,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1971,"2017",4,1,10,1,10,NA,NA,NA +108,NA,1972,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1973,"2017",4,0,50,1,50,NA,NA,NA +108,NA,1974,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1974,"2017",1,0,1,3,99,99,NA,NA +108,NA,1974,"2017",1,0,1,4,99,99,NA,NA +108,NA,1974,"2017",1,0,1,2,99,NA,NA,NA +108,NA,1975,"2017",5,1,99,1,99,NA,NA,NA +108,NA,1976,"2017",4,1,6,1,6,NA,NA,NA +108,NA,1977,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1978,"2017",1,1,50,3,50,55,NA,NA +108,NA,1978,"2017",1,1,99,4,99,50,NA,NA +108,NA,1978,"2017",1,1,99,1,99,NA,NA,NA +108,NA,1979,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,1980,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1980,"2017",1,0,40,3,60,52,NA,NA +108,NA,1980,"2017",1,0,30,4,70,60,NA,NA +108,NA,1980,"2017",1,0,48,2,52,NA,NA,NA +108,NA,1981,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1982,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,1983,"2017",1,1,40,4,40,80,NA,NA +108,NA,1983,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,1983,"2017",1,1,80,3,80,80,NA,NA +108,NA,1983,"2017",1,1,80,2,80,NA,NA,NA +108,NA,1984,"2017",4,1,99,1,99,NA,NA,NA +108,NA,1985,"2017",6,1,50,1,50,NA,NA,NA +108,NA,1986,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,1987,"2017",1,1,80,3,80,50,NA,NA +108,NA,1987,"2017",1,1,90,4,90,80,NA,NA +108,NA,1987,"2017",1,1,80,1,80,NA,NA,NA +108,NA,1987,"2017",1,1,50,2,50,80,NA,NA +108,NA,1988,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,1988,"2017",1,0,20,4,80,NA,NA,NA +108,NA,1988,"2017",1,0,NA,3,NA,NA,NA,NA +108,NA,1988,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,1989,"2017",2,1,90,1,90,NA,NA,NA +108,NA,1990,"2017",6,0,50,1,50,NA,NA,NA +108,NA,1991,"2017",5,1,1,1,1,NA,NA,NA +108,NA,1992,"2017",5,1,50,1,50,NA,NA,NA +108,NA,1993,"2017",6,1,99,1,99,NA,NA,NA +108,NA,1994,"2017",2,1,99,1,99,NA,NA,NA +108,NA,1995,"2017",1,0,0,4,100,100,NA,NA +108,NA,1995,"2017",1,0,97,1,3,NA,NA,NA +108,NA,1995,"2017",1,0,0,2,100,3,NA,NA +108,NA,1995,"2017",1,0,0,3,100,100,NA,NA +108,NA,1996,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,1997,"2017",3,1,99,1,99,NA,NA,NA +108,NA,1998,"2017",3,1,70,1,70,NA,NA,NA +108,NA,1999,"2017",6,0,50,1,50,NA,NA,NA +108,NA,2000,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,2001,"2017",2,1,99,1,99,NA,NA,NA +108,NA,2002,"2017",6,1,99,1,99,NA,NA,NA +108,NA,2003,"2017",5,1,NA,1,NA,NA,NA,NA +108,NA,2004,"2017",2,1,1,1,1,NA,NA,NA +108,NA,2005,"2017",1,1,1,4,1,99,NA,NA +108,NA,2005,"2017",1,1,99,3,99,99,NA,NA +108,NA,2005,"2017",1,1,99,2,99,99,NA,NA +108,NA,2005,"2017",1,1,99,1,99,NA,NA,NA +108,NA,2006,"2017",3,0,100,1,0,NA,NA,NA +108,NA,2007,"2017",1,0,0,3,100,100,NA,NA +108,NA,2007,"2017",1,0,0,2,100,0,NA,NA +108,NA,2007,"2017",1,0,0,4,100,100,NA,NA +108,NA,2007,"2017",1,0,100,1,0,NA,NA,NA +108,NA,2008,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,2009,"2017",2,0,90,1,10,NA,NA,NA +108,NA,2010,"2017",2,1,80,1,80,NA,NA,NA +108,NA,2011,"2017",5,1,50,1,50,NA,NA,NA +108,NA,2012,"2017",3,1,99,1,99,NA,NA,NA +108,NA,2013,"2017",1,0,50,4,50,1,NA,NA +108,NA,2013,"2017",1,0,99,3,1,0,NA,NA +108,NA,2013,"2017",1,0,99,1,1,NA,NA,NA +108,NA,2013,"2017",1,0,100,2,0,1,NA,NA +108,NA,2014,"2017",3,1,90,1,90,NA,NA,NA +108,NA,2015,"2017",3,1,90,1,90,NA,NA,NA +108,NA,2016,"2017",1,1,0,1,0,NA,NA,NA +108,NA,2016,"2017",1,1,50,2,50,0,NA,NA +108,NA,2016,"2017",1,1,NA,3,NA,50,NA,NA +108,NA,2016,"2017",1,1,99,4,99,NA,NA,NA +108,NA,2017,"2017",3,1,70,1,70,NA,NA,NA +108,NA,2018,"2017",2,1,100,1,100,NA,NA,NA +108,NA,2019,"2017",3,1,90,1,90,NA,NA,NA +108,NA,2020,"2017",1,0,NA,4,NA,99,NA,NA +108,NA,2020,"2017",1,0,1,2,99,99,NA,NA +108,NA,2020,"2017",1,0,1,3,99,99,NA,NA +108,NA,2020,"2017",1,0,1,1,99,NA,NA,NA +108,NA,2021,"2017",1,1,90,2,90,80,NA,NA +108,NA,2021,"2017",1,1,99,3,99,90,NA,NA +108,NA,2021,"2017",1,1,80,1,80,NA,NA,NA +108,NA,2021,"2017",1,1,100,4,100,99,NA,NA +108,NA,2022,"2017",6,1,99,1,99,NA,NA,NA +108,NA,2023,"2017",6,1,99,1,99,NA,NA,NA +108,NA,2024,"2017",1,1,99,2,99,80,NA,NA +108,NA,2024,"2017",1,1,99,3,99,99,NA,NA +108,NA,2024,"2017",1,1,100,4,100,99,NA,NA +108,NA,2024,"2017",1,1,80,1,80,NA,NA,NA +108,NA,2025,"2017",3,1,99,1,99,NA,NA,NA +108,NA,2026,"2017",6,1,90,1,90,NA,NA,NA +108,NA,2027,"2017",6,0,2,1,98,NA,NA,NA +108,NA,2028,"2017",2,1,40,1,40,NA,NA,NA +108,NA,2029,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,2030,"2017",3,1,50,1,50,NA,NA,NA +108,NA,2031,"2017",6,0,99,1,1,NA,NA,NA +108,NA,2032,"2017",3,1,60,1,60,NA,NA,NA +108,NA,2033,"2017",4,1,NA,1,NA,NA,NA,NA +108,NA,2034,"2017",5,0,99,1,1,NA,NA,NA +108,NA,2035,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,2035,"2017",1,0,NA,3,NA,NA,NA,NA +108,NA,2035,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,2035,"2017",1,0,10,4,90,NA,NA,NA +108,NA,2036,"2017",4,0,1,1,99,NA,NA,NA +108,NA,2037,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,2037,"2017",1,1,99,2,99,NA,NA,NA +108,NA,2037,"2017",1,1,100,4,100,99,NA,NA +108,NA,2037,"2017",1,1,99,3,99,99,NA,NA +108,NA,2038,"2017",5,1,1,1,1,NA,NA,NA +108,NA,2039,"2017",1,0,50,4,50,50,NA,NA +108,NA,2039,"2017",1,0,50,2,50,50,NA,NA +108,NA,2039,"2017",1,0,50,1,50,NA,NA,NA +108,NA,2039,"2017",1,0,50,3,50,50,NA,NA +108,NA,2040,"2017",2,0,30,1,70,NA,NA,NA +108,NA,2041,"2017",6,0,100,1,0,NA,NA,NA +108,NA,2042,"2017",3,1,10,1,10,NA,NA,NA +108,NA,2043,"2017",4,1,80,1,80,NA,NA,NA +108,NA,2044,"2017",4,1,90,1,90,NA,NA,NA +108,NA,2045,"2017",1,0,90,2,10,99,NA,NA +108,NA,2045,"2017",1,0,90,3,10,10,NA,NA +108,NA,2045,"2017",1,0,90,4,10,10,NA,NA +108,NA,2045,"2017",1,0,1,1,99,NA,NA,NA +108,NA,2046,"2017",4,0,99,1,1,NA,NA,NA +108,NA,2047,"2017",1,1,99,1,99,NA,NA,NA +108,NA,2047,"2017",1,1,50,2,50,99,NA,NA +108,NA,2047,"2017",1,1,99,4,99,99,NA,NA +108,NA,2047,"2017",1,1,99,3,99,50,NA,NA +108,NA,2048,"2017",1,1,99,2,99,1,NA,NA +108,NA,2048,"2017",1,1,1,1,1,NA,NA,NA +108,NA,2048,"2017",1,1,1,4,1,99,NA,NA +108,NA,2048,"2017",1,1,99,3,99,99,NA,NA +108,NA,2049,"2017",5,0,75,1,25,NA,NA,NA +108,NA,2050,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,2051,"2017",6,1,60,1,60,NA,NA,NA +108,NA,2052,"2017",1,0,1,1,99,NA,NA,NA +108,NA,2052,"2017",1,0,1,3,99,99,NA,NA +108,NA,2052,"2017",1,0,1,2,99,99,NA,NA +108,NA,2052,"2017",1,0,1,4,99,99,NA,NA +108,NA,2053,"2017",4,0,80,1,20,NA,NA,NA +108,NA,2054,"2017",2,0,90,1,10,NA,NA,NA +108,NA,2055,"2017",2,0,10,1,90,NA,NA,NA +108,NA,2056,"2017",3,0,50,1,50,NA,NA,NA +108,NA,2057,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,2058,"2017",5,1,60,1,60,NA,NA,NA +108,NA,2059,"2017",5,1,1,1,1,NA,NA,NA +108,NA,2060,"2017",1,1,1,3,1,1,NA,NA +108,NA,2060,"2017",1,1,1,4,1,1,NA,NA +108,NA,2060,"2017",1,1,99,1,99,NA,NA,NA +108,NA,2060,"2017",1,1,1,2,1,99,NA,NA +108,NA,2061,"2017",5,0,99,1,1,NA,NA,NA +108,NA,2062,"2017",4,1,99,1,99,NA,NA,NA +108,NA,2063,"2017",6,1,99,1,99,NA,NA,NA +108,NA,2064,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,2065,"2017",5,1,99,1,99,NA,NA,NA +108,NA,2066,"2017",3,0,NA,1,NA,NA,NA,NA +108,NA,2067,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,2068,"2017",6,1,99,1,99,NA,NA,NA +108,NA,2069,"2017",6,0,1,1,99,NA,NA,NA +108,NA,2070,"2017",1,0,1,2,99,99,NA,NA +108,NA,2070,"2017",1,0,1,3,99,99,NA,NA +108,NA,2070,"2017",1,0,1,1,99,NA,NA,NA +108,NA,2070,"2017",1,0,1,4,99,99,NA,NA +108,NA,2071,"2017",6,0,99,1,1,NA,NA,NA +108,NA,2072,"2017",1,1,20,2,20,NA,NA,NA +108,NA,2072,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,2072,"2017",1,1,20,3,20,20,NA,NA +108,NA,2072,"2017",1,1,60,4,60,20,NA,NA +108,NA,2073,"2017",2,1,99,1,99,NA,NA,NA +108,NA,2074,"2017",5,1,50,1,50,NA,NA,NA +108,NA,2075,"2017",5,1,1,1,1,NA,NA,NA +108,NA,2076,"2017",3,0,99,1,1,NA,NA,NA +108,NA,2077,"2017",6,0,1,1,99,NA,NA,NA +108,NA,2078,"2017",4,0,94,1,6,NA,NA,NA +108,NA,2079,"2017",3,1,50,1,50,NA,NA,NA +108,NA,2080,"2017",1,0,49,3,51,40,NA,NA +108,NA,2080,"2017",1,0,60,2,40,50,NA,NA +108,NA,2080,"2017",1,0,50,1,50,NA,NA,NA +108,NA,2080,"2017",1,0,20,4,80,51,NA,NA +108,NA,2081,"2017",5,0,99,1,1,NA,NA,NA +108,NA,2082,"2017",2,0,1,1,99,NA,NA,NA +108,NA,2083,"2017",5,1,90,1,90,NA,NA,NA +108,NA,2084,"2017",3,0,1,1,99,NA,NA,NA +108,NA,2085,"2017",6,1,50,1,50,NA,NA,NA +108,NA,2086,"2017",4,0,99,1,1,NA,NA,NA +108,NA,2087,"2017",1,0,1,3,99,99,NA,NA +108,NA,2087,"2017",1,0,99,4,1,99,NA,NA +108,NA,2087,"2017",1,0,1,2,99,99,NA,NA +108,NA,2087,"2017",1,0,1,1,99,NA,NA,NA +108,NA,2088,"2017",5,1,65,1,65,NA,NA,NA +108,NA,2089,"2017",5,0,NA,1,NA,NA,NA,NA +108,NA,2090,"2017",1,1,1,2,1,NA,NA,NA +108,NA,2090,"2017",1,1,NA,4,NA,80,NA,NA +108,NA,2090,"2017",1,1,80,3,80,1,NA,NA +108,NA,2090,"2017",1,1,NA,1,NA,NA,NA,NA +108,NA,2091,"2017",1,1,50,1,50,NA,NA,NA +108,NA,2091,"2017",1,1,99,4,99,99,NA,NA +108,NA,2091,"2017",1,1,99,3,99,99,NA,NA +108,NA,2091,"2017",1,1,99,2,99,50,NA,NA +108,NA,2092,"2017",1,0,1,3,99,99,NA,NA +108,NA,2092,"2017",1,0,1,1,99,NA,NA,NA +108,NA,2092,"2017",1,0,1,2,99,99,NA,NA +108,NA,2092,"2017",1,0,1,4,99,99,NA,NA +108,NA,2093,"2017",2,1,70,1,70,NA,NA,NA +108,NA,2094,"2017",4,0,67,1,33,NA,NA,NA +108,NA,2095,"2017",1,1,99,2,99,99,NA,NA +108,NA,2095,"2017",1,1,99,3,99,99,NA,NA +108,NA,2095,"2017",1,1,99,1,99,NA,NA,NA +108,NA,2095,"2017",1,1,99,4,99,99,NA,NA +108,NA,2096,"2017",6,1,99,1,99,NA,NA,NA +108,NA,2097,"2017",6,0,1,1,99,NA,NA,NA +108,NA,2098,"2017",5,0,80,1,20,NA,NA,NA +108,NA,2099,"2017",4,0,99,1,1,NA,NA,NA +108,NA,2100,"2017",3,1,99,1,99,NA,NA,NA +108,NA,2101,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,2102,"2017",1,0,99,1,1,NA,NA,NA +108,NA,2102,"2017",1,0,99,3,1,1,NA,NA +108,NA,2102,"2017",1,0,99,2,1,1,NA,NA +108,NA,2102,"2017",1,0,99,4,1,1,NA,NA +108,NA,2103,"2017",6,0,50,1,50,NA,NA,NA +108,NA,2104,"2017",5,1,1,1,1,NA,NA,NA +108,NA,2105,"2017",2,0,NA,1,NA,NA,NA,NA +108,NA,2106,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,2106,"2017",1,0,99,4,1,1,NA,NA +108,NA,2106,"2017",1,0,99,2,1,NA,NA,NA +108,NA,2106,"2017",1,0,99,3,1,1,NA,NA +108,NA,2107,"2017",2,0,99,1,1,NA,NA,NA +108,NA,2108,"2017",1,0,99,4,1,NA,NA,NA +108,NA,2108,"2017",1,0,NA,3,NA,NA,NA,NA +108,NA,2108,"2017",1,0,NA,2,NA,NA,NA,NA +108,NA,2108,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,2109,"2017",5,0,1,1,99,NA,NA,NA +108,NA,2110,"2017",6,0,50,1,50,NA,NA,NA +108,NA,2111,"2017",6,0,50,1,50,NA,NA,NA +108,NA,2112,"2017",5,0,50,1,50,NA,NA,NA +108,NA,2113,"2017",6,1,99,1,99,NA,NA,NA +108,NA,2114,"2017",6,1,NA,1,NA,NA,NA,NA +108,NA,2115,"2017",1,0,1,2,99,NA,NA,NA +108,NA,2115,"2017",1,0,NA,4,NA,99,NA,NA +108,NA,2115,"2017",1,0,1,3,99,99,NA,NA +108,NA,2115,"2017",1,0,NA,1,NA,NA,NA,NA +108,NA,2116,"2017",5,1,99,1,99,NA,NA,NA +108,NA,2117,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,2118,"2017",6,1,60,1,60,NA,NA,NA +108,NA,2119,"2017",3,1,0,1,0,NA,NA,NA +108,NA,2120,"2017",6,0,50,1,50,NA,NA,NA +108,NA,2121,"2017",6,0,1,1,99,NA,NA,NA +108,NA,2122,"2017",6,0,99,1,1,NA,NA,NA +108,NA,2123,"2017",1,0,50,3,50,50,NA,NA +108,NA,2123,"2017",1,0,50,2,50,1,NA,NA +108,NA,2123,"2017",1,0,99,4,1,50,NA,NA +108,NA,2123,"2017",1,0,99,1,1,NA,NA,NA +108,NA,2124,"2017",6,0,NA,1,NA,NA,NA,NA +108,NA,2125,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,2126,"2017",3,1,NA,1,NA,NA,NA,NA +108,NA,2127,"2017",2,1,50,1,50,NA,NA,NA +108,NA,2128,"2017",6,1,40,1,40,NA,NA,NA +108,NA,2129,"2017",4,0,NA,1,NA,NA,NA,NA +108,NA,2130,"2017",5,0,70,1,30,NA,NA,NA +108,NA,2131,"2017",1,0,1,4,99,99,NA,NA +108,NA,2131,"2017",1,0,1,1,99,NA,NA,NA +108,NA,2131,"2017",1,0,1,3,99,99,NA,NA +108,NA,2131,"2017",1,0,1,2,99,99,NA,NA +108,NA,2132,"2017",6,1,60,1,60,NA,NA,NA +108,NA,2133,"2017",2,1,NA,1,NA,NA,NA,NA +108,NA,2134,"2017",6,1,2,1,2,NA,NA,NA +108,NA,2135,"2017",2,0,2,1,98,NA,NA,NA +108,115,1,"2017",6,1,90,2,90,90,"Xinhua",NA +108,115,2,"2017",6,0,NA,2,NA,NA,"Xinhua",NA +108,115,4,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +108,115,7,"2017",5,1,90,3,90,60,"Xinhua",NA +108,115,9,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,11,"2017",6,1,99,3,99,50,"Xinhua",NA +108,115,13,"2017",5,1,3,3,3,NA,"Xinhua",NA +108,115,15,"2017",6,1,NA,2,NA,50,"Xinhua",NA +108,115,17,"2017",2,0,99,2,1,1,"Xinhua",NA +108,115,26,"2017",2,0,5,3,95,1,"Xinhua",NA +108,115,28,"2017",2,0,1,2,99,90,"Xinhua",NA +108,115,30,"2017",2,0,NA,2,NA,NA,"Xinhua",NA +108,115,31,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +108,115,33,"2017",2,1,30,2,30,1,"Xinhua",NA +108,115,35,"2017",3,0,99,3,1,1,"Xinhua",NA +108,115,36,"2017",3,0,25,3,75,65,"Xinhua",NA +108,115,41,"2017",5,0,44,2,56,77,"Xinhua",NA +108,115,42,"2017",3,1,50,3,50,50,"Xinhua",NA +108,115,46,"2017",2,0,70,2,30,10,"Xinhua",NA +108,115,49,"2017",3,0,19,3,81,77,"Xinhua",NA +108,115,50,"2017",6,1,10,3,10,10,"Xinhua",NA +108,115,54,"2017",5,1,1,2,1,50,"Xinhua",NA +108,115,55,"2017",5,1,90,2,90,50,"Xinhua",NA +108,115,60,"2017",6,0,50,3,50,50,"Xinhua",NA +108,115,64,"2017",2,0,99,2,1,1,"Xinhua",NA +108,115,66,"2017",4,0,60,2,40,40,"Xinhua",NA +108,115,70,"2017",2,1,80,3,80,50,"Xinhua",NA +108,115,83,"2017",3,1,90,2,90,90,"Xinhua",NA +108,115,84,"2017",4,0,99,2,1,1,"Xinhua",NA +108,115,86,"2017",2,0,90,3,10,20,"Xinhua",NA +108,115,88,"2017",3,1,90,2,90,70,"Xinhua",NA +108,115,90,"2017",2,1,99,3,99,99,"Xinhua",NA +108,115,94,"2017",4,0,0,2,100,100,"Xinhua",NA +108,115,97,"2017",2,0,75,3,25,25,"Xinhua",NA +108,115,100,"2017",3,1,99,2,99,1,"Xinhua",NA +108,115,102,"2017",3,1,85,2,85,99,"Xinhua",NA +108,115,106,"2017",4,1,0,2,0,0,"Xinhua",NA +108,115,107,"2017",2,1,77,2,77,45,"Xinhua",NA +108,115,115,"2017",3,1,70,3,70,90,"Xinhua",NA +108,115,116,"2017",4,1,99,2,99,50,"Xinhua",NA +108,115,120,"2017",3,1,99,3,99,99,"Xinhua",NA +108,115,124,"2017",3,1,NA,2,NA,NA,"Xinhua",NA +108,115,130,"2017",4,1,99,2,99,99,"Xinhua",NA +108,115,132,"2017",2,1,1,2,1,NA,"Xinhua",NA +108,115,135,"2017",2,0,99,2,1,50,"Xinhua",NA +108,115,136,"2017",2,1,50,2,50,99,"Xinhua",NA +108,115,137,"2017",3,0,99,3,1,1,"Xinhua",NA +108,115,140,"2017",3,1,64,3,64,60,"Xinhua",NA +108,115,143,"2017",3,1,30,3,30,24,"Xinhua",NA +108,115,1170,"2017",4,0,50,2,50,50,"Xinhua",NA +108,115,1177,"2017",5,0,99,2,1,99,"Xinhua",NA +108,115,1178,"2017",3,0,50,2,50,50,"Xinhua",NA +108,115,1179,"2017",3,0,30,2,70,80,"Xinhua",NA +108,115,1184,"2017",4,0,0,2,100,1,"Xinhua",NA +108,115,1186,"2017",4,0,70,2,30,50,"Xinhua",NA +108,115,1190,"2017",5,1,30,2,30,40,"Xinhua",NA +108,115,1199,"2017",5,0,90,3,10,10,"Xinhua",NA +108,115,1204,"2017",4,1,10,2,10,50,"Xinhua",NA +108,115,1210,"2017",3,1,30,3,30,40,"Xinhua",NA +108,115,1214,"2017",6,0,30,2,70,60,"Xinhua",NA +108,115,1216,"2017",6,1,20,3,20,20,"Xinhua",NA +108,115,1219,"2017",4,0,99,2,1,1,"Xinhua",NA +108,115,1222,"2017",5,1,1,3,1,1,"Xinhua",NA +108,115,1224,"2017",4,0,90,2,10,50,"Xinhua",NA +108,115,1225,"2017",5,1,99,2,99,99,"Xinhua",NA +108,115,1226,"2017",3,0,70,2,30,50,"Xinhua",NA +108,115,1228,"2017",3,0,99,2,1,99,"Xinhua",NA +108,115,1229,"2017",2,1,80,3,80,70,"Xinhua",NA +108,115,1231,"2017",2,0,99,2,1,NA,"Xinhua",NA +108,115,1233,"2017",3,0,1,2,99,99,"Xinhua",NA +108,115,1234,"2017",5,1,80,2,80,70,"Xinhua",NA +108,115,1242,"2017",5,1,99,3,99,99,"Xinhua",NA +108,115,1243,"2017",5,1,55,2,55,60,"Xinhua",NA +108,115,1244,"2017",2,0,50,3,50,50,"Xinhua",NA +108,115,1248,"2017",5,1,50,2,50,4,"Xinhua",NA +108,115,1249,"2017",2,0,99,3,1,1,"Xinhua",NA +108,115,1252,"2017",4,0,1,2,99,NA,"Xinhua",NA +108,115,1257,"2017",5,1,99,2,99,99,"Xinhua",NA +108,115,1258,"2017",5,1,99,3,99,99,"Xinhua",NA +108,115,1259,"2017",2,1,98,3,98,NA,"Xinhua",NA +108,115,1263,"2017",3,0,65,2,35,50,"Xinhua",NA +108,115,1265,"2017",3,0,100,2,0,0,"Xinhua",NA +108,115,1266,"2017",6,1,50,3,50,99,"Xinhua",NA +108,115,1267,"2017",2,1,1,3,1,1,"Xinhua",NA +108,115,1268,"2017",3,0,99,3,1,1,"Xinhua",NA +108,115,1272,"2017",3,1,99,2,99,99,"Xinhua",NA +108,115,1273,"2017",5,0,1,3,99,99,"Xinhua",NA +108,115,1274,"2017",5,0,1,3,99,99,"Xinhua",NA +108,115,1280,"2017",4,0,1,2,99,50,"Xinhua",NA +108,115,1282,"2017",2,1,50,3,50,80,"Xinhua",NA +108,115,1290,"2017",5,1,20,3,20,30,"Xinhua",NA +108,115,1292,"2017",4,1,99,2,99,50,"Xinhua",NA +108,115,1294,"2017",2,1,1,3,1,50,"Xinhua",NA +108,115,1295,"2017",4,1,50,2,50,50,"Xinhua",NA +108,115,1299,"2017",5,1,99,2,99,99,"Xinhua",NA +108,115,1301,"2017",6,0,50,3,50,50,"Xinhua",NA +108,115,1302,"2017",5,1,99,2,99,99,"Xinhua",NA +108,115,1306,"2017",3,1,1,3,1,1,"Xinhua",NA +108,115,1307,"2017",4,0,45,2,55,NA,"Xinhua",NA +108,115,1308,"2017",6,1,1,3,1,50,"Xinhua",NA +108,115,1310,"2017",4,1,NA,2,NA,NA,"Xinhua",NA +108,115,1314,"2017",6,1,1,2,1,1,"Xinhua",NA +108,115,1316,"2017",5,1,NA,3,NA,NA,"Xinhua",NA +108,115,1318,"2017",5,1,99,2,99,99,"Xinhua",NA +108,115,1319,"2017",4,0,NA,2,NA,50,"Xinhua",NA +108,115,1320,"2017",3,1,99,3,99,1,"Xinhua",NA +108,115,1322,"2017",5,1,99,3,99,99,"Xinhua",NA +108,115,1324,"2017",3,0,20,3,80,50,"Xinhua",NA +108,115,1326,"2017",3,0,50,2,50,50,"Xinhua",NA +108,115,1327,"2017",5,1,99,2,99,55,"Xinhua",NA +108,115,1328,"2017",5,0,NA,3,NA,50,"Xinhua",NA +108,115,1329,"2017",4,1,24,2,24,NA,"Xinhua",NA +108,115,1331,"2017",3,1,NA,2,NA,NA,"Xinhua",NA +108,115,1332,"2017",5,0,5,3,95,20,"Xinhua",NA +108,115,1334,"2017",4,0,55,2,45,50,"Xinhua",NA +108,115,1335,"2017",6,0,70,2,30,50,"Xinhua",NA +108,115,1336,"2017",3,1,99,2,99,99,"Xinhua",NA +108,115,1337,"2017",6,1,50,2,50,50,"Xinhua",NA +108,115,1340,"2017",2,1,99,3,99,99,"Xinhua",NA +108,115,1342,"2017",6,0,70,2,30,30,"Xinhua",NA +108,115,1343,"2017",5,0,99,2,1,99,"Xinhua",NA +108,115,1345,"2017",6,1,70,3,70,80,"Xinhua",NA +108,115,1348,"2017",2,0,5,3,95,94,"Xinhua",NA +108,115,1350,"2017",5,1,50,3,50,40,"Xinhua",NA +108,115,1351,"2017",3,1,99,2,99,99,"Xinhua",NA +108,115,1354,"2017",4,1,99,2,99,50,"Xinhua",NA +108,115,1356,"2017",5,0,1,2,99,1,"Xinhua",NA +108,115,1360,"2017",6,1,72,3,72,40,"Xinhua",NA +108,115,1361,"2017",6,0,1,2,99,99,"Xinhua",NA +108,115,1369,"2017",5,0,30,3,70,60,"Xinhua",NA +108,115,1370,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,1371,"2017",4,1,99,2,99,50,"Xinhua",NA +108,115,1373,"2017",4,0,99,2,1,50,"Xinhua",NA +108,115,1377,"2017",6,1,20,2,20,15,"Xinhua",NA +108,115,1382,"2017",3,1,99,3,99,99,"Xinhua",NA +108,115,1386,"2017",4,0,99,2,1,1,"Xinhua",NA +108,115,1391,"2017",2,0,99,3,1,45,"Xinhua",NA +108,115,1397,"2017",3,0,1,3,99,99,"Xinhua",NA +108,115,1399,"2017",3,1,80,3,80,70,"Xinhua",NA +108,115,1401,"2017",6,0,1,3,99,50,"Xinhua",NA +108,115,1405,"2017",5,0,99,3,1,1,"Xinhua",NA +108,115,1407,"2017",3,0,40,2,60,60,"Xinhua",NA +108,115,1409,"2017",2,0,40,3,60,50,"Xinhua",NA +108,115,1414,"2017",6,0,1,2,99,1,"Xinhua",NA +108,115,1416,"2017",3,0,1,2,99,99,"Xinhua",NA +108,115,1425,"2017",5,1,99,3,99,1,"Xinhua",NA +108,115,1428,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +108,115,1430,"2017",3,0,99,3,1,1,"Xinhua",NA +108,115,1432,"2017",3,1,99,3,99,99,"Xinhua",NA +108,115,1436,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,1437,"2017",2,1,1,2,1,1,"Xinhua",NA +108,115,1438,"2017",3,1,70,3,70,70,"Xinhua",NA +108,115,1439,"2017",6,1,90,2,90,80,"Xinhua",NA +108,115,1440,"2017",6,0,67,3,33,NA,"Xinhua",NA +108,115,1445,"2017",6,0,99,3,1,1,"Xinhua",NA +108,115,1446,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,1451,"2017",2,0,50,3,50,50,"Xinhua",NA +108,115,1454,"2017",4,0,99,2,1,1,"Xinhua",NA +108,115,1455,"2017",4,0,50,2,50,50,"Xinhua",NA +108,115,1457,"2017",5,0,99,3,1,50,"Xinhua",NA +108,115,1458,"2017",3,1,99,2,99,9,"Xinhua",NA +108,115,1460,"2017",3,1,1,3,1,99,"Xinhua",NA +108,115,1464,"2017",4,0,70,2,30,50,"Xinhua",NA +108,115,1467,"2017",5,0,99,3,1,99,"Xinhua",NA +108,115,1472,"2017",5,0,99,3,1,NA,"Xinhua",NA +108,115,1473,"2017",4,1,60,2,60,NA,"Xinhua",NA +108,115,1477,"2017",2,1,50,3,50,50,"Xinhua",NA +108,115,1478,"2017",2,1,99,2,99,99,"Xinhua",NA +108,115,1479,"2017",2,0,NA,2,NA,90,"Xinhua",NA +108,115,1482,"2017",3,0,62,2,38,46,"Xinhua",NA +108,115,1484,"2017",2,0,50,3,50,50,"Xinhua",NA +108,115,1486,"2017",3,0,80,3,20,1,"Xinhua",NA +108,115,1488,"2017",2,1,99,2,99,99,"Xinhua",NA +108,115,1489,"2017",4,0,50,2,50,50,"Xinhua",NA +108,115,1490,"2017",2,1,99,3,99,9,"Xinhua",NA +108,115,1492,"2017",5,0,3,3,97,98,"Xinhua",NA +108,115,1500,"2017",2,0,NA,2,NA,1,"Xinhua",NA +108,115,1502,"2017",6,0,50,2,50,1,"Xinhua",NA +108,115,1504,"2017",3,0,50,3,50,NA,"Xinhua",NA +108,115,1505,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,1516,"2017",5,0,99,2,1,1,"Xinhua",NA +108,115,1517,"2017",3,0,1,3,99,50,"Xinhua",NA +108,115,1520,"2017",2,0,99,3,1,50,"Xinhua",NA +108,115,1521,"2017",2,0,NA,3,NA,1,"Xinhua",NA +108,115,1523,"2017",2,0,50,2,50,50,"Xinhua",NA +108,115,1524,"2017",4,0,5,2,95,92,"Xinhua",NA +108,115,1527,"2017",2,0,99,3,1,NA,"Xinhua",NA +108,115,1528,"2017",2,1,NA,2,NA,50,"Xinhua",NA +108,115,1529,"2017",5,0,99,3,1,50,"Xinhua",NA +108,115,1530,"2017",5,1,50,2,50,50,"Xinhua",NA +108,115,1536,"2017",2,0,99,2,1,1,"Xinhua",NA +108,115,1537,"2017",6,0,99,3,1,1,"Xinhua",NA +108,115,1541,"2017",3,1,99,3,99,99,"Xinhua",NA +108,115,1542,"2017",5,1,1,2,1,1,"Xinhua",NA +108,115,1544,"2017",5,1,50,2,50,50,"Xinhua",NA +108,115,1546,"2017",2,0,30,3,70,40,"Xinhua",NA +108,115,1551,"2017",5,0,20,3,80,80,"Xinhua",NA +108,115,1552,"2017",6,0,99,2,1,1,"Xinhua",NA +108,115,1553,"2017",5,0,99,3,1,1,"Xinhua",NA +108,115,1556,"2017",2,1,99,3,99,50,"Xinhua",NA +108,115,1562,"2017",2,1,50,2,50,1,"Xinhua",NA +108,115,1563,"2017",5,0,50,2,50,50,"Xinhua",NA +108,115,1567,"2017",5,1,99,3,99,50,"Xinhua",NA +108,115,1569,"2017",4,1,NA,2,NA,50,"Xinhua",NA +108,115,1570,"2017",5,0,99,3,1,10,"Xinhua",NA +108,115,1572,"2017",5,0,50,3,50,1,"Xinhua",NA +108,115,1580,"2017",6,1,1,2,1,50,"Xinhua",NA +108,115,1581,"2017",2,0,NA,2,NA,50,"Xinhua",NA +108,115,1582,"2017",6,0,50,2,50,50,"Xinhua",NA +108,115,1586,"2017",4,1,99,2,99,99,"Xinhua",NA +108,115,1588,"2017",5,0,50,2,50,50,"Xinhua",NA +108,115,1590,"2017",3,0,80,3,20,20,"Xinhua",NA +108,115,1596,"2017",3,0,NA,2,NA,99,"Xinhua",NA +108,115,1598,"2017",6,0,50,3,50,50,"Xinhua",NA +108,115,1603,"2017",5,1,NA,3,NA,NA,"Xinhua",NA +108,115,1606,"2017",4,1,50,2,50,50,"Xinhua",NA +108,115,1609,"2017",6,0,99,3,1,1,"Xinhua",NA +108,115,1610,"2017",3,1,99,2,99,NA,"Xinhua",NA +108,115,1611,"2017",5,1,NA,2,NA,NA,"Xinhua",NA +108,115,1612,"2017",3,1,50,3,50,50,"Xinhua",NA +108,115,1613,"2017",5,1,1,2,1,1,"Xinhua",NA +108,115,1614,"2017",2,0,30,2,70,NA,"Xinhua",NA +108,115,1615,"2017",5,1,99,2,99,NA,"Xinhua",NA +108,115,1617,"2017",3,1,1,3,1,1,"Xinhua",NA +108,115,1620,"2017",2,1,99,2,99,50,"Xinhua",NA +108,115,1621,"2017",6,0,60,2,40,40,"Xinhua",NA +108,115,1622,"2017",5,1,60,2,60,50,"Xinhua",NA +108,115,1623,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +108,115,1624,"2017",3,0,25,2,75,50,"Xinhua",NA +108,115,1625,"2017",3,0,40,3,60,70,"Xinhua",NA +108,115,1626,"2017",6,0,1,3,99,99,"Xinhua",NA +108,115,1634,"2017",5,0,40,3,60,60,"Xinhua",NA +108,115,1640,"2017",5,0,90,3,10,20,"Xinhua",NA +108,115,1644,"2017",5,1,50,2,50,50,"Xinhua",NA +108,115,1646,"2017",5,0,70,3,30,20,"Xinhua",NA +108,115,1648,"2017",5,0,99,3,1,1,"Xinhua",NA +108,115,1655,"2017",6,0,1,3,99,99,"Xinhua",NA +108,115,1656,"2017",6,0,60,2,40,50,"Xinhua",NA +108,115,1659,"2017",4,0,50,2,50,50,"Xinhua",NA +108,115,1662,"2017",3,1,80,3,80,50,"Xinhua",NA +108,115,1663,"2017",6,0,99,2,1,NA,"Xinhua",NA +108,115,1668,"2017",3,1,99,3,99,99,"Xinhua",NA +108,115,1676,"2017",2,0,6.6,3,93.4,93.2,"Xinhua",NA +108,115,1679,"2017",2,0,99,2,1,1,"Xinhua",NA +108,115,1686,"2017",2,0,99,2,1,1,"Xinhua",NA +108,115,1687,"2017",2,0,99,3,1,50,"Xinhua",NA +108,115,1688,"2017",3,1,80,2,80,80,"Xinhua",NA +108,115,1691,"2017",2,0,70,2,30,40,"Xinhua",NA +108,115,1697,"2017",3,0,70,3,30,40,"Xinhua",NA +108,115,1706,"2017",3,1,NA,3,NA,NA,"Xinhua",NA +108,115,1707,"2017",5,1,80,2,80,60,"Xinhua",NA +108,115,1711,"2017",5,1,1,3,1,1,"Xinhua",NA +108,115,1712,"2017",2,0,49,2,51,50,"Xinhua",NA +108,115,1719,"2017",6,0,80,3,20,40,"Xinhua",NA +108,115,1721,"2017",4,1,1,2,1,1,"Xinhua",NA +108,115,1723,"2017",5,0,1,2,99,50,"Xinhua",NA +108,115,1724,"2017",6,0,50,3,50,1,"Xinhua",NA +108,115,1726,"2017",5,0,40,2,60,70,"Xinhua",NA +108,115,1727,"2017",3,0,53,3,47,48,"Xinhua",NA +108,115,1728,"2017",5,1,50,2,50,50,"Xinhua",NA +108,115,1731,"2017",6,0,21,2,79,31,"Xinhua",NA +108,115,1732,"2017",2,1,NA,3,NA,NA,"Xinhua",NA +108,115,1734,"2017",6,1,20,3,20,40,"Xinhua",NA +108,115,1740,"2017",5,1,50,2,50,99,"Xinhua",NA +108,115,1745,"2017",2,0,50,2,50,50,"Xinhua",NA +108,115,1746,"2017",5,0,50,2,50,50,"Xinhua",NA +108,115,1748,"2017",4,0,99,2,1,NA,"Xinhua",NA +108,115,1752,"2017",3,0,50,3,50,50,"Xinhua",NA +108,115,1753,"2017",4,0,40,2,60,70,"Xinhua",NA +108,115,1754,"2017",5,0,99,2,1,50,"Xinhua",NA +108,115,1756,"2017",3,0,100,2,0,NA,"Xinhua",NA +108,115,1758,"2017",2,1,99,3,99,96,"Xinhua",NA +108,115,1760,"2017",2,0,41,2,59,49,"Xinhua",NA +108,115,1761,"2017",2,0,29,2,71,42,"Xinhua",NA +108,115,1763,"2017",6,0,90,2,10,10,"Xinhua",NA +108,115,1764,"2017",5,0,50,3,50,25,"Xinhua",NA +108,115,1765,"2017",4,0,99,2,1,1,"Xinhua",NA +108,115,1767,"2017",4,1,99,2,99,99,"Xinhua",NA +108,115,1772,"2017",3,0,59,3,41,60,"Xinhua",NA +108,115,1773,"2017",3,0,66,3,34,54,"Xinhua",NA +108,115,1776,"2017",6,0,88,2,12,12,"Xinhua",NA +108,115,1777,"2017",5,1,89,2,89,87,"Xinhua",NA +108,115,1778,"2017",2,1,87,2,87,82,"Xinhua",NA +108,115,1780,"2017",6,1,97,2,97,97,"Xinhua",NA +108,115,1781,"2017",3,1,92,2,92,97,"Xinhua",NA +108,115,1782,"2017",6,0,86,3,14,12,"Xinhua",NA +108,115,1785,"2017",2,1,82,2,82,87,"Xinhua",NA +108,115,1787,"2017",6,1,88,2,88,84,"Xinhua",NA +108,115,1789,"2017",5,0,95,3,5,NA,"Xinhua",NA +108,115,1791,"2017",3,1,32,2,32,22,"Xinhua",NA +108,115,1793,"2017",2,1,88,2,88,85,"Xinhua",NA +108,115,1794,"2017",3,0,86,3,14,2,"Xinhua",NA +108,115,1795,"2017",6,1,NA,2,NA,NA,"Xinhua",NA +108,115,1799,"2017",2,0,88,2,12,NA,"Xinhua",NA +108,115,1800,"2017",4,0,92,2,8,2,"Xinhua",NA +108,115,1803,"2017",4,1,76,2,76,87,"Xinhua",NA +108,115,1806,"2017",3,1,51,2,51,50,"Xinhua",NA +108,115,1808,"2017",4,1,99,2,99,99,"Xinhua",NA +108,115,1811,"2017",3,1,1,2,1,NA,"Xinhua",NA +108,115,1815,"2017",3,0,90,3,10,20,"Xinhua",NA +108,115,1816,"2017",4,1,80,2,80,60,"Xinhua",NA +108,115,1819,"2017",5,0,80,2,20,NA,"Xinhua",NA +108,115,1820,"2017",3,1,50,3,50,80,"Xinhua",NA +108,115,1821,"2017",6,1,80,3,80,80,"Xinhua",NA +108,115,1822,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +108,115,1824,"2017",2,1,90,3,90,99,"Xinhua",NA +108,115,1833,"2017",4,1,1,2,1,NA,"Xinhua",NA +108,115,1834,"2017",3,0,99,2,1,99,"Xinhua",NA +108,115,1839,"2017",3,0,99,2,1,1,"Xinhua",NA +108,115,1840,"2017",3,1,75,3,75,99,"Xinhua",NA +108,115,1841,"2017",6,0,99,3,1,1,"Xinhua",NA +108,115,1846,"2017",4,1,100,2,100,100,"Xinhua",NA +108,115,1847,"2017",2,0,0,3,100,NA,"Xinhua",NA +108,115,1858,"2017",4,1,1,2,1,1,"Xinhua",NA +108,115,1868,"2017",3,0,99,2,1,1,"Xinhua",NA +108,115,1869,"2017",4,0,100,2,0,100,"Xinhua",NA +108,115,1875,"2017",3,0,100,2,0,0,"Xinhua",NA +108,115,1876,"2017",2,1,99,2,99,99,"Xinhua",NA +108,115,1878,"2017",4,0,90,2,10,12,"Xinhua",NA +108,115,1879,"2017",2,1,1,2,1,1,"Xinhua",NA +108,115,1890,"2017",2,1,100,3,100,100,"Xinhua",NA +108,115,1894,"2017",6,0,50,3,50,50,"Xinhua",NA +108,115,1896,"2017",4,1,99,2,99,50,"Xinhua",NA +108,115,1900,"2017",5,0,55,3,45,40,"Xinhua",NA +108,115,1901,"2017",2,0,NA,3,NA,90,"Xinhua",NA +108,115,1903,"2017",2,1,1,3,1,99,"Xinhua",NA +108,115,1904,"2017",2,0,100,3,0,30,"Xinhua",NA +108,115,1905,"2017",3,1,NA,3,NA,80,"Xinhua",NA +108,115,1906,"2017",5,0,20,3,80,60,"Xinhua",NA +108,115,1909,"2017",6,0,70,2,30,10,"Xinhua",NA +108,115,1911,"2017",2,1,90,2,90,NA,"Xinhua",NA +108,115,1915,"2017",6,0,1,3,99,99,"Xinhua",NA +108,115,1920,"2017",3,0,99,3,1,50,"Xinhua",NA +108,115,1921,"2017",6,0,30,3,70,20,"Xinhua",NA +108,115,1922,"2017",6,1,99,2,99,50,"Xinhua",NA +108,115,1925,"2017",2,0,100,2,0,0,"Xinhua",NA +108,115,1927,"2017",5,1,88,3,88,85,"Xinhua",NA +108,115,1932,"2017",3,1,1,2,1,99,"Xinhua",NA +108,115,1934,"2017",4,0,50,2,50,50,"Xinhua",NA +108,115,1938,"2017",6,0,NA,3,NA,NA,"Xinhua",NA +108,115,1939,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,1943,"2017",2,1,99,3,99,1,"Xinhua",NA +108,115,1944,"2017",4,0,99,2,1,1,"Xinhua",NA +108,115,1948,"2017",6,0,90,2,10,10,"Xinhua",NA +108,115,1950,"2017",3,0,99,2,1,50,"Xinhua",NA +108,115,1955,"2017",2,0,60,3,40,40,"Xinhua",NA +108,115,1957,"2017",4,1,50,2,50,NA,"Xinhua",NA +108,115,1958,"2017",2,1,99,3,99,99,"Xinhua",NA +108,115,1959,"2017",3,1,70,3,70,50,"Xinhua",NA +108,115,1960,"2017",5,0,1,2,99,50,"Xinhua",NA +108,115,1961,"2017",2,1,99,2,99,99,"Xinhua",NA +108,115,1964,"2017",2,1,1,3,1,1,"Xinhua",NA +108,115,1969,"2017",3,0,60,3,40,20,"Xinhua",NA +108,115,1971,"2017",4,1,NA,2,NA,10,"Xinhua",NA +108,115,1976,"2017",4,1,50,2,50,6,"Xinhua",NA +108,115,1977,"2017",5,1,50,2,50,50,"Xinhua",NA +108,115,1982,"2017",4,0,99,2,1,NA,"Xinhua",NA +108,115,1984,"2017",4,1,50,2,50,99,"Xinhua",NA +108,115,1985,"2017",6,1,99,2,99,50,"Xinhua",NA +108,115,1986,"2017",2,1,99,3,99,NA,"Xinhua",NA +108,115,1990,"2017",6,0,50,3,50,50,"Xinhua",NA +108,115,1991,"2017",5,1,50,2,50,1,"Xinhua",NA +108,115,1993,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,1994,"2017",2,1,50,2,50,99,"Xinhua",NA +108,115,1997,"2017",3,1,99,2,99,99,"Xinhua",NA +108,115,1998,"2017",3,1,80,2,80,70,"Xinhua",NA +108,115,2002,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,2003,"2017",5,1,50,3,50,50,"Xinhua",NA +108,115,2004,"2017",2,1,45,3,45,45,"Xinhua",NA +108,115,2006,"2017",3,0,90,2,10,0,"Xinhua",NA +108,115,2014,"2017",3,1,90,2,90,90,"Xinhua",NA +108,115,2019,"2017",3,1,100,3,100,99,"Xinhua",NA +108,115,2022,"2017",6,1,99,2,99,99,"Xinhua",NA +108,115,2031,"2017",6,0,99,2,1,1,"Xinhua",NA +108,115,2032,"2017",3,1,70,3,70,20,"Xinhua",NA +108,115,2040,"2017",2,0,30,2,70,70,"Xinhua",NA +108,115,2041,"2017",6,0,100,3,0,0,"Xinhua",NA +108,115,2042,"2017",3,1,10,3,10,10,"Xinhua",NA +108,115,2043,"2017",4,1,90,2,90,80,"Xinhua",NA +108,115,2044,"2017",4,1,NA,2,NA,90,"Xinhua",NA +108,115,2046,"2017",4,0,99,2,1,1,"Xinhua",NA +108,115,2053,"2017",4,0,90,2,10,20,"Xinhua",NA +108,115,2057,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +108,115,2058,"2017",5,1,30,2,30,60,"Xinhua",NA +108,115,2059,"2017",5,1,1,2,1,1,"Xinhua",NA +108,115,2063,"2017",6,1,99,2,99,99,"Xinhua",NA +108,115,2071,"2017",6,0,99,2,1,1,"Xinhua",NA +108,115,2073,"2017",2,1,99,2,99,99,"Xinhua",NA +108,115,2074,"2017",5,1,50,2,50,50,"Xinhua",NA +108,115,2077,"2017",6,0,1,2,99,99,"Xinhua",NA +108,115,2078,"2017",4,0,90,2,10,6,"Xinhua",NA +108,115,2081,"2017",5,0,1,3,99,1,"Xinhua",NA +108,115,2082,"2017",2,0,1,2,99,99,"Xinhua",NA +108,115,2084,"2017",3,0,1,3,99,99,"Xinhua",NA +108,115,2085,"2017",6,1,99,3,99,99,"Xinhua",NA +108,115,2086,"2017",4,0,50,2,50,1,"Xinhua",NA +108,115,2088,"2017",5,1,75,3,75,65,"Xinhua",NA +108,115,2089,"2017",5,0,NA,3,NA,NA,"Xinhua",NA +108,115,2093,"2017",2,1,50,3,50,99,"Xinhua",NA +108,115,2094,"2017",4,0,89,2,11,33,"Xinhua",NA +108,115,2096,"2017",6,1,1,2,1,99,"Xinhua",NA +108,115,2098,"2017",5,0,80,2,20,20,"Xinhua",NA +108,115,2100,"2017",3,1,99,3,99,99,"Xinhua",NA +108,115,2103,"2017",6,0,50,2,50,50,"Xinhua",NA +108,115,2104,"2017",5,1,1,2,1,1,"Xinhua",NA +108,115,2107,"2017",2,0,99,2,1,1,"Xinhua",NA +108,115,2109,"2017",5,0,1,3,99,99,"Xinhua",NA +108,115,2110,"2017",6,0,50,3,50,50,"Xinhua",NA +108,115,2113,"2017",6,1,50,2,50,99,"Xinhua",NA +108,115,2117,"2017",6,0,99,2,1,NA,"Xinhua",NA +108,115,2118,"2017",6,1,78,2,78,60,"Xinhua",NA +108,115,2120,"2017",6,0,50,3,50,50,"Xinhua",NA +108,115,2122,"2017",6,0,99,2,1,1,"Xinhua",NA +108,115,2125,"2017",2,1,NA,3,NA,1,"Xinhua",NA +108,115,2127,"2017",2,1,50,2,50,50,"Xinhua",NA +108,115,2128,"2017",6,1,40,3,40,40,"Xinhua",NA +108,115,2133,"2017",2,1,50,3,50,1,"Xinhua",NA +108,115,2134,"2017",6,1,33,3,33,2,"Xinhua",NA +108,115,2135,"2017",2,0,10,3,90,90,"Xinhua",NA +108,124,3,"2017",3,1,NA,3,NA,NA,"Huanqiu",NA +108,124,6,"2017",5,0,0,3,100,100,"Huanqiu",NA +108,124,8,"2017",2,0,99,2,1,99,"Huanqiu",NA +108,124,9,"2017",6,1,99,2,99,99,"Huanqiu",NA +108,124,15,"2017",6,1,99,3,99,NA,"Huanqiu",NA +108,124,16,"2017",4,1,75,5,75,NA,"Huanqiu",NA +108,124,17,"2017",2,0,99,3,1,1,"Huanqiu",NA +108,124,18,"2017",3,1,1,3,1,7,"Huanqiu",NA +108,124,22,"2017",5,1,95,2,95,99,"Huanqiu",NA +108,124,23,"2017",6,1,99,3,99,50,"Huanqiu",NA +108,124,24,"2017",3,1,80,2,80,50,"Huanqiu",NA +108,124,26,"2017",2,0,99,2,1,80,"Huanqiu",NA +108,124,32,"2017",3,0,NA,2,NA,NA,"Huanqiu",NA +108,124,33,"2017",2,1,50,3,50,30,"Huanqiu",NA +108,124,34,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,36,"2017",3,0,35,2,65,50,"Huanqiu",NA +108,124,39,"2017",5,1,30,3,30,40,"Huanqiu",NA +108,124,43,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,47,"2017",3,0,50,2,50,50,"Huanqiu",NA +108,124,48,"2017",3,0,60,2,40,90,"Huanqiu",NA +108,124,51,"2017",5,0,50,2,50,50,"Huanqiu",NA +108,124,55,"2017",5,1,99,3,99,90,"Huanqiu",NA +108,124,56,"2017",5,0,95,2,5,20,"Huanqiu",NA +108,124,57,"2017",6,1,75,3,75,75,"Huanqiu",NA +108,124,58,"2017",2,0,90,3,10,1,"Huanqiu",NA +108,124,59,"2017",2,1,90,3,90,70,"Huanqiu",NA +108,124,62,"2017",6,0,50,2,50,1,"Huanqiu",NA +108,124,63,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,64,"2017",2,0,99,3,1,1,"Huanqiu",NA +108,124,65,"2017",6,1,50,3,50,5,"Huanqiu",NA +108,124,72,"2017",6,0,99,2,1,1,"Huanqiu",NA +108,124,73,"2017",3,1,99,3,99,50,"Huanqiu",NA +108,124,79,"2017",4,1,99,5,99,NA,"Huanqiu",NA +108,124,80,"2017",3,0,99,3,1,10,"Huanqiu",NA +108,124,82,"2017",4,0,20,5,80,NA,"Huanqiu",NA +108,124,85,"2017",3,1,0,3,0,0,"Huanqiu",NA +108,124,89,"2017",4,0,70,5,30,NA,"Huanqiu",NA +108,124,97,"2017",2,0,75,2,25,25,"Huanqiu",NA +108,124,99,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,100,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,101,"2017",3,1,1,3,1,1,"Huanqiu",NA +108,124,105,"2017",2,1,90,2,90,80,"Huanqiu",NA +108,124,107,"2017",2,1,65,3,65,77,"Huanqiu",NA +108,124,108,"2017",4,1,0,5,0,NA,"Huanqiu",NA +108,124,109,"2017",3,1,100,2,100,100,"Huanqiu",NA +108,124,115,"2017",3,1,90,2,90,NA,"Huanqiu",NA +108,124,117,"2017",2,0,90,3,10,10,"Huanqiu",NA +108,124,118,"2017",3,0,70,2,30,50,"Huanqiu",NA +108,124,121,"2017",4,1,90,5,90,NA,"Huanqiu",NA +108,124,123,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,125,"2017",3,0,99,3,1,1,"Huanqiu",NA +108,124,128,"2017",3,1,99,2,99,99,"Huanqiu",NA +108,124,133,"2017",2,0,60,2,40,40,"Huanqiu",NA +108,124,134,"2017",4,1,99,5,99,NA,"Huanqiu",NA +108,124,135,"2017",2,0,20,3,80,1,"Huanqiu",NA +108,124,143,"2017",3,1,24,2,24,13,"Huanqiu",NA +108,124,1173,"2017",4,0,50,5,50,NA,"Huanqiu",NA +108,124,1176,"2017",6,0,100,2,0,0,"Huanqiu",NA +108,124,1178,"2017",3,0,70,3,30,50,"Huanqiu",NA +108,124,1180,"2017",2,0,20,3,80,70,"Huanqiu",NA +108,124,1181,"2017",2,1,50,2,50,50,"Huanqiu",NA +108,124,1182,"2017",6,0,40,3,60,80,"Huanqiu",NA +108,124,1187,"2017",2,1,20,2,20,50,"Huanqiu",NA +108,124,1188,"2017",5,1,80,3,80,70,"Huanqiu",NA +108,124,1194,"2017",2,0,50,3,50,40,"Huanqiu",NA +108,124,1197,"2017",3,1,90,3,90,50,"Huanqiu",NA +108,124,1198,"2017",3,0,20,3,80,80,"Huanqiu",NA +108,124,1200,"2017",4,1,30,5,30,NA,"Huanqiu",NA +108,124,1201,"2017",2,1,1,3,1,99,"Huanqiu",NA +108,124,1202,"2017",4,1,99,5,99,NA,"Huanqiu",NA +108,124,1203,"2017",5,1,80,3,80,70,"Huanqiu",NA +108,124,1206,"2017",4,1,40,5,40,NA,"Huanqiu",NA +108,124,1212,"2017",4,1,40,5,40,NA,"Huanqiu",NA +108,124,1213,"2017",5,0,20,2,80,60,"Huanqiu",NA +108,124,1214,"2017",6,0,40,3,60,70,"Huanqiu",NA +108,124,1215,"2017",2,0,20,3,80,80,"Huanqiu",NA +108,124,1216,"2017",6,1,20,2,20,40,"Huanqiu",NA +108,124,1218,"2017",3,0,14,2,86,80,"Huanqiu",NA +108,124,1220,"2017",5,1,40,2,40,20,"Huanqiu",NA +108,124,1223,"2017",5,1,20,2,20,20,"Huanqiu",NA +108,124,1225,"2017",5,1,99,3,99,99,"Huanqiu",NA +108,124,1226,"2017",3,0,50,3,50,30,"Huanqiu",NA +108,124,1227,"2017",6,0,10,3,90,60,"Huanqiu",NA +108,124,1230,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,1232,"2017",6,0,99,2,1,1,"Huanqiu",NA +108,124,1237,"2017",6,1,30,3,30,50,"Huanqiu",NA +108,124,1239,"2017",2,1,50,3,50,50,"Huanqiu",NA +108,124,1240,"2017",6,1,1,3,1,1,"Huanqiu",NA +108,124,1246,"2017",4,0,60,5,40,NA,"Huanqiu",NA +108,124,1250,"2017",4,0,60,5,40,NA,"Huanqiu",NA +108,124,1255,"2017",3,0,1,3,99,NA,"Huanqiu",NA +108,124,1256,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,1260,"2017",3,1,1,2,1,1,"Huanqiu",NA +108,124,1262,"2017",6,1,1,2,1,50,"Huanqiu",NA +108,124,1263,"2017",3,0,6,3,94,35,"Huanqiu",NA +108,124,1264,"2017",5,0,99,3,1,1,"Huanqiu",NA +108,124,1266,"2017",6,1,99,2,99,1,"Huanqiu",NA +108,124,1268,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,1269,"2017",3,1,99,2,99,1,"Huanqiu",NA +108,124,1271,"2017",4,1,44,5,44,NA,"Huanqiu",NA +108,124,1274,"2017",5,0,1,2,99,99,"Huanqiu",NA +108,124,1275,"2017",2,1,50,2,50,50,"Huanqiu",NA +108,124,1276,"2017",3,1,99,3,99,NA,"Huanqiu",NA +108,124,1285,"2017",3,0,99,3,1,99,"Huanqiu",NA +108,124,1289,"2017",3,0,24,3,76,74,"Huanqiu",NA +108,124,1290,"2017",5,1,30,2,30,50,"Huanqiu",NA +108,124,1291,"2017",5,1,1,3,1,1,"Huanqiu",NA +108,124,1298,"2017",6,0,60,2,40,30,"Huanqiu",NA +108,124,1302,"2017",5,1,99,3,99,99,"Huanqiu",NA +108,124,1304,"2017",4,1,99,5,99,NA,"Huanqiu",NA +108,124,1311,"2017",3,1,99,2,99,80,"Huanqiu",NA +108,124,1312,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,1313,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,1315,"2017",2,1,99,3,99,99,"Huanqiu",NA +108,124,1317,"2017",5,1,50,3,50,50,"Huanqiu",NA +108,124,1322,"2017",5,1,99,2,99,99,"Huanqiu",NA +108,124,1323,"2017",6,0,1,3,99,99,"Huanqiu",NA +108,124,1326,"2017",3,0,1,3,99,50,"Huanqiu",NA +108,124,1331,"2017",3,1,50,3,50,NA,"Huanqiu",NA +108,124,1333,"2017",6,1,99,3,99,99,"Huanqiu",NA +108,124,1341,"2017",4,0,50,5,50,NA,"Huanqiu",NA +108,124,1343,"2017",5,0,99,3,1,1,"Huanqiu",NA +108,124,1344,"2017",3,0,20,2,80,NA,"Huanqiu",NA +108,124,1351,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,1353,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,1355,"2017",2,0,80,2,20,1,"Huanqiu",NA +108,124,1357,"2017",4,0,1,5,99,NA,"Huanqiu",NA +108,124,1359,"2017",6,1,1,2,1,1,"Huanqiu",NA +108,124,1363,"2017",4,0,100,5,0,NA,"Huanqiu",NA +108,124,1367,"2017",3,0,1,2,99,99,"Huanqiu",NA +108,124,1372,"2017",3,1,33,3,33,20,"Huanqiu",NA +108,124,1376,"2017",6,0,99,3,1,1,"Huanqiu",NA +108,124,1382,"2017",3,1,99,2,99,NA,"Huanqiu",NA +108,124,1383,"2017",2,1,1,3,1,1,"Huanqiu",NA +108,124,1385,"2017",5,1,85,2,85,80,"Huanqiu",NA +108,124,1387,"2017",3,1,100,2,100,100,"Huanqiu",NA +108,124,1388,"2017",2,0,60,3,40,40,"Huanqiu",NA +108,124,1389,"2017",6,0,1,2,99,99,"Huanqiu",NA +108,124,1393,"2017",5,0,1,3,99,100,"Huanqiu",NA +108,124,1395,"2017",2,0,70,2,30,NA,"Huanqiu",NA +108,124,1398,"2017",2,0,50,3,50,50,"Huanqiu",NA +108,124,1399,"2017",3,1,70,2,70,50,"Huanqiu",NA +108,124,1400,"2017",6,0,99,2,1,NA,"Huanqiu",NA +108,124,1405,"2017",5,0,99,2,1,1,"Huanqiu",NA +108,124,1408,"2017",2,1,99,3,99,99,"Huanqiu",NA +108,124,1411,"2017",2,1,99,2,99,99,"Huanqiu",NA +108,124,1412,"2017",6,0,99,2,1,50,"Huanqiu",NA +108,124,1419,"2017",2,0,99,2,1,1,"Huanqiu",NA +108,124,1420,"2017",5,1,99,2,99,99,"Huanqiu",NA +108,124,1421,"2017",4,0,99,5,1,NA,"Huanqiu",NA +108,124,1426,"2017",2,1,99,2,99,1,"Huanqiu",NA +108,124,1429,"2017",2,1,50,3,50,1,"Huanqiu",NA +108,124,1430,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,1436,"2017",6,1,99,2,99,NA,"Huanqiu",NA +108,124,1442,"2017",6,1,99,2,99,99,"Huanqiu",NA +108,124,1443,"2017",2,0,1,3,99,99,"Huanqiu",NA +108,124,1447,"2017",6,0,99,3,1,1,"Huanqiu",NA +108,124,1448,"2017",3,0,99,2,1,NA,"Huanqiu",NA +108,124,1450,"2017",2,0,50,3,50,50,"Huanqiu",NA +108,124,1451,"2017",2,0,50,2,50,50,"Huanqiu",NA +108,124,1452,"2017",6,0,99,3,1,1,"Huanqiu",NA +108,124,1456,"2017",6,0,99,2,1,1,"Huanqiu",NA +108,124,1458,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,1463,"2017",6,0,70,2,30,50,"Huanqiu",NA +108,124,1466,"2017",6,0,55,3,45,NA,"Huanqiu",NA +108,124,1468,"2017",6,1,99,3,99,99,"Huanqiu",NA +108,124,1470,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,1474,"2017",6,0,1,3,99,99,"Huanqiu",NA +108,124,1476,"2017",5,0,99,3,1,99,"Huanqiu",NA +108,124,1478,"2017",2,1,99,3,99,99,"Huanqiu",NA +108,124,1487,"2017",6,0,99,2,1,1,"Huanqiu",NA +108,124,1490,"2017",2,1,9,2,9,99,"Huanqiu",NA +108,124,1491,"2017",2,1,99,2,99,99,"Huanqiu",NA +108,124,1492,"2017",5,0,2,2,98,99,"Huanqiu",NA +108,124,1495,"2017",2,0,99,2,1,50,"Huanqiu",NA +108,124,1497,"2017",3,0,50,3,50,90,"Huanqiu",NA +108,124,1499,"2017",3,0,60,2,40,50,"Huanqiu",NA +108,124,1503,"2017",3,1,NA,3,NA,90,"Huanqiu",NA +108,124,1504,"2017",3,0,NA,2,NA,50,"Huanqiu",NA +108,124,1507,"2017",2,1,50,2,50,50,"Huanqiu",NA +108,124,1509,"2017",4,1,95,5,95,NA,"Huanqiu",NA +108,124,1513,"2017",5,1,99,3,99,50,"Huanqiu",NA +108,124,1515,"2017",3,0,1,2,99,99,"Huanqiu",NA +108,124,1518,"2017",5,0,50,2,50,50,"Huanqiu",NA +108,124,1519,"2017",5,0,50,3,50,50,"Huanqiu",NA +108,124,1520,"2017",2,0,50,2,50,1,"Huanqiu",NA +108,124,1521,"2017",2,0,99,2,1,1,"Huanqiu",NA +108,124,1522,"2017",5,0,80,3,20,75,"Huanqiu",NA +108,124,1525,"2017",6,0,50,3,50,50,"Huanqiu",NA +108,124,1527,"2017",2,0,NA,2,NA,91,"Huanqiu",NA +108,124,1528,"2017",2,1,99,3,99,NA,"Huanqiu",NA +108,124,1533,"2017",2,1,99,2,99,99,"Huanqiu",NA +108,124,1534,"2017",2,0,60,3,40,NA,"Huanqiu",NA +108,124,1535,"2017",2,1,99,2,99,1,"Huanqiu",NA +108,124,1537,"2017",6,0,99,2,1,99,"Huanqiu",NA +108,124,1538,"2017",6,0,50,3,50,50,"Huanqiu",NA +108,124,1540,"2017",6,0,50,2,50,50,"Huanqiu",NA +108,124,1546,"2017",2,0,60,2,40,40,"Huanqiu",NA +108,124,1548,"2017",6,0,1,3,99,99,"Huanqiu",NA +108,124,1551,"2017",5,0,20,2,80,20,"Huanqiu",NA +108,124,1555,"2017",5,0,99,2,1,91,"Huanqiu",NA +108,124,1557,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,1562,"2017",2,1,90,3,90,50,"Huanqiu",NA +108,124,1564,"2017",5,0,20,3,80,80,"Huanqiu",NA +108,124,1566,"2017",5,0,99,3,1,1,"Huanqiu",NA +108,124,1568,"2017",5,0,99,3,1,1,"Huanqiu",NA +108,124,1574,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,1575,"2017",6,1,100,2,100,0,"Huanqiu",NA +108,124,1576,"2017",2,0,50,3,50,50,"Huanqiu",NA +108,124,1577,"2017",3,1,1,2,1,1,"Huanqiu",NA +108,124,1579,"2017",6,1,95,3,95,95,"Huanqiu",NA +108,124,1580,"2017",6,1,1,3,1,1,"Huanqiu",NA +108,124,1583,"2017",3,0,8,3,92,10,"Huanqiu",NA +108,124,1584,"2017",2,0,99,2,1,1,"Huanqiu",NA +108,124,1588,"2017",5,0,50,3,50,50,"Huanqiu",NA +108,124,1590,"2017",3,0,80,2,20,20,"Huanqiu",NA +108,124,1598,"2017",6,0,50,2,50,50,"Huanqiu",NA +108,124,1601,"2017",6,1,80,3,80,80,"Huanqiu",NA +108,124,1604,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,1607,"2017",4,1,28,5,28,NA,"Huanqiu",NA +108,124,1608,"2017",2,1,99,3,99,99,"Huanqiu",NA +108,124,1609,"2017",6,0,99,2,1,1,"Huanqiu",NA +108,124,1612,"2017",3,1,50,2,50,50,"Huanqiu",NA +108,124,1615,"2017",5,1,99,3,99,99,"Huanqiu",NA +108,124,1616,"2017",4,0,99,5,1,NA,"Huanqiu",NA +108,124,1620,"2017",2,1,50,3,50,99,"Huanqiu",NA +108,124,1621,"2017",6,0,70,3,30,40,"Huanqiu",NA +108,124,1624,"2017",3,0,85,3,15,75,"Huanqiu",NA +108,124,1629,"2017",5,0,70,2,30,10,"Huanqiu",NA +108,124,1631,"2017",2,0,1,3,99,NA,"Huanqiu",NA +108,124,1635,"2017",4,0,80,5,20,NA,"Huanqiu",NA +108,124,1636,"2017",6,1,90,3,90,90,"Huanqiu",NA +108,124,1638,"2017",3,0,1,2,99,50,"Huanqiu",NA +108,124,1641,"2017",3,1,80,3,80,90,"Huanqiu",NA +108,124,1642,"2017",6,0,99,2,1,1,"Huanqiu",NA +108,124,1646,"2017",5,0,80,2,20,80,"Huanqiu",NA +108,124,1650,"2017",3,1,41,3,41,44,"Huanqiu",NA +108,124,1653,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,1657,"2017",5,1,99,2,99,1,"Huanqiu",NA +108,124,1658,"2017",3,0,99,3,1,99,"Huanqiu",NA +108,124,1662,"2017",3,1,50,2,50,80,"Huanqiu",NA +108,124,1663,"2017",6,0,99,3,1,1,"Huanqiu",NA +108,124,1664,"2017",3,0,1,3,99,99,"Huanqiu",NA +108,124,1667,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,1669,"2017",6,0,60,2,40,40,"Huanqiu",NA +108,124,1670,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,1671,"2017",6,1,1,2,1,1,"Huanqiu",NA +108,124,1674,"2017",6,1,49,2,49,60,"Huanqiu",NA +108,124,1675,"2017",2,0,99,3,1,1,"Huanqiu",NA +108,124,1677,"2017",6,1,50,2,50,50,"Huanqiu",NA +108,124,1682,"2017",4,0,NA,5,NA,NA,"Huanqiu",NA +108,124,1683,"2017",4,1,99,5,99,NA,"Huanqiu",NA +108,124,1684,"2017",6,1,99,3,99,99,"Huanqiu",NA +108,124,1686,"2017",2,0,99,3,1,1,"Huanqiu",NA +108,124,1687,"2017",2,0,50,2,50,99,"Huanqiu",NA +108,124,1693,"2017",3,0,99,3,1,99,"Huanqiu",NA +108,124,1694,"2017",5,0,50,3,50,NA,"Huanqiu",NA +108,124,1699,"2017",6,1,75,2,75,65,"Huanqiu",NA +108,124,1700,"2017",4,1,2,5,2,NA,"Huanqiu",NA +108,124,1704,"2017",4,1,60,5,60,NA,"Huanqiu",NA +108,124,1707,"2017",5,1,90,3,90,80,"Huanqiu",NA +108,124,1710,"2017",2,1,99,3,99,80,"Huanqiu",NA +108,124,1711,"2017",5,1,1,2,1,100,"Huanqiu",NA +108,124,1714,"2017",6,1,50,2,50,40,"Huanqiu",NA +108,124,1715,"2017",2,1,44,2,44,44,"Huanqiu",NA +108,124,1719,"2017",6,0,60,2,40,98,"Huanqiu",NA +108,124,1722,"2017",2,0,50,2,50,50,"Huanqiu",NA +108,124,1723,"2017",5,0,50,3,50,99,"Huanqiu",NA +108,124,1725,"2017",4,0,99,5,1,NA,"Huanqiu",NA +108,124,1727,"2017",3,0,52,2,48,42,"Huanqiu",NA +108,124,1728,"2017",5,1,99,3,99,50,"Huanqiu",NA +108,124,1729,"2017",4,0,40,5,60,NA,"Huanqiu",NA +108,124,1730,"2017",4,0,70,5,30,NA,"Huanqiu",NA +108,124,1733,"2017",3,1,80,3,80,NA,"Huanqiu",NA +108,124,1734,"2017",6,1,40,2,40,20,"Huanqiu",NA +108,124,1735,"2017",6,1,33,3,33,14,"Huanqiu",NA +108,124,1738,"2017",5,0,40,2,60,50,"Huanqiu",NA +108,124,1739,"2017",3,1,50,3,50,50,"Huanqiu",NA +108,124,1742,"2017",6,0,99,2,1,1,"Huanqiu",NA +108,124,1750,"2017",3,0,1,3,99,1,"Huanqiu",NA +108,124,1766,"2017",2,1,99,2,99,99,"Huanqiu",NA +108,124,1768,"2017",6,0,50,3,50,50,"Huanqiu",NA +108,124,1770,"2017",6,1,98,3,98,68,"Huanqiu",NA +108,124,1771,"2017",6,1,73,2,73,27,"Huanqiu",NA +108,124,1776,"2017",6,0,88,3,12,12,"Huanqiu",NA +108,124,1777,"2017",5,1,99,3,99,89,"Huanqiu",NA +108,124,1779,"2017",5,0,86,2,14,14,"Huanqiu",NA +108,124,1783,"2017",6,1,99,2,99,99,"Huanqiu",NA +108,124,1784,"2017",2,1,86,3,86,97,"Huanqiu",NA +108,124,1785,"2017",2,1,92,3,92,82,"Huanqiu",NA +108,124,1786,"2017",5,0,99,2,1,14,"Huanqiu",NA +108,124,1788,"2017",3,1,75,3,75,88,"Huanqiu",NA +108,124,1791,"2017",3,1,81,3,81,32,"Huanqiu",NA +108,124,1794,"2017",3,0,98,2,2,27,"Huanqiu",NA +108,124,1795,"2017",6,1,NA,3,NA,NA,"Huanqiu",NA +108,124,1796,"2017",6,0,88,2,12,16,"Huanqiu",NA +108,124,1798,"2017",6,0,NA,3,NA,5,"Huanqiu",NA +108,124,1806,"2017",3,1,54,3,54,51,"Huanqiu",NA +108,124,1810,"2017",3,0,50,2,50,NA,"Huanqiu",NA +108,124,1812,"2017",6,1,NA,3,NA,50,"Huanqiu",NA +108,124,1815,"2017",3,0,80,2,20,20,"Huanqiu",NA +108,124,1817,"2017",2,0,75,2,25,40,"Huanqiu",NA +108,124,1823,"2017",2,0,60,3,40,80,"Huanqiu",NA +108,124,1828,"2017",6,1,10,3,10,30,"Huanqiu",NA +108,124,1830,"2017",6,1,30,3,30,60,"Huanqiu",NA +108,124,1831,"2017",4,0,99,5,1,NA,"Huanqiu",NA +108,124,1836,"2017",5,0,99,3,1,1,"Huanqiu",NA +108,124,1837,"2017",6,0,99,3,1,2,"Huanqiu",NA +108,124,1841,"2017",6,0,99,2,1,50,"Huanqiu",NA +108,124,1842,"2017",2,0,98,3,2,50,"Huanqiu",NA +108,124,1847,"2017",2,0,NA,2,NA,1,"Huanqiu",NA +108,124,1849,"2017",3,0,99,2,1,1,"Huanqiu",NA +108,124,1851,"2017",2,1,99,3,99,99,"Huanqiu",NA +108,124,1855,"2017",6,1,1,2,1,99,"Huanqiu",NA +108,124,1859,"2017",5,0,80,3,20,50,"Huanqiu",NA +108,124,1860,"2017",3,1,99,2,99,99,"Huanqiu",NA +108,124,1862,"2017",3,0,50,2,50,50,"Huanqiu",NA +108,124,1864,"2017",5,0,50,2,50,50,"Huanqiu",NA +108,124,1865,"2017",3,0,70,2,30,40,"Huanqiu",NA +108,124,1866,"2017",4,0,50,5,50,NA,"Huanqiu",NA +108,124,1867,"2017",6,0,1,3,99,99,"Huanqiu",NA +108,124,1870,"2017",6,0,0,3,100,100,"Huanqiu",NA +108,124,1873,"2017",3,1,99,3,99,60,"Huanqiu",NA +108,124,1877,"2017",5,0,1,3,99,99,"Huanqiu",NA +108,124,1882,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,1883,"2017",6,0,NA,2,NA,50,"Huanqiu",NA +108,124,1884,"2017",3,0,99,2,1,0,"Huanqiu",NA +108,124,1885,"2017",4,0,50,5,50,NA,"Huanqiu",NA +108,124,1887,"2017",2,0,99,3,1,1,"Huanqiu",NA +108,124,1895,"2017",5,0,99,2,1,1,"Huanqiu",NA +108,124,1897,"2017",2,1,1,3,1,1,"Huanqiu",NA +108,124,1902,"2017",2,0,99,3,1,99,"Huanqiu",NA +108,124,1903,"2017",2,1,99,2,99,99,"Huanqiu",NA +108,124,1905,"2017",3,1,80,2,80,NA,"Huanqiu",NA +108,124,1907,"2017",3,0,80,2,20,NA,"Huanqiu",NA +108,124,1912,"2017",3,0,1,2,99,99,"Huanqiu",NA +108,124,1913,"2017",4,1,50,5,50,NA,"Huanqiu",NA +108,124,1915,"2017",6,0,1,2,99,99,"Huanqiu",NA +108,124,1916,"2017",6,0,99,2,1,20,"Huanqiu",NA +108,124,1918,"2017",2,1,1,2,1,1,"Huanqiu",NA +108,124,1922,"2017",6,1,99,3,99,99,"Huanqiu",NA +108,124,1923,"2017",3,0,99,2,1,50,"Huanqiu",NA +108,124,1928,"2017",3,1,95,3,95,95,"Huanqiu",NA +108,124,1931,"2017",6,0,50,2,50,50,"Huanqiu",NA +108,124,1933,"2017",4,1,85,5,85,NA,"Huanqiu",NA +108,124,1937,"2017",2,1,99,3,99,99,"Huanqiu",NA +108,124,1945,"2017",6,0,99,3,1,1,"Huanqiu",NA +108,124,1946,"2017",2,1,99,2,99,99,"Huanqiu",NA +108,124,1949,"2017",6,1,99,2,99,99,"Huanqiu",NA +108,124,1952,"2017",6,1,99,2,99,50,"Huanqiu",NA +108,124,1956,"2017",2,0,20,3,80,50,"Huanqiu",NA +108,124,1958,"2017",2,1,99,2,99,1,"Huanqiu",NA +108,124,1959,"2017",3,1,50,2,50,70,"Huanqiu",NA +108,124,1963,"2017",6,1,1,2,1,12,"Huanqiu",NA +108,124,1964,"2017",2,1,1,2,1,1,"Huanqiu",NA +108,124,1965,"2017",6,0,99,3,1,1,"Huanqiu",NA +108,124,1967,"2017",5,0,1,3,99,99,"Huanqiu",NA +108,124,1968,"2017",6,0,50,3,50,50,"Huanqiu",NA +108,124,1970,"2017",5,0,1,2,99,NA,"Huanqiu",NA +108,124,1973,"2017",4,0,50,5,50,NA,"Huanqiu",NA +108,124,1977,"2017",5,1,99,3,99,50,"Huanqiu",NA +108,124,1979,"2017",5,0,50,3,50,1,"Huanqiu",NA +108,124,1986,"2017",2,1,NA,2,NA,NA,"Huanqiu",NA +108,124,1992,"2017",5,1,99,3,99,99,"Huanqiu",NA +108,124,1993,"2017",6,1,99,2,99,99,"Huanqiu",NA +108,124,1996,"2017",3,0,1,2,99,NA,"Huanqiu",NA +108,124,1997,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,1999,"2017",6,0,60,2,40,50,"Huanqiu",NA +108,124,2000,"2017",5,1,80,2,80,NA,"Huanqiu",NA +108,124,2001,"2017",2,1,50,2,50,99,"Huanqiu",NA +108,124,2006,"2017",3,0,80,3,20,10,"Huanqiu",NA +108,124,2010,"2017",2,1,99,3,99,90,"Huanqiu",NA +108,124,2011,"2017",5,1,50,2,50,50,"Huanqiu",NA +108,124,2012,"2017",3,1,100,3,100,99,"Huanqiu",NA +108,124,2014,"2017",3,1,95,3,95,90,"Huanqiu",NA +108,124,2015,"2017",3,1,90,3,90,90,"Huanqiu",NA +108,124,2017,"2017",3,1,99,3,99,99,"Huanqiu",NA +108,124,2023,"2017",6,1,NA,3,NA,99,"Huanqiu",NA +108,124,2025,"2017",3,1,99,2,99,99,"Huanqiu",NA +108,124,2026,"2017",6,1,99,3,99,90,"Huanqiu",NA +108,124,2029,"2017",2,0,NA,3,NA,NA,"Huanqiu",NA +108,124,2030,"2017",3,1,50,3,50,50,"Huanqiu",NA +108,124,2032,"2017",3,1,20,2,20,60,"Huanqiu",NA +108,124,2033,"2017",4,1,99,5,99,NA,"Huanqiu",NA +108,124,2049,"2017",5,0,15,2,85,25,"Huanqiu",NA +108,124,2051,"2017",6,1,80,2,80,60,"Huanqiu",NA +108,124,2055,"2017",2,0,60,3,40,50,"Huanqiu",NA +108,124,2056,"2017",3,0,50,3,50,50,"Huanqiu",NA +108,124,2062,"2017",4,1,99,5,99,NA,"Huanqiu",NA +108,124,2063,"2017",6,1,50,3,50,99,"Huanqiu",NA +108,124,2064,"2017",3,1,50,3,50,1,"Huanqiu",NA +108,124,2066,"2017",3,0,NA,3,NA,NA,"Huanqiu",NA +108,124,2067,"2017",5,0,10,3,90,85,"Huanqiu",NA +108,124,2068,"2017",6,1,99,2,99,99,"Huanqiu",NA +108,124,2071,"2017",6,0,99,3,1,1,"Huanqiu",NA +108,124,2075,"2017",5,1,99,2,99,1,"Huanqiu",NA +108,124,2076,"2017",3,0,99,3,1,1,"Huanqiu",NA +108,124,2079,"2017",3,1,50,2,50,50,"Huanqiu",NA +108,124,2081,"2017",5,0,99,2,1,1,"Huanqiu",NA +108,124,2083,"2017",5,1,99,3,99,99,"Huanqiu",NA +108,124,2088,"2017",5,1,65,2,65,65,"Huanqiu",NA +108,124,2097,"2017",6,0,50,2,50,99,"Huanqiu",NA +108,124,2100,"2017",3,1,99,2,99,99,"Huanqiu",NA +108,124,2101,"2017",2,0,80,3,20,50,"Huanqiu",NA +108,124,2103,"2017",6,0,50,3,50,50,"Huanqiu",NA +108,124,2107,"2017",2,0,99,3,1,1,"Huanqiu",NA +108,124,2109,"2017",5,0,1,2,99,99,"Huanqiu",NA +108,124,2111,"2017",6,0,80,3,20,10,"Huanqiu",NA +108,124,2112,"2017",5,0,50,2,50,50,"Huanqiu",NA +108,124,2116,"2017",5,1,1,3,1,1,"Huanqiu",NA +108,124,2117,"2017",6,0,99,3,1,1,"Huanqiu",NA +108,124,2118,"2017",6,1,55,3,55,78,"Huanqiu",NA +108,124,2119,"2017",3,1,1,3,1,1,"Huanqiu",NA +108,124,2121,"2017",6,0,99,2,1,99,"Huanqiu",NA +108,124,2124,"2017",6,0,50,2,50,NA,"Huanqiu",NA +108,124,2126,"2017",3,1,1,2,1,NA,"Huanqiu",NA +108,124,2129,"2017",4,0,1,5,99,NA,"Huanqiu",NA +108,124,2130,"2017",5,0,80,2,20,30,"Huanqiu",NA +108,124,2135,"2017",2,0,10,2,90,98,"Huanqiu",NA +108,125,6,"2017",5,0,0,2,100,100,"Nanfang Dushibao",NA +108,125,7,"2017",5,1,60,2,60,80,"Nanfang Dushibao",NA +108,125,10,"2017",2,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,12,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +108,125,13,"2017",5,1,NA,2,NA,50,"Nanfang Dushibao",NA +108,125,14,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,18,"2017",3,1,7,2,7,7,"Nanfang Dushibao",NA +108,125,25,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,27,"2017",2,0,80,2,20,20,"Nanfang Dushibao",NA +108,125,29,"2017",3,0,NA,2,NA,NA,"Nanfang Dushibao",NA +108,125,34,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,42,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +108,125,45,"2017",6,0,44,2,56,67,"Nanfang Dushibao",NA +108,125,47,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,51,"2017",5,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,54,"2017",5,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,59,"2017",2,1,70,2,70,40,"Nanfang Dushibao",NA +108,125,68,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,72,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,76,"2017",4,0,40,4,60,NA,"Nanfang Dushibao",NA +108,125,83,"2017",3,1,88,3,88,90,"Nanfang Dushibao",NA +108,125,86,"2017",2,0,80,2,20,20,"Nanfang Dushibao",NA +108,125,90,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,92,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +108,125,96,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,109,"2017",3,1,100,3,100,100,"Nanfang Dushibao",NA +108,125,126,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +108,125,127,"2017",2,0,100,3,0,0,"Nanfang Dushibao",NA +108,125,131,"2017",2,1,99,3,99,1,"Nanfang Dushibao",NA +108,125,136,"2017",2,1,1,3,1,50,"Nanfang Dushibao",NA +108,125,140,"2017",3,1,60,2,60,90,"Nanfang Dushibao",NA +108,125,1169,"2017",2,1,99,3,99,90,"Nanfang Dushibao",NA +108,125,1172,"2017",4,0,55,4,45,NA,"Nanfang Dushibao",NA +108,125,1175,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1177,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1179,"2017",3,0,20,3,80,70,"Nanfang Dushibao",NA +108,125,1180,"2017",2,0,30,2,70,50,"Nanfang Dushibao",NA +108,125,1182,"2017",6,0,20,2,80,60,"Nanfang Dushibao",NA +108,125,1185,"2017",3,0,7,3,93,30,"Nanfang Dushibao",NA +108,125,1188,"2017",5,1,70,2,70,50,"Nanfang Dushibao",NA +108,125,1189,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +108,125,1192,"2017",3,1,80,2,80,50,"Nanfang Dushibao",NA +108,125,1194,"2017",2,0,60,2,40,30,"Nanfang Dushibao",NA +108,125,1207,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1210,"2017",3,1,40,2,40,40,"Nanfang Dushibao",NA +108,125,1213,"2017",5,0,20,3,80,80,"Nanfang Dushibao",NA +108,125,1218,"2017",3,0,14,3,86,86,"Nanfang Dushibao",NA +108,125,1221,"2017",5,0,20,2,80,80,"Nanfang Dushibao",NA +108,125,1222,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +108,125,1227,"2017",6,0,40,2,60,50,"Nanfang Dushibao",NA +108,125,1228,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1229,"2017",2,1,70,2,70,50,"Nanfang Dushibao",NA +108,125,1231,"2017",2,0,NA,3,NA,1,"Nanfang Dushibao",NA +108,125,1232,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1235,"2017",5,1,99,2,99,50,"Nanfang Dushibao",NA +108,125,1237,"2017",6,1,50,2,50,60,"Nanfang Dushibao",NA +108,125,1238,"2017",3,0,80,2,20,94,"Nanfang Dushibao",NA +108,125,1240,"2017",6,1,1,2,1,NA,"Nanfang Dushibao",NA +108,125,1241,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1244,"2017",2,0,50,2,50,1,"Nanfang Dushibao",NA +108,125,1247,"2017",2,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1248,"2017",5,1,65,3,65,50,"Nanfang Dushibao",NA +108,125,1249,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1251,"2017",3,1,NA,2,NA,NA,"Nanfang Dushibao",NA +108,125,1253,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1255,"2017",3,0,NA,2,NA,NA,"Nanfang Dushibao",NA +108,125,1257,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1258,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1261,"2017",6,0,9,3,91,99,"Nanfang Dushibao",NA +108,125,1265,"2017",3,0,100,3,0,0,"Nanfang Dushibao",NA +108,125,1269,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1276,"2017",3,1,NA,2,NA,1,"Nanfang Dushibao",NA +108,125,1277,"2017",3,1,50,2,50,1,"Nanfang Dushibao",NA +108,125,1282,"2017",2,1,80,2,80,8,"Nanfang Dushibao",NA +108,125,1283,"2017",5,1,1,3,1,NA,"Nanfang Dushibao",NA +108,125,1284,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1286,"2017",3,0,1,3,99,1,"Nanfang Dushibao",NA +108,125,1288,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +108,125,1294,"2017",2,1,50,2,50,NA,"Nanfang Dushibao",NA +108,125,1299,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1308,"2017",6,1,50,2,50,99,"Nanfang Dushibao",NA +108,125,1309,"2017",3,0,NA,2,NA,0,"Nanfang Dushibao",NA +108,125,1314,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1320,"2017",3,1,1,2,1,99,"Nanfang Dushibao",NA +108,125,1321,"2017",6,1,50,2,50,99,"Nanfang Dushibao",NA +108,125,1323,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1324,"2017",3,0,50,2,50,60,"Nanfang Dushibao",NA +108,125,1328,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1332,"2017",5,0,80,2,20,20,"Nanfang Dushibao",NA +108,125,1333,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1337,"2017",6,1,1,3,1,50,"Nanfang Dushibao",NA +108,125,1339,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1340,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1342,"2017",6,0,40,3,60,30,"Nanfang Dushibao",NA +108,125,1344,"2017",3,0,10,3,90,80,"Nanfang Dushibao",NA +108,125,1348,"2017",2,0,6,2,94,99,"Nanfang Dushibao",NA +108,125,1352,"2017",6,0,99,2,1,10,"Nanfang Dushibao",NA +108,125,1356,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1359,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1360,"2017",6,1,40,2,40,30,"Nanfang Dushibao",NA +108,125,1361,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1364,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1365,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +108,125,1367,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1370,"2017",6,1,99,2,99,9,"Nanfang Dushibao",NA +108,125,1372,"2017",3,1,20,2,20,30,"Nanfang Dushibao",NA +108,125,1374,"2017",3,1,99,3,99,NA,"Nanfang Dushibao",NA +108,125,1375,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1377,"2017",6,1,20,3,20,20,"Nanfang Dushibao",NA +108,125,1380,"2017",3,0,NA,3,NA,1,"Nanfang Dushibao",NA +108,125,1387,"2017",3,1,100,3,100,100,"Nanfang Dushibao",NA +108,125,1388,"2017",2,0,60,2,40,40,"Nanfang Dushibao",NA +108,125,1389,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1392,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1393,"2017",5,0,0,2,100,100,"Nanfang Dushibao",NA +108,125,1395,"2017",2,0,70,3,30,30,"Nanfang Dushibao",NA +108,125,1397,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1398,"2017",2,0,50,2,50,94,"Nanfang Dushibao",NA +108,125,1400,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1401,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1406,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +108,125,1408,"2017",2,1,99,2,99,1,"Nanfang Dushibao",NA +108,125,1409,"2017",2,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1414,"2017",6,0,99,3,1,99,"Nanfang Dushibao",NA +108,125,1415,"2017",5,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1416,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1417,"2017",3,0,40,2,60,60,"Nanfang Dushibao",NA +108,125,1418,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1419,"2017",2,0,1,3,99,1,"Nanfang Dushibao",NA +108,125,1420,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1424,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1425,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +108,125,1426,"2017",2,1,50,3,50,99,"Nanfang Dushibao",NA +108,125,1427,"2017",4,0,NA,4,NA,NA,"Nanfang Dushibao",NA +108,125,1431,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1433,"2017",5,0,40,3,60,60,"Nanfang Dushibao",NA +108,125,1441,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,1442,"2017",6,1,1,3,1,99,"Nanfang Dushibao",NA +108,125,1445,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1446,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1447,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1448,"2017",3,0,NA,3,NA,1,"Nanfang Dushibao",NA +108,125,1450,"2017",2,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1453,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,1459,"2017",2,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1460,"2017",3,1,99,2,99,1,"Nanfang Dushibao",NA +108,125,1465,"2017",3,1,99,2,99,1,"Nanfang Dushibao",NA +108,125,1466,"2017",6,0,NA,2,NA,50,"Nanfang Dushibao",NA +108,125,1467,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1468,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1469,"2017",5,0,50,3,50,1,"Nanfang Dushibao",NA +108,125,1471,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1477,"2017",2,1,50,2,50,50,"Nanfang Dushibao",NA +108,125,1479,"2017",2,0,50,3,50,NA,"Nanfang Dushibao",NA +108,125,1480,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1482,"2017",3,0,10,3,90,38,"Nanfang Dushibao",NA +108,125,1483,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +108,125,1485,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +108,125,1488,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1493,"2017",6,1,90,2,90,80,"Nanfang Dushibao",NA +108,125,1496,"2017",2,1,1,2,1,NA,"Nanfang Dushibao",NA +108,125,1497,"2017",3,0,10,2,90,10,"Nanfang Dushibao",NA +108,125,1499,"2017",3,0,80,3,20,40,"Nanfang Dushibao",NA +108,125,1505,"2017",6,1,99,2,99,90,"Nanfang Dushibao",NA +108,125,1506,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1508,"2017",6,1,99,2,99,50,"Nanfang Dushibao",NA +108,125,1510,"2017",6,0,50,3,50,30,"Nanfang Dushibao",NA +108,125,1511,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1514,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,1518,"2017",5,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,1519,"2017",5,0,50,2,50,45,"Nanfang Dushibao",NA +108,125,1523,"2017",2,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,1525,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1533,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1534,"2017",2,0,NA,2,NA,30,"Nanfang Dushibao",NA +108,125,1535,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1538,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1539,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1542,"2017",5,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1543,"2017",5,1,90,3,90,50,"Nanfang Dushibao",NA +108,125,1544,"2017",5,1,99,3,99,50,"Nanfang Dushibao",NA +108,125,1545,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1555,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1556,"2017",2,1,50,2,50,50,"Nanfang Dushibao",NA +108,125,1558,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +108,125,1563,"2017",5,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,1564,"2017",5,0,20,2,80,80,"Nanfang Dushibao",NA +108,125,1565,"2017",5,0,99,3,1,50,"Nanfang Dushibao",NA +108,125,1568,"2017",5,0,99,2,1,NA,"Nanfang Dushibao",NA +108,125,1571,"2017",4,0,80,4,20,NA,"Nanfang Dushibao",NA +108,125,1572,"2017",5,0,99,2,1,NA,"Nanfang Dushibao",NA +108,125,1573,"2017",6,0,1,2,99,NA,"Nanfang Dushibao",NA +108,125,1575,"2017",6,1,100,3,100,100,"Nanfang Dushibao",NA +108,125,1577,"2017",3,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1583,"2017",3,0,90,2,10,NA,"Nanfang Dushibao",NA +108,125,1584,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1585,"2017",3,0,8,3,92,20,"Nanfang Dushibao",NA +108,125,1587,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +108,125,1589,"2017",3,0,90,3,10,NA,"Nanfang Dushibao",NA +108,125,1599,"2017",6,1,17,3,17,33,"Nanfang Dushibao",NA +108,125,1600,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +108,125,1601,"2017",6,1,80,2,80,80,"Nanfang Dushibao",NA +108,125,1603,"2017",5,1,NA,2,NA,NA,"Nanfang Dushibao",NA +108,125,1610,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1613,"2017",5,1,50,3,50,1,"Nanfang Dushibao",NA +108,125,1617,"2017",3,1,1,2,1,50,"Nanfang Dushibao",NA +108,125,1618,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1622,"2017",5,1,40,3,40,60,"Nanfang Dushibao",NA +108,125,1625,"2017",3,0,30,2,70,50,"Nanfang Dushibao",NA +108,125,1626,"2017",6,0,1,2,99,NA,"Nanfang Dushibao",NA +108,125,1631,"2017",2,0,NA,2,NA,NA,"Nanfang Dushibao",NA +108,125,1640,"2017",5,0,80,2,20,40,"Nanfang Dushibao",NA +108,125,1641,"2017",3,1,90,2,90,80,"Nanfang Dushibao",NA +108,125,1642,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1645,"2017",5,0,NA,3,NA,NA,"Nanfang Dushibao",NA +108,125,1647,"2017",2,0,NA,3,NA,NA,"Nanfang Dushibao",NA +108,125,1649,"2017",3,1,1,2,1,99,"Nanfang Dushibao",NA +108,125,1650,"2017",3,1,44,2,44,30,"Nanfang Dushibao",NA +108,125,1652,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1657,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1658,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1661,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +108,125,1664,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1674,"2017",6,1,80,3,80,49,"Nanfang Dushibao",NA +108,125,1684,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1690,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +108,125,1691,"2017",2,0,90,3,10,30,"Nanfang Dushibao",NA +108,125,1694,"2017",5,0,NA,2,NA,99,"Nanfang Dushibao",NA +108,125,1695,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +108,125,1696,"2017",3,1,80,3,80,80,"Nanfang Dushibao",NA +108,125,1705,"2017",5,1,99,3,99,NA,"Nanfang Dushibao",NA +108,125,1706,"2017",3,1,NA,2,NA,NA,"Nanfang Dushibao",NA +108,125,1709,"2017",5,0,99,3,1,50,"Nanfang Dushibao",NA +108,125,1713,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +108,125,1714,"2017",6,1,40,3,40,50,"Nanfang Dushibao",NA +108,125,1715,"2017",2,1,22,3,22,44,"Nanfang Dushibao",NA +108,125,1716,"2017",6,0,99,3,1,99,"Nanfang Dushibao",NA +108,125,1720,"2017",5,1,50,3,50,NA,"Nanfang Dushibao",NA +108,125,1736,"2017",5,1,1,3,1,10,"Nanfang Dushibao",NA +108,125,1738,"2017",5,0,20,3,80,60,"Nanfang Dushibao",NA +108,125,1741,"2017",2,0,1,3,99,88,"Nanfang Dushibao",NA +108,125,1746,"2017",5,0,99,3,1,50,"Nanfang Dushibao",NA +108,125,1747,"2017",2,0,99,2,1,50,"Nanfang Dushibao",NA +108,125,1750,"2017",3,0,99,2,1,99,"Nanfang Dushibao",NA +108,125,1751,"2017",3,1,1,2,1,NA,"Nanfang Dushibao",NA +108,125,1752,"2017",3,0,50,2,50,1,"Nanfang Dushibao",NA +108,125,1754,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1756,"2017",3,0,90,3,10,0,"Nanfang Dushibao",NA +108,125,1758,"2017",2,1,96,2,96,99,"Nanfang Dushibao",NA +108,125,1761,"2017",2,0,29,3,71,71,"Nanfang Dushibao",NA +108,125,1769,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1770,"2017",6,1,68,2,68,8,"Nanfang Dushibao",NA +108,125,1772,"2017",3,0,40,2,60,41,"Nanfang Dushibao",NA +108,125,1773,"2017",3,0,46,2,54,12,"Nanfang Dushibao",NA +108,125,1774,"2017",2,1,96,3,96,96,"Nanfang Dushibao",NA +108,125,1780,"2017",6,1,97,3,97,97,"Nanfang Dushibao",NA +108,125,1782,"2017",6,0,88,2,12,17,"Nanfang Dushibao",NA +108,125,1783,"2017",6,1,NA,3,NA,99,"Nanfang Dushibao",NA +108,125,1784,"2017",2,1,97,2,97,84,"Nanfang Dushibao",NA +108,125,1788,"2017",3,1,88,2,88,NA,"Nanfang Dushibao",NA +108,125,1789,"2017",5,0,NA,2,NA,86,"Nanfang Dushibao",NA +108,125,1790,"2017",2,1,90,3,90,16,"Nanfang Dushibao",NA +108,125,1792,"2017",6,0,100,2,0,50,"Nanfang Dushibao",NA +108,125,1797,"2017",2,0,NA,3,NA,12,"Nanfang Dushibao",NA +108,125,1798,"2017",6,0,95,2,5,14,"Nanfang Dushibao",NA +108,125,1809,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +108,125,1811,"2017",3,1,99,3,99,1,"Nanfang Dushibao",NA +108,125,1813,"2017",5,1,50,3,50,99,"Nanfang Dushibao",NA +108,125,1817,"2017",2,0,50,3,50,25,"Nanfang Dushibao",NA +108,125,1818,"2017",4,0,80,4,20,NA,"Nanfang Dushibao",NA +108,125,1823,"2017",2,0,20,2,80,NA,"Nanfang Dushibao",NA +108,125,1827,"2017",3,1,75,3,75,50,"Nanfang Dushibao",NA +108,125,1830,"2017",6,1,60,2,60,50,"Nanfang Dushibao",NA +108,125,1834,"2017",3,0,1,3,99,1,"Nanfang Dushibao",NA +108,125,1835,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,1839,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1843,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +108,125,1844,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +108,125,1845,"2017",3,0,80,2,20,30,"Nanfang Dushibao",NA +108,125,1849,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1851,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1853,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,1855,"2017",6,1,99,3,99,1,"Nanfang Dushibao",NA +108,125,1856,"2017",2,0,80,3,20,20,"Nanfang Dushibao",NA +108,125,1857,"2017",5,1,40,3,40,50,"Nanfang Dushibao",NA +108,125,1861,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +108,125,1862,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,1867,"2017",6,0,1,2,99,NA,"Nanfang Dushibao",NA +108,125,1868,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1871,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,1873,"2017",3,1,60,2,60,1,"Nanfang Dushibao",NA +108,125,1874,"2017",3,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1877,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1879,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1883,"2017",6,0,99,3,1,NA,"Nanfang Dushibao",NA +108,125,1886,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1889,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,1891,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1892,"2017",6,1,50,3,50,50,"Nanfang Dushibao",NA +108,125,1893,"2017",4,0,60,4,40,NA,"Nanfang Dushibao",NA +108,125,1894,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,1898,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,1899,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1901,"2017",2,0,10,2,90,80,"Nanfang Dushibao",NA +108,125,1904,"2017",2,0,70,2,30,50,"Nanfang Dushibao",NA +108,125,1906,"2017",5,0,40,2,60,70,"Nanfang Dushibao",NA +108,125,1907,"2017",3,0,80,3,20,20,"Nanfang Dushibao",NA +108,125,1908,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1909,"2017",6,0,70,3,30,30,"Nanfang Dushibao",NA +108,125,1910,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,1911,"2017",2,1,90,3,90,90,"Nanfang Dushibao",NA +108,125,1916,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,1918,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1921,"2017",6,0,80,2,20,70,"Nanfang Dushibao",NA +108,125,1924,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +108,125,1925,"2017",2,0,100,3,0,0,"Nanfang Dushibao",NA +108,125,1926,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1929,"2017",6,0,50,2,50,1,"Nanfang Dushibao",NA +108,125,1930,"2017",6,0,NA,3,NA,20,"Nanfang Dushibao",NA +108,125,1932,"2017",3,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,1936,"2017",3,0,1,2,99,50,"Nanfang Dushibao",NA +108,125,1938,"2017",6,0,NA,2,NA,50,"Nanfang Dushibao",NA +108,125,1943,"2017",2,1,1,2,1,NA,"Nanfang Dushibao",NA +108,125,1951,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,1953,"2017",3,0,0,2,100,1,"Nanfang Dushibao",NA +108,125,1955,"2017",2,0,60,2,40,94,"Nanfang Dushibao",NA +108,125,1956,"2017",2,0,50,2,50,NA,"Nanfang Dushibao",NA +108,125,1961,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,1965,"2017",6,0,99,2,1,NA,"Nanfang Dushibao",NA +108,125,1967,"2017",5,0,1,2,99,NA,"Nanfang Dushibao",NA +108,125,1969,"2017",3,0,80,2,20,70,"Nanfang Dushibao",NA +108,125,1972,"2017",2,1,1,3,1,50,"Nanfang Dushibao",NA +108,125,1975,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,1981,"2017",5,1,NA,3,NA,50,"Nanfang Dushibao",NA +108,125,1985,"2017",6,1,50,3,50,99,"Nanfang Dushibao",NA +108,125,1989,"2017",2,1,89,2,89,90,"Nanfang Dushibao",NA +108,125,1991,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +108,125,1992,"2017",5,1,99,2,99,50,"Nanfang Dushibao",NA +108,125,1998,"2017",3,1,90,3,90,80,"Nanfang Dushibao",NA +108,125,2004,"2017",2,1,45,2,45,1,"Nanfang Dushibao",NA +108,125,2008,"2017",6,0,NA,2,NA,NA,"Nanfang Dushibao",NA +108,125,2009,"2017",2,0,89,3,11,11,"Nanfang Dushibao",NA +108,125,2012,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +108,125,2015,"2017",3,1,90,2,90,90,"Nanfang Dushibao",NA +108,125,2017,"2017",3,1,99,2,99,70,"Nanfang Dushibao",NA +108,125,2018,"2017",2,1,100,3,100,100,"Nanfang Dushibao",NA +108,125,2019,"2017",3,1,99,2,99,90,"Nanfang Dushibao",NA +108,125,2025,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,2027,"2017",6,0,2,3,98,98,"Nanfang Dushibao",NA +108,125,2028,"2017",2,1,60,2,60,40,"Nanfang Dushibao",NA +108,125,2038,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +108,125,2042,"2017",3,1,10,2,10,10,"Nanfang Dushibao",NA +108,125,2049,"2017",5,0,99,3,1,85,"Nanfang Dushibao",NA +108,125,2050,"2017",5,0,99,3,1,50,"Nanfang Dushibao",NA +108,125,2054,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +108,125,2055,"2017",2,0,50,2,50,90,"Nanfang Dushibao",NA +108,125,2058,"2017",5,1,50,3,50,30,"Nanfang Dushibao",NA +108,125,2059,"2017",5,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,2061,"2017",5,0,98,3,2,50,"Nanfang Dushibao",NA +108,125,2065,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,2067,"2017",5,0,15,2,85,NA,"Nanfang Dushibao",NA +108,125,2069,"2017",6,0,99,3,1,99,"Nanfang Dushibao",NA +108,125,2073,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,2074,"2017",5,1,90,3,90,50,"Nanfang Dushibao",NA +108,125,2077,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,2082,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +108,125,2084,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +108,125,2093,"2017",2,1,99,2,99,70,"Nanfang Dushibao",NA +108,125,2097,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,2098,"2017",5,0,90,3,10,20,"Nanfang Dushibao",NA +108,125,2099,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +108,125,2101,"2017",2,0,50,2,50,NA,"Nanfang Dushibao",NA +108,125,2105,"2017",2,0,NA,2,NA,NA,"Nanfang Dushibao",NA +108,125,2114,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +108,125,2120,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +108,125,2124,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +108,125,2125,"2017",2,1,1,2,1,NA,"Nanfang Dushibao",NA +108,125,2126,"2017",3,1,1,3,1,1,"Nanfang Dushibao",NA +108,125,2127,"2017",2,1,50,3,50,50,"Nanfang Dushibao",NA +108,125,2128,"2017",6,1,40,2,40,40,"Nanfang Dushibao",NA +108,125,2132,"2017",6,1,70,2,70,60,"Nanfang Dushibao",NA +108,140,1,"2017",6,1,90,3,90,90,"BBC",NA +108,140,2,"2017",6,0,NA,3,NA,NA,"BBC",NA +108,140,3,"2017",3,1,NA,2,NA,NA,"BBC",NA +108,140,8,"2017",2,0,99,3,1,1,"BBC",NA +108,140,10,"2017",2,0,1,3,99,99,"BBC",NA +108,140,11,"2017",6,1,50,2,50,50,"BBC",NA +108,140,22,"2017",5,1,99,3,99,95,"BBC",NA +108,140,23,"2017",6,1,50,2,50,99,"BBC",NA +108,140,24,"2017",3,1,60,3,60,80,"BBC",NA +108,140,27,"2017",2,0,80,3,20,20,"BBC",NA +108,140,28,"2017",2,0,1,3,99,99,"BBC",NA +108,140,29,"2017",3,0,NA,3,NA,NA,"BBC",NA +108,140,30,"2017",2,0,NA,3,NA,NA,"BBC",NA +108,140,31,"2017",5,0,NA,3,NA,NA,"BBC",NA +108,140,32,"2017",3,0,NA,3,NA,NA,"BBC",NA +108,140,35,"2017",3,0,99,2,1,1,"BBC",NA +108,140,39,"2017",5,1,40,2,40,30,"BBC",NA +108,140,41,"2017",5,0,41,3,59,56,"BBC",NA +108,140,43,"2017",3,0,99,3,1,1,"BBC",NA +108,140,45,"2017",6,0,22,3,78,56,"BBC",NA +108,140,46,"2017",2,0,90,3,10,30,"BBC",NA +108,140,48,"2017",3,0,80,3,20,40,"BBC",NA +108,140,49,"2017",3,0,23,2,77,59,"BBC",NA +108,140,50,"2017",6,1,10,2,10,10,"BBC",NA +108,140,56,"2017",5,0,99,3,1,5,"BBC",NA +108,140,57,"2017",6,1,75,2,75,65,"BBC",NA +108,140,58,"2017",2,0,99,2,1,10,"BBC",NA +108,140,60,"2017",6,0,50,2,50,50,"BBC",NA +108,140,62,"2017",6,0,50,3,50,50,"BBC",NA +108,140,63,"2017",3,0,1,3,99,1,"BBC",NA +108,140,65,"2017",6,1,5,2,5,35,"BBC",NA +108,140,67,"2017",4,0,10,3,90,NA,"BBC",NA +108,140,68,"2017",6,0,99,2,1,50,"BBC",NA +108,140,70,"2017",2,1,50,2,50,80,"BBC",NA +108,140,71,"2017",4,0,99,3,1,NA,"BBC",NA +108,140,73,"2017",3,1,50,2,50,0,"BBC",NA +108,140,80,"2017",3,0,90,2,10,1,"BBC",NA +108,140,85,"2017",3,1,0,2,0,0,"BBC",NA +108,140,88,"2017",3,1,90,3,90,90,"BBC",NA +108,140,101,"2017",3,1,1,2,1,1,"BBC",NA +108,140,102,"2017",3,1,35,3,35,85,"BBC",NA +108,140,104,"2017",4,0,50,3,50,NA,"BBC",NA +108,140,105,"2017",2,1,70,3,70,90,"BBC",NA +108,140,112,"2017",4,0,50,3,50,NA,"BBC",NA +108,140,114,"2017",4,0,60,3,40,NA,"BBC",NA +108,140,117,"2017",2,0,90,2,10,10,"BBC",NA +108,140,118,"2017",3,0,50,3,50,30,"BBC",NA +108,140,120,"2017",3,1,99,2,99,99,"BBC",NA +108,140,123,"2017",3,1,99,2,99,99,"BBC",NA +108,140,124,"2017",3,1,99,3,99,NA,"BBC",NA +108,140,125,"2017",3,0,99,2,1,50,"BBC",NA +108,140,127,"2017",2,0,100,2,0,20,"BBC",NA +108,140,128,"2017",3,1,50,3,50,99,"BBC",NA +108,140,131,"2017",2,1,1,2,1,NA,"BBC",NA +108,140,132,"2017",2,1,1,3,1,1,"BBC",NA +108,140,133,"2017",2,0,60,3,40,40,"BBC",NA +108,140,137,"2017",3,0,99,2,1,1,"BBC",NA +108,140,1169,"2017",2,1,90,2,90,70,"BBC",NA +108,140,1171,"2017",4,0,50,3,50,NA,"BBC",NA +108,140,1175,"2017",3,0,1,2,99,10,"BBC",NA +108,140,1176,"2017",6,0,100,3,0,0,"BBC",NA +108,140,1181,"2017",2,1,70,3,70,50,"BBC",NA +108,140,1183,"2017",4,0,70,3,30,NA,"BBC",NA +108,140,1185,"2017",3,0,70,2,30,50,"BBC",NA +108,140,1187,"2017",2,1,10,3,10,20,"BBC",NA +108,140,1189,"2017",5,1,50,3,50,50,"BBC",NA +108,140,1190,"2017",5,1,20,3,20,30,"BBC",NA +108,140,1192,"2017",3,1,90,3,90,80,"BBC",NA +108,140,1195,"2017",4,0,60,3,40,NA,"BBC",NA +108,140,1196,"2017",4,0,99,3,1,NA,"BBC",NA +108,140,1197,"2017",3,1,50,2,50,10,"BBC",NA +108,140,1198,"2017",3,0,20,2,80,80,"BBC",NA +108,140,1199,"2017",5,0,90,2,10,10,"BBC",NA +108,140,1201,"2017",2,1,99,2,99,99,"BBC",NA +108,140,1203,"2017",5,1,70,2,70,50,"BBC",NA +108,140,1207,"2017",2,1,99,2,99,50,"BBC",NA +108,140,1215,"2017",2,0,20,2,80,NA,"BBC",NA +108,140,1220,"2017",5,1,40,3,40,40,"BBC",NA +108,140,1221,"2017",5,0,20,3,80,80,"BBC",NA +108,140,1223,"2017",5,1,20,3,20,20,"BBC",NA +108,140,1230,"2017",3,1,99,2,99,99,"BBC",NA +108,140,1233,"2017",3,0,99,3,1,99,"BBC",NA +108,140,1234,"2017",5,1,90,3,90,80,"BBC",NA +108,140,1235,"2017",5,1,99,3,99,99,"BBC",NA +108,140,1238,"2017",3,0,2,3,98,20,"BBC",NA +108,140,1239,"2017",2,1,50,2,50,50,"BBC",NA +108,140,1241,"2017",5,1,99,3,99,99,"BBC",NA +108,140,1242,"2017",5,1,99,2,99,50,"BBC",NA +108,140,1243,"2017",5,1,40,3,40,55,"BBC",NA +108,140,1247,"2017",2,0,50,3,50,50,"BBC",NA +108,140,1251,"2017",3,1,99,3,99,NA,"BBC",NA +108,140,1253,"2017",3,1,99,2,99,99,"BBC",NA +108,140,1259,"2017",2,1,NA,2,NA,5,"BBC",NA +108,140,1260,"2017",3,1,1,3,1,1,"BBC",NA +108,140,1261,"2017",6,0,1,2,99,99,"BBC",NA +108,140,1262,"2017",6,1,50,3,50,1,"BBC",NA +108,140,1264,"2017",5,0,99,2,1,1,"BBC",NA +108,140,1267,"2017",2,1,1,2,1,NA,"BBC",NA +108,140,1272,"2017",3,1,99,3,99,99,"BBC",NA +108,140,1273,"2017",5,0,1,2,99,99,"BBC",NA +108,140,1275,"2017",2,1,50,3,50,50,"BBC",NA +108,140,1277,"2017",3,1,99,3,99,50,"BBC",NA +108,140,1278,"2017",4,0,50,3,50,NA,"BBC",NA +108,140,1283,"2017",5,1,NA,2,NA,NA,"BBC",NA +108,140,1284,"2017",3,0,1,3,99,99,"BBC",NA +108,140,1285,"2017",3,0,1,2,99,99,"BBC",NA +108,140,1286,"2017",3,0,99,2,1,50,"BBC",NA +108,140,1289,"2017",3,0,26,2,74,32,"BBC",NA +108,140,1291,"2017",5,1,1,2,1,1,"BBC",NA +108,140,1298,"2017",6,0,50,3,50,40,"BBC",NA +108,140,1301,"2017",6,0,50,2,50,50,"BBC",NA +108,140,1306,"2017",3,1,1,2,1,1,"BBC",NA +108,140,1309,"2017",3,0,50,3,50,NA,"BBC",NA +108,140,1311,"2017",3,1,99,3,99,99,"BBC",NA +108,140,1312,"2017",3,0,50,3,50,1,"BBC",NA +108,140,1315,"2017",2,1,99,2,99,99,"BBC",NA +108,140,1316,"2017",5,1,NA,2,NA,NA,"BBC",NA +108,140,1317,"2017",5,1,50,2,50,50,"BBC",NA +108,140,1318,"2017",5,1,99,3,99,99,"BBC",NA +108,140,1321,"2017",6,1,50,3,50,50,"BBC",NA +108,140,1327,"2017",5,1,50,3,50,99,"BBC",NA +108,140,1335,"2017",6,0,80,3,20,30,"BBC",NA +108,140,1336,"2017",3,1,99,3,99,99,"BBC",NA +108,140,1339,"2017",3,1,99,3,99,99,"BBC",NA +108,140,1345,"2017",6,1,80,2,80,NA,"BBC",NA +108,140,1350,"2017",5,1,40,2,40,40,"BBC",NA +108,140,1352,"2017",6,0,99,3,1,1,"BBC",NA +108,140,1353,"2017",3,1,99,2,99,99,"BBC",NA +108,140,1355,"2017",2,0,85,3,15,20,"BBC",NA +108,140,1358,"2017",4,0,50,3,50,NA,"BBC",NA +108,140,1364,"2017",6,0,99,3,1,1,"BBC",NA +108,140,1369,"2017",5,0,40,2,60,50,"BBC",NA +108,140,1374,"2017",3,1,NA,2,NA,NA,"BBC",NA +108,140,1375,"2017",3,0,1,2,99,99,"BBC",NA +108,140,1376,"2017",6,0,99,2,1,65,"BBC",NA +108,140,1378,"2017",4,0,99,3,1,NA,"BBC",NA +108,140,1380,"2017",3,0,99,2,1,1,"BBC",NA +108,140,1383,"2017",2,1,1,2,1,1,"BBC",NA +108,140,1385,"2017",5,1,75,3,75,85,"BBC",NA +108,140,1390,"2017",4,1,10,3,10,NA,"BBC",NA +108,140,1391,"2017",2,0,55,2,45,99,"BBC",NA +108,140,1392,"2017",6,0,50,3,50,1,"BBC",NA +108,140,1407,"2017",3,0,40,3,60,60,"BBC",NA +108,140,1411,"2017",2,1,1,3,1,99,"BBC",NA +108,140,1412,"2017",6,0,1,3,99,1,"BBC",NA +108,140,1415,"2017",5,1,1,2,1,1,"BBC",NA +108,140,1417,"2017",3,0,99,3,1,60,"BBC",NA +108,140,1418,"2017",6,0,99,3,1,1,"BBC",NA +108,140,1424,"2017",2,1,99,2,99,99,"BBC",NA +108,140,1429,"2017",2,1,1,2,1,99,"BBC",NA +108,140,1431,"2017",2,0,1,2,99,99,"BBC",NA +108,140,1432,"2017",3,1,99,2,99,99,"BBC",NA +108,140,1433,"2017",5,0,40,2,60,50,"BBC",NA +108,140,1437,"2017",2,1,1,3,1,1,"BBC",NA +108,140,1438,"2017",3,1,70,2,70,NA,"BBC",NA +108,140,1439,"2017",6,1,80,3,80,90,"BBC",NA +108,140,1440,"2017",6,0,NA,2,NA,NA,"BBC",NA +108,140,1443,"2017",2,0,1,2,99,NA,"BBC",NA +108,140,1452,"2017",6,0,99,2,1,1,"BBC",NA +108,140,1456,"2017",6,0,99,3,1,1,"BBC",NA +108,140,1457,"2017",5,0,50,2,50,50,"BBC",NA +108,140,1459,"2017",2,0,1,3,99,99,"BBC",NA +108,140,1463,"2017",6,0,50,3,50,30,"BBC",NA +108,140,1465,"2017",3,1,50,3,50,99,"BBC",NA +108,140,1469,"2017",5,0,99,2,1,99,"BBC",NA +108,140,1471,"2017",6,1,99,2,99,1,"BBC",NA +108,140,1472,"2017",5,0,NA,2,NA,50,"BBC",NA +108,140,1474,"2017",6,0,1,2,99,99,"BBC",NA +108,140,1476,"2017",5,0,1,2,99,99,"BBC",NA +108,140,1480,"2017",5,0,1,3,99,99,"BBC",NA +108,140,1484,"2017",2,0,50,2,50,50,"BBC",NA +108,140,1486,"2017",3,0,99,2,1,1,"BBC",NA +108,140,1487,"2017",6,0,99,3,1,1,"BBC",NA +108,140,1491,"2017",2,1,99,3,99,99,"BBC",NA +108,140,1493,"2017",6,1,99,3,99,90,"BBC",NA +108,140,1494,"2017",4,0,99,3,1,NA,"BBC",NA +108,140,1495,"2017",2,0,50,3,50,1,"BBC",NA +108,140,1496,"2017",2,1,1,3,1,1,"BBC",NA +108,140,1500,"2017",2,0,99,3,1,NA,"BBC",NA +108,140,1502,"2017",6,0,99,3,1,50,"BBC",NA +108,140,1503,"2017",3,1,90,2,90,50,"BBC",NA +108,140,1506,"2017",5,1,99,2,99,50,"BBC",NA +108,140,1507,"2017",2,1,50,3,50,50,"BBC",NA +108,140,1508,"2017",6,1,99,3,99,99,"BBC",NA +108,140,1510,"2017",6,0,70,2,30,50,"BBC",NA +108,140,1511,"2017",2,0,99,3,1,1,"BBC",NA +108,140,1513,"2017",5,1,50,2,50,50,"BBC",NA +108,140,1515,"2017",3,0,1,3,99,99,"BBC",NA +108,140,1516,"2017",5,0,99,3,1,1,"BBC",NA +108,140,1517,"2017",3,0,50,2,50,NA,"BBC",NA +108,140,1522,"2017",5,0,25,2,75,50,"BBC",NA +108,140,1529,"2017",5,0,50,2,50,NA,"BBC",NA +108,140,1530,"2017",5,1,50,3,50,50,"BBC",NA +108,140,1536,"2017",2,0,99,3,1,1,"BBC",NA +108,140,1539,"2017",5,0,62,3,38,50,"BBC",NA +108,140,1540,"2017",6,0,50,3,50,50,"BBC",NA +108,140,1541,"2017",3,1,99,2,99,99,"BBC",NA +108,140,1543,"2017",5,1,50,2,50,NA,"BBC",NA +108,140,1545,"2017",5,1,99,2,99,99,"BBC",NA +108,140,1548,"2017",6,0,1,2,99,99,"BBC",NA +108,140,1552,"2017",6,0,99,3,1,1,"BBC",NA +108,140,1553,"2017",5,0,99,2,1,1,"BBC",NA +108,140,1557,"2017",3,0,99,3,1,1,"BBC",NA +108,140,1565,"2017",5,0,50,2,50,1,"BBC",NA +108,140,1566,"2017",5,0,99,2,1,1,"BBC",NA +108,140,1567,"2017",5,1,50,2,50,1,"BBC",NA +108,140,1570,"2017",5,0,90,2,10,20,"BBC",NA +108,140,1573,"2017",6,0,1,3,99,99,"BBC",NA +108,140,1574,"2017",3,1,99,2,99,50,"BBC",NA +108,140,1576,"2017",2,0,50,2,50,50,"BBC",NA +108,140,1579,"2017",6,1,95,2,95,NA,"BBC",NA +108,140,1581,"2017",2,0,NA,3,NA,NA,"BBC",NA +108,140,1582,"2017",6,0,90,3,10,50,"BBC",NA +108,140,1585,"2017",3,0,80,2,20,92,"BBC",NA +108,140,1589,"2017",3,0,NA,2,NA,91,"BBC",NA +108,140,1592,"2017",4,0,50,3,50,NA,"BBC",NA +108,140,1596,"2017",3,0,99,3,1,NA,"BBC",NA +108,140,1599,"2017",6,1,33,2,33,45,"BBC",NA +108,140,1605,"2017",4,0,99,3,1,NA,"BBC",NA +108,140,1608,"2017",2,1,99,2,99,99,"BBC",NA +108,140,1611,"2017",5,1,1,3,1,NA,"BBC",NA +108,140,1614,"2017",2,0,NA,3,NA,70,"BBC",NA +108,140,1618,"2017",3,1,99,2,99,99,"BBC",NA +108,140,1629,"2017",5,0,90,3,10,30,"BBC",NA +108,140,1634,"2017",5,0,40,2,60,60,"BBC",NA +108,140,1636,"2017",6,1,90,2,90,100,"BBC",NA +108,140,1638,"2017",3,0,50,3,50,99,"BBC",NA +108,140,1639,"2017",4,1,99,3,99,NA,"BBC",NA +108,140,1644,"2017",5,1,50,3,50,50,"BBC",NA +108,140,1645,"2017",5,0,NA,2,NA,50,"BBC",NA +108,140,1647,"2017",2,0,NA,2,NA,NA,"BBC",NA +108,140,1648,"2017",5,0,99,2,1,NA,"BBC",NA +108,140,1649,"2017",3,1,50,3,50,1,"BBC",NA +108,140,1652,"2017",3,1,99,2,99,99,"BBC",NA +108,140,1655,"2017",6,0,1,2,99,NA,"BBC",NA +108,140,1656,"2017",6,0,50,3,50,40,"BBC",NA +108,140,1661,"2017",6,1,50,3,50,50,"BBC",NA +108,140,1667,"2017",3,0,50,3,50,1,"BBC",NA +108,140,1668,"2017",3,1,99,2,99,99,"BBC",NA +108,140,1669,"2017",6,0,60,3,40,40,"BBC",NA +108,140,1671,"2017",6,1,1,3,1,1,"BBC",NA +108,140,1675,"2017",2,0,99,2,1,99,"BBC",NA +108,140,1676,"2017",2,0,6.8,2,93.2,92.8,"BBC",NA +108,140,1677,"2017",6,1,50,3,50,50,"BBC",NA +108,140,1688,"2017",3,1,80,3,80,80,"BBC",NA +108,140,1693,"2017",3,0,1,2,99,NA,"BBC",NA +108,140,1695,"2017",5,1,50,3,50,50,"BBC",NA +108,140,1696,"2017",3,1,80,2,80,90,"BBC",NA +108,140,1697,"2017",3,0,60,2,40,40,"BBC",NA +108,140,1698,"2017",4,1,70,3,70,NA,"BBC",NA +108,140,1699,"2017",6,1,80,3,80,75,"BBC",NA +108,140,1705,"2017",5,1,NA,2,NA,1,"BBC",NA +108,140,1709,"2017",5,0,50,2,50,50,"BBC",NA +108,140,1710,"2017",2,1,80,2,80,50,"BBC",NA +108,140,1712,"2017",2,0,51,3,49,51,"BBC",NA +108,140,1713,"2017",5,1,1,3,1,1,"BBC",NA +108,140,1716,"2017",6,0,1,2,99,1,"BBC",NA +108,140,1720,"2017",5,1,NA,2,NA,100,"BBC",NA +108,140,1722,"2017",2,0,50,3,50,50,"BBC",NA +108,140,1724,"2017",6,0,99,2,1,50,"BBC",NA +108,140,1726,"2017",5,0,22,3,78,60,"BBC",NA +108,140,1731,"2017",6,0,69,3,31,79,"BBC",NA +108,140,1732,"2017",2,1,NA,2,NA,NA,"BBC",NA +108,140,1733,"2017",3,1,NA,2,NA,50,"BBC",NA +108,140,1735,"2017",6,1,14,2,14,30,"BBC",NA +108,140,1736,"2017",5,1,10,2,10,50,"BBC",NA +108,140,1739,"2017",3,1,50,2,50,99,"BBC",NA +108,140,1740,"2017",5,1,50,3,50,50,"BBC",NA +108,140,1741,"2017",2,0,12,2,88,65,"BBC",NA +108,140,1742,"2017",6,0,99,3,1,1,"BBC",NA +108,140,1744,"2017",4,0,99,3,1,NA,"BBC",NA +108,140,1745,"2017",2,0,50,3,50,50,"BBC",NA +108,140,1747,"2017",2,0,NA,3,NA,1,"BBC",NA +108,140,1751,"2017",3,1,1,3,1,1,"BBC",NA +108,140,1759,"2017",4,1,52,3,52,NA,"BBC",NA +108,140,1760,"2017",2,0,61,3,39,59,"BBC",NA +108,140,1763,"2017",6,0,90,3,10,10,"BBC",NA +108,140,1764,"2017",5,0,75,2,25,50,"BBC",NA +108,140,1766,"2017",2,1,99,3,99,99,"BBC",NA +108,140,1768,"2017",6,0,50,2,50,1,"BBC",NA +108,140,1769,"2017",6,0,99,3,1,1,"BBC",NA +108,140,1771,"2017",6,1,83,3,83,73,"BBC",NA +108,140,1774,"2017",2,1,96,2,96,16,"BBC",NA +108,140,1778,"2017",2,1,87,3,87,87,"BBC",NA +108,140,1779,"2017",5,0,89,3,11,14,"BBC",NA +108,140,1781,"2017",3,1,98,3,98,92,"BBC",NA +108,140,1786,"2017",5,0,88,3,12,1,"BBC",NA +108,140,1787,"2017",6,1,92,3,92,88,"BBC",NA +108,140,1790,"2017",2,1,16,2,16,84,"BBC",NA +108,140,1792,"2017",6,0,100,3,0,0,"BBC",NA +108,140,1793,"2017",2,1,97,3,97,88,"BBC",NA +108,140,1796,"2017",6,0,96,3,4,12,"BBC",NA +108,140,1797,"2017",2,0,88,2,12,NA,"BBC",NA +108,140,1799,"2017",2,0,NA,3,NA,12,"BBC",NA +108,140,1810,"2017",3,0,60,3,40,50,"BBC",NA +108,140,1812,"2017",6,1,50,2,50,NA,"BBC",NA +108,140,1813,"2017",5,1,99,2,99,99,"BBC",NA +108,140,1819,"2017",5,0,90,3,10,20,"BBC",NA +108,140,1820,"2017",3,1,80,2,80,50,"BBC",NA +108,140,1821,"2017",6,1,80,2,80,60,"BBC",NA +108,140,1822,"2017",5,0,0,3,100,NA,"BBC",NA +108,140,1824,"2017",2,1,99,2,99,90,"BBC",NA +108,140,1827,"2017",3,1,50,2,50,50,"BBC",NA +108,140,1828,"2017",6,1,30,2,30,50,"BBC",NA +108,140,1836,"2017",5,0,99,2,1,50,"BBC",NA +108,140,1837,"2017",6,0,98,2,2,2,"BBC",NA +108,140,1840,"2017",3,1,99,2,99,80,"BBC",NA +108,140,1842,"2017",2,0,50,2,50,NA,"BBC",NA +108,140,1845,"2017",3,0,90,3,10,20,"BBC",NA +108,140,1852,"2017",4,1,99,3,99,NA,"BBC",NA +108,140,1856,"2017",2,0,80,2,20,10,"BBC",NA +108,140,1857,"2017",5,1,50,2,50,NA,"BBC",NA +108,140,1859,"2017",5,0,50,2,50,10,"BBC",NA +108,140,1860,"2017",3,1,99,3,99,99,"BBC",NA +108,140,1861,"2017",2,0,99,3,1,1,"BBC",NA +108,140,1864,"2017",5,0,99,3,1,50,"BBC",NA +108,140,1865,"2017",3,0,50,3,50,30,"BBC",NA +108,140,1870,"2017",6,0,0,2,100,100,"BBC",NA +108,140,1871,"2017",2,0,1,2,99,99,"BBC",NA +108,140,1874,"2017",3,1,1,2,1,1,"BBC",NA +108,140,1875,"2017",3,0,100,3,0,0,"BBC",NA +108,140,1876,"2017",2,1,99,3,99,99,"BBC",NA +108,140,1884,"2017",3,0,80,3,20,1,"BBC",NA +108,140,1886,"2017",6,1,99,2,99,99,"BBC",NA +108,140,1887,"2017",2,0,99,2,1,1,"BBC",NA +108,140,1888,"2017",4,0,99,3,1,NA,"BBC",NA +108,140,1890,"2017",2,1,100,2,100,100,"BBC",NA +108,140,1891,"2017",5,1,99,2,99,50,"BBC",NA +108,140,1892,"2017",6,1,50,2,50,1,"BBC",NA +108,140,1895,"2017",5,0,99,3,1,1,"BBC",NA +108,140,1897,"2017",2,1,1,2,1,1,"BBC",NA +108,140,1898,"2017",6,0,1,3,99,99,"BBC",NA +108,140,1899,"2017",6,0,99,2,1,1,"BBC",NA +108,140,1900,"2017",5,0,60,2,40,45,"BBC",NA +108,140,1902,"2017",2,0,1,2,99,99,"BBC",NA +108,140,1908,"2017",6,1,99,3,99,99,"BBC",NA +108,140,1912,"2017",3,0,90,3,10,99,"BBC",NA +108,140,1920,"2017",3,0,50,2,50,99,"BBC",NA +108,140,1923,"2017",3,0,99,3,1,1,"BBC",NA +108,140,1924,"2017",5,1,90,3,90,50,"BBC",NA +108,140,1926,"2017",6,1,99,3,99,99,"BBC",NA +108,140,1927,"2017",5,1,85,2,85,90,"BBC",NA +108,140,1928,"2017",3,1,95,2,95,95,"BBC",NA +108,140,1929,"2017",6,0,50,3,50,50,"BBC",NA +108,140,1930,"2017",6,0,80,2,20,NA,"BBC",NA +108,140,1931,"2017",6,0,50,3,50,50,"BBC",NA +108,140,1935,"2017",4,0,NA,3,NA,NA,"BBC",NA +108,140,1936,"2017",3,0,1,3,99,99,"BBC",NA +108,140,1937,"2017",2,1,99,2,99,99,"BBC",NA +108,140,1939,"2017",6,1,99,2,99,99,"BBC",NA +108,140,1945,"2017",6,0,99,2,1,1,"BBC",NA +108,140,1946,"2017",2,1,50,3,50,99,"BBC",NA +108,140,1948,"2017",6,0,90,3,10,10,"BBC",NA +108,140,1949,"2017",6,1,99,3,99,99,"BBC",NA +108,140,1950,"2017",3,0,50,3,50,1,"BBC",NA +108,140,1951,"2017",6,0,50,2,50,50,"BBC",NA +108,140,1952,"2017",6,1,99,3,99,99,"BBC",NA +108,140,1953,"2017",3,0,0,3,100,100,"BBC",NA +108,140,1960,"2017",5,0,1,3,99,99,"BBC",NA +108,140,1963,"2017",6,1,1,3,1,1,"BBC",NA +108,140,1968,"2017",6,0,50,2,50,50,"BBC",NA +108,140,1970,"2017",5,0,1,3,99,99,"BBC",NA +108,140,1972,"2017",2,1,50,2,50,99,"BBC",NA +108,140,1975,"2017",5,1,99,3,99,99,"BBC",NA +108,140,1979,"2017",5,0,99,2,1,NA,"BBC",NA +108,140,1981,"2017",5,1,50,2,50,50,"BBC",NA +108,140,1989,"2017",2,1,80,3,80,89,"BBC",NA +108,140,1990,"2017",6,0,50,2,50,50,"BBC",NA +108,140,1994,"2017",2,1,99,3,99,50,"BBC",NA +108,140,1996,"2017",3,0,99,3,1,99,"BBC",NA +108,140,1999,"2017",6,0,NA,3,NA,40,"BBC",NA +108,140,2000,"2017",5,1,90,3,90,80,"BBC",NA +108,140,2001,"2017",2,1,99,3,99,50,"BBC",NA +108,140,2002,"2017",6,1,99,2,99,99,"BBC",NA +108,140,2003,"2017",5,1,50,2,50,NA,"BBC",NA +108,140,2008,"2017",6,0,100,3,0,NA,"BBC",NA +108,140,2009,"2017",2,0,89,2,11,10,"BBC",NA +108,140,2010,"2017",2,1,90,2,90,80,"BBC",NA +108,140,2011,"2017",5,1,50,3,50,50,"BBC",NA +108,140,2018,"2017",2,1,100,2,100,100,"BBC",NA +108,140,2022,"2017",6,1,100,3,100,99,"BBC",NA +108,140,2023,"2017",6,1,99,2,99,99,"BBC",NA +108,140,2026,"2017",6,1,90,2,90,90,"BBC",NA +108,140,2027,"2017",6,0,2,2,98,98,"BBC",NA +108,140,2028,"2017",2,1,80,3,80,60,"BBC",NA +108,140,2029,"2017",2,0,NA,2,NA,NA,"BBC",NA +108,140,2030,"2017",3,1,50,2,50,50,"BBC",NA +108,140,2031,"2017",6,0,50,3,50,1,"BBC",NA +108,140,2034,"2017",5,0,99,2,1,1,"BBC",NA +108,140,2036,"2017",4,0,99,3,1,NA,"BBC",NA +108,140,2038,"2017",5,1,2,3,2,1,"BBC",NA +108,140,2040,"2017",2,0,80,3,20,70,"BBC",NA +108,140,2041,"2017",6,0,100,2,0,0,"BBC",NA +108,140,2050,"2017",5,0,50,2,50,NA,"BBC",NA +108,140,2051,"2017",6,1,90,3,90,80,"BBC",NA +108,140,2054,"2017",2,0,99,2,1,10,"BBC",NA +108,140,2056,"2017",3,0,50,2,50,50,"BBC",NA +108,140,2061,"2017",5,0,50,2,50,1,"BBC",NA +108,140,2064,"2017",3,1,1,2,1,NA,"BBC",NA +108,140,2065,"2017",5,1,99,2,99,99,"BBC",NA +108,140,2066,"2017",3,0,NA,2,NA,NA,"BBC",NA +108,140,2068,"2017",6,1,99,3,99,99,"BBC",NA +108,140,2069,"2017",6,0,1,2,99,99,"BBC",NA +108,140,2075,"2017",5,1,50,3,50,99,"BBC",NA +108,140,2076,"2017",3,0,99,2,1,1,"BBC",NA +108,140,2079,"2017",3,1,50,3,50,50,"BBC",NA +108,140,2083,"2017",5,1,99,2,99,90,"BBC",NA +108,140,2085,"2017",6,1,99,2,99,50,"BBC",NA +108,140,2089,"2017",5,0,NA,2,NA,NA,"BBC",NA +108,140,2096,"2017",6,1,50,3,50,1,"BBC",NA +108,140,2104,"2017",5,1,1,3,1,1,"BBC",NA +108,140,2105,"2017",2,0,50,3,50,NA,"BBC",NA +108,140,2110,"2017",6,0,50,2,50,50,"BBC",NA +108,140,2111,"2017",6,0,90,2,10,50,"BBC",NA +108,140,2112,"2017",5,0,50,3,50,50,"BBC",NA +108,140,2113,"2017",6,1,99,3,99,50,"BBC",NA +108,140,2114,"2017",6,1,99,2,99,NA,"BBC",NA +108,140,2116,"2017",5,1,1,2,1,99,"BBC",NA +108,140,2119,"2017",3,1,1,2,1,0,"BBC",NA +108,140,2121,"2017",6,0,99,3,1,1,"BBC",NA +108,140,2122,"2017",6,0,99,3,1,1,"BBC",NA +108,140,2130,"2017",5,0,90,3,10,20,"BBC",NA +108,140,2132,"2017",6,1,70,3,70,70,"BBC",NA +108,140,2133,"2017",2,1,1,2,1,NA,"BBC",NA +108,140,2134,"2017",6,1,2,2,2,2,"BBC",NA +109,NA,144,"2019",2,1,64,1,64,NA,NA,NA +109,NA,146,"2019",3,1,51,1,51,NA,NA,NA +109,NA,147,"2019",2,1,60,1,60,NA,NA,NA +109,NA,148,"2019",3,0,32,1,68,NA,NA,NA +109,NA,149,"2019",2,1,71,1,71,NA,NA,NA +109,NA,150,"2019",3,1,70,1,70,NA,NA,NA +109,NA,152,"2019",6,1,100,1,100,NA,NA,NA +109,NA,153,"2019",3,1,50,1,50,NA,NA,NA +109,NA,154,"2019",3,1,50,1,50,NA,NA,NA +109,NA,156,"2019",4,0,60,1,40,NA,NA,NA +109,NA,157,"2019",6,1,40,1,40,NA,NA,NA +109,NA,159,"2019",4,1,70,1,70,NA,NA,NA +109,NA,160,"2019",3,1,0,1,0,NA,NA,NA +109,NA,161,"2019",3,1,78,1,78,NA,NA,NA +109,NA,162,"2019",2,0,51,1,49,NA,NA,NA +109,NA,163,"2019",2,0,50,1,50,NA,NA,NA +109,NA,164,"2019",5,0,18,1,82,NA,NA,NA +109,NA,165,"2019",2,0,0,1,100,NA,NA,NA +109,NA,166,"2019",3,1,71,1,71,NA,NA,NA +109,NA,167,"2019",5,0,81,1,19,NA,NA,NA +109,NA,168,"2019",6,0,50,1,50,NA,NA,NA +109,NA,171,"2019",4,0,50,1,50,NA,NA,NA +109,NA,172,"2019",4,0,21,1,79,NA,NA,NA +109,NA,173,"2019",4,1,93,1,93,NA,NA,NA +109,NA,174,"2019",6,1,50,1,50,NA,NA,NA +109,NA,175,"2019",2,0,63,1,37,NA,NA,NA +109,NA,177,"2019",2,0,51,1,49,NA,NA,NA +109,NA,178,"2019",4,0,0,1,100,NA,NA,NA +109,NA,179,"2019",2,1,59,1,59,NA,NA,NA +109,NA,181,"2019",3,0,27,1,73,NA,NA,NA +109,NA,182,"2019",5,1,62,1,62,NA,NA,NA +109,NA,183,"2019",3,0,33,1,67,NA,NA,NA +109,NA,185,"2019",4,0,25,1,75,NA,NA,NA +109,NA,186,"2019",6,1,71,1,71,NA,NA,NA +109,NA,187,"2019",3,0,78,1,22,NA,NA,NA +109,NA,188,"2019",2,0,70,1,30,NA,NA,NA +109,NA,189,"2019",4,1,60,1,60,NA,NA,NA +109,NA,190,"2019",4,0,50,1,50,NA,NA,NA +109,NA,191,"2019",4,0,10,1,90,NA,NA,NA +109,NA,192,"2019",3,1,91,1,91,NA,NA,NA +109,NA,193,"2019",3,1,72,1,72,NA,NA,NA +109,NA,194,"2019",6,1,9,1,9,NA,NA,NA +109,NA,195,"2019",5,1,0,1,0,NA,NA,NA +109,NA,196,"2019",4,0,100,1,0,NA,NA,NA +109,NA,199,"2019",5,1,70,1,70,NA,NA,NA +109,NA,200,"2019",3,1,53,1,53,NA,NA,NA +109,NA,202,"2019",6,0,69,1,31,NA,NA,NA +109,NA,203,"2019",4,1,33,1,33,NA,NA,NA +109,NA,205,"2019",3,0,0,1,100,NA,NA,NA +109,NA,206,"2019",4,1,80,1,80,NA,NA,NA +109,NA,207,"2019",6,0,100,1,0,NA,NA,NA +109,NA,208,"2019",2,1,80,1,80,NA,NA,NA +109,NA,209,"2019",4,1,92,1,92,NA,NA,NA +109,NA,210,"2019",2,1,50,1,50,NA,NA,NA +109,NA,211,"2019",3,1,100,1,100,NA,NA,NA +109,NA,213,"2019",3,1,81,1,81,NA,NA,NA +109,NA,214,"2019",4,0,10,1,90,NA,NA,NA +109,NA,215,"2019",4,0,11,1,89,NA,NA,NA +109,NA,216,"2019",5,0,6,1,94,NA,NA,NA +109,NA,217,"2019",3,1,50,1,50,NA,NA,NA +109,NA,218,"2019",5,0,100,1,0,NA,NA,NA +109,NA,220,"2019",6,0,50,1,50,NA,NA,NA +109,NA,221,"2019",3,1,50,1,50,NA,NA,NA +109,NA,223,"2019",6,0,81,1,19,NA,NA,NA +109,NA,224,"2019",5,1,93,1,93,NA,NA,NA +109,NA,226,"2019",6,1,89,1,89,NA,NA,NA +109,NA,227,"2019",4,0,50,1,50,NA,NA,NA +109,NA,228,"2019",2,1,94,1,94,NA,NA,NA +109,NA,229,"2019",3,0,82,1,18,NA,NA,NA +109,NA,230,"2019",3,0,50,1,50,NA,NA,NA +109,NA,231,"2019",5,0,100,1,0,NA,NA,NA +109,NA,232,"2019",6,0,12,1,88,NA,NA,NA +109,NA,233,"2019",2,1,100,1,100,NA,NA,NA +109,NA,234,"2019",2,0,72,1,28,NA,NA,NA +109,NA,235,"2019",6,1,22,1,22,NA,NA,NA +109,NA,236,"2019",3,0,0,1,100,NA,NA,NA +109,NA,237,"2019",6,1,94,1,94,NA,NA,NA +109,NA,238,"2019",3,1,64,1,64,NA,NA,NA +109,NA,239,"2019",6,1,72,1,72,NA,NA,NA +109,NA,240,"2019",5,1,85,1,85,NA,NA,NA +109,NA,241,"2019",4,0,58,1,42,NA,NA,NA +109,NA,242,"2019",5,0,100,1,0,NA,NA,NA +109,NA,243,"2019",4,0,0,1,100,NA,NA,NA +109,NA,244,"2019",5,1,30,1,30,NA,NA,NA +109,NA,245,"2019",5,1,25,1,25,NA,NA,NA +109,NA,247,"2019",2,1,0,1,0,NA,NA,NA +109,NA,248,"2019",6,0,50,1,50,NA,NA,NA +109,NA,249,"2019",2,1,100,1,100,NA,NA,NA +109,NA,250,"2019",5,1,81,1,81,NA,NA,NA +109,NA,251,"2019",6,1,53,1,53,NA,NA,NA +109,NA,252,"2019",5,1,95,1,95,NA,NA,NA +109,NA,253,"2019",2,1,39,1,39,NA,NA,NA +109,NA,254,"2019",2,1,50,1,50,NA,NA,NA +109,NA,255,"2019",5,1,92,1,92,NA,NA,NA +109,NA,256,"2019",6,0,87,1,13,NA,NA,NA +109,NA,257,"2019",5,1,90,1,90,NA,NA,NA +109,NA,258,"2019",4,1,69,1,69,NA,NA,NA +109,NA,259,"2019",5,0,90,1,10,NA,NA,NA +109,NA,260,"2019",5,0,86,1,14,NA,NA,NA +109,NA,261,"2019",6,0,63,1,37,NA,NA,NA +109,NA,263,"2019",6,1,82,1,82,NA,NA,NA +109,NA,264,"2019",4,1,34,1,34,NA,NA,NA +109,NA,265,"2019",6,0,30,1,70,NA,NA,NA +109,NA,267,"2019",4,1,60,1,60,NA,NA,NA +109,NA,268,"2019",2,0,30,1,70,NA,NA,NA +109,NA,269,"2019",5,0,100,1,0,NA,NA,NA +109,NA,270,"2019",6,1,100,1,100,NA,NA,NA +109,NA,271,"2019",6,0,91,1,9,NA,NA,NA +109,NA,272,"2019",2,0,50,1,50,NA,NA,NA +109,NA,273,"2019",5,0,83,1,17,NA,NA,NA +109,NA,274,"2019",6,1,100,1,100,NA,NA,NA +109,NA,275,"2019",6,1,100,1,100,NA,NA,NA +109,NA,276,"2019",4,1,69,1,69,NA,NA,NA +109,NA,277,"2019",6,0,0,1,100,NA,NA,NA +109,NA,278,"2019",3,1,86,1,86,NA,NA,NA +109,NA,279,"2019",3,0,100,1,0,NA,NA,NA +109,NA,280,"2019",6,1,35,1,35,NA,NA,NA +109,NA,281,"2019",2,1,71,1,71,NA,NA,NA +109,NA,282,"2019",3,1,72,1,72,NA,NA,NA +109,NA,283,"2019",6,1,90,1,90,NA,NA,NA +109,NA,284,"2019",4,0,84,1,16,NA,NA,NA +109,NA,285,"2019",3,1,99,1,99,NA,NA,NA +109,NA,286,"2019",4,0,81,1,19,NA,NA,NA +109,NA,287,"2019",4,0,50,1,50,NA,NA,NA +109,NA,288,"2019",6,1,73,1,73,NA,NA,NA +109,NA,289,"2019",5,0,56,1,44,NA,NA,NA +109,NA,291,"2019",5,1,10,1,10,NA,NA,NA +109,NA,292,"2019",5,1,100,1,100,NA,NA,NA +109,NA,293,"2019",5,0,89,1,11,NA,NA,NA +109,NA,294,"2019",5,0,21,1,79,NA,NA,NA +109,NA,295,"2019",5,1,50,1,50,NA,NA,NA +109,NA,296,"2019",2,1,82,1,82,NA,NA,NA +109,NA,297,"2019",6,0,1,1,99,NA,NA,NA +109,NA,299,"2019",3,0,3,1,97,NA,NA,NA +109,NA,300,"2019",3,0,15,1,85,NA,NA,NA +109,NA,302,"2019",4,0,50,1,50,NA,NA,NA +109,NA,303,"2019",4,1,33,1,33,NA,NA,NA +109,NA,304,"2019",5,1,99,1,99,NA,NA,NA +109,NA,307,"2019",6,1,50,1,50,NA,NA,NA +109,NA,308,"2019",3,0,70,1,30,NA,NA,NA +109,NA,309,"2019",3,1,50,1,50,NA,NA,NA +109,NA,310,"2019",3,1,22,1,22,NA,NA,NA +109,NA,311,"2019",5,1,73,1,73,NA,NA,NA +109,NA,312,"2019",5,0,40,1,60,NA,NA,NA +109,NA,313,"2019",3,1,100,1,100,NA,NA,NA +109,NA,314,"2019",4,1,50,1,50,NA,NA,NA +109,NA,315,"2019",3,0,50,1,50,NA,NA,NA +109,NA,316,"2019",6,1,69,1,69,NA,NA,NA +109,NA,317,"2019",2,1,48,1,48,NA,NA,NA +109,NA,318,"2019",6,1,72,1,72,NA,NA,NA +109,NA,319,"2019",6,0,53,1,47,NA,NA,NA +109,NA,320,"2019",6,1,100,1,100,NA,NA,NA +109,NA,321,"2019",5,0,79,1,21,NA,NA,NA +109,NA,322,"2019",5,0,69,1,31,NA,NA,NA +109,NA,323,"2019",3,0,50,1,50,NA,NA,NA +109,NA,327,"2019",4,1,50,1,50,NA,NA,NA +109,NA,328,"2019",2,1,100,1,100,NA,NA,NA +109,NA,329,"2019",6,0,100,1,0,NA,NA,NA +109,NA,330,"2019",3,1,29,1,29,NA,NA,NA +109,NA,331,"2019",2,1,83,1,83,NA,NA,NA +109,NA,332,"2019",4,0,22,1,78,NA,NA,NA +109,NA,333,"2019",5,1,100,1,100,NA,NA,NA +109,NA,334,"2019",5,0,50,1,50,NA,NA,NA +109,NA,335,"2019",6,0,69,1,31,NA,NA,NA +109,NA,336,"2019",6,1,26,1,26,NA,NA,NA +109,NA,337,"2019",4,1,100,1,100,NA,NA,NA +109,NA,338,"2019",3,0,86,1,14,NA,NA,NA +109,NA,339,"2019",4,0,60,1,40,NA,NA,NA +109,NA,340,"2019",6,1,77,1,77,NA,NA,NA +109,NA,341,"2019",4,1,72,1,72,NA,NA,NA +109,NA,342,"2019",4,1,71,1,71,NA,NA,NA +109,NA,343,"2019",4,0,73,1,27,NA,NA,NA +109,NA,344,"2019",3,1,48,1,48,NA,NA,NA +109,NA,345,"2019",6,1,93,1,93,NA,NA,NA +109,NA,346,"2019",5,1,100,1,100,NA,NA,NA +109,NA,347,"2019",4,1,12,1,12,NA,NA,NA +109,NA,348,"2019",3,1,100,1,100,NA,NA,NA +109,NA,349,"2019",2,1,44,1,44,NA,NA,NA +109,NA,352,"2019",5,1,85,1,85,NA,NA,NA +109,NA,353,"2019",2,0,31,1,69,NA,NA,NA +109,NA,354,"2019",3,0,31,1,69,NA,NA,NA +109,NA,355,"2019",3,0,58,1,42,NA,NA,NA +109,NA,356,"2019",5,0,50,1,50,NA,NA,NA +109,NA,357,"2019",2,1,72,1,72,NA,NA,NA +109,NA,358,"2019",2,1,53,1,53,NA,NA,NA +109,NA,359,"2019",2,0,34,1,66,NA,NA,NA +109,NA,361,"2019",4,0,50,1,50,NA,NA,NA +109,NA,362,"2019",3,1,65,1,65,NA,NA,NA +109,NA,367,"2019",5,0,74,1,26,NA,NA,NA +109,NA,368,"2019",5,1,76,1,76,NA,NA,NA +109,NA,369,"2019",3,1,70,1,70,NA,NA,NA +109,NA,370,"2019",4,1,23,1,23,NA,NA,NA +109,NA,371,"2019",6,1,86,1,86,NA,NA,NA +109,NA,374,"2019",6,1,100,1,100,NA,NA,NA +109,NA,375,"2019",5,1,50,1,50,NA,NA,NA +109,NA,376,"2019",5,1,100,1,100,NA,NA,NA +109,NA,377,"2019",6,0,35,1,65,NA,NA,NA +109,NA,378,"2019",5,1,63,1,63,NA,NA,NA +109,NA,379,"2019",2,1,100,1,100,NA,NA,NA +109,NA,381,"2019",4,1,80,1,80,NA,NA,NA +109,NA,382,"2019",3,0,50,1,50,NA,NA,NA +109,NA,383,"2019",6,1,100,1,100,NA,NA,NA +109,NA,384,"2019",5,0,80,1,20,NA,NA,NA +109,NA,385,"2019",4,0,100,1,0,NA,NA,NA +109,NA,386,"2019",5,0,81,1,19,NA,NA,NA +109,NA,387,"2019",3,1,90,1,90,NA,NA,NA +109,NA,389,"2019",3,0,51,1,49,NA,NA,NA +109,NA,390,"2019",2,1,100,1,100,NA,NA,NA +109,NA,391,"2019",5,0,50,1,50,NA,NA,NA +109,NA,392,"2019",6,1,50,1,50,NA,NA,NA +109,NA,393,"2019",5,0,95,1,5,NA,NA,NA +109,NA,394,"2019",6,1,80,1,80,NA,NA,NA +109,NA,396,"2019",3,1,50,1,50,NA,NA,NA +109,NA,399,"2019",6,0,85,1,15,NA,NA,NA +109,NA,400,"2019",3,0,47,1,53,NA,NA,NA +109,NA,401,"2019",3,1,38,1,38,NA,NA,NA +109,NA,402,"2019",3,1,50,1,50,NA,NA,NA +109,NA,404,"2019",4,0,46,1,54,NA,NA,NA +109,NA,405,"2019",6,0,73,1,27,NA,NA,NA +109,NA,406,"2019",4,0,71,1,29,NA,NA,NA +109,NA,407,"2019",6,1,0,1,0,NA,NA,NA +109,NA,408,"2019",5,0,50,1,50,NA,NA,NA +109,NA,409,"2019",4,0,61,1,39,NA,NA,NA +109,NA,413,"2019",5,0,50,1,50,NA,NA,NA +109,NA,414,"2019",3,0,50,1,50,NA,NA,NA +109,NA,415,"2019",3,0,50,1,50,NA,NA,NA +109,NA,416,"2019",2,1,50,1,50,NA,NA,NA +109,NA,417,"2019",6,1,27,1,27,NA,NA,NA +109,NA,418,"2019",6,0,50,1,50,NA,NA,NA +109,NA,419,"2019",4,1,71,1,71,NA,NA,NA +109,NA,420,"2019",2,0,45,1,55,NA,NA,NA +109,NA,422,"2019",4,1,50,1,50,NA,NA,NA +109,NA,423,"2019",4,0,61,1,39,NA,NA,NA +109,NA,424,"2019",5,0,79,1,21,NA,NA,NA +109,NA,425,"2019",4,1,96,1,96,NA,NA,NA +109,NA,427,"2019",6,1,100,1,100,NA,NA,NA +109,NA,428,"2019",5,0,27,1,73,NA,NA,NA +109,NA,429,"2019",2,1,45,1,45,NA,NA,NA +109,NA,430,"2019",2,1,55,1,55,NA,NA,NA +109,NA,431,"2019",3,0,44,1,56,NA,NA,NA +109,NA,432,"2019",5,1,95,1,95,NA,NA,NA +109,NA,433,"2019",4,0,50,1,50,NA,NA,NA +109,NA,434,"2019",5,1,66,1,66,NA,NA,NA +109,NA,435,"2019",3,1,50,1,50,NA,NA,NA +109,NA,436,"2019",5,0,55,1,45,NA,NA,NA +109,NA,437,"2019",5,0,50,1,50,NA,NA,NA +109,NA,438,"2019",2,1,96,1,96,NA,NA,NA +109,NA,440,"2019",2,0,24,1,76,NA,NA,NA +109,NA,441,"2019",3,0,50,1,50,NA,NA,NA +109,NA,442,"2019",6,1,75,1,75,NA,NA,NA +109,NA,443,"2019",2,0,41,1,59,NA,NA,NA +109,NA,444,"2019",2,1,100,1,100,NA,NA,NA +109,NA,445,"2019",6,0,82,1,18,NA,NA,NA +109,NA,446,"2019",3,0,100,1,0,NA,NA,NA +109,NA,447,"2019",6,0,68,1,32,NA,NA,NA +109,NA,449,"2019",4,0,0,1,100,NA,NA,NA +109,NA,450,"2019",6,0,0,1,100,NA,NA,NA +109,NA,451,"2019",5,1,20,1,20,NA,NA,NA +109,NA,452,"2019",6,0,81,1,19,NA,NA,NA +109,NA,453,"2019",2,0,50,1,50,NA,NA,NA +109,NA,454,"2019",5,0,94,1,6,NA,NA,NA +109,NA,455,"2019",6,0,18,1,82,NA,NA,NA +109,NA,456,"2019",5,1,50,1,50,NA,NA,NA +109,NA,457,"2019",3,1,64,1,64,NA,NA,NA +109,NA,460,"2019",2,0,87,1,13,NA,NA,NA +109,NA,462,"2019",6,0,23,1,77,NA,NA,NA +109,NA,465,"2019",5,0,62,1,38,NA,NA,NA +109,NA,467,"2019",4,1,100,1,100,NA,NA,NA +109,NA,469,"2019",2,1,81,1,81,NA,NA,NA +109,NA,470,"2019",4,1,50,1,50,NA,NA,NA +109,NA,472,"2019",5,0,50,1,50,NA,NA,NA +109,NA,473,"2019",2,1,100,1,100,NA,NA,NA +109,NA,474,"2019",6,0,44,1,56,NA,NA,NA +109,NA,475,"2019",3,0,63,1,37,NA,NA,NA +109,NA,476,"2019",3,0,44,1,56,NA,NA,NA +109,NA,477,"2019",5,1,90,1,90,NA,NA,NA +109,NA,478,"2019",5,1,26,1,26,NA,NA,NA +109,NA,479,"2019",4,0,50,1,50,NA,NA,NA +109,NA,480,"2019",3,0,68,1,32,NA,NA,NA +109,NA,482,"2019",4,0,55,1,45,NA,NA,NA +109,NA,483,"2019",2,0,50,1,50,NA,NA,NA +109,NA,484,"2019",4,1,61,1,61,NA,NA,NA +109,NA,485,"2019",2,0,77,1,23,NA,NA,NA +109,NA,487,"2019",5,0,38,1,62,NA,NA,NA +109,NA,488,"2019",2,0,50,1,50,NA,NA,NA +109,NA,489,"2019",4,1,59,1,59,NA,NA,NA +109,NA,490,"2019",5,1,50,1,50,NA,NA,NA +109,NA,491,"2019",5,0,50,1,50,NA,NA,NA +109,NA,492,"2019",3,1,62,1,62,NA,NA,NA +109,NA,493,"2019",4,1,27,1,27,NA,NA,NA +109,NA,494,"2019",2,0,82,1,18,NA,NA,NA +109,NA,495,"2019",2,1,38,1,38,NA,NA,NA +109,NA,496,"2019",2,0,39,1,61,NA,NA,NA +109,NA,497,"2019",5,1,65,1,65,NA,NA,NA +109,NA,498,"2019",5,1,86,1,86,NA,NA,NA +109,NA,500,"2019",2,1,100,1,100,NA,NA,NA +109,NA,502,"2019",5,0,89,1,11,NA,NA,NA +109,NA,504,"2019",3,1,39,1,39,NA,NA,NA +109,NA,506,"2019",5,0,29,1,71,NA,NA,NA +109,NA,507,"2019",4,0,24,1,76,NA,NA,NA +109,NA,508,"2019",4,1,70,1,70,NA,NA,NA +109,NA,509,"2019",2,0,68,1,32,NA,NA,NA +109,NA,510,"2019",4,1,85,1,85,NA,NA,NA +109,NA,511,"2019",4,1,85,1,85,NA,NA,NA +109,NA,512,"2019",2,0,50,1,50,NA,NA,NA +109,NA,514,"2019",3,0,72,1,28,NA,NA,NA +109,NA,515,"2019",5,1,69,1,69,NA,NA,NA +109,NA,516,"2019",3,0,50,1,50,NA,NA,NA +109,NA,518,"2019",3,1,62,1,62,NA,NA,NA +109,NA,519,"2019",5,0,50,1,50,NA,NA,NA +109,NA,520,"2019",4,1,41,1,41,NA,NA,NA +109,NA,521,"2019",5,1,75,1,75,NA,NA,NA +109,NA,522,"2019",5,0,50,1,50,NA,NA,NA +109,NA,523,"2019",2,1,33,1,33,NA,NA,NA +109,NA,524,"2019",4,0,53,1,47,NA,NA,NA +109,NA,525,"2019",5,1,63,1,63,NA,NA,NA +109,NA,526,"2019",2,1,79,1,79,NA,NA,NA +109,NA,528,"2019",6,0,70,1,30,NA,NA,NA +109,NA,529,"2019",2,0,5,1,95,NA,NA,NA +109,NA,531,"2019",3,1,34,1,34,NA,NA,NA +109,NA,532,"2019",4,0,100,1,0,NA,NA,NA +109,NA,534,"2019",2,0,73,1,27,NA,NA,NA +109,NA,535,"2019",2,0,73,1,27,NA,NA,NA +109,NA,536,"2019",2,1,87,1,87,NA,NA,NA +109,NA,537,"2019",4,0,65,1,35,NA,NA,NA +109,NA,538,"2019",6,1,60,1,60,NA,NA,NA +109,NA,539,"2019",4,0,95,1,5,NA,NA,NA +109,NA,541,"2019",5,0,62,1,38,NA,NA,NA +109,NA,542,"2019",4,1,68,1,68,NA,NA,NA +109,NA,543,"2019",4,0,62,1,38,NA,NA,NA +109,NA,544,"2019",2,0,31,1,69,NA,NA,NA +109,NA,545,"2019",5,0,54,1,46,NA,NA,NA +109,NA,546,"2019",4,1,66,1,66,NA,NA,NA +109,NA,547,"2019",2,0,50,1,50,NA,NA,NA +109,NA,549,"2019",3,0,50,1,50,NA,NA,NA +109,NA,551,"2019",4,0,68,1,32,NA,NA,NA +109,NA,553,"2019",2,1,36,1,36,NA,NA,NA +109,NA,554,"2019",3,0,57,1,43,NA,NA,NA +109,NA,555,"2019",4,1,68,1,68,NA,NA,NA +109,NA,556,"2019",5,1,99,1,99,NA,NA,NA +109,NA,557,"2019",6,1,96,1,96,NA,NA,NA +109,NA,558,"2019",3,0,33,1,67,NA,NA,NA +109,NA,559,"2019",2,0,50,1,50,NA,NA,NA +109,NA,560,"2019",6,0,25,1,75,NA,NA,NA +109,NA,561,"2019",3,1,61,1,61,NA,NA,NA +109,NA,562,"2019",6,0,27,1,73,NA,NA,NA +109,NA,563,"2019",2,1,78,1,78,NA,NA,NA +109,NA,564,"2019",2,0,80,1,20,NA,NA,NA +109,NA,565,"2019",6,1,42,1,42,NA,NA,NA +109,NA,566,"2019",3,1,30,1,30,NA,NA,NA +109,NA,567,"2019",4,1,93,1,93,NA,NA,NA +109,NA,568,"2019",5,0,53,1,47,NA,NA,NA +109,NA,570,"2019",3,1,100,1,100,NA,NA,NA +109,NA,571,"2019",2,1,49,1,49,NA,NA,NA +109,NA,573,"2019",2,1,100,1,100,NA,NA,NA +109,NA,574,"2019",6,0,29,1,71,NA,NA,NA +109,NA,575,"2019",2,1,100,1,100,NA,NA,NA +109,NA,576,"2019",4,0,0,1,100,NA,NA,NA +109,NA,577,"2019",4,1,50,1,50,NA,NA,NA +109,NA,579,"2019",3,1,27,1,27,NA,NA,NA +109,NA,580,"2019",5,1,51,1,51,NA,NA,NA +109,NA,581,"2019",5,1,74,1,74,NA,NA,NA +109,NA,582,"2019",6,0,41,1,59,NA,NA,NA +109,NA,583,"2019",4,1,36,1,36,NA,NA,NA +109,NA,585,"2019",3,0,50,1,50,NA,NA,NA +109,NA,586,"2019",2,1,50,1,50,NA,NA,NA +109,NA,587,"2019",6,0,50,1,50,NA,NA,NA +109,NA,588,"2019",2,0,62,1,38,NA,NA,NA +109,NA,591,"2019",6,0,69,1,31,NA,NA,NA +109,NA,592,"2019",4,0,80,1,20,NA,NA,NA +109,NA,593,"2019",5,1,36,1,36,NA,NA,NA +109,NA,594,"2019",3,1,68,1,68,NA,NA,NA +109,NA,595,"2019",4,0,100,1,0,NA,NA,NA +109,NA,596,"2019",6,0,50,1,50,NA,NA,NA +109,NA,597,"2019",6,0,62,1,38,NA,NA,NA +109,NA,598,"2019",5,0,50,1,50,NA,NA,NA +109,NA,600,"2019",2,1,71,1,71,NA,NA,NA +109,NA,601,"2019",2,0,71,1,29,NA,NA,NA +109,NA,602,"2019",4,1,70,1,70,NA,NA,NA +109,NA,603,"2019",2,1,69,1,69,NA,NA,NA +109,NA,604,"2019",4,0,41,1,59,NA,NA,NA +109,NA,605,"2019",3,0,59,1,41,NA,NA,NA +109,NA,606,"2019",5,0,51,1,49,NA,NA,NA +109,NA,607,"2019",3,0,69,1,31,NA,NA,NA +109,NA,608,"2019",4,0,25,1,75,NA,NA,NA +109,NA,609,"2019",4,1,50,1,50,NA,NA,NA +109,NA,610,"2019",2,0,65,1,35,NA,NA,NA +109,NA,611,"2019",4,0,50,1,50,NA,NA,NA +109,NA,612,"2019",2,0,40,1,60,NA,NA,NA +109,NA,613,"2019",4,0,37,1,63,NA,NA,NA +109,NA,614,"2019",3,1,50,1,50,NA,NA,NA +109,NA,616,"2019",4,1,30,1,30,NA,NA,NA +109,NA,617,"2019",3,1,42,1,42,NA,NA,NA +109,NA,618,"2019",5,0,50,1,50,NA,NA,NA +109,NA,619,"2019",2,1,45,1,45,NA,NA,NA +109,NA,620,"2019",4,1,0,1,0,NA,NA,NA +109,NA,621,"2019",5,1,98,1,98,NA,NA,NA +109,NA,622,"2019",3,1,50,1,50,NA,NA,NA +109,NA,624,"2019",2,0,50,1,50,NA,NA,NA +109,NA,626,"2019",6,1,3,1,3,NA,NA,NA +109,NA,627,"2019",3,0,100,1,0,NA,NA,NA +109,NA,629,"2019",5,0,94,1,6,NA,NA,NA +109,NA,630,"2019",5,0,100,1,0,NA,NA,NA +109,NA,631,"2019",5,0,72,1,28,NA,NA,NA +109,NA,632,"2019",5,0,78,1,22,NA,NA,NA +109,NA,633,"2019",5,0,50,1,50,NA,NA,NA +109,NA,634,"2019",6,1,50,1,50,NA,NA,NA +109,NA,635,"2019",2,0,100,1,0,NA,NA,NA +109,NA,636,"2019",3,1,62,1,62,NA,NA,NA +109,NA,637,"2019",4,0,50,1,50,NA,NA,NA +109,NA,640,"2019",5,1,87,1,87,NA,NA,NA +109,NA,641,"2019",6,0,67,1,33,NA,NA,NA +109,NA,642,"2019",5,0,66,1,34,NA,NA,NA +109,NA,644,"2019",6,1,50,1,50,NA,NA,NA +109,NA,646,"2019",4,0,42,1,58,NA,NA,NA +109,NA,648,"2019",3,0,50,1,50,NA,NA,NA +109,NA,649,"2019",5,1,100,1,100,NA,NA,NA +109,NA,650,"2019",3,1,88,1,88,NA,NA,NA +109,NA,652,"2019",4,0,91,1,9,NA,NA,NA +109,NA,653,"2019",3,0,100,1,0,NA,NA,NA +109,NA,654,"2019",6,1,100,1,100,NA,NA,NA +109,NA,655,"2019",4,1,100,1,100,NA,NA,NA +109,NA,656,"2019",6,0,51,1,49,NA,NA,NA +109,NA,657,"2019",5,0,91,1,9,NA,NA,NA +109,NA,658,"2019",6,0,25,1,75,NA,NA,NA +109,NA,659,"2019",3,1,100,1,100,NA,NA,NA +109,NA,660,"2019",4,0,85,1,15,NA,NA,NA +109,NA,661,"2019",3,1,61,1,61,NA,NA,NA +109,NA,662,"2019",6,0,22,1,78,NA,NA,NA +109,NA,663,"2019",6,1,91,1,91,NA,NA,NA +109,NA,664,"2019",5,0,9,1,91,NA,NA,NA +109,NA,665,"2019",5,1,50,1,50,NA,NA,NA +109,NA,666,"2019",2,0,100,1,0,NA,NA,NA +109,NA,667,"2019",5,0,50,1,50,NA,NA,NA +109,NA,668,"2019",3,0,0,1,100,NA,NA,NA +109,NA,669,"2019",2,1,50,1,50,NA,NA,NA +109,NA,670,"2019",4,1,50,1,50,NA,NA,NA +109,NA,671,"2019",2,1,100,1,100,NA,NA,NA +109,NA,672,"2019",5,0,100,1,0,NA,NA,NA +109,NA,673,"2019",2,0,0,1,100,NA,NA,NA +109,NA,674,"2019",5,1,89,1,89,NA,NA,NA +109,NA,676,"2019",3,0,75,1,25,NA,NA,NA +109,NA,677,"2019",3,1,50,1,50,NA,NA,NA +109,NA,678,"2019",5,1,50,1,50,NA,NA,NA +109,NA,680,"2019",2,0,58,1,42,NA,NA,NA +109,NA,681,"2019",4,0,41,1,59,NA,NA,NA +109,NA,682,"2019",3,1,50,1,50,NA,NA,NA +109,NA,683,"2019",4,0,9,1,91,NA,NA,NA +109,NA,684,"2019",2,1,73,1,73,NA,NA,NA +109,NA,685,"2019",6,0,29,1,71,NA,NA,NA +109,NA,686,"2019",3,0,100,1,0,NA,NA,NA +109,NA,688,"2019",4,1,89,1,89,NA,NA,NA +109,NA,689,"2019",5,0,100,1,0,NA,NA,NA +109,NA,690,"2019",4,1,12,1,12,NA,NA,NA +109,NA,691,"2019",2,0,65,1,35,NA,NA,NA +109,NA,693,"2019",6,1,0,1,0,NA,NA,NA +109,NA,696,"2019",6,0,100,1,0,NA,NA,NA +109,NA,697,"2019",3,0,50,1,50,NA,NA,NA +109,NA,698,"2019",5,0,0,1,100,NA,NA,NA +109,NA,699,"2019",4,1,81,1,81,NA,NA,NA +109,NA,700,"2019",4,1,0,1,0,NA,NA,NA +109,NA,701,"2019",6,0,28,1,72,NA,NA,NA +109,NA,702,"2019",3,1,37,1,37,NA,NA,NA +109,NA,703,"2019",4,0,0,1,100,NA,NA,NA +109,NA,704,"2019",2,0,0,1,100,NA,NA,NA +109,NA,705,"2019",2,1,85,1,85,NA,NA,NA +109,NA,706,"2019",3,1,100,1,100,NA,NA,NA +109,NA,707,"2019",6,1,100,1,100,NA,NA,NA +109,NA,708,"2019",2,0,71,1,29,NA,NA,NA +109,NA,709,"2019",4,0,0,1,100,NA,NA,NA +109,NA,710,"2019",3,1,13,1,13,NA,NA,NA +109,NA,711,"2019",4,1,99,1,99,NA,NA,NA +109,NA,712,"2019",5,1,50,1,50,NA,NA,NA +109,NA,713,"2019",6,1,50,1,50,NA,NA,NA +109,NA,714,"2019",3,1,50,1,50,NA,NA,NA +109,NA,715,"2019",6,1,66,1,66,NA,NA,NA +109,NA,716,"2019",6,1,50,1,50,NA,NA,NA +109,NA,717,"2019",3,1,50,1,50,NA,NA,NA +109,NA,718,"2019",5,1,40,1,40,NA,NA,NA +109,NA,719,"2019",6,0,50,1,50,NA,NA,NA +109,NA,720,"2019",6,1,100,1,100,NA,NA,NA +109,NA,721,"2019",2,1,100,1,100,NA,NA,NA +109,NA,722,"2019",3,1,40,1,40,NA,NA,NA +109,NA,723,"2019",3,1,49,1,49,NA,NA,NA +109,NA,724,"2019",5,0,70,1,30,NA,NA,NA +109,NA,725,"2019",5,1,100,1,100,NA,NA,NA +109,NA,726,"2019",5,1,89,1,89,NA,NA,NA +109,NA,727,"2019",3,0,20,1,80,NA,NA,NA +109,NA,728,"2019",6,0,50,1,50,NA,NA,NA +109,NA,729,"2019",6,1,1,1,1,NA,NA,NA +109,NA,730,"2019",6,0,50,1,50,NA,NA,NA +109,NA,731,"2019",6,0,56,1,44,NA,NA,NA +109,NA,732,"2019",3,0,50,1,50,NA,NA,NA +109,NA,733,"2019",2,0,45,1,55,NA,NA,NA +109,NA,736,"2019",4,1,90,1,90,NA,NA,NA +109,NA,737,"2019",6,1,50,1,50,NA,NA,NA +109,NA,738,"2019",2,0,50,1,50,NA,NA,NA +109,NA,739,"2019",4,1,50,1,50,NA,NA,NA +109,NA,740,"2019",2,0,50,1,50,NA,NA,NA +109,NA,741,"2019",3,0,50,1,50,NA,NA,NA +109,NA,742,"2019",5,1,0,1,0,NA,NA,NA +109,NA,744,"2019",6,1,91,1,91,NA,NA,NA +109,NA,745,"2019",2,1,85,1,85,NA,NA,NA +109,NA,746,"2019",2,0,16,1,84,NA,NA,NA +109,NA,749,"2019",2,0,50,1,50,NA,NA,NA +109,NA,750,"2019",6,0,100,1,0,NA,NA,NA +109,NA,751,"2019",6,1,50,1,50,NA,NA,NA +109,NA,752,"2019",2,0,46,1,54,NA,NA,NA +109,NA,753,"2019",5,0,9,1,91,NA,NA,NA +109,NA,754,"2019",6,0,39,1,61,NA,NA,NA +109,NA,755,"2019",3,1,95,1,95,NA,NA,NA +109,NA,756,"2019",3,0,25,1,75,NA,NA,NA +109,NA,757,"2019",2,0,0,1,100,NA,NA,NA +109,NA,759,"2019",4,1,50,1,50,NA,NA,NA +109,NA,761,"2019",4,1,75,1,75,NA,NA,NA +109,NA,763,"2019",6,1,50,1,50,NA,NA,NA +109,NA,764,"2019",6,0,2,1,98,NA,NA,NA +109,NA,765,"2019",2,1,100,1,100,NA,NA,NA +109,NA,766,"2019",3,1,70,1,70,NA,NA,NA +109,NA,767,"2019",4,1,100,1,100,NA,NA,NA +109,NA,769,"2019",2,0,37,1,63,NA,NA,NA +109,NA,770,"2019",5,0,50,1,50,NA,NA,NA +109,NA,772,"2019",6,0,100,1,0,NA,NA,NA +109,NA,773,"2019",2,0,47,1,53,NA,NA,NA +109,NA,775,"2019",4,0,55,1,45,NA,NA,NA +109,NA,776,"2019",2,1,80,1,80,NA,NA,NA +109,NA,777,"2019",6,0,50,1,50,NA,NA,NA +109,NA,778,"2019",4,0,0,1,100,NA,NA,NA +109,NA,779,"2019",3,1,50,1,50,NA,NA,NA +109,NA,780,"2019",6,1,92,1,92,NA,NA,NA +109,NA,782,"2019",4,1,50,1,50,NA,NA,NA +109,NA,783,"2019",4,1,80,1,80,NA,NA,NA +109,NA,785,"2019",4,0,50,1,50,NA,NA,NA +109,NA,786,"2019",2,1,50,1,50,NA,NA,NA +109,NA,788,"2019",6,0,22,1,78,NA,NA,NA +109,NA,790,"2019",6,1,100,1,100,NA,NA,NA +109,NA,791,"2019",4,0,79,1,21,NA,NA,NA +109,NA,793,"2019",6,0,89,1,11,NA,NA,NA +109,NA,795,"2019",3,0,93,1,7,NA,NA,NA +109,NA,796,"2019",4,0,32,1,68,NA,NA,NA +109,NA,797,"2019",3,1,100,1,100,NA,NA,NA +109,NA,801,"2019",3,1,50,1,50,NA,NA,NA +109,NA,802,"2019",5,0,100,1,0,NA,NA,NA +109,NA,803,"2019",5,1,100,1,100,NA,NA,NA +109,NA,804,"2019",3,0,50,1,50,NA,NA,NA +109,NA,805,"2019",5,0,50,1,50,NA,NA,NA +109,NA,806,"2019",3,0,0,1,100,NA,NA,NA +109,NA,807,"2019",6,0,0,1,100,NA,NA,NA +109,NA,808,"2019",5,1,0,1,0,NA,NA,NA +109,NA,809,"2019",5,0,0,1,100,NA,NA,NA +109,NA,810,"2019",5,0,48,1,52,NA,NA,NA +109,NA,811,"2019",4,0,100,1,0,NA,NA,NA +109,NA,813,"2019",4,1,93,1,93,NA,NA,NA +109,NA,814,"2019",3,1,100,1,100,NA,NA,NA +109,NA,815,"2019",3,0,0,1,100,NA,NA,NA +109,NA,817,"2019",4,0,79,1,21,NA,NA,NA +109,NA,818,"2019",3,1,49,1,49,NA,NA,NA +109,NA,819,"2019",5,0,0,1,100,NA,NA,NA +109,NA,820,"2019",4,1,50,1,50,NA,NA,NA +109,NA,821,"2019",3,0,49,1,51,NA,NA,NA +109,NA,822,"2019",6,1,50,1,50,NA,NA,NA +109,NA,823,"2019",2,0,79,1,21,NA,NA,NA +109,NA,824,"2019",6,1,87,1,87,NA,NA,NA +109,NA,825,"2019",6,1,50,1,50,NA,NA,NA +109,NA,826,"2019",5,0,100,1,0,NA,NA,NA +109,NA,827,"2019",5,0,91,1,9,NA,NA,NA +109,NA,828,"2019",6,0,100,1,0,NA,NA,NA +109,NA,829,"2019",3,0,61,1,39,NA,NA,NA +109,NA,830,"2019",2,1,100,1,100,NA,NA,NA +109,NA,832,"2019",6,1,100,1,100,NA,NA,NA +109,NA,833,"2019",6,1,1,1,1,NA,NA,NA +109,NA,834,"2019",3,0,100,1,0,NA,NA,NA +109,NA,835,"2019",3,1,41,1,41,NA,NA,NA +109,NA,836,"2019",3,1,100,1,100,NA,NA,NA +109,NA,838,"2019",6,0,16,1,84,NA,NA,NA +109,NA,839,"2019",6,1,65,1,65,NA,NA,NA +109,NA,840,"2019",6,1,0,1,0,NA,NA,NA +109,NA,843,"2019",6,0,100,1,0,NA,NA,NA +109,NA,844,"2019",3,0,17,1,83,NA,NA,NA +109,NA,845,"2019",5,0,50,1,50,NA,NA,NA +109,NA,846,"2019",4,1,100,1,100,NA,NA,NA +109,NA,847,"2019",4,1,100,1,100,NA,NA,NA +109,NA,848,"2019",2,1,93,1,93,NA,NA,NA +109,NA,849,"2019",6,0,100,1,0,NA,NA,NA +109,NA,850,"2019",3,1,50,1,50,NA,NA,NA +109,NA,851,"2019",2,1,91,1,91,NA,NA,NA +109,NA,853,"2019",3,0,71,1,29,NA,NA,NA +109,NA,854,"2019",6,1,90,1,90,NA,NA,NA +109,NA,855,"2019",3,1,50,1,50,NA,NA,NA +109,NA,856,"2019",3,0,89,1,11,NA,NA,NA +109,NA,857,"2019",5,1,0,1,0,NA,NA,NA +109,NA,858,"2019",2,0,21,1,79,NA,NA,NA +109,NA,859,"2019",6,1,91,1,91,NA,NA,NA +109,NA,860,"2019",4,1,62,1,62,NA,NA,NA +109,NA,861,"2019",3,1,50,1,50,NA,NA,NA +109,NA,862,"2019",4,1,81,1,81,NA,NA,NA +109,NA,863,"2019",4,1,80,1,80,NA,NA,NA +109,NA,864,"2019",3,0,32,1,68,NA,NA,NA +109,NA,865,"2019",6,0,6,1,94,NA,NA,NA +109,NA,866,"2019",4,0,4,1,96,NA,NA,NA +109,NA,868,"2019",4,1,100,1,100,NA,NA,NA +109,NA,871,"2019",4,0,39,1,61,NA,NA,NA +109,NA,872,"2019",3,1,50,1,50,NA,NA,NA +109,NA,873,"2019",2,0,0,1,100,NA,NA,NA +109,NA,874,"2019",4,1,96,1,96,NA,NA,NA +109,NA,875,"2019",2,1,51,1,51,NA,NA,NA +109,NA,877,"2019",5,0,23,1,77,NA,NA,NA +109,NA,878,"2019",4,1,50,1,50,NA,NA,NA +109,NA,879,"2019",6,0,0,1,100,NA,NA,NA +109,NA,880,"2019",6,1,73,1,73,NA,NA,NA +109,NA,882,"2019",4,1,50,1,50,NA,NA,NA +109,NA,883,"2019",5,1,7,1,7,NA,NA,NA +109,NA,884,"2019",6,1,50,1,50,NA,NA,NA +109,NA,885,"2019",4,1,50,1,50,NA,NA,NA +109,NA,886,"2019",6,1,97,1,97,NA,NA,NA +109,NA,887,"2019",5,1,100,1,100,NA,NA,NA +109,NA,889,"2019",2,1,100,1,100,NA,NA,NA +109,NA,890,"2019",6,1,88,1,88,NA,NA,NA +109,NA,892,"2019",6,0,100,1,0,NA,NA,NA +109,NA,893,"2019",2,1,50,1,50,NA,NA,NA +109,NA,894,"2019",2,0,60,1,40,NA,NA,NA +109,NA,895,"2019",3,0,51,1,49,NA,NA,NA +109,NA,896,"2019",3,1,92,1,92,NA,NA,NA +109,NA,898,"2019",2,1,92,1,92,NA,NA,NA +109,NA,899,"2019",6,1,100,1,100,NA,NA,NA +109,NA,900,"2019",3,0,26,1,74,NA,NA,NA +109,NA,901,"2019",2,0,72,1,28,NA,NA,NA +109,NA,902,"2019",2,0,50,1,50,NA,NA,NA +109,NA,903,"2019",2,1,50,1,50,NA,NA,NA +109,NA,904,"2019",3,0,59,1,41,NA,NA,NA +109,NA,905,"2019",6,0,30,1,70,NA,NA,NA +109,NA,906,"2019",2,0,71,1,29,NA,NA,NA +109,NA,907,"2019",4,0,41,1,59,NA,NA,NA +109,NA,908,"2019",4,1,100,1,100,NA,NA,NA +109,NA,909,"2019",4,0,32,1,68,NA,NA,NA +109,NA,910,"2019",4,1,73,1,73,NA,NA,NA +109,NA,912,"2019",3,0,1,1,99,NA,NA,NA +109,NA,913,"2019",3,1,69,1,69,NA,NA,NA +109,NA,914,"2019",4,1,99,1,99,NA,NA,NA +109,NA,917,"2019",3,1,72,1,72,NA,NA,NA +109,NA,918,"2019",3,1,99,1,99,NA,NA,NA +109,NA,919,"2019",5,1,81,1,81,NA,NA,NA +109,NA,920,"2019",6,0,65,1,35,NA,NA,NA +109,NA,922,"2019",2,0,12,1,88,NA,NA,NA +109,NA,924,"2019",3,1,92,1,92,NA,NA,NA +109,NA,925,"2019",2,0,50,1,50,NA,NA,NA +109,NA,926,"2019",6,0,12,1,88,NA,NA,NA +109,NA,927,"2019",2,0,0,1,100,NA,NA,NA +109,NA,928,"2019",4,0,8,1,92,NA,NA,NA +109,NA,929,"2019",3,0,71,1,29,NA,NA,NA +109,NA,930,"2019",5,0,15,1,85,NA,NA,NA +109,NA,932,"2019",2,1,50,1,50,NA,NA,NA +109,NA,933,"2019",5,1,98,1,98,NA,NA,NA +109,NA,934,"2019",3,0,20,1,80,NA,NA,NA +109,NA,936,"2019",6,1,100,1,100,NA,NA,NA +109,NA,938,"2019",5,0,50,1,50,NA,NA,NA +109,NA,939,"2019",2,1,74,1,74,NA,NA,NA +109,NA,940,"2019",4,0,52,1,48,NA,NA,NA +109,NA,941,"2019",4,0,0,1,100,NA,NA,NA +109,NA,942,"2019",6,1,90,1,90,NA,NA,NA +109,NA,943,"2019",2,1,50,1,50,NA,NA,NA +109,NA,945,"2019",5,0,45,1,55,NA,NA,NA +109,NA,946,"2019",2,0,82,1,18,NA,NA,NA +109,NA,947,"2019",6,0,41,1,59,NA,NA,NA +109,NA,948,"2019",5,1,50,1,50,NA,NA,NA +109,NA,949,"2019",4,0,60,1,40,NA,NA,NA +109,NA,951,"2019",4,0,51,1,49,NA,NA,NA +109,NA,952,"2019",6,0,0,1,100,NA,NA,NA +109,NA,953,"2019",3,1,72,1,72,NA,NA,NA +109,NA,955,"2019",6,0,50,1,50,NA,NA,NA +109,NA,956,"2019",6,0,89,1,11,NA,NA,NA +109,NA,958,"2019",5,0,86,1,14,NA,NA,NA +109,NA,959,"2019",5,0,0,1,100,NA,NA,NA +109,NA,960,"2019",6,1,43,1,43,NA,NA,NA +109,NA,961,"2019",2,0,39,1,61,NA,NA,NA +109,NA,966,"2019",4,0,35,1,65,NA,NA,NA +109,NA,967,"2019",4,1,100,1,100,NA,NA,NA +109,NA,968,"2019",4,0,100,1,0,NA,NA,NA +109,NA,969,"2019",5,0,50,1,50,NA,NA,NA +109,NA,970,"2019",5,0,31,1,69,NA,NA,NA +109,NA,973,"2019",5,1,66,1,66,NA,NA,NA +109,NA,974,"2019",4,0,20,1,80,NA,NA,NA +109,NA,975,"2019",3,1,92,1,92,NA,NA,NA +109,NA,977,"2019",5,0,43,1,57,NA,NA,NA +109,NA,978,"2019",2,0,100,1,0,NA,NA,NA +109,NA,979,"2019",5,0,89,1,11,NA,NA,NA +109,NA,980,"2019",6,1,74,1,74,NA,NA,NA +109,NA,982,"2019",4,0,50,1,50,NA,NA,NA +109,NA,983,"2019",3,0,92,1,8,NA,NA,NA +109,NA,984,"2019",4,0,80,1,20,NA,NA,NA +109,NA,985,"2019",2,1,0,1,0,NA,NA,NA +109,NA,986,"2019",6,1,88,1,88,NA,NA,NA +109,NA,987,"2019",6,1,62,1,62,NA,NA,NA +109,NA,988,"2019",5,0,51,1,49,NA,NA,NA +109,NA,989,"2019",6,1,44,1,44,NA,NA,NA +109,NA,990,"2019",2,0,50,1,50,NA,NA,NA +109,NA,991,"2019",3,1,46,1,46,NA,NA,NA +109,NA,992,"2019",3,0,40,1,60,NA,NA,NA +109,NA,993,"2019",2,1,92,1,92,NA,NA,NA +109,NA,994,"2019",2,0,50,1,50,NA,NA,NA +109,NA,996,"2019",5,1,79,1,79,NA,NA,NA +109,NA,997,"2019",5,0,23,1,77,NA,NA,NA +109,NA,1000,"2019",3,1,51,1,51,NA,NA,NA +109,NA,1001,"2019",3,0,21,1,79,NA,NA,NA +109,NA,1002,"2019",5,1,62,1,62,NA,NA,NA +109,NA,1003,"2019",2,0,82,1,18,NA,NA,NA +109,NA,1004,"2019",5,0,5,1,95,NA,NA,NA +109,NA,1005,"2019",3,1,72,1,72,NA,NA,NA +109,NA,1006,"2019",6,0,13,1,87,NA,NA,NA +109,NA,1007,"2019",3,0,0,1,100,NA,NA,NA +109,NA,1008,"2019",5,0,60,1,40,NA,NA,NA +109,NA,1009,"2019",4,1,91,1,91,NA,NA,NA +109,NA,1010,"2019",6,0,17,1,83,NA,NA,NA +109,NA,1011,"2019",6,1,100,1,100,NA,NA,NA +109,NA,1012,"2019",2,0,13,1,87,NA,NA,NA +109,NA,1013,"2019",2,1,100,1,100,NA,NA,NA +109,NA,1014,"2019",6,1,100,1,100,NA,NA,NA +109,NA,1015,"2019",5,0,30,1,70,NA,NA,NA +109,NA,1016,"2019",6,1,54,1,54,NA,NA,NA +109,NA,1017,"2019",5,1,62,1,62,NA,NA,NA +109,NA,1018,"2019",5,1,81,1,81,NA,NA,NA +109,NA,1020,"2019",5,1,60,1,60,NA,NA,NA +109,NA,1021,"2019",6,0,32,1,68,NA,NA,NA +109,NA,1022,"2019",3,0,51,1,49,NA,NA,NA +109,NA,1023,"2019",4,0,2,1,98,NA,NA,NA +109,NA,1024,"2019",3,0,94,1,6,NA,NA,NA +109,NA,1025,"2019",5,0,71,1,29,NA,NA,NA +109,NA,1026,"2019",6,0,60,1,40,NA,NA,NA +109,NA,1027,"2019",6,1,76,1,76,NA,NA,NA +109,NA,1028,"2019",6,0,50,1,50,NA,NA,NA +109,NA,1029,"2019",5,0,95,1,5,NA,NA,NA +109,NA,1030,"2019",4,1,93,1,93,NA,NA,NA +109,NA,1031,"2019",5,0,80,1,20,NA,NA,NA +109,NA,1033,"2019",3,1,88,1,88,NA,NA,NA +109,NA,1034,"2019",6,1,100,1,100,NA,NA,NA +109,NA,1035,"2019",3,1,100,1,100,NA,NA,NA +109,NA,1036,"2019",2,1,100,1,100,NA,NA,NA +109,NA,1038,"2019",6,1,51,1,51,NA,NA,NA +109,NA,1039,"2019",2,1,72,1,72,NA,NA,NA +109,NA,1040,"2019",3,0,56,1,44,NA,NA,NA +109,NA,1042,"2019",4,1,97,1,97,NA,NA,NA +109,NA,1043,"2019",3,1,100,1,100,NA,NA,NA +109,NA,1044,"2019",2,1,78,1,78,NA,NA,NA +109,NA,1045,"2019",6,1,100,1,100,NA,NA,NA +109,NA,1047,"2019",2,0,41,1,59,NA,NA,NA +109,NA,1048,"2019",2,0,51,1,49,NA,NA,NA +109,NA,1049,"2019",2,1,100,1,100,NA,NA,NA +109,NA,1050,"2019",6,0,50,1,50,NA,NA,NA +109,NA,1051,"2019",4,0,50,1,50,NA,NA,NA +109,NA,1052,"2019",6,1,1,1,1,NA,NA,NA +109,NA,1053,"2019",2,1,99,1,99,NA,NA,NA +109,NA,1054,"2019",2,0,13,1,87,NA,NA,NA +109,NA,1055,"2019",2,0,16,1,84,NA,NA,NA +109,NA,1056,"2019",5,1,100,1,100,NA,NA,NA +109,NA,1057,"2019",5,1,50,1,50,NA,NA,NA +109,NA,1059,"2019",5,0,18,1,82,NA,NA,NA +109,NA,1060,"2019",6,0,0,1,100,NA,NA,NA +109,NA,1061,"2019",4,1,100,1,100,NA,NA,NA +109,NA,1062,"2019",5,0,3,1,97,NA,NA,NA +109,NA,1063,"2019",4,1,53,1,53,NA,NA,NA +109,NA,1064,"2019",2,1,82,1,82,NA,NA,NA +109,NA,1065,"2019",3,0,0,1,100,NA,NA,NA +109,NA,1066,"2019",2,1,98,1,98,NA,NA,NA +109,NA,1067,"2019",5,1,100,1,100,NA,NA,NA +109,NA,1069,"2019",5,0,1,1,99,NA,NA,NA +109,NA,1070,"2019",5,0,83,1,17,NA,NA,NA +109,NA,1071,"2019",3,1,100,1,100,NA,NA,NA +109,NA,1073,"2019",3,0,70,1,30,NA,NA,NA +109,NA,1074,"2019",3,1,50,1,50,NA,NA,NA +109,NA,1077,"2019",5,0,50,1,50,NA,NA,NA +109,NA,1079,"2019",4,0,0,1,100,NA,NA,NA +109,NA,1080,"2019",4,0,57,1,43,NA,NA,NA +109,NA,1081,"2019",3,1,81,1,81,NA,NA,NA +109,NA,1082,"2019",5,1,50,1,50,NA,NA,NA +109,NA,1083,"2019",6,1,61,1,61,NA,NA,NA +109,NA,1084,"2019",3,0,39,1,61,NA,NA,NA +109,NA,1085,"2019",5,0,50,1,50,NA,NA,NA +109,NA,1086,"2019",2,0,85,1,15,NA,NA,NA +109,NA,1087,"2019",4,0,40,1,60,NA,NA,NA +109,NA,1088,"2019",2,1,51,1,51,NA,NA,NA +109,NA,1090,"2019",3,1,18,1,18,NA,NA,NA +109,NA,1091,"2019",2,1,65,1,65,NA,NA,NA +109,NA,1092,"2019",2,0,57,1,43,NA,NA,NA +109,NA,1093,"2019",3,0,74,1,26,NA,NA,NA +109,NA,1094,"2019",2,0,20,1,80,NA,NA,NA +109,NA,1095,"2019",4,1,100,1,100,NA,NA,NA +109,NA,1096,"2019",6,1,87,1,87,NA,NA,NA +109,NA,1097,"2019",3,0,78,1,22,NA,NA,NA +109,NA,1099,"2019",6,0,95,1,5,NA,NA,NA +109,NA,1102,"2019",2,1,0,1,0,NA,NA,NA +109,NA,1103,"2019",3,0,83,1,17,NA,NA,NA +109,NA,1105,"2019",4,1,79,1,79,NA,NA,NA +109,NA,1106,"2019",2,0,85,1,15,NA,NA,NA +109,NA,1107,"2019",3,1,79,1,79,NA,NA,NA +109,NA,1108,"2019",3,1,85,1,85,NA,NA,NA +109,NA,1110,"2019",2,1,83,1,83,NA,NA,NA +109,NA,1113,"2019",4,0,85,1,15,NA,NA,NA +109,NA,1115,"2019",3,0,49,1,51,NA,NA,NA +109,NA,1116,"2019",3,1,83,1,83,NA,NA,NA +109,NA,1117,"2019",2,0,0,1,100,NA,NA,NA +109,NA,1119,"2019",5,1,50,1,50,NA,NA,NA +109,NA,1120,"2019",2,1,81,1,81,NA,NA,NA +109,NA,1122,"2019",6,1,83,1,83,NA,NA,NA +109,NA,1124,"2019",6,1,87,1,87,NA,NA,NA +109,NA,1125,"2019",2,0,58,1,42,NA,NA,NA +109,NA,1126,"2019",6,0,18,1,82,NA,NA,NA +109,NA,1127,"2019",5,1,92,1,92,NA,NA,NA +109,NA,1128,"2019",4,0,10,1,90,NA,NA,NA +109,NA,1129,"2019",5,1,85,1,85,NA,NA,NA +109,NA,1130,"2019",4,0,0,1,100,NA,NA,NA +109,NA,1131,"2019",3,0,13,1,87,NA,NA,NA +109,NA,1132,"2019",3,1,87,1,87,NA,NA,NA +109,NA,1134,"2019",6,0,92,1,8,NA,NA,NA +109,NA,1137,"2019",4,0,79,1,21,NA,NA,NA +109,NA,1139,"2019",2,1,100,1,100,NA,NA,NA +109,NA,1140,"2019",5,1,81,1,81,NA,NA,NA +109,NA,1141,"2019",5,1,100,1,100,NA,NA,NA +109,NA,1142,"2019",3,1,84,1,84,NA,NA,NA +109,NA,1143,"2019",6,0,79,1,21,NA,NA,NA +109,NA,1144,"2019",2,0,9,1,91,NA,NA,NA +109,NA,1145,"2019",6,1,68,1,68,NA,NA,NA +109,NA,1147,"2019",3,1,25,1,25,NA,NA,NA +109,NA,1148,"2019",4,0,21,1,79,NA,NA,NA +109,NA,1149,"2019",6,1,81,1,81,NA,NA,NA +109,NA,1150,"2019",3,0,82,1,18,NA,NA,NA +109,NA,1151,"2019",4,0,100,1,0,NA,NA,NA +109,NA,1152,"2019",4,0,50,1,50,NA,NA,NA +109,NA,1153,"2019",5,1,64,1,64,NA,NA,NA +109,NA,1154,"2019",3,1,79,1,79,NA,NA,NA +109,NA,1155,"2019",4,0,80,1,20,NA,NA,NA +109,NA,1156,"2019",5,0,57,1,43,NA,NA,NA +109,NA,1157,"2019",6,0,50,1,50,NA,NA,NA +109,NA,1158,"2019",4,0,81,1,19,NA,NA,NA +109,NA,1159,"2019",3,1,66,1,66,NA,NA,NA +109,NA,1160,"2019",5,1,83,1,83,NA,NA,NA +109,NA,1161,"2019",5,0,83,1,17,NA,NA,NA +109,NA,1162,"2019",4,0,86,1,14,NA,NA,NA +109,NA,1163,"2019",2,0,81,1,19,NA,NA,NA +109,NA,1164,"2019",3,0,88,1,12,NA,NA,NA +109,NA,1165,"2019",3,0,92,1,8,NA,NA,NA +109,NA,1166,"2019",2,1,87,1,87,NA,NA,NA +109,NA,1167,"2019",6,1,84,1,84,NA,NA,NA +109,NA,1168,"2019",6,1,77,1,77,NA,NA,NA +109,113,147,"2019",2,1,81,2,81,60,"BBC",NA +109,113,152,"2019",6,1,58,2,58,100,"BBC",NA +109,113,153,"2019",3,1,21,3,21,21,"BBC",NA +109,113,154,"2019",3,1,69,2,69,50,"BBC",NA +109,113,156,"2019",4,0,53,3,47,NA,"BBC",NA +109,113,160,"2019",3,1,0,3,0,0,"BBC",NA +109,113,163,"2019",2,0,0,2,100,50,"BBC",NA +109,113,164,"2019",5,0,7,2,93,82,"BBC",NA +109,113,165,"2019",2,0,0,3,100,100,"BBC",NA +109,113,167,"2019",5,0,91,3,9,90,"BBC",NA +109,113,174,"2019",6,1,83,2,83,50,"BBC",NA +109,113,177,"2019",2,0,6,2,94,49,"BBC",NA +109,113,178,"2019",4,0,0,3,100,NA,"BBC",NA +109,113,179,"2019",2,1,56,2,56,59,"BBC",NA +109,113,181,"2019",3,0,80,2,20,73,"BBC",NA +109,113,186,"2019",6,1,69,2,69,71,"BBC",NA +109,113,191,"2019",4,0,6,3,94,NA,"BBC",NA +109,113,193,"2019",3,1,79,2,79,72,"BBC",NA +109,113,195,"2019",5,1,100,3,100,100,"BBC",NA +109,113,207,"2019",6,0,100,3,0,0,"BBC",NA +109,113,213,"2019",3,1,100,3,100,85,"BBC",NA +109,113,215,"2019",4,0,89,3,11,NA,"BBC",NA +109,113,216,"2019",5,0,6,3,94,94,"BBC",NA +109,113,217,"2019",3,1,20,3,20,30,"BBC",NA +109,113,218,"2019",5,0,100,3,0,0,"BBC",NA +109,113,224,"2019",5,1,32,3,32,67,"BBC",NA +109,113,229,"2019",3,0,55,2,45,18,"BBC",NA +109,113,231,"2019",5,0,100,3,0,0,"BBC",NA +109,113,236,"2019",3,0,0,3,100,100,"BBC",NA +109,113,238,"2019",3,1,49,3,49,49,"BBC",NA +109,113,239,"2019",6,1,93,3,93,93,"BBC",NA +109,113,242,"2019",5,0,100,3,0,0,"BBC",NA +109,113,245,"2019",5,1,25,3,25,25,"BBC",NA +109,113,249,"2019",2,1,100,3,100,100,"BBC",NA +109,113,250,"2019",5,1,81,2,81,81,"BBC",NA +109,113,254,"2019",2,1,11,3,11,91,"BBC",NA +109,113,256,"2019",6,0,87,3,13,13,"BBC",NA +109,113,259,"2019",5,0,99,3,1,10,"BBC",NA +109,113,260,"2019",5,0,86,2,14,14,"BBC",NA +109,113,263,"2019",6,1,93,2,93,82,"BBC",NA +109,113,265,"2019",6,0,85,3,15,20,"BBC",NA +109,113,267,"2019",4,1,71,3,71,NA,"BBC",NA +109,113,268,"2019",2,0,19,3,81,70,"BBC",NA +109,113,277,"2019",6,0,0,3,100,100,"BBC",NA +109,113,281,"2019",2,1,82,3,82,82,"BBC",NA +109,113,282,"2019",3,1,72,2,72,72,"BBC",NA +109,113,285,"2019",3,1,99,3,99,99,"BBC",NA +109,113,291,"2019",5,1,33,2,33,10,"BBC",NA +109,113,292,"2019",5,1,100,3,100,100,"BBC",NA +109,113,299,"2019",3,0,3,2,97,97,"BBC",NA +109,113,304,"2019",5,1,100,3,100,100,"BBC",NA +109,113,307,"2019",6,1,50,2,50,50,"BBC",NA +109,113,309,"2019",3,1,78,3,78,69,"BBC",NA +109,113,310,"2019",3,1,22,2,22,22,"BBC",NA +109,113,311,"2019",5,1,73,2,73,73,"BBC",NA +109,113,312,"2019",5,0,81,3,19,60,"BBC",NA +109,113,317,"2019",2,1,22,3,22,100,"BBC",NA +109,113,319,"2019",6,0,53,2,47,47,"BBC",NA +109,113,320,"2019",6,1,100,3,100,100,"BBC",NA +109,113,321,"2019",5,0,61,2,39,21,"BBC",NA +109,113,322,"2019",5,0,51,2,49,31,"BBC",NA +109,113,323,"2019",3,0,29,3,71,40,"BBC",NA +109,113,331,"2019",2,1,92,3,92,92,"BBC",NA +109,113,334,"2019",5,0,50,2,50,50,"BBC",NA +109,113,335,"2019",6,0,69,2,31,31,"BBC",NA +109,113,336,"2019",6,1,61,3,61,61,"BBC",NA +109,113,344,"2019",3,1,82,3,82,82,"BBC",NA +109,113,345,"2019",6,1,93,2,93,93,"BBC",NA +109,113,348,"2019",3,1,99,2,99,100,"BBC",NA +109,113,352,"2019",5,1,100,3,100,100,"BBC",NA +109,113,356,"2019",5,0,100,2,0,50,"BBC",NA +109,113,358,"2019",2,1,46,2,46,53,"BBC",NA +109,113,362,"2019",3,1,73,2,73,65,"BBC",NA +109,113,368,"2019",5,1,76,2,76,76,"BBC",NA +109,113,371,"2019",6,1,86,3,86,86,"BBC",NA +109,113,374,"2019",6,1,100,3,100,100,"BBC",NA +109,113,375,"2019",5,1,100,3,100,50,"BBC",NA +109,113,376,"2019",5,1,100,3,100,100,"BBC",NA +109,113,377,"2019",6,0,46,3,54,65,"BBC",NA +109,113,379,"2019",2,1,76,3,76,100,"BBC",NA +109,113,384,"2019",5,0,90,2,10,20,"BBC",NA +109,113,391,"2019",5,0,31,2,69,50,"BBC",NA +109,113,392,"2019",6,1,50,2,50,50,"BBC",NA +109,113,393,"2019",5,0,50,3,50,20,"BBC",NA +109,113,394,"2019",6,1,71,2,71,80,"BBC",NA +109,113,399,"2019",6,0,100,3,0,0,"BBC",NA +109,113,401,"2019",3,1,58,2,58,38,"BBC",NA +109,113,408,"2019",5,0,83,3,17,17,"BBC",NA +109,113,413,"2019",5,0,34,3,66,66,"BBC",NA +109,113,414,"2019",3,0,60,2,40,50,"BBC",NA +109,113,415,"2019",3,0,50,2,50,50,"BBC",NA +109,113,416,"2019",2,1,40,2,40,50,"BBC",NA +109,113,417,"2019",6,1,67,3,67,27,"BBC",NA +109,113,420,"2019",2,0,45,3,55,55,"BBC",NA +109,113,429,"2019",2,1,45,3,45,41,"BBC",NA +109,113,432,"2019",5,1,100,2,100,95,"BBC",NA +109,113,434,"2019",5,1,66,3,66,66,"BBC",NA +109,113,435,"2019",3,1,50,2,50,50,"BBC",NA +109,113,438,"2019",2,1,0,3,0,100,"BBC",NA +109,113,443,"2019",2,0,64,2,36,59,"BBC",NA +109,113,444,"2019",2,1,100,2,100,100,"BBC",NA +109,113,445,"2019",6,0,100,3,0,59,"BBC",NA +109,113,446,"2019",3,0,100,2,0,0,"BBC",NA +109,113,447,"2019",6,0,65,3,35,23,"BBC",NA +109,113,450,"2019",6,0,0,3,100,0,"BBC",NA +109,113,452,"2019",6,0,47,2,53,19,"BBC",NA +109,113,453,"2019",2,0,50,2,50,50,"BBC",NA +109,113,455,"2019",6,0,16,2,84,82,"BBC",NA +109,113,457,"2019",3,1,48,2,48,64,"BBC",NA +109,113,462,"2019",6,0,12,3,88,88,"BBC",NA +109,113,465,"2019",5,0,70,2,30,38,"BBC",NA +109,113,474,"2019",6,0,45,3,55,73,"BBC",NA +109,113,475,"2019",3,0,59,3,41,48,"BBC",NA +109,113,477,"2019",5,1,73,2,73,90,"BBC",NA +109,113,478,"2019",5,1,19,2,19,26,"BBC",NA +109,113,480,"2019",3,0,80,2,20,32,"BBC",NA +109,113,483,"2019",2,0,77,3,23,23,"BBC",NA +109,113,485,"2019",2,0,13,3,87,23,"BBC",NA +109,113,488,"2019",2,0,50,2,50,50,"BBC",NA +109,113,491,"2019",5,0,50,3,50,50,"BBC",NA +109,113,492,"2019",3,1,81,2,81,62,"BBC",NA +109,113,494,"2019",2,0,65,3,35,35,"BBC",NA +109,113,497,"2019",5,1,70,2,70,65,"BBC",NA +109,113,498,"2019",5,1,86,3,86,86,"BBC",NA +109,113,500,"2019",2,1,100,3,100,100,"BBC",NA +109,113,502,"2019",5,0,89,2,11,11,"BBC",NA +109,113,504,"2019",3,1,39,3,39,39,"BBC",NA +109,113,507,"2019",4,0,24,3,76,NA,"BBC",NA +109,113,518,"2019",3,1,79,3,79,79,"BBC",NA +109,113,519,"2019",5,0,50,2,50,50,"BBC",NA +109,113,521,"2019",5,1,34,2,34,75,"BBC",NA +109,113,523,"2019",2,1,27,3,27,33,"BBC",NA +109,113,528,"2019",6,0,62,3,38,17,"BBC",NA +109,113,529,"2019",2,0,3,2,97,95,"BBC",NA +109,113,536,"2019",2,1,87,3,87,87,"BBC",NA +109,113,541,"2019",5,0,79,3,21,79,"BBC",NA +109,113,544,"2019",2,0,30,3,70,39,"BBC",NA +109,113,545,"2019",5,0,69,2,31,46,"BBC",NA +109,113,557,"2019",6,1,88,2,88,96,"BBC",NA +109,113,559,"2019",2,0,27,3,73,73,"BBC",NA +109,113,560,"2019",6,0,32,3,68,75,"BBC",NA +109,113,565,"2019",6,1,37,2,37,42,"BBC",NA +109,113,566,"2019",3,1,85,3,85,82,"BBC",NA +109,113,568,"2019",5,0,43,2,57,47,"BBC",NA +109,113,570,"2019",3,1,100,2,100,100,"BBC",NA +109,113,571,"2019",2,1,50,2,50,49,"BBC",NA +109,113,574,"2019",6,0,18,3,82,82,"BBC",NA +109,113,575,"2019",2,1,100,2,100,100,"BBC",NA +109,113,580,"2019",5,1,100,3,100,100,"BBC",NA +109,113,583,"2019",4,1,61,3,61,NA,"BBC",NA +109,113,585,"2019",3,0,50,3,50,50,"BBC",NA +109,113,587,"2019",6,0,50,2,50,50,"BBC",NA +109,113,600,"2019",2,1,91,3,91,91,"BBC",NA +109,113,601,"2019",2,0,81,3,19,35,"BBC",NA +109,113,606,"2019",5,0,51,3,49,49,"BBC",NA +109,113,608,"2019",4,0,25,3,75,NA,"BBC",NA +109,113,610,"2019",2,0,65,2,35,35,"BBC",NA +109,113,612,"2019",2,0,40,2,60,60,"BBC",NA +109,113,613,"2019",4,0,29,3,71,NA,"BBC",NA +109,113,617,"2019",3,1,42,2,42,42,"BBC",NA +109,113,618,"2019",5,0,73,3,27,48,"BBC",NA +109,113,620,"2019",4,1,0,3,0,NA,"BBC",NA +109,113,621,"2019",5,1,98,3,98,98,"BBC",NA +109,113,627,"2019",3,0,100,3,0,0,"BBC",NA +109,113,629,"2019",5,0,94,3,6,6,"BBC",NA +109,113,630,"2019",5,0,100,3,0,0,"BBC",NA +109,113,634,"2019",6,1,77,3,77,71,"BBC",NA +109,113,635,"2019",2,0,69,3,31,0,"BBC",NA +109,113,636,"2019",3,1,76,2,76,62,"BBC",NA +109,113,646,"2019",4,0,34,3,66,NA,"BBC",NA +109,113,648,"2019",3,0,84,3,16,50,"BBC",NA +109,113,650,"2019",3,1,88,2,88,88,"BBC",NA +109,113,653,"2019",3,0,100,3,0,0,"BBC",NA +109,113,654,"2019",6,1,100,2,100,100,"BBC",NA +109,113,658,"2019",6,0,62,3,38,75,"BBC",NA +109,113,661,"2019",3,1,61,3,61,61,"BBC",NA +109,113,662,"2019",6,0,86,2,14,78,"BBC",NA +109,113,664,"2019",5,0,50,2,50,91,"BBC",NA +109,113,665,"2019",5,1,82,2,82,50,"BBC",NA +109,113,666,"2019",2,0,100,2,0,0,"BBC",NA +109,113,668,"2019",3,0,44,3,56,56,"BBC",NA +109,113,672,"2019",5,0,100,2,0,0,"BBC",NA +109,113,677,"2019",3,1,85,3,85,27,"BBC",NA +109,113,678,"2019",5,1,32,2,32,50,"BBC",NA +109,113,685,"2019",6,0,16,3,84,76,"BBC",NA +109,113,702,"2019",3,1,38,3,38,59,"BBC",NA +109,113,706,"2019",3,1,100,2,100,100,"BBC",NA +109,113,710,"2019",3,1,5,3,5,5,"BBC",NA +109,113,713,"2019",6,1,50,2,50,50,"BBC",NA +109,113,716,"2019",6,1,32,3,32,31,"BBC",NA +109,113,718,"2019",5,1,14,3,14,18,"BBC",NA +109,113,721,"2019",2,1,100,2,100,100,"BBC",NA +109,113,723,"2019",3,1,49,3,49,49,"BBC",NA +109,113,724,"2019",5,0,54,3,46,46,"BBC",NA +109,113,728,"2019",6,0,78,2,22,50,"BBC",NA +109,113,731,"2019",6,0,61,2,39,44,"BBC",NA +109,113,741,"2019",3,0,50,2,50,50,"BBC",NA +109,113,744,"2019",6,1,56,3,56,32,"BBC",NA +109,113,749,"2019",2,0,50,3,50,50,"BBC",NA +109,113,750,"2019",6,0,100,2,0,0,"BBC",NA +109,113,752,"2019",2,0,30,3,70,50,"BBC",NA +109,113,754,"2019",6,0,73,3,27,61,"BBC",NA +109,113,755,"2019",3,1,95,3,95,95,"BBC",NA +109,113,756,"2019",3,0,25,3,75,75,"BBC",NA +109,113,757,"2019",2,0,0,2,100,100,"BBC",NA +109,113,763,"2019",6,1,50,3,50,50,"BBC",NA +109,113,764,"2019",6,0,54,3,46,0,"BBC",NA +109,113,765,"2019",2,1,100,2,100,100,"BBC",NA +109,113,766,"2019",3,1,70,2,70,70,"BBC",NA +109,113,772,"2019",6,0,100,3,0,0,"BBC",NA +109,113,779,"2019",3,1,50,2,50,50,"BBC",NA +109,113,780,"2019",6,1,92,3,92,92,"BBC",NA +109,113,790,"2019",6,1,49,2,49,100,"BBC",NA +109,113,793,"2019",6,0,17,2,83,11,"BBC",NA +109,113,795,"2019",3,0,93,3,7,7,"BBC",NA +109,113,797,"2019",3,1,100,3,100,100,"BBC",NA +109,113,804,"2019",3,0,50,2,50,50,"BBC",NA +109,113,807,"2019",6,0,0,3,100,100,"BBC",NA +109,113,814,"2019",3,1,100,2,100,100,"BBC",NA +109,113,815,"2019",3,0,100,3,0,100,"BBC",NA +109,113,818,"2019",3,1,31,2,31,49,"BBC",NA +109,113,819,"2019",5,0,0,3,100,100,"BBC",NA +109,113,821,"2019",3,0,56,3,44,43,"BBC",NA +109,113,823,"2019",2,0,49,3,51,60,"BBC",NA +109,113,824,"2019",6,1,87,2,87,87,"BBC",NA +109,113,827,"2019",5,0,91,2,9,9,"BBC",NA +109,113,830,"2019",2,1,100,2,100,100,"BBC",NA +109,113,832,"2019",6,1,100,3,100,100,"BBC",NA +109,113,833,"2019",6,1,1,2,1,1,"BBC",NA +109,113,835,"2019",3,1,41,2,41,41,"BBC",NA +109,113,836,"2019",3,1,100,3,100,100,"BBC",NA +109,113,845,"2019",5,0,50,3,50,50,"BBC",NA +109,113,849,"2019",6,0,100,2,0,0,"BBC",NA +109,113,850,"2019",3,1,29,2,29,50,"BBC",NA +109,113,851,"2019",2,1,91,3,91,91,"BBC",NA +109,113,853,"2019",3,0,51,2,49,29,"BBC",NA +109,113,857,"2019",5,1,51,2,51,0,"BBC",NA +109,113,858,"2019",2,0,21,2,79,79,"BBC",NA +109,113,861,"2019",3,1,100,3,100,50,"BBC",NA +109,113,866,"2019",4,0,2,3,98,NA,"BBC",NA +109,113,877,"2019",5,0,23,2,77,77,"BBC",NA +109,113,880,"2019",6,1,100,3,100,82,"BBC",NA +109,113,883,"2019",5,1,7,3,7,7,"BBC",NA +109,113,887,"2019",5,1,100,2,100,100,"BBC",NA +109,113,889,"2019",2,1,100,2,100,100,"BBC",NA +109,113,892,"2019",6,0,100,2,0,0,"BBC",NA +109,113,893,"2019",2,1,50,2,50,50,"BBC",NA +109,113,894,"2019",2,0,76,2,24,40,"BBC",NA +109,113,896,"2019",3,1,97,3,97,99,"BBC",NA +109,113,898,"2019",2,1,92,2,92,92,"BBC",NA +109,113,899,"2019",6,1,100,2,100,100,"BBC",NA +109,113,900,"2019",3,0,49,2,51,74,"BBC",NA +109,113,902,"2019",2,0,72,2,28,50,"BBC",NA +109,113,903,"2019",2,1,50,3,50,50,"BBC",NA +109,113,905,"2019",6,0,0,3,100,100,"BBC",NA +109,113,906,"2019",2,0,71,3,29,29,"BBC",NA +109,113,917,"2019",3,1,72,2,72,72,"BBC",NA +109,113,919,"2019",5,1,72,2,72,81,"BBC",NA +109,113,927,"2019",2,0,0,3,100,100,"BBC",NA +109,113,928,"2019",4,0,15,3,85,NA,"BBC",NA +109,113,930,"2019",5,0,91,3,9,9,"BBC",NA +109,113,933,"2019",5,1,96,3,96,96,"BBC",NA +109,113,938,"2019",5,0,2,3,98,50,"BBC",NA +109,113,943,"2019",2,1,100,2,100,50,"BBC",NA +109,113,945,"2019",5,0,54,2,46,55,"BBC",NA +109,113,946,"2019",2,0,82,3,18,18,"BBC",NA +109,113,948,"2019",5,1,50,3,50,43,"BBC",NA +109,113,952,"2019",6,0,0,2,100,100,"BBC",NA +109,113,955,"2019",6,0,50,2,50,50,"BBC",NA +109,113,959,"2019",5,0,0,2,100,100,"BBC",NA +109,113,961,"2019",2,0,39,2,61,61,"BBC",NA +109,113,969,"2019",5,0,50,2,50,50,"BBC",NA +109,113,975,"2019",3,1,1,3,1,5,"BBC",NA +109,113,977,"2019",5,0,48,2,52,57,"BBC",NA +109,113,978,"2019",2,0,100,3,0,0,"BBC",NA +109,113,980,"2019",6,1,78,2,78,74,"BBC",NA +109,113,983,"2019",3,0,92,2,8,8,"BBC",NA +109,113,985,"2019",2,1,63,3,63,51,"BBC",NA +109,113,987,"2019",6,1,75,2,75,62,"BBC",NA +109,113,994,"2019",2,0,100,3,0,50,"BBC",NA +109,113,996,"2019",5,1,85,3,85,83,"BBC",NA +109,113,1000,"2019",3,1,9,2,9,51,"BBC",NA +109,113,1002,"2019",5,1,39,3,39,31,"BBC",NA +109,113,1006,"2019",6,0,52,2,48,87,"BBC",NA +109,113,1008,"2019",5,0,60,2,40,40,"BBC",NA +109,113,1010,"2019",6,0,28,2,72,83,"BBC",NA +109,113,1011,"2019",6,1,100,2,100,100,"BBC",NA +109,113,1014,"2019",6,1,100,2,100,100,"BBC",NA +109,113,1015,"2019",5,0,81,2,19,70,"BBC",NA +109,113,1016,"2019",6,1,61,2,61,54,"BBC",NA +109,113,1018,"2019",5,1,100,2,100,81,"BBC",NA +109,113,1020,"2019",5,1,20,3,20,12,"BBC",NA +109,113,1021,"2019",6,0,19,3,81,75,"BBC",NA +109,113,1022,"2019",3,0,51,2,49,49,"BBC",NA +109,113,1027,"2019",6,1,100,3,100,100,"BBC",NA +109,113,1028,"2019",6,0,50,2,50,50,"BBC",NA +109,113,1034,"2019",6,1,100,3,100,100,"BBC",NA +109,113,1035,"2019",3,1,100,2,100,100,"BBC",NA +109,113,1036,"2019",2,1,100,2,100,100,"BBC",NA +109,113,1038,"2019",6,1,0,3,0,1,"BBC",NA +109,113,1040,"2019",3,0,72,3,28,33,"BBC",NA +109,113,1043,"2019",3,1,100,2,100,100,"BBC",NA +109,113,1044,"2019",2,1,9,3,9,24,"BBC",NA +109,113,1045,"2019",6,1,100,3,100,100,"BBC",NA +109,113,1048,"2019",2,0,62,3,38,19,"BBC",NA +109,113,1050,"2019",6,0,50,2,50,50,"BBC",NA +109,113,1051,"2019",4,0,79,3,21,NA,"BBC",NA +109,113,1052,"2019",6,1,51,3,51,81,"BBC",NA +109,113,1054,"2019",2,0,18,3,82,85,"BBC",NA +109,113,1055,"2019",2,0,3,3,97,97,"BBC",NA +109,113,1057,"2019",5,1,86,2,86,50,"BBC",NA +109,113,1060,"2019",6,0,0,2,100,100,"BBC",NA +109,113,1061,"2019",4,1,100,3,100,NA,"BBC",NA +109,113,1064,"2019",2,1,73,3,73,74,"BBC",NA +109,113,1065,"2019",3,0,99,2,1,100,"BBC",NA +109,113,1074,"2019",3,1,50,3,50,50,"BBC",NA +109,113,1082,"2019",5,1,82,2,82,50,"BBC",NA +109,113,1083,"2019",6,1,61,3,61,61,"BBC",NA +109,113,1084,"2019",3,0,76,3,24,29,"BBC",NA +109,113,1085,"2019",5,0,50,2,50,50,"BBC",NA +109,113,1086,"2019",2,0,85,3,15,15,"BBC",NA +109,113,1087,"2019",4,0,40,3,60,NA,"BBC",NA +109,113,1088,"2019",2,1,51,3,51,51,"BBC",NA +109,113,1090,"2019",3,1,18,2,18,18,"BBC",NA +109,113,1091,"2019",2,1,80,2,80,65,"BBC",NA +109,113,1092,"2019",2,0,57,2,43,43,"BBC",NA +109,113,1093,"2019",3,0,85,3,15,19,"BBC",NA +109,113,1095,"2019",4,1,100,3,100,NA,"BBC",NA +109,113,1096,"2019",6,1,96,3,96,89,"BBC",NA +109,113,1099,"2019",6,0,89,3,11,26,"BBC",NA +109,113,1106,"2019",2,0,76,2,24,15,"BBC",NA +109,113,1107,"2019",3,1,83,3,83,75,"BBC",NA +109,113,1113,"2019",4,0,85,3,15,NA,"BBC",NA +109,113,1117,"2019",2,0,0,2,100,100,"BBC",NA +109,113,1120,"2019",2,1,80,2,80,81,"BBC",NA +109,113,1127,"2019",5,1,81,3,81,100,"BBC",NA +109,113,1130,"2019",4,0,0,3,100,NA,"BBC",NA +109,113,1132,"2019",3,1,94,2,94,87,"BBC",NA +109,113,1149,"2019",6,1,81,2,81,81,"BBC",NA +109,113,1161,"2019",5,0,76,3,24,17,"BBC",NA +109,113,1163,"2019",2,0,78,2,22,19,"BBC",NA +109,113,1164,"2019",3,0,82,2,18,12,"BBC",NA +109,113,1165,"2019",3,0,86,2,14,8,"BBC",NA +109,113,1166,"2019",2,1,75,3,75,81,"BBC",NA +109,134,144,"2019",2,1,40,2,40,64,"Nanfang Dushibao",NA +109,134,146,"2019",3,1,92,3,92,81,"Nanfang Dushibao",NA +109,134,148,"2019",3,0,32,3,68,68,"Nanfang Dushibao",NA +109,134,149,"2019",2,1,22,2,22,71,"Nanfang Dushibao",NA +109,134,159,"2019",4,1,70,4,70,NA,"Nanfang Dushibao",NA +109,134,161,"2019",3,1,83,3,83,78,"Nanfang Dushibao",NA +109,134,166,"2019",3,1,72,3,72,83,"Nanfang Dushibao",NA +109,134,171,"2019",4,0,37,4,63,NA,"Nanfang Dushibao",NA +109,134,172,"2019",4,0,21,4,79,NA,"Nanfang Dushibao",NA +109,134,175,"2019",2,0,91,3,9,20,"Nanfang Dushibao",NA +109,134,177,"2019",2,0,3,3,97,94,"Nanfang Dushibao",NA +109,134,181,"2019",3,0,88,3,12,20,"Nanfang Dushibao",NA +109,134,182,"2019",5,1,81,2,81,62,"Nanfang Dushibao",NA +109,134,183,"2019",3,0,30,2,70,67,"Nanfang Dushibao",NA +109,134,187,"2019",3,0,91,3,9,13,"Nanfang Dushibao",NA +109,134,188,"2019",2,0,80,2,20,30,"Nanfang Dushibao",NA +109,134,190,"2019",4,0,73,4,27,NA,"Nanfang Dushibao",NA +109,134,194,"2019",6,1,92,2,92,9,"Nanfang Dushibao",NA +109,134,195,"2019",5,1,100,2,100,0,"Nanfang Dushibao",NA +109,134,200,"2019",3,1,66,3,66,63,"Nanfang Dushibao",NA +109,134,202,"2019",6,0,65,3,35,35,"Nanfang Dushibao",NA +109,134,203,"2019",4,1,72,4,72,NA,"Nanfang Dushibao",NA +109,134,210,"2019",2,1,100,2,100,50,"Nanfang Dushibao",NA +109,134,220,"2019",6,0,88,2,12,50,"Nanfang Dushibao",NA +109,134,221,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,223,"2019",6,0,88,2,12,19,"Nanfang Dushibao",NA +109,134,228,"2019",2,1,94,2,94,94,"Nanfang Dushibao",NA +109,134,230,"2019",3,0,50,2,50,50,"Nanfang Dushibao",NA +109,134,232,"2019",6,0,70,2,30,88,"Nanfang Dushibao",NA +109,134,234,"2019",2,0,97,3,3,0,"Nanfang Dushibao",NA +109,134,237,"2019",6,1,98,2,98,94,"Nanfang Dushibao",NA +109,134,238,"2019",3,1,49,2,49,64,"Nanfang Dushibao",NA +109,134,240,"2019",5,1,85,2,85,85,"Nanfang Dushibao",NA +109,134,245,"2019",5,1,25,2,25,25,"Nanfang Dushibao",NA +109,134,248,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +109,134,249,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,251,"2019",6,1,59,3,59,57,"Nanfang Dushibao",NA +109,134,252,"2019",5,1,9,3,9,100,"Nanfang Dushibao",NA +109,134,253,"2019",2,1,39,2,39,39,"Nanfang Dushibao",NA +109,134,254,"2019",2,1,91,2,91,50,"Nanfang Dushibao",NA +109,134,255,"2019",5,1,100,3,100,96,"Nanfang Dushibao",NA +109,134,256,"2019",6,0,87,2,13,13,"Nanfang Dushibao",NA +109,134,259,"2019",5,0,90,2,10,10,"Nanfang Dushibao",NA +109,134,260,"2019",5,0,86,3,14,14,"Nanfang Dushibao",NA +109,134,270,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,271,"2019",6,0,94,3,6,7,"Nanfang Dushibao",NA +109,134,272,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +109,134,273,"2019",5,0,7,3,93,66,"Nanfang Dushibao",NA +109,134,274,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,276,"2019",4,1,84,4,84,NA,"Nanfang Dushibao",NA +109,134,277,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +109,134,280,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,285,"2019",3,1,99,2,99,99,"Nanfang Dushibao",NA +109,134,288,"2019",6,1,82,3,82,73,"Nanfang Dushibao",NA +109,134,289,"2019",5,0,95,3,5,32,"Nanfang Dushibao",NA +109,134,291,"2019",5,1,33,3,33,33,"Nanfang Dushibao",NA +109,134,295,"2019",5,1,0,3,0,0,"Nanfang Dushibao",NA +109,134,296,"2019",2,1,100,2,100,82,"Nanfang Dushibao",NA +109,134,299,"2019",3,0,18,3,82,97,"Nanfang Dushibao",NA +109,134,300,"2019",3,0,15,2,85,85,"Nanfang Dushibao",NA +109,134,303,"2019",4,1,56,4,56,NA,"Nanfang Dushibao",NA +109,134,309,"2019",3,1,69,2,69,50,"Nanfang Dushibao",NA +109,134,313,"2019",3,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,318,"2019",6,1,72,3,72,72,"Nanfang Dushibao",NA +109,134,320,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,321,"2019",5,0,96,3,4,39,"Nanfang Dushibao",NA +109,134,328,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,330,"2019",3,1,18,3,18,29,"Nanfang Dushibao",NA +109,134,338,"2019",3,0,86,2,14,14,"Nanfang Dushibao",NA +109,134,347,"2019",4,1,12,4,12,NA,"Nanfang Dushibao",NA +109,134,349,"2019",2,1,62,2,62,44,"Nanfang Dushibao",NA +109,134,352,"2019",5,1,100,2,100,85,"Nanfang Dushibao",NA +109,134,353,"2019",2,0,53,2,47,69,"Nanfang Dushibao",NA +109,134,355,"2019",3,0,58,2,42,42,"Nanfang Dushibao",NA +109,134,358,"2019",2,1,26,3,26,46,"Nanfang Dushibao",NA +109,134,359,"2019",2,0,68,3,32,59,"Nanfang Dushibao",NA +109,134,368,"2019",5,1,76,3,76,76,"Nanfang Dushibao",NA +109,134,369,"2019",3,1,70,2,70,70,"Nanfang Dushibao",NA +109,134,371,"2019",6,1,86,2,86,86,"Nanfang Dushibao",NA +109,134,376,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,377,"2019",6,0,35,2,65,65,"Nanfang Dushibao",NA +109,134,378,"2019",5,1,41,2,41,63,"Nanfang Dushibao",NA +109,134,383,"2019",6,1,55,3,55,0,"Nanfang Dushibao",NA +109,134,385,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +109,134,386,"2019",5,0,81,2,19,19,"Nanfang Dushibao",NA +109,134,387,"2019",3,1,90,3,90,90,"Nanfang Dushibao",NA +109,134,389,"2019",3,0,52,2,48,49,"Nanfang Dushibao",NA +109,134,390,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,392,"2019",6,1,100,3,100,50,"Nanfang Dushibao",NA +109,134,393,"2019",5,0,80,2,20,5,"Nanfang Dushibao",NA +109,134,396,"2019",3,1,3,3,3,98,"Nanfang Dushibao",NA +109,134,399,"2019",6,0,100,2,0,15,"Nanfang Dushibao",NA +109,134,400,"2019",3,0,47,2,53,53,"Nanfang Dushibao",NA +109,134,402,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +109,134,407,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,414,"2019",3,0,81,3,19,40,"Nanfang Dushibao",NA +109,134,418,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +109,134,419,"2019",4,1,71,4,71,NA,"Nanfang Dushibao",NA +109,134,427,"2019",6,1,62,2,62,100,"Nanfang Dushibao",NA +109,134,428,"2019",5,0,90,2,10,73,"Nanfang Dushibao",NA +109,134,429,"2019",2,1,41,2,41,45,"Nanfang Dushibao",NA +109,134,430,"2019",2,1,58,2,58,55,"Nanfang Dushibao",NA +109,134,436,"2019",5,0,51,2,49,45,"Nanfang Dushibao",NA +109,134,437,"2019",5,0,87,2,13,50,"Nanfang Dushibao",NA +109,134,438,"2019",2,1,100,2,100,96,"Nanfang Dushibao",NA +109,134,441,"2019",3,0,24,2,76,50,"Nanfang Dushibao",NA +109,134,442,"2019",6,1,55,2,55,75,"Nanfang Dushibao",NA +109,134,444,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,447,"2019",6,0,77,2,23,32,"Nanfang Dushibao",NA +109,134,454,"2019",5,0,93,2,7,6,"Nanfang Dushibao",NA +109,134,460,"2019",2,0,20,3,80,80,"Nanfang Dushibao",NA +109,134,462,"2019",6,0,12,2,88,77,"Nanfang Dushibao",NA +109,134,469,"2019",2,1,90,2,90,81,"Nanfang Dushibao",NA +109,134,472,"2019",5,0,58,3,42,50,"Nanfang Dushibao",NA +109,134,476,"2019",3,0,59,3,41,32,"Nanfang Dushibao",NA +109,134,479,"2019",4,0,62,4,38,NA,"Nanfang Dushibao",NA +109,134,480,"2019",3,0,80,3,20,20,"Nanfang Dushibao",NA +109,134,485,"2019",2,0,77,2,23,23,"Nanfang Dushibao",NA +109,134,487,"2019",5,0,26,3,74,62,"Nanfang Dushibao",NA +109,134,490,"2019",5,1,65,2,65,50,"Nanfang Dushibao",NA +109,134,491,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +109,134,492,"2019",3,1,51,3,51,81,"Nanfang Dushibao",NA +109,134,494,"2019",2,0,65,2,35,18,"Nanfang Dushibao",NA +109,134,495,"2019",2,1,71,3,71,71,"Nanfang Dushibao",NA +109,134,496,"2019",2,0,63,3,37,40,"Nanfang Dushibao",NA +109,134,497,"2019",5,1,74,3,74,70,"Nanfang Dushibao",NA +109,134,506,"2019",5,0,30,2,70,71,"Nanfang Dushibao",NA +109,134,511,"2019",4,1,85,4,85,NA,"Nanfang Dushibao",NA +109,134,512,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +109,134,514,"2019",3,0,62,2,38,28,"Nanfang Dushibao",NA +109,134,515,"2019",5,1,96,3,96,88,"Nanfang Dushibao",NA +109,134,520,"2019",4,1,60,4,60,NA,"Nanfang Dushibao",NA +109,134,525,"2019",5,1,79,2,79,63,"Nanfang Dushibao",NA +109,134,526,"2019",2,1,79,2,79,79,"Nanfang Dushibao",NA +109,134,528,"2019",6,0,83,2,17,30,"Nanfang Dushibao",NA +109,134,529,"2019",2,0,54,3,46,97,"Nanfang Dushibao",NA +109,134,532,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +109,134,538,"2019",6,1,68,2,68,60,"Nanfang Dushibao",NA +109,134,542,"2019",4,1,46,4,46,NA,"Nanfang Dushibao",NA +109,134,545,"2019",5,0,57,3,43,31,"Nanfang Dushibao",NA +109,134,547,"2019",2,0,44,3,56,29,"Nanfang Dushibao",NA +109,134,549,"2019",3,0,53,2,47,50,"Nanfang Dushibao",NA +109,134,554,"2019",3,0,53,2,47,43,"Nanfang Dushibao",NA +109,134,555,"2019",4,1,23,4,23,NA,"Nanfang Dushibao",NA +109,134,556,"2019",5,1,28,3,28,33,"Nanfang Dushibao",NA +109,134,558,"2019",3,0,22,3,78,67,"Nanfang Dushibao",NA +109,134,562,"2019",6,0,29,3,71,77,"Nanfang Dushibao",NA +109,134,565,"2019",6,1,37,3,37,37,"Nanfang Dushibao",NA +109,134,568,"2019",5,0,26,3,74,57,"Nanfang Dushibao",NA +109,134,570,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,571,"2019",2,1,51,3,51,50,"Nanfang Dushibao",NA +109,134,573,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,574,"2019",6,0,18,2,82,71,"Nanfang Dushibao",NA +109,134,576,"2019",4,0,0,4,100,NA,"Nanfang Dushibao",NA +109,134,579,"2019",3,1,27,2,27,27,"Nanfang Dushibao",NA +109,134,580,"2019",5,1,100,2,100,51,"Nanfang Dushibao",NA +109,134,581,"2019",5,1,82,3,82,74,"Nanfang Dushibao",NA +109,134,582,"2019",6,0,57,3,43,43,"Nanfang Dushibao",NA +109,134,586,"2019",2,1,81,2,81,50,"Nanfang Dushibao",NA +109,134,594,"2019",3,1,38,2,38,68,"Nanfang Dushibao",NA +109,134,595,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +109,134,596,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +109,134,598,"2019",5,0,40,3,60,50,"Nanfang Dushibao",NA +109,134,600,"2019",2,1,91,2,91,71,"Nanfang Dushibao",NA +109,134,602,"2019",4,1,64,4,64,NA,"Nanfang Dushibao",NA +109,134,603,"2019",2,1,41,2,41,69,"Nanfang Dushibao",NA +109,134,605,"2019",3,0,67,2,33,41,"Nanfang Dushibao",NA +109,134,607,"2019",3,0,56,2,44,31,"Nanfang Dushibao",NA +109,134,614,"2019",3,1,50,3,50,50,"Nanfang Dushibao",NA +109,134,616,"2019",4,1,21,4,21,NA,"Nanfang Dushibao",NA +109,134,618,"2019",5,0,52,2,48,50,"Nanfang Dushibao",NA +109,134,619,"2019",2,1,40,3,40,42,"Nanfang Dushibao",NA +109,134,622,"2019",3,1,50,2,50,50,"Nanfang Dushibao",NA +109,134,624,"2019",2,0,79,3,21,21,"Nanfang Dushibao",NA +109,134,626,"2019",6,1,70,3,70,80,"Nanfang Dushibao",NA +109,134,631,"2019",5,0,72,3,28,28,"Nanfang Dushibao",NA +109,134,640,"2019",5,1,0,3,0,87,"Nanfang Dushibao",NA +109,134,641,"2019",6,0,76,2,24,33,"Nanfang Dushibao",NA +109,134,642,"2019",5,0,87,2,13,34,"Nanfang Dushibao",NA +109,134,644,"2019",6,1,74,3,74,66,"Nanfang Dushibao",NA +109,134,650,"2019",3,1,88,3,88,88,"Nanfang Dushibao",NA +109,134,656,"2019",6,0,53,3,47,48,"Nanfang Dushibao",NA +109,134,659,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,663,"2019",6,1,93,3,93,100,"Nanfang Dushibao",NA +109,134,665,"2019",5,1,82,3,82,82,"Nanfang Dushibao",NA +109,134,666,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +109,134,667,"2019",5,0,50,2,50,50,"Nanfang Dushibao",NA +109,134,668,"2019",3,0,44,2,56,100,"Nanfang Dushibao",NA +109,134,669,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +109,134,672,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +109,134,674,"2019",5,1,62,3,62,89,"Nanfang Dushibao",NA +109,134,676,"2019",3,0,75,2,25,25,"Nanfang Dushibao",NA +109,134,677,"2019",3,1,27,2,27,50,"Nanfang Dushibao",NA +109,134,680,"2019",2,0,52,2,48,42,"Nanfang Dushibao",NA +109,134,682,"2019",3,1,81,2,81,50,"Nanfang Dushibao",NA +109,134,683,"2019",4,0,2,4,98,NA,"Nanfang Dushibao",NA +109,134,684,"2019",2,1,100,2,100,73,"Nanfang Dushibao",NA +109,134,685,"2019",6,0,24,2,76,71,"Nanfang Dushibao",NA +109,134,686,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +109,134,691,"2019",2,0,46,2,54,35,"Nanfang Dushibao",NA +109,134,696,"2019",6,0,100,2,0,0,"Nanfang Dushibao",NA +109,134,697,"2019",3,0,100,3,0,21,"Nanfang Dushibao",NA +109,134,699,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +109,134,701,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +109,134,704,"2019",2,0,0,3,100,100,"Nanfang Dushibao",NA +109,134,705,"2019",2,1,99,3,99,92,"Nanfang Dushibao",NA +109,134,706,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,709,"2019",4,0,100,4,0,NA,"Nanfang Dushibao",NA +109,134,712,"2019",5,1,55,3,55,50,"Nanfang Dushibao",NA +109,134,714,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,715,"2019",6,1,73,3,73,48,"Nanfang Dushibao",NA +109,134,717,"2019",3,1,0,3,0,9,"Nanfang Dushibao",NA +109,134,719,"2019",6,0,39,2,61,50,"Nanfang Dushibao",NA +109,134,720,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,724,"2019",5,0,54,2,46,30,"Nanfang Dushibao",NA +109,134,725,"2019",5,1,81,3,81,100,"Nanfang Dushibao",NA +109,134,726,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,727,"2019",3,0,9,3,91,91,"Nanfang Dushibao",NA +109,134,729,"2019",6,1,1,2,1,1,"Nanfang Dushibao",NA +109,134,731,"2019",6,0,52,3,48,39,"Nanfang Dushibao",NA +109,134,732,"2019",3,0,50,3,50,50,"Nanfang Dushibao",NA +109,134,733,"2019",2,0,45,2,55,55,"Nanfang Dushibao",NA +109,134,738,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +109,134,739,"2019",4,1,18,4,18,NA,"Nanfang Dushibao",NA +109,134,740,"2019",2,0,50,2,50,50,"Nanfang Dushibao",NA +109,134,742,"2019",5,1,0,3,0,0,"Nanfang Dushibao",NA +109,134,744,"2019",6,1,32,2,32,91,"Nanfang Dushibao",NA +109,134,746,"2019",2,0,83,3,17,17,"Nanfang Dushibao",NA +109,134,750,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +109,134,751,"2019",6,1,54,3,54,54,"Nanfang Dushibao",NA +109,134,753,"2019",5,0,8,2,92,91,"Nanfang Dushibao",NA +109,134,754,"2019",6,0,39,2,61,61,"Nanfang Dushibao",NA +109,134,757,"2019",2,0,100,3,0,100,"Nanfang Dushibao",NA +109,134,763,"2019",6,1,50,2,50,50,"Nanfang Dushibao",NA +109,134,764,"2019",6,0,100,2,0,98,"Nanfang Dushibao",NA +109,134,766,"2019",3,1,70,3,70,70,"Nanfang Dushibao",NA +109,134,769,"2019",2,0,37,3,63,63,"Nanfang Dushibao",NA +109,134,770,"2019",5,0,100,3,0,0,"Nanfang Dushibao",NA +109,134,773,"2019",2,0,0,3,100,62,"Nanfang Dushibao",NA +109,134,786,"2019",2,1,21,3,21,50,"Nanfang Dushibao",NA +109,134,788,"2019",6,0,19,2,81,78,"Nanfang Dushibao",NA +109,134,795,"2019",3,0,93,2,7,7,"Nanfang Dushibao",NA +109,134,796,"2019",4,0,81,4,19,NA,"Nanfang Dushibao",NA +109,134,802,"2019",5,0,35,3,65,0,"Nanfang Dushibao",NA +109,134,805,"2019",5,0,50,3,50,50,"Nanfang Dushibao",NA +109,134,807,"2019",6,0,0,2,100,100,"Nanfang Dushibao",NA +109,134,809,"2019",5,0,0,3,100,100,"Nanfang Dushibao",NA +109,134,810,"2019",5,0,29,3,71,52,"Nanfang Dushibao",NA +109,134,814,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,815,"2019",3,0,0,2,100,100,"Nanfang Dushibao",NA +109,134,821,"2019",3,0,57,2,43,51,"Nanfang Dushibao",NA +109,134,822,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +109,134,825,"2019",6,1,0,3,0,0,"Nanfang Dushibao",NA +109,134,827,"2019",5,0,85,3,15,9,"Nanfang Dushibao",NA +109,134,828,"2019",6,0,100,3,0,0,"Nanfang Dushibao",NA +109,134,830,"2019",2,1,20,3,20,100,"Nanfang Dushibao",NA +109,134,833,"2019",6,1,1,3,1,1,"Nanfang Dushibao",NA +109,134,834,"2019",3,0,100,3,0,0,"Nanfang Dushibao",NA +109,134,838,"2019",6,0,16,2,84,84,"Nanfang Dushibao",NA +109,134,840,"2019",6,1,4,3,4,29,"Nanfang Dushibao",NA +109,134,844,"2019",3,0,17,2,83,83,"Nanfang Dushibao",NA +109,134,848,"2019",2,1,98,2,98,93,"Nanfang Dushibao",NA +109,134,851,"2019",2,1,91,2,91,91,"Nanfang Dushibao",NA +109,134,855,"2019",3,1,30,3,30,30,"Nanfang Dushibao",NA +109,134,857,"2019",5,1,51,3,51,51,"Nanfang Dushibao",NA +109,134,858,"2019",2,0,21,3,79,79,"Nanfang Dushibao",NA +109,134,860,"2019",4,1,68,4,68,NA,"Nanfang Dushibao",NA +109,134,863,"2019",4,1,80,4,80,NA,"Nanfang Dushibao",NA +109,134,865,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +109,134,868,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +109,134,871,"2019",4,0,91,4,9,NA,"Nanfang Dushibao",NA +109,134,872,"2019",3,1,49,2,49,50,"Nanfang Dushibao",NA +109,134,874,"2019",4,1,96,4,96,NA,"Nanfang Dushibao",NA +109,134,877,"2019",5,0,59,3,41,77,"Nanfang Dushibao",NA +109,134,878,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +109,134,879,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +109,134,880,"2019",6,1,82,2,82,73,"Nanfang Dushibao",NA +109,134,884,"2019",6,1,50,2,50,50,"Nanfang Dushibao",NA +109,134,885,"2019",4,1,50,4,50,NA,"Nanfang Dushibao",NA +109,134,886,"2019",6,1,97,2,97,97,"Nanfang Dushibao",NA +109,134,895,"2019",3,0,7,3,93,74,"Nanfang Dushibao",NA +109,134,899,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,900,"2019",3,0,59,3,41,51,"Nanfang Dushibao",NA +109,134,901,"2019",2,0,72,3,28,28,"Nanfang Dushibao",NA +109,134,903,"2019",2,1,50,2,50,50,"Nanfang Dushibao",NA +109,134,912,"2019",3,0,1,3,99,99,"Nanfang Dushibao",NA +109,134,913,"2019",3,1,74,2,74,69,"Nanfang Dushibao",NA +109,134,919,"2019",5,1,75,3,75,72,"Nanfang Dushibao",NA +109,134,920,"2019",6,0,60,2,40,35,"Nanfang Dushibao",NA +109,134,922,"2019",2,0,12,2,88,88,"Nanfang Dushibao",NA +109,134,924,"2019",3,1,100,3,100,98,"Nanfang Dushibao",NA +109,134,925,"2019",2,0,100,3,0,0,"Nanfang Dushibao",NA +109,134,926,"2019",6,0,0,3,100,100,"Nanfang Dushibao",NA +109,134,936,"2019",6,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,943,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,945,"2019",5,0,54,3,46,46,"Nanfang Dushibao",NA +109,134,947,"2019",6,0,71,2,29,59,"Nanfang Dushibao",NA +109,134,951,"2019",4,0,51,4,49,NA,"Nanfang Dushibao",NA +109,134,956,"2019",6,0,89,3,11,11,"Nanfang Dushibao",NA +109,134,958,"2019",5,0,64,2,36,14,"Nanfang Dushibao",NA +109,134,960,"2019",6,1,43,3,43,43,"Nanfang Dushibao",NA +109,134,967,"2019",4,1,100,4,100,NA,"Nanfang Dushibao",NA +109,134,970,"2019",5,0,72,2,28,69,"Nanfang Dushibao",NA +109,134,973,"2019",5,1,69,3,69,58,"Nanfang Dushibao",NA +109,134,974,"2019",4,0,20,4,80,NA,"Nanfang Dushibao",NA +109,134,979,"2019",5,0,91,3,9,10,"Nanfang Dushibao",NA +109,134,986,"2019",6,1,88,2,88,88,"Nanfang Dushibao",NA +109,134,987,"2019",6,1,75,3,75,75,"Nanfang Dushibao",NA +109,134,988,"2019",5,0,87,2,13,49,"Nanfang Dushibao",NA +109,134,989,"2019",6,1,53,2,53,44,"Nanfang Dushibao",NA +109,134,990,"2019",2,0,38,3,62,50,"Nanfang Dushibao",NA +109,134,991,"2019",3,1,41,2,41,46,"Nanfang Dushibao",NA +109,134,1003,"2019",2,0,61,3,39,27,"Nanfang Dushibao",NA +109,134,1004,"2019",5,0,81,2,19,95,"Nanfang Dushibao",NA +109,134,1007,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +109,134,1008,"2019",5,0,60,3,40,40,"Nanfang Dushibao",NA +109,134,1011,"2019",6,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,1012,"2019",2,0,13,2,87,87,"Nanfang Dushibao",NA +109,134,1015,"2019",5,0,81,3,19,19,"Nanfang Dushibao",NA +109,134,1016,"2019",6,1,63,3,63,61,"Nanfang Dushibao",NA +109,134,1017,"2019",5,1,70,2,70,62,"Nanfang Dushibao",NA +109,134,1022,"2019",3,0,100,3,0,49,"Nanfang Dushibao",NA +109,134,1024,"2019",3,0,89,2,11,6,"Nanfang Dushibao",NA +109,134,1025,"2019",5,0,67,3,33,45,"Nanfang Dushibao",NA +109,134,1029,"2019",5,0,100,3,0,5,"Nanfang Dushibao",NA +109,134,1033,"2019",3,1,46,3,46,15,"Nanfang Dushibao",NA +109,134,1038,"2019",6,1,1,2,1,51,"Nanfang Dushibao",NA +109,134,1040,"2019",3,0,67,2,33,44,"Nanfang Dushibao",NA +109,134,1047,"2019",2,0,71,3,29,42,"Nanfang Dushibao",NA +109,134,1049,"2019",2,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,1052,"2019",6,1,81,2,81,1,"Nanfang Dushibao",NA +109,134,1053,"2019",2,1,100,2,100,99,"Nanfang Dushibao",NA +109,134,1056,"2019",5,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,1057,"2019",5,1,86,3,86,86,"Nanfang Dushibao",NA +109,134,1059,"2019",5,0,18,3,82,82,"Nanfang Dushibao",NA +109,134,1062,"2019",5,0,1,2,99,97,"Nanfang Dushibao",NA +109,134,1064,"2019",2,1,74,2,74,82,"Nanfang Dushibao",NA +109,134,1065,"2019",3,0,100,3,0,1,"Nanfang Dushibao",NA +109,134,1066,"2019",2,1,98,2,98,98,"Nanfang Dushibao",NA +109,134,1067,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,1069,"2019",5,0,100,2,0,99,"Nanfang Dushibao",NA +109,134,1071,"2019",3,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,1073,"2019",3,0,76,2,24,30,"Nanfang Dushibao",NA +109,134,1080,"2019",4,0,61,4,39,NA,"Nanfang Dushibao",NA +109,134,1081,"2019",3,1,81,2,81,81,"Nanfang Dushibao",NA +109,134,1085,"2019",5,0,100,3,0,50,"Nanfang Dushibao",NA +109,134,1086,"2019",2,0,85,2,15,15,"Nanfang Dushibao",NA +109,134,1090,"2019",3,1,18,3,18,18,"Nanfang Dushibao",NA +109,134,1094,"2019",2,0,9,3,91,88,"Nanfang Dushibao",NA +109,134,1096,"2019",6,1,89,2,89,87,"Nanfang Dushibao",NA +109,134,1103,"2019",3,0,88,2,12,17,"Nanfang Dushibao",NA +109,134,1107,"2019",3,1,75,2,75,79,"Nanfang Dushibao",NA +109,134,1108,"2019",3,1,74,3,74,79,"Nanfang Dushibao",NA +109,134,1110,"2019",2,1,75,3,75,78,"Nanfang Dushibao",NA +109,134,1115,"2019",3,0,49,3,51,51,"Nanfang Dushibao",NA +109,134,1116,"2019",3,1,78,3,78,83,"Nanfang Dushibao",NA +109,134,1122,"2019",6,1,92,3,92,83,"Nanfang Dushibao",NA +109,134,1124,"2019",6,1,91,2,91,87,"Nanfang Dushibao",NA +109,134,1125,"2019",2,0,57,2,43,42,"Nanfang Dushibao",NA +109,134,1126,"2019",6,0,11,2,89,82,"Nanfang Dushibao",NA +109,134,1129,"2019",5,1,82,2,82,85,"Nanfang Dushibao",NA +109,134,1131,"2019",3,0,0,3,100,100,"Nanfang Dushibao",NA +109,134,1134,"2019",6,0,85,2,15,8,"Nanfang Dushibao",NA +109,134,1139,"2019",2,1,100,3,100,100,"Nanfang Dushibao",NA +109,134,1140,"2019",5,1,88,2,88,81,"Nanfang Dushibao",NA +109,134,1141,"2019",5,1,100,2,100,100,"Nanfang Dushibao",NA +109,134,1142,"2019",3,1,84,3,84,84,"Nanfang Dushibao",NA +109,134,1144,"2019",2,0,9,3,91,91,"Nanfang Dushibao",NA +109,134,1147,"2019",3,1,47,3,47,40,"Nanfang Dushibao",NA +109,134,1148,"2019",4,0,21,4,79,NA,"Nanfang Dushibao",NA +109,134,1149,"2019",6,1,81,3,81,81,"Nanfang Dushibao",NA +109,134,1150,"2019",3,0,82,3,18,18,"Nanfang Dushibao",NA +109,134,1156,"2019",5,0,100,3,0,43,"Nanfang Dushibao",NA +109,134,1157,"2019",6,0,50,3,50,50,"Nanfang Dushibao",NA +109,134,1160,"2019",5,1,78,2,78,83,"Nanfang Dushibao",NA +109,134,1164,"2019",3,0,79,3,21,18,"Nanfang Dushibao",NA +109,134,1165,"2019",3,0,79,3,21,14,"Nanfang Dushibao",NA +109,134,1167,"2019",6,1,78,2,78,84,"Nanfang Dushibao",NA +109,135,147,"2019",2,1,85,3,85,81,"Xinhua",NA +109,135,149,"2019",2,1,35,3,35,22,"Xinhua",NA +109,135,150,"2019",3,1,88,2,88,70,"Xinhua",NA +109,135,152,"2019",6,1,16,3,16,58,"Xinhua",NA +109,135,154,"2019",3,1,88,3,88,69,"Xinhua",NA +109,135,157,"2019",6,1,45,3,45,35,"Xinhua",NA +109,135,162,"2019",2,0,0,2,100,49,"Xinhua",NA +109,135,163,"2019",2,0,0,3,100,100,"Xinhua",NA +109,135,165,"2019",2,0,0,2,100,100,"Xinhua",NA +109,135,168,"2019",6,0,50,2,50,50,"Xinhua",NA +109,135,175,"2019",2,0,80,2,20,37,"Xinhua",NA +109,135,182,"2019",5,1,81,3,81,81,"Xinhua",NA +109,135,183,"2019",3,0,19,3,81,70,"Xinhua",NA +109,135,186,"2019",6,1,82,3,82,69,"Xinhua",NA +109,135,189,"2019",4,1,72,2,72,60,"Xinhua",NA +109,135,192,"2019",3,1,93,3,93,92,"Xinhua",NA +109,135,193,"2019",3,1,79,3,79,79,"Xinhua",NA +109,135,194,"2019",6,1,92,3,92,92,"Xinhua",NA +109,135,196,"2019",4,0,100,2,0,0,"Xinhua",NA +109,135,199,"2019",5,1,70,3,70,61,"Xinhua",NA +109,135,200,"2019",3,1,63,2,63,53,"Xinhua",NA +109,135,202,"2019",6,0,65,2,35,31,"Xinhua",NA +109,135,205,"2019",3,0,0,3,100,100,"Xinhua",NA +109,135,207,"2019",6,0,100,2,0,0,"Xinhua",NA +109,135,208,"2019",2,1,82,3,82,60,"Xinhua",NA +109,135,209,"2019",4,1,92,2,92,92,"Xinhua",NA +109,135,211,"2019",3,1,100,3,100,100,"Xinhua",NA +109,135,214,"2019",4,0,10,2,90,90,"Xinhua",NA +109,135,216,"2019",5,0,6,2,94,94,"Xinhua",NA +109,135,221,"2019",3,1,100,2,100,50,"Xinhua",NA +109,135,224,"2019",5,1,67,2,67,93,"Xinhua",NA +109,135,226,"2019",6,1,89,3,89,89,"Xinhua",NA +109,135,227,"2019",4,0,86,2,14,50,"Xinhua",NA +109,135,230,"2019",3,0,50,3,50,50,"Xinhua",NA +109,135,233,"2019",2,1,100,3,100,100,"Xinhua",NA +109,135,235,"2019",6,1,55,2,55,22,"Xinhua",NA +109,135,239,"2019",6,1,93,2,93,72,"Xinhua",NA +109,135,240,"2019",5,1,85,3,85,85,"Xinhua",NA +109,135,241,"2019",4,0,69,2,31,42,"Xinhua",NA +109,135,243,"2019",4,0,0,2,100,100,"Xinhua",NA +109,135,244,"2019",5,1,76,3,76,76,"Xinhua",NA +109,135,247,"2019",2,1,0,3,0,0,"Xinhua",NA +109,135,250,"2019",5,1,72,3,72,81,"Xinhua",NA +109,135,251,"2019",6,1,57,2,57,53,"Xinhua",NA +109,135,252,"2019",5,1,100,2,100,95,"Xinhua",NA +109,135,257,"2019",5,1,90,3,90,90,"Xinhua",NA +109,135,261,"2019",6,0,31,3,69,69,"Xinhua",NA +109,135,268,"2019",2,0,30,2,70,70,"Xinhua",NA +109,135,269,"2019",5,0,100,3,0,0,"Xinhua",NA +109,135,270,"2019",6,1,100,2,100,100,"Xinhua",NA +109,135,271,"2019",6,0,93,2,7,9,"Xinhua",NA +109,135,272,"2019",2,0,50,3,50,50,"Xinhua",NA +109,135,273,"2019",5,0,34,2,66,17,"Xinhua",NA +109,135,275,"2019",6,1,74,3,74,100,"Xinhua",NA +109,135,278,"2019",3,1,86,3,86,86,"Xinhua",NA +109,135,279,"2019",3,0,100,2,0,0,"Xinhua",NA +109,135,280,"2019",6,1,100,2,100,35,"Xinhua",NA +109,135,283,"2019",6,1,61,3,61,83,"Xinhua",NA +109,135,286,"2019",4,0,87,2,13,19,"Xinhua",NA +109,135,287,"2019",4,0,50,2,50,50,"Xinhua",NA +109,135,288,"2019",6,1,73,2,73,73,"Xinhua",NA +109,135,289,"2019",5,0,68,2,32,44,"Xinhua",NA +109,135,292,"2019",5,1,100,2,100,100,"Xinhua",NA +109,135,293,"2019",5,0,89,2,11,11,"Xinhua",NA +109,135,294,"2019",5,0,81,2,19,79,"Xinhua",NA +109,135,296,"2019",2,1,100,3,100,100,"Xinhua",NA +109,135,297,"2019",6,0,1,2,99,99,"Xinhua",NA +109,135,302,"2019",4,0,50,2,50,50,"Xinhua",NA +109,135,304,"2019",5,1,100,2,100,99,"Xinhua",NA +109,135,307,"2019",6,1,94,3,94,50,"Xinhua",NA +109,135,308,"2019",3,0,26,3,74,67,"Xinhua",NA +109,135,313,"2019",3,1,100,3,100,100,"Xinhua",NA +109,135,315,"2019",3,0,0,3,100,100,"Xinhua",NA +109,135,316,"2019",6,1,70,3,70,73,"Xinhua",NA +109,135,317,"2019",2,1,100,2,100,48,"Xinhua",NA +109,135,322,"2019",5,0,51,3,49,49,"Xinhua",NA +109,135,327,"2019",4,1,50,2,50,50,"Xinhua",NA +109,135,328,"2019",2,1,100,2,100,100,"Xinhua",NA +109,135,329,"2019",6,0,100,2,0,0,"Xinhua",NA +109,135,333,"2019",5,1,0,3,0,0,"Xinhua",NA +109,135,334,"2019",5,0,50,3,50,50,"Xinhua",NA +109,135,335,"2019",6,0,69,3,31,31,"Xinhua",NA +109,135,337,"2019",4,1,100,2,100,100,"Xinhua",NA +109,135,338,"2019",3,0,86,3,14,14,"Xinhua",NA +109,135,340,"2019",6,1,77,2,77,77,"Xinhua",NA +109,135,342,"2019",4,1,88,2,88,71,"Xinhua",NA +109,135,344,"2019",3,1,82,2,82,48,"Xinhua",NA +109,135,346,"2019",5,1,100,2,100,100,"Xinhua",NA +109,135,348,"2019",3,1,99,3,99,99,"Xinhua",NA +109,135,349,"2019",2,1,62,3,62,62,"Xinhua",NA +109,135,353,"2019",2,0,81,3,19,47,"Xinhua",NA +109,135,354,"2019",3,0,70,3,30,59,"Xinhua",NA +109,135,356,"2019",5,0,100,3,0,0,"Xinhua",NA +109,135,357,"2019",2,1,89,3,89,72,"Xinhua",NA +109,135,367,"2019",5,0,74,3,26,26,"Xinhua",NA +109,135,369,"2019",3,1,70,3,70,70,"Xinhua",NA +109,135,375,"2019",5,1,50,2,50,50,"Xinhua",NA +109,135,378,"2019",5,1,61,3,61,41,"Xinhua",NA +109,135,382,"2019",3,0,100,3,0,0,"Xinhua",NA +109,135,383,"2019",6,1,0,2,0,100,"Xinhua",NA +109,135,384,"2019",5,0,90,3,10,10,"Xinhua",NA +109,135,389,"2019",3,0,56,3,44,48,"Xinhua",NA +109,135,390,"2019",2,1,7,3,7,100,"Xinhua",NA +109,135,391,"2019",5,0,50,3,50,69,"Xinhua",NA +109,135,394,"2019",6,1,81,3,81,71,"Xinhua",NA +109,135,401,"2019",3,1,43,3,43,58,"Xinhua",NA +109,135,402,"2019",3,1,37,3,37,50,"Xinhua",NA +109,135,404,"2019",4,0,59,2,41,54,"Xinhua",NA +109,135,405,"2019",6,0,78,3,22,37,"Xinhua",NA +109,135,407,"2019",6,1,100,2,100,0,"Xinhua",NA +109,135,415,"2019",3,0,50,3,50,50,"Xinhua",NA +109,135,416,"2019",2,1,50,3,50,40,"Xinhua",NA +109,135,423,"2019",4,0,34,2,66,39,"Xinhua",NA +109,135,424,"2019",5,0,82,2,18,21,"Xinhua",NA +109,135,425,"2019",4,1,96,2,96,96,"Xinhua",NA +109,135,428,"2019",5,0,90,3,10,10,"Xinhua",NA +109,135,430,"2019",2,1,63,3,63,58,"Xinhua",NA +109,135,431,"2019",3,0,52,3,48,52,"Xinhua",NA +109,135,434,"2019",5,1,66,2,66,66,"Xinhua",NA +109,135,435,"2019",3,1,79,3,79,50,"Xinhua",NA +109,135,437,"2019",5,0,11,3,89,13,"Xinhua",NA +109,135,440,"2019",2,0,24,2,76,76,"Xinhua",NA +109,135,442,"2019",6,1,55,3,55,55,"Xinhua",NA +109,135,445,"2019",6,0,41,2,59,18,"Xinhua",NA +109,135,449,"2019",4,0,0,2,100,100,"Xinhua",NA +109,135,451,"2019",5,1,0,2,0,20,"Xinhua",NA +109,135,452,"2019",6,0,49,3,51,53,"Xinhua",NA +109,135,454,"2019",5,0,10,3,90,7,"Xinhua",NA +109,135,455,"2019",6,0,21,3,79,84,"Xinhua",NA +109,135,456,"2019",5,1,100,3,100,0,"Xinhua",NA +109,135,457,"2019",3,1,62,3,62,48,"Xinhua",NA +109,135,465,"2019",5,0,77,3,23,30,"Xinhua",NA +109,135,472,"2019",5,0,50,2,50,50,"Xinhua",NA +109,135,473,"2019",2,1,100,2,100,100,"Xinhua",NA +109,135,474,"2019",6,0,27,2,73,56,"Xinhua",NA +109,135,475,"2019",3,0,52,2,48,37,"Xinhua",NA +109,135,477,"2019",5,1,86,3,86,73,"Xinhua",NA +109,135,487,"2019",5,0,38,2,62,62,"Xinhua",NA +109,135,488,"2019",2,0,68,3,32,50,"Xinhua",NA +109,135,489,"2019",4,1,59,2,59,59,"Xinhua",NA +109,135,504,"2019",3,1,39,2,39,39,"Xinhua",NA +109,135,508,"2019",4,1,52,2,52,70,"Xinhua",NA +109,135,509,"2019",2,0,79,2,21,32,"Xinhua",NA +109,135,510,"2019",4,1,85,2,85,85,"Xinhua",NA +109,135,512,"2019",2,0,59,3,41,50,"Xinhua",NA +109,135,515,"2019",5,1,88,2,88,69,"Xinhua",NA +109,135,516,"2019",3,0,50,2,50,50,"Xinhua",NA +109,135,519,"2019",5,0,50,3,50,50,"Xinhua",NA +109,135,522,"2019",5,0,62,2,38,50,"Xinhua",NA +109,135,523,"2019",2,1,33,2,33,33,"Xinhua",NA +109,135,525,"2019",5,1,65,3,65,79,"Xinhua",NA +109,135,531,"2019",3,1,59,2,59,34,"Xinhua",NA +109,135,534,"2019",2,0,61,3,39,67,"Xinhua",NA +109,135,535,"2019",2,0,73,2,27,27,"Xinhua",NA +109,135,536,"2019",2,1,87,2,87,87,"Xinhua",NA +109,135,537,"2019",4,0,55,2,45,35,"Xinhua",NA +109,135,539,"2019",4,0,100,2,0,5,"Xinhua",NA +109,135,541,"2019",5,0,21,2,79,38,"Xinhua",NA +109,135,543,"2019",4,0,55,2,45,38,"Xinhua",NA +109,135,544,"2019",2,0,61,2,39,69,"Xinhua",NA +109,135,547,"2019",2,0,71,2,29,50,"Xinhua",NA +109,135,549,"2019",3,0,53,3,47,47,"Xinhua",NA +109,135,551,"2019",4,0,68,2,32,32,"Xinhua",NA +109,135,553,"2019",2,1,36,2,36,36,"Xinhua",NA +109,135,554,"2019",3,0,45,3,55,47,"Xinhua",NA +109,135,556,"2019",5,1,33,2,33,99,"Xinhua",NA +109,135,557,"2019",6,1,83,3,83,88,"Xinhua",NA +109,135,559,"2019",2,0,27,2,73,50,"Xinhua",NA +109,135,560,"2019",6,0,25,2,75,75,"Xinhua",NA +109,135,561,"2019",3,1,32,2,32,61,"Xinhua",NA +109,135,562,"2019",6,0,23,2,77,73,"Xinhua",NA +109,135,563,"2019",2,1,78,3,78,78,"Xinhua",NA +109,135,564,"2019",2,0,80,3,20,20,"Xinhua",NA +109,135,566,"2019",3,1,82,2,82,30,"Xinhua",NA +109,135,567,"2019",4,1,100,2,100,93,"Xinhua",NA +109,135,573,"2019",2,1,0,3,0,100,"Xinhua",NA +109,135,577,"2019",4,1,50,2,50,50,"Xinhua",NA +109,135,581,"2019",5,1,74,2,74,74,"Xinhua",NA +109,135,582,"2019",6,0,57,2,43,59,"Xinhua",NA +109,135,585,"2019",3,0,50,2,50,50,"Xinhua",NA +109,135,586,"2019",2,1,81,3,81,81,"Xinhua",NA +109,135,588,"2019",2,0,71,2,29,38,"Xinhua",NA +109,135,591,"2019",6,0,54,3,46,61,"Xinhua",NA +109,135,593,"2019",5,1,75,2,75,36,"Xinhua",NA +109,135,597,"2019",6,0,40,3,60,55,"Xinhua",NA +109,135,598,"2019",5,0,50,2,50,50,"Xinhua",NA +109,135,603,"2019",2,1,65,3,65,41,"Xinhua",NA +109,135,604,"2019",4,0,64,2,36,59,"Xinhua",NA +109,135,609,"2019",4,1,50,2,50,50,"Xinhua",NA +109,135,614,"2019",3,1,50,2,50,50,"Xinhua",NA +109,135,617,"2019",3,1,42,3,42,42,"Xinhua",NA +109,135,621,"2019",5,1,98,2,98,98,"Xinhua",NA +109,135,624,"2019",2,0,79,2,21,50,"Xinhua",NA +109,135,629,"2019",5,0,94,2,6,6,"Xinhua",NA +109,135,632,"2019",5,0,78,2,22,22,"Xinhua",NA +109,135,633,"2019",5,0,100,2,0,50,"Xinhua",NA +109,135,636,"2019",3,1,42,3,42,76,"Xinhua",NA +109,135,637,"2019",4,0,50,2,50,50,"Xinhua",NA +109,135,649,"2019",5,1,100,2,100,100,"Xinhua",NA +109,135,652,"2019",4,0,91,2,9,9,"Xinhua",NA +109,135,655,"2019",4,1,100,2,100,100,"Xinhua",NA +109,135,656,"2019",6,0,52,2,48,49,"Xinhua",NA +109,135,657,"2019",5,0,91,2,9,9,"Xinhua",NA +109,135,658,"2019",6,0,25,2,75,75,"Xinhua",NA +109,135,660,"2019",4,0,100,2,0,15,"Xinhua",NA +109,135,661,"2019",3,1,61,2,61,61,"Xinhua",NA +109,135,663,"2019",6,1,100,2,100,91,"Xinhua",NA +109,135,670,"2019",4,1,50,2,50,50,"Xinhua",NA +109,135,671,"2019",2,1,0,3,0,0,"Xinhua",NA +109,135,673,"2019",2,0,0,2,100,100,"Xinhua",NA +109,135,674,"2019",5,1,89,2,89,89,"Xinhua",NA +109,135,680,"2019",2,0,56,3,44,48,"Xinhua",NA +109,135,684,"2019",2,1,65,3,65,100,"Xinhua",NA +109,135,688,"2019",4,1,89,2,89,89,"Xinhua",NA +109,135,689,"2019",5,0,100,3,0,0,"Xinhua",NA +109,135,690,"2019",4,1,12,2,12,12,"Xinhua",NA +109,135,691,"2019",2,0,74,3,26,54,"Xinhua",NA +109,135,693,"2019",6,1,0,3,0,0,"Xinhua",NA +109,135,696,"2019",6,0,100,3,0,0,"Xinhua",NA +109,135,698,"2019",5,0,0,3,100,100,"Xinhua",NA +109,135,700,"2019",4,1,0,2,0,0,"Xinhua",NA +109,135,701,"2019",6,0,0,2,100,72,"Xinhua",NA +109,135,703,"2019",4,0,0,2,100,100,"Xinhua",NA +109,135,707,"2019",6,1,100,2,100,100,"Xinhua",NA +109,135,708,"2019",2,0,71,3,29,29,"Xinhua",NA +109,135,711,"2019",4,1,99,2,99,99,"Xinhua",NA +109,135,712,"2019",5,1,50,2,50,50,"Xinhua",NA +109,135,713,"2019",6,1,73,3,73,50,"Xinhua",NA +109,135,715,"2019",6,1,48,2,48,66,"Xinhua",NA +109,135,716,"2019",6,1,31,2,31,50,"Xinhua",NA +109,135,720,"2019",6,1,100,3,100,100,"Xinhua",NA +109,135,722,"2019",3,1,50,3,50,50,"Xinhua",NA +109,135,723,"2019",3,1,49,2,49,49,"Xinhua",NA +109,135,728,"2019",6,0,86,3,14,22,"Xinhua",NA +109,135,730,"2019",6,0,50,2,50,50,"Xinhua",NA +109,135,733,"2019",2,0,45,3,55,55,"Xinhua",NA +109,135,736,"2019",4,1,100,2,100,90,"Xinhua",NA +109,135,737,"2019",6,1,50,2,50,50,"Xinhua",NA +109,135,738,"2019",2,0,50,3,50,50,"Xinhua",NA +109,135,745,"2019",2,1,85,2,85,85,"Xinhua",NA +109,135,749,"2019",2,0,50,2,50,50,"Xinhua",NA +109,135,752,"2019",2,0,50,2,50,54,"Xinhua",NA +109,135,753,"2019",5,0,0,3,100,92,"Xinhua",NA +109,135,756,"2019",3,0,25,2,75,75,"Xinhua",NA +109,135,759,"2019",4,1,70,2,70,50,"Xinhua",NA +109,135,761,"2019",4,1,88,2,88,75,"Xinhua",NA +109,135,767,"2019",4,1,100,2,100,100,"Xinhua",NA +109,135,770,"2019",5,0,100,2,0,50,"Xinhua",NA +109,135,773,"2019",2,0,38,2,62,53,"Xinhua",NA +109,135,776,"2019",2,1,80,3,80,80,"Xinhua",NA +109,135,777,"2019",6,0,50,2,50,50,"Xinhua",NA +109,135,778,"2019",4,0,100,2,0,100,"Xinhua",NA +109,135,779,"2019",3,1,50,3,50,50,"Xinhua",NA +109,135,782,"2019",4,1,50,2,50,50,"Xinhua",NA +109,135,783,"2019",4,1,80,2,80,80,"Xinhua",NA +109,135,785,"2019",4,0,50,2,50,50,"Xinhua",NA +109,135,786,"2019",2,1,50,2,50,50,"Xinhua",NA +109,135,788,"2019",6,0,7,3,93,81,"Xinhua",NA +109,135,790,"2019",6,1,0,3,0,49,"Xinhua",NA +109,135,791,"2019",4,0,79,2,21,21,"Xinhua",NA +109,135,797,"2019",3,1,100,2,100,100,"Xinhua",NA +109,135,801,"2019",3,1,100,2,100,50,"Xinhua",NA +109,135,803,"2019",5,1,100,3,100,100,"Xinhua",NA +109,135,804,"2019",3,0,50,3,50,50,"Xinhua",NA +109,135,805,"2019",5,0,50,2,50,50,"Xinhua",NA +109,135,806,"2019",3,0,0,3,100,100,"Xinhua",NA +109,135,808,"2019",5,1,49,3,49,100,"Xinhua",NA +109,135,811,"2019",4,0,100,2,0,0,"Xinhua",NA +109,135,813,"2019",4,1,16,2,16,93,"Xinhua",NA +109,135,819,"2019",5,0,0,2,100,100,"Xinhua",NA +109,135,826,"2019",5,0,81,2,19,0,"Xinhua",NA +109,135,829,"2019",3,0,52,2,48,39,"Xinhua",NA +109,135,832,"2019",6,1,100,2,100,100,"Xinhua",NA +109,135,834,"2019",3,0,100,2,0,0,"Xinhua",NA +109,135,836,"2019",3,1,100,2,100,100,"Xinhua",NA +109,135,839,"2019",6,1,65,3,65,65,"Xinhua",NA +109,135,843,"2019",6,0,100,3,0,0,"Xinhua",NA +109,135,846,"2019",4,1,100,2,100,100,"Xinhua",NA +109,135,848,"2019",2,1,100,3,100,98,"Xinhua",NA +109,135,853,"2019",3,0,72,3,28,49,"Xinhua",NA +109,135,854,"2019",6,1,90,2,90,90,"Xinhua",NA +109,135,855,"2019",3,1,30,2,30,50,"Xinhua",NA +109,135,856,"2019",3,0,92,2,8,11,"Xinhua",NA +109,135,859,"2019",6,1,100,3,100,99,"Xinhua",NA +109,135,861,"2019",3,1,50,2,50,50,"Xinhua",NA +109,135,862,"2019",4,1,92,2,92,81,"Xinhua",NA +109,135,864,"2019",3,0,32,2,68,68,"Xinhua",NA +109,135,865,"2019",6,0,0,2,100,94,"Xinhua",NA +109,135,873,"2019",2,0,100,3,0,0,"Xinhua",NA +109,135,875,"2019",2,1,52,2,52,51,"Xinhua",NA +109,135,882,"2019",4,1,50,2,50,50,"Xinhua",NA +109,135,883,"2019",5,1,7,2,7,7,"Xinhua",NA +109,135,884,"2019",6,1,50,3,50,50,"Xinhua",NA +109,135,886,"2019",6,1,97,3,97,97,"Xinhua",NA +109,135,887,"2019",5,1,100,3,100,100,"Xinhua",NA +109,135,890,"2019",6,1,100,3,100,96,"Xinhua",NA +109,135,892,"2019",6,0,0,3,100,0,"Xinhua",NA +109,135,893,"2019",2,1,0,3,0,50,"Xinhua",NA +109,135,895,"2019",3,0,26,2,74,49,"Xinhua",NA +109,135,896,"2019",3,1,99,2,99,92,"Xinhua",NA +109,135,901,"2019",2,0,72,2,28,28,"Xinhua",NA +109,135,904,"2019",3,0,68,2,32,41,"Xinhua",NA +109,135,905,"2019",6,0,0,2,100,70,"Xinhua",NA +109,135,907,"2019",4,0,25,2,75,59,"Xinhua",NA +109,135,908,"2019",4,1,100,2,100,100,"Xinhua",NA +109,135,909,"2019",4,0,24,2,76,68,"Xinhua",NA +109,135,912,"2019",3,0,1,2,99,99,"Xinhua",NA +109,135,913,"2019",3,1,83,3,83,74,"Xinhua",NA +109,135,914,"2019",4,1,100,2,100,99,"Xinhua",NA +109,135,918,"2019",3,1,100,3,100,100,"Xinhua",NA +109,135,922,"2019",2,0,6,3,94,88,"Xinhua",NA +109,135,926,"2019",6,0,0,2,100,88,"Xinhua",NA +109,135,927,"2019",2,0,0,2,100,100,"Xinhua",NA +109,135,929,"2019",3,0,82,2,18,29,"Xinhua",NA +109,135,932,"2019",2,1,90,2,90,50,"Xinhua",NA +109,135,933,"2019",5,1,96,2,96,98,"Xinhua",NA +109,135,934,"2019",3,0,50,2,50,80,"Xinhua",NA +109,135,939,"2019",2,1,75,2,75,74,"Xinhua",NA +109,135,940,"2019",4,0,50,2,50,48,"Xinhua",NA +109,135,941,"2019",4,0,0,2,100,100,"Xinhua",NA +109,135,942,"2019",6,1,90,2,90,90,"Xinhua",NA +109,135,947,"2019",6,0,81,3,19,29,"Xinhua",NA +109,135,948,"2019",5,1,43,2,43,50,"Xinhua",NA +109,135,952,"2019",6,0,0,3,100,100,"Xinhua",NA +109,135,953,"2019",3,1,80,2,80,72,"Xinhua",NA +109,135,959,"2019",5,0,0,3,100,100,"Xinhua",NA +109,135,961,"2019",2,0,39,3,61,61,"Xinhua",NA +109,135,968,"2019",4,0,100,2,0,0,"Xinhua",NA +109,135,969,"2019",5,0,100,3,0,50,"Xinhua",NA +109,135,978,"2019",2,0,100,2,0,0,"Xinhua",NA +109,135,979,"2019",5,0,90,2,10,11,"Xinhua",NA +109,135,982,"2019",4,0,84,2,16,50,"Xinhua",NA +109,135,983,"2019",3,0,92,3,8,8,"Xinhua",NA +109,135,984,"2019",4,0,80,2,20,20,"Xinhua",NA +109,135,986,"2019",6,1,88,3,88,88,"Xinhua",NA +109,135,988,"2019",5,0,87,3,13,13,"Xinhua",NA +109,135,990,"2019",2,0,50,2,50,50,"Xinhua",NA +109,135,992,"2019",3,0,53,3,47,38,"Xinhua",NA +109,135,993,"2019",2,1,100,3,100,100,"Xinhua",NA +109,135,994,"2019",2,0,50,2,50,50,"Xinhua",NA +109,135,996,"2019",5,1,83,2,83,79,"Xinhua",NA +109,135,997,"2019",5,0,8,3,92,85,"Xinhua",NA +109,135,1001,"2019",3,0,70,3,30,79,"Xinhua",NA +109,135,1002,"2019",5,1,31,2,31,62,"Xinhua",NA +109,135,1005,"2019",3,1,97,3,97,92,"Xinhua",NA +109,135,1010,"2019",6,0,71,3,29,72,"Xinhua",NA +109,135,1012,"2019",2,0,10,3,90,87,"Xinhua",NA +109,135,1013,"2019",2,1,100,3,100,100,"Xinhua",NA +109,135,1020,"2019",5,1,12,2,12,60,"Xinhua",NA +109,135,1023,"2019",4,0,73,2,27,98,"Xinhua",NA +109,135,1024,"2019",3,0,94,3,6,11,"Xinhua",NA +109,135,1026,"2019",6,0,60,2,40,40,"Xinhua",NA +109,135,1028,"2019",6,0,50,3,50,50,"Xinhua",NA +109,135,1030,"2019",4,1,100,2,100,93,"Xinhua",NA +109,135,1031,"2019",5,0,90,2,10,20,"Xinhua",NA +109,135,1035,"2019",3,1,100,3,100,100,"Xinhua",NA +109,135,1036,"2019",2,1,100,3,100,100,"Xinhua",NA +109,135,1039,"2019",2,1,82,2,82,72,"Xinhua",NA +109,135,1042,"2019",4,1,97,2,97,97,"Xinhua",NA +109,135,1043,"2019",3,1,100,3,100,100,"Xinhua",NA +109,135,1045,"2019",6,1,100,2,100,100,"Xinhua",NA +109,135,1059,"2019",5,0,18,2,82,82,"Xinhua",NA +109,135,1063,"2019",4,1,54,2,54,53,"Xinhua",NA +109,135,1070,"2019",5,0,100,2,0,17,"Xinhua",NA +109,135,1071,"2019",3,1,100,2,100,100,"Xinhua",NA +109,135,1074,"2019",3,1,50,2,50,50,"Xinhua",NA +109,135,1077,"2019",5,0,100,2,0,50,"Xinhua",NA +109,135,1079,"2019",4,0,100,2,0,100,"Xinhua",NA +109,135,1083,"2019",6,1,61,2,61,61,"Xinhua",NA +109,135,1088,"2019",2,1,51,2,51,51,"Xinhua",NA +109,135,1097,"2019",3,0,82,2,18,22,"Xinhua",NA +109,135,1099,"2019",6,0,74,2,26,5,"Xinhua",NA +109,135,1102,"2019",2,1,0,2,0,0,"Xinhua",NA +109,135,1105,"2019",4,1,73,2,73,79,"Xinhua",NA +109,135,1115,"2019",3,0,49,2,51,51,"Xinhua",NA +109,135,1116,"2019",3,1,83,2,83,83,"Xinhua",NA +109,135,1119,"2019",5,1,80,2,80,50,"Xinhua",NA +109,135,1120,"2019",2,1,75,3,75,80,"Xinhua",NA +109,135,1122,"2019",6,1,83,2,83,83,"Xinhua",NA +109,135,1124,"2019",6,1,96,3,96,91,"Xinhua",NA +109,135,1126,"2019",6,0,8,3,92,89,"Xinhua",NA +109,135,1131,"2019",3,0,0,2,100,87,"Xinhua",NA +109,135,1132,"2019",3,1,94,3,94,94,"Xinhua",NA +109,135,1134,"2019",6,0,82,3,18,15,"Xinhua",NA +109,135,1137,"2019",4,0,70,2,30,21,"Xinhua",NA +109,135,1139,"2019",2,1,100,2,100,100,"Xinhua",NA +109,135,1140,"2019",5,1,95,3,95,88,"Xinhua",NA +109,135,1143,"2019",6,0,17,2,83,21,"Xinhua",NA +109,135,1145,"2019",6,1,90,3,90,83,"Xinhua",NA +109,135,1147,"2019",3,1,40,2,40,25,"Xinhua",NA +109,135,1150,"2019",3,0,82,2,18,18,"Xinhua",NA +109,135,1152,"2019",4,0,40,2,60,50,"Xinhua",NA +109,135,1153,"2019",5,1,64,2,64,64,"Xinhua",NA +109,135,1154,"2019",3,1,79,3,79,79,"Xinhua",NA +109,135,1155,"2019",4,0,80,2,20,20,"Xinhua",NA +109,135,1157,"2019",6,0,50,2,50,50,"Xinhua",NA +109,135,1158,"2019",4,0,77,2,23,19,"Xinhua",NA +109,135,1159,"2019",3,1,70,2,70,66,"Xinhua",NA +109,135,1160,"2019",5,1,73,3,73,78,"Xinhua",NA +109,135,1161,"2019",5,0,83,2,17,17,"Xinhua",NA +109,135,1162,"2019",4,0,80,2,20,14,"Xinhua",NA +109,135,1166,"2019",2,1,81,2,81,87,"Xinhua",NA +109,135,1167,"2019",6,1,73,3,73,78,"Xinhua",NA +109,135,1168,"2019",6,1,28,2,28,77,"Xinhua",NA +109,136,144,"2019",2,1,64,3,64,40,"Huanqiu",NA +109,136,146,"2019",3,1,81,2,81,51,"Huanqiu",NA +109,136,148,"2019",3,0,32,2,68,68,"Huanqiu",NA +109,136,150,"2019",3,1,30,3,30,88,"Huanqiu",NA +109,136,153,"2019",3,1,21,2,21,50,"Huanqiu",NA +109,136,157,"2019",6,1,35,2,35,40,"Huanqiu",NA +109,136,160,"2019",3,1,0,2,0,0,"Huanqiu",NA +109,136,161,"2019",3,1,78,2,78,78,"Huanqiu",NA +109,136,162,"2019",2,0,0,3,100,100,"Huanqiu",NA +109,136,164,"2019",5,0,7,3,93,93,"Huanqiu",NA +109,136,166,"2019",3,1,83,2,83,71,"Huanqiu",NA +109,136,167,"2019",5,0,10,2,90,19,"Huanqiu",NA +109,136,168,"2019",6,0,24,3,76,50,"Huanqiu",NA +109,136,173,"2019",4,1,100,5,100,NA,"Huanqiu",NA +109,136,174,"2019",6,1,86,3,86,83,"Huanqiu",NA +109,136,179,"2019",2,1,64,3,64,56,"Huanqiu",NA +109,136,185,"2019",4,0,26,5,74,NA,"Huanqiu",NA +109,136,187,"2019",3,0,87,2,13,22,"Huanqiu",NA +109,136,188,"2019",2,0,90,3,10,20,"Huanqiu",NA +109,136,192,"2019",3,1,92,2,92,91,"Huanqiu",NA +109,136,199,"2019",5,1,61,2,61,70,"Huanqiu",NA +109,136,205,"2019",3,0,0,2,100,100,"Huanqiu",NA +109,136,206,"2019",4,1,80,5,80,NA,"Huanqiu",NA +109,136,208,"2019",2,1,60,2,60,80,"Huanqiu",NA +109,136,210,"2019",2,1,100,3,100,100,"Huanqiu",NA +109,136,211,"2019",3,1,100,2,100,100,"Huanqiu",NA +109,136,213,"2019",3,1,85,2,85,81,"Huanqiu",NA +109,136,217,"2019",3,1,30,2,30,50,"Huanqiu",NA +109,136,218,"2019",5,0,100,2,0,0,"Huanqiu",NA +109,136,220,"2019",6,0,100,3,0,12,"Huanqiu",NA +109,136,223,"2019",6,0,88,3,12,12,"Huanqiu",NA +109,136,226,"2019",6,1,89,2,89,89,"Huanqiu",NA +109,136,228,"2019",2,1,78,3,78,94,"Huanqiu",NA +109,136,229,"2019",3,0,55,3,45,45,"Huanqiu",NA +109,136,231,"2019",5,0,100,2,0,0,"Huanqiu",NA +109,136,232,"2019",6,0,90,3,10,30,"Huanqiu",NA +109,136,233,"2019",2,1,100,2,100,100,"Huanqiu",NA +109,136,234,"2019",2,0,100,2,0,28,"Huanqiu",NA +109,136,235,"2019",6,1,89,3,89,55,"Huanqiu",NA +109,136,236,"2019",3,0,0,2,100,100,"Huanqiu",NA +109,136,237,"2019",6,1,100,3,100,98,"Huanqiu",NA +109,136,242,"2019",5,0,100,2,0,0,"Huanqiu",NA +109,136,244,"2019",5,1,76,2,76,30,"Huanqiu",NA +109,136,247,"2019",2,1,0,2,0,0,"Huanqiu",NA +109,136,248,"2019",6,0,50,2,50,50,"Huanqiu",NA +109,136,253,"2019",2,1,52,3,52,39,"Huanqiu",NA +109,136,255,"2019",5,1,96,2,96,92,"Huanqiu",NA +109,136,257,"2019",5,1,90,2,90,90,"Huanqiu",NA +109,136,258,"2019",4,1,62,5,62,NA,"Huanqiu",NA +109,136,261,"2019",6,0,31,2,69,37,"Huanqiu",NA +109,136,263,"2019",6,1,93,3,93,93,"Huanqiu",NA +109,136,264,"2019",4,1,74,5,74,NA,"Huanqiu",NA +109,136,265,"2019",6,0,80,2,20,70,"Huanqiu",NA +109,136,269,"2019",5,0,100,2,0,0,"Huanqiu",NA +109,136,274,"2019",6,1,100,2,100,100,"Huanqiu",NA +109,136,275,"2019",6,1,100,2,100,100,"Huanqiu",NA +109,136,278,"2019",3,1,86,2,86,86,"Huanqiu",NA +109,136,279,"2019",3,0,100,3,0,0,"Huanqiu",NA +109,136,281,"2019",2,1,82,2,82,71,"Huanqiu",NA +109,136,282,"2019",3,1,76,3,76,72,"Huanqiu",NA +109,136,283,"2019",6,1,83,2,83,90,"Huanqiu",NA +109,136,284,"2019",4,0,76,5,24,NA,"Huanqiu",NA +109,136,293,"2019",5,0,89,3,11,11,"Huanqiu",NA +109,136,294,"2019",5,0,91,3,9,19,"Huanqiu",NA +109,136,295,"2019",5,1,0,2,0,50,"Huanqiu",NA +109,136,297,"2019",6,0,1,3,99,99,"Huanqiu",NA +109,136,300,"2019",3,0,8,3,92,85,"Huanqiu",NA +109,136,308,"2019",3,0,33,2,67,30,"Huanqiu",NA +109,136,310,"2019",3,1,13,3,13,22,"Huanqiu",NA +109,136,311,"2019",5,1,73,3,73,73,"Huanqiu",NA +109,136,312,"2019",5,0,40,2,60,60,"Huanqiu",NA +109,136,314,"2019",4,1,80,5,80,NA,"Huanqiu",NA +109,136,315,"2019",3,0,0,2,100,50,"Huanqiu",NA +109,136,316,"2019",6,1,73,2,73,69,"Huanqiu",NA +109,136,318,"2019",6,1,72,2,72,72,"Huanqiu",NA +109,136,319,"2019",6,0,55,3,45,47,"Huanqiu",NA +109,136,323,"2019",3,0,60,2,40,50,"Huanqiu",NA +109,136,329,"2019",6,0,100,3,0,0,"Huanqiu",NA +109,136,330,"2019",3,1,29,2,29,29,"Huanqiu",NA +109,136,331,"2019",2,1,92,2,92,83,"Huanqiu",NA +109,136,332,"2019",4,0,79,5,21,NA,"Huanqiu",NA +109,136,333,"2019",5,1,0,2,0,100,"Huanqiu",NA +109,136,336,"2019",6,1,61,2,61,26,"Huanqiu",NA +109,136,339,"2019",4,0,60,5,40,NA,"Huanqiu",NA +109,136,340,"2019",6,1,95,3,95,77,"Huanqiu",NA +109,136,341,"2019",4,1,72,5,72,NA,"Huanqiu",NA +109,136,343,"2019",4,0,73,5,27,NA,"Huanqiu",NA +109,136,345,"2019",6,1,93,3,93,93,"Huanqiu",NA +109,136,346,"2019",5,1,100,3,100,100,"Huanqiu",NA +109,136,354,"2019",3,0,41,2,59,69,"Huanqiu",NA +109,136,355,"2019",3,0,69,3,31,42,"Huanqiu",NA +109,136,357,"2019",2,1,72,2,72,72,"Huanqiu",NA +109,136,359,"2019",2,0,41,2,59,66,"Huanqiu",NA +109,136,361,"2019",4,0,7,5,93,NA,"Huanqiu",NA +109,136,362,"2019",3,1,73,3,73,73,"Huanqiu",NA +109,136,367,"2019",5,0,74,2,26,26,"Huanqiu",NA +109,136,370,"2019",4,1,23,5,23,NA,"Huanqiu",NA +109,136,374,"2019",6,1,100,2,100,100,"Huanqiu",NA +109,136,379,"2019",2,1,100,2,100,100,"Huanqiu",NA +109,136,381,"2019",4,1,81,5,81,NA,"Huanqiu",NA +109,136,382,"2019",3,0,100,2,0,50,"Huanqiu",NA +109,136,386,"2019",5,0,100,3,0,19,"Huanqiu",NA +109,136,387,"2019",3,1,90,2,90,90,"Huanqiu",NA +109,136,396,"2019",3,1,98,2,98,50,"Huanqiu",NA +109,136,400,"2019",3,0,39,3,61,53,"Huanqiu",NA +109,136,405,"2019",6,0,63,2,37,27,"Huanqiu",NA +109,136,406,"2019",4,0,56,5,44,NA,"Huanqiu",NA +109,136,408,"2019",5,0,83,2,17,50,"Huanqiu",NA +109,136,409,"2019",4,0,53,5,47,NA,"Huanqiu",NA +109,136,413,"2019",5,0,34,2,66,50,"Huanqiu",NA +109,136,417,"2019",6,1,27,2,27,27,"Huanqiu",NA +109,136,418,"2019",6,0,50,2,50,50,"Huanqiu",NA +109,136,420,"2019",2,0,45,2,55,55,"Huanqiu",NA +109,136,422,"2019",4,1,83,5,83,NA,"Huanqiu",NA +109,136,424,"2019",5,0,66,3,34,18,"Huanqiu",NA +109,136,427,"2019",6,1,62,3,62,62,"Huanqiu",NA +109,136,431,"2019",3,0,48,2,52,56,"Huanqiu",NA +109,136,432,"2019",5,1,0,3,0,100,"Huanqiu",NA +109,136,436,"2019",5,0,47,3,53,49,"Huanqiu",NA +109,136,440,"2019",2,0,24,3,76,76,"Huanqiu",NA +109,136,441,"2019",3,0,89,3,11,76,"Huanqiu",NA +109,136,443,"2019",2,0,49,3,51,36,"Huanqiu",NA +109,136,446,"2019",3,0,53,3,47,0,"Huanqiu",NA +109,136,450,"2019",6,0,100,2,0,100,"Huanqiu",NA +109,136,451,"2019",5,1,0,3,0,0,"Huanqiu",NA +109,136,453,"2019",2,0,50,3,50,50,"Huanqiu",NA +109,136,456,"2019",5,1,0,2,0,50,"Huanqiu",NA +109,136,460,"2019",2,0,20,2,80,13,"Huanqiu",NA +109,136,467,"2019",4,1,100,5,100,NA,"Huanqiu",NA +109,136,469,"2019",2,1,96,3,96,90,"Huanqiu",NA +109,136,470,"2019",4,1,100,5,100,NA,"Huanqiu",NA +109,136,473,"2019",2,1,100,3,100,100,"Huanqiu",NA +109,136,476,"2019",3,0,68,2,32,56,"Huanqiu",NA +109,136,478,"2019",5,1,19,3,19,19,"Huanqiu",NA +109,136,482,"2019",4,0,71,5,29,NA,"Huanqiu",NA +109,136,483,"2019",2,0,77,2,23,50,"Huanqiu",NA +109,136,484,"2019",4,1,61,5,61,NA,"Huanqiu",NA +109,136,490,"2019",5,1,65,3,65,65,"Huanqiu",NA +109,136,493,"2019",4,1,43,5,43,NA,"Huanqiu",NA +109,136,495,"2019",2,1,71,2,71,38,"Huanqiu",NA +109,136,496,"2019",2,0,60,2,40,61,"Huanqiu",NA +109,136,498,"2019",5,1,86,2,86,86,"Huanqiu",NA +109,136,500,"2019",2,1,100,2,100,100,"Huanqiu",NA +109,136,502,"2019",5,0,89,3,11,11,"Huanqiu",NA +109,136,506,"2019",5,0,40,3,60,70,"Huanqiu",NA +109,136,509,"2019",2,0,36,3,64,21,"Huanqiu",NA +109,136,514,"2019",3,0,76,3,24,38,"Huanqiu",NA +109,136,516,"2019",3,0,50,3,50,50,"Huanqiu",NA +109,136,518,"2019",3,1,79,2,79,62,"Huanqiu",NA +109,136,521,"2019",5,1,80,3,80,34,"Huanqiu",NA +109,136,522,"2019",5,0,67,3,33,38,"Huanqiu",NA +109,136,524,"2019",4,0,53,5,47,NA,"Huanqiu",NA +109,136,526,"2019",2,1,79,3,79,79,"Huanqiu",NA +109,136,531,"2019",3,1,43,3,43,59,"Huanqiu",NA +109,136,534,"2019",2,0,33,2,67,27,"Huanqiu",NA +109,136,535,"2019",2,0,29,3,71,27,"Huanqiu",NA +109,136,538,"2019",6,1,74,3,74,68,"Huanqiu",NA +109,136,546,"2019",4,1,66,5,66,NA,"Huanqiu",NA +109,136,553,"2019",2,1,75,3,75,36,"Huanqiu",NA +109,136,558,"2019",3,0,33,2,67,67,"Huanqiu",NA +109,136,561,"2019",3,1,82,3,82,32,"Huanqiu",NA +109,136,563,"2019",2,1,78,2,78,78,"Huanqiu",NA +109,136,564,"2019",2,0,80,2,20,20,"Huanqiu",NA +109,136,575,"2019",2,1,57,3,57,100,"Huanqiu",NA +109,136,579,"2019",3,1,27,3,27,27,"Huanqiu",NA +109,136,587,"2019",6,0,50,3,50,50,"Huanqiu",NA +109,136,588,"2019",2,0,78,3,22,29,"Huanqiu",NA +109,136,591,"2019",6,0,39,2,61,31,"Huanqiu",NA +109,136,592,"2019",4,0,71,5,29,NA,"Huanqiu",NA +109,136,593,"2019",5,1,64,3,64,75,"Huanqiu",NA +109,136,594,"2019",3,1,74,3,74,38,"Huanqiu",NA +109,136,596,"2019",6,0,50,2,50,50,"Huanqiu",NA +109,136,597,"2019",6,0,45,2,55,38,"Huanqiu",NA +109,136,601,"2019",2,0,65,2,35,29,"Huanqiu",NA +109,136,605,"2019",3,0,67,3,33,33,"Huanqiu",NA +109,136,606,"2019",5,0,51,2,49,49,"Huanqiu",NA +109,136,607,"2019",3,0,91,3,9,44,"Huanqiu",NA +109,136,610,"2019",2,0,65,3,35,35,"Huanqiu",NA +109,136,611,"2019",4,0,50,5,50,NA,"Huanqiu",NA +109,136,612,"2019",2,0,40,3,60,60,"Huanqiu",NA +109,136,619,"2019",2,1,42,2,42,45,"Huanqiu",NA +109,136,622,"2019",3,1,50,3,50,50,"Huanqiu",NA +109,136,626,"2019",6,1,80,2,80,3,"Huanqiu",NA +109,136,627,"2019",3,0,100,2,0,0,"Huanqiu",NA +109,136,630,"2019",5,0,100,2,0,0,"Huanqiu",NA +109,136,631,"2019",5,0,72,2,28,28,"Huanqiu",NA +109,136,632,"2019",5,0,78,3,22,22,"Huanqiu",NA +109,136,633,"2019",5,0,100,3,0,0,"Huanqiu",NA +109,136,634,"2019",6,1,71,2,71,50,"Huanqiu",NA +109,136,635,"2019",2,0,100,2,0,0,"Huanqiu",NA +109,136,640,"2019",5,1,87,2,87,87,"Huanqiu",NA +109,136,641,"2019",6,0,82,3,18,24,"Huanqiu",NA +109,136,642,"2019",5,0,27,3,73,13,"Huanqiu",NA +109,136,644,"2019",6,1,66,2,66,50,"Huanqiu",NA +109,136,648,"2019",3,0,50,2,50,50,"Huanqiu",NA +109,136,649,"2019",5,1,100,3,100,100,"Huanqiu",NA +109,136,653,"2019",3,0,100,2,0,0,"Huanqiu",NA +109,136,654,"2019",6,1,100,3,100,100,"Huanqiu",NA +109,136,657,"2019",5,0,91,3,9,9,"Huanqiu",NA +109,136,659,"2019",3,1,100,2,100,100,"Huanqiu",NA +109,136,662,"2019",6,0,100,3,0,14,"Huanqiu",NA +109,136,664,"2019",5,0,50,3,50,50,"Huanqiu",NA +109,136,667,"2019",5,0,50,3,50,50,"Huanqiu",NA +109,136,669,"2019",2,1,95,3,95,50,"Huanqiu",NA +109,136,671,"2019",2,1,0,2,0,100,"Huanqiu",NA +109,136,673,"2019",2,0,0,3,100,100,"Huanqiu",NA +109,136,676,"2019",3,0,75,3,25,25,"Huanqiu",NA +109,136,678,"2019",5,1,76,3,76,32,"Huanqiu",NA +109,136,681,"2019",4,0,73,5,27,NA,"Huanqiu",NA +109,136,682,"2019",3,1,81,3,81,81,"Huanqiu",NA +109,136,686,"2019",3,0,100,2,0,0,"Huanqiu",NA +109,136,689,"2019",5,0,100,2,0,0,"Huanqiu",NA +109,136,693,"2019",6,1,0,2,0,0,"Huanqiu",NA +109,136,697,"2019",3,0,79,2,21,50,"Huanqiu",NA +109,136,698,"2019",5,0,0,2,100,100,"Huanqiu",NA +109,136,702,"2019",3,1,59,2,59,37,"Huanqiu",NA +109,136,704,"2019",2,0,0,2,100,100,"Huanqiu",NA +109,136,705,"2019",2,1,92,2,92,85,"Huanqiu",NA +109,136,707,"2019",6,1,59,3,59,100,"Huanqiu",NA +109,136,708,"2019",2,0,71,2,29,29,"Huanqiu",NA +109,136,710,"2019",3,1,5,2,5,13,"Huanqiu",NA +109,136,714,"2019",3,1,100,2,100,50,"Huanqiu",NA +109,136,717,"2019",3,1,9,2,9,50,"Huanqiu",NA +109,136,718,"2019",5,1,18,2,18,40,"Huanqiu",NA +109,136,719,"2019",6,0,31,3,69,61,"Huanqiu",NA +109,136,721,"2019",2,1,100,3,100,100,"Huanqiu",NA +109,136,722,"2019",3,1,50,2,50,40,"Huanqiu",NA +109,136,725,"2019",5,1,100,2,100,100,"Huanqiu",NA +109,136,726,"2019",5,1,100,2,100,89,"Huanqiu",NA +109,136,727,"2019",3,0,9,2,91,80,"Huanqiu",NA +109,136,729,"2019",6,1,1,3,1,1,"Huanqiu",NA +109,136,730,"2019",6,0,50,3,50,50,"Huanqiu",NA +109,136,732,"2019",3,0,50,2,50,50,"Huanqiu",NA +109,136,737,"2019",6,1,50,3,50,50,"Huanqiu",NA +109,136,740,"2019",2,0,50,3,50,50,"Huanqiu",NA +109,136,741,"2019",3,0,37,3,63,50,"Huanqiu",NA +109,136,742,"2019",5,1,0,2,0,0,"Huanqiu",NA +109,136,745,"2019",2,1,85,3,85,85,"Huanqiu",NA +109,136,746,"2019",2,0,83,2,17,84,"Huanqiu",NA +109,136,751,"2019",6,1,54,2,54,50,"Huanqiu",NA +109,136,755,"2019",3,1,95,2,95,95,"Huanqiu",NA +109,136,765,"2019",2,1,1,3,1,100,"Huanqiu",NA +109,136,769,"2019",2,0,37,2,63,63,"Huanqiu",NA +109,136,772,"2019",6,0,100,2,0,0,"Huanqiu",NA +109,136,775,"2019",4,0,2,5,98,NA,"Huanqiu",NA +109,136,776,"2019",2,1,80,2,80,80,"Huanqiu",NA +109,136,777,"2019",6,0,50,3,50,50,"Huanqiu",NA +109,136,780,"2019",6,1,92,2,92,92,"Huanqiu",NA +109,136,793,"2019",6,0,53,3,47,83,"Huanqiu",NA +109,136,801,"2019",3,1,0,3,0,100,"Huanqiu",NA +109,136,802,"2019",5,0,100,2,0,0,"Huanqiu",NA +109,136,803,"2019",5,1,100,2,100,100,"Huanqiu",NA +109,136,806,"2019",3,0,0,2,100,100,"Huanqiu",NA +109,136,808,"2019",5,1,100,2,100,0,"Huanqiu",NA +109,136,809,"2019",5,0,0,2,100,100,"Huanqiu",NA +109,136,810,"2019",5,0,48,2,52,52,"Huanqiu",NA +109,136,817,"2019",4,0,68,5,32,NA,"Huanqiu",NA +109,136,818,"2019",3,1,100,3,100,31,"Huanqiu",NA +109,136,820,"2019",4,1,50,5,50,NA,"Huanqiu",NA +109,136,822,"2019",6,1,0,2,0,50,"Huanqiu",NA +109,136,823,"2019",2,0,40,2,60,21,"Huanqiu",NA +109,136,824,"2019",6,1,28,3,28,87,"Huanqiu",NA +109,136,825,"2019",6,1,0,2,0,50,"Huanqiu",NA +109,136,826,"2019",5,0,30,3,70,19,"Huanqiu",NA +109,136,828,"2019",6,0,100,2,0,0,"Huanqiu",NA +109,136,829,"2019",3,0,64,3,36,48,"Huanqiu",NA +109,136,835,"2019",3,1,41,3,41,41,"Huanqiu",NA +109,136,838,"2019",6,0,16,3,84,84,"Huanqiu",NA +109,136,839,"2019",6,1,65,2,65,65,"Huanqiu",NA +109,136,840,"2019",6,1,29,2,29,0,"Huanqiu",NA +109,136,843,"2019",6,0,100,2,0,0,"Huanqiu",NA +109,136,844,"2019",3,0,9,3,91,83,"Huanqiu",NA +109,136,845,"2019",5,0,50,2,50,50,"Huanqiu",NA +109,136,847,"2019",4,1,100,5,100,NA,"Huanqiu",NA +109,136,849,"2019",6,0,100,3,0,0,"Huanqiu",NA +109,136,850,"2019",3,1,85,3,85,29,"Huanqiu",NA +109,136,854,"2019",6,1,90,3,90,90,"Huanqiu",NA +109,136,856,"2019",3,0,91,3,9,8,"Huanqiu",NA +109,136,859,"2019",6,1,99,2,99,91,"Huanqiu",NA +109,136,864,"2019",3,0,28,3,72,68,"Huanqiu",NA +109,136,872,"2019",3,1,52,3,52,49,"Huanqiu",NA +109,136,873,"2019",2,0,100,2,0,100,"Huanqiu",NA +109,136,875,"2019",2,1,53,3,53,52,"Huanqiu",NA +109,136,879,"2019",6,0,0,2,100,100,"Huanqiu",NA +109,136,889,"2019",2,1,0,3,0,100,"Huanqiu",NA +109,136,890,"2019",6,1,96,2,96,88,"Huanqiu",NA +109,136,894,"2019",2,0,79,3,21,24,"Huanqiu",NA +109,136,898,"2019",2,1,92,3,92,92,"Huanqiu",NA +109,136,902,"2019",2,0,100,3,0,28,"Huanqiu",NA +109,136,904,"2019",3,0,77,3,23,32,"Huanqiu",NA +109,136,906,"2019",2,0,71,2,29,29,"Huanqiu",NA +109,136,910,"2019",4,1,62,5,62,NA,"Huanqiu",NA +109,136,917,"2019",3,1,72,3,72,72,"Huanqiu",NA +109,136,918,"2019",3,1,100,2,100,99,"Huanqiu",NA +109,136,920,"2019",6,0,75,3,25,40,"Huanqiu",NA +109,136,924,"2019",3,1,98,2,98,92,"Huanqiu",NA +109,136,925,"2019",2,0,100,2,0,50,"Huanqiu",NA +109,136,929,"2019",3,0,70,3,30,18,"Huanqiu",NA +109,136,930,"2019",5,0,91,2,9,85,"Huanqiu",NA +109,136,932,"2019",2,1,91,3,91,90,"Huanqiu",NA +109,136,934,"2019",3,0,75,3,25,50,"Huanqiu",NA +109,136,936,"2019",6,1,100,3,100,100,"Huanqiu",NA +109,136,938,"2019",5,0,50,2,50,50,"Huanqiu",NA +109,136,939,"2019",2,1,71,3,71,75,"Huanqiu",NA +109,136,942,"2019",6,1,90,3,90,90,"Huanqiu",NA +109,136,946,"2019",2,0,82,2,18,18,"Huanqiu",NA +109,136,949,"2019",4,0,72,5,28,NA,"Huanqiu",NA +109,136,953,"2019",3,1,80,3,80,80,"Huanqiu",NA +109,136,955,"2019",6,0,50,3,50,50,"Huanqiu",NA +109,136,956,"2019",6,0,89,2,11,11,"Huanqiu",NA +109,136,958,"2019",5,0,50,3,50,36,"Huanqiu",NA +109,136,960,"2019",6,1,43,2,43,43,"Huanqiu",NA +109,136,966,"2019",4,0,72,5,28,NA,"Huanqiu",NA +109,136,970,"2019",5,0,81,3,19,28,"Huanqiu",NA +109,136,973,"2019",5,1,58,2,58,66,"Huanqiu",NA +109,136,975,"2019",3,1,5,2,5,92,"Huanqiu",NA +109,136,977,"2019",5,0,48,3,52,52,"Huanqiu",NA +109,136,980,"2019",6,1,83,3,83,78,"Huanqiu",NA +109,136,985,"2019",2,1,51,2,51,0,"Huanqiu",NA +109,136,989,"2019",6,1,54,3,54,53,"Huanqiu",NA +109,136,991,"2019",3,1,67,3,67,41,"Huanqiu",NA +109,136,992,"2019",3,0,62,2,38,60,"Huanqiu",NA +109,136,993,"2019",2,1,100,2,100,92,"Huanqiu",NA +109,136,997,"2019",5,0,15,2,85,77,"Huanqiu",NA +109,136,1000,"2019",3,1,0,3,0,9,"Huanqiu",NA +109,136,1001,"2019",3,0,21,2,79,79,"Huanqiu",NA +109,136,1003,"2019",2,0,73,2,27,18,"Huanqiu",NA +109,136,1004,"2019",5,0,15,3,85,19,"Huanqiu",NA +109,136,1005,"2019",3,1,92,2,92,72,"Huanqiu",NA +109,136,1006,"2019",6,0,7,3,93,48,"Huanqiu",NA +109,136,1007,"2019",3,0,0,2,100,100,"Huanqiu",NA +109,136,1009,"2019",4,1,100,5,100,NA,"Huanqiu",NA +109,136,1013,"2019",2,1,100,2,100,100,"Huanqiu",NA +109,136,1014,"2019",6,1,100,3,100,100,"Huanqiu",NA +109,136,1017,"2019",5,1,66,3,66,70,"Huanqiu",NA +109,136,1018,"2019",5,1,86,3,86,100,"Huanqiu",NA +109,136,1021,"2019",6,0,25,2,75,68,"Huanqiu",NA +109,136,1025,"2019",5,0,55,2,45,29,"Huanqiu",NA +109,136,1026,"2019",6,0,60,3,40,40,"Huanqiu",NA +109,136,1027,"2019",6,1,100,2,100,76,"Huanqiu",NA +109,136,1029,"2019",5,0,95,2,5,5,"Huanqiu",NA +109,136,1031,"2019",5,0,90,3,10,10,"Huanqiu",NA +109,136,1033,"2019",3,1,15,2,15,88,"Huanqiu",NA +109,136,1034,"2019",6,1,100,2,100,100,"Huanqiu",NA +109,136,1039,"2019",2,1,69,3,69,82,"Huanqiu",NA +109,136,1044,"2019",2,1,24,2,24,78,"Huanqiu",NA +109,136,1047,"2019",2,0,58,2,42,59,"Huanqiu",NA +109,136,1048,"2019",2,0,81,2,19,49,"Huanqiu",NA +109,136,1049,"2019",2,1,100,3,100,100,"Huanqiu",NA +109,136,1050,"2019",6,0,78,3,22,50,"Huanqiu",NA +109,136,1053,"2019",2,1,100,3,100,100,"Huanqiu",NA +109,136,1054,"2019",2,0,15,2,85,87,"Huanqiu",NA +109,136,1055,"2019",2,0,3,2,97,84,"Huanqiu",NA +109,136,1056,"2019",5,1,100,2,100,100,"Huanqiu",NA +109,136,1060,"2019",6,0,100,3,0,100,"Huanqiu",NA +109,136,1062,"2019",5,0,1,3,99,99,"Huanqiu",NA +109,136,1066,"2019",2,1,98,3,98,98,"Huanqiu",NA +109,136,1067,"2019",5,1,100,3,100,100,"Huanqiu",NA +109,136,1069,"2019",5,0,100,3,0,0,"Huanqiu",NA +109,136,1070,"2019",5,0,100,3,0,0,"Huanqiu",NA +109,136,1073,"2019",3,0,81,3,19,24,"Huanqiu",NA +109,136,1077,"2019",5,0,100,3,0,0,"Huanqiu",NA +109,136,1081,"2019",3,1,81,3,81,81,"Huanqiu",NA +109,136,1082,"2019",5,1,100,3,100,82,"Huanqiu",NA +109,136,1084,"2019",3,0,71,2,29,61,"Huanqiu",NA +109,136,1091,"2019",2,1,82,3,82,80,"Huanqiu",NA +109,136,1092,"2019",2,0,99,3,1,43,"Huanqiu",NA +109,136,1093,"2019",3,0,81,2,19,26,"Huanqiu",NA +109,136,1094,"2019",2,0,12,2,88,80,"Huanqiu",NA +109,136,1097,"2019",3,0,91,3,9,18,"Huanqiu",NA +109,136,1102,"2019",2,1,0,3,0,0,"Huanqiu",NA +109,136,1103,"2019",3,0,88,3,12,12,"Huanqiu",NA +109,136,1106,"2019",2,0,72,3,28,24,"Huanqiu",NA +109,136,1108,"2019",3,1,79,2,79,85,"Huanqiu",NA +109,136,1110,"2019",2,1,78,2,78,83,"Huanqiu",NA +109,136,1117,"2019",2,0,50,3,50,100,"Huanqiu",NA +109,136,1119,"2019",5,1,46,3,46,80,"Huanqiu",NA +109,136,1125,"2019",2,0,59,3,41,43,"Huanqiu",NA +109,136,1127,"2019",5,1,100,2,100,92,"Huanqiu",NA +109,136,1128,"2019",4,0,10,5,90,NA,"Huanqiu",NA +109,136,1129,"2019",5,1,79,3,79,82,"Huanqiu",NA +109,136,1141,"2019",5,1,100,3,100,100,"Huanqiu",NA +109,136,1142,"2019",3,1,84,2,84,84,"Huanqiu",NA +109,136,1143,"2019",6,0,6,3,94,83,"Huanqiu",NA +109,136,1144,"2019",2,0,9,2,91,91,"Huanqiu",NA +109,136,1145,"2019",6,1,83,2,83,68,"Huanqiu",NA +109,136,1151,"2019",4,0,100,5,0,NA,"Huanqiu",NA +109,136,1153,"2019",5,1,64,3,64,64,"Huanqiu",NA +109,136,1154,"2019",3,1,79,2,79,79,"Huanqiu",NA +109,136,1159,"2019",3,1,78,3,78,70,"Huanqiu",NA +109,136,1163,"2019",2,0,73,3,27,22,"Huanqiu",NA +109,136,1168,"2019",6,1,78,3,78,28,"Huanqiu",NA +110,NA,1,"2017",1,1,90,3,90,15,NA,NA +110,NA,1,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1,"2017",1,1,15,2,15,1,NA,NA +110,NA,1,"2017",1,1,90,4,90,90,NA,NA +110,NA,2,"2017",5,0,NA,1,NA,NA,NA,NA +110,NA,3,"2017",4,1,NA,1,NA,NA,NA,NA +110,NA,4,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,4,"2017",1,0,NA,3,NA,NA,NA,NA +110,NA,4,"2017",1,0,NA,2,NA,NA,NA,NA +110,NA,4,"2017",1,0,NA,4,NA,NA,NA,NA +110,NA,5,"2017",4,0,NA,1,NA,NA,NA,NA +110,NA,6,"2017",6,0,0,1,100,NA,NA,NA +110,NA,7,"2017",3,0,100,1,0,NA,NA,NA +110,NA,8,"2017",5,1,99,1,99,NA,NA,NA +110,NA,9,"2017",3,0,1,1,99,NA,NA,NA +110,NA,10,"2017",4,1,1,1,1,NA,NA,NA +110,NA,11,"2017",5,1,99,1,99,NA,NA,NA +110,NA,12,"2017",2,0,50,1,50,NA,NA,NA +110,NA,13,"2017",2,1,99,1,99,NA,NA,NA +110,NA,14,"2017",3,1,99,1,99,NA,NA,NA +110,NA,15,"2017",4,1,50,1,50,NA,NA,NA +110,NA,16,"2017",1,0,80,2,20,67,NA,NA +110,NA,16,"2017",1,0,50,3,50,20,NA,NA +110,NA,16,"2017",1,0,33,1,67,NA,NA,NA +110,NA,16,"2017",1,0,70,4,30,50,NA,NA +110,NA,17,"2017",4,1,99,1,99,NA,NA,NA +110,NA,19,"2017",3,1,80,1,80,NA,NA,NA +110,NA,20,"2017",3,1,1,1,1,NA,NA,NA +110,NA,21,"2017",5,1,50,1,50,NA,NA,NA +110,NA,22,"2017",6,0,80,1,20,NA,NA,NA +110,NA,23,"2017",4,0,99,1,1,NA,NA,NA +110,NA,24,"2017",6,1,0,1,0,NA,NA,NA +110,NA,25,"2017",1,0,1,1,99,NA,NA,NA +110,NA,25,"2017",1,0,1,3,99,1,NA,NA +110,NA,25,"2017",1,0,99,2,1,99,NA,NA +110,NA,25,"2017",1,0,99,4,1,99,NA,NA +110,NA,26,"2017",5,1,40,1,40,NA,NA,NA +110,NA,27,"2017",4,0,99,1,1,NA,NA,NA +110,NA,28,"2017",5,0,85,1,15,NA,NA,NA +110,NA,29,"2017",4,1,NA,1,NA,NA,NA,NA +110,NA,30,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,30,"2017",1,1,NA,2,NA,NA,NA,NA +110,NA,30,"2017",1,1,NA,4,NA,NA,NA,NA +110,NA,30,"2017",1,1,NA,3,NA,NA,NA,NA +110,NA,31,"2017",6,0,NA,1,NA,NA,NA,NA +110,NA,32,"2017",6,0,NA,1,NA,NA,NA,NA +110,NA,33,"2017",6,1,50,1,50,NA,NA,NA +110,NA,34,"2017",1,1,99,1,99,NA,NA,NA +110,NA,34,"2017",1,1,99,4,99,99,NA,NA +110,NA,34,"2017",1,1,99,3,99,99,NA,NA +110,NA,34,"2017",1,1,99,2,99,99,NA,NA +110,NA,35,"2017",1,0,99,2,1,99,NA,NA +110,NA,35,"2017",1,0,1,4,99,1,NA,NA +110,NA,35,"2017",1,0,1,1,99,NA,NA,NA +110,NA,35,"2017",1,0,99,3,1,1,NA,NA +110,NA,36,"2017",2,0,55,1,45,NA,NA,NA +110,NA,37,"2017",5,1,99,1,99,NA,NA,NA +110,NA,38,"2017",3,1,99,1,99,NA,NA,NA +110,NA,39,"2017",1,1,55,1,55,NA,NA,NA +110,NA,39,"2017",1,1,40,3,40,45,NA,NA +110,NA,39,"2017",1,1,45,2,45,55,NA,NA +110,NA,39,"2017",1,1,15,4,15,40,NA,NA +110,NA,40,"2017",5,1,99,1,99,NA,NA,NA +110,NA,41,"2017",3,0,44,1,56,NA,NA,NA +110,NA,42,"2017",2,0,50,1,50,NA,NA,NA +110,NA,43,"2017",2,1,50,1,50,NA,NA,NA +110,NA,44,"2017",6,0,60,1,40,NA,NA,NA +110,NA,45,"2017",2,0,33,1,67,NA,NA,NA +110,NA,46,"2017",5,0,1,1,99,NA,NA,NA +110,NA,47,"2017",1,0,1,4,99,99,NA,NA +110,NA,47,"2017",1,0,1,2,99,50,NA,NA +110,NA,47,"2017",1,0,50,1,50,NA,NA,NA +110,NA,47,"2017",1,0,1,3,99,99,NA,NA +110,NA,48,"2017",2,1,90,1,90,NA,NA,NA +110,NA,49,"2017",6,1,20,1,20,NA,NA,NA +110,NA,50,"2017",1,0,20,4,80,80,NA,NA +110,NA,50,"2017",1,0,20,3,80,80,NA,NA +110,NA,50,"2017",1,0,32,1,68,NA,NA,NA +110,NA,50,"2017",1,0,20,2,80,68,NA,NA +110,NA,51,"2017",1,1,50,1,50,NA,NA,NA +110,NA,51,"2017",1,1,50,2,50,50,NA,NA +110,NA,51,"2017",1,1,60,3,60,50,NA,NA +110,NA,51,"2017",1,1,50,4,50,60,NA,NA +110,NA,52,"2017",4,1,52,1,52,NA,NA,NA +110,NA,53,"2017",5,0,90,1,10,NA,NA,NA +110,NA,54,"2017",2,0,50,1,50,NA,NA,NA +110,NA,55,"2017",3,0,90,1,10,NA,NA,NA +110,NA,56,"2017",1,0,80,1,20,NA,NA,NA +110,NA,56,"2017",1,0,85,3,15,25,NA,NA +110,NA,56,"2017",1,0,75,2,25,20,NA,NA +110,NA,56,"2017",1,0,90,4,10,15,NA,NA +110,NA,57,"2017",1,0,1,3,99,40,NA,NA +110,NA,57,"2017",1,0,60,2,40,40,NA,NA +110,NA,57,"2017",1,0,1,4,99,99,NA,NA +110,NA,57,"2017",1,0,60,1,40,NA,NA,NA +110,NA,58,"2017",6,1,50,1,50,NA,NA,NA +110,NA,59,"2017",1,1,90,4,90,90,NA,NA +110,NA,59,"2017",1,1,90,2,90,NA,NA,NA +110,NA,59,"2017",1,1,90,3,90,90,NA,NA +110,NA,59,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,60,"2017",1,1,1,1,1,NA,NA,NA +110,NA,60,"2017",1,1,50,4,50,50,NA,NA +110,NA,60,"2017",1,1,50,3,50,1,NA,NA +110,NA,60,"2017",1,1,1,2,1,1,NA,NA +110,NA,61,"2017",4,0,99,1,1,NA,NA,NA +110,NA,62,"2017",5,1,10,1,10,NA,NA,NA +110,NA,63,"2017",2,0,99,1,1,NA,NA,NA +110,NA,64,"2017",4,1,50,1,50,NA,NA,NA +110,NA,65,"2017",3,1,50,1,50,NA,NA,NA +110,NA,66,"2017",3,0,50,1,50,NA,NA,NA +110,NA,67,"2017",3,1,88,1,88,NA,NA,NA +110,NA,68,"2017",2,1,NA,1,NA,NA,NA,NA +110,NA,69,"2017",5,1,80,1,80,NA,NA,NA +110,NA,70,"2017",1,0,80,2,20,NA,NA,NA +110,NA,70,"2017",1,0,80,4,20,20,NA,NA +110,NA,70,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,70,"2017",1,0,80,3,20,20,NA,NA +110,NA,71,"2017",1,1,99,1,99,NA,NA,NA +110,NA,71,"2017",1,1,50,2,50,99,NA,NA +110,NA,71,"2017",1,1,99,4,99,80,NA,NA +110,NA,71,"2017",1,1,80,3,80,50,NA,NA +110,NA,72,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1169,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1170,"2017",6,0,90,1,10,NA,NA,NA +110,NA,1171,"2017",3,1,100,1,100,NA,NA,NA +110,NA,1172,"2017",6,1,100,1,100,NA,NA,NA +110,NA,1173,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1174,"2017",4,0,100,1,0,NA,NA,NA +110,NA,1175,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1176,"2017",1,1,100,4,100,100,NA,NA +110,NA,1176,"2017",1,1,100,3,100,100,NA,NA +110,NA,1176,"2017",1,1,100,1,100,NA,NA,NA +110,NA,1176,"2017",1,1,100,2,100,100,NA,NA +110,NA,1177,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1178,"2017",6,0,10,1,90,NA,NA,NA +110,NA,1179,"2017",4,0,20,1,80,NA,NA,NA +110,NA,1180,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1181,"2017",1,0,90,4,10,20,NA,NA +110,NA,1181,"2017",1,0,70,2,30,50,NA,NA +110,NA,1181,"2017",1,0,80,3,20,30,NA,NA +110,NA,1181,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1182,"2017",2,0,20,1,80,NA,NA,NA +110,NA,1183,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1183,"2017",1,0,90,3,10,20,NA,NA +110,NA,1183,"2017",1,0,80,2,20,50,NA,NA +110,NA,1183,"2017",1,0,100,4,0,10,NA,NA +110,NA,1184,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1185,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1186,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1187,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1188,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1189,"2017",3,1,0,1,0,NA,NA,NA +110,NA,1190,"2017",2,0,40,1,60,NA,NA,NA +110,NA,1191,"2017",5,1,NA,1,NA,NA,NA,NA +110,NA,1192,"2017",1,0,100,4,0,20,NA,NA +110,NA,1192,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1192,"2017",1,0,80,3,20,30,NA,NA +110,NA,1192,"2017",1,0,70,2,30,50,NA,NA +110,NA,1193,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1194,"2017",5,1,80,1,80,NA,NA,NA +110,NA,1195,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1196,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1197,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1197,"2017",1,1,99,3,99,90,NA,NA +110,NA,1197,"2017",1,1,99,4,99,99,NA,NA +110,NA,1197,"2017",1,1,90,2,90,50,NA,NA +110,NA,1198,"2017",1,0,20,1,80,NA,NA,NA +110,NA,1198,"2017",1,0,20,2,80,80,NA,NA +110,NA,1198,"2017",1,0,20,4,80,80,NA,NA +110,NA,1198,"2017",1,0,20,3,80,80,NA,NA +110,NA,1199,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1200,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1201,"2017",1,0,99,4,1,1,NA,NA +110,NA,1201,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1201,"2017",1,0,1,2,99,1,NA,NA +110,NA,1201,"2017",1,0,99,3,1,99,NA,NA +110,NA,1202,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1203,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1203,"2017",1,0,1,2,99,50,NA,NA +110,NA,1203,"2017",1,0,50,3,50,99,NA,NA +110,NA,1203,"2017",1,0,1,4,99,50,NA,NA +110,NA,1204,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1205,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1206,"2017",2,0,40,1,60,NA,NA,NA +110,NA,1207,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1208,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1209,"2017",6,1,100,1,100,NA,NA,NA +110,NA,1210,"2017",4,1,40,1,40,NA,NA,NA +110,NA,1211,"2017",4,1,30,1,30,NA,NA,NA +110,NA,1212,"2017",2,1,20,1,20,NA,NA,NA +110,NA,1213,"2017",2,0,30,1,70,NA,NA,NA +110,NA,1214,"2017",1,1,100,4,100,100,NA,NA +110,NA,1214,"2017",1,1,100,2,100,100,NA,NA +110,NA,1214,"2017",1,1,100,1,100,NA,NA,NA +110,NA,1214,"2017",1,1,100,3,100,100,NA,NA +110,NA,1215,"2017",4,0,40,1,60,NA,NA,NA +110,NA,1216,"2017",1,0,40,3,60,80,NA,NA +110,NA,1216,"2017",1,0,40,1,60,NA,NA,NA +110,NA,1216,"2017",1,0,20,2,80,60,NA,NA +110,NA,1216,"2017",1,0,20,4,80,60,NA,NA +110,NA,1217,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1218,"2017",6,1,20,1,20,NA,NA,NA +110,NA,1219,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1220,"2017",6,0,20,1,80,NA,NA,NA +110,NA,1221,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1222,"2017",4,1,80,1,80,NA,NA,NA +110,NA,1223,"2017",4,0,20,1,80,NA,NA,NA +110,NA,1224,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1225,"2017",3,0,0,1,100,NA,NA,NA +110,NA,1226,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1226,"2017",1,1,100,3,100,80,NA,NA +110,NA,1226,"2017",1,1,100,4,100,100,NA,NA +110,NA,1226,"2017",1,1,80,2,80,50,NA,NA +110,NA,1227,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1228,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1229,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1230,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1231,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1232,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1233,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1234,"2017",2,1,80,1,80,NA,NA,NA +110,NA,1235,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1236,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1237,"2017",1,1,30,3,30,47,NA,NA +110,NA,1237,"2017",1,1,47,2,47,50,NA,NA +110,NA,1237,"2017",1,1,2,4,2,30,NA,NA +110,NA,1237,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1238,"2017",4,1,80,1,80,NA,NA,NA +110,NA,1239,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1240,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1241,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1242,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1243,"2017",2,0,65,1,35,NA,NA,NA +110,NA,1244,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1245,"2017",4,1,100,1,100,NA,NA,NA +110,NA,1246,"2017",6,1,40,1,40,NA,NA,NA +110,NA,1247,"2017",1,1,99,2,99,50,NA,NA +110,NA,1247,"2017",1,1,99,3,99,99,NA,NA +110,NA,1247,"2017",1,1,99,4,99,99,NA,NA +110,NA,1247,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1248,"2017",4,0,80,1,20,NA,NA,NA +110,NA,1249,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1250,"2017",5,0,30,1,70,NA,NA,NA +110,NA,1251,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1251,"2017",1,0,NA,2,NA,NA,NA,NA +110,NA,1251,"2017",1,0,NA,4,NA,45,NA,NA +110,NA,1251,"2017",1,0,55,3,45,NA,NA,NA +110,NA,1252,"2017",5,1,NA,1,NA,NA,NA,NA +110,NA,1253,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1254,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1255,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1255,"2017",1,0,99,4,1,NA,NA,NA +110,NA,1255,"2017",1,0,NA,3,NA,NA,NA,NA +110,NA,1255,"2017",1,0,NA,2,NA,NA,NA,NA +110,NA,1256,"2017",1,1,99,2,99,99,NA,NA +110,NA,1256,"2017",1,1,99,3,99,99,NA,NA +110,NA,1256,"2017",1,1,99,4,99,99,NA,NA +110,NA,1256,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1257,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1258,"2017",6,1,1,1,1,NA,NA,NA +110,NA,1259,"2017",5,1,98,1,98,NA,NA,NA +110,NA,1260,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1261,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1262,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1263,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1263,"2017",1,0,NA,2,NA,NA,NA,NA +110,NA,1263,"2017",1,0,NA,4,NA,NA,NA,NA +110,NA,1263,"2017",1,0,NA,3,NA,NA,NA,NA +110,NA,1264,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1265,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1266,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1267,"2017",3,0,5,1,95,NA,NA,NA +110,NA,1268,"2017",1,0,99,3,1,1,NA,NA +110,NA,1268,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1268,"2017",1,0,99,4,1,1,NA,NA +110,NA,1268,"2017",1,0,99,2,1,50,NA,NA +110,NA,1269,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1270,"2017",4,1,80,1,80,NA,NA,NA +110,NA,1271,"2017",6,1,2,1,2,NA,NA,NA +110,NA,1272,"2017",5,1,55,1,55,NA,NA,NA +110,NA,1273,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1274,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1275,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1276,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1277,"2017",6,0,90,1,10,NA,NA,NA +110,NA,1278,"2017",5,1,60,1,60,NA,NA,NA +110,NA,1279,"2017",3,0,0,1,100,NA,NA,NA +110,NA,1280,"2017",1,0,1,2,99,30,NA,NA +110,NA,1280,"2017",1,0,1,4,99,99,NA,NA +110,NA,1280,"2017",1,0,1,3,99,99,NA,NA +110,NA,1280,"2017",1,0,70,1,30,NA,NA,NA +110,NA,1281,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1282,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1282,"2017",1,0,50,4,50,1,NA,NA +110,NA,1282,"2017",1,0,99,2,1,1,NA,NA +110,NA,1283,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1284,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1285,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1286,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1287,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1288,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1289,"2017",6,0,68,1,32,NA,NA,NA +110,NA,1290,"2017",1,0,40,2,60,50,NA,NA +110,NA,1290,"2017",1,0,10,3,90,60,NA,NA +110,NA,1290,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1290,"2017",1,0,NA,4,NA,90,NA,NA +110,NA,1291,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1292,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1293,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1294,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1295,"2017",1,1,1,2,1,1,NA,NA +110,NA,1295,"2017",1,1,NA,3,NA,1,NA,NA +110,NA,1295,"2017",1,1,1,4,1,NA,NA,NA +110,NA,1295,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1296,"2017",6,1,88,1,88,NA,NA,NA +110,NA,1297,"2017",3,1,20,1,20,NA,NA,NA +110,NA,1298,"2017",2,0,60,1,40,NA,NA,NA +110,NA,1299,"2017",4,0,69,1,31,NA,NA,NA +110,NA,1300,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1301,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1302,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1303,"2017",5,0,95,1,5,NA,NA,NA +110,NA,1304,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1305,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1306,"2017",2,0,NA,1,NA,NA,NA,NA +110,NA,1307,"2017",5,1,45,1,45,NA,NA,NA +110,NA,1308,"2017",3,1,1,1,1,NA,NA,NA +110,NA,1309,"2017",1,1,NA,3,NA,0,NA,NA +110,NA,1309,"2017",1,1,0,2,0,1,NA,NA +110,NA,1309,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1309,"2017",1,1,50,4,50,NA,NA,NA +110,NA,1310,"2017",6,1,1,1,1,NA,NA,NA +110,NA,1311,"2017",5,1,70,1,70,NA,NA,NA +110,NA,1312,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1313,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1314,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1315,"2017",1,1,1,3,1,1,NA,NA +110,NA,1315,"2017",1,1,1,2,1,1,NA,NA +110,NA,1315,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1316,"2017",4,0,NA,1,NA,NA,NA,NA +110,NA,1317,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1317,"2017",1,1,50,2,50,99,NA,NA +110,NA,1317,"2017",1,1,99,3,99,50,NA,NA +110,NA,1317,"2017",1,1,99,4,99,99,NA,NA +110,NA,1318,"2017",1,1,99,2,99,1,NA,NA +110,NA,1318,"2017",1,1,99,3,99,99,NA,NA +110,NA,1318,"2017",1,1,99,4,99,99,NA,NA +110,NA,1318,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1319,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1320,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1321,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1322,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1323,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1324,"2017",2,1,10,1,10,NA,NA,NA +110,NA,1325,"2017",5,0,85,1,15,NA,NA,NA +110,NA,1326,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1327,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1328,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1330,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1331,"2017",1,1,99,4,99,99,NA,NA +110,NA,1331,"2017",1,1,50,2,50,1,NA,NA +110,NA,1331,"2017",1,1,99,3,99,50,NA,NA +110,NA,1331,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1332,"2017",2,0,5,1,95,NA,NA,NA +110,NA,1333,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1334,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1335,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1336,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1337,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1338,"2017",5,1,30,1,30,NA,NA,NA +110,NA,1339,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1340,"2017",6,0,NA,1,NA,NA,NA,NA +110,NA,1341,"2017",2,1,20,1,20,NA,NA,NA +110,NA,1342,"2017",2,0,40,1,60,NA,NA,NA +110,NA,1343,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1344,"2017",6,0,10,1,90,NA,NA,NA +110,NA,1345,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1346,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1347,"2017",6,0,NA,1,NA,NA,NA,NA +110,NA,1348,"2017",1,1,5,3,5,5,NA,NA +110,NA,1348,"2017",1,1,5,2,5,3,NA,NA +110,NA,1348,"2017",1,1,3,1,3,NA,NA,NA +110,NA,1348,"2017",1,1,5,4,5,5,NA,NA +110,NA,1349,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1350,"2017",2,1,40,1,40,NA,NA,NA +110,NA,1351,"2017",1,0,50,2,50,NA,NA,NA +110,NA,1351,"2017",1,0,50,4,50,99,NA,NA +110,NA,1351,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1351,"2017",1,0,1,3,99,50,NA,NA +110,NA,1352,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1353,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1354,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1355,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1356,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1357,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1358,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1359,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1360,"2017",3,1,60,1,60,NA,NA,NA +110,NA,1361,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1362,"2017",3,1,20,1,20,NA,NA,NA +110,NA,1363,"2017",6,1,100,1,100,NA,NA,NA +110,NA,1364,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1365,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1366,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1367,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1368,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1369,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1370,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1371,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1372,"2017",2,1,20,1,20,NA,NA,NA +110,NA,1373,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1374,"2017",1,1,1,2,1,NA,NA,NA +110,NA,1374,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1374,"2017",1,1,NA,3,NA,1,NA,NA +110,NA,1374,"2017",1,1,NA,4,NA,NA,NA,NA +110,NA,1375,"2017",1,0,1,3,99,99,NA,NA +110,NA,1375,"2017",1,0,1,2,99,99,NA,NA +110,NA,1375,"2017",1,0,1,4,99,99,NA,NA +110,NA,1375,"2017",1,0,1,1,99,NA,NA,NA +110,NA,1376,"2017",5,0,1,1,99,NA,NA,NA +110,NA,1377,"2017",5,1,20,1,20,NA,NA,NA +110,NA,1378,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1379,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1380,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1381,"2017",4,0,22,1,78,NA,NA,NA +110,NA,1382,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1383,"2017",3,1,NA,1,NA,NA,NA,NA +110,NA,1384,"2017",3,1,85,1,85,NA,NA,NA +110,NA,1385,"2017",6,0,75,1,25,NA,NA,NA +110,NA,1386,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1387,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1388,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1389,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1390,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1391,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1392,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1393,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1394,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1395,"2017",5,0,40,1,60,NA,NA,NA +110,NA,1396,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1397,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1398,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1399,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1399,"2017",1,0,50,3,50,20,NA,NA +110,NA,1399,"2017",1,0,80,2,20,NA,NA,NA +110,NA,1399,"2017",1,0,10,4,90,50,NA,NA +110,NA,1400,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1401,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1402,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1403,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1404,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1405,"2017",1,1,99,3,99,99,NA,NA +110,NA,1405,"2017",1,1,99,2,99,50,NA,NA +110,NA,1405,"2017",1,1,99,4,99,99,NA,NA +110,NA,1405,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1406,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1407,"2017",6,1,40,1,40,NA,NA,NA +110,NA,1408,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1409,"2017",4,1,60,1,60,NA,NA,NA +110,NA,1410,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1411,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1412,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1413,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1414,"2017",2,1,NA,1,NA,NA,NA,NA +110,NA,1415,"2017",1,0,NA,2,NA,1,NA,NA +110,NA,1415,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1415,"2017",1,0,1,3,99,NA,NA,NA +110,NA,1415,"2017",1,0,1,4,99,99,NA,NA +110,NA,1416,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1417,"2017",1,1,40,2,40,40,NA,NA +110,NA,1417,"2017",1,1,40,4,40,99,NA,NA +110,NA,1417,"2017",1,1,99,3,99,40,NA,NA +110,NA,1417,"2017",1,1,40,1,40,NA,NA,NA +110,NA,1418,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1419,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1420,"2017",1,0,50,2,50,99,NA,NA +110,NA,1420,"2017",1,0,1,1,99,NA,NA,NA +110,NA,1420,"2017",1,0,50,3,50,50,NA,NA +110,NA,1420,"2017",1,0,99,4,1,50,NA,NA +110,NA,1421,"2017",1,1,100,2,100,NA,NA,NA +110,NA,1421,"2017",1,1,100,4,100,100,NA,NA +110,NA,1421,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1421,"2017",1,1,100,3,100,100,NA,NA +110,NA,1422,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1423,"2017",6,1,40,1,40,NA,NA,NA +110,NA,1424,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1425,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1426,"2017",1,1,55,4,55,99,NA,NA +110,NA,1426,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1426,"2017",1,1,99,2,99,1,NA,NA +110,NA,1426,"2017",1,1,99,3,99,99,NA,NA +110,NA,1427,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1428,"2017",6,0,80,1,20,NA,NA,NA +110,NA,1429,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1430,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1431,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1432,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1433,"2017",3,1,70,1,70,NA,NA,NA +110,NA,1434,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1435,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1436,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1437,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1438,"2017",5,0,NA,1,NA,NA,NA,NA +110,NA,1439,"2017",3,1,15,1,15,NA,NA,NA +110,NA,1440,"2017",1,0,60,4,40,60,NA,NA +110,NA,1440,"2017",1,0,20,2,80,20,NA,NA +110,NA,1440,"2017",1,0,40,3,60,80,NA,NA +110,NA,1440,"2017",1,0,80,1,20,NA,NA,NA +110,NA,1441,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1442,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1443,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1444,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1445,"2017",3,1,1,1,1,NA,NA,NA +110,NA,1446,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1447,"2017",4,0,NA,1,NA,NA,NA,NA +110,NA,1448,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1449,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1450,"2017",5,0,60,1,40,NA,NA,NA +110,NA,1451,"2017",1,1,50,3,50,50,NA,NA +110,NA,1451,"2017",1,1,50,4,50,50,NA,NA +110,NA,1451,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1451,"2017",1,1,50,2,50,50,NA,NA +110,NA,1452,"2017",1,0,1,2,99,50,NA,NA +110,NA,1452,"2017",1,0,1,4,99,99,NA,NA +110,NA,1452,"2017",1,0,1,3,99,99,NA,NA +110,NA,1452,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1453,"2017",5,1,10,1,10,NA,NA,NA +110,NA,1454,"2017",1,1,99,3,99,99,NA,NA +110,NA,1454,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1454,"2017",1,1,99,4,99,99,NA,NA +110,NA,1454,"2017",1,1,99,2,99,1,NA,NA +110,NA,1455,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1456,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1457,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1458,"2017",1,0,99,4,1,1,NA,NA +110,NA,1458,"2017",1,0,99,3,1,1,NA,NA +110,NA,1458,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1458,"2017",1,0,99,2,1,1,NA,NA +110,NA,1459,"2017",6,1,70,1,70,NA,NA,NA +110,NA,1460,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1461,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1462,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1463,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1464,"2017",6,1,80,1,80,NA,NA,NA +110,NA,1465,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1466,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1467,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1468,"2017",1,0,NA,2,NA,50,NA,NA +110,NA,1468,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1468,"2017",1,0,99,4,1,1,NA,NA +110,NA,1468,"2017",1,0,99,3,1,NA,NA,NA +110,NA,1469,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1470,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1471,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1472,"2017",6,1,1,1,1,NA,NA,NA +110,NA,1473,"2017",2,0,90,1,10,NA,NA,NA +110,NA,1474,"2017",1,1,10,4,10,50,NA,NA +110,NA,1474,"2017",1,1,50,3,50,99,NA,NA +110,NA,1474,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1474,"2017",1,1,99,2,99,99,NA,NA +110,NA,1475,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1476,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1477,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1478,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1478,"2017",1,0,99,3,1,1,NA,NA +110,NA,1478,"2017",1,0,99,4,1,1,NA,NA +110,NA,1478,"2017",1,0,99,2,1,1,NA,NA +110,NA,1479,"2017",6,1,10,1,10,NA,NA,NA +110,NA,1480,"2017",1,1,50,2,50,NA,NA,NA +110,NA,1480,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1480,"2017",1,1,50,4,50,50,NA,NA +110,NA,1480,"2017",1,1,50,3,50,50,NA,NA +110,NA,1481,"2017",3,1,90,1,90,NA,NA,NA +110,NA,1482,"2017",1,0,52,3,48,1,NA,NA +110,NA,1482,"2017",1,0,10,1,90,NA,NA,NA +110,NA,1482,"2017",1,0,99,2,1,90,NA,NA +110,NA,1482,"2017",1,0,0,4,100,48,NA,NA +110,NA,1483,"2017",1,1,99,2,99,99,NA,NA +110,NA,1483,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1483,"2017",1,1,99,3,99,99,NA,NA +110,NA,1483,"2017",1,1,99,4,99,99,NA,NA +110,NA,1484,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1485,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1486,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1487,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1488,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1489,"2017",3,1,1,1,1,NA,NA,NA +110,NA,1490,"2017",3,1,1,1,1,NA,NA,NA +110,NA,1491,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1492,"2017",2,1,11,1,11,NA,NA,NA +110,NA,1493,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1494,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1495,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1495,"2017",1,1,50,4,50,99,NA,NA +110,NA,1495,"2017",1,1,50,2,50,NA,NA,NA +110,NA,1495,"2017",1,1,99,3,99,50,NA,NA +110,NA,1496,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1497,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1498,"2017",5,0,0.5,1,99.5,NA,NA,NA +110,NA,1499,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1500,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1501,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1502,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1503,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1504,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1505,"2017",4,1,NA,1,NA,NA,NA,NA +110,NA,1506,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1507,"2017",1,0,50,3,50,50,NA,NA +110,NA,1507,"2017",1,0,50,4,50,50,NA,NA +110,NA,1507,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1507,"2017",1,0,50,2,50,1,NA,NA +110,NA,1508,"2017",1,1,1,4,1,99,NA,NA +110,NA,1508,"2017",1,1,99,3,99,55,NA,NA +110,NA,1508,"2017",1,1,55,2,55,55,NA,NA +110,NA,1508,"2017",1,1,55,1,55,NA,NA,NA +110,NA,1509,"2017",6,1,40,1,40,NA,NA,NA +110,NA,1510,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1511,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1512,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1513,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1514,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1515,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1516,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1517,"2017",1,0,80,3,20,NA,NA,NA +110,NA,1517,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1517,"2017",1,0,10,4,90,20,NA,NA +110,NA,1517,"2017",1,0,NA,2,NA,NA,NA,NA +110,NA,1518,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1519,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1519,"2017",1,1,NA,4,NA,99,NA,NA +110,NA,1519,"2017",1,1,NA,2,NA,NA,NA,NA +110,NA,1519,"2017",1,1,99,3,99,NA,NA,NA +110,NA,1520,"2017",1,1,1,4,1,1,NA,NA +110,NA,1520,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1520,"2017",1,1,1,2,1,1,NA,NA +110,NA,1520,"2017",1,1,1,3,1,1,NA,NA +110,NA,1521,"2017",1,0,1,3,99,1,NA,NA +110,NA,1521,"2017",1,0,99,2,1,NA,NA,NA +110,NA,1521,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1521,"2017",1,0,NA,4,NA,99,NA,NA +110,NA,1522,"2017",3,1,80,1,80,NA,NA,NA +110,NA,1523,"2017",1,1,99,4,99,NA,NA,NA +110,NA,1523,"2017",1,1,NA,3,NA,NA,NA,NA +110,NA,1523,"2017",1,1,NA,2,NA,NA,NA,NA +110,NA,1523,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1524,"2017",5,1,5,1,5,NA,NA,NA +110,NA,1525,"2017",1,0,60,3,40,60,NA,NA +110,NA,1525,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1525,"2017",1,0,40,2,60,50,NA,NA +110,NA,1525,"2017",1,0,30,4,70,40,NA,NA +110,NA,1526,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1527,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1528,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1529,"2017",4,0,80,1,20,NA,NA,NA +110,NA,1530,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1531,"2017",6,1,1,1,1,NA,NA,NA +110,NA,1532,"2017",2,1,20,1,20,NA,NA,NA +110,NA,1533,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1534,"2017",5,1,NA,1,NA,NA,NA,NA +110,NA,1535,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1536,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1537,"2017",1,1,99,3,99,99,NA,NA +110,NA,1537,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1537,"2017",1,1,99,2,99,1,NA,NA +110,NA,1537,"2017",1,1,50,4,50,99,NA,NA +110,NA,1538,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1538,"2017",1,0,99,4,1,1,NA,NA +110,NA,1538,"2017",1,0,99,3,1,1,NA,NA +110,NA,1539,"2017",1,0,23,1,77,NA,NA,NA +110,NA,1539,"2017",1,0,56,4,44,1,NA,NA +110,NA,1539,"2017",1,0,99,3,1,99,NA,NA +110,NA,1539,"2017",1,0,1,2,99,77,NA,NA +110,NA,1540,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1541,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1542,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1543,"2017",1,1,99,4,99,99,NA,NA +110,NA,1543,"2017",1,1,80,2,80,50,NA,NA +110,NA,1543,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1543,"2017",1,1,99,3,99,80,NA,NA +110,NA,1544,"2017",1,1,1,2,1,50,NA,NA +110,NA,1544,"2017",1,1,99,3,99,1,NA,NA +110,NA,1544,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1544,"2017",1,1,99,4,99,99,NA,NA +110,NA,1545,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1546,"2017",6,0,60,1,40,NA,NA,NA +110,NA,1547,"2017",5,1,NA,1,NA,NA,NA,NA +110,NA,1548,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1549,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1550,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1551,"2017",6,1,80,1,80,NA,NA,NA +110,NA,1552,"2017",4,1,1,1,1,NA,NA,NA +110,NA,1553,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1554,"2017",4,1,60,1,60,NA,NA,NA +110,NA,1555,"2017",1,0,NA,4,NA,NA,NA,NA +110,NA,1555,"2017",1,0,99,2,1,1,NA,NA +110,NA,1555,"2017",1,0,NA,3,NA,1,NA,NA +110,NA,1555,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1556,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1557,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1558,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1559,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1560,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1561,"2017",5,0,1,1,99,NA,NA,NA +110,NA,1562,"2017",1,1,1,3,1,1,NA,NA +110,NA,1562,"2017",1,1,1,2,1,1,NA,NA +110,NA,1562,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1562,"2017",1,1,50,4,50,1,NA,NA +110,NA,1563,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1563,"2017",1,1,79,3,79,70,NA,NA +110,NA,1563,"2017",1,1,80,4,80,79,NA,NA +110,NA,1563,"2017",1,1,70,2,70,50,NA,NA +110,NA,1564,"2017",1,1,20,4,20,20,NA,NA +110,NA,1564,"2017",1,1,20,2,20,20,NA,NA +110,NA,1564,"2017",1,1,20,3,20,20,NA,NA +110,NA,1564,"2017",1,1,20,1,20,NA,NA,NA +110,NA,1565,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1566,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1567,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1567,"2017",1,1,99,3,99,99,NA,NA +110,NA,1567,"2017",1,1,50,4,50,99,NA,NA +110,NA,1567,"2017",1,1,99,2,99,99,NA,NA +110,NA,1568,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1569,"2017",6,1,NA,1,NA,NA,NA,NA +110,NA,1570,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1571,"2017",1,0,60,3,40,40,NA,NA +110,NA,1571,"2017",1,0,80,4,20,40,NA,NA +110,NA,1571,"2017",1,0,60,1,40,NA,NA,NA +110,NA,1571,"2017",1,0,60,2,40,40,NA,NA +110,NA,1572,"2017",6,1,80,1,80,NA,NA,NA +110,NA,1573,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1574,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1575,"2017",3,0,0,1,100,NA,NA,NA +110,NA,1576,"2017",1,0,1,2,99,99,NA,NA +110,NA,1576,"2017",1,0,1,3,99,99,NA,NA +110,NA,1576,"2017",1,0,99,4,1,99,NA,NA +110,NA,1576,"2017",1,0,1,1,99,NA,NA,NA +110,NA,1577,"2017",6,1,1,1,1,NA,NA,NA +110,NA,1578,"2017",6,1,80,1,80,NA,NA,NA +110,NA,1579,"2017",5,1,30,1,30,NA,NA,NA +110,NA,1580,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1581,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1582,"2017",1,0,99,4,1,50,NA,NA +110,NA,1582,"2017",1,0,50,3,50,50,NA,NA +110,NA,1582,"2017",1,0,50,2,50,1,NA,NA +110,NA,1582,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1583,"2017",4,0,88,1,12,NA,NA,NA +110,NA,1584,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1585,"2017",1,1,54,3,54,NA,NA,NA +110,NA,1585,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1585,"2017",1,1,NA,2,NA,NA,NA,NA +110,NA,1585,"2017",1,1,NA,4,NA,54,NA,NA +110,NA,1586,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1587,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1588,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1589,"2017",6,1,20,1,20,NA,NA,NA +110,NA,1590,"2017",5,0,NA,1,NA,NA,NA,NA +110,NA,1591,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1592,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1593,"2017",4,0,55,1,45,NA,NA,NA +110,NA,1594,"2017",5,1,NA,1,NA,NA,NA,NA +110,NA,1595,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1596,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1597,"2017",3,1,90,1,90,NA,NA,NA +110,NA,1598,"2017",4,0,NA,1,NA,NA,NA,NA +110,NA,1599,"2017",2,0,12,1,88,NA,NA,NA +110,NA,1600,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1601,"2017",1,1,80,3,80,30,NA,NA +110,NA,1601,"2017",1,1,30,2,30,50,NA,NA +110,NA,1601,"2017",1,1,99,4,99,80,NA,NA +110,NA,1601,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1602,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1603,"2017",2,1,NA,1,NA,NA,NA,NA +110,NA,1604,"2017",1,1,50,2,50,58,NA,NA +110,NA,1604,"2017",1,1,58,1,58,NA,NA,NA +110,NA,1604,"2017",1,1,50,3,50,50,NA,NA +110,NA,1604,"2017",1,1,50,4,50,50,NA,NA +110,NA,1605,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1606,"2017",1,0,50,4,50,50,NA,NA +110,NA,1606,"2017",1,0,50,2,50,35,NA,NA +110,NA,1606,"2017",1,0,50,3,50,50,NA,NA +110,NA,1606,"2017",1,0,65,1,35,NA,NA,NA +110,NA,1607,"2017",2,0,30,1,70,NA,NA,NA +110,NA,1608,"2017",6,1,1,1,1,NA,NA,NA +110,NA,1609,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1610,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1611,"2017",2,1,NA,1,NA,NA,NA,NA +110,NA,1612,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1613,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1614,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1615,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1616,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1617,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1618,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1619,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1620,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1621,"2017",1,1,90,3,90,90,NA,NA +110,NA,1621,"2017",1,1,40,1,40,NA,NA,NA +110,NA,1621,"2017",1,1,90,2,90,40,NA,NA +110,NA,1621,"2017",1,1,95,4,95,90,NA,NA +110,NA,1622,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1623,"2017",6,1,NA,1,NA,NA,NA,NA +110,NA,1624,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1625,"2017",6,1,60,1,60,NA,NA,NA +110,NA,1626,"2017",4,1,NA,1,NA,NA,NA,NA +110,NA,1627,"2017",4,0,60,1,40,NA,NA,NA +110,NA,1628,"2017",6,0,40,1,60,NA,NA,NA +110,NA,1629,"2017",3,1,60,1,60,NA,NA,NA +110,NA,1630,"2017",4,1,70,1,70,NA,NA,NA +110,NA,1631,"2017",5,0,NA,1,NA,NA,NA,NA +110,NA,1632,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1633,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1634,"2017",2,0,40,1,60,NA,NA,NA +110,NA,1635,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1636,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1637,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1638,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1639,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1640,"2017",3,0,80,1,20,NA,NA,NA +110,NA,1641,"2017",2,0,40,1,60,NA,NA,NA +110,NA,1642,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1643,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1644,"2017",1,1,99,4,99,99,NA,NA +110,NA,1644,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1644,"2017",1,1,99,3,99,1,NA,NA +110,NA,1644,"2017",1,1,1,2,1,NA,NA,NA +110,NA,1645,"2017",1,1,70,4,70,70,NA,NA +110,NA,1645,"2017",1,1,70,3,70,70,NA,NA +110,NA,1645,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1645,"2017",1,1,70,2,70,50,NA,NA +110,NA,1646,"2017",1,0,10,2,90,40,NA,NA +110,NA,1646,"2017",1,0,60,1,40,NA,NA,NA +110,NA,1646,"2017",1,0,90,3,10,90,NA,NA +110,NA,1646,"2017",1,0,10,4,90,10,NA,NA +110,NA,1647,"2017",4,0,NA,1,NA,NA,NA,NA +110,NA,1648,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1649,"2017",1,1,50,4,50,1,NA,NA +110,NA,1649,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1649,"2017",1,1,1,3,1,NA,NA,NA +110,NA,1649,"2017",1,1,NA,2,NA,1,NA,NA +110,NA,1650,"2017",1,0,NA,2,NA,70,NA,NA +110,NA,1650,"2017",1,0,30,1,70,NA,NA,NA +110,NA,1650,"2017",1,0,44,3,56,NA,NA,NA +110,NA,1650,"2017",1,0,NA,4,NA,56,NA,NA +110,NA,1651,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1652,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1653,"2017",1,0,1,2,99,1,NA,NA +110,NA,1653,"2017",1,0,1,3,99,99,NA,NA +110,NA,1653,"2017",1,0,1,4,99,99,NA,NA +110,NA,1653,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1654,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1655,"2017",1,0,NA,2,NA,NA,NA,NA +110,NA,1655,"2017",1,0,100,4,0,NA,NA,NA +110,NA,1655,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1655,"2017",1,0,NA,3,NA,NA,NA,NA +110,NA,1656,"2017",3,1,7,1,7,NA,NA,NA +110,NA,1657,"2017",6,1,1,1,1,NA,NA,NA +110,NA,1658,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1659,"2017",1,0,90,2,10,40,NA,NA +110,NA,1659,"2017",1,0,50,3,50,10,NA,NA +110,NA,1659,"2017",1,0,50,4,50,50,NA,NA +110,NA,1659,"2017",1,0,60,1,40,NA,NA,NA +110,NA,1660,"2017",5,1,NA,1,NA,NA,NA,NA +110,NA,1661,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1662,"2017",6,0,80,1,20,NA,NA,NA +110,NA,1663,"2017",3,0,NA,1,NA,NA,NA,NA +110,NA,1664,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1665,"2017",4,0,NA,1,NA,NA,NA,NA +110,NA,1666,"2017",6,0,5,1,95,NA,NA,NA +110,NA,1667,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1668,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1669,"2017",5,1,60,1,60,NA,NA,NA +110,NA,1670,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1671,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1672,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1673,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1674,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1675,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1676,"2017",5,1,80,1,80,NA,NA,NA +110,NA,1677,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1678,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1679,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1680,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1681,"2017",6,1,NA,1,NA,NA,NA,NA +110,NA,1682,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1682,"2017",1,1,5,3,5,5,NA,NA +110,NA,1682,"2017",1,1,90,4,90,5,NA,NA +110,NA,1682,"2017",1,1,5,2,5,NA,NA,NA +110,NA,1683,"2017",5,0,90,1,10,NA,NA,NA +110,NA,1684,"2017",1,0,40,1,60,NA,NA,NA +110,NA,1684,"2017",1,0,40,4,60,60,NA,NA +110,NA,1684,"2017",1,0,40,3,60,60,NA,NA +110,NA,1684,"2017",1,0,40,2,60,60,NA,NA +110,NA,1685,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1686,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1687,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1688,"2017",1,1,80,1,80,NA,NA,NA +110,NA,1688,"2017",1,1,80,4,80,80,NA,NA +110,NA,1688,"2017",1,1,80,2,80,80,NA,NA +110,NA,1688,"2017",1,1,80,3,80,80,NA,NA +110,NA,1689,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1690,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1691,"2017",6,1,80,1,80,NA,NA,NA +110,NA,1692,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1693,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1694,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1695,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1695,"2017",1,0,1,2,99,NA,NA,NA +110,NA,1695,"2017",1,0,1,4,99,99,NA,NA +110,NA,1695,"2017",1,0,1,3,99,99,NA,NA +110,NA,1696,"2017",6,1,10,1,10,NA,NA,NA +110,NA,1697,"2017",5,0,70,1,30,NA,NA,NA +110,NA,1698,"2017",3,0,70,1,30,NA,NA,NA +110,NA,1699,"2017",4,1,75,1,75,NA,NA,NA +110,NA,1700,"2017",1,0,1,3,99,99,NA,NA +110,NA,1700,"2017",1,0,1,2,99,99,NA,NA +110,NA,1700,"2017",1,0,1,1,99,NA,NA,NA +110,NA,1700,"2017",1,0,2,4,98,99,NA,NA +110,NA,1701,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1702,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1703,"2017",3,1,1,1,1,NA,NA,NA +110,NA,1704,"2017",6,0,60,1,40,NA,NA,NA +110,NA,1705,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1705,"2017",1,1,55,3,55,NA,NA,NA +110,NA,1705,"2017",1,1,NA,2,NA,NA,NA,NA +110,NA,1705,"2017",1,1,99,4,99,55,NA,NA +110,NA,1706,"2017",6,1,NA,1,NA,NA,NA,NA +110,NA,1707,"2017",1,0,80,2,20,50,NA,NA +110,NA,1707,"2017",1,0,20,3,80,20,NA,NA +110,NA,1707,"2017",1,0,10,4,90,80,NA,NA +110,NA,1707,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1708,"2017",2,1,30,1,30,NA,NA,NA +110,NA,1709,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1710,"2017",1,0,99,2,1,99,NA,NA +110,NA,1710,"2017",1,0,50,4,50,99,NA,NA +110,NA,1710,"2017",1,0,1,1,99,NA,NA,NA +110,NA,1710,"2017",1,0,1,3,99,1,NA,NA +110,NA,1711,"2017",3,1,100,1,100,NA,NA,NA +110,NA,1712,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1713,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1714,"2017",1,0,40,3,60,70,NA,NA +110,NA,1714,"2017",1,0,30,2,70,60,NA,NA +110,NA,1714,"2017",1,0,40,1,60,NA,NA,NA +110,NA,1714,"2017",1,0,30,4,70,60,NA,NA +110,NA,1715,"2017",3,1,22,1,22,NA,NA,NA +110,NA,1716,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1717,"2017",3,1,40,1,40,NA,NA,NA +110,NA,1718,"2017",5,1,49,1,49,NA,NA,NA +110,NA,1719,"2017",3,1,80,1,80,NA,NA,NA +110,NA,1720,"2017",3,1,70,1,70,NA,NA,NA +110,NA,1721,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1722,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1723,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1723,"2017",1,1,1,3,1,NA,NA,NA +110,NA,1723,"2017",1,1,NA,2,NA,50,NA,NA +110,NA,1723,"2017",1,1,NA,4,NA,1,NA,NA +110,NA,1724,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1725,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1725,"2017",1,1,50,3,50,50,NA,NA +110,NA,1725,"2017",1,1,50,2,50,99,NA,NA +110,NA,1725,"2017",1,1,50,4,50,50,NA,NA +110,NA,1726,"2017",3,0,55,1,45,NA,NA,NA +110,NA,1727,"2017",2,1,85,1,85,NA,NA,NA +110,NA,1728,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1729,"2017",2,0,33,1,67,NA,NA,NA +110,NA,1730,"2017",3,1,70,1,70,NA,NA,NA +110,NA,1731,"2017",3,1,14,1,14,NA,NA,NA +110,NA,1732,"2017",4,1,NA,1,NA,NA,NA,NA +110,NA,1733,"2017",2,1,65,1,65,NA,NA,NA +110,NA,1734,"2017",5,1,40,1,40,NA,NA,NA +110,NA,1735,"2017",2,1,20,1,20,NA,NA,NA +110,NA,1736,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1737,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1738,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1739,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1740,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1741,"2017",5,0,20,1,80,NA,NA,NA +110,NA,1742,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1743,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1744,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1745,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1746,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1747,"2017",4,1,NA,1,NA,NA,NA,NA +110,NA,1748,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1749,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1750,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1751,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1752,"2017",1,1,50,4,50,50,NA,NA +110,NA,1752,"2017",1,1,99,2,99,99,NA,NA +110,NA,1752,"2017",1,1,50,3,50,99,NA,NA +110,NA,1752,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1753,"2017",1,0,30,1,70,NA,NA,NA +110,NA,1753,"2017",1,0,50,3,50,50,NA,NA +110,NA,1753,"2017",1,0,50,4,50,50,NA,NA +110,NA,1753,"2017",1,0,50,2,50,70,NA,NA +110,NA,1754,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1755,"2017",4,1,80,1,80,NA,NA,NA +110,NA,1756,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1757,"2017",3,1,70,1,70,NA,NA,NA +110,NA,1758,"2017",4,0,39,1,61,NA,NA,NA +110,NA,1759,"2017",3,0,12,1,88,NA,NA,NA +110,NA,1760,"2017",6,0,51,1,49,NA,NA,NA +110,NA,1761,"2017",1,0,99,2,1,1,NA,NA +110,NA,1761,"2017",1,0,1,3,99,1,NA,NA +110,NA,1761,"2017",1,0,1,4,99,99,NA,NA +110,NA,1761,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1762,"2017",2,1,90,1,90,NA,NA,NA +110,NA,1763,"2017",1,0,90,3,10,NA,NA,NA +110,NA,1763,"2017",1,0,NA,2,NA,10,NA,NA +110,NA,1763,"2017",1,0,90,4,10,10,NA,NA +110,NA,1763,"2017",1,0,90,1,10,NA,NA,NA +110,NA,1764,"2017",2,0,25,1,75,NA,NA,NA +110,NA,1765,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1766,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1766,"2017",1,1,1,3,1,1,NA,NA +110,NA,1766,"2017",1,1,1,4,1,1,NA,NA +110,NA,1766,"2017",1,1,1,2,1,99,NA,NA +110,NA,1767,"2017",6,1,1,1,1,NA,NA,NA +110,NA,1768,"2017",3,1,NA,1,NA,NA,NA,NA +110,NA,1769,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1770,"2017",3,1,8,1,8,NA,NA,NA +110,NA,1771,"2017",1,0,1,4,99,NA,NA,NA +110,NA,1771,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1771,"2017",1,0,NA,3,NA,99,NA,NA +110,NA,1771,"2017",1,0,1,2,99,1,NA,NA +110,NA,1772,"2017",2,0,40,1,60,NA,NA,NA +110,NA,1773,"2017",4,1,79,1,79,NA,NA,NA +110,NA,1774,"2017",6,0,16,1,84,NA,NA,NA +110,NA,1775,"2017",4,1,97,1,97,NA,NA,NA +110,NA,1776,"2017",4,0,87,1,13,NA,NA,NA +110,NA,1777,"2017",1,0,86,2,14,15,NA,NA +110,NA,1777,"2017",1,0,96,4,4,10,NA,NA +110,NA,1777,"2017",1,0,90,3,10,14,NA,NA +110,NA,1777,"2017",1,0,85,1,15,NA,NA,NA +110,NA,1778,"2017",3,1,88,1,88,NA,NA,NA +110,NA,1779,"2017",1,1,96,2,96,88,NA,NA +110,NA,1779,"2017",1,1,89,4,89,87,NA,NA +110,NA,1779,"2017",1,1,88,1,88,NA,NA,NA +110,NA,1779,"2017",1,1,87,3,87,96,NA,NA +110,NA,1780,"2017",1,1,87,4,87,88,NA,NA +110,NA,1780,"2017",1,1,88,3,88,98,NA,NA +110,NA,1780,"2017",1,1,88,1,88,NA,NA,NA +110,NA,1781,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1782,"2017",2,0,93,1,7,NA,NA,NA +110,NA,1783,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1784,"2017",1,0,88,3,12,NA,NA,NA +110,NA,1784,"2017",1,0,92,4,8,12,NA,NA +110,NA,1784,"2017",1,0,NA,2,NA,8,NA,NA +110,NA,1784,"2017",1,0,92,1,8,NA,NA,NA +110,NA,1785,"2017",1,1,82,3,82,91,NA,NA +110,NA,1785,"2017",1,1,77,4,77,82,NA,NA +110,NA,1785,"2017",1,1,80,1,80,NA,NA,NA +110,NA,1785,"2017",1,1,91,2,91,80,NA,NA +110,NA,1786,"2017",6,1,91,1,91,NA,NA,NA +110,NA,1787,"2017",3,1,92,1,92,NA,NA,NA +110,NA,1788,"2017",2,1,77,1,77,NA,NA,NA +110,NA,1789,"2017",1,1,92,1,92,NA,NA,NA +110,NA,1790,"2017",3,1,18,1,18,NA,NA,NA +110,NA,1791,"2017",4,0,32,1,68,NA,NA,NA +110,NA,1792,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1793,"2017",6,1,94,1,94,NA,NA,NA +110,NA,1794,"2017",1,1,97,3,97,82,NA,NA +110,NA,1794,"2017",1,1,82,2,82,97,NA,NA +110,NA,1794,"2017",1,1,97,1,97,NA,NA,NA +110,NA,1794,"2017",1,1,85,4,85,97,NA,NA +110,NA,1795,"2017",3,0,86,1,14,NA,NA,NA +110,NA,1796,"2017",1,1,97,1,97,NA,NA,NA +110,NA,1796,"2017",1,1,94,4,94,88,NA,NA +110,NA,1796,"2017",1,1,88,3,88,96,NA,NA +110,NA,1796,"2017",1,1,96,2,96,97,NA,NA +110,NA,1797,"2017",6,0,87,1,13,NA,NA,NA +110,NA,1798,"2017",3,1,96,1,96,NA,NA,NA +110,NA,1799,"2017",1,1,NA,4,NA,NA,NA,NA +110,NA,1799,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1799,"2017",1,1,99,2,99,NA,NA,NA +110,NA,1799,"2017",1,1,NA,3,NA,99,NA,NA +110,NA,1800,"2017",1,1,98,1,98,NA,NA,NA +110,NA,1800,"2017",1,1,88,4,88,87,NA,NA +110,NA,1800,"2017",1,1,87,3,87,87,NA,NA +110,NA,1800,"2017",1,1,87,2,87,98,NA,NA +110,NA,1801,"2017",6,0,97,1,3,NA,NA,NA +110,NA,1802,"2017",2,1,95,1,95,NA,NA,NA +110,NA,1803,"2017",3,1,98,1,98,NA,NA,NA +110,NA,1804,"2017",3,1,87,1,87,NA,NA,NA +110,NA,1805,"2017",5,1,89,1,89,NA,NA,NA +110,NA,1806,"2017",1,0,50,3,50,20,NA,NA +110,NA,1806,"2017",1,0,30,1,70,NA,NA,NA +110,NA,1806,"2017",1,0,80,2,20,70,NA,NA +110,NA,1806,"2017",1,0,10,4,90,50,NA,NA +110,NA,1807,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1808,"2017",3,1,NA,1,NA,NA,NA,NA +110,NA,1809,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1810,"2017",5,0,90,1,10,NA,NA,NA +110,NA,1811,"2017",5,0,NA,1,NA,NA,NA,NA +110,NA,1812,"2017",1,0,100,3,0,NA,NA,NA +110,NA,1812,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1812,"2017",1,0,NA,2,NA,NA,NA,NA +110,NA,1812,"2017",1,0,100,4,0,0,NA,NA +110,NA,1813,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1814,"2017",3,0,70,1,30,NA,NA,NA +110,NA,1815,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1816,"2017",3,1,70,1,70,NA,NA,NA +110,NA,1817,"2017",3,0,70,1,30,NA,NA,NA +110,NA,1818,"2017",5,1,70,1,70,NA,NA,NA +110,NA,1819,"2017",2,1,80,1,80,NA,NA,NA +110,NA,1820,"2017",5,1,80,1,80,NA,NA,NA +110,NA,1821,"2017",3,0,70,1,30,NA,NA,NA +110,NA,1822,"2017",6,0,0,1,100,NA,NA,NA +110,NA,1823,"2017",1,0,NA,2,NA,40,NA,NA +110,NA,1823,"2017",1,0,60,1,40,NA,NA,NA +110,NA,1823,"2017",1,0,NA,4,NA,80,NA,NA +110,NA,1823,"2017",1,0,20,3,80,NA,NA,NA +110,NA,1824,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1825,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1826,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1827,"2017",6,0,20,1,80,NA,NA,NA +110,NA,1828,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1829,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1830,"2017",1,0,60,4,40,50,NA,NA +110,NA,1830,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1830,"2017",1,0,50,3,50,20,NA,NA +110,NA,1830,"2017",1,0,80,2,20,50,NA,NA +110,NA,1831,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1832,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1833,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1834,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1835,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1836,"2017",2,0,30,1,70,NA,NA,NA +110,NA,1837,"2017",1,1,0,1,0,NA,NA,NA +110,NA,1837,"2017",1,1,NA,3,NA,99,NA,NA +110,NA,1837,"2017",1,1,99,2,99,0,NA,NA +110,NA,1837,"2017",1,1,50,4,50,NA,NA,NA +110,NA,1838,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1839,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1840,"2017",5,0,90,1,10,NA,NA,NA +110,NA,1841,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1842,"2017",3,1,6,1,6,NA,NA,NA +110,NA,1843,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1844,"2017",2,1,12,1,12,NA,NA,NA +110,NA,1845,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1846,"2017",2,1,NA,1,NA,NA,NA,NA +110,NA,1847,"2017",5,1,0,1,0,NA,NA,NA +110,NA,1848,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1849,"2017",5,1,NA,1,NA,NA,NA,NA +110,NA,1850,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1851,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1852,"2017",3,0,NA,1,NA,NA,NA,NA +110,NA,1853,"2017",6,0,50,1,50,NA,NA,NA +110,NA,1854,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1855,"2017",1,0,99,2,1,1,NA,NA +110,NA,1855,"2017",1,0,99,3,1,1,NA,NA +110,NA,1855,"2017",1,0,99,4,1,1,NA,NA +110,NA,1855,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1856,"2017",3,1,50,1,50,NA,NA,NA +110,NA,1857,"2017",2,0,40,1,60,NA,NA,NA +110,NA,1858,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1859,"2017",3,1,80,1,80,NA,NA,NA +110,NA,1860,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1861,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1862,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1863,"2017",6,1,80,1,80,NA,NA,NA +110,NA,1864,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1865,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1866,"2017",1,0,50,2,50,1,NA,NA +110,NA,1866,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1866,"2017",1,0,50,4,50,50,NA,NA +110,NA,1866,"2017",1,0,50,3,50,50,NA,NA +110,NA,1867,"2017",1,1,1,3,1,1,NA,NA +110,NA,1867,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1867,"2017",1,1,1,2,1,1,NA,NA +110,NA,1867,"2017",1,1,1,4,1,1,NA,NA +110,NA,1868,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1869,"2017",6,1,100,1,100,NA,NA,NA +110,NA,1870,"2017",4,0,100,1,0,NA,NA,NA +110,NA,1871,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1872,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1873,"2017",1,1,99,4,99,99,NA,NA +110,NA,1873,"2017",1,1,99,3,99,78,NA,NA +110,NA,1873,"2017",1,1,78,2,78,NA,NA,NA +110,NA,1873,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,1874,"2017",2,1,NA,1,NA,NA,NA,NA +110,NA,1875,"2017",4,1,100,1,100,NA,NA,NA +110,NA,1876,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1877,"2017",2,1,80,1,80,NA,NA,NA +110,NA,1878,"2017",1,0,90,1,10,NA,NA,NA +110,NA,1878,"2017",1,0,80,2,20,10,NA,NA +110,NA,1878,"2017",1,0,30,4,70,10,NA,NA +110,NA,1878,"2017",1,0,90,3,10,20,NA,NA +110,NA,1879,"2017",5,0,80,1,20,NA,NA,NA +110,NA,1880,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1881,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1882,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1883,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1884,"2017",2,0,100,1,0,NA,NA,NA +110,NA,1885,"2017",2,0,5,1,95,NA,NA,NA +110,NA,1886,"2017",3,1,90,1,90,NA,NA,NA +110,NA,1887,"2017",1,0,90,4,10,10,NA,NA +110,NA,1887,"2017",1,0,90,2,10,NA,NA,NA +110,NA,1887,"2017",1,0,90,3,10,10,NA,NA +110,NA,1887,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1888,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1889,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1890,"2017",6,1,0,1,0,NA,NA,NA +110,NA,1891,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1892,"2017",5,0,80,1,20,NA,NA,NA +110,NA,1893,"2017",5,0,90,1,10,NA,NA,NA +110,NA,1894,"2017",1,0,NA,3,NA,50,NA,NA +110,NA,1894,"2017",1,0,50,4,50,NA,NA,NA +110,NA,1894,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1894,"2017",1,0,50,2,50,50,NA,NA +110,NA,1895,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1896,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1897,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1898,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1899,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1900,"2017",1,0,60,2,40,50,NA,NA +110,NA,1900,"2017",1,0,50,1,50,NA,NA,NA +110,NA,1900,"2017",1,0,50,4,50,45,NA,NA +110,NA,1900,"2017",1,0,55,3,45,40,NA,NA +110,NA,1901,"2017",4,0,80,1,20,NA,NA,NA +110,NA,1902,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1903,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1904,"2017",4,1,50,1,50,NA,NA,NA +110,NA,1905,"2017",1,0,1,2,99,30,NA,NA +110,NA,1905,"2017",1,0,20,4,80,99,NA,NA +110,NA,1905,"2017",1,0,70,1,30,NA,NA,NA +110,NA,1905,"2017",1,0,1,3,99,99,NA,NA +110,NA,1906,"2017",1,1,80,3,80,60,NA,NA +110,NA,1906,"2017",1,1,50,1,50,NA,NA,NA +110,NA,1906,"2017",1,1,60,2,60,50,NA,NA +110,NA,1906,"2017",1,1,99,4,99,80,NA,NA +110,NA,1907,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1908,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1909,"2017",5,0,30,1,70,NA,NA,NA +110,NA,1910,"2017",3,1,1,1,1,NA,NA,NA +110,NA,1911,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1912,"2017",5,1,1,1,1,NA,NA,NA +110,NA,1913,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1914,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1915,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1916,"2017",3,0,20,1,80,NA,NA,NA +110,NA,1917,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1918,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1919,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1920,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1921,"2017",3,1,90,1,90,NA,NA,NA +110,NA,1922,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1923,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1924,"2017",2,0,0,1,100,NA,NA,NA +110,NA,1925,"2017",3,1,1,1,1,NA,NA,NA +110,NA,1926,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1927,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1928,"2017",2,1,1,1,1,NA,NA,NA +110,NA,1929,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1930,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1931,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1932,"2017",4,0,50,1,50,NA,NA,NA +110,NA,1933,"2017",2,1,60,1,60,NA,NA,NA +110,NA,1934,"2017",1,0,10,3,90,90,NA,NA +110,NA,1934,"2017",1,0,10,2,90,NA,NA,NA +110,NA,1934,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,1934,"2017",1,0,10,4,90,90,NA,NA +110,NA,1935,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1936,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1937,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1938,"2017",3,0,50,1,50,NA,NA,NA +110,NA,1939,"2017",3,1,1,1,1,NA,NA,NA +110,NA,1940,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1941,"2017",6,1,90,1,90,NA,NA,NA +110,NA,1942,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1943,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1944,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1945,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1946,"2017",6,0,1,1,99,NA,NA,NA +110,NA,1947,"2017",2,1,70,1,70,NA,NA,NA +110,NA,1948,"2017",1,0,95,3,5,10,NA,NA +110,NA,1948,"2017",1,0,90,2,10,20,NA,NA +110,NA,1948,"2017",1,0,80,1,20,NA,NA,NA +110,NA,1948,"2017",1,0,100,4,0,5,NA,NA +110,NA,1949,"2017",1,1,99,2,99,1,NA,NA +110,NA,1949,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1949,"2017",1,1,99,3,99,99,NA,NA +110,NA,1949,"2017",1,1,99,4,99,99,NA,NA +110,NA,1950,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1951,"2017",2,1,50,1,50,NA,NA,NA +110,NA,1952,"2017",4,0,1,1,99,NA,NA,NA +110,NA,1953,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1954,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1955,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1956,"2017",3,1,10,1,10,NA,NA,NA +110,NA,1957,"2017",5,0,NA,1,NA,NA,NA,NA +110,NA,1958,"2017",3,0,1,1,99,NA,NA,NA +110,NA,1959,"2017",1,0,80,1,20,NA,NA,NA +110,NA,1959,"2017",1,0,90,4,10,15,NA,NA +110,NA,1959,"2017",1,0,90,2,10,20,NA,NA +110,NA,1959,"2017",1,0,85,3,15,10,NA,NA +110,NA,1960,"2017",6,1,50,1,50,NA,NA,NA +110,NA,1961,"2017",5,1,99,1,99,NA,NA,NA +110,NA,1962,"2017",4,0,90,1,10,NA,NA,NA +110,NA,1963,"2017",4,1,80,1,80,NA,NA,NA +110,NA,1964,"2017",5,0,1,1,99,NA,NA,NA +110,NA,1965,"2017",5,0,NA,1,NA,NA,NA,NA +110,NA,1966,"2017",2,1,40,1,40,NA,NA,NA +110,NA,1967,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1968,"2017",5,0,99,1,1,NA,NA,NA +110,NA,1969,"2017",1,1,80,1,80,NA,NA,NA +110,NA,1969,"2017",1,1,99,4,99,90,NA,NA +110,NA,1969,"2017",1,1,80,2,80,80,NA,NA +110,NA,1969,"2017",1,1,90,3,90,80,NA,NA +110,NA,1970,"2017",1,1,80,4,80,80,NA,NA +110,NA,1970,"2017",1,1,99,1,99,NA,NA,NA +110,NA,1970,"2017",1,1,80,3,80,90,NA,NA +110,NA,1971,"2017",1,0,0,4,100,100,NA,NA +110,NA,1971,"2017",1,0,0,2,100,99,NA,NA +110,NA,1971,"2017",1,0,0,3,100,100,NA,NA +110,NA,1971,"2017",1,0,1,1,99,NA,NA,NA +110,NA,1972,"2017",6,1,99,1,99,NA,NA,NA +110,NA,1973,"2017",1,1,99,4,99,99,NA,NA +110,NA,1973,"2017",1,1,99,3,99,50,NA,NA +110,NA,1973,"2017",1,1,50,2,50,1,NA,NA +110,NA,1973,"2017",1,1,1,1,1,NA,NA,NA +110,NA,1974,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1975,"2017",2,1,9,1,9,NA,NA,NA +110,NA,1976,"2017",1,0,60,1,40,NA,NA,NA +110,NA,1976,"2017",1,0,80,2,20,40,NA,NA +110,NA,1976,"2017",1,0,30,3,70,20,NA,NA +110,NA,1976,"2017",1,0,20,4,80,70,NA,NA +110,NA,1977,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1978,"2017",2,0,99,1,1,NA,NA,NA +110,NA,1979,"2017",2,0,1,1,99,NA,NA,NA +110,NA,1980,"2017",6,0,NA,1,NA,NA,NA,NA +110,NA,1981,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1982,"2017",2,0,50,1,50,NA,NA,NA +110,NA,1983,"2017",5,0,50,1,50,NA,NA,NA +110,NA,1984,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1985,"2017",3,0,99,1,1,NA,NA,NA +110,NA,1986,"2017",3,1,99,1,99,NA,NA,NA +110,NA,1987,"2017",5,0,80,1,20,NA,NA,NA +110,NA,1988,"2017",5,0,85,1,15,NA,NA,NA +110,NA,1989,"2017",5,0,82,1,18,NA,NA,NA +110,NA,1990,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1991,"2017",4,0,99,1,1,NA,NA,NA +110,NA,1992,"2017",1,0,99,2,1,1,NA,NA +110,NA,1992,"2017",1,0,99,1,1,NA,NA,NA +110,NA,1992,"2017",1,0,99,4,1,1,NA,NA +110,NA,1992,"2017",1,0,99,3,1,1,NA,NA +110,NA,1993,"2017",1,0,1,1,99,NA,NA,NA +110,NA,1993,"2017",1,0,NA,2,NA,99,NA,NA +110,NA,1993,"2017",1,0,88,3,12,NA,NA,NA +110,NA,1993,"2017",1,0,88,4,12,12,NA,NA +110,NA,1994,"2017",5,1,50,1,50,NA,NA,NA +110,NA,1995,"2017",6,0,99,1,1,NA,NA,NA +110,NA,1996,"2017",4,1,99,1,99,NA,NA,NA +110,NA,1997,"2017",2,1,99,1,99,NA,NA,NA +110,NA,1998,"2017",4,1,80,1,80,NA,NA,NA +110,NA,1999,"2017",4,1,70,1,70,NA,NA,NA +110,NA,2000,"2017",3,0,80,1,20,NA,NA,NA +110,NA,2001,"2017",5,1,99,1,99,NA,NA,NA +110,NA,2002,"2017",1,0,1,3,99,99,NA,NA +110,NA,2002,"2017",1,0,1,1,99,NA,NA,NA +110,NA,2002,"2017",1,0,50,4,50,99,NA,NA +110,NA,2003,"2017",6,0,50,1,50,NA,NA,NA +110,NA,2004,"2017",3,1,50,1,50,NA,NA,NA +110,NA,2005,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2006,"2017",2,1,100,1,100,NA,NA,NA +110,NA,2007,"2017",4,1,30,1,30,NA,NA,NA +110,NA,2008,"2017",3,0,99,1,1,NA,NA,NA +110,NA,2009,"2017",4,1,15,1,15,NA,NA,NA +110,NA,2010,"2017",1,0,50,4,50,1,NA,NA +110,NA,2010,"2017",1,0,99,3,1,1,NA,NA +110,NA,2010,"2017",1,0,50,1,50,NA,NA,NA +110,NA,2010,"2017",1,0,99,2,1,50,NA,NA +110,NA,2011,"2017",4,0,99,1,1,NA,NA,NA +110,NA,2012,"2017",1,1,100,3,100,100,NA,NA +110,NA,2012,"2017",1,1,100,4,100,100,NA,NA +110,NA,2012,"2017",1,1,100,2,100,100,NA,NA +110,NA,2012,"2017",1,1,100,1,100,NA,NA,NA +110,NA,2013,"2017",2,1,80,1,80,NA,NA,NA +110,NA,2014,"2017",1,1,70,3,70,70,NA,NA +110,NA,2014,"2017",1,1,80,4,80,70,NA,NA +110,NA,2014,"2017",1,1,70,2,70,99,NA,NA +110,NA,2014,"2017",1,1,99,1,99,NA,NA,NA +110,NA,2015,"2017",1,1,88,4,88,88,NA,NA +110,NA,2015,"2017",1,1,2,1,2,NA,NA,NA +110,NA,2015,"2017",1,1,88,2,88,2,NA,NA +110,NA,2015,"2017",1,1,88,3,88,88,NA,NA +110,NA,2016,"2017",5,0,99,1,1,NA,NA,NA +110,NA,2017,"2017",2,1,50,1,50,NA,NA,NA +110,NA,2018,"2017",3,1,50,1,50,NA,NA,NA +110,NA,2019,"2017",6,1,70,1,70,NA,NA,NA +110,NA,2020,"2017",3,1,1,1,1,NA,NA,NA +110,NA,2021,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2022,"2017",5,0,80,1,20,NA,NA,NA +110,NA,2023,"2017",1,0,1,2,99,1,NA,NA +110,NA,2023,"2017",1,0,1,4,99,99,NA,NA +110,NA,2023,"2017",1,0,1,3,99,99,NA,NA +110,NA,2023,"2017",1,0,99,1,1,NA,NA,NA +110,NA,2024,"2017",3,0,100,1,0,NA,NA,NA +110,NA,2025,"2017",4,0,11,1,89,NA,NA,NA +110,NA,2026,"2017",5,0,100,1,0,NA,NA,NA +110,NA,2027,"2017",1,0,1,1,99,NA,NA,NA +110,NA,2027,"2017",1,0,1,3,99,99,NA,NA +110,NA,2027,"2017",1,0,2,4,98,99,NA,NA +110,NA,2027,"2017",1,0,1,2,99,99,NA,NA +110,NA,2028,"2017",1,1,95,4,95,90,NA,NA +110,NA,2028,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,2028,"2017",1,1,80,2,80,NA,NA,NA +110,NA,2028,"2017",1,1,90,3,90,80,NA,NA +110,NA,2029,"2017",6,1,NA,1,NA,NA,NA,NA +110,NA,2030,"2017",2,0,50,1,50,NA,NA,NA +110,NA,2031,"2017",1,0,50,3,50,0,NA,NA +110,NA,2031,"2017",1,0,50,4,50,50,NA,NA +110,NA,2031,"2017",1,0,100,2,0,99,NA,NA +110,NA,2031,"2017",1,0,1,1,99,NA,NA,NA +110,NA,2032,"2017",6,0,60,1,40,NA,NA,NA +110,NA,2033,"2017",5,0,1,1,99,NA,NA,NA +110,NA,2035,"2017",4,0,90,1,10,NA,NA,NA +110,NA,2036,"2017",6,0,99,1,1,NA,NA,NA +110,NA,2037,"2017",6,1,99,1,99,NA,NA,NA +110,NA,2038,"2017",6,1,10,1,10,NA,NA,NA +110,NA,2039,"2017",3,0,99,1,1,NA,NA,NA +110,NA,2040,"2017",1,0,45,4,55,50,NA,NA +110,NA,2040,"2017",1,0,50,1,50,NA,NA,NA +110,NA,2040,"2017",1,0,50,3,50,50,NA,NA +110,NA,2040,"2017",1,0,50,2,50,50,NA,NA +110,NA,2041,"2017",1,1,100,4,100,100,NA,NA +110,NA,2041,"2017",1,1,100,2,100,100,NA,NA +110,NA,2041,"2017",1,1,100,3,100,100,NA,NA +110,NA,2041,"2017",1,1,100,1,100,NA,NA,NA +110,NA,2042,"2017",4,0,80,1,20,NA,NA,NA +110,NA,2043,"2017",6,0,50,1,50,NA,NA,NA +110,NA,2044,"2017",2,1,80,1,80,NA,NA,NA +110,NA,2045,"2017",4,1,90,1,90,NA,NA,NA +110,NA,2046,"2017",3,1,99,1,99,NA,NA,NA +110,NA,2047,"2017",2,1,50,1,50,NA,NA,NA +110,NA,2048,"2017",6,1,99,1,99,NA,NA,NA +110,NA,2049,"2017",2,1,25,1,25,NA,NA,NA +110,NA,2050,"2017",4,1,1,1,1,NA,NA,NA +110,NA,2051,"2017",4,1,80,1,80,NA,NA,NA +110,NA,2052,"2017",6,0,90,1,10,NA,NA,NA +110,NA,2053,"2017",2,1,90,1,90,NA,NA,NA +110,NA,2054,"2017",3,1,99,1,99,NA,NA,NA +110,NA,2055,"2017",1,1,60,1,60,NA,NA,NA +110,NA,2055,"2017",1,1,80,3,80,90,NA,NA +110,NA,2055,"2017",1,1,90,2,90,60,NA,NA +110,NA,2055,"2017",1,1,99,4,99,80,NA,NA +110,NA,2056,"2017",5,0,50,1,50,NA,NA,NA +110,NA,2057,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,2057,"2017",1,0,6,2,94,NA,NA,NA +110,NA,2057,"2017",1,0,100,4,0,10,NA,NA +110,NA,2057,"2017",1,0,90,3,10,94,NA,NA +110,NA,2058,"2017",1,0,70,3,30,40,NA,NA +110,NA,2058,"2017",1,0,60,4,40,30,NA,NA +110,NA,2058,"2017",1,0,60,2,40,40,NA,NA +110,NA,2058,"2017",1,0,60,1,40,NA,NA,NA +110,NA,2059,"2017",4,0,50,1,50,NA,NA,NA +110,NA,2060,"2017",2,1,99,1,99,NA,NA,NA +110,NA,2061,"2017",6,0,NA,1,NA,NA,NA,NA +110,NA,2062,"2017",2,0,99,1,1,NA,NA,NA +110,NA,2063,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,2063,"2017",1,1,99,4,99,99,NA,NA +110,NA,2063,"2017",1,1,99,2,99,NA,NA,NA +110,NA,2063,"2017",1,1,99,3,99,99,NA,NA +110,NA,2064,"2017",6,1,1,1,1,NA,NA,NA +110,NA,2065,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2066,"2017",1,0,NA,2,NA,NA,NA,NA +110,NA,2066,"2017",1,0,NA,1,NA,NA,NA,NA +110,NA,2066,"2017",1,0,NA,4,NA,NA,NA,NA +110,NA,2066,"2017",1,0,NA,3,NA,NA,NA,NA +110,NA,2067,"2017",1,1,99,1,99,NA,NA,NA +110,NA,2067,"2017",1,1,99,4,99,99,NA,NA +110,NA,2067,"2017",1,1,99,2,99,99,NA,NA +110,NA,2067,"2017",1,1,99,3,99,99,NA,NA +110,NA,2068,"2017",4,0,99,1,1,NA,NA,NA +110,NA,2069,"2017",1,1,1,3,1,1,NA,NA +110,NA,2069,"2017",1,1,1,1,1,NA,NA,NA +110,NA,2069,"2017",1,1,1,2,1,1,NA,NA +110,NA,2069,"2017",1,1,50,4,50,1,NA,NA +110,NA,2070,"2017",3,1,99,1,99,NA,NA,NA +110,NA,2071,"2017",4,1,1,1,1,NA,NA,NA +110,NA,2072,"2017",2,1,80,1,80,NA,NA,NA +110,NA,2073,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2074,"2017",2,1,90,1,90,NA,NA,NA +110,NA,2075,"2017",1,1,50,1,50,NA,NA,NA +110,NA,2075,"2017",1,1,NA,2,NA,50,NA,NA +110,NA,2075,"2017",1,1,99,4,99,99,NA,NA +110,NA,2075,"2017",1,1,99,3,99,NA,NA,NA +110,NA,2076,"2017",6,0,1,1,99,NA,NA,NA +110,NA,2077,"2017",1,0,1,2,99,90,NA,NA +110,NA,2077,"2017",1,0,10,1,90,NA,NA,NA +110,NA,2077,"2017",1,0,1,3,99,99,NA,NA +110,NA,2077,"2017",1,0,1,4,99,99,NA,NA +110,NA,2078,"2017",3,1,100,1,100,NA,NA,NA +110,NA,2079,"2017",1,0,10,3,90,20,NA,NA +110,NA,2079,"2017",1,0,80,4,20,90,NA,NA +110,NA,2079,"2017",1,0,99,1,1,NA,NA,NA +110,NA,2079,"2017",1,0,80,2,20,1,NA,NA +110,NA,2080,"2017",6,1,70,1,70,NA,NA,NA +110,NA,2081,"2017",4,0,50,1,50,NA,NA,NA +110,NA,2082,"2017",3,0,1,1,99,NA,NA,NA +110,NA,2083,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2084,"2017",4,1,50,1,50,NA,NA,NA +110,NA,2085,"2017",5,0,99,1,1,NA,NA,NA +110,NA,2086,"2017",2,1,99,1,99,NA,NA,NA +110,NA,2087,"2017",5,1,99,1,99,NA,NA,NA +110,NA,2088,"2017",2,1,70,1,70,NA,NA,NA +110,NA,2089,"2017",2,0,NA,1,NA,NA,NA,NA +110,NA,2090,"2017",3,0,80,1,20,NA,NA,NA +110,NA,2091,"2017",6,1,99,1,99,NA,NA,NA +110,NA,2092,"2017",2,0,90,1,10,NA,NA,NA +110,NA,2093,"2017",5,1,80,1,80,NA,NA,NA +110,NA,2094,"2017",5,1,50,1,50,NA,NA,NA +110,NA,2095,"2017",5,0,80,1,20,NA,NA,NA +110,NA,2096,"2017",5,0,50,1,50,NA,NA,NA +110,NA,2097,"2017",2,1,1,1,1,NA,NA,NA +110,NA,2098,"2017",4,1,1,1,1,NA,NA,NA +110,NA,2099,"2017",5,1,99,1,99,NA,NA,NA +110,NA,2100,"2017",6,1,99,1,99,NA,NA,NA +110,NA,2101,"2017",6,0,50,1,50,NA,NA,NA +110,NA,2102,"2017",3,1,99,1,99,NA,NA,NA +110,NA,2103,"2017",3,1,1,1,1,NA,NA,NA +110,NA,2104,"2017",6,0,99,1,1,NA,NA,NA +110,NA,2105,"2017",3,1,50,1,50,NA,NA,NA +110,NA,2106,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2107,"2017",4,0,50,1,50,NA,NA,NA +110,NA,2108,"2017",6,1,99,1,99,NA,NA,NA +110,NA,2109,"2017",6,1,50,1,50,NA,NA,NA +110,NA,2110,"2017",5,1,50,1,50,NA,NA,NA +110,NA,2111,"2017",4,1,50,1,50,NA,NA,NA +110,NA,2112,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2113,"2017",1,1,1,3,1,NA,NA,NA +110,NA,2113,"2017",1,1,NA,4,NA,1,NA,NA +110,NA,2113,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,2113,"2017",1,1,NA,2,NA,NA,NA,NA +110,NA,2114,"2017",5,1,99,1,99,NA,NA,NA +110,NA,2115,"2017",4,0,99,1,1,NA,NA,NA +110,NA,2116,"2017",4,0,1,1,99,NA,NA,NA +110,NA,2117,"2017",4,0,1,1,99,NA,NA,NA +110,NA,2118,"2017",2,1,50,1,50,NA,NA,NA +110,NA,2119,"2017",1,0,50,3,50,50,NA,NA +110,NA,2119,"2017",1,0,99,1,1,NA,NA,NA +110,NA,2119,"2017",1,0,50,4,50,50,NA,NA +110,NA,2119,"2017",1,0,50,2,50,1,NA,NA +110,NA,2120,"2017",4,0,100,1,0,NA,NA,NA +110,NA,2121,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2122,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2123,"2017",3,1,50,1,50,NA,NA,NA +110,NA,2124,"2017",5,1,99,1,99,NA,NA,NA +110,NA,2125,"2017",1,1,NA,1,NA,NA,NA,NA +110,NA,2125,"2017",1,1,99,3,99,NA,NA,NA +110,NA,2125,"2017",1,1,99,4,99,99,NA,NA +110,NA,2125,"2017",1,1,NA,2,NA,NA,NA,NA +110,NA,2126,"2017",2,1,1,1,1,NA,NA,NA +110,NA,2127,"2017",1,1,30,3,30,40,NA,NA +110,NA,2127,"2017",1,1,40,2,40,40,NA,NA +110,NA,2127,"2017",1,1,50,4,50,30,NA,NA +110,NA,2127,"2017",1,1,40,1,40,NA,NA,NA +110,NA,2128,"2017",4,1,70,1,70,NA,NA,NA +110,NA,2129,"2017",3,0,99,1,1,NA,NA,NA +110,NA,2130,"2017",3,0,80,1,20,NA,NA,NA +110,NA,2131,"2017",4,1,99,1,99,NA,NA,NA +110,NA,2132,"2017",2,0,50,1,50,NA,NA,NA +110,NA,2133,"2017",1,1,50,1,50,NA,NA,NA +110,NA,2133,"2017",1,1,99,3,99,99,NA,NA +110,NA,2133,"2017",1,1,99,2,99,50,NA,NA +110,NA,2133,"2017",1,1,99,4,99,99,NA,NA +110,NA,2134,"2017",1,0,6,3,94,95,NA,NA +110,NA,2134,"2017",1,0,88,4,12,94,NA,NA +110,NA,2134,"2017",1,0,6,1,94,NA,NA,NA +110,NA,2134,"2017",1,0,5,2,95,94,NA,NA +110,NA,2135,"2017",4,1,70,1,70,NA,NA,NA +110,110,3,"2017",4,1,NA,5,NA,NA,"Huanqiu",NA +110,110,9,"2017",3,0,1,2,99,99,"Huanqiu",NA +110,110,11,"2017",5,1,99,2,99,99,"Huanqiu",NA +110,110,12,"2017",2,0,99,2,1,50,"Huanqiu",NA +110,110,18,"2017",4,0,99,5,1,NA,"Huanqiu",NA +110,110,20,"2017",3,1,99,3,99,1,"Huanqiu",NA +110,110,23,"2017",4,0,99,5,1,NA,"Huanqiu",NA +110,110,24,"2017",6,1,0,2,0,0,"Huanqiu",NA +110,110,26,"2017",5,1,88,2,88,40,"Huanqiu",NA +110,110,28,"2017",5,0,NA,2,NA,15,"Huanqiu",NA +110,110,33,"2017",6,1,60,2,60,50,"Huanqiu",NA +110,110,40,"2017",5,1,98,2,98,99,"Huanqiu",NA +110,110,41,"2017",3,0,44,2,56,56,"Huanqiu",NA +110,110,45,"2017",2,0,44,3,56,67,"Huanqiu",NA +110,110,48,"2017",2,1,90,2,90,90,"Huanqiu",NA +110,110,54,"2017",2,0,50,2,50,50,"Huanqiu",NA +110,110,58,"2017",6,1,50,3,50,70,"Huanqiu",NA +110,110,62,"2017",5,1,99,3,99,10,"Huanqiu",NA +110,110,63,"2017",2,0,1,3,99,1,"Huanqiu",NA +110,110,65,"2017",3,1,80,3,80,65,"Huanqiu",NA +110,110,66,"2017",3,0,50,3,50,60,"Huanqiu",NA +110,110,1170,"2017",6,0,100,3,0,0,"Huanqiu",NA +110,110,1171,"2017",3,1,100,3,100,100,"Huanqiu",NA +110,110,1177,"2017",4,1,1,5,1,NA,"Huanqiu",NA +110,110,1178,"2017",6,0,10,2,90,90,"Huanqiu",NA +110,110,1180,"2017",6,0,50,2,50,50,"Huanqiu",NA +110,110,1182,"2017",2,0,20,3,80,80,"Huanqiu",NA +110,110,1184,"2017",6,1,99,3,99,99,"Huanqiu",NA +110,110,1185,"2017",6,1,80,2,80,50,"Huanqiu",NA +110,110,1190,"2017",2,0,30,2,70,60,"Huanqiu",NA +110,110,1191,"2017",5,1,NA,2,NA,NA,"Huanqiu",NA +110,110,1195,"2017",6,0,60,3,40,70,"Huanqiu",NA +110,110,1196,"2017",3,0,99,3,1,99,"Huanqiu",NA +110,110,1205,"2017",2,0,50,3,50,50,"Huanqiu",NA +110,110,1206,"2017",2,0,40,3,60,60,"Huanqiu",NA +110,110,1210,"2017",4,1,40,5,40,NA,"Huanqiu",NA +110,110,1211,"2017",4,1,52,5,52,NA,"Huanqiu",NA +110,110,1213,"2017",2,0,20,2,80,70,"Huanqiu",NA +110,110,1215,"2017",4,0,20,5,80,NA,"Huanqiu",NA +110,110,1217,"2017",5,0,99,2,1,1,"Huanqiu",NA +110,110,1218,"2017",6,1,20,3,20,20,"Huanqiu",NA +110,110,1219,"2017",6,0,99,2,1,50,"Huanqiu",NA +110,110,1220,"2017",6,0,40,2,60,80,"Huanqiu",NA +110,110,1221,"2017",3,0,20,3,80,80,"Huanqiu",NA +110,110,1225,"2017",3,0,0,2,100,100,"Huanqiu",NA +110,110,1229,"2017",4,0,30,5,70,NA,"Huanqiu",NA +110,110,1231,"2017",3,0,50,3,50,50,"Huanqiu",NA +110,110,1232,"2017",5,0,1,2,99,50,"Huanqiu",NA +110,110,1235,"2017",6,1,99,2,99,50,"Huanqiu",NA +110,110,1238,"2017",4,1,60,5,60,NA,"Huanqiu",NA +110,110,1239,"2017",3,0,50,3,50,50,"Huanqiu",NA +110,110,1241,"2017",4,0,50,5,50,NA,"Huanqiu",NA +110,110,1244,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,1250,"2017",5,0,80,2,20,70,"Huanqiu",NA +110,110,1252,"2017",5,1,NA,3,NA,99,"Huanqiu",NA +110,110,1258,"2017",6,1,99,3,99,50,"Huanqiu",NA +110,110,1259,"2017",5,1,98,2,98,98,"Huanqiu",NA +110,110,1261,"2017",4,0,1,5,99,NA,"Huanqiu",NA +110,110,1265,"2017",4,1,80,5,80,NA,"Huanqiu",NA +110,110,1266,"2017",4,1,1,5,1,NA,"Huanqiu",NA +110,110,1269,"2017",2,1,99,3,99,1,"Huanqiu",NA +110,110,1271,"2017",6,1,2,3,2,33,"Huanqiu",NA +110,110,1272,"2017",5,1,99,3,99,55,"Huanqiu",NA +110,110,1273,"2017",2,0,99,3,1,1,"Huanqiu",NA +110,110,1276,"2017",6,1,99,2,99,99,"Huanqiu",NA +110,110,1281,"2017",4,0,99,5,1,NA,"Huanqiu",NA +110,110,1283,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,1284,"2017",6,0,99,3,1,1,"Huanqiu",NA +110,110,1286,"2017",4,1,99,5,99,NA,"Huanqiu",NA +110,110,1289,"2017",6,0,50,3,50,76,"Huanqiu",NA +110,110,1293,"2017",3,0,50,3,50,NA,"Huanqiu",NA +110,110,1297,"2017",3,1,50,3,50,30,"Huanqiu",NA +110,110,1299,"2017",4,0,69,5,31,NA,"Huanqiu",NA +110,110,1303,"2017",5,0,96,2,4,5,"Huanqiu",NA +110,110,1304,"2017",6,1,50,3,50,99,"Huanqiu",NA +110,110,1307,"2017",5,1,45,2,45,45,"Huanqiu",NA +110,110,1308,"2017",3,1,NA,2,NA,1,"Huanqiu",NA +110,110,1310,"2017",6,1,NA,2,NA,1,"Huanqiu",NA +110,110,1311,"2017",5,1,99,2,99,70,"Huanqiu",NA +110,110,1313,"2017",5,1,70,3,70,50,"Huanqiu",NA +110,110,1314,"2017",3,0,1,3,99,99,"Huanqiu",NA +110,110,1319,"2017",3,1,NA,3,NA,NA,"Huanqiu",NA +110,110,1326,"2017",5,1,70,2,70,50,"Huanqiu",NA +110,110,1337,"2017",2,0,50,3,50,1,"Huanqiu",NA +110,110,1339,"2017",2,1,99,2,99,50,"Huanqiu",NA +110,110,1342,"2017",2,0,90,2,10,60,"Huanqiu",NA +110,110,1343,"2017",6,0,1,2,99,1,"Huanqiu",NA +110,110,1347,"2017",6,0,NA,3,NA,99,"Huanqiu",NA +110,110,1350,"2017",2,1,40,2,40,40,"Huanqiu",NA +110,110,1359,"2017",5,0,99,2,1,50,"Huanqiu",NA +110,110,1365,"2017",6,1,99,2,99,50,"Huanqiu",NA +110,110,1371,"2017",2,1,50,3,50,50,"Huanqiu",NA +110,110,1372,"2017",2,1,20,3,20,30,"Huanqiu",NA +110,110,1373,"2017",6,0,90,2,10,50,"Huanqiu",NA +110,110,1376,"2017",5,0,99,3,1,50,"Huanqiu",NA +110,110,1377,"2017",5,1,20,3,20,20,"Huanqiu",NA +110,110,1379,"2017",2,1,100,2,100,99,"Huanqiu",NA +110,110,1381,"2017",4,0,22,5,78,NA,"Huanqiu",NA +110,110,1383,"2017",3,1,99,3,99,NA,"Huanqiu",NA +110,110,1384,"2017",3,1,80,2,80,85,"Huanqiu",NA +110,110,1385,"2017",6,0,65,2,35,25,"Huanqiu",NA +110,110,1388,"2017",3,0,60,3,40,50,"Huanqiu",NA +110,110,1389,"2017",4,0,50,5,50,NA,"Huanqiu",NA +110,110,1390,"2017",3,0,50,3,50,50,"Huanqiu",NA +110,110,1394,"2017",5,1,50,2,50,50,"Huanqiu",NA +110,110,1395,"2017",5,0,35,2,65,60,"Huanqiu",NA +110,110,1398,"2017",6,0,50,2,50,50,"Huanqiu",NA +110,110,1400,"2017",2,1,99,3,99,99,"Huanqiu",NA +110,110,1401,"2017",5,1,99,3,99,99,"Huanqiu",NA +110,110,1408,"2017",6,1,99,3,99,1,"Huanqiu",NA +110,110,1414,"2017",2,1,99,2,99,NA,"Huanqiu",NA +110,110,1418,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,1419,"2017",5,1,1,2,1,1,"Huanqiu",NA +110,110,1422,"2017",5,1,99,2,99,99,"Huanqiu",NA +110,110,1423,"2017",6,1,50,3,50,35,"Huanqiu",NA +110,110,1424,"2017",6,1,50,2,50,50,"Huanqiu",NA +110,110,1425,"2017",6,0,100,3,0,1,"Huanqiu",NA +110,110,1429,"2017",4,0,99,5,1,NA,"Huanqiu",NA +110,110,1431,"2017",5,1,99,3,99,99,"Huanqiu",NA +110,110,1433,"2017",3,1,90,3,90,50,"Huanqiu",NA +110,110,1437,"2017",6,1,99,2,99,99,"Huanqiu",NA +110,110,1442,"2017",5,1,99,2,99,99,"Huanqiu",NA +110,110,1443,"2017",4,1,1,5,1,NA,"Huanqiu",NA +110,110,1446,"2017",3,1,50,3,50,1,"Huanqiu",NA +110,110,1449,"2017",5,1,50,3,50,99,"Huanqiu",NA +110,110,1455,"2017",5,0,50,3,50,50,"Huanqiu",NA +110,110,1456,"2017",5,0,99,3,1,1,"Huanqiu",NA +110,110,1457,"2017",3,0,50,2,50,50,"Huanqiu",NA +110,110,1461,"2017",6,1,50,2,50,50,"Huanqiu",NA +110,110,1463,"2017",5,1,70,3,70,60,"Huanqiu",NA +110,110,1464,"2017",6,1,80,3,80,80,"Huanqiu",NA +110,110,1465,"2017",2,1,1,2,1,1,"Huanqiu",NA +110,110,1466,"2017",2,0,99,3,1,NA,"Huanqiu",NA +110,110,1467,"2017",2,1,1,2,1,1,"Huanqiu",NA +110,110,1470,"2017",2,0,99,3,1,NA,"Huanqiu",NA +110,110,1471,"2017",3,0,99,2,1,1,"Huanqiu",NA +110,110,1473,"2017",2,0,90,3,10,20,"Huanqiu",NA +110,110,1484,"2017",5,1,50,2,50,50,"Huanqiu",NA +110,110,1487,"2017",2,1,1,3,1,1,"Huanqiu",NA +110,110,1488,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,1490,"2017",3,1,1,2,1,1,"Huanqiu",NA +110,110,1493,"2017",4,1,99,5,99,NA,"Huanqiu",NA +110,110,1494,"2017",6,0,99,2,1,99,"Huanqiu",NA +110,110,1496,"2017",5,0,1,3,99,1,"Huanqiu",NA +110,110,1497,"2017",2,0,90,3,10,90,"Huanqiu",NA +110,110,1499,"2017",6,1,98,3,98,70,"Huanqiu",NA +110,110,1500,"2017",5,0,50,3,50,1,"Huanqiu",NA +110,110,1502,"2017",2,1,1,3,1,99,"Huanqiu",NA +110,110,1503,"2017",2,0,1,3,99,NA,"Huanqiu",NA +110,110,1504,"2017",4,1,99,5,99,NA,"Huanqiu",NA +110,110,1505,"2017",4,1,1,5,1,NA,"Huanqiu",NA +110,110,1522,"2017",3,1,99,2,99,80,"Huanqiu",NA +110,110,1527,"2017",6,1,1,2,1,50,"Huanqiu",NA +110,110,1529,"2017",4,0,NA,5,NA,NA,"Huanqiu",NA +110,110,1533,"2017",4,1,50,5,50,NA,"Huanqiu",NA +110,110,1542,"2017",6,0,50,3,50,50,"Huanqiu",NA +110,110,1545,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,1546,"2017",6,0,40,2,60,40,"Huanqiu",NA +110,110,1548,"2017",4,1,99,5,99,NA,"Huanqiu",NA +110,110,1549,"2017",5,0,99,3,1,1,"Huanqiu",NA +110,110,1551,"2017",6,1,80,2,80,80,"Huanqiu",NA +110,110,1554,"2017",4,1,90,5,90,NA,"Huanqiu",NA +110,110,1556,"2017",6,0,99,3,1,1,"Huanqiu",NA +110,110,1557,"2017",4,0,99,5,1,NA,"Huanqiu",NA +110,110,1559,"2017",4,0,1,5,99,NA,"Huanqiu",NA +110,110,1560,"2017",2,1,1,3,1,1,"Huanqiu",NA +110,110,1572,"2017",6,1,80,3,80,99,"Huanqiu",NA +110,110,1578,"2017",6,1,60,3,60,80,"Huanqiu",NA +110,110,1580,"2017",3,1,1,3,1,1,"Huanqiu",NA +110,110,1586,"2017",5,0,1,2,99,1,"Huanqiu",NA +110,110,1587,"2017",2,1,1,2,1,1,"Huanqiu",NA +110,110,1588,"2017",6,0,10,3,90,50,"Huanqiu",NA +110,110,1589,"2017",6,1,NA,2,NA,20,"Huanqiu",NA +110,110,1590,"2017",5,0,80,3,20,40,"Huanqiu",NA +110,110,1594,"2017",5,1,NA,3,NA,99,"Huanqiu",NA +110,110,1597,"2017",3,1,90,2,90,90,"Huanqiu",NA +110,110,1600,"2017",3,1,80,2,80,50,"Huanqiu",NA +110,110,1602,"2017",5,1,99,2,99,99,"Huanqiu",NA +110,110,1603,"2017",2,1,NA,2,NA,NA,"Huanqiu",NA +110,110,1605,"2017",5,0,50,2,50,50,"Huanqiu",NA +110,110,1607,"2017",2,0,60,3,40,50,"Huanqiu",NA +110,110,1608,"2017",6,1,1,3,1,1,"Huanqiu",NA +110,110,1609,"2017",5,0,99,2,1,1,"Huanqiu",NA +110,110,1610,"2017",2,0,99,3,1,1,"Huanqiu",NA +110,110,1613,"2017",3,0,50,2,50,50,"Huanqiu",NA +110,110,1614,"2017",6,1,80,3,80,50,"Huanqiu",NA +110,110,1615,"2017",6,0,50,2,50,99,"Huanqiu",NA +110,110,1618,"2017",6,1,99,3,99,99,"Huanqiu",NA +110,110,1619,"2017",6,0,50,3,50,50,"Huanqiu",NA +110,110,1620,"2017",6,0,1,2,99,50,"Huanqiu",NA +110,110,1622,"2017",6,0,60,3,40,70,"Huanqiu",NA +110,110,1625,"2017",6,1,80,3,80,60,"Huanqiu",NA +110,110,1626,"2017",4,1,1,5,1,NA,"Huanqiu",NA +110,110,1629,"2017",3,1,95,3,95,80,"Huanqiu",NA +110,110,1631,"2017",5,0,NA,2,NA,NA,"Huanqiu",NA +110,110,1634,"2017",2,0,40,2,60,60,"Huanqiu",NA +110,110,1638,"2017",6,0,50,3,50,50,"Huanqiu",NA +110,110,1640,"2017",3,0,90,2,10,20,"Huanqiu",NA +110,110,1642,"2017",3,0,1,2,99,99,"Huanqiu",NA +110,110,1643,"2017",3,1,50,2,50,50,"Huanqiu",NA +110,110,1651,"2017",3,1,1,2,1,50,"Huanqiu",NA +110,110,1652,"2017",2,1,99,2,99,99,"Huanqiu",NA +110,110,1656,"2017",3,1,60,2,60,7,"Huanqiu",NA +110,110,1657,"2017",6,1,99,3,99,99,"Huanqiu",NA +110,110,1658,"2017",6,0,1,3,99,1,"Huanqiu",NA +110,110,1662,"2017",6,0,90,3,10,50,"Huanqiu",NA +110,110,1663,"2017",3,0,50,3,50,1,"Huanqiu",NA +110,110,1666,"2017",6,0,NA,2,NA,95,"Huanqiu",NA +110,110,1667,"2017",2,0,99,3,1,1,"Huanqiu",NA +110,110,1671,"2017",5,0,99,3,1,1,"Huanqiu",NA +110,110,1672,"2017",2,1,99,3,99,99,"Huanqiu",NA +110,110,1675,"2017",3,0,99,2,1,99,"Huanqiu",NA +110,110,1676,"2017",5,1,90,3,90,88,"Huanqiu",NA +110,110,1677,"2017",5,1,NA,3,NA,50,"Huanqiu",NA +110,110,1679,"2017",6,0,99,2,1,1,"Huanqiu",NA +110,110,1680,"2017",2,0,99,2,1,99,"Huanqiu",NA +110,110,1681,"2017",6,1,99,2,99,NA,"Huanqiu",NA +110,110,1686,"2017",4,1,99,5,99,NA,"Huanqiu",NA +110,110,1689,"2017",4,0,1,5,99,NA,"Huanqiu",NA +110,110,1691,"2017",6,1,95,3,95,90,"Huanqiu",NA +110,110,1692,"2017",5,0,99,3,1,1,"Huanqiu",NA +110,110,1694,"2017",4,0,60,5,40,NA,"Huanqiu",NA +110,110,1697,"2017",5,0,90,3,10,20,"Huanqiu",NA +110,110,1699,"2017",4,1,85,5,85,NA,"Huanqiu",NA +110,110,1704,"2017",6,0,80,3,20,100,"Huanqiu",NA +110,110,1706,"2017",6,1,NA,2,NA,NA,"Huanqiu",NA +110,110,1711,"2017",3,1,100,2,100,100,"Huanqiu",NA +110,110,1712,"2017",5,1,51,2,51,50,"Huanqiu",NA +110,110,1715,"2017",3,1,33,3,33,33,"Huanqiu",NA +110,110,1716,"2017",3,1,1,3,1,1,"Huanqiu",NA +110,110,1718,"2017",5,1,98,2,98,49,"Huanqiu",NA +110,110,1722,"2017",6,0,50,3,50,50,"Huanqiu",NA +110,110,1726,"2017",3,0,44,2,56,45,"Huanqiu",NA +110,110,1727,"2017",2,1,67,3,67,86,"Huanqiu",NA +110,110,1729,"2017",2,0,44,2,56,67,"Huanqiu",NA +110,110,1730,"2017",3,1,90,3,90,60,"Huanqiu",NA +110,110,1733,"2017",2,1,45,3,45,50,"Huanqiu",NA +110,110,1734,"2017",5,1,40,3,40,20,"Huanqiu",NA +110,110,1736,"2017",4,1,70,5,70,NA,"Huanqiu",NA +110,110,1738,"2017",3,1,70,2,70,50,"Huanqiu",NA +110,110,1741,"2017",5,0,99,3,1,10,"Huanqiu",NA +110,110,1742,"2017",4,0,1,5,99,NA,"Huanqiu",NA +110,110,1744,"2017",5,1,99,2,99,99,"Huanqiu",NA +110,110,1745,"2017",3,0,50,3,50,50,"Huanqiu",NA +110,110,1746,"2017",4,0,99,5,1,NA,"Huanqiu",NA +110,110,1748,"2017",5,0,99,2,1,1,"Huanqiu",NA +110,110,1750,"2017",4,0,1,5,99,NA,"Huanqiu",NA +110,110,1760,"2017",6,0,91,3,9,39,"Huanqiu",NA +110,110,1762,"2017",2,1,99,3,99,99,"Huanqiu",NA +110,110,1764,"2017",2,0,50,3,50,50,"Huanqiu",NA +110,110,1765,"2017",5,0,NA,3,NA,NA,"Huanqiu",NA +110,110,1768,"2017",3,1,50,2,50,NA,"Huanqiu",NA +110,110,1770,"2017",3,1,100,3,100,92,"Huanqiu",NA +110,110,1772,"2017",2,0,50,2,50,60,"Huanqiu",NA +110,110,1773,"2017",4,1,68,5,68,NA,"Huanqiu",NA +110,110,1774,"2017",6,0,19,2,81,84,"Huanqiu",NA +110,110,1776,"2017",4,0,90,5,10,NA,"Huanqiu",NA +110,110,1778,"2017",3,1,87,2,87,88,"Huanqiu",NA +110,110,1783,"2017",3,0,1,3,99,99,"Huanqiu",NA +110,110,1786,"2017",6,1,85,2,85,91,"Huanqiu",NA +110,110,1787,"2017",3,1,85,2,85,92,"Huanqiu",NA +110,110,1790,"2017",3,1,82,2,82,18,"Huanqiu",NA +110,110,1792,"2017",2,1,100,3,100,50,"Huanqiu",NA +110,110,1795,"2017",3,0,7,2,93,14,"Huanqiu",NA +110,110,1802,"2017",2,1,92,2,92,95,"Huanqiu",NA +110,110,1803,"2017",3,1,88,3,88,95,"Huanqiu",NA +110,110,1805,"2017",5,1,89,3,89,87,"Huanqiu",NA +110,110,1808,"2017",3,1,99,2,99,NA,"Huanqiu",NA +110,110,1809,"2017",5,0,50,2,50,1,"Huanqiu",NA +110,110,1810,"2017",5,0,95,3,5,10,"Huanqiu",NA +110,110,1811,"2017",5,0,NA,3,NA,NA,"Huanqiu",NA +110,110,1814,"2017",3,0,NA,3,NA,10,"Huanqiu",NA +110,110,1816,"2017",3,1,80,2,80,70,"Huanqiu",NA +110,110,1818,"2017",5,1,85,3,85,85,"Huanqiu",NA +110,110,1821,"2017",3,0,90,2,10,30,"Huanqiu",NA +110,110,1826,"2017",3,0,99,3,1,1,"Huanqiu",NA +110,110,1831,"2017",6,0,99,2,1,1,"Huanqiu",NA +110,110,1832,"2017",2,0,60,2,40,50,"Huanqiu",NA +110,110,1833,"2017",3,0,1,2,99,50,"Huanqiu",NA +110,110,1834,"2017",2,0,99,2,1,99,"Huanqiu",NA +110,110,1836,"2017",2,0,1,2,99,70,"Huanqiu",NA +110,110,1838,"2017",2,1,50,2,50,50,"Huanqiu",NA +110,110,1839,"2017",2,0,99,2,1,1,"Huanqiu",NA +110,110,1840,"2017",5,0,80,2,20,10,"Huanqiu",NA +110,110,1841,"2017",2,1,50,3,50,50,"Huanqiu",NA +110,110,1843,"2017",6,1,99,3,99,1,"Huanqiu",NA +110,110,1844,"2017",2,1,99,2,99,12,"Huanqiu",NA +110,110,1846,"2017",2,1,100,3,100,100,"Huanqiu",NA +110,110,1847,"2017",5,1,99,3,99,0,"Huanqiu",NA +110,110,1848,"2017",4,0,1,5,99,NA,"Huanqiu",NA +110,110,1849,"2017",5,1,99,2,99,NA,"Huanqiu",NA +110,110,1852,"2017",3,0,1,3,99,99,"Huanqiu",NA +110,110,1853,"2017",6,0,99,2,1,50,"Huanqiu",NA +110,110,1856,"2017",3,1,85,3,85,75,"Huanqiu",NA +110,110,1860,"2017",4,0,1,5,99,NA,"Huanqiu",NA +110,110,1861,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,1868,"2017",2,1,99,3,99,99,"Huanqiu",NA +110,110,1869,"2017",6,1,0,3,0,100,"Huanqiu",NA +110,110,1871,"2017",4,0,99,5,1,NA,"Huanqiu",NA +110,110,1872,"2017",6,0,99,3,1,1,"Huanqiu",NA +110,110,1879,"2017",5,0,80,3,20,20,"Huanqiu",NA +110,110,1881,"2017",2,0,99,3,1,1,"Huanqiu",NA +110,110,1883,"2017",2,1,80,3,80,55,"Huanqiu",NA +110,110,1886,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,1888,"2017",5,1,99,2,99,99,"Huanqiu",NA +110,110,1890,"2017",6,1,100,2,100,0,"Huanqiu",NA +110,110,1892,"2017",5,0,60,2,40,20,"Huanqiu",NA +110,110,1893,"2017",5,0,99,3,1,9,"Huanqiu",NA +110,110,1895,"2017",6,1,99,2,99,50,"Huanqiu",NA +110,110,1896,"2017",2,1,50,2,50,1,"Huanqiu",NA +110,110,1897,"2017",5,1,99,3,99,99,"Huanqiu",NA +110,110,1898,"2017",3,1,99,2,99,99,"Huanqiu",NA +110,110,1899,"2017",5,0,50,2,50,50,"Huanqiu",NA +110,110,1903,"2017",5,1,99,2,99,1,"Huanqiu",NA +110,110,1911,"2017",5,0,99,2,1,50,"Huanqiu",NA +110,110,1916,"2017",3,0,1,2,99,80,"Huanqiu",NA +110,110,1917,"2017",3,1,50,3,50,NA,"Huanqiu",NA +110,110,1918,"2017",5,0,99,2,1,1,"Huanqiu",NA +110,110,1920,"2017",2,0,1,3,99,50,"Huanqiu",NA +110,110,1925,"2017",3,1,1,3,1,1,"Huanqiu",NA +110,110,1927,"2017",3,1,70,2,70,99,"Huanqiu",NA +110,110,1929,"2017",3,0,1,3,99,50,"Huanqiu",NA +110,110,1930,"2017",3,0,NA,3,NA,NA,"Huanqiu",NA +110,110,1931,"2017",2,0,50,3,50,50,"Huanqiu",NA +110,110,1932,"2017",4,0,NA,5,NA,NA,"Huanqiu",NA +110,110,1937,"2017",5,1,99,2,99,99,"Huanqiu",NA +110,110,1938,"2017",3,0,50,3,50,50,"Huanqiu",NA +110,110,1939,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,1941,"2017",6,1,90,2,90,90,"Huanqiu",NA +110,110,1943,"2017",3,0,99,3,1,1,"Huanqiu",NA +110,110,1944,"2017",2,0,99,2,1,1,"Huanqiu",NA +110,110,1946,"2017",6,0,50,3,50,99,"Huanqiu",NA +110,110,1947,"2017",2,1,80,2,80,70,"Huanqiu",NA +110,110,1952,"2017",4,0,50,5,50,NA,"Huanqiu",NA +110,110,1953,"2017",6,0,99,2,1,1,"Huanqiu",NA +110,110,1954,"2017",2,0,1,2,99,1,"Huanqiu",NA +110,110,1955,"2017",5,1,60,2,60,50,"Huanqiu",NA +110,110,1957,"2017",5,0,NA,3,NA,50,"Huanqiu",NA +110,110,1958,"2017",3,0,50,2,50,99,"Huanqiu",NA +110,110,1961,"2017",5,1,99,3,99,99,"Huanqiu",NA +110,110,1965,"2017",5,0,99,2,1,NA,"Huanqiu",NA +110,110,1966,"2017",2,1,20,2,20,40,"Huanqiu",NA +110,110,1967,"2017",2,1,99,3,99,99,"Huanqiu",NA +110,110,1968,"2017",5,0,99,3,1,1,"Huanqiu",NA +110,110,1972,"2017",6,1,1,2,1,99,"Huanqiu",NA +110,110,1975,"2017",2,1,99,3,99,99,"Huanqiu",NA +110,110,1977,"2017",3,0,99,3,1,50,"Huanqiu",NA +110,110,1979,"2017",2,0,1,2,99,99,"Huanqiu",NA +110,110,1980,"2017",6,0,70,2,30,NA,"Huanqiu",NA +110,110,1981,"2017",3,1,99,2,99,99,"Huanqiu",NA +110,110,1982,"2017",2,0,NA,2,NA,50,"Huanqiu",NA +110,110,1983,"2017",5,0,50,2,50,50,"Huanqiu",NA +110,110,1985,"2017",3,0,99,3,1,1,"Huanqiu",NA +110,110,1986,"2017",3,1,1,2,1,99,"Huanqiu",NA +110,110,1987,"2017",5,0,80,2,20,20,"Huanqiu",NA +110,110,1988,"2017",5,0,65,2,35,15,"Huanqiu",NA +110,110,1989,"2017",5,0,92,3,8,10,"Huanqiu",NA +110,110,1997,"2017",2,1,99,3,99,99,"Huanqiu",NA +110,110,1999,"2017",4,1,80,5,80,NA,"Huanqiu",NA +110,110,2001,"2017",5,1,99,3,99,99,"Huanqiu",NA +110,110,2003,"2017",6,0,50,3,50,50,"Huanqiu",NA +110,110,2008,"2017",3,0,100,3,0,0,"Huanqiu",NA +110,110,2013,"2017",2,1,99,2,99,80,"Huanqiu",NA +110,110,2019,"2017",6,1,90,2,90,70,"Huanqiu",NA +110,110,2020,"2017",3,1,1,3,1,50,"Huanqiu",NA +110,110,2022,"2017",5,0,99,2,1,20,"Huanqiu",NA +110,110,2024,"2017",3,0,100,2,0,0,"Huanqiu",NA +110,110,2029,"2017",6,1,99,3,99,99,"Huanqiu",NA +110,110,2033,"2017",5,0,1,2,99,99,"Huanqiu",NA +110,110,2034,"2017",2,0,99,2,1,1,"Huanqiu",NA +110,110,2037,"2017",6,1,99,2,99,99,"Huanqiu",NA +110,110,2038,"2017",6,1,1,3,1,10,"Huanqiu",NA +110,110,2042,"2017",4,0,80,5,20,NA,"Huanqiu",NA +110,110,2043,"2017",6,0,88,3,12,30,"Huanqiu",NA +110,110,2049,"2017",2,1,50,2,50,25,"Huanqiu",NA +110,110,2050,"2017",4,1,50,5,50,NA,"Huanqiu",NA +110,110,2053,"2017",2,1,90,3,90,90,"Huanqiu",NA +110,110,2054,"2017",3,1,90,3,90,99,"Huanqiu",NA +110,110,2061,"2017",6,0,NA,3,NA,NA,"Huanqiu",NA +110,110,2062,"2017",2,0,99,3,1,1,"Huanqiu",NA +110,110,2064,"2017",6,1,50,3,50,1,"Huanqiu",NA +110,110,2065,"2017",4,1,99,5,99,NA,"Huanqiu",NA +110,110,2070,"2017",3,1,99,3,99,99,"Huanqiu",NA +110,110,2073,"2017",4,1,99,5,99,NA,"Huanqiu",NA +110,110,2085,"2017",5,0,99,2,1,1,"Huanqiu",NA +110,110,2093,"2017",5,1,50,3,50,60,"Huanqiu",NA +110,110,2094,"2017",5,1,78,3,78,50,"Huanqiu",NA +110,110,2095,"2017",5,0,100,3,0,1,"Huanqiu",NA +110,110,2096,"2017",5,0,1,2,99,50,"Huanqiu",NA +110,110,2097,"2017",2,1,1,3,1,1,"Huanqiu",NA +110,110,2098,"2017",4,1,1,5,1,NA,"Huanqiu",NA +110,110,2101,"2017",6,0,99,3,1,40,"Huanqiu",NA +110,110,2102,"2017",3,1,99,2,99,99,"Huanqiu",NA +110,110,2109,"2017",6,1,99,3,99,99,"Huanqiu",NA +110,110,2116,"2017",4,0,99,5,1,NA,"Huanqiu",NA +110,110,2124,"2017",5,1,99,3,99,99,"Huanqiu",NA +110,110,2128,"2017",4,1,70,5,70,NA,"Huanqiu",NA +110,110,2130,"2017",3,0,99,2,1,20,"Huanqiu",NA +110,110,2131,"2017",4,1,99,5,99,NA,"Huanqiu",NA +110,137,2,"2017",5,0,NA,3,NA,NA,"BBC",NA +110,137,8,"2017",5,1,99,3,99,99,"BBC",NA +110,137,11,"2017",5,1,99,3,99,99,"BBC",NA +110,137,14,"2017",3,1,99,3,99,99,"BBC",NA +110,137,19,"2017",3,1,80,3,80,80,"BBC",NA +110,137,22,"2017",6,0,88,2,12,20,"BBC",NA +110,137,26,"2017",5,1,99,3,99,88,"BBC",NA +110,137,28,"2017",5,0,80,3,20,NA,"BBC",NA +110,137,29,"2017",4,1,NA,3,NA,NA,"BBC",NA +110,137,31,"2017",6,0,NA,3,NA,NA,"BBC",NA +110,137,32,"2017",6,0,NA,3,NA,NA,"BBC",NA +110,137,40,"2017",5,1,98,3,98,98,"BBC",NA +110,137,43,"2017",2,1,1,2,1,50,"BBC",NA +110,137,44,"2017",6,0,70,3,30,30,"BBC",NA +110,137,46,"2017",5,0,99,3,1,1,"BBC",NA +110,137,48,"2017",2,1,90,3,90,90,"BBC",NA +110,137,49,"2017",6,1,23,3,23,41,"BBC",NA +110,137,53,"2017",5,0,60,3,40,90,"BBC",NA +110,137,58,"2017",6,1,70,2,70,50,"BBC",NA +110,137,67,"2017",3,1,89,2,89,88,"BBC",NA +110,137,68,"2017",2,1,70,2,70,NA,"BBC",NA +110,137,69,"2017",5,1,99,3,99,80,"BBC",NA +110,137,72,"2017",2,0,1,2,99,99,"BBC",NA +110,137,1169,"2017",6,0,100,2,0,1,"BBC",NA +110,137,1171,"2017",3,1,100,2,100,100,"BBC",NA +110,137,1172,"2017",6,1,100,2,100,100,"BBC",NA +110,137,1173,"2017",2,1,100,3,100,90,"BBC",NA +110,137,1174,"2017",4,0,50,3,50,NA,"BBC",NA +110,137,1182,"2017",2,0,20,2,80,80,"BBC",NA +110,137,1189,"2017",3,1,0,2,0,0,"BBC",NA +110,137,1194,"2017",5,1,99,3,99,90,"BBC",NA +110,137,1196,"2017",3,0,1,2,99,1,"BBC",NA +110,137,1200,"2017",2,1,99,3,99,99,"BBC",NA +110,137,1204,"2017",5,1,80,2,80,50,"BBC",NA +110,137,1206,"2017",2,0,40,2,60,60,"BBC",NA +110,137,1207,"2017",3,1,99,3,99,99,"BBC",NA +110,137,1208,"2017",5,0,100,3,0,0,"BBC",NA +110,137,1209,"2017",6,1,100,3,100,100,"BBC",NA +110,137,1213,"2017",2,0,20,3,80,80,"BBC",NA +110,137,1224,"2017",5,0,75,2,25,50,"BBC",NA +110,137,1227,"2017",5,0,70,2,30,50,"BBC",NA +110,137,1228,"2017",5,1,1,2,1,1,"BBC",NA +110,137,1234,"2017",2,1,80,3,80,90,"BBC",NA +110,137,1239,"2017",3,0,50,2,50,50,"BBC",NA +110,137,1240,"2017",5,0,99,2,1,1,"BBC",NA +110,137,1242,"2017",2,0,99,2,1,50,"BBC",NA +110,137,1244,"2017",3,1,99,2,99,50,"BBC",NA +110,137,1246,"2017",6,1,49,3,49,50,"BBC",NA +110,137,1254,"2017",3,0,99,2,1,50,"BBC",NA +110,137,1260,"2017",2,0,99,2,1,1,"BBC",NA +110,137,1262,"2017",3,0,1,2,99,99,"BBC",NA +110,137,1267,"2017",3,0,1,3,99,50,"BBC",NA +110,137,1269,"2017",2,1,1,2,1,50,"BBC",NA +110,137,1271,"2017",6,1,33,2,33,2,"BBC",NA +110,137,1275,"2017",4,1,50,3,50,NA,"BBC",NA +110,137,1278,"2017",5,1,60,2,60,60,"BBC",NA +110,137,1279,"2017",3,0,0,2,100,100,"BBC",NA +110,137,1283,"2017",3,1,99,2,99,99,"BBC",NA +110,137,1287,"2017",2,0,50,3,50,1,"BBC",NA +110,137,1289,"2017",6,0,24,2,76,32,"BBC",NA +110,137,1291,"2017",2,0,99,3,1,1,"BBC",NA +110,137,1294,"2017",6,1,99,3,99,1,"BBC",NA +110,137,1296,"2017",6,1,88,3,88,88,"BBC",NA +110,137,1298,"2017",2,0,60,3,40,40,"BBC",NA +110,137,1300,"2017",3,1,50,2,50,50,"BBC",NA +110,137,1306,"2017",2,0,1,3,99,99,"BBC",NA +110,137,1308,"2017",3,1,50,3,50,NA,"BBC",NA +110,137,1311,"2017",5,1,99,3,99,99,"BBC",NA +110,137,1312,"2017",5,1,99,2,99,50,"BBC",NA +110,137,1321,"2017",3,0,50,3,50,50,"BBC",NA +110,137,1322,"2017",3,1,50,3,50,50,"BBC",NA +110,137,1323,"2017",5,1,99,2,99,99,"BBC",NA +110,137,1324,"2017",2,1,60,3,60,30,"BBC",NA +110,137,1325,"2017",5,0,99,3,1,1,"BBC",NA +110,137,1328,"2017",2,0,1,2,99,99,"BBC",NA +110,137,1332,"2017",2,0,80,3,20,95,"BBC",NA +110,137,1335,"2017",5,1,99,3,99,70,"BBC",NA +110,137,1336,"2017",6,0,1,3,99,99,"BBC",NA +110,137,1338,"2017",5,1,40,2,40,30,"BBC",NA +110,137,1339,"2017",2,1,NA,3,NA,99,"BBC",NA +110,137,1341,"2017",2,1,50,2,50,20,"BBC",NA +110,137,1342,"2017",2,0,60,3,40,10,"BBC",NA +110,137,1344,"2017",6,0,60,3,40,50,"BBC",NA +110,137,1345,"2017",3,0,60,3,40,40,"BBC",NA +110,137,1346,"2017",2,0,99,3,1,50,"BBC",NA +110,137,1347,"2017",6,0,1,2,99,NA,"BBC",NA +110,137,1352,"2017",2,1,1,3,1,1,"BBC",NA +110,137,1354,"2017",3,0,99,3,1,50,"BBC",NA +110,137,1355,"2017",6,0,99,2,1,1,"BBC",NA +110,137,1356,"2017",3,0,1,2,99,99,"BBC",NA +110,137,1357,"2017",2,1,50,2,50,50,"BBC",NA +110,137,1358,"2017",2,1,50,3,50,50,"BBC",NA +110,137,1360,"2017",3,1,99,3,99,80,"BBC",NA +110,137,1362,"2017",3,1,60,2,60,20,"BBC",NA +110,137,1363,"2017",6,1,100,2,100,100,"BBC",NA +110,137,1365,"2017",6,1,99,3,99,99,"BBC",NA +110,137,1367,"2017",5,1,1,3,1,1,"BBC",NA +110,137,1368,"2017",3,0,99,2,1,1,"BBC",NA +110,137,1369,"2017",6,0,70,3,30,40,"BBC",NA +110,137,1370,"2017",5,0,99,3,1,1,"BBC",NA +110,137,1371,"2017",2,1,50,2,50,50,"BBC",NA +110,137,1372,"2017",2,1,30,2,30,20,"BBC",NA +110,137,1373,"2017",6,0,99,3,1,10,"BBC",NA +110,137,1382,"2017",6,0,60,2,40,50,"BBC",NA +110,137,1383,"2017",3,1,NA,2,NA,NA,"BBC",NA +110,137,1384,"2017",3,1,75,3,75,80,"BBC",NA +110,137,1385,"2017",6,0,61,3,39,35,"BBC",NA +110,137,1386,"2017",2,0,99,3,1,50,"BBC",NA +110,137,1391,"2017",3,0,99,3,1,1,"BBC",NA +110,137,1392,"2017",5,0,NA,3,NA,NA,"BBC",NA +110,137,1393,"2017",2,1,99,3,99,99,"BBC",NA +110,137,1394,"2017",5,1,50,3,50,50,"BBC",NA +110,137,1395,"2017",5,0,35,3,65,65,"BBC",NA +110,137,1397,"2017",5,1,1,3,1,1,"BBC",NA +110,137,1398,"2017",6,0,50,3,50,50,"BBC",NA +110,137,1400,"2017",2,1,99,2,99,99,"BBC",NA +110,137,1401,"2017",5,1,99,2,99,99,"BBC",NA +110,137,1407,"2017",6,1,40,3,40,30,"BBC",NA +110,137,1408,"2017",6,1,1,2,1,99,"BBC",NA +110,137,1412,"2017",5,0,1,3,99,50,"BBC",NA +110,137,1416,"2017",5,0,99,3,1,1,"BBC",NA +110,137,1419,"2017",5,1,1,3,1,1,"BBC",NA +110,137,1424,"2017",6,1,50,3,50,50,"BBC",NA +110,137,1428,"2017",6,0,NA,2,NA,20,"BBC",NA +110,137,1432,"2017",2,0,1,2,99,99,"BBC",NA +110,137,1433,"2017",3,1,50,2,50,70,"BBC",NA +110,137,1435,"2017",6,1,99,3,99,99,"BBC",NA +110,137,1439,"2017",3,1,45,2,45,15,"BBC",NA +110,137,1441,"2017",3,1,99,2,99,99,"BBC",NA +110,137,1445,"2017",3,1,99,3,99,99,"BBC",NA +110,137,1446,"2017",3,1,1,2,1,50,"BBC",NA +110,137,1448,"2017",2,0,99,3,1,1,"BBC",NA +110,137,1449,"2017",5,1,99,2,99,99,"BBC",NA +110,137,1450,"2017",5,0,60,2,40,40,"BBC",NA +110,137,1457,"2017",3,0,50,3,50,50,"BBC",NA +110,137,1462,"2017",5,1,10,2,10,1,"BBC",NA +110,137,1465,"2017",2,1,1,3,1,1,"BBC",NA +110,137,1469,"2017",3,0,99,2,1,99,"BBC",NA +110,137,1471,"2017",3,0,99,3,1,1,"BBC",NA +110,137,1472,"2017",6,1,1,2,1,1,"BBC",NA +110,137,1473,"2017",2,0,80,2,20,10,"BBC",NA +110,137,1475,"2017",6,1,99,2,99,99,"BBC",NA +110,137,1484,"2017",5,1,50,3,50,50,"BBC",NA +110,137,1485,"2017",2,1,50,3,50,99,"BBC",NA +110,137,1489,"2017",3,1,1,3,1,1,"BBC",NA +110,137,1491,"2017",5,0,99,3,1,1,"BBC",NA +110,137,1492,"2017",2,1,13,3,13,12,"BBC",NA +110,137,1494,"2017",6,0,99,3,1,1,"BBC",NA +110,137,1497,"2017",2,0,10,2,90,50,"BBC",NA +110,137,1499,"2017",6,1,70,2,70,50,"BBC",NA +110,137,1500,"2017",5,0,99,2,1,1,"BBC",NA +110,137,1506,"2017",2,0,99,3,1,1,"BBC",NA +110,137,1509,"2017",6,1,70,3,70,65,"BBC",NA +110,137,1510,"2017",5,1,90,3,90,9,"BBC",NA +110,137,1511,"2017",4,1,1,3,1,NA,"BBC",NA +110,137,1512,"2017",6,0,1,2,99,1,"BBC",NA +110,137,1514,"2017",5,0,99,3,1,1,"BBC",NA +110,137,1515,"2017",5,1,99,3,99,99,"BBC",NA +110,137,1518,"2017",3,0,50,3,50,50,"BBC",NA +110,137,1522,"2017",3,1,100,3,100,99,"BBC",NA +110,137,1524,"2017",5,1,15,3,15,10,"BBC",NA +110,137,1527,"2017",6,1,1,3,1,1,"BBC",NA +110,137,1528,"2017",5,1,NA,2,NA,50,"BBC",NA +110,137,1530,"2017",3,1,50,3,50,50,"BBC",NA +110,137,1534,"2017",5,1,50,3,50,50,"BBC",NA +110,137,1536,"2017",6,0,1,3,99,99,"BBC",NA +110,137,1541,"2017",5,0,99,3,1,1,"BBC",NA +110,137,1542,"2017",6,0,50,2,50,50,"BBC",NA +110,137,1546,"2017",6,0,50,3,50,60,"BBC",NA +110,137,1547,"2017",5,1,NA,3,NA,NA,"BBC",NA +110,137,1550,"2017",2,0,50,3,50,95,"BBC",NA +110,137,1551,"2017",6,1,80,3,80,80,"BBC",NA +110,137,1553,"2017",2,1,99,3,99,99,"BBC",NA +110,137,1558,"2017",3,1,50,3,50,99,"BBC",NA +110,137,1560,"2017",2,1,1,2,1,50,"BBC",NA +110,137,1561,"2017",5,0,1,3,99,99,"BBC",NA +110,137,1565,"2017",6,0,50,3,50,99,"BBC",NA +110,137,1566,"2017",3,1,99,2,99,99,"BBC",NA +110,137,1568,"2017",6,1,1,2,1,99,"BBC",NA +110,137,1569,"2017",6,1,99,3,99,99,"BBC",NA +110,137,1570,"2017",3,0,50,2,50,99,"BBC",NA +110,137,1572,"2017",6,1,99,2,99,80,"BBC",NA +110,137,1575,"2017",3,0,100,3,0,NA,"BBC",NA +110,137,1577,"2017",6,1,1,2,1,1,"BBC",NA +110,137,1578,"2017",6,1,80,2,80,80,"BBC",NA +110,137,1579,"2017",5,1,50,2,50,30,"BBC",NA +110,137,1589,"2017",6,1,20,3,20,NA,"BBC",NA +110,137,1591,"2017",6,1,NA,2,NA,50,"BBC",NA +110,137,1594,"2017",5,1,99,2,99,NA,"BBC",NA +110,137,1595,"2017",2,0,99,2,1,1,"BBC",NA +110,137,1599,"2017",2,0,13,3,87,99,"BBC",NA +110,137,1600,"2017",3,1,80,3,80,80,"BBC",NA +110,137,1605,"2017",5,0,NA,3,NA,50,"BBC",NA +110,137,1611,"2017",2,1,50,3,50,NA,"BBC",NA +110,137,1617,"2017",5,1,1,3,1,50,"BBC",NA +110,137,1622,"2017",6,0,30,2,70,50,"BBC",NA +110,137,1629,"2017",3,1,80,2,80,60,"BBC",NA +110,137,1631,"2017",5,0,NA,3,NA,NA,"BBC",NA +110,137,1632,"2017",5,1,99,2,99,99,"BBC",NA +110,137,1633,"2017",5,0,99,3,1,1,"BBC",NA +110,137,1638,"2017",6,0,50,2,50,50,"BBC",NA +110,137,1641,"2017",2,0,70,3,30,NA,"BBC",NA +110,137,1654,"2017",5,1,1,3,1,1,"BBC",NA +110,137,1660,"2017",5,1,NA,3,NA,99,"BBC",NA +110,137,1669,"2017",5,1,65,3,65,60,"BBC",NA +110,137,1670,"2017",3,0,50,2,50,50,"BBC",NA +110,137,1673,"2017",6,0,99,3,1,1,"BBC",NA +110,137,1690,"2017",6,0,50,2,50,50,"BBC",NA +110,137,1691,"2017",6,1,90,2,90,80,"BBC",NA +110,137,1692,"2017",5,0,99,2,1,1,"BBC",NA +110,137,1693,"2017",2,1,99,2,99,1,"BBC",NA +110,137,1698,"2017",3,0,80,2,20,30,"BBC",NA +110,137,1701,"2017",2,1,20,3,20,20,"BBC",NA +110,137,1703,"2017",3,1,50,2,50,1,"BBC",NA +110,137,1704,"2017",6,0,0,2,100,40,"BBC",NA +110,137,1708,"2017",2,1,20,3,20,30,"BBC",NA +110,137,1712,"2017",5,1,49,3,49,51,"BBC",NA +110,137,1713,"2017",3,1,1,2,1,99,"BBC",NA +110,137,1717,"2017",3,1,60,2,60,40,"BBC",NA +110,137,1718,"2017",5,1,98,3,98,98,"BBC",NA +110,137,1719,"2017",3,1,60,3,60,80,"BBC",NA +110,137,1720,"2017",3,1,30,2,30,70,"BBC",NA +110,137,1721,"2017",3,0,99,2,1,1,"BBC",NA +110,137,1730,"2017",3,1,60,2,60,70,"BBC",NA +110,137,1731,"2017",3,1,10,2,10,14,"BBC",NA +110,137,1733,"2017",2,1,50,2,50,65,"BBC",NA +110,137,1737,"2017",2,1,70,2,70,50,"BBC",NA +110,137,1739,"2017",2,0,99,3,1,50,"BBC",NA +110,137,1745,"2017",3,0,50,2,50,50,"BBC",NA +110,137,1751,"2017",2,1,1,2,1,1,"BBC",NA +110,137,1759,"2017",3,0,42,3,58,68,"BBC",NA +110,137,1760,"2017",6,0,61,2,39,49,"BBC",NA +110,137,1764,"2017",2,0,50,2,50,75,"BBC",NA +110,137,1767,"2017",6,1,1,3,1,99,"BBC",NA +110,137,1768,"2017",3,1,50,3,50,50,"BBC",NA +110,137,1782,"2017",2,0,87,3,13,19,"BBC",NA +110,137,1783,"2017",3,0,1,2,99,1,"BBC",NA +110,137,1786,"2017",6,1,94,3,94,85,"BBC",NA +110,137,1790,"2017",3,1,82,3,82,82,"BBC",NA +110,137,1791,"2017",4,0,64,3,36,NA,"BBC",NA +110,137,1792,"2017",2,1,50,2,50,50,"BBC",NA +110,137,1801,"2017",6,0,86,2,14,3,"BBC",NA +110,137,1802,"2017",2,1,88,3,88,92,"BBC",NA +110,137,1809,"2017",5,0,1,3,99,50,"BBC",NA +110,137,1810,"2017",5,0,90,2,10,10,"BBC",NA +110,137,1813,"2017",3,0,50,3,50,99,"BBC",NA +110,137,1814,"2017",3,0,90,2,10,30,"BBC",NA +110,137,1817,"2017",3,0,90,3,10,20,"BBC",NA +110,137,1818,"2017",5,1,85,2,85,70,"BBC",NA +110,137,1819,"2017",2,1,90,3,90,90,"BBC",NA +110,137,1824,"2017",4,1,99,3,99,NA,"BBC",NA +110,137,1825,"2017",2,0,1,2,99,1,"BBC",NA +110,137,1828,"2017",4,0,30,3,70,NA,"BBC",NA +110,137,1829,"2017",2,0,1,3,99,1,"BBC",NA +110,137,1832,"2017",2,0,70,3,30,40,"BBC",NA +110,137,1834,"2017",2,0,99,3,1,1,"BBC",NA +110,137,1836,"2017",2,0,1,3,99,99,"BBC",NA +110,137,1838,"2017",2,1,50,3,50,50,"BBC",NA +110,137,1843,"2017",6,1,1,2,1,99,"BBC",NA +110,137,1846,"2017",2,1,100,2,100,NA,"BBC",NA +110,137,1849,"2017",5,1,99,3,99,99,"BBC",NA +110,137,1850,"2017",3,1,99,2,99,99,"BBC",NA +110,137,1851,"2017",5,0,99,2,1,1,"BBC",NA +110,137,1852,"2017",3,0,1,2,99,NA,"BBC",NA +110,137,1853,"2017",6,0,99,3,1,1,"BBC",NA +110,137,1854,"2017",2,0,49,2,51,50,"BBC",NA +110,137,1858,"2017",6,0,99,3,1,1,"BBC",NA +110,137,1859,"2017",3,1,80,3,80,80,"BBC",NA +110,137,1861,"2017",3,1,99,2,99,99,"BBC",NA +110,137,1863,"2017",6,1,80,2,80,80,"BBC",NA +110,137,1864,"2017",2,1,NA,2,NA,50,"BBC",NA +110,137,1877,"2017",2,1,80,3,80,85,"BBC",NA +110,137,1882,"2017",3,0,50,3,50,50,"BBC",NA +110,137,1884,"2017",2,0,20,2,80,0,"BBC",NA +110,137,1885,"2017",2,0,10,2,90,95,"BBC",NA +110,137,1893,"2017",5,0,91,2,9,10,"BBC",NA +110,137,1899,"2017",5,0,99,3,1,50,"BBC",NA +110,137,1903,"2017",5,1,50,3,50,99,"BBC",NA +110,137,1907,"2017",5,0,80,3,20,10,"BBC",NA +110,137,1908,"2017",3,0,99,3,1,1,"BBC",NA +110,137,1909,"2017",5,0,50,3,50,60,"BBC",NA +110,137,1910,"2017",3,1,50,3,50,50,"BBC",NA +110,137,1914,"2017",5,1,50,3,50,50,"BBC",NA +110,137,1915,"2017",5,0,99,2,1,1,"BBC",NA +110,137,1917,"2017",3,1,NA,2,NA,99,"BBC",NA +110,137,1921,"2017",3,1,60,2,60,90,"BBC",NA +110,137,1922,"2017",5,1,99,2,99,99,"BBC",NA +110,137,1925,"2017",3,1,1,2,1,1,"BBC",NA +110,137,1926,"2017",2,1,50,2,50,50,"BBC",NA +110,137,1928,"2017",2,1,1,2,1,1,"BBC",NA +110,137,1929,"2017",3,0,50,2,50,1,"BBC",NA +110,137,1939,"2017",3,1,99,2,99,1,"BBC",NA +110,137,1940,"2017",6,1,99,3,99,99,"BBC",NA +110,137,1945,"2017",3,0,99,3,1,1,"BBC",NA +110,137,1946,"2017",6,0,1,2,99,99,"BBC",NA +110,137,1947,"2017",2,1,80,3,80,80,"BBC",NA +110,137,1955,"2017",5,1,60,3,60,60,"BBC",NA +110,137,1958,"2017",3,0,50,3,50,50,"BBC",NA +110,137,1960,"2017",6,1,50,2,50,50,"BBC",NA +110,137,1961,"2017",5,1,99,2,99,99,"BBC",NA +110,137,1966,"2017",2,1,10,3,10,20,"BBC",NA +110,137,1967,"2017",2,1,99,2,99,99,"BBC",NA +110,137,1974,"2017",4,0,99,3,1,NA,"BBC",NA +110,137,1978,"2017",2,0,50,3,50,1,"BBC",NA +110,137,1983,"2017",5,0,50,3,50,50,"BBC",NA +110,137,1984,"2017",5,1,NA,2,NA,50,"BBC",NA +110,137,1985,"2017",3,0,99,2,1,1,"BBC",NA +110,137,1989,"2017",5,0,90,2,10,18,"BBC",NA +110,137,1990,"2017",5,1,50,2,50,50,"BBC",NA +110,137,1991,"2017",4,0,50,3,50,NA,"BBC",NA +110,137,1994,"2017",5,1,1,2,1,50,"BBC",NA +110,137,1995,"2017",6,0,89,2,11,1,"BBC",NA +110,137,1997,"2017",2,1,99,2,99,99,"BBC",NA +110,137,2000,"2017",3,0,90,2,10,20,"BBC",NA +110,137,2001,"2017",5,1,99,2,99,99,"BBC",NA +110,137,2004,"2017",3,1,1,3,1,1,"BBC",NA +110,137,2006,"2017",2,1,100,3,100,100,"BBC",NA +110,137,2007,"2017",4,1,20,3,20,NA,"BBC",NA +110,137,2016,"2017",5,0,NA,2,NA,1,"BBC",NA +110,137,2017,"2017",2,1,99,2,99,50,"BBC",NA +110,137,2018,"2017",3,1,99,2,99,50,"BBC",NA +110,137,2024,"2017",3,0,100,3,0,0,"BBC",NA +110,137,2026,"2017",5,0,100,3,0,0,"BBC",NA +110,137,2032,"2017",6,0,50,3,50,30,"BBC",NA +110,137,2036,"2017",6,0,99,2,1,1,"BBC",NA +110,137,2038,"2017",6,1,10,2,10,10,"BBC",NA +110,137,2043,"2017",6,0,70,2,30,50,"BBC",NA +110,137,2044,"2017",2,1,60,3,60,80,"BBC",NA +110,137,2047,"2017",2,1,50,3,50,50,"BBC",NA +110,137,2048,"2017",6,1,99,2,99,99,"BBC",NA +110,137,2052,"2017",6,0,90,3,10,10,"BBC",NA +110,137,2056,"2017",5,0,40,3,60,10,"BBC",NA +110,137,2060,"2017",2,1,1,2,1,99,"BBC",NA +110,137,2064,"2017",6,1,1,2,1,1,"BBC",NA +110,137,2068,"2017",4,0,99,3,1,NA,"BBC",NA +110,137,2082,"2017",3,0,1,2,99,99,"BBC",NA +110,137,2085,"2017",5,0,99,3,1,1,"BBC",NA +110,137,2089,"2017",2,0,NA,2,NA,NA,"BBC",NA +110,137,2090,"2017",3,0,80,2,20,20,"BBC",NA +110,137,2091,"2017",6,1,99,2,99,99,"BBC",NA +110,137,2092,"2017",2,0,99,3,1,1,"BBC",NA +110,137,2094,"2017",5,1,50,2,50,50,"BBC",NA +110,137,2097,"2017",2,1,1,2,1,1,"BBC",NA +110,137,2100,"2017",6,1,NA,3,NA,99,"BBC",NA +110,137,2102,"2017",3,1,99,3,99,99,"BBC",NA +110,137,2103,"2017",3,1,99,3,99,99,"BBC",NA +110,137,2104,"2017",6,0,99,2,1,1,"BBC",NA +110,137,2105,"2017",3,1,50,2,50,50,"BBC",NA +110,137,2114,"2017",5,1,90,3,90,NA,"BBC",NA +110,137,2117,"2017",4,0,99,3,1,NA,"BBC",NA +110,137,2118,"2017",2,1,30,2,30,50,"BBC",NA +110,137,2123,"2017",3,1,50,2,50,50,"BBC",NA +110,137,2126,"2017",2,1,12,3,12,1,"BBC",NA +110,137,2129,"2017",3,0,99,2,1,1,"BBC",NA +110,137,2132,"2017",2,0,60,2,40,50,"BBC",NA +110,145,6,"2017",6,0,100,2,0,100,"Nanfang Dushibao",NA +110,145,7,"2017",3,0,100,3,0,0,"Nanfang Dushibao",NA +110,145,9,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +110,145,13,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,14,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,17,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +110,145,20,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +110,145,21,"2017",5,1,50,3,50,99,"Nanfang Dushibao",NA +110,145,22,"2017",6,0,95,3,5,12,"Nanfang Dushibao",NA +110,145,36,"2017",2,0,40,3,60,55,"Nanfang Dushibao",NA +110,145,37,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,38,"2017",3,1,NA,2,NA,99,"Nanfang Dushibao",NA +110,145,42,"2017",2,0,NA,3,NA,40,"Nanfang Dushibao",NA +110,145,43,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +110,145,44,"2017",6,0,70,2,30,40,"Nanfang Dushibao",NA +110,145,52,"2017",4,1,20,4,20,NA,"Nanfang Dushibao",NA +110,145,53,"2017",5,0,10,2,90,10,"Nanfang Dushibao",NA +110,145,55,"2017",3,0,90,3,10,10,"Nanfang Dushibao",NA +110,145,62,"2017",5,1,10,2,10,10,"Nanfang Dushibao",NA +110,145,65,"2017",3,1,65,2,65,50,"Nanfang Dushibao",NA +110,145,66,"2017",3,0,40,2,60,50,"Nanfang Dushibao",NA +110,145,69,"2017",5,1,80,2,80,80,"Nanfang Dushibao",NA +110,145,1169,"2017",6,0,100,3,0,0,"Nanfang Dushibao",NA +110,145,1173,"2017",2,1,90,2,90,99,"Nanfang Dushibao",NA +110,145,1180,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +110,145,1186,"2017",3,0,10,3,90,85,"Nanfang Dushibao",NA +110,145,1187,"2017",5,0,10,2,90,50,"Nanfang Dushibao",NA +110,145,1189,"2017",3,1,0,3,0,0,"Nanfang Dushibao",NA +110,145,1193,"2017",4,0,30,4,70,NA,"Nanfang Dushibao",NA +110,145,1195,"2017",6,0,30,2,70,50,"Nanfang Dushibao",NA +110,145,1200,"2017",2,1,99,2,99,50,"Nanfang Dushibao",NA +110,145,1202,"2017",3,0,90,3,10,1,"Nanfang Dushibao",NA +110,145,1205,"2017",2,0,50,2,50,50,"Nanfang Dushibao",NA +110,145,1207,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1209,"2017",6,1,100,2,100,100,"Nanfang Dushibao",NA +110,145,1212,"2017",2,1,20,2,20,20,"Nanfang Dushibao",NA +110,145,1217,"2017",5,0,1,3,99,1,"Nanfang Dushibao",NA +110,145,1218,"2017",6,1,20,2,20,20,"Nanfang Dushibao",NA +110,145,1220,"2017",6,0,10,3,90,60,"Nanfang Dushibao",NA +110,145,1221,"2017",3,0,20,2,80,50,"Nanfang Dushibao",NA +110,145,1223,"2017",4,0,12,4,88,NA,"Nanfang Dushibao",NA +110,145,1230,"2017",5,0,98,2,2,1,"Nanfang Dushibao",NA +110,145,1232,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +110,145,1233,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +110,145,1234,"2017",2,1,90,2,90,80,"Nanfang Dushibao",NA +110,145,1235,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1242,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1243,"2017",2,0,60,3,40,40,"Nanfang Dushibao",NA +110,145,1246,"2017",6,1,50,2,50,40,"Nanfang Dushibao",NA +110,145,1249,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1252,"2017",5,1,99,2,99,NA,"Nanfang Dushibao",NA +110,145,1253,"2017",6,1,NA,2,NA,99,"Nanfang Dushibao",NA +110,145,1254,"2017",3,0,1,3,99,1,"Nanfang Dushibao",NA +110,145,1258,"2017",6,1,50,2,50,1,"Nanfang Dushibao",NA +110,145,1259,"2017",5,1,95,3,95,98,"Nanfang Dushibao",NA +110,145,1262,"2017",3,0,NA,3,NA,99,"Nanfang Dushibao",NA +110,145,1264,"2017",2,1,99,3,99,50,"Nanfang Dushibao",NA +110,145,1267,"2017",3,0,50,2,50,95,"Nanfang Dushibao",NA +110,145,1272,"2017",5,1,55,2,55,55,"Nanfang Dushibao",NA +110,145,1277,"2017",6,0,90,2,10,10,"Nanfang Dushibao",NA +110,145,1278,"2017",5,1,60,3,60,60,"Nanfang Dushibao",NA +110,145,1279,"2017",3,0,100,3,0,100,"Nanfang Dushibao",NA +110,145,1284,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1285,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +110,145,1288,"2017",5,0,50,2,50,1,"Nanfang Dushibao",NA +110,145,1292,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1294,"2017",6,1,1,2,1,50,"Nanfang Dushibao",NA +110,145,1297,"2017",3,1,30,2,30,20,"Nanfang Dushibao",NA +110,145,1301,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1305,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +110,145,1307,"2017",5,1,56,3,56,45,"Nanfang Dushibao",NA +110,145,1310,"2017",6,1,NA,3,NA,NA,"Nanfang Dushibao",NA +110,145,1312,"2017",5,1,50,3,50,99,"Nanfang Dushibao",NA +110,145,1314,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +110,145,1319,"2017",3,1,NA,2,NA,50,"Nanfang Dushibao",NA +110,145,1320,"2017",6,1,100,3,100,100,"Nanfang Dushibao",NA +110,145,1321,"2017",3,0,50,2,50,99,"Nanfang Dushibao",NA +110,145,1323,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1325,"2017",5,0,99,2,1,15,"Nanfang Dushibao",NA +110,145,1327,"2017",6,1,NA,2,NA,99,"Nanfang Dushibao",NA +110,145,1330,"2017",2,1,30,3,30,50,"Nanfang Dushibao",NA +110,145,1333,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +110,145,1334,"2017",6,1,50,3,50,50,"Nanfang Dushibao",NA +110,145,1336,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +110,145,1337,"2017",2,0,99,2,1,99,"Nanfang Dushibao",NA +110,145,1340,"2017",6,0,NA,3,NA,50,"Nanfang Dushibao",NA +110,145,1341,"2017",2,1,50,3,50,50,"Nanfang Dushibao",NA +110,145,1345,"2017",3,0,60,2,40,50,"Nanfang Dushibao",NA +110,145,1349,"2017",2,1,50,3,50,50,"Nanfang Dushibao",NA +110,145,1350,"2017",2,1,40,3,40,40,"Nanfang Dushibao",NA +110,145,1356,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +110,145,1357,"2017",2,1,50,3,50,50,"Nanfang Dushibao",NA +110,145,1359,"2017",5,0,1,3,99,1,"Nanfang Dushibao",NA +110,145,1360,"2017",3,1,80,2,80,60,"Nanfang Dushibao",NA +110,145,1363,"2017",6,1,0,3,0,100,"Nanfang Dushibao",NA +110,145,1366,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +110,145,1370,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1376,"2017",5,0,50,2,50,99,"Nanfang Dushibao",NA +110,145,1378,"2017",2,1,50,3,50,50,"Nanfang Dushibao",NA +110,145,1379,"2017",2,1,100,3,100,100,"Nanfang Dushibao",NA +110,145,1380,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +110,145,1392,"2017",5,0,NA,2,NA,1,"Nanfang Dushibao",NA +110,145,1393,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1397,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +110,145,1402,"2017",5,0,90,2,10,50,"Nanfang Dushibao",NA +110,145,1406,"2017",6,0,99,2,1,99,"Nanfang Dushibao",NA +110,145,1407,"2017",6,1,30,2,30,40,"Nanfang Dushibao",NA +110,145,1409,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +110,145,1410,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1411,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1412,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +110,145,1414,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1416,"2017",5,0,99,2,1,50,"Nanfang Dushibao",NA +110,145,1422,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1423,"2017",6,1,35,2,35,40,"Nanfang Dushibao",NA +110,145,1425,"2017",6,0,99,2,1,99,"Nanfang Dushibao",NA +110,145,1427,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1428,"2017",6,0,NA,3,NA,NA,"Nanfang Dushibao",NA +110,145,1430,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1431,"2017",5,1,99,2,99,50,"Nanfang Dushibao",NA +110,145,1434,"2017",5,0,1,2,99,50,"Nanfang Dushibao",NA +110,145,1435,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1436,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1437,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1438,"2017",5,0,80,3,20,30,"Nanfang Dushibao",NA +110,145,1439,"2017",3,1,50,3,50,45,"Nanfang Dushibao",NA +110,145,1441,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1442,"2017",5,1,50,3,50,99,"Nanfang Dushibao",NA +110,145,1453,"2017",5,1,99,2,99,10,"Nanfang Dushibao",NA +110,145,1455,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +110,145,1456,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1459,"2017",6,1,90,3,90,80,"Nanfang Dushibao",NA +110,145,1460,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +110,145,1464,"2017",6,1,80,2,80,80,"Nanfang Dushibao",NA +110,145,1466,"2017",2,0,NA,2,NA,50,"Nanfang Dushibao",NA +110,145,1467,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +110,145,1469,"2017",3,0,50,3,50,1,"Nanfang Dushibao",NA +110,145,1472,"2017",6,1,50,3,50,1,"Nanfang Dushibao",NA +110,145,1476,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1479,"2017",6,1,50,3,50,28,"Nanfang Dushibao",NA +110,145,1481,"2017",3,1,90,2,90,90,"Nanfang Dushibao",NA +110,145,1486,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1492,"2017",2,1,12,2,12,11,"Nanfang Dushibao",NA +110,145,1498,"2017",5,0,99,2,1,99.5,"Nanfang Dushibao",NA +110,145,1502,"2017",2,1,99,2,99,1,"Nanfang Dushibao",NA +110,145,1503,"2017",2,0,NA,2,NA,50,"Nanfang Dushibao",NA +110,145,1506,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1509,"2017",6,1,65,2,65,40,"Nanfang Dushibao",NA +110,145,1510,"2017",5,1,9,2,9,99,"Nanfang Dushibao",NA +110,145,1512,"2017",6,0,50,3,50,99,"Nanfang Dushibao",NA +110,145,1513,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +110,145,1516,"2017",2,1,1,2,1,1,"Nanfang Dushibao",NA +110,145,1524,"2017",5,1,10,2,10,5,"Nanfang Dushibao",NA +110,145,1526,"2017",6,1,NA,2,NA,50,"Nanfang Dushibao",NA +110,145,1530,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1531,"2017",6,1,99,3,99,1,"Nanfang Dushibao",NA +110,145,1532,"2017",2,1,50,2,50,20,"Nanfang Dushibao",NA +110,145,1534,"2017",5,1,50,2,50,NA,"Nanfang Dushibao",NA +110,145,1535,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +110,145,1540,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +110,145,1545,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1547,"2017",5,1,NA,2,NA,NA,"Nanfang Dushibao",NA +110,145,1550,"2017",2,0,5,2,95,99,"Nanfang Dushibao",NA +110,145,1553,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1565,"2017",6,0,1,2,99,1,"Nanfang Dushibao",NA +110,145,1569,"2017",6,1,99,2,99,NA,"Nanfang Dushibao",NA +110,145,1570,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +110,145,1583,"2017",4,0,88,4,12,NA,"Nanfang Dushibao",NA +110,145,1586,"2017",5,0,50,3,50,99,"Nanfang Dushibao",NA +110,145,1587,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +110,145,1588,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +110,145,1591,"2017",6,1,50,3,50,NA,"Nanfang Dushibao",NA +110,145,1592,"2017",6,1,60,3,60,60,"Nanfang Dushibao",NA +110,145,1595,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1596,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1598,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +110,145,1599,"2017",2,0,1,2,99,88,"Nanfang Dushibao",NA +110,145,1607,"2017",2,0,50,2,50,70,"Nanfang Dushibao",NA +110,145,1608,"2017",6,1,1,2,1,1,"Nanfang Dushibao",NA +110,145,1609,"2017",5,0,1,3,99,1,"Nanfang Dushibao",NA +110,145,1612,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1614,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1616,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1617,"2017",5,1,50,2,50,1,"Nanfang Dushibao",NA +110,145,1623,"2017",6,1,NA,2,NA,NA,"Nanfang Dushibao",NA +110,145,1627,"2017",4,0,70,4,30,NA,"Nanfang Dushibao",NA +110,145,1628,"2017",6,0,50,3,50,60,"Nanfang Dushibao",NA +110,145,1630,"2017",4,1,80,4,80,NA,"Nanfang Dushibao",NA +110,145,1632,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1635,"2017",5,1,NA,3,NA,50,"Nanfang Dushibao",NA +110,145,1639,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1640,"2017",3,0,99,3,1,10,"Nanfang Dushibao",NA +110,145,1641,"2017",2,0,NA,2,NA,60,"Nanfang Dushibao",NA +110,145,1642,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +110,145,1648,"2017",2,1,50,2,50,1,"Nanfang Dushibao",NA +110,145,1651,"2017",3,1,50,3,50,1,"Nanfang Dushibao",NA +110,145,1652,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1657,"2017",6,1,99,2,99,1,"Nanfang Dushibao",NA +110,145,1658,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1661,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1662,"2017",6,0,50,2,50,20,"Nanfang Dushibao",NA +110,145,1666,"2017",6,0,90,3,10,NA,"Nanfang Dushibao",NA +110,145,1668,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +110,145,1669,"2017",5,1,60,2,60,60,"Nanfang Dushibao",NA +110,145,1672,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1673,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1675,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1676,"2017",5,1,88,2,88,80,"Nanfang Dushibao",NA +110,145,1677,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1678,"2017",6,1,NA,3,NA,NA,"Nanfang Dushibao",NA +110,145,1679,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1683,"2017",5,0,90,3,10,10,"Nanfang Dushibao",NA +110,145,1696,"2017",6,1,80,2,80,10,"Nanfang Dushibao",NA +110,145,1698,"2017",3,0,85,3,15,20,"Nanfang Dushibao",NA +110,145,1701,"2017",2,1,20,2,20,1,"Nanfang Dushibao",NA +110,145,1702,"2017",2,0,99,2,1,50,"Nanfang Dushibao",NA +110,145,1708,"2017",2,1,30,2,30,30,"Nanfang Dushibao",NA +110,145,1709,"2017",3,0,50,2,50,99,"Nanfang Dushibao",NA +110,145,1711,"2017",3,1,100,3,100,100,"Nanfang Dushibao",NA +110,145,1721,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1728,"2017",6,0,99,3,1,50,"Nanfang Dushibao",NA +110,145,1731,"2017",3,1,28,3,28,10,"Nanfang Dushibao",NA +110,145,1732,"2017",4,1,NA,4,NA,NA,"Nanfang Dushibao",NA +110,145,1734,"2017",5,1,20,2,20,40,"Nanfang Dushibao",NA +110,145,1735,"2017",2,1,20,3,20,30,"Nanfang Dushibao",NA +110,145,1737,"2017",2,1,90,3,90,70,"Nanfang Dushibao",NA +110,145,1738,"2017",3,1,99,3,99,70,"Nanfang Dushibao",NA +110,145,1743,"2017",5,1,50,3,50,NA,"Nanfang Dushibao",NA +110,145,1747,"2017",4,1,NA,4,NA,NA,"Nanfang Dushibao",NA +110,145,1749,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +110,145,1754,"2017",6,0,50,3,50,1,"Nanfang Dushibao",NA +110,145,1755,"2017",4,1,85,4,85,NA,"Nanfang Dushibao",NA +110,145,1756,"2017",6,1,75,3,75,100,"Nanfang Dushibao",NA +110,145,1757,"2017",3,1,90,3,90,85,"Nanfang Dushibao",NA +110,145,1767,"2017",6,1,99,2,99,1,"Nanfang Dushibao",NA +110,145,1774,"2017",6,0,16,3,84,81,"Nanfang Dushibao",NA +110,145,1775,"2017",4,1,NA,4,NA,NA,"Nanfang Dushibao",NA +110,145,1781,"2017",6,0,95,2,5,1,"Nanfang Dushibao",NA +110,145,1788,"2017",2,1,97,3,97,NA,"Nanfang Dushibao",NA +110,145,1793,"2017",6,1,NA,2,NA,94,"Nanfang Dushibao",NA +110,145,1797,"2017",6,0,76,3,24,3,"Nanfang Dushibao",NA +110,145,1798,"2017",3,1,87,3,87,90,"Nanfang Dushibao",NA +110,145,1801,"2017",6,0,88,3,12,14,"Nanfang Dushibao",NA +110,145,1803,"2017",3,1,95,2,95,98,"Nanfang Dushibao",NA +110,145,1804,"2017",3,1,85,2,85,87,"Nanfang Dushibao",NA +110,145,1805,"2017",5,1,87,2,87,89,"Nanfang Dushibao",NA +110,145,1807,"2017",4,1,NA,4,NA,NA,"Nanfang Dushibao",NA +110,145,1808,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1811,"2017",5,0,NA,2,NA,NA,"Nanfang Dushibao",NA +110,145,1816,"2017",3,1,95,3,95,80,"Nanfang Dushibao",NA +110,145,1817,"2017",3,0,80,2,20,30,"Nanfang Dushibao",NA +110,145,1819,"2017",2,1,90,2,90,80,"Nanfang Dushibao",NA +110,145,1820,"2017",5,1,99,2,99,80,"Nanfang Dushibao",NA +110,145,1821,"2017",3,0,95,3,5,10,"Nanfang Dushibao",NA +110,145,1822,"2017",6,0,50,3,50,100,"Nanfang Dushibao",NA +110,145,1825,"2017",2,0,99,3,1,99,"Nanfang Dushibao",NA +110,145,1827,"2017",6,0,85,3,15,40,"Nanfang Dushibao",NA +110,145,1835,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1840,"2017",5,0,75,3,25,20,"Nanfang Dushibao",NA +110,145,1841,"2017",2,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1842,"2017",3,1,98,2,98,6,"Nanfang Dushibao",NA +110,145,1847,"2017",5,1,0,2,0,0,"Nanfang Dushibao",NA +110,145,1850,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1851,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1856,"2017",3,1,75,2,75,50,"Nanfang Dushibao",NA +110,145,1857,"2017",2,0,40,3,60,60,"Nanfang Dushibao",NA +110,145,1862,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1865,"2017",2,1,30,2,30,50,"Nanfang Dushibao",NA +110,145,1870,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +110,145,1872,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1874,"2017",2,1,NA,2,NA,NA,"Nanfang Dushibao",NA +110,145,1880,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +110,145,1881,"2017",2,0,99,2,1,99,"Nanfang Dushibao",NA +110,145,1884,"2017",2,0,88,3,12,80,"Nanfang Dushibao",NA +110,145,1885,"2017",2,0,20,3,80,90,"Nanfang Dushibao",NA +110,145,1888,"2017",5,1,50,3,50,99,"Nanfang Dushibao",NA +110,145,1889,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1890,"2017",6,1,100,3,100,100,"Nanfang Dushibao",NA +110,145,1891,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1892,"2017",5,0,80,3,20,40,"Nanfang Dushibao",NA +110,145,1895,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1896,"2017",2,1,99,3,99,50,"Nanfang Dushibao",NA +110,145,1897,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,1908,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1909,"2017",5,0,40,2,60,70,"Nanfang Dushibao",NA +110,145,1912,"2017",5,1,90,2,90,1,"Nanfang Dushibao",NA +110,145,1913,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1915,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1919,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1921,"2017",3,1,99,3,99,60,"Nanfang Dushibao",NA +110,145,1922,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1923,"2017",2,0,50,3,50,1,"Nanfang Dushibao",NA +110,145,1924,"2017",2,0,0,3,100,100,"Nanfang Dushibao",NA +110,145,1926,"2017",2,1,90,3,90,50,"Nanfang Dushibao",NA +110,145,1927,"2017",3,1,80,3,80,70,"Nanfang Dushibao",NA +110,145,1930,"2017",3,0,NA,2,NA,1,"Nanfang Dushibao",NA +110,145,1931,"2017",2,0,50,2,50,50,"Nanfang Dushibao",NA +110,145,1933,"2017",2,1,70,2,70,60,"Nanfang Dushibao",NA +110,145,1935,"2017",6,0,1,2,99,99,"Nanfang Dushibao",NA +110,145,1937,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,1941,"2017",6,1,95,3,95,90,"Nanfang Dushibao",NA +110,145,1943,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1944,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,1951,"2017",2,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,1956,"2017",3,1,20,2,20,10,"Nanfang Dushibao",NA +110,145,1964,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +110,145,1978,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,1979,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +110,145,1984,"2017",5,1,99,3,99,NA,"Nanfang Dushibao",NA +110,145,1986,"2017",3,1,50,3,50,1,"Nanfang Dushibao",NA +110,145,1987,"2017",5,0,90,3,10,20,"Nanfang Dushibao",NA +110,145,1995,"2017",6,0,99,3,1,11,"Nanfang Dushibao",NA +110,145,2003,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +110,145,2004,"2017",3,1,1,2,1,50,"Nanfang Dushibao",NA +110,145,2006,"2017",2,1,100,2,100,100,"Nanfang Dushibao",NA +110,145,2013,"2017",2,1,100,3,100,99,"Nanfang Dushibao",NA +110,145,2018,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,2019,"2017",6,1,99,3,99,90,"Nanfang Dushibao",NA +110,145,2020,"2017",3,1,50,2,50,1,"Nanfang Dushibao",NA +110,145,2025,"2017",4,0,88,4,12,NA,"Nanfang Dushibao",NA +110,145,2030,"2017",2,0,99,2,1,50,"Nanfang Dushibao",NA +110,145,2032,"2017",6,0,70,2,30,40,"Nanfang Dushibao",NA +110,145,2036,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,2037,"2017",6,1,100,3,100,99,"Nanfang Dushibao",NA +110,145,2039,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,2044,"2017",2,1,80,2,80,80,"Nanfang Dushibao",NA +110,145,2046,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,2047,"2017",2,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,2049,"2017",2,1,65,3,65,50,"Nanfang Dushibao",NA +110,145,2052,"2017",6,0,90,2,10,10,"Nanfang Dushibao",NA +110,145,2054,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,2056,"2017",5,0,90,2,10,50,"Nanfang Dushibao",NA +110,145,2060,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +110,145,2061,"2017",6,0,NA,2,NA,NA,"Nanfang Dushibao",NA +110,145,2062,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +110,145,2072,"2017",2,1,80,2,80,80,"Nanfang Dushibao",NA +110,145,2074,"2017",2,1,50,3,50,90,"Nanfang Dushibao",NA +110,145,2076,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +110,145,2078,"2017",3,1,100,3,100,100,"Nanfang Dushibao",NA +110,145,2080,"2017",6,1,80,3,80,80,"Nanfang Dushibao",NA +110,145,2084,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +110,145,2086,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,2087,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,2088,"2017",2,1,70,2,70,70,"Nanfang Dushibao",NA +110,145,2090,"2017",3,0,80,3,20,20,"Nanfang Dushibao",NA +110,145,2091,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +110,145,2093,"2017",5,1,60,2,60,80,"Nanfang Dushibao",NA +110,145,2099,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +110,145,2101,"2017",6,0,60,2,40,50,"Nanfang Dushibao",NA +110,145,2103,"2017",3,1,99,2,99,1,"Nanfang Dushibao",NA +110,145,2106,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +110,145,2108,"2017",6,1,50,2,50,99,"Nanfang Dushibao",NA +110,145,2110,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +110,145,2111,"2017",4,1,90,4,90,NA,"Nanfang Dushibao",NA +110,145,2112,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +110,145,2114,"2017",5,1,NA,2,NA,99,"Nanfang Dushibao",NA +110,145,2118,"2017",2,1,30,3,30,30,"Nanfang Dushibao",NA +110,145,2123,"2017",3,1,50,3,50,50,"Nanfang Dushibao",NA +110,145,2129,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +110,145,2132,"2017",2,0,70,3,30,40,"Nanfang Dushibao",NA +110,145,2135,"2017",4,1,40,4,40,NA,"Nanfang Dushibao",NA +110,146,2,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +110,146,5,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +110,146,6,"2017",6,0,100,3,0,0,"Xinhua",NA +110,146,7,"2017",3,0,100,2,0,0,"Xinhua",NA +110,146,8,"2017",5,1,99,2,99,99,"Xinhua",NA +110,146,10,"2017",4,1,1,2,1,1,"Xinhua",NA +110,146,12,"2017",2,0,1,3,99,1,"Xinhua",NA +110,146,13,"2017",2,1,99,3,99,99,"Xinhua",NA +110,146,15,"2017",4,1,50,2,50,50,"Xinhua",NA +110,146,19,"2017",3,1,80,2,80,80,"Xinhua",NA +110,146,21,"2017",5,1,99,2,99,50,"Xinhua",NA +110,146,24,"2017",6,1,0,3,0,0,"Xinhua",NA +110,146,27,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,31,"2017",6,0,NA,2,NA,NA,"Xinhua",NA +110,146,32,"2017",6,0,NA,2,NA,NA,"Xinhua",NA +110,146,33,"2017",6,1,60,3,60,60,"Xinhua",NA +110,146,36,"2017",2,0,45,2,55,45,"Xinhua",NA +110,146,37,"2017",5,1,99,2,99,99,"Xinhua",NA +110,146,41,"2017",3,0,44,3,56,56,"Xinhua",NA +110,146,42,"2017",2,0,60,2,40,50,"Xinhua",NA +110,146,45,"2017",2,0,33,2,67,67,"Xinhua",NA +110,146,46,"2017",5,0,99,2,1,99,"Xinhua",NA +110,146,49,"2017",6,1,41,2,41,20,"Xinhua",NA +110,146,54,"2017",2,0,50,3,50,50,"Xinhua",NA +110,146,55,"2017",3,0,90,2,10,10,"Xinhua",NA +110,146,61,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,63,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,64,"2017",4,1,99,2,99,50,"Xinhua",NA +110,146,67,"2017",3,1,88,3,88,89,"Xinhua",NA +110,146,68,"2017",2,1,80,3,80,70,"Xinhua",NA +110,146,72,"2017",2,0,1,3,99,99,"Xinhua",NA +110,146,1170,"2017",6,0,100,2,0,10,"Xinhua",NA +110,146,1172,"2017",6,1,100,3,100,100,"Xinhua",NA +110,146,1175,"2017",4,1,1,2,1,1,"Xinhua",NA +110,146,1178,"2017",6,0,0,3,100,90,"Xinhua",NA +110,146,1179,"2017",4,0,15,2,85,80,"Xinhua",NA +110,146,1184,"2017",6,1,99,2,99,99,"Xinhua",NA +110,146,1185,"2017",6,1,90,3,90,80,"Xinhua",NA +110,146,1186,"2017",3,0,15,2,85,50,"Xinhua",NA +110,146,1187,"2017",5,0,1,3,99,90,"Xinhua",NA +110,146,1188,"2017",4,1,70,2,70,50,"Xinhua",NA +110,146,1190,"2017",2,0,40,3,60,70,"Xinhua",NA +110,146,1191,"2017",5,1,NA,3,NA,NA,"Xinhua",NA +110,146,1194,"2017",5,1,90,2,90,80,"Xinhua",NA +110,146,1199,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1202,"2017",3,0,99,2,1,1,"Xinhua",NA +110,146,1204,"2017",5,1,99,3,99,80,"Xinhua",NA +110,146,1208,"2017",5,0,100,2,0,1,"Xinhua",NA +110,146,1212,"2017",2,1,30,3,30,20,"Xinhua",NA +110,146,1219,"2017",6,0,99,3,1,1,"Xinhua",NA +110,146,1222,"2017",4,1,80,2,80,80,"Xinhua",NA +110,146,1224,"2017",5,0,90,3,10,25,"Xinhua",NA +110,146,1225,"2017",3,0,0,3,100,100,"Xinhua",NA +110,146,1227,"2017",5,0,99,3,1,30,"Xinhua",NA +110,146,1228,"2017",5,1,99,3,99,1,"Xinhua",NA +110,146,1230,"2017",5,0,99,3,1,2,"Xinhua",NA +110,146,1231,"2017",3,0,50,2,50,50,"Xinhua",NA +110,146,1236,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1240,"2017",5,0,99,3,1,1,"Xinhua",NA +110,146,1243,"2017",2,0,60,2,40,35,"Xinhua",NA +110,146,1245,"2017",4,1,100,2,100,100,"Xinhua",NA +110,146,1248,"2017",4,0,5,2,95,20,"Xinhua",NA +110,146,1249,"2017",5,0,99,3,1,1,"Xinhua",NA +110,146,1250,"2017",5,0,80,3,20,20,"Xinhua",NA +110,146,1253,"2017",6,1,99,3,99,NA,"Xinhua",NA +110,146,1257,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1260,"2017",2,0,99,3,1,1,"Xinhua",NA +110,146,1264,"2017",2,1,50,2,50,50,"Xinhua",NA +110,146,1270,"2017",4,1,80,2,80,80,"Xinhua",NA +110,146,1273,"2017",2,0,99,2,1,99,"Xinhua",NA +110,146,1274,"2017",4,0,1,2,99,99,"Xinhua",NA +110,146,1276,"2017",6,1,99,3,99,99,"Xinhua",NA +110,146,1277,"2017",6,0,90,3,10,10,"Xinhua",NA +110,146,1287,"2017",2,0,99,2,1,99,"Xinhua",NA +110,146,1288,"2017",5,0,1,3,99,50,"Xinhua",NA +110,146,1291,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,1292,"2017",3,0,99,2,1,1,"Xinhua",NA +110,146,1293,"2017",3,0,NA,2,NA,99,"Xinhua",NA +110,146,1296,"2017",6,1,88,2,88,88,"Xinhua",NA +110,146,1298,"2017",2,0,60,2,40,40,"Xinhua",NA +110,146,1300,"2017",3,1,50,3,50,50,"Xinhua",NA +110,146,1301,"2017",3,1,50,3,50,99,"Xinhua",NA +110,146,1302,"2017",4,0,1,2,99,99,"Xinhua",NA +110,146,1303,"2017",5,0,50,3,50,4,"Xinhua",NA +110,146,1304,"2017",6,1,99,2,99,99,"Xinhua",NA +110,146,1306,"2017",2,0,1,2,99,NA,"Xinhua",NA +110,146,1313,"2017",5,1,50,2,50,50,"Xinhua",NA +110,146,1320,"2017",6,1,100,2,100,99,"Xinhua",NA +110,146,1322,"2017",3,1,50,2,50,50,"Xinhua",NA +110,146,1324,"2017",2,1,30,2,30,10,"Xinhua",NA +110,146,1326,"2017",5,1,99,3,99,70,"Xinhua",NA +110,146,1327,"2017",6,1,50,3,50,NA,"Xinhua",NA +110,146,1328,"2017",2,0,1,3,99,99,"Xinhua",NA +110,146,1330,"2017",2,1,50,2,50,50,"Xinhua",NA +110,146,1332,"2017",2,0,5,2,95,95,"Xinhua",NA +110,146,1334,"2017",6,1,50,2,50,50,"Xinhua",NA +110,146,1335,"2017",5,1,70,2,70,50,"Xinhua",NA +110,146,1338,"2017",5,1,50,3,50,40,"Xinhua",NA +110,146,1340,"2017",6,0,50,2,50,NA,"Xinhua",NA +110,146,1343,"2017",6,0,99,3,1,99,"Xinhua",NA +110,146,1344,"2017",6,0,50,2,50,90,"Xinhua",NA +110,146,1346,"2017",2,0,50,2,50,50,"Xinhua",NA +110,146,1349,"2017",2,1,50,2,50,50,"Xinhua",NA +110,146,1352,"2017",2,1,1,2,1,1,"Xinhua",NA +110,146,1353,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1354,"2017",3,0,50,2,50,99,"Xinhua",NA +110,146,1355,"2017",6,0,99,3,1,1,"Xinhua",NA +110,146,1358,"2017",2,1,50,2,50,1,"Xinhua",NA +110,146,1361,"2017",4,0,99,2,1,99,"Xinhua",NA +110,146,1362,"2017",3,1,99,3,99,60,"Xinhua",NA +110,146,1364,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1367,"2017",5,1,1,2,1,50,"Xinhua",NA +110,146,1368,"2017",3,0,99,3,1,1,"Xinhua",NA +110,146,1369,"2017",6,0,60,2,40,50,"Xinhua",NA +110,146,1377,"2017",5,1,20,2,20,20,"Xinhua",NA +110,146,1378,"2017",2,1,50,2,50,50,"Xinhua",NA +110,146,1382,"2017",6,0,60,3,40,40,"Xinhua",NA +110,146,1386,"2017",2,0,50,2,50,50,"Xinhua",NA +110,146,1387,"2017",4,1,1,2,1,1,"Xinhua",NA +110,146,1388,"2017",3,0,50,2,50,50,"Xinhua",NA +110,146,1390,"2017",3,0,50,2,50,50,"Xinhua",NA +110,146,1391,"2017",3,0,99,2,1,1,"Xinhua",NA +110,146,1396,"2017",4,0,99,2,1,99,"Xinhua",NA +110,146,1402,"2017",5,0,98,3,2,10,"Xinhua",NA +110,146,1403,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1404,"2017",4,0,80,2,20,50,"Xinhua",NA +110,146,1406,"2017",6,0,99,3,1,1,"Xinhua",NA +110,146,1410,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,1411,"2017",6,1,99,3,99,50,"Xinhua",NA +110,146,1413,"2017",4,0,1,2,99,99,"Xinhua",NA +110,146,1418,"2017",3,1,99,2,99,99,"Xinhua",NA +110,146,1427,"2017",3,0,99,3,1,1,"Xinhua",NA +110,146,1430,"2017",5,0,99,3,1,1,"Xinhua",NA +110,146,1432,"2017",2,0,1,3,99,99,"Xinhua",NA +110,146,1434,"2017",5,0,50,3,50,99,"Xinhua",NA +110,146,1436,"2017",5,1,99,2,99,99,"Xinhua",NA +110,146,1438,"2017",5,0,70,2,30,NA,"Xinhua",NA +110,146,1444,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1445,"2017",3,1,99,2,99,1,"Xinhua",NA +110,146,1447,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +110,146,1448,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,1450,"2017",5,0,40,3,60,40,"Xinhua",NA +110,146,1453,"2017",5,1,99,3,99,99,"Xinhua",NA +110,146,1459,"2017",6,1,80,2,80,70,"Xinhua",NA +110,146,1461,"2017",6,1,50,3,50,50,"Xinhua",NA +110,146,1462,"2017",5,1,10,3,10,10,"Xinhua",NA +110,146,1463,"2017",5,1,60,2,60,50,"Xinhua",NA +110,146,1470,"2017",2,0,NA,2,NA,1,"Xinhua",NA +110,146,1475,"2017",6,1,99,3,99,99,"Xinhua",NA +110,146,1476,"2017",3,0,99,2,1,99,"Xinhua",NA +110,146,1477,"2017",4,1,50,2,50,50,"Xinhua",NA +110,146,1479,"2017",6,1,28,2,28,10,"Xinhua",NA +110,146,1481,"2017",3,1,88,3,88,90,"Xinhua",NA +110,146,1485,"2017",2,1,99,2,99,99,"Xinhua",NA +110,146,1486,"2017",6,1,99,3,99,99,"Xinhua",NA +110,146,1487,"2017",2,1,1,2,1,1,"Xinhua",NA +110,146,1488,"2017",3,1,99,2,99,99,"Xinhua",NA +110,146,1489,"2017",3,1,1,2,1,1,"Xinhua",NA +110,146,1490,"2017",3,1,5,3,5,1,"Xinhua",NA +110,146,1491,"2017",5,0,99,2,1,50,"Xinhua",NA +110,146,1496,"2017",5,0,99,2,1,1,"Xinhua",NA +110,146,1498,"2017",5,0,1,3,99,1,"Xinhua",NA +110,146,1501,"2017",4,0,1,2,99,99,"Xinhua",NA +110,146,1514,"2017",5,0,99,2,1,1,"Xinhua",NA +110,146,1515,"2017",5,1,99,2,99,99,"Xinhua",NA +110,146,1516,"2017",2,1,1,3,1,1,"Xinhua",NA +110,146,1518,"2017",3,0,50,2,50,50,"Xinhua",NA +110,146,1526,"2017",6,1,80,3,80,NA,"Xinhua",NA +110,146,1528,"2017",5,1,90,3,90,NA,"Xinhua",NA +110,146,1531,"2017",6,1,1,2,1,1,"Xinhua",NA +110,146,1532,"2017",2,1,60,3,60,50,"Xinhua",NA +110,146,1536,"2017",6,0,1,2,99,99,"Xinhua",NA +110,146,1541,"2017",5,0,99,2,1,1,"Xinhua",NA +110,146,1549,"2017",5,0,99,2,1,50,"Xinhua",NA +110,146,1552,"2017",4,1,99,2,99,1,"Xinhua",NA +110,146,1556,"2017",6,0,99,2,1,1,"Xinhua",NA +110,146,1558,"2017",3,1,99,2,99,50,"Xinhua",NA +110,146,1561,"2017",5,0,1,2,99,99,"Xinhua",NA +110,146,1566,"2017",3,1,99,3,99,99,"Xinhua",NA +110,146,1568,"2017",6,1,99,3,99,1,"Xinhua",NA +110,146,1573,"2017",4,0,1,2,99,99,"Xinhua",NA +110,146,1574,"2017",4,0,50,2,50,50,"Xinhua",NA +110,146,1575,"2017",3,0,NA,2,NA,100,"Xinhua",NA +110,146,1577,"2017",6,1,1,3,1,1,"Xinhua",NA +110,146,1579,"2017",5,1,50,3,50,50,"Xinhua",NA +110,146,1580,"2017",3,1,1,2,1,50,"Xinhua",NA +110,146,1581,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1584,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1590,"2017",5,0,60,2,40,NA,"Xinhua",NA +110,146,1592,"2017",6,1,60,2,60,50,"Xinhua",NA +110,146,1593,"2017",4,0,6,2,94,45,"Xinhua",NA +110,146,1596,"2017",5,0,99,2,1,1,"Xinhua",NA +110,146,1597,"2017",3,1,90,3,90,90,"Xinhua",NA +110,146,1602,"2017",5,1,1,3,1,99,"Xinhua",NA +110,146,1603,"2017",2,1,2,3,2,NA,"Xinhua",NA +110,146,1610,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,1611,"2017",2,1,NA,2,NA,NA,"Xinhua",NA +110,146,1612,"2017",5,1,50,3,50,50,"Xinhua",NA +110,146,1613,"2017",3,0,50,3,50,50,"Xinhua",NA +110,146,1615,"2017",6,0,99,3,1,50,"Xinhua",NA +110,146,1616,"2017",5,0,99,3,1,1,"Xinhua",NA +110,146,1618,"2017",6,1,99,2,99,50,"Xinhua",NA +110,146,1619,"2017",6,0,50,2,50,50,"Xinhua",NA +110,146,1620,"2017",6,0,50,3,50,99,"Xinhua",NA +110,146,1623,"2017",6,1,NA,3,NA,NA,"Xinhua",NA +110,146,1624,"2017",4,1,50,2,50,50,"Xinhua",NA +110,146,1625,"2017",6,1,60,2,60,60,"Xinhua",NA +110,146,1628,"2017",6,0,40,2,60,60,"Xinhua",NA +110,146,1633,"2017",5,0,99,2,1,1,"Xinhua",NA +110,146,1634,"2017",2,0,40,3,60,60,"Xinhua",NA +110,146,1635,"2017",5,1,50,2,50,50,"Xinhua",NA +110,146,1636,"2017",4,0,40,2,60,50,"Xinhua",NA +110,146,1637,"2017",4,0,50,2,50,50,"Xinhua",NA +110,146,1639,"2017",5,0,99,2,1,1,"Xinhua",NA +110,146,1643,"2017",3,1,50,3,50,50,"Xinhua",NA +110,146,1647,"2017",4,0,50,2,50,NA,"Xinhua",NA +110,146,1648,"2017",2,1,1,3,1,50,"Xinhua",NA +110,146,1654,"2017",5,1,1,2,1,1,"Xinhua",NA +110,146,1656,"2017",3,1,70,3,70,60,"Xinhua",NA +110,146,1660,"2017",5,1,99,2,99,NA,"Xinhua",NA +110,146,1661,"2017",5,1,50,3,50,50,"Xinhua",NA +110,146,1663,"2017",3,0,99,2,1,NA,"Xinhua",NA +110,146,1664,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1665,"2017",4,0,99,2,1,NA,"Xinhua",NA +110,146,1667,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,1668,"2017",6,0,99,3,1,50,"Xinhua",NA +110,146,1670,"2017",3,0,50,3,50,50,"Xinhua",NA +110,146,1671,"2017",5,0,99,2,1,1,"Xinhua",NA +110,146,1674,"2017",4,0,60,2,40,50,"Xinhua",NA +110,146,1678,"2017",6,1,NA,2,NA,99,"Xinhua",NA +110,146,1680,"2017",2,0,99,3,1,1,"Xinhua",NA +110,146,1681,"2017",6,1,99,3,99,99,"Xinhua",NA +110,146,1683,"2017",5,0,90,2,10,10,"Xinhua",NA +110,146,1685,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1687,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1690,"2017",6,0,50,3,50,50,"Xinhua",NA +110,146,1693,"2017",2,1,1,3,1,99,"Xinhua",NA +110,146,1696,"2017",6,1,90,3,90,80,"Xinhua",NA +110,146,1697,"2017",5,0,80,2,20,30,"Xinhua",NA +110,146,1702,"2017",2,0,99,3,1,1,"Xinhua",NA +110,146,1703,"2017",3,1,99,3,99,50,"Xinhua",NA +110,146,1706,"2017",6,1,NA,3,NA,NA,"Xinhua",NA +110,146,1709,"2017",3,0,80,3,20,50,"Xinhua",NA +110,146,1713,"2017",3,1,1,3,1,1,"Xinhua",NA +110,146,1715,"2017",3,1,33,2,33,22,"Xinhua",NA +110,146,1716,"2017",3,1,1,2,1,99,"Xinhua",NA +110,146,1717,"2017",3,1,30,3,30,60,"Xinhua",NA +110,146,1719,"2017",3,1,80,2,80,80,"Xinhua",NA +110,146,1720,"2017",3,1,50,3,50,30,"Xinhua",NA +110,146,1722,"2017",6,0,50,2,50,50,"Xinhua",NA +110,146,1724,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1726,"2017",3,0,33,3,67,56,"Xinhua",NA +110,146,1727,"2017",2,1,86,2,86,85,"Xinhua",NA +110,146,1728,"2017",6,0,50,2,50,99,"Xinhua",NA +110,146,1729,"2017",2,0,66,3,34,56,"Xinhua",NA +110,146,1735,"2017",2,1,30,2,30,20,"Xinhua",NA +110,146,1739,"2017",2,0,50,2,50,1,"Xinhua",NA +110,146,1740,"2017",4,0,50,2,50,50,"Xinhua",NA +110,146,1741,"2017",5,0,90,2,10,80,"Xinhua",NA +110,146,1743,"2017",5,1,NA,2,NA,50,"Xinhua",NA +110,146,1744,"2017",5,1,99,3,99,99,"Xinhua",NA +110,146,1748,"2017",5,0,99,3,1,1,"Xinhua",NA +110,146,1749,"2017",3,0,50,2,50,1,"Xinhua",NA +110,146,1751,"2017",2,1,1,3,1,1,"Xinhua",NA +110,146,1754,"2017",6,0,99,2,1,99,"Xinhua",NA +110,146,1756,"2017",6,1,100,2,100,99,"Xinhua",NA +110,146,1757,"2017",3,1,85,2,85,70,"Xinhua",NA +110,146,1758,"2017",4,0,78,2,22,61,"Xinhua",NA +110,146,1759,"2017",3,0,32,2,68,88,"Xinhua",NA +110,146,1762,"2017",2,1,99,2,99,90,"Xinhua",NA +110,146,1765,"2017",5,0,NA,2,NA,1,"Xinhua",NA +110,146,1769,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1770,"2017",3,1,92,2,92,8,"Xinhua",NA +110,146,1772,"2017",2,0,99,3,1,50,"Xinhua",NA +110,146,1778,"2017",3,1,86,3,86,87,"Xinhua",NA +110,146,1781,"2017",6,0,98,3,2,5,"Xinhua",NA +110,146,1782,"2017",2,0,81,2,19,7,"Xinhua",NA +110,146,1787,"2017",3,1,NA,3,NA,85,"Xinhua",NA +110,146,1788,"2017",2,1,NA,2,NA,77,"Xinhua",NA +110,146,1793,"2017",6,1,94,3,94,NA,"Xinhua",NA +110,146,1795,"2017",3,0,97,3,3,93,"Xinhua",NA +110,146,1797,"2017",6,0,97,2,3,13,"Xinhua",NA +110,146,1798,"2017",3,1,90,2,90,96,"Xinhua",NA +110,146,1804,"2017",3,1,NA,3,NA,85,"Xinhua",NA +110,146,1813,"2017",3,0,1,2,99,50,"Xinhua",NA +110,146,1820,"2017",5,1,99,3,99,99,"Xinhua",NA +110,146,1822,"2017",6,0,0,2,100,100,"Xinhua",NA +110,146,1826,"2017",3,0,99,2,1,1,"Xinhua",NA +110,146,1827,"2017",6,0,60,2,40,80,"Xinhua",NA +110,146,1829,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,1831,"2017",6,0,99,3,1,1,"Xinhua",NA +110,146,1833,"2017",3,0,99,3,1,99,"Xinhua",NA +110,146,1835,"2017",5,1,99,2,99,1,"Xinhua",NA +110,146,1839,"2017",2,0,99,3,1,1,"Xinhua",NA +110,146,1842,"2017",3,1,98,3,98,98,"Xinhua",NA +110,146,1844,"2017",2,1,99,3,99,99,"Xinhua",NA +110,146,1845,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1854,"2017",2,0,51,3,49,51,"Xinhua",NA +110,146,1857,"2017",2,0,40,2,60,60,"Xinhua",NA +110,146,1858,"2017",6,0,99,2,1,1,"Xinhua",NA +110,146,1859,"2017",3,1,80,2,80,80,"Xinhua",NA +110,146,1862,"2017",6,1,99,3,99,99,"Xinhua",NA +110,146,1863,"2017",6,1,90,3,90,80,"Xinhua",NA +110,146,1864,"2017",2,1,50,3,50,NA,"Xinhua",NA +110,146,1865,"2017",2,1,30,3,30,30,"Xinhua",NA +110,146,1868,"2017",2,1,99,2,99,99,"Xinhua",NA +110,146,1869,"2017",6,1,100,2,100,100,"Xinhua",NA +110,146,1874,"2017",2,1,99,3,99,NA,"Xinhua",NA +110,146,1875,"2017",4,1,100,2,100,100,"Xinhua",NA +110,146,1876,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1877,"2017",2,1,85,2,85,80,"Xinhua",NA +110,146,1879,"2017",5,0,80,2,20,20,"Xinhua",NA +110,146,1880,"2017",3,0,1,3,99,99,"Xinhua",NA +110,146,1882,"2017",3,0,50,2,50,50,"Xinhua",NA +110,146,1883,"2017",2,1,55,2,55,50,"Xinhua",NA +110,146,1886,"2017",3,1,99,2,99,90,"Xinhua",NA +110,146,1889,"2017",6,0,99,2,1,1,"Xinhua",NA +110,146,1891,"2017",2,0,99,3,1,1,"Xinhua",NA +110,146,1898,"2017",3,1,99,3,99,99,"Xinhua",NA +110,146,1901,"2017",4,0,90,2,10,20,"Xinhua",NA +110,146,1902,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1904,"2017",4,1,70,2,70,50,"Xinhua",NA +110,146,1907,"2017",5,0,90,2,10,50,"Xinhua",NA +110,146,1910,"2017",3,1,50,2,50,1,"Xinhua",NA +110,146,1911,"2017",5,0,99,3,1,1,"Xinhua",NA +110,146,1912,"2017",5,1,90,3,90,90,"Xinhua",NA +110,146,1913,"2017",6,1,50,3,50,50,"Xinhua",NA +110,146,1914,"2017",5,1,50,2,50,99,"Xinhua",NA +110,146,1916,"2017",3,0,1,3,99,99,"Xinhua",NA +110,146,1918,"2017",5,0,99,3,1,1,"Xinhua",NA +110,146,1919,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,1920,"2017",2,0,50,2,50,50,"Xinhua",NA +110,146,1923,"2017",2,0,99,2,1,1,"Xinhua",NA +110,146,1924,"2017",2,0,0,2,100,100,"Xinhua",NA +110,146,1928,"2017",2,1,30,3,30,1,"Xinhua",NA +110,146,1933,"2017",2,1,99,3,99,70,"Xinhua",NA +110,146,1935,"2017",6,0,NA,3,NA,99,"Xinhua",NA +110,146,1936,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1938,"2017",3,0,50,2,50,50,"Xinhua",NA +110,146,1940,"2017",6,1,99,2,99,50,"Xinhua",NA +110,146,1942,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,1945,"2017",3,0,99,2,1,1,"Xinhua",NA +110,146,1950,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1951,"2017",2,1,50,3,50,50,"Xinhua",NA +110,146,1953,"2017",6,0,99,3,1,1,"Xinhua",NA +110,146,1954,"2017",2,0,1,3,99,99,"Xinhua",NA +110,146,1956,"2017",3,1,3,3,3,20,"Xinhua",NA +110,146,1957,"2017",5,0,50,2,50,NA,"Xinhua",NA +110,146,1960,"2017",6,1,50,3,50,50,"Xinhua",NA +110,146,1962,"2017",4,0,90,2,10,10,"Xinhua",NA +110,146,1963,"2017",4,1,90,2,90,80,"Xinhua",NA +110,146,1964,"2017",5,0,1,2,99,99,"Xinhua",NA +110,146,1965,"2017",5,0,99,3,1,1,"Xinhua",NA +110,146,1968,"2017",5,0,99,2,1,1,"Xinhua",NA +110,146,1972,"2017",6,1,50,3,50,1,"Xinhua",NA +110,146,1975,"2017",2,1,99,2,99,9,"Xinhua",NA +110,146,1977,"2017",3,0,50,2,50,1,"Xinhua",NA +110,146,1980,"2017",6,0,80,3,20,30,"Xinhua",NA +110,146,1981,"2017",3,1,99,3,99,99,"Xinhua",NA +110,146,1982,"2017",2,0,50,3,50,NA,"Xinhua",NA +110,146,1988,"2017",5,0,80,3,20,35,"Xinhua",NA +110,146,1990,"2017",5,1,50,3,50,50,"Xinhua",NA +110,146,1994,"2017",5,1,1,3,1,1,"Xinhua",NA +110,146,1996,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,1998,"2017",4,1,90,2,90,80,"Xinhua",NA +110,146,2000,"2017",3,0,NA,3,NA,10,"Xinhua",NA +110,146,2005,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,2008,"2017",3,0,100,2,0,1,"Xinhua",NA +110,146,2009,"2017",4,1,19,2,19,15,"Xinhua",NA +110,146,2011,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,2016,"2017",5,0,99,3,1,NA,"Xinhua",NA +110,146,2017,"2017",2,1,99,3,99,99,"Xinhua",NA +110,146,2021,"2017",4,1,100,2,100,99,"Xinhua",NA +110,146,2022,"2017",5,0,100,3,0,1,"Xinhua",NA +110,146,2026,"2017",5,0,100,2,0,0,"Xinhua",NA +110,146,2029,"2017",6,1,99,2,99,NA,"Xinhua",NA +110,146,2030,"2017",2,0,50,3,50,1,"Xinhua",NA +110,146,2033,"2017",5,0,1,3,99,99,"Xinhua",NA +110,146,2034,"2017",2,0,99,3,1,1,"Xinhua",NA +110,146,2035,"2017",4,0,90,2,10,10,"Xinhua",NA +110,146,2039,"2017",3,0,99,2,1,1,"Xinhua",NA +110,146,2045,"2017",4,1,90,2,90,90,"Xinhua",NA +110,146,2046,"2017",3,1,99,3,99,99,"Xinhua",NA +110,146,2048,"2017",6,1,99,3,99,99,"Xinhua",NA +110,146,2051,"2017",4,1,99,2,99,80,"Xinhua",NA +110,146,2053,"2017",2,1,90,2,90,90,"Xinhua",NA +110,146,2059,"2017",4,0,50,2,50,50,"Xinhua",NA +110,146,2070,"2017",3,1,99,2,99,99,"Xinhua",NA +110,146,2071,"2017",4,1,1,2,1,1,"Xinhua",NA +110,146,2072,"2017",2,1,80,3,80,80,"Xinhua",NA +110,146,2074,"2017",2,1,90,2,90,90,"Xinhua",NA +110,146,2076,"2017",6,0,1,2,99,99,"Xinhua",NA +110,146,2078,"2017",3,1,100,2,100,100,"Xinhua",NA +110,146,2080,"2017",6,1,80,2,80,70,"Xinhua",NA +110,146,2081,"2017",4,0,99,2,1,50,"Xinhua",NA +110,146,2082,"2017",3,0,1,3,99,99,"Xinhua",NA +110,146,2083,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,2086,"2017",2,1,99,2,99,99,"Xinhua",NA +110,146,2087,"2017",5,1,99,2,99,99,"Xinhua",NA +110,146,2088,"2017",2,1,75,3,75,70,"Xinhua",NA +110,146,2089,"2017",2,0,NA,3,NA,NA,"Xinhua",NA +110,146,2092,"2017",2,0,99,2,1,10,"Xinhua",NA +110,146,2095,"2017",5,0,99,2,1,20,"Xinhua",NA +110,146,2096,"2017",5,0,99,3,1,99,"Xinhua",NA +110,146,2099,"2017",5,1,50,3,50,99,"Xinhua",NA +110,146,2100,"2017",6,1,99,2,99,99,"Xinhua",NA +110,146,2104,"2017",6,0,99,3,1,1,"Xinhua",NA +110,146,2105,"2017",3,1,50,3,50,50,"Xinhua",NA +110,146,2107,"2017",4,0,99,2,1,50,"Xinhua",NA +110,146,2108,"2017",6,1,99,3,99,50,"Xinhua",NA +110,146,2109,"2017",6,1,99,2,99,50,"Xinhua",NA +110,146,2110,"2017",5,1,50,3,50,50,"Xinhua",NA +110,146,2115,"2017",4,0,99,2,1,1,"Xinhua",NA +110,146,2120,"2017",4,0,100,2,0,0,"Xinhua",NA +110,146,2121,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,2122,"2017",4,1,99,2,99,99,"Xinhua",NA +110,146,2124,"2017",5,1,99,2,99,99,"Xinhua",NA +110,146,2126,"2017",2,1,1,2,1,1,"Xinhua",NA +110,146,2130,"2017",3,0,99,3,1,1,"Xinhua",NA +111,NA,1,"2017",3,0,90,1,10,NA,NA,NA +111,NA,2,"2017",3,1,NA,1,NA,NA,NA,NA +111,NA,3,"2017",6,0,NA,1,NA,NA,NA,NA +111,NA,4,"2017",6,0,NA,1,NA,NA,NA,NA +111,NA,5,"2017",2,0,NA,1,NA,NA,NA,NA +111,NA,6,"2017",1,1,100,3,100,99,NA,NA +111,NA,6,"2017",1,1,0,1,0,NA,NA,NA +111,NA,6,"2017",1,1,100,4,100,100,NA,NA +111,NA,6,"2017",1,1,99,2,99,0,NA,NA +111,NA,7,"2017",4,1,60,1,60,NA,NA,NA +111,NA,8,"2017",3,1,1,1,1,NA,NA,NA +111,NA,9,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,9,"2017",1,1,99,2,99,NA,NA,NA +111,NA,9,"2017",1,1,1,3,1,99,NA,NA +111,NA,9,"2017",1,1,50,4,50,1,NA,NA +111,NA,10,"2017",1,0,99,3,1,50,NA,NA +111,NA,10,"2017",1,0,30,1,70,NA,NA,NA +111,NA,10,"2017",1,0,50,2,50,70,NA,NA +111,NA,10,"2017",1,0,99,4,1,1,NA,NA +111,NA,11,"2017",3,1,50,1,50,NA,NA,NA +111,NA,12,"2017",6,0,99,1,1,NA,NA,NA +111,NA,13,"2017",6,0,88,1,12,NA,NA,NA +111,NA,14,"2017",1,0,99,2,1,99,NA,NA +111,NA,14,"2017",1,0,99,3,1,1,NA,NA +111,NA,14,"2017",1,0,99,4,1,1,NA,NA +111,NA,14,"2017",1,0,1,1,99,NA,NA,NA +111,NA,15,"2017",3,0,50,1,50,NA,NA,NA +111,NA,16,"2017",3,0,50,1,50,NA,NA,NA +111,NA,17,"2017",1,1,1,3,1,99,NA,NA +111,NA,17,"2017",1,1,99,2,99,99,NA,NA +111,NA,17,"2017",1,1,99,1,99,NA,NA,NA +111,NA,17,"2017",1,1,1,4,1,1,NA,NA +111,NA,18,"2017",5,1,99,1,99,NA,NA,NA +111,NA,19,"2017",5,1,60,1,60,NA,NA,NA +111,NA,20,"2017",4,1,1,1,1,NA,NA,NA +111,NA,21,"2017",4,0,50,1,50,NA,NA,NA +111,NA,22,"2017",1,1,99,4,99,99,NA,NA +111,NA,22,"2017",1,1,99,2,99,80,NA,NA +111,NA,22,"2017",1,1,80,1,80,NA,NA,NA +111,NA,22,"2017",1,1,99,3,99,99,NA,NA +111,NA,23,"2017",1,1,50,2,50,99,NA,NA +111,NA,23,"2017",1,1,99,4,99,99,NA,NA +111,NA,23,"2017",1,1,99,1,99,NA,NA,NA +111,NA,23,"2017",1,1,99,3,99,50,NA,NA +111,NA,24,"2017",5,1,90,1,90,NA,NA,NA +111,NA,25,"2017",5,1,99,1,99,NA,NA,NA +111,NA,26,"2017",1,1,50,1,50,NA,NA,NA +111,NA,26,"2017",1,1,50,4,50,1,NA,NA +111,NA,26,"2017",1,1,1,2,1,50,NA,NA +111,NA,26,"2017",1,1,1,3,1,1,NA,NA +111,NA,27,"2017",6,0,80,1,20,NA,NA,NA +111,NA,28,"2017",6,1,80,1,80,NA,NA,NA +111,NA,29,"2017",6,0,NA,1,NA,NA,NA,NA +111,NA,30,"2017",5,0,NA,1,NA,NA,NA,NA +111,NA,31,"2017",2,0,NA,1,NA,NA,NA,NA +111,NA,32,"2017",5,0,NA,1,NA,NA,NA,NA +111,NA,33,"2017",5,1,1,1,1,NA,NA,NA +111,NA,34,"2017",4,0,1,1,99,NA,NA,NA +111,NA,35,"2017",2,0,99,1,1,NA,NA,NA +111,NA,36,"2017",4,0,50,1,50,NA,NA,NA +111,NA,37,"2017",3,1,50,1,50,NA,NA,NA +111,NA,38,"2017",5,0,51,1,49,NA,NA,NA +111,NA,39,"2017",4,0,30,1,70,NA,NA,NA +111,NA,40,"2017",6,1,2,1,2,NA,NA,NA +111,NA,41,"2017",2,0,22,1,78,NA,NA,NA +111,NA,42,"2017",1,0,80,1,20,NA,NA,NA +111,NA,42,"2017",1,0,70,2,30,20,NA,NA +111,NA,42,"2017",1,0,80,3,20,30,NA,NA +111,NA,42,"2017",1,0,70,4,30,20,NA,NA +111,NA,43,"2017",5,0,1,1,99,NA,NA,NA +111,NA,44,"2017",3,0,99,1,1,NA,NA,NA +111,NA,45,"2017",3,1,22,1,22,NA,NA,NA +111,NA,46,"2017",3,0,1,1,99,NA,NA,NA +111,NA,47,"2017",5,0,NA,1,NA,NA,NA,NA +111,NA,48,"2017",4,0,80,1,20,NA,NA,NA +111,NA,49,"2017",2,0,40,1,60,NA,NA,NA +111,NA,50,"2017",5,0,44,1,56,NA,NA,NA +111,NA,51,"2017",6,0,50,1,50,NA,NA,NA +111,NA,52,"2017",2,1,40,1,40,NA,NA,NA +111,NA,53,"2017",2,0,10,1,90,NA,NA,NA +111,NA,54,"2017",3,0,NA,1,NA,NA,NA,NA +111,NA,55,"2017",4,0,90,1,10,NA,NA,NA +111,NA,56,"2017",4,0,50,1,50,NA,NA,NA +111,NA,57,"2017",2,0,65,1,35,NA,NA,NA +111,NA,58,"2017",1,1,30,1,30,NA,NA,NA +111,NA,58,"2017",1,1,50,3,50,30,NA,NA +111,NA,58,"2017",1,1,50,4,50,50,NA,NA +111,NA,58,"2017",1,1,30,2,30,30,NA,NA +111,NA,59,"2017",6,1,80,1,80,NA,NA,NA +111,NA,60,"2017",5,1,99,1,99,NA,NA,NA +111,NA,61,"2017",2,1,90,1,90,NA,NA,NA +111,NA,62,"2017",2,1,1,1,1,NA,NA,NA +111,NA,63,"2017",6,1,1,1,1,NA,NA,NA +111,NA,64,"2017",6,1,99,1,99,NA,NA,NA +111,NA,65,"2017",4,1,70,1,70,NA,NA,NA +111,NA,66,"2017",2,1,50,1,50,NA,NA,NA +111,NA,67,"2017",5,0,2,1,98,NA,NA,NA +111,NA,68,"2017",5,0,99,1,1,NA,NA,NA +111,NA,69,"2017",3,0,1,1,99,NA,NA,NA +111,NA,70,"2017",4,1,50,1,50,NA,NA,NA +111,NA,71,"2017",6,0,99,1,1,NA,NA,NA +111,NA,72,"2017",4,1,99,1,99,NA,NA,NA +111,NA,73,"2017",1,0,0,4,100,50,NA,NA +111,NA,73,"2017",1,0,50,3,50,1,NA,NA +111,NA,73,"2017",1,0,99,1,1,NA,NA,NA +111,NA,73,"2017",1,0,99,2,1,1,NA,NA +111,NA,74,"2017",4,1,30,1,30,NA,NA,NA +111,NA,75,"2017",4,1,50,1,50,NA,NA,NA +111,NA,76,"2017",3,1,80,1,80,NA,NA,NA +111,NA,77,"2017",3,0,1,1,99,NA,NA,NA +111,NA,78,"2017",2,1,99,1,99,NA,NA,NA +111,NA,79,"2017",2,1,99,1,99,NA,NA,NA +111,NA,80,"2017",2,1,99,1,99,NA,NA,NA +111,NA,81,"2017",2,1,90,1,90,NA,NA,NA +111,NA,82,"2017",3,0,90,1,10,NA,NA,NA +111,NA,83,"2017",4,0,75,1,25,NA,NA,NA +111,NA,84,"2017",1,1,99,4,99,50,NA,NA +111,NA,84,"2017",1,1,50,3,50,50,NA,NA +111,NA,84,"2017",1,1,99,1,99,NA,NA,NA +111,NA,84,"2017",1,1,50,2,50,99,NA,NA +111,NA,85,"2017",1,0,50,2,50,20,NA,NA +111,NA,85,"2017",1,0,0,4,100,0,NA,NA +111,NA,85,"2017",1,0,100,3,0,50,NA,NA +111,NA,85,"2017",1,0,80,1,20,NA,NA,NA +111,NA,86,"2017",4,0,50,1,50,NA,NA,NA +111,NA,87,"2017",4,0,10,1,90,NA,NA,NA +111,NA,88,"2017",4,1,80,1,80,NA,NA,NA +111,NA,89,"2017",2,0,50,1,50,NA,NA,NA +111,NA,90,"2017",3,0,99,1,1,NA,NA,NA +111,NA,91,"2017",3,1,0,1,0,NA,NA,NA +111,NA,92,"2017",3,1,99,1,99,NA,NA,NA +111,NA,93,"2017",2,1,99,1,99,NA,NA,NA +111,NA,94,"2017",3,0,100,1,0,NA,NA,NA +111,NA,95,"2017",4,0,100,1,0,NA,NA,NA +111,NA,96,"2017",1,0,99,2,1,80,NA,NA +111,NA,96,"2017",1,0,1,4,99,1,NA,NA +111,NA,96,"2017",1,0,20,1,80,NA,NA,NA +111,NA,96,"2017",1,0,99,3,1,1,NA,NA +111,NA,97,"2017",4,0,75,1,25,NA,NA,NA +111,NA,98,"2017",4,0,99,1,1,NA,NA,NA +111,NA,99,"2017",2,1,99,1,99,NA,NA,NA +111,NA,100,"2017",1,1,50,3,50,50,NA,NA +111,NA,100,"2017",1,1,1,1,1,NA,NA,NA +111,NA,100,"2017",1,1,50,2,50,1,NA,NA +111,NA,100,"2017",1,1,1,4,1,50,NA,NA +111,NA,101,"2017",4,0,NA,1,NA,NA,NA,NA +111,NA,102,"2017",4,0,79,1,21,NA,NA,NA +111,NA,103,"2017",3,1,99,1,99,NA,NA,NA +111,NA,104,"2017",3,1,50,1,50,NA,NA,NA +111,NA,105,"2017",3,1,65,1,65,NA,NA,NA +111,NA,106,"2017",1,0,100,3,0,0,NA,NA +111,NA,106,"2017",1,0,100,4,0,0,NA,NA +111,NA,106,"2017",1,0,100,2,0,0,NA,NA +111,NA,106,"2017",1,0,100,1,0,NA,NA,NA +111,NA,107,"2017",3,0,34,1,66,NA,NA,NA +111,NA,108,"2017",3,1,0,1,0,NA,NA,NA +111,NA,109,"2017",2,1,40,1,40,NA,NA,NA +111,NA,110,"2017",4,0,1,1,99,NA,NA,NA +111,NA,112,"2017",3,1,99,1,99,NA,NA,NA +111,NA,113,"2017",2,1,80,1,80,NA,NA,NA +111,NA,114,"2017",1,1,30,1,30,NA,NA,NA +111,NA,114,"2017",1,1,20,2,20,30,NA,NA +111,NA,114,"2017",1,1,30,4,30,NA,NA,NA +111,NA,114,"2017",1,1,NA,3,NA,20,NA,NA +111,NA,115,"2017",4,0,60,1,40,NA,NA,NA +111,NA,116,"2017",2,1,50,1,50,NA,NA,NA +111,NA,117,"2017",1,0,10,1,90,NA,NA,NA +111,NA,117,"2017",1,0,9,2,91,90,NA,NA +111,NA,117,"2017",1,0,50,3,50,91,NA,NA +111,NA,117,"2017",1,0,10,4,90,50,NA,NA +111,NA,118,"2017",4,0,50,1,50,NA,NA,NA +111,NA,119,"2017",4,1,50,1,50,NA,NA,NA +111,NA,120,"2017",1,0,50,2,50,1,NA,NA +111,NA,120,"2017",1,0,99,3,1,50,NA,NA +111,NA,120,"2017",1,0,99,1,1,NA,NA,NA +111,NA,120,"2017",1,0,1,4,99,1,NA,NA +111,NA,121,"2017",3,1,1,1,1,NA,NA,NA +111,NA,122,"2017",3,0,99,1,1,NA,NA,NA +111,NA,123,"2017",4,0,99,1,1,NA,NA,NA +111,NA,124,"2017",1,0,1,4,99,99,NA,NA +111,NA,124,"2017",1,0,1,1,99,NA,NA,NA +111,NA,124,"2017",1,0,1,3,99,99,NA,NA +111,NA,124,"2017",1,0,1,2,99,99,NA,NA +111,NA,125,"2017",4,0,1,1,99,NA,NA,NA +111,NA,126,"2017",3,1,1,1,1,NA,NA,NA +111,NA,127,"2017",1,1,100,2,100,50,NA,NA +111,NA,127,"2017",1,1,50,1,50,NA,NA,NA +111,NA,127,"2017",1,1,100,4,100,100,NA,NA +111,NA,127,"2017",1,1,100,3,100,100,NA,NA +111,NA,128,"2017",2,1,99,1,99,NA,NA,NA +111,NA,129,"2017",2,0,1,1,99,NA,NA,NA +111,NA,130,"2017",2,0,50,1,50,NA,NA,NA +111,NA,131,"2017",1,1,99,3,99,99,NA,NA +111,NA,131,"2017",1,1,99,4,99,99,NA,NA +111,NA,131,"2017",1,1,99,1,99,NA,NA,NA +111,NA,131,"2017",1,1,99,2,99,99,NA,NA +111,NA,132,"2017",4,1,99,1,99,NA,NA,NA +111,NA,133,"2017",3,0,30,1,70,NA,NA,NA +111,NA,134,"2017",3,0,99,1,1,NA,NA,NA +111,NA,135,"2017",3,0,20,1,80,NA,NA,NA +111,NA,136,"2017",3,1,1,1,1,NA,NA,NA +111,NA,137,"2017",2,1,50,1,50,NA,NA,NA +111,NA,138,"2017",2,0,99,1,1,NA,NA,NA +111,NA,139,"2017",3,1,1,1,1,NA,NA,NA +111,NA,140,"2017",1,0,10,3,90,80,NA,NA +111,NA,140,"2017",1,0,20,4,80,90,NA,NA +111,NA,140,"2017",1,0,20,2,80,35,NA,NA +111,NA,140,"2017",1,0,65,1,35,NA,NA,NA +111,NA,141,"2017",4,0,1,1,99,NA,NA,NA +111,NA,142,"2017",2,1,20,1,20,NA,NA,NA +111,NA,143,"2017",2,1,22,1,22,NA,NA,NA +111,NA,1169,"2017",1,1,50,2,50,1,NA,NA +111,NA,1169,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1169,"2017",1,1,80,3,80,50,NA,NA +111,NA,1169,"2017",1,1,90,4,90,80,NA,NA +111,NA,1170,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1171,"2017",6,1,0,1,0,NA,NA,NA +111,NA,1172,"2017",3,1,0,1,0,NA,NA,NA +111,NA,1173,"2017",3,0,90,1,10,NA,NA,NA +111,NA,1174,"2017",5,1,0,1,0,NA,NA,NA +111,NA,1175,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1176,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1177,"2017",1,0,99,2,1,99,NA,NA +111,NA,1177,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1177,"2017",1,0,50,4,50,99,NA,NA +111,NA,1177,"2017",1,0,1,3,99,1,NA,NA +111,NA,1178,"2017",5,1,40,1,40,NA,NA,NA +111,NA,1179,"2017",1,1,20,1,20,NA,NA,NA +111,NA,1179,"2017",1,1,30,2,30,20,NA,NA +111,NA,1179,"2017",1,1,20,3,20,30,NA,NA +111,NA,1179,"2017",1,1,20,4,20,20,NA,NA +111,NA,1180,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1181,"2017",6,0,70,1,30,NA,NA,NA +111,NA,1182,"2017",3,0,20,1,80,NA,NA,NA +111,NA,1183,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1184,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1185,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1186,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1187,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1188,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1189,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1190,"2017",1,1,20,3,20,40,NA,NA +111,NA,1190,"2017",1,1,40,2,40,40,NA,NA +111,NA,1190,"2017",1,1,30,4,30,20,NA,NA +111,NA,1190,"2017",1,1,40,1,40,NA,NA,NA +111,NA,1191,"2017",2,1,NA,1,NA,NA,NA,NA +111,NA,1192,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1193,"2017",5,1,50,1,50,NA,NA,NA +111,NA,1194,"2017",6,1,30,1,30,NA,NA,NA +111,NA,1195,"2017",2,0,80,1,20,NA,NA,NA +111,NA,1196,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1197,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1198,"2017",5,1,40,1,40,NA,NA,NA +111,NA,1199,"2017",3,0,100,1,0,NA,NA,NA +111,NA,1200,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1201,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1202,"2017",2,1,13,1,13,NA,NA,NA +111,NA,1203,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1204,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1205,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1206,"2017",5,0,30,1,70,NA,NA,NA +111,NA,1207,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1208,"2017",2,0,90,1,10,NA,NA,NA +111,NA,1209,"2017",4,1,0,1,0,NA,NA,NA +111,NA,1210,"2017",2,0,40,1,60,NA,NA,NA +111,NA,1211,"2017",5,0,60,1,40,NA,NA,NA +111,NA,1212,"2017",6,1,40,1,40,NA,NA,NA +111,NA,1213,"2017",1,1,20,3,20,30,NA,NA +111,NA,1213,"2017",1,1,40,4,40,20,NA,NA +111,NA,1213,"2017",1,1,40,1,40,NA,NA,NA +111,NA,1213,"2017",1,1,30,2,30,40,NA,NA +111,NA,1214,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1215,"2017",3,0,20,1,80,NA,NA,NA +111,NA,1216,"2017",3,0,40,1,60,NA,NA,NA +111,NA,1217,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1218,"2017",5,0,20,1,80,NA,NA,NA +111,NA,1219,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1220,"2017",1,1,20,3,20,40,NA,NA +111,NA,1220,"2017",1,1,30,4,30,20,NA,NA +111,NA,1220,"2017",1,1,20,1,20,NA,NA,NA +111,NA,1220,"2017",1,1,40,2,40,20,NA,NA +111,NA,1221,"2017",4,0,20,1,80,NA,NA,NA +111,NA,1222,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1223,"2017",1,1,30,2,30,20,NA,NA +111,NA,1223,"2017",1,1,20,4,20,40,NA,NA +111,NA,1223,"2017",1,1,40,3,40,30,NA,NA +111,NA,1223,"2017",1,1,20,1,20,NA,NA,NA +111,NA,1224,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1225,"2017",1,0,99,2,1,1,NA,NA +111,NA,1225,"2017",1,0,99,1,1,NA,NA,NA +111,NA,1225,"2017",1,0,99,3,1,1,NA,NA +111,NA,1225,"2017",1,0,99,4,1,1,NA,NA +111,NA,1226,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1227,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1228,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1229,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1229,"2017",1,0,99,4,1,50,NA,NA +111,NA,1229,"2017",1,0,50,3,50,60,NA,NA +111,NA,1229,"2017",1,0,40,2,60,50,NA,NA +111,NA,1230,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1231,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1231,"2017",1,1,NA,2,NA,1,NA,NA +111,NA,1231,"2017",1,1,1,3,1,NA,NA,NA +111,NA,1231,"2017",1,1,1,4,1,1,NA,NA +111,NA,1232,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1233,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1234,"2017",6,0,40,1,60,NA,NA,NA +111,NA,1235,"2017",1,0,99,2,1,50,NA,NA +111,NA,1235,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1235,"2017",1,0,1,3,99,1,NA,NA +111,NA,1235,"2017",1,0,1,4,99,99,NA,NA +111,NA,1236,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1237,"2017",2,0,60,1,40,NA,NA,NA +111,NA,1238,"2017",1,0,NA,4,NA,20,NA,NA +111,NA,1238,"2017",1,0,60,1,40,NA,NA,NA +111,NA,1238,"2017",1,0,NA,2,NA,40,NA,NA +111,NA,1238,"2017",1,0,80,3,20,NA,NA,NA +111,NA,1239,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1240,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1241,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1242,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1243,"2017",1,0,NA,4,NA,NA,NA,NA +111,NA,1243,"2017",1,0,NA,3,NA,20,NA,NA +111,NA,1243,"2017",1,0,60,1,40,NA,NA,NA +111,NA,1243,"2017",1,0,80,2,20,40,NA,NA +111,NA,1244,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1245,"2017",2,1,0,1,0,NA,NA,NA +111,NA,1246,"2017",1,1,80,4,80,70,NA,NA +111,NA,1246,"2017",1,1,70,3,70,60,NA,NA +111,NA,1246,"2017",1,1,60,2,60,50,NA,NA +111,NA,1246,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1247,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1248,"2017",3,1,30,1,30,NA,NA,NA +111,NA,1249,"2017",1,1,99,4,99,NA,NA,NA +111,NA,1249,"2017",1,1,NA,3,NA,NA,NA,NA +111,NA,1249,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1249,"2017",1,1,NA,2,NA,99,NA,NA +111,NA,1250,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1251,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1252,"2017",3,1,NA,1,NA,NA,NA,NA +111,NA,1253,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1254,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1255,"2017",5,0,NA,1,NA,NA,NA,NA +111,NA,1256,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1257,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1258,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1259,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1260,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1261,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1262,"2017",5,1,50,1,50,NA,NA,NA +111,NA,1263,"2017",5,1,60,1,60,NA,NA,NA +111,NA,1264,"2017",1,1,100,4,100,100,NA,NA +111,NA,1264,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1264,"2017",1,1,100,2,100,50,NA,NA +111,NA,1264,"2017",1,1,100,3,100,100,NA,NA +111,NA,1265,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1266,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1267,"2017",5,1,1,1,1,NA,NA,NA +111,NA,1268,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1269,"2017",1,0,1,4,99,99,NA,NA +111,NA,1269,"2017",1,0,1,3,99,1,NA,NA +111,NA,1269,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1269,"2017",1,0,99,2,1,50,NA,NA +111,NA,1270,"2017",5,1,80,1,80,NA,NA,NA +111,NA,1271,"2017",1,0,99,3,1,1,NA,NA +111,NA,1271,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1271,"2017",1,0,80,4,20,1,NA,NA +111,NA,1271,"2017",1,0,99,2,1,99,NA,NA +111,NA,1272,"2017",2,0,58,1,42,NA,NA,NA +111,NA,1273,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1274,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1275,"2017",1,1,99,3,99,99,NA,NA +111,NA,1275,"2017",1,1,99,2,99,99,NA,NA +111,NA,1275,"2017",1,1,99,4,99,99,NA,NA +111,NA,1275,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1276,"2017",1,1,1,3,1,99,NA,NA +111,NA,1276,"2017",1,1,1,4,1,1,NA,NA +111,NA,1276,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1276,"2017",1,1,99,2,99,50,NA,NA +111,NA,1277,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1277,"2017",1,0,60,4,40,50,NA,NA +111,NA,1277,"2017",1,0,50,3,50,1,NA,NA +111,NA,1277,"2017",1,0,99,2,1,NA,NA,NA +111,NA,1278,"2017",6,0,30,1,70,NA,NA,NA +111,NA,1279,"2017",5,0,100,1,0,NA,NA,NA +111,NA,1280,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1281,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1282,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1283,"2017",1,0,99,2,1,1,NA,NA +111,NA,1283,"2017",1,0,98,4,2,1,NA,NA +111,NA,1283,"2017",1,0,99,1,1,NA,NA,NA +111,NA,1283,"2017",1,0,99,3,1,1,NA,NA +111,NA,1284,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1284,"2017",1,0,1,4,99,NA,NA,NA +111,NA,1284,"2017",1,0,NA,3,NA,99,NA,NA +111,NA,1284,"2017",1,0,1,2,99,50,NA,NA +111,NA,1285,"2017",1,1,99,3,99,NA,NA,NA +111,NA,1285,"2017",1,1,NA,2,NA,99,NA,NA +111,NA,1285,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1285,"2017",1,1,99,4,99,99,NA,NA +111,NA,1286,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1287,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1288,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1289,"2017",1,0,25,1,75,NA,NA,NA +111,NA,1289,"2017",1,0,64,3,36,36,NA,NA +111,NA,1289,"2017",1,0,99,4,1,36,NA,NA +111,NA,1289,"2017",1,0,64,2,36,75,NA,NA +111,NA,1290,"2017",2,1,100,1,100,NA,NA,NA +111,NA,1291,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1292,"2017",2,1,19,1,19,NA,NA,NA +111,NA,1293,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1294,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1295,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1296,"2017",5,0,66,1,34,NA,NA,NA +111,NA,1297,"2017",2,0,70,1,30,NA,NA,NA +111,NA,1298,"2017",3,0,8,1,92,NA,NA,NA +111,NA,1299,"2017",1,1,90,4,90,90,NA,NA +111,NA,1299,"2017",1,1,90,3,90,90,NA,NA +111,NA,1299,"2017",1,1,90,1,90,NA,NA,NA +111,NA,1299,"2017",1,1,90,2,90,90,NA,NA +111,NA,1300,"2017",6,0,100,1,0,NA,NA,NA +111,NA,1301,"2017",1,0,1,4,99,1,NA,NA +111,NA,1301,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1301,"2017",1,0,99,3,1,50,NA,NA +111,NA,1301,"2017",1,0,50,2,50,50,NA,NA +111,NA,1302,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1303,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1304,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1305,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1306,"2017",5,0,NA,1,NA,NA,NA,NA +111,NA,1307,"2017",2,1,NA,1,NA,NA,NA,NA +111,NA,1308,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1309,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1310,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1311,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1312,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1313,"2017",3,1,40,1,40,NA,NA,NA +111,NA,1314,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1315,"2017",6,0,100,1,0,NA,NA,NA +111,NA,1316,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1316,"2017",1,0,NA,3,NA,NA,NA,NA +111,NA,1316,"2017",1,0,NA,4,NA,NA,NA,NA +111,NA,1316,"2017",1,0,NA,2,NA,NA,NA,NA +111,NA,1317,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1318,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1319,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1320,"2017",5,1,50,1,50,NA,NA,NA +111,NA,1321,"2017",1,1,76,1,76,NA,NA,NA +111,NA,1321,"2017",1,1,12,3,12,99,NA,NA +111,NA,1321,"2017",1,1,50,4,50,12,NA,NA +111,NA,1321,"2017",1,1,99,2,99,76,NA,NA +111,NA,1322,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1322,"2017",1,0,50,2,50,50,NA,NA +111,NA,1322,"2017",1,0,50,3,50,50,NA,NA +111,NA,1322,"2017",1,0,50,4,50,50,NA,NA +111,NA,1323,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1324,"2017",5,1,60,1,60,NA,NA,NA +111,NA,1325,"2017",3,0,86,1,14,NA,NA,NA +111,NA,1326,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1327,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1328,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1329,"2017",2,1,NA,1,NA,NA,NA,NA +111,NA,1330,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1331,"2017",6,1,1,1,1,NA,NA,NA +111,NA,1332,"2017",1,0,NA,4,NA,70,NA,NA +111,NA,1332,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1332,"2017",1,0,30,3,70,50,NA,NA +111,NA,1332,"2017",1,0,50,2,50,50,NA,NA +111,NA,1333,"2017",1,1,50,3,50,99,NA,NA +111,NA,1333,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1333,"2017",1,1,99,2,99,1,NA,NA +111,NA,1333,"2017",1,1,NA,4,NA,50,NA,NA +111,NA,1334,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1335,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1336,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1337,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1338,"2017",3,0,10,1,90,NA,NA,NA +111,NA,1339,"2017",1,1,99,4,99,99,NA,NA +111,NA,1339,"2017",1,1,99,3,99,99,NA,NA +111,NA,1339,"2017",1,1,99,2,99,99,NA,NA +111,NA,1339,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1340,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1341,"2017",1,0,58,1,42,NA,NA,NA +111,NA,1341,"2017",1,0,NA,2,NA,42,NA,NA +111,NA,1341,"2017",1,0,80,4,20,50,NA,NA +111,NA,1341,"2017",1,0,50,3,50,NA,NA,NA +111,NA,1342,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1343,"2017",4,1,1,1,1,NA,NA,NA +111,NA,1344,"2017",1,0,NA,4,NA,99,NA,NA +111,NA,1344,"2017",1,0,1,3,99,99,NA,NA +111,NA,1344,"2017",1,0,1,2,99,99,NA,NA +111,NA,1344,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1345,"2017",1,0,70,2,30,NA,NA,NA +111,NA,1345,"2017",1,0,4,4,96,30,NA,NA +111,NA,1345,"2017",1,0,70,3,30,30,NA,NA +111,NA,1345,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1346,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1347,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1348,"2017",6,1,55,1,55,NA,NA,NA +111,NA,1349,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1350,"2017",6,1,NA,1,NA,NA,NA,NA +111,NA,1351,"2017",5,0,70,1,30,NA,NA,NA +111,NA,1352,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1353,"2017",5,1,1,1,1,NA,NA,NA +111,NA,1354,"2017",1,1,99,2,99,99,NA,NA +111,NA,1354,"2017",1,1,NA,4,NA,99,NA,NA +111,NA,1354,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1354,"2017",1,1,99,3,99,99,NA,NA +111,NA,1355,"2017",3,0,9,1,91,NA,NA,NA +111,NA,1356,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1357,"2017",5,0,60,1,40,NA,NA,NA +111,NA,1358,"2017",1,0,1,3,99,99,NA,NA +111,NA,1358,"2017",1,0,1,2,99,NA,NA,NA +111,NA,1358,"2017",1,0,1,4,99,99,NA,NA +111,NA,1358,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1359,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1360,"2017",1,0,40,2,60,60,NA,NA +111,NA,1360,"2017",1,0,40,1,60,NA,NA,NA +111,NA,1360,"2017",1,0,10,4,90,80,NA,NA +111,NA,1360,"2017",1,0,20,3,80,60,NA,NA +111,NA,1361,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1362,"2017",4,1,60,1,60,NA,NA,NA +111,NA,1363,"2017",3,0,0,1,100,NA,NA,NA +111,NA,1364,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1365,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1366,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1367,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1368,"2017",6,1,1,1,1,NA,NA,NA +111,NA,1369,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1370,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1371,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1372,"2017",4,0,21,1,79,NA,NA,NA +111,NA,1373,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1374,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1375,"2017",4,1,80,1,80,NA,NA,NA +111,NA,1376,"2017",3,1,52,1,52,NA,NA,NA +111,NA,1377,"2017",1,1,20,1,20,NA,NA,NA +111,NA,1377,"2017",1,1,20,2,20,20,NA,NA +111,NA,1377,"2017",1,1,15,4,15,20,NA,NA +111,NA,1377,"2017",1,1,20,3,20,20,NA,NA +111,NA,1378,"2017",1,0,99,4,1,1,NA,NA +111,NA,1378,"2017",1,0,99,2,1,50,NA,NA +111,NA,1378,"2017",1,0,99,3,1,1,NA,NA +111,NA,1378,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1379,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1380,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1381,"2017",5,0,22,1,78,NA,NA,NA +111,NA,1382,"2017",4,1,20,1,20,NA,NA,NA +111,NA,1383,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1384,"2017",6,0,81,1,19,NA,NA,NA +111,NA,1385,"2017",3,0,85,1,15,NA,NA,NA +111,NA,1386,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1387,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1388,"2017",4,1,60,1,60,NA,NA,NA +111,NA,1389,"2017",5,1,50,1,50,NA,NA,NA +111,NA,1390,"2017",5,1,70,1,70,NA,NA,NA +111,NA,1391,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1392,"2017",1,0,NA,2,NA,1,NA,NA +111,NA,1392,"2017",1,0,99,1,1,NA,NA,NA +111,NA,1392,"2017",1,0,NA,3,NA,NA,NA,NA +111,NA,1392,"2017",1,0,NA,4,NA,NA,NA,NA +111,NA,1393,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1394,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1395,"2017",6,1,79,1,79,NA,NA,NA +111,NA,1396,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1397,"2017",1,0,NA,2,NA,99,NA,NA +111,NA,1397,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1397,"2017",1,0,1,3,99,NA,NA,NA +111,NA,1397,"2017",1,0,1,4,99,99,NA,NA +111,NA,1398,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1399,"2017",5,0,80,1,20,NA,NA,NA +111,NA,1400,"2017",1,1,1,4,1,1,NA,NA +111,NA,1400,"2017",1,1,1,2,1,1,NA,NA +111,NA,1400,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1400,"2017",1,1,1,3,1,1,NA,NA +111,NA,1401,"2017",1,1,99,4,99,99,NA,NA +111,NA,1401,"2017",1,1,99,3,99,99,NA,NA +111,NA,1401,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1401,"2017",1,1,99,2,99,99,NA,NA +111,NA,1402,"2017",2,0,90,1,10,NA,NA,NA +111,NA,1403,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1404,"2017",3,1,80,1,80,NA,NA,NA +111,NA,1405,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1406,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1407,"2017",1,0,40,3,60,70,NA,NA +111,NA,1407,"2017",1,0,40,4,60,60,NA,NA +111,NA,1407,"2017",1,0,40,1,60,NA,NA,NA +111,NA,1407,"2017",1,0,30,2,70,60,NA,NA +111,NA,1408,"2017",1,1,100,4,100,99,NA,NA +111,NA,1408,"2017",1,1,99,2,99,99,NA,NA +111,NA,1408,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1408,"2017",1,1,99,3,99,99,NA,NA +111,NA,1409,"2017",3,1,70,1,70,NA,NA,NA +111,NA,1410,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1411,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1412,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1413,"2017",6,0,1,1,99,NA,NA,NA +111,NA,1414,"2017",1,1,99,3,99,99,NA,NA +111,NA,1414,"2017",1,1,99,4,99,99,NA,NA +111,NA,1414,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1414,"2017",1,1,99,2,99,99,NA,NA +111,NA,1415,"2017",6,1,1,1,1,NA,NA,NA +111,NA,1416,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1417,"2017",5,0,40,1,60,NA,NA,NA +111,NA,1418,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1419,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1420,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1421,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1422,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1423,"2017",2,1,75,1,75,NA,NA,NA +111,NA,1424,"2017",5,1,50,1,50,NA,NA,NA +111,NA,1425,"2017",2,1,NA,1,NA,NA,NA,NA +111,NA,1426,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1427,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1427,"2017",1,1,NA,2,NA,99,NA,NA +111,NA,1427,"2017",1,1,99,3,99,NA,NA,NA +111,NA,1427,"2017",1,1,99,4,99,99,NA,NA +111,NA,1428,"2017",2,0,90,1,10,NA,NA,NA +111,NA,1429,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1430,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1431,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1432,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1433,"2017",2,0,70,1,30,NA,NA,NA +111,NA,1434,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1435,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1436,"2017",1,1,99,3,99,98,NA,NA +111,NA,1436,"2017",1,1,98,2,98,1,NA,NA +111,NA,1436,"2017",1,1,99,4,99,99,NA,NA +111,NA,1436,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1437,"2017",3,0,90,1,10,NA,NA,NA +111,NA,1438,"2017",4,1,90,1,90,NA,NA,NA +111,NA,1439,"2017",4,0,88,1,12,NA,NA,NA +111,NA,1440,"2017",3,1,70,1,70,NA,NA,NA +111,NA,1441,"2017",1,1,99,3,99,99,NA,NA +111,NA,1441,"2017",1,1,99,2,99,99,NA,NA +111,NA,1441,"2017",1,1,75,4,75,99,NA,NA +111,NA,1441,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1442,"2017",1,0,1,3,99,1,NA,NA +111,NA,1442,"2017",1,0,1,4,99,99,NA,NA +111,NA,1442,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1442,"2017",1,0,99,2,1,NA,NA,NA +111,NA,1443,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1444,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1445,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1446,"2017",1,1,50,3,50,50,NA,NA +111,NA,1446,"2017",1,1,50,2,50,50,NA,NA +111,NA,1446,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1446,"2017",1,1,99,4,99,50,NA,NA +111,NA,1447,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1448,"2017",1,0,99,3,1,1,NA,NA +111,NA,1448,"2017",1,0,99,2,1,NA,NA,NA +111,NA,1448,"2017",1,0,1,4,99,1,NA,NA +111,NA,1448,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1449,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1450,"2017",1,1,70,4,70,70,NA,NA +111,NA,1450,"2017",1,1,70,3,70,70,NA,NA +111,NA,1450,"2017",1,1,70,1,70,NA,NA,NA +111,NA,1450,"2017",1,1,70,2,70,70,NA,NA +111,NA,1451,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1452,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1453,"2017",1,1,10,4,10,99,NA,NA +111,NA,1453,"2017",1,1,90,1,90,NA,NA,NA +111,NA,1453,"2017",1,1,99,2,99,90,NA,NA +111,NA,1453,"2017",1,1,99,3,99,99,NA,NA +111,NA,1454,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1455,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1456,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1457,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1458,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1459,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1459,"2017",1,1,70,2,70,50,NA,NA +111,NA,1459,"2017",1,1,70,3,70,70,NA,NA +111,NA,1459,"2017",1,1,55,4,55,70,NA,NA +111,NA,1460,"2017",1,0,1,4,99,1,NA,NA +111,NA,1460,"2017",1,0,1,2,99,50,NA,NA +111,NA,1460,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1460,"2017",1,0,99,3,1,99,NA,NA +111,NA,1461,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1462,"2017",2,1,85,1,85,NA,NA,NA +111,NA,1463,"2017",4,0,10,1,90,NA,NA,NA +111,NA,1464,"2017",1,0,30,3,70,90,NA,NA +111,NA,1464,"2017",1,0,10,2,90,80,NA,NA +111,NA,1464,"2017",1,0,20,1,80,NA,NA,NA +111,NA,1464,"2017",1,0,20,4,80,70,NA,NA +111,NA,1465,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1466,"2017",1,1,1,3,1,1,NA,NA +111,NA,1466,"2017",1,1,1,2,1,1,NA,NA +111,NA,1466,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1466,"2017",1,1,99,4,99,1,NA,NA +111,NA,1467,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1468,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1469,"2017",6,1,1,1,1,NA,NA,NA +111,NA,1470,"2017",1,0,99,4,1,99,NA,NA +111,NA,1470,"2017",1,0,99,1,1,NA,NA,NA +111,NA,1470,"2017",1,0,1,3,99,1,NA,NA +111,NA,1470,"2017",1,0,99,2,1,1,NA,NA +111,NA,1471,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1472,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1473,"2017",6,0,90,1,10,NA,NA,NA +111,NA,1474,"2017",4,1,1,1,1,NA,NA,NA +111,NA,1475,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1476,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1477,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1478,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1479,"2017",4,1,10,1,10,NA,NA,NA +111,NA,1480,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1481,"2017",4,0,90,1,10,NA,NA,NA +111,NA,1482,"2017",6,1,45,1,45,NA,NA,NA +111,NA,1483,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1484,"2017",6,1,NA,1,NA,NA,NA,NA +111,NA,1485,"2017",6,0,89,1,11,NA,NA,NA +111,NA,1486,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1487,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1488,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1489,"2017",1,1,50,3,50,50,NA,NA +111,NA,1489,"2017",1,1,50,4,50,50,NA,NA +111,NA,1489,"2017",1,1,50,2,50,50,NA,NA +111,NA,1489,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1490,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1491,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1492,"2017",4,1,56,1,56,NA,NA,NA +111,NA,1493,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1494,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1495,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1496,"2017",4,0,NA,1,NA,NA,NA,NA +111,NA,1497,"2017",6,0,90,1,10,NA,NA,NA +111,NA,1498,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1499,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1500,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1501,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1502,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1503,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,1503,"2017",1,1,1,4,1,50,NA,NA +111,NA,1503,"2017",1,1,50,2,50,NA,NA,NA +111,NA,1503,"2017",1,1,50,3,50,50,NA,NA +111,NA,1504,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1505,"2017",3,0,2,1,98,NA,NA,NA +111,NA,1506,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1507,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1508,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1509,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1510,"2017",2,0,60,1,40,NA,NA,NA +111,NA,1511,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1512,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1513,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1514,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1514,"2017",1,1,99,3,99,99,NA,NA +111,NA,1514,"2017",1,1,99,2,99,99,NA,NA +111,NA,1514,"2017",1,1,99,4,99,99,NA,NA +111,NA,1515,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1516,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1517,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1518,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1519,"2017",2,1,12,1,12,NA,NA,NA +111,NA,1520,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1521,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1522,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1523,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1524,"2017",1,0,20,1,80,NA,NA,NA +111,NA,1524,"2017",1,0,10,2,90,80,NA,NA +111,NA,1524,"2017",1,0,15,4,85,95,NA,NA +111,NA,1524,"2017",1,0,5,3,95,90,NA,NA +111,NA,1525,"2017",4,0,100,1,0,NA,NA,NA +111,NA,1526,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1527,"2017",1,1,99,3,99,90,NA,NA +111,NA,1527,"2017",1,1,90,2,90,NA,NA,NA +111,NA,1527,"2017",1,1,99,4,99,99,NA,NA +111,NA,1527,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,1528,"2017",1,0,90,3,10,NA,NA,NA +111,NA,1528,"2017",1,0,90,4,10,10,NA,NA +111,NA,1528,"2017",1,0,NA,2,NA,10,NA,NA +111,NA,1528,"2017",1,0,90,1,10,NA,NA,NA +111,NA,1529,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1530,"2017",1,1,99,2,99,50,NA,NA +111,NA,1530,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1530,"2017",1,1,50,4,50,50,NA,NA +111,NA,1530,"2017",1,1,50,3,50,99,NA,NA +111,NA,1531,"2017",5,1,2,1,2,NA,NA,NA +111,NA,1532,"2017",4,0,10,1,90,NA,NA,NA +111,NA,1533,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1534,"2017",4,0,NA,1,NA,NA,NA,NA +111,NA,1535,"2017",1,0,99,4,1,50,NA,NA +111,NA,1535,"2017",1,0,1,2,99,1,NA,NA +111,NA,1535,"2017",1,0,50,3,50,99,NA,NA +111,NA,1535,"2017",1,0,99,1,1,NA,NA,NA +111,NA,1536,"2017",5,1,1,1,1,NA,NA,NA +111,NA,1537,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1538,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1539,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1540,"2017",1,0,50,4,50,50,NA,NA +111,NA,1540,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1540,"2017",1,0,50,3,50,50,NA,NA +111,NA,1540,"2017",1,0,50,2,50,50,NA,NA +111,NA,1541,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1542,"2017",3,1,90,1,90,NA,NA,NA +111,NA,1543,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1544,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1545,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1546,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1546,"2017",1,1,50,4,50,90,NA,NA +111,NA,1546,"2017",1,1,90,2,90,50,NA,NA +111,NA,1546,"2017",1,1,90,3,90,90,NA,NA +111,NA,1547,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1548,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1549,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1550,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1551,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1552,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1553,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1554,"2017",5,1,50,1,50,NA,NA,NA +111,NA,1555,"2017",4,1,1,1,1,NA,NA,NA +111,NA,1556,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1557,"2017",6,0,1,1,99,NA,NA,NA +111,NA,1558,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1559,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1560,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1561,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1562,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1563,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1564,"2017",4,1,NA,1,NA,NA,NA,NA +111,NA,1565,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1566,"2017",6,0,1,1,99,NA,NA,NA +111,NA,1567,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1568,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1569,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1570,"2017",6,1,40,1,40,NA,NA,NA +111,NA,1571,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1572,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1573,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1574,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1575,"2017",2,1,100,1,100,NA,NA,NA +111,NA,1576,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1577,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1577,"2017",1,1,99,4,99,99,NA,NA +111,NA,1577,"2017",1,1,99,2,99,99,NA,NA +111,NA,1577,"2017",1,1,99,3,99,99,NA,NA +111,NA,1578,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1579,"2017",1,0,60,4,40,40,NA,NA +111,NA,1579,"2017",1,0,60,3,40,40,NA,NA +111,NA,1579,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1579,"2017",1,0,60,2,40,NA,NA,NA +111,NA,1580,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1581,"2017",1,1,99,2,99,99,NA,NA +111,NA,1581,"2017",1,1,1,4,1,NA,NA,NA +111,NA,1581,"2017",1,1,NA,3,NA,99,NA,NA +111,NA,1581,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1582,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1583,"2017",6,1,80,1,80,NA,NA,NA +111,NA,1584,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1585,"2017",2,0,90,1,10,NA,NA,NA +111,NA,1586,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1587,"2017",1,0,1,2,99,99,NA,NA +111,NA,1587,"2017",1,0,1,4,99,99,NA,NA +111,NA,1587,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1587,"2017",1,0,1,3,99,99,NA,NA +111,NA,1588,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1589,"2017",1,0,80,4,20,NA,NA,NA +111,NA,1589,"2017",1,0,45,2,55,NA,NA,NA +111,NA,1589,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1589,"2017",1,0,NA,3,NA,55,NA,NA +111,NA,1590,"2017",6,1,40,1,40,NA,NA,NA +111,NA,1591,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1592,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1593,"2017",2,1,88,1,88,NA,NA,NA +111,NA,1594,"2017",6,1,NA,1,NA,NA,NA,NA +111,NA,1595,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1596,"2017",1,1,99,2,99,1,NA,NA +111,NA,1596,"2017",1,1,50,4,50,1,NA,NA +111,NA,1596,"2017",1,1,1,3,1,99,NA,NA +111,NA,1596,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1597,"2017",2,1,8,1,8,NA,NA,NA +111,NA,1598,"2017",5,1,50,1,50,NA,NA,NA +111,NA,1599,"2017",5,1,1,1,1,NA,NA,NA +111,NA,1600,"2017",6,0,20,1,80,NA,NA,NA +111,NA,1601,"2017",3,0,90,1,10,NA,NA,NA +111,NA,1602,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1603,"2017",6,1,NA,1,NA,NA,NA,NA +111,NA,1604,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1605,"2017",2,0,NA,1,NA,NA,NA,NA +111,NA,1606,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1607,"2017",1,1,60,2,60,60,NA,NA +111,NA,1607,"2017",1,1,50,4,50,50,NA,NA +111,NA,1607,"2017",1,1,50,3,50,60,NA,NA +111,NA,1607,"2017",1,1,60,1,60,NA,NA,NA +111,NA,1608,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1609,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1610,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1611,"2017",6,1,NA,1,NA,NA,NA,NA +111,NA,1612,"2017",1,1,50,4,50,1,NA,NA +111,NA,1612,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1612,"2017",1,1,1,3,1,1,NA,NA +111,NA,1612,"2017",1,1,1,2,1,1,NA,NA +111,NA,1613,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1614,"2017",3,0,10,1,90,NA,NA,NA +111,NA,1615,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1616,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1617,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1618,"2017",1,0,1,4,99,99,NA,NA +111,NA,1618,"2017",1,0,NA,2,NA,NA,NA,NA +111,NA,1618,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1618,"2017",1,0,1,3,99,NA,NA,NA +111,NA,1619,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1620,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1621,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1622,"2017",2,0,60,1,40,NA,NA,NA +111,NA,1623,"2017",1,1,NA,2,NA,NA,NA,NA +111,NA,1623,"2017",1,1,NA,4,NA,NA,NA,NA +111,NA,1623,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,1623,"2017",1,1,NA,3,NA,NA,NA,NA +111,NA,1624,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1625,"2017",4,0,40,1,60,NA,NA,NA +111,NA,1626,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1627,"2017",3,0,60,1,40,NA,NA,NA +111,NA,1628,"2017",2,0,90,1,10,NA,NA,NA +111,NA,1629,"2017",1,0,60,1,40,NA,NA,NA +111,NA,1629,"2017",1,0,30,2,70,40,NA,NA +111,NA,1629,"2017",1,0,20,3,80,70,NA,NA +111,NA,1629,"2017",1,0,5,4,95,80,NA,NA +111,NA,1630,"2017",3,1,80,1,80,NA,NA,NA +111,NA,1631,"2017",6,1,5,1,5,NA,NA,NA +111,NA,1632,"2017",2,0,100,1,0,NA,NA,NA +111,NA,1633,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1634,"2017",6,0,40,1,60,NA,NA,NA +111,NA,1635,"2017",1,1,80,4,80,80,NA,NA +111,NA,1635,"2017",1,1,80,3,80,100,NA,NA +111,NA,1635,"2017",1,1,100,2,100,40,NA,NA +111,NA,1635,"2017",1,1,40,1,40,NA,NA,NA +111,NA,1636,"2017",5,0,90,1,10,NA,NA,NA +111,NA,1637,"2017",2,0,90,1,10,NA,NA,NA +111,NA,1638,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1639,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1640,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1641,"2017",4,1,90,1,90,NA,NA,NA +111,NA,1642,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1642,"2017",1,1,1,3,1,NA,NA,NA +111,NA,1642,"2017",1,1,NA,4,NA,1,NA,NA +111,NA,1642,"2017",1,1,NA,2,NA,1,NA,NA +111,NA,1643,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1644,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1645,"2017",6,0,60,1,40,NA,NA,NA +111,NA,1646,"2017",2,0,20,1,80,NA,NA,NA +111,NA,1647,"2017",6,1,1,1,1,NA,NA,NA +111,NA,1648,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1648,"2017",1,0,1,3,99,99,NA,NA +111,NA,1648,"2017",1,0,NA,4,NA,99,NA,NA +111,NA,1648,"2017",1,0,1,2,99,99,NA,NA +111,NA,1649,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1650,"2017",6,0,38,1,62,NA,NA,NA +111,NA,1651,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1652,"2017",1,0,20,2,80,70,NA,NA +111,NA,1652,"2017",1,0,30,1,70,NA,NA,NA +111,NA,1652,"2017",1,0,90,4,10,80,NA,NA +111,NA,1652,"2017",1,0,20,3,80,80,NA,NA +111,NA,1653,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1654,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1655,"2017",5,0,100,1,0,NA,NA,NA +111,NA,1656,"2017",2,1,80,1,80,NA,NA,NA +111,NA,1657,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1658,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1659,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1660,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1661,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1662,"2017",5,0,70,1,30,NA,NA,NA +111,NA,1663,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1664,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1665,"2017",3,0,NA,1,NA,NA,NA,NA +111,NA,1666,"2017",2,0,90,1,10,NA,NA,NA +111,NA,1667,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1668,"2017",5,1,NA,1,NA,NA,NA,NA +111,NA,1669,"2017",2,1,45,1,45,NA,NA,NA +111,NA,1670,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1671,"2017",4,1,1,1,1,NA,NA,NA +111,NA,1672,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1673,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1674,"2017",5,0,NA,1,NA,NA,NA,NA +111,NA,1675,"2017",5,1,1,1,1,NA,NA,NA +111,NA,1676,"2017",6,1,98,1,98,NA,NA,NA +111,NA,1677,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1678,"2017",3,1,NA,1,NA,NA,NA,NA +111,NA,1679,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1680,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1681,"2017",5,1,NA,1,NA,NA,NA,NA +111,NA,1682,"2017",5,0,90,1,10,NA,NA,NA +111,NA,1683,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1684,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1685,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1686,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1686,"2017",1,0,99,3,1,99,NA,NA +111,NA,1686,"2017",1,0,1,2,99,99,NA,NA +111,NA,1686,"2017",1,0,1,4,99,1,NA,NA +111,NA,1687,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1688,"2017",5,1,80,1,80,NA,NA,NA +111,NA,1689,"2017",3,0,9,1,91,NA,NA,NA +111,NA,1690,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1690,"2017",1,1,1,2,1,1,NA,NA +111,NA,1690,"2017",1,1,1,3,1,1,NA,NA +111,NA,1690,"2017",1,1,1,4,1,1,NA,NA +111,NA,1691,"2017",5,1,NA,1,NA,NA,NA,NA +111,NA,1692,"2017",3,0,55,1,45,NA,NA,NA +111,NA,1693,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1694,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1695,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1696,"2017",2,1,5,1,5,NA,NA,NA +111,NA,1697,"2017",2,1,60,1,60,NA,NA,NA +111,NA,1698,"2017",6,0,60,1,40,NA,NA,NA +111,NA,1699,"2017",1,1,80,2,80,70,NA,NA +111,NA,1699,"2017",1,1,70,1,70,NA,NA,NA +111,NA,1699,"2017",1,1,90,3,90,80,NA,NA +111,NA,1699,"2017",1,1,99,4,99,90,NA,NA +111,NA,1700,"2017",5,1,2,1,2,NA,NA,NA +111,NA,1701,"2017",3,1,80,1,80,NA,NA,NA +111,NA,1702,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1703,"2017",4,1,1,1,1,NA,NA,NA +111,NA,1704,"2017",3,1,10,1,10,NA,NA,NA +111,NA,1705,"2017",4,1,55,1,55,NA,NA,NA +111,NA,1706,"2017",1,1,NA,4,NA,NA,NA,NA +111,NA,1706,"2017",1,1,NA,2,NA,NA,NA,NA +111,NA,1706,"2017",1,1,NA,3,NA,NA,NA,NA +111,NA,1706,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,1707,"2017",4,0,90,1,10,NA,NA,NA +111,NA,1708,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1709,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1710,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1711,"2017",2,0,9,1,91,NA,NA,NA +111,NA,1712,"2017",1,1,50,3,50,50,NA,NA +111,NA,1712,"2017",1,1,51,4,51,50,NA,NA +111,NA,1712,"2017",1,1,50,2,50,50,NA,NA +111,NA,1712,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1713,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1714,"2017",3,1,20,1,20,NA,NA,NA +111,NA,1715,"2017",6,0,55,1,45,NA,NA,NA +111,NA,1716,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1717,"2017",5,1,40,1,40,NA,NA,NA +111,NA,1718,"2017",3,1,98,1,98,NA,NA,NA +111,NA,1719,"2017",4,0,2,1,98,NA,NA,NA +111,NA,1720,"2017",6,0,10,1,90,NA,NA,NA +111,NA,1721,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1722,"2017",4,1,90,1,90,NA,NA,NA +111,NA,1723,"2017",6,0,1,1,99,NA,NA,NA +111,NA,1724,"2017",1,1,50,4,50,99,NA,NA +111,NA,1724,"2017",1,1,50,2,50,99,NA,NA +111,NA,1724,"2017",1,1,99,3,99,50,NA,NA +111,NA,1724,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1725,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1726,"2017",6,1,44,1,44,NA,NA,NA +111,NA,1727,"2017",4,0,86,1,14,NA,NA,NA +111,NA,1728,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1728,"2017",1,0,NA,3,NA,99,NA,NA +111,NA,1728,"2017",1,0,1,2,99,50,NA,NA +111,NA,1729,"2017",1,1,33,4,33,55,NA,NA +111,NA,1729,"2017",1,1,44,1,44,NA,NA,NA +111,NA,1729,"2017",1,1,55,3,55,33,NA,NA +111,NA,1729,"2017",1,1,33,2,33,44,NA,NA +111,NA,1730,"2017",5,1,10,1,10,NA,NA,NA +111,NA,1731,"2017",5,0,25,1,75,NA,NA,NA +111,NA,1732,"2017",6,1,NA,1,NA,NA,NA,NA +111,NA,1733,"2017",6,1,85,1,85,NA,NA,NA +111,NA,1734,"2017",2,1,20,1,20,NA,NA,NA +111,NA,1735,"2017",1,0,50,2,50,70,NA,NA +111,NA,1735,"2017",1,0,30,3,70,50,NA,NA +111,NA,1735,"2017",1,0,20,4,80,70,NA,NA +111,NA,1735,"2017",1,0,30,1,70,NA,NA,NA +111,NA,1736,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1737,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1738,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1739,"2017",1,1,1,3,1,99,NA,NA +111,NA,1739,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1739,"2017",1,1,99,2,99,50,NA,NA +111,NA,1739,"2017",1,1,50,4,50,1,NA,NA +111,NA,1740,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1741,"2017",1,0,46,1,54,NA,NA,NA +111,NA,1741,"2017",1,0,23,3,77,NA,NA,NA +111,NA,1741,"2017",1,0,NA,2,NA,54,NA,NA +111,NA,1741,"2017",1,0,1,4,99,77,NA,NA +111,NA,1742,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1743,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1744,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1744,"2017",1,0,1,4,99,1,NA,NA +111,NA,1744,"2017",1,0,1,2,99,99,NA,NA +111,NA,1744,"2017",1,0,99,3,1,99,NA,NA +111,NA,1745,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1746,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1747,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1748,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1749,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1750,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1751,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1752,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1753,"2017",5,0,30,1,70,NA,NA,NA +111,NA,1754,"2017",1,1,99,3,99,1,NA,NA +111,NA,1754,"2017",1,1,99,4,99,99,NA,NA +111,NA,1754,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1754,"2017",1,1,1,2,1,1,NA,NA +111,NA,1755,"2017",5,1,45,1,45,NA,NA,NA +111,NA,1756,"2017",1,1,75,2,75,25,NA,NA +111,NA,1756,"2017",1,1,15,4,15,25,NA,NA +111,NA,1756,"2017",1,1,25,1,25,NA,NA,NA +111,NA,1756,"2017",1,1,25,3,25,75,NA,NA +111,NA,1757,"2017",4,1,70,1,70,NA,NA,NA +111,NA,1758,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1759,"2017",2,0,32,1,68,NA,NA,NA +111,NA,1760,"2017",1,0,51,1,49,NA,NA,NA +111,NA,1760,"2017",1,0,11,2,89,49,NA,NA +111,NA,1760,"2017",1,0,91,4,9,99,NA,NA +111,NA,1760,"2017",1,0,1,3,99,89,NA,NA +111,NA,1761,"2017",5,1,58,1,58,NA,NA,NA +111,NA,1762,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1763,"2017",3,1,90,1,90,NA,NA,NA +111,NA,1764,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1765,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1766,"2017",5,1,1,1,1,NA,NA,NA +111,NA,1767,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1768,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1769,"2017",1,1,99,3,99,99,NA,NA +111,NA,1769,"2017",1,1,99,4,99,99,NA,NA +111,NA,1769,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1770,"2017",1,1,92,1,92,NA,NA,NA +111,NA,1770,"2017",1,1,100,2,100,92,NA,NA +111,NA,1770,"2017",1,1,100,3,100,100,NA,NA +111,NA,1770,"2017",1,1,100,4,100,100,NA,NA +111,NA,1771,"2017",4,0,27,1,73,NA,NA,NA +111,NA,1772,"2017",1,0,49,1,51,NA,NA,NA +111,NA,1772,"2017",1,0,0,2,100,51,NA,NA +111,NA,1772,"2017",1,0,49,3,51,100,NA,NA +111,NA,1772,"2017",1,0,NA,4,NA,51,NA,NA +111,NA,1773,"2017",6,0,NA,1,NA,NA,NA,NA +111,NA,1774,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1775,"2017",6,0,87,1,13,NA,NA,NA +111,NA,1776,"2017",3,0,88,1,12,NA,NA,NA +111,NA,1777,"2017",6,0,70,1,30,NA,NA,NA +111,NA,1778,"2017",4,0,90,1,10,NA,NA,NA +111,NA,1779,"2017",2,0,83,1,17,NA,NA,NA +111,NA,1780,"2017",3,0,93,1,7,NA,NA,NA +111,NA,1781,"2017",5,1,95,1,95,NA,NA,NA +111,NA,1782,"2017",1,1,94,2,94,89,NA,NA +111,NA,1782,"2017",1,1,89,1,89,NA,NA,NA +111,NA,1782,"2017",1,1,99,4,99,80,NA,NA +111,NA,1782,"2017",1,1,80,3,80,94,NA,NA +111,NA,1783,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1784,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1785,"2017",3,1,88,1,88,NA,NA,NA +111,NA,1786,"2017",3,1,88,1,88,NA,NA,NA +111,NA,1787,"2017",1,1,92,3,92,87,NA,NA +111,NA,1787,"2017",1,1,87,2,87,86,NA,NA +111,NA,1787,"2017",1,1,97,4,97,92,NA,NA +111,NA,1787,"2017",1,1,86,1,86,NA,NA,NA +111,NA,1788,"2017",6,1,94,1,94,NA,NA,NA +111,NA,1789,"2017",4,0,10,1,90,NA,NA,NA +111,NA,1790,"2017",1,1,1,3,1,99,NA,NA +111,NA,1790,"2017",1,1,99,2,99,84,NA,NA +111,NA,1790,"2017",1,1,84,1,84,NA,NA,NA +111,NA,1790,"2017",1,1,84,4,84,1,NA,NA +111,NA,1791,"2017",5,0,32,1,68,NA,NA,NA +111,NA,1792,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1793,"2017",3,1,83,1,83,NA,NA,NA +111,NA,1794,"2017",4,0,85,1,15,NA,NA,NA +111,NA,1795,"2017",2,1,77,1,77,NA,NA,NA +111,NA,1796,"2017",4,1,88,1,88,NA,NA,NA +111,NA,1797,"2017",1,0,85,2,15,13,NA,NA +111,NA,1797,"2017",1,0,77,4,23,16,NA,NA +111,NA,1797,"2017",1,0,87,1,13,NA,NA,NA +111,NA,1797,"2017",1,0,84,3,16,15,NA,NA +111,NA,1798,"2017",5,1,8,1,8,NA,NA,NA +111,NA,1799,"2017",5,1,88,1,88,NA,NA,NA +111,NA,1800,"2017",2,0,NA,1,NA,NA,NA,NA +111,NA,1801,"2017",4,0,88,1,12,NA,NA,NA +111,NA,1802,"2017",6,1,85,1,85,NA,NA,NA +111,NA,1803,"2017",6,0,98,1,2,NA,NA,NA +111,NA,1804,"2017",5,1,NA,1,NA,NA,NA,NA +111,NA,1805,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1806,"2017",6,1,42,1,42,NA,NA,NA +111,NA,1807,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1808,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1809,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1810,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1811,"2017",1,0,1,3,99,50,NA,NA +111,NA,1811,"2017",1,0,1,4,99,99,NA,NA +111,NA,1811,"2017",1,0,50,2,50,50,NA,NA +111,NA,1811,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1812,"2017",4,0,NA,1,NA,NA,NA,NA +111,NA,1813,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1814,"2017",2,0,NA,1,NA,NA,NA,NA +111,NA,1815,"2017",2,0,40,1,60,NA,NA,NA +111,NA,1816,"2017",5,1,70,1,70,NA,NA,NA +111,NA,1817,"2017",6,1,60,1,60,NA,NA,NA +111,NA,1818,"2017",1,1,60,3,60,70,NA,NA +111,NA,1818,"2017",1,1,80,4,80,60,NA,NA +111,NA,1818,"2017",1,1,70,2,70,NA,NA,NA +111,NA,1818,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,1819,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1820,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1821,"2017",1,0,70,2,30,60,NA,NA +111,NA,1821,"2017",1,0,40,1,60,NA,NA,NA +111,NA,1821,"2017",1,0,50,3,50,30,NA,NA +111,NA,1821,"2017",1,0,30,4,70,50,NA,NA +111,NA,1822,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1823,"2017",5,1,60,1,60,NA,NA,NA +111,NA,1824,"2017",5,1,1,1,1,NA,NA,NA +111,NA,1825,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1826,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1827,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1827,"2017",1,1,1,4,1,1,NA,NA +111,NA,1827,"2017",1,1,1,3,1,1,NA,NA +111,NA,1827,"2017",1,1,1,2,1,1,NA,NA +111,NA,1828,"2017",1,0,10,4,90,80,NA,NA +111,NA,1828,"2017",1,0,36,2,64,40,NA,NA +111,NA,1828,"2017",1,0,60,1,40,NA,NA,NA +111,NA,1828,"2017",1,0,20,3,80,64,NA,NA +111,NA,1829,"2017",6,0,1,1,99,NA,NA,NA +111,NA,1830,"2017",3,0,60,1,40,NA,NA,NA +111,NA,1831,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1832,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1833,"2017",2,1,80,1,80,NA,NA,NA +111,NA,1834,"2017",1,0,99,4,1,99,NA,NA +111,NA,1834,"2017",1,0,1,2,99,99,NA,NA +111,NA,1834,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1834,"2017",1,0,1,3,99,99,NA,NA +111,NA,1835,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1835,"2017",1,0,10,4,90,80,NA,NA +111,NA,1835,"2017",1,0,30,2,70,99,NA,NA +111,NA,1835,"2017",1,0,20,3,80,70,NA,NA +111,NA,1836,"2017",6,1,70,1,70,NA,NA,NA +111,NA,1837,"2017",5,0,80,1,20,NA,NA,NA +111,NA,1838,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1839,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1840,"2017",2,1,80,1,80,NA,NA,NA +111,NA,1841,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1842,"2017",1,0,80,2,20,20,NA,NA +111,NA,1842,"2017",1,0,20,4,80,20,NA,NA +111,NA,1842,"2017",1,0,80,1,20,NA,NA,NA +111,NA,1842,"2017",1,0,80,3,20,20,NA,NA +111,NA,1843,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1844,"2017",3,1,9,1,9,NA,NA,NA +111,NA,1845,"2017",2,1,80,1,80,NA,NA,NA +111,NA,1846,"2017",3,0,100,1,0,NA,NA,NA +111,NA,1847,"2017",1,0,60,4,40,100,NA,NA +111,NA,1847,"2017",1,0,99,1,1,NA,NA,NA +111,NA,1847,"2017",1,0,0,3,100,50,NA,NA +111,NA,1847,"2017",1,0,50,2,50,1,NA,NA +111,NA,1848,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1849,"2017",4,0,96,1,4,NA,NA,NA +111,NA,1850,"2017",2,1,70,1,70,NA,NA,NA +111,NA,1851,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1852,"2017",5,1,40,1,40,NA,NA,NA +111,NA,1853,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1854,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1855,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1856,"2017",6,0,80,1,20,NA,NA,NA +111,NA,1857,"2017",1,1,80,1,80,NA,NA,NA +111,NA,1857,"2017",1,1,20,2,20,80,NA,NA +111,NA,1857,"2017",1,1,33,4,33,20,NA,NA +111,NA,1857,"2017",1,1,20,3,20,20,NA,NA +111,NA,1858,"2017",5,1,99,1,99,NA,NA,NA +111,NA,1859,"2017",1,0,80,4,20,20,NA,NA +111,NA,1859,"2017",1,0,80,2,20,20,NA,NA +111,NA,1859,"2017",1,0,80,1,20,NA,NA,NA +111,NA,1859,"2017",1,0,80,3,20,20,NA,NA +111,NA,1860,"2017",1,0,99,1,1,NA,NA,NA +111,NA,1860,"2017",1,0,1,4,99,99,NA,NA +111,NA,1860,"2017",1,0,1,3,99,99,NA,NA +111,NA,1860,"2017",1,0,1,2,99,1,NA,NA +111,NA,1861,"2017",1,0,99,2,1,50,NA,NA +111,NA,1861,"2017",1,0,50,1,50,NA,NA,NA +111,NA,1861,"2017",1,0,99,4,1,1,NA,NA +111,NA,1861,"2017",1,0,99,3,1,1,NA,NA +111,NA,1862,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1863,"2017",2,1,80,1,80,NA,NA,NA +111,NA,1864,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1865,"2017",4,1,80,1,80,NA,NA,NA +111,NA,1866,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1867,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1868,"2017",6,0,1,1,99,NA,NA,NA +111,NA,1869,"2017",3,1,0,1,0,NA,NA,NA +111,NA,1870,"2017",1,1,0,2,0,0,NA,NA +111,NA,1870,"2017",1,1,0,3,0,0,NA,NA +111,NA,1870,"2017",1,1,0,4,0,0,NA,NA +111,NA,1870,"2017",1,1,0,1,0,NA,NA,NA +111,NA,1871,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1872,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1873,"2017",2,1,88,1,88,NA,NA,NA +111,NA,1874,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1875,"2017",1,0,100,3,0,100,NA,NA +111,NA,1875,"2017",1,0,0,2,100,0,NA,NA +111,NA,1875,"2017",1,0,100,4,0,0,NA,NA +111,NA,1875,"2017",1,0,100,1,0,NA,NA,NA +111,NA,1876,"2017",1,0,80,1,20,NA,NA,NA +111,NA,1876,"2017",1,0,99,3,1,20,NA,NA +111,NA,1876,"2017",1,0,1,4,99,1,NA,NA +111,NA,1876,"2017",1,0,80,2,20,20,NA,NA +111,NA,1877,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1878,"2017",3,1,90,1,90,NA,NA,NA +111,NA,1879,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1880,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1881,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1882,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1883,"2017",4,0,70,1,30,NA,NA,NA +111,NA,1884,"2017",5,1,100,1,100,NA,NA,NA +111,NA,1885,"2017",3,0,40,1,60,NA,NA,NA +111,NA,1886,"2017",4,0,80,1,20,NA,NA,NA +111,NA,1887,"2017",6,0,1,1,99,NA,NA,NA +111,NA,1888,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1889,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1890,"2017",4,0,0,1,100,NA,NA,NA +111,NA,1891,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1892,"2017",3,1,80,1,80,NA,NA,NA +111,NA,1893,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1894,"2017",3,1,60,1,60,NA,NA,NA +111,NA,1895,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1896,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1897,"2017",1,1,99,3,99,99,NA,NA +111,NA,1897,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1897,"2017",1,1,99,4,99,99,NA,NA +111,NA,1897,"2017",1,1,99,2,99,99,NA,NA +111,NA,1898,"2017",1,0,1,4,99,99,NA,NA +111,NA,1898,"2017",1,0,1,1,99,NA,NA,NA +111,NA,1898,"2017",1,0,1,3,99,99,NA,NA +111,NA,1898,"2017",1,0,1,2,99,99,NA,NA +111,NA,1899,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1900,"2017",4,1,50,1,50,NA,NA,NA +111,NA,1901,"2017",5,0,80,1,20,NA,NA,NA +111,NA,1902,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1903,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1904,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1905,"2017",2,1,70,1,70,NA,NA,NA +111,NA,1906,"2017",3,0,80,1,20,NA,NA,NA +111,NA,1907,"2017",4,0,70,1,30,NA,NA,NA +111,NA,1908,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1909,"2017",1,1,70,3,70,80,NA,NA +111,NA,1909,"2017",1,1,80,2,80,70,NA,NA +111,NA,1909,"2017",1,1,70,1,70,NA,NA,NA +111,NA,1909,"2017",1,1,80,4,80,70,NA,NA +111,NA,1910,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1911,"2017",4,1,90,1,90,NA,NA,NA +111,NA,1912,"2017",4,1,90,1,90,NA,NA,NA +111,NA,1913,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1914,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1915,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1916,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1916,"2017",1,1,1,4,1,20,NA,NA +111,NA,1916,"2017",1,1,20,3,20,70,NA,NA +111,NA,1916,"2017",1,1,70,2,70,1,NA,NA +111,NA,1917,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1918,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1919,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1920,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1921,"2017",4,1,10,1,10,NA,NA,NA +111,NA,1922,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1923,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1924,"2017",3,0,0,1,100,NA,NA,NA +111,NA,1925,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1926,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1927,"2017",6,1,40,1,40,NA,NA,NA +111,NA,1928,"2017",4,0,12,1,88,NA,NA,NA +111,NA,1929,"2017",1,1,1,3,1,99,NA,NA +111,NA,1929,"2017",1,1,99,2,99,1,NA,NA +111,NA,1929,"2017",1,1,1,1,1,NA,NA,NA +111,NA,1929,"2017",1,1,1,4,1,1,NA,NA +111,NA,1930,"2017",1,0,NA,2,NA,NA,NA,NA +111,NA,1930,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,1930,"2017",1,0,NA,4,NA,50,NA,NA +111,NA,1930,"2017",1,0,50,3,50,NA,NA,NA +111,NA,1931,"2017",1,1,90,2,90,90,NA,NA +111,NA,1931,"2017",1,1,99,3,99,90,NA,NA +111,NA,1931,"2017",1,1,99,4,99,99,NA,NA +111,NA,1931,"2017",1,1,90,1,90,NA,NA,NA +111,NA,1932,"2017",2,0,1,1,99,NA,NA,NA +111,NA,1933,"2017",3,0,70,1,30,NA,NA,NA +111,NA,1934,"2017",6,0,70,1,30,NA,NA,NA +111,NA,1935,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1936,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1937,"2017",6,1,1,1,1,NA,NA,NA +111,NA,1938,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1939,"2017",5,1,1,1,1,NA,NA,NA +111,NA,1940,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1941,"2017",3,1,60,1,60,NA,NA,NA +111,NA,1942,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1943,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1944,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1945,"2017",5,0,99,1,1,NA,NA,NA +111,NA,1946,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1947,"2017",4,0,7,1,93,NA,NA,NA +111,NA,1948,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1949,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1950,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1951,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1952,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1953,"2017",1,0,0,4,100,100,NA,NA +111,NA,1953,"2017",1,0,0,3,100,100,NA,NA +111,NA,1953,"2017",1,0,0,1,100,NA,NA,NA +111,NA,1953,"2017",1,0,0,2,100,100,NA,NA +111,NA,1954,"2017",3,0,1,1,99,NA,NA,NA +111,NA,1955,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1956,"2017",1,0,85,4,15,NA,NA,NA +111,NA,1956,"2017",1,0,1,2,99,30,NA,NA +111,NA,1956,"2017",1,0,NA,3,NA,99,NA,NA +111,NA,1956,"2017",1,0,70,1,30,NA,NA,NA +111,NA,1957,"2017",6,0,9,1,91,NA,NA,NA +111,NA,1958,"2017",4,0,50,1,50,NA,NA,NA +111,NA,1959,"2017",5,1,90,1,90,NA,NA,NA +111,NA,1960,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1961,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1962,"2017",5,1,50,1,50,NA,NA,NA +111,NA,1963,"2017",5,0,90,1,10,NA,NA,NA +111,NA,1964,"2017",4,0,99,1,1,NA,NA,NA +111,NA,1965,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1966,"2017",4,0,20,1,80,NA,NA,NA +111,NA,1967,"2017",1,1,99,4,99,99,NA,NA +111,NA,1967,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,1967,"2017",1,1,99,3,99,99,NA,NA +111,NA,1967,"2017",1,1,99,2,99,NA,NA,NA +111,NA,1968,"2017",3,0,99,1,1,NA,NA,NA +111,NA,1969,"2017",2,1,70,1,70,NA,NA,NA +111,NA,1970,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1971,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1972,"2017",3,0,50,1,50,NA,NA,NA +111,NA,1973,"2017",5,0,50,1,50,NA,NA,NA +111,NA,1974,"2017",6,0,50,1,50,NA,NA,NA +111,NA,1975,"2017",3,1,99,1,99,NA,NA,NA +111,NA,1976,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1977,"2017",1,1,1,2,1,50,NA,NA +111,NA,1977,"2017",1,1,99,4,99,99,NA,NA +111,NA,1977,"2017",1,1,99,3,99,1,NA,NA +111,NA,1977,"2017",1,1,50,1,50,NA,NA,NA +111,NA,1978,"2017",6,1,50,1,50,NA,NA,NA +111,NA,1979,"2017",6,0,99,1,1,NA,NA,NA +111,NA,1980,"2017",5,0,80,1,20,NA,NA,NA +111,NA,1981,"2017",4,0,1,1,99,NA,NA,NA +111,NA,1982,"2017",5,0,NA,1,NA,NA,NA,NA +111,NA,1983,"2017",2,1,90,1,90,NA,NA,NA +111,NA,1984,"2017",2,0,99,1,1,NA,NA,NA +111,NA,1985,"2017",1,1,99,1,99,NA,NA,NA +111,NA,1985,"2017",1,1,1,4,1,1,NA,NA +111,NA,1985,"2017",1,1,99,2,99,99,NA,NA +111,NA,1985,"2017",1,1,1,3,1,99,NA,NA +111,NA,1986,"2017",4,1,99,1,99,NA,NA,NA +111,NA,1987,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1988,"2017",3,0,80,1,20,NA,NA,NA +111,NA,1989,"2017",4,1,80,1,80,NA,NA,NA +111,NA,1990,"2017",3,1,50,1,50,NA,NA,NA +111,NA,1991,"2017",2,1,50,1,50,NA,NA,NA +111,NA,1992,"2017",2,1,99,1,99,NA,NA,NA +111,NA,1993,"2017",2,1,1,1,1,NA,NA,NA +111,NA,1994,"2017",3,1,1,1,1,NA,NA,NA +111,NA,1995,"2017",2,0,10,1,90,NA,NA,NA +111,NA,1996,"2017",5,0,1,1,99,NA,NA,NA +111,NA,1997,"2017",6,1,99,1,99,NA,NA,NA +111,NA,1998,"2017",2,0,50,1,50,NA,NA,NA +111,NA,1999,"2017",5,1,50,1,50,NA,NA,NA +111,NA,2000,"2017",4,0,60,1,40,NA,NA,NA +111,NA,2001,"2017",3,0,99,1,1,NA,NA,NA +111,NA,2002,"2017",2,0,50,1,50,NA,NA,NA +111,NA,2003,"2017",3,0,50,1,50,NA,NA,NA +111,NA,2004,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2005,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2006,"2017",5,0,90,1,10,NA,NA,NA +111,NA,2007,"2017",2,1,72,1,72,NA,NA,NA +111,NA,2008,"2017",4,1,50,1,50,NA,NA,NA +111,NA,2009,"2017",5,0,NA,1,NA,NA,NA,NA +111,NA,2010,"2017",4,1,50,1,50,NA,NA,NA +111,NA,2011,"2017",6,1,35,1,35,NA,NA,NA +111,NA,2012,"2017",2,1,50,1,50,NA,NA,NA +111,NA,2013,"2017",3,0,50,1,50,NA,NA,NA +111,NA,2014,"2017",6,1,40,1,40,NA,NA,NA +111,NA,2015,"2017",2,0,99,1,1,NA,NA,NA +111,NA,2016,"2017",3,0,99,1,1,NA,NA,NA +111,NA,2017,"2017",5,0,50,1,50,NA,NA,NA +111,NA,2018,"2017",6,1,50,1,50,NA,NA,NA +111,NA,2019,"2017",2,0,50,1,50,NA,NA,NA +111,NA,2020,"2017",4,0,1,1,99,NA,NA,NA +111,NA,2021,"2017",2,0,10,1,90,NA,NA,NA +111,NA,2022,"2017",4,0,50,1,50,NA,NA,NA +111,NA,2023,"2017",5,1,50,1,50,NA,NA,NA +111,NA,2024,"2017",6,0,50,1,50,NA,NA,NA +111,NA,2025,"2017",1,0,90,2,10,10,NA,NA +111,NA,2025,"2017",1,0,90,1,10,NA,NA,NA +111,NA,2025,"2017",1,0,90,3,10,10,NA,NA +111,NA,2025,"2017",1,0,90,4,10,10,NA,NA +111,NA,2026,"2017",1,0,50,3,50,30,NA,NA +111,NA,2026,"2017",1,0,50,1,50,NA,NA,NA +111,NA,2026,"2017",1,0,40,4,60,50,NA,NA +111,NA,2026,"2017",1,0,70,2,30,50,NA,NA +111,NA,2027,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2028,"2017",3,0,80,1,20,NA,NA,NA +111,NA,2029,"2017",3,1,NA,1,NA,NA,NA,NA +111,NA,2030,"2017",4,0,50,1,50,NA,NA,NA +111,NA,2031,"2017",2,0,99,1,1,NA,NA,NA +111,NA,2032,"2017",4,0,80,1,20,NA,NA,NA +111,NA,2033,"2017",3,1,99,1,99,NA,NA,NA +111,NA,2034,"2017",6,0,99,1,1,NA,NA,NA +111,NA,2035,"2017",5,0,10,1,90,NA,NA,NA +111,NA,2036,"2017",1,0,1,3,99,1,NA,NA +111,NA,2036,"2017",1,0,99,2,1,1,NA,NA +111,NA,2036,"2017",1,0,1,4,99,99,NA,NA +111,NA,2036,"2017",1,0,99,1,1,NA,NA,NA +111,NA,2037,"2017",4,0,99,1,1,NA,NA,NA +111,NA,2038,"2017",3,0,50,1,50,NA,NA,NA +111,NA,2039,"2017",2,1,0,1,0,NA,NA,NA +111,NA,2040,"2017",5,1,80,1,80,NA,NA,NA +111,NA,2041,"2017",4,0,1,1,99,NA,NA,NA +111,NA,2042,"2017",1,0,60,1,40,NA,NA,NA +111,NA,2042,"2017",1,0,10,4,90,60,NA,NA +111,NA,2042,"2017",1,0,60,2,40,40,NA,NA +111,NA,2042,"2017",1,0,40,3,60,40,NA,NA +111,NA,2043,"2017",1,0,40,3,60,40,NA,NA +111,NA,2043,"2017",1,0,80,1,20,NA,NA,NA +111,NA,2043,"2017",1,0,50,4,50,60,NA,NA +111,NA,2043,"2017",1,0,60,2,40,20,NA,NA +111,NA,2044,"2017",5,0,60,1,40,NA,NA,NA +111,NA,2045,"2017",5,0,99,1,1,NA,NA,NA +111,NA,2046,"2017",6,1,1,1,1,NA,NA,NA +111,NA,2047,"2017",5,0,50,1,50,NA,NA,NA +111,NA,2048,"2017",4,0,99,1,1,NA,NA,NA +111,NA,2049,"2017",6,0,85,1,15,NA,NA,NA +111,NA,2050,"2017",2,0,99,1,1,NA,NA,NA +111,NA,2051,"2017",1,0,99,3,1,0,NA,NA +111,NA,2051,"2017",1,0,100,2,0,0,NA,NA +111,NA,2051,"2017",1,0,100,1,0,NA,NA,NA +111,NA,2051,"2017",1,0,99,4,1,1,NA,NA +111,NA,2052,"2017",4,1,60,1,60,NA,NA,NA +111,NA,2053,"2017",3,0,80,1,20,NA,NA,NA +111,NA,2054,"2017",6,1,99,1,99,NA,NA,NA +111,NA,2055,"2017",5,0,60,1,40,NA,NA,NA +111,NA,2056,"2017",4,0,50,1,50,NA,NA,NA +111,NA,2057,"2017",5,0,10,1,90,NA,NA,NA +111,NA,2058,"2017",4,1,60,1,60,NA,NA,NA +111,NA,2059,"2017",2,1,99,1,99,NA,NA,NA +111,NA,2060,"2017",3,1,99,1,99,NA,NA,NA +111,NA,2061,"2017",3,0,99,1,1,NA,NA,NA +111,NA,2062,"2017",5,1,99,1,99,NA,NA,NA +111,NA,2063,"2017",3,0,50,1,50,NA,NA,NA +111,NA,2064,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2065,"2017",6,0,99,1,1,NA,NA,NA +111,NA,2066,"2017",2,0,NA,1,NA,NA,NA,NA +111,NA,2067,"2017",6,0,10,1,90,NA,NA,NA +111,NA,2068,"2017",2,1,99,1,99,NA,NA,NA +111,NA,2069,"2017",3,0,99,1,1,NA,NA,NA +111,NA,2070,"2017",6,1,99,1,99,NA,NA,NA +111,NA,2071,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2072,"2017",6,1,50,1,50,NA,NA,NA +111,NA,2073,"2017",5,1,99,1,99,NA,NA,NA +111,NA,2074,"2017",1,0,50,4,50,50,NA,NA +111,NA,2074,"2017",1,0,50,3,50,50,NA,NA +111,NA,2074,"2017",1,0,50,2,50,1,NA,NA +111,NA,2074,"2017",1,0,99,1,1,NA,NA,NA +111,NA,2075,"2017",2,0,99,1,1,NA,NA,NA +111,NA,2076,"2017",1,1,NA,2,NA,NA,NA,NA +111,NA,2076,"2017",1,1,99,3,99,NA,NA,NA +111,NA,2076,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,2076,"2017",1,1,1,4,1,99,NA,NA +111,NA,2077,"2017",5,1,99,1,99,NA,NA,NA +111,NA,2078,"2017",2,1,100,1,100,NA,NA,NA +111,NA,2079,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2080,"2017",5,1,80,1,80,NA,NA,NA +111,NA,2081,"2017",1,1,99,2,99,NA,NA,NA +111,NA,2081,"2017",1,1,NA,1,NA,NA,NA,NA +111,NA,2081,"2017",1,1,99,3,99,99,NA,NA +111,NA,2081,"2017",1,1,99,4,99,99,NA,NA +111,NA,2082,"2017",6,1,99,1,99,NA,NA,NA +111,NA,2083,"2017",3,0,50,1,50,NA,NA,NA +111,NA,2084,"2017",2,0,50,1,50,NA,NA,NA +111,NA,2085,"2017",4,0,99,1,1,NA,NA,NA +111,NA,2086,"2017",6,0,99,1,1,NA,NA,NA +111,NA,2087,"2017",2,0,1,1,99,NA,NA,NA +111,NA,2088,"2017",3,0,55,1,45,NA,NA,NA +111,NA,2089,"2017",3,1,NA,1,NA,NA,NA,NA +111,NA,2090,"2017",4,1,99,1,99,NA,NA,NA +111,NA,2091,"2017",3,0,50,1,50,NA,NA,NA +111,NA,2092,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2093,"2017",4,1,30,1,30,NA,NA,NA +111,NA,2094,"2017",1,1,12,3,12,12,NA,NA +111,NA,2094,"2017",1,1,12,2,12,60,NA,NA +111,NA,2094,"2017",1,1,60,1,60,NA,NA,NA +111,NA,2094,"2017",1,1,12,4,12,12,NA,NA +111,NA,2095,"2017",3,1,75,1,75,NA,NA,NA +111,NA,2096,"2017",2,0,99,1,1,NA,NA,NA +111,NA,2097,"2017",5,0,99,1,1,NA,NA,NA +111,NA,2098,"2017",2,1,50,1,50,NA,NA,NA +111,NA,2099,"2017",6,1,99,1,99,NA,NA,NA +111,NA,2100,"2017",4,1,50,1,50,NA,NA,NA +111,NA,2101,"2017",1,0,2,1,98,NA,NA,NA +111,NA,2101,"2017",1,0,2,4,98,NA,NA,NA +111,NA,2101,"2017",1,0,NA,3,NA,50,NA,NA +111,NA,2101,"2017",1,0,50,2,50,98,NA,NA +111,NA,2102,"2017",4,0,99,1,1,NA,NA,NA +111,NA,2103,"2017",4,0,1,1,99,NA,NA,NA +111,NA,2104,"2017",4,1,99,1,99,NA,NA,NA +111,NA,2105,"2017",4,0,50,1,50,NA,NA,NA +111,NA,2106,"2017",2,1,99,1,99,NA,NA,NA +111,NA,2107,"2017",5,1,99,1,99,NA,NA,NA +111,NA,2108,"2017",5,1,1,1,1,NA,NA,NA +111,NA,2109,"2017",2,1,99,1,99,NA,NA,NA +111,NA,2110,"2017",4,0,50,1,50,NA,NA,NA +111,NA,2111,"2017",5,0,10,1,90,NA,NA,NA +111,NA,2112,"2017",6,0,50,1,50,NA,NA,NA +111,NA,2113,"2017",2,0,NA,1,NA,NA,NA,NA +111,NA,2114,"2017",1,1,1,2,1,1,NA,NA +111,NA,2114,"2017",1,1,1,3,1,1,NA,NA +111,NA,2114,"2017",1,1,1,1,1,NA,NA,NA +111,NA,2114,"2017",1,1,99,4,99,1,NA,NA +111,NA,2115,"2017",2,1,99,1,99,NA,NA,NA +111,NA,2116,"2017",3,1,99,1,99,NA,NA,NA +111,NA,2117,"2017",1,0,1,3,99,99,NA,NA +111,NA,2117,"2017",1,0,1,2,99,1,NA,NA +111,NA,2117,"2017",1,0,99,1,1,NA,NA,NA +111,NA,2117,"2017",1,0,1,4,99,99,NA,NA +111,NA,2118,"2017",5,0,90,1,10,NA,NA,NA +111,NA,2119,"2017",2,1,50,1,50,NA,NA,NA +111,NA,2120,"2017",3,0,80,1,20,NA,NA,NA +111,NA,2121,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2122,"2017",1,0,99,2,1,NA,NA,NA +111,NA,2122,"2017",1,0,NA,4,NA,50,NA,NA +111,NA,2122,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,2122,"2017",1,0,50,3,50,1,NA,NA +111,NA,2123,"2017",4,1,NA,1,NA,NA,NA,NA +111,NA,2124,"2017",4,1,99,1,99,NA,NA,NA +111,NA,2125,"2017",5,1,99,1,99,NA,NA,NA +111,NA,2126,"2017",1,1,80,1,80,NA,NA,NA +111,NA,2126,"2017",1,1,99,3,99,99,NA,NA +111,NA,2126,"2017",1,1,60,4,60,99,NA,NA +111,NA,2126,"2017",1,1,99,2,99,80,NA,NA +111,NA,2127,"2017",3,0,60,1,40,NA,NA,NA +111,NA,2128,"2017",1,1,80,4,80,80,NA,NA +111,NA,2128,"2017",1,1,NA,2,NA,60,NA,NA +111,NA,2128,"2017",1,1,80,3,80,NA,NA,NA +111,NA,2128,"2017",1,1,60,1,60,NA,NA,NA +111,NA,2129,"2017",5,0,1,1,99,NA,NA,NA +111,NA,2130,"2017",4,1,50,1,50,NA,NA,NA +111,NA,2131,"2017",6,0,1,1,99,NA,NA,NA +111,NA,2132,"2017",1,0,56,3,44,20,NA,NA +111,NA,2132,"2017",1,0,80,2,20,NA,NA,NA +111,NA,2132,"2017",1,0,NA,1,NA,NA,NA,NA +111,NA,2132,"2017",1,0,70,4,30,44,NA,NA +111,NA,2133,"2017",6,1,99,1,99,NA,NA,NA +111,NA,2134,"2017",2,0,55,1,45,NA,NA,NA +111,NA,2135,"2017",5,1,NA,1,NA,NA,NA,NA +111,117,1,"2017",3,0,90,3,10,95,"BBC",NA +111,117,2,"2017",3,1,NA,2,NA,NA,"BBC",NA +111,117,7,"2017",4,1,80,3,80,NA,"BBC",NA +111,117,8,"2017",3,1,1,2,1,1,"BBC",NA +111,117,11,"2017",3,1,50,2,50,50,"BBC",NA +111,117,13,"2017",6,0,0,2,100,12,"BBC",NA +111,117,15,"2017",3,0,99,3,1,50,"BBC",NA +111,117,16,"2017",3,0,80,3,20,20,"BBC",NA +111,117,24,"2017",5,1,80,3,80,50,"BBC",NA +111,117,29,"2017",6,0,NA,3,NA,NA,"BBC",NA +111,117,30,"2017",5,0,NA,3,NA,NA,"BBC",NA +111,117,31,"2017",2,0,NA,3,NA,NA,"BBC",NA +111,117,32,"2017",5,0,NA,3,NA,NA,"BBC",NA +111,117,34,"2017",4,0,1,3,99,NA,"BBC",NA +111,117,35,"2017",2,0,99,2,1,1,"BBC",NA +111,117,37,"2017",3,1,99,2,99,50,"BBC",NA +111,117,38,"2017",5,0,51,2,49,49,"BBC",NA +111,117,40,"2017",6,1,98,2,98,2,"BBC",NA +111,117,41,"2017",2,0,44,2,56,78,"BBC",NA +111,117,45,"2017",3,1,22,3,22,33,"BBC",NA +111,117,46,"2017",3,0,99,2,1,99,"BBC",NA +111,117,50,"2017",5,0,12,3,88,78,"BBC",NA +111,117,51,"2017",6,0,99,2,1,50,"BBC",NA +111,117,52,"2017",2,1,NA,3,NA,40,"BBC",NA +111,117,53,"2017",2,0,90,3,10,90,"BBC",NA +111,117,54,"2017",3,0,99,2,1,NA,"BBC",NA +111,117,56,"2017",4,0,75,3,25,NA,"BBC",NA +111,117,57,"2017",2,0,65,2,35,35,"BBC",NA +111,117,60,"2017",5,1,50,2,50,99,"BBC",NA +111,117,63,"2017",6,1,99,3,99,99,"BBC",NA +111,117,64,"2017",6,1,99,2,99,99,"BBC",NA +111,117,67,"2017",5,0,1,2,99,98,"BBC",NA +111,117,69,"2017",3,0,1,3,99,99,"BBC",NA +111,117,71,"2017",6,0,99,2,1,1,"BBC",NA +111,117,76,"2017",3,1,80,3,80,99,"BBC",NA +111,117,77,"2017",3,0,1,3,99,99,"BBC",NA +111,117,78,"2017",2,1,99,3,99,99,"BBC",NA +111,117,83,"2017",4,0,60,3,40,NA,"BBC",NA +111,117,86,"2017",4,0,60,3,40,NA,"BBC",NA +111,117,87,"2017",4,0,50,3,50,NA,"BBC",NA +111,117,88,"2017",4,1,90,3,90,NA,"BBC",NA +111,117,90,"2017",3,0,99,2,1,1,"BBC",NA +111,117,91,"2017",3,1,100,2,100,0,"BBC",NA +111,117,99,"2017",2,1,99,3,99,99,"BBC",NA +111,117,101,"2017",4,0,NA,3,NA,NA,"BBC",NA +111,117,103,"2017",3,1,99,3,99,99,"BBC",NA +111,117,107,"2017",3,0,66,3,34,36,"BBC",NA +111,117,109,"2017",2,1,5,3,5,1,"BBC",NA +111,117,110,"2017",4,0,100,3,0,NA,"BBC",NA +111,117,112,"2017",3,1,50,3,50,50,"BBC",NA +111,117,121,"2017",3,1,2,2,2,1,"BBC",NA +111,117,128,"2017",2,1,99,3,99,99,"BBC",NA +111,117,134,"2017",3,0,99,2,1,1,"BBC",NA +111,117,136,"2017",3,1,50,2,50,1,"BBC",NA +111,117,137,"2017",2,1,50,2,50,50,"BBC",NA +111,117,138,"2017",2,0,99,3,1,1,"BBC",NA +111,117,139,"2017",3,1,50,2,50,1,"BBC",NA +111,117,141,"2017",4,0,99,3,1,NA,"BBC",NA +111,117,142,"2017",2,1,40,3,40,40,"BBC",NA +111,117,143,"2017",2,1,12,2,12,22,"BBC",NA +111,117,1171,"2017",6,1,0,2,0,0,"BBC",NA +111,117,1176,"2017",5,0,100,3,0,0,"BBC",NA +111,117,1181,"2017",6,0,70,2,30,30,"BBC",NA +111,117,1182,"2017",3,0,20,2,80,80,"BBC",NA +111,117,1183,"2017",3,0,20,2,80,50,"BBC",NA +111,117,1184,"2017",3,1,99,3,99,99,"BBC",NA +111,117,1185,"2017",5,0,50,3,50,30,"BBC",NA +111,117,1188,"2017",6,0,60,2,40,50,"BBC",NA +111,117,1191,"2017",2,1,NA,2,NA,NA,"BBC",NA +111,117,1194,"2017",6,1,50,2,50,30,"BBC",NA +111,117,1198,"2017",5,1,20,2,20,40,"BBC",NA +111,117,1200,"2017",3,0,70,3,30,50,"BBC",NA +111,117,1202,"2017",2,1,55,2,55,13,"BBC",NA +111,117,1203,"2017",2,1,60,2,60,50,"BBC",NA +111,117,1204,"2017",3,0,1,3,99,85,"BBC",NA +111,117,1205,"2017",3,0,35,3,65,50,"BBC",NA +111,117,1206,"2017",5,0,30,2,70,70,"BBC",NA +111,117,1210,"2017",2,0,30,3,70,60,"BBC",NA +111,117,1212,"2017",6,1,30,2,30,40,"BBC",NA +111,117,1224,"2017",6,1,50,3,50,99,"BBC",NA +111,117,1230,"2017",2,0,2,2,98,1,"BBC",NA +111,117,1234,"2017",6,0,90,2,10,60,"BBC",NA +111,117,1241,"2017",3,1,99,2,99,50,"BBC",NA +111,117,1242,"2017",4,1,99,3,99,NA,"BBC",NA +111,117,1244,"2017",4,0,50,3,50,NA,"BBC",NA +111,117,1247,"2017",5,1,99,2,99,99,"BBC",NA +111,117,1251,"2017",5,1,99,2,99,99,"BBC",NA +111,117,1253,"2017",5,0,99,2,1,1,"BBC",NA +111,117,1254,"2017",2,1,50,3,50,NA,"BBC",NA +111,117,1255,"2017",5,0,99,3,1,NA,"BBC",NA +111,117,1256,"2017",3,1,50,3,50,50,"BBC",NA +111,117,1257,"2017",6,0,99,3,1,1,"BBC",NA +111,117,1259,"2017",6,1,98,3,98,98,"BBC",NA +111,117,1261,"2017",3,1,2,2,2,1,"BBC",NA +111,117,1262,"2017",5,1,50,3,50,NA,"BBC",NA +111,117,1266,"2017",3,0,1,2,99,1,"BBC",NA +111,117,1267,"2017",5,1,99,2,99,1,"BBC",NA +111,117,1268,"2017",6,0,99,3,1,1,"BBC",NA +111,117,1270,"2017",5,1,80,3,80,80,"BBC",NA +111,117,1272,"2017",2,0,55,3,45,45,"BBC",NA +111,117,1280,"2017",6,0,1,2,99,1,"BBC",NA +111,117,1290,"2017",2,1,100,2,100,100,"BBC",NA +111,117,1294,"2017",3,0,99,2,1,99,"BBC",NA +111,117,1295,"2017",6,0,NA,3,NA,50,"BBC",NA +111,117,1296,"2017",5,0,66,2,34,34,"BBC",NA +111,117,1297,"2017",2,0,70,3,30,50,"BBC",NA +111,117,1300,"2017",6,0,100,2,0,0,"BBC",NA +111,117,1303,"2017",2,0,3,3,97,95,"BBC",NA +111,117,1305,"2017",6,0,50,2,50,50,"BBC",NA +111,117,1307,"2017",2,1,45,2,45,NA,"BBC",NA +111,117,1309,"2017",6,1,100,3,100,12,"BBC",NA +111,117,1310,"2017",2,0,NA,2,NA,50,"BBC",NA +111,117,1314,"2017",2,0,1,3,99,50,"BBC",NA +111,117,1317,"2017",3,1,99,3,99,50,"BBC",NA +111,117,1320,"2017",5,1,99,3,99,99,"BBC",NA +111,117,1325,"2017",3,0,10,2,90,14,"BBC",NA +111,117,1328,"2017",3,0,90,2,10,99,"BBC",NA +111,117,1329,"2017",2,1,48,3,48,NA,"BBC",NA +111,117,1331,"2017",6,1,99,3,99,1,"BBC",NA +111,117,1334,"2017",5,0,99,2,1,50,"BBC",NA +111,117,1335,"2017",3,1,40,3,40,40,"BBC",NA +111,117,1337,"2017",3,1,50,3,50,50,"BBC",NA +111,117,1340,"2017",5,0,50,3,50,50,"BBC",NA +111,117,1342,"2017",3,1,90,2,90,50,"BBC",NA +111,117,1346,"2017",3,0,NA,3,NA,1,"BBC",NA +111,117,1349,"2017",3,0,50,2,50,50,"BBC",NA +111,117,1350,"2017",6,1,40,3,40,40,"BBC",NA +111,117,1363,"2017",3,0,100,3,0,0,"BBC",NA +111,117,1364,"2017",3,1,99,3,99,99,"BBC",NA +111,117,1366,"2017",5,0,99,3,1,1,"BBC",NA +111,117,1369,"2017",3,1,50,2,50,50,"BBC",NA +111,117,1370,"2017",3,1,99,2,99,99,"BBC",NA +111,117,1371,"2017",6,0,99,3,1,50,"BBC",NA +111,117,1373,"2017",5,0,50,2,50,50,"BBC",NA +111,117,1376,"2017",3,1,99,2,99,52,"BBC",NA +111,117,1384,"2017",6,0,82,2,18,19,"BBC",NA +111,117,1385,"2017",3,0,85,3,15,10,"BBC",NA +111,117,1386,"2017",3,0,99,2,1,1,"BBC",NA +111,117,1387,"2017",6,0,99,3,1,1,"BBC",NA +111,117,1389,"2017",5,1,50,2,50,50,"BBC",NA +111,117,1393,"2017",6,1,99,2,99,99,"BBC",NA +111,117,1394,"2017",6,1,50,3,50,99,"BBC",NA +111,117,1395,"2017",6,1,79,3,79,79,"BBC",NA +111,117,1396,"2017",5,1,99,3,99,99,"BBC",NA +111,117,1399,"2017",5,0,90,3,10,10,"BBC",NA +111,117,1402,"2017",2,0,90,2,10,10,"BBC",NA +111,117,1409,"2017",3,1,60,2,60,70,"BBC",NA +111,117,1413,"2017",6,0,1,2,99,99,"BBC",NA +111,117,1415,"2017",6,1,1,3,1,1,"BBC",NA +111,117,1416,"2017",2,1,99,3,99,99,"BBC",NA +111,117,1419,"2017",3,0,99,2,1,1,"BBC",NA +111,117,1420,"2017",3,1,1,3,1,1,"BBC",NA +111,117,1421,"2017",6,1,99,2,99,99,"BBC",NA +111,117,1422,"2017",3,1,80,3,80,10,"BBC",NA +111,117,1423,"2017",2,1,50,2,50,75,"BBC",NA +111,117,1434,"2017",3,1,99,3,99,1,"BBC",NA +111,117,1437,"2017",3,0,1,2,99,10,"BBC",NA +111,117,1443,"2017",3,1,99,3,99,99,"BBC",NA +111,117,1444,"2017",6,0,20,3,80,50,"BBC",NA +111,117,1451,"2017",3,0,58,2,42,50,"BBC",NA +111,117,1452,"2017",2,1,99,3,99,1,"BBC",NA +111,117,1457,"2017",2,1,99,3,99,50,"BBC",NA +111,117,1458,"2017",5,0,50,2,50,1,"BBC",NA +111,117,1468,"2017",3,0,50,2,50,50,"BBC",NA +111,117,1472,"2017",3,1,80,3,80,50,"BBC",NA +111,117,1477,"2017",3,0,50,3,50,50,"BBC",NA +111,117,1480,"2017",2,0,NA,3,NA,1,"BBC",NA +111,117,1482,"2017",6,1,32,3,32,10,"BBC",NA +111,117,1485,"2017",6,0,88,3,12,12,"BBC",NA +111,117,1487,"2017",3,0,50,2,50,50,"BBC",NA +111,117,1492,"2017",4,1,91,3,91,NA,"BBC",NA +111,117,1493,"2017",5,0,99,3,1,1,"BBC",NA +111,117,1494,"2017",3,1,99,2,99,99,"BBC",NA +111,117,1502,"2017",5,1,99,3,99,50,"BBC",NA +111,117,1509,"2017",2,0,90,3,10,25,"BBC",NA +111,117,1510,"2017",2,0,50,2,50,40,"BBC",NA +111,117,1511,"2017",3,0,1,3,99,99,"BBC",NA +111,117,1516,"2017",6,1,50,2,50,50,"BBC",NA +111,117,1517,"2017",6,1,90,2,90,99,"BBC",NA +111,117,1518,"2017",2,1,50,3,50,99,"BBC",NA +111,117,1520,"2017",6,0,1,2,99,50,"BBC",NA +111,117,1521,"2017",4,1,99,3,99,NA,"BBC",NA +111,117,1522,"2017",6,0,90,2,10,50,"BBC",NA +111,117,1526,"2017",2,0,99,2,1,50,"BBC",NA +111,117,1529,"2017",3,0,99,2,1,50,"BBC",NA +111,117,1531,"2017",5,1,1,3,1,1,"BBC",NA +111,117,1534,"2017",4,0,60,3,40,NA,"BBC",NA +111,117,1537,"2017",2,0,99,2,1,1,"BBC",NA +111,117,1541,"2017",6,1,99,2,99,99,"BBC",NA +111,117,1543,"2017",3,0,80,2,20,50,"BBC",NA +111,117,1548,"2017",2,1,99,3,99,99,"BBC",NA +111,117,1549,"2017",3,1,50,2,50,99,"BBC",NA +111,117,1550,"2017",5,0,99,2,1,99,"BBC",NA +111,117,1551,"2017",4,1,50,3,50,NA,"BBC",NA +111,117,1552,"2017",3,0,99,3,1,1,"BBC",NA +111,117,1556,"2017",3,0,99,3,1,1,"BBC",NA +111,117,1558,"2017",2,1,99,3,99,50,"BBC",NA +111,117,1559,"2017",2,1,1,3,1,1,"BBC",NA +111,117,1560,"2017",3,1,99,3,99,99,"BBC",NA +111,117,1566,"2017",6,0,99,3,1,99,"BBC",NA +111,117,1573,"2017",2,1,99,3,99,99,"BBC",NA +111,117,1576,"2017",5,0,99,3,1,1,"BBC",NA +111,117,1582,"2017",2,1,1,3,1,1,"BBC",NA +111,117,1583,"2017",6,1,80,3,80,80,"BBC",NA +111,117,1588,"2017",3,0,10,3,90,70,"BBC",NA +111,117,1590,"2017",6,1,80,2,80,40,"BBC",NA +111,117,1593,"2017",2,1,NA,3,NA,NA,"BBC",NA +111,117,1594,"2017",6,1,50,3,50,NA,"BBC",NA +111,117,1595,"2017",6,1,99,3,99,99,"BBC",NA +111,117,1601,"2017",3,0,90,2,10,10,"BBC",NA +111,117,1602,"2017",3,1,NA,2,NA,1,"BBC",NA +111,117,1603,"2017",6,1,NA,2,NA,NA,"BBC",NA +111,117,1606,"2017",2,0,50,2,50,50,"BBC",NA +111,117,1608,"2017",5,1,99,2,99,99,"BBC",NA +111,117,1609,"2017",3,1,99,3,99,99,"BBC",NA +111,117,1610,"2017",5,0,99,2,1,1,"BBC",NA +111,117,1611,"2017",6,1,NA,3,NA,99,"BBC",NA +111,117,1613,"2017",6,0,50,2,50,50,"BBC",NA +111,117,1614,"2017",3,0,NA,3,NA,NA,"BBC",NA +111,117,1616,"2017",6,1,99,2,99,99,"BBC",NA +111,117,1627,"2017",3,0,30,2,70,40,"BBC",NA +111,117,1630,"2017",3,1,85,2,85,80,"BBC",NA +111,117,1631,"2017",6,1,59,2,59,5,"BBC",NA +111,117,1632,"2017",2,0,50,3,50,50,"BBC",NA +111,117,1637,"2017",2,0,90,2,10,10,"BBC",NA +111,117,1639,"2017",3,1,99,2,99,99,"BBC",NA +111,117,1643,"2017",2,0,50,3,50,50,"BBC",NA +111,117,1644,"2017",2,0,99,3,1,1,"BBC",NA +111,117,1647,"2017",6,1,NA,2,NA,1,"BBC",NA +111,117,1649,"2017",5,0,99,2,1,1,"BBC",NA +111,117,1654,"2017",2,0,99,2,1,1,"BBC",NA +111,117,1656,"2017",2,1,80,2,80,80,"BBC",NA +111,117,1657,"2017",2,0,99,2,1,99,"BBC",NA +111,117,1661,"2017",3,1,50,3,50,50,"BBC",NA +111,117,1664,"2017",2,0,99,3,1,99,"BBC",NA +111,117,1665,"2017",3,0,20,3,80,92,"BBC",NA +111,117,1670,"2017",2,0,50,3,50,50,"BBC",NA +111,117,1674,"2017",5,0,90,2,10,NA,"BBC",NA +111,117,1675,"2017",5,1,99,2,99,1,"BBC",NA +111,117,1676,"2017",6,1,88,2,88,98,"BBC",NA +111,117,1677,"2017",2,0,50,3,50,50,"BBC",NA +111,117,1682,"2017",5,0,90,2,10,10,"BBC",NA +111,117,1689,"2017",3,0,99,3,1,1,"BBC",NA +111,117,1694,"2017",3,0,99,3,1,50,"BBC",NA +111,117,1695,"2017",3,0,99,2,1,1,"BBC",NA +111,117,1696,"2017",2,1,80,3,80,90,"BBC",NA +111,117,1698,"2017",6,0,80,3,20,25,"BBC",NA +111,117,1700,"2017",5,1,2,2,2,2,"BBC",NA +111,117,1704,"2017",3,1,0,2,0,10,"BBC",NA +111,117,1708,"2017",6,0,50,3,50,60,"BBC",NA +111,117,1709,"2017",6,1,99,2,99,99,"BBC",NA +111,117,1713,"2017",6,0,99,3,1,1,"BBC",NA +111,117,1715,"2017",6,0,22,3,78,78,"BBC",NA +111,117,1718,"2017",3,1,99,2,99,98,"BBC",NA +111,117,1721,"2017",5,1,99,3,99,99,"BBC",NA +111,117,1723,"2017",6,0,99,2,1,99,"BBC",NA +111,117,1725,"2017",2,0,50,2,50,50,"BBC",NA +111,117,1726,"2017",6,1,66,3,66,55,"BBC",NA +111,117,1730,"2017",5,1,1,3,1,1,"BBC",NA +111,117,1731,"2017",5,0,69,2,31,75,"BBC",NA +111,117,1733,"2017",6,1,NA,2,NA,85,"BBC",NA +111,117,1734,"2017",2,1,30,3,30,20,"BBC",NA +111,117,1736,"2017",3,1,1,3,1,20,"BBC",NA +111,117,1738,"2017",4,0,60,3,40,NA,"BBC",NA +111,117,1740,"2017",6,0,99,2,1,1,"BBC",NA +111,117,1742,"2017",2,0,99,3,1,1,"BBC",NA +111,117,1745,"2017",5,0,50,2,50,50,"BBC",NA +111,117,1747,"2017",5,1,99,2,99,99,"BBC",NA +111,117,1748,"2017",3,1,99,3,99,0,"BBC",NA +111,117,1751,"2017",4,0,1,3,99,NA,"BBC",NA +111,117,1752,"2017",2,0,99,3,1,1,"BBC",NA +111,117,1759,"2017",2,0,12,2,88,68,"BBC",NA +111,117,1761,"2017",5,1,29,3,29,38,"BBC",NA +111,117,1765,"2017",2,0,99,3,1,50,"BBC",NA +111,117,1768,"2017",5,0,50,3,50,1,"BBC",NA +111,117,1773,"2017",6,0,NA,2,NA,NA,"BBC",NA +111,117,1776,"2017",3,0,98,2,2,12,"BBC",NA +111,117,1778,"2017",4,0,79,3,21,NA,"BBC",NA +111,117,1779,"2017",2,0,85,3,15,17,"BBC",NA +111,117,1780,"2017",3,0,95,3,5,3,"BBC",NA +111,117,1783,"2017",2,1,50,3,50,99,"BBC",NA +111,117,1784,"2017",5,0,85,3,15,16,"BBC",NA +111,117,1786,"2017",3,1,96,3,96,76,"BBC",NA +111,117,1788,"2017",6,1,69,2,69,94,"BBC",NA +111,117,1791,"2017",5,0,22,3,78,32,"BBC",NA +111,117,1793,"2017",3,1,91,3,91,85,"BBC",NA +111,117,1799,"2017",5,1,NA,3,NA,NA,"BBC",NA +111,117,1802,"2017",6,1,97,2,97,85,"BBC",NA +111,117,1804,"2017",5,1,NA,2,NA,NA,"BBC",NA +111,117,1805,"2017",6,0,NA,3,NA,21,"BBC",NA +111,117,1806,"2017",6,1,49,3,49,41,"BBC",NA +111,117,1807,"2017",2,1,99,3,99,99,"BBC",NA +111,117,1808,"2017",5,0,99,2,1,1,"BBC",NA +111,117,1816,"2017",5,1,80,2,80,70,"BBC",NA +111,117,1819,"2017",4,1,70,3,70,NA,"BBC",NA +111,117,1820,"2017",6,0,1,3,99,80,"BBC",NA +111,117,1823,"2017",5,1,90,2,90,60,"BBC",NA +111,117,1825,"2017",3,0,99,2,1,99,"BBC",NA +111,117,1831,"2017",3,0,50,3,50,50,"BBC",NA +111,117,1836,"2017",6,1,80,2,80,70,"BBC",NA +111,117,1841,"2017",3,0,99,3,1,50,"BBC",NA +111,117,1843,"2017",5,0,1,2,99,1,"BBC",NA +111,117,1845,"2017",2,1,99,2,99,80,"BBC",NA +111,117,1848,"2017",5,0,1,3,99,50,"BBC",NA +111,117,1850,"2017",2,1,99,3,99,99,"BBC",NA +111,117,1851,"2017",3,1,50,3,50,1,"BBC",NA +111,117,1853,"2017",5,1,99,2,99,99,"BBC",NA +111,117,1855,"2017",3,1,1,3,1,99,"BBC",NA +111,117,1858,"2017",5,1,99,3,99,50,"BBC",NA +111,117,1862,"2017",5,0,1,3,99,99,"BBC",NA +111,117,1865,"2017",4,1,70,3,70,NA,"BBC",NA +111,117,1866,"2017",2,0,99,3,1,99,"BBC",NA +111,117,1871,"2017",3,1,99,2,99,99,"BBC",NA +111,117,1873,"2017",2,1,60,3,60,70,"BBC",NA +111,117,1874,"2017",5,0,1,2,99,99,"BBC",NA +111,117,1877,"2017",3,1,99,2,99,99,"BBC",NA +111,117,1879,"2017",4,1,90,3,90,NA,"BBC",NA +111,117,1880,"2017",2,1,99,3,99,1,"BBC",NA +111,117,1882,"2017",2,1,99,2,99,99,"BBC",NA +111,117,1884,"2017",5,1,1,3,1,1,"BBC",NA +111,117,1892,"2017",3,1,99,2,99,80,"BBC",NA +111,117,1893,"2017",2,1,50,2,50,1,"BBC",NA +111,117,1899,"2017",3,1,50,2,50,50,"BBC",NA +111,117,1901,"2017",5,0,80,3,20,10,"BBC",NA +111,117,1904,"2017",5,0,50,2,50,50,"BBC",NA +111,117,1908,"2017",2,1,99,3,99,1,"BBC",NA +111,117,1910,"2017",6,0,99,2,1,50,"BBC",NA +111,117,1918,"2017",3,0,99,2,1,1,"BBC",NA +111,117,1920,"2017",5,0,99,3,1,1,"BBC",NA +111,117,1922,"2017",2,1,50,2,50,1,"BBC",NA +111,117,1923,"2017",6,1,99,2,99,50,"BBC",NA +111,117,1925,"2017",5,0,99,3,1,1,"BBC",NA +111,117,1932,"2017",2,0,50,2,50,99,"BBC",NA +111,117,1933,"2017",3,0,50,2,50,30,"BBC",NA +111,117,1934,"2017",6,0,50,3,50,50,"BBC",NA +111,117,1935,"2017",2,1,99,2,99,99,"BBC",NA +111,117,1940,"2017",3,1,99,3,99,99,"BBC",NA +111,117,1945,"2017",5,0,99,2,1,1,"BBC",NA +111,117,1949,"2017",2,1,99,3,99,99,"BBC",NA +111,117,1950,"2017",6,0,99,2,1,1,"BBC",NA +111,117,1954,"2017",3,0,1,3,99,99,"BBC",NA +111,117,1960,"2017",3,1,99,3,99,99,"BBC",NA +111,117,1962,"2017",5,1,80,3,80,80,"BBC",NA +111,117,1963,"2017",5,0,99,3,1,1,"BBC",NA +111,117,1968,"2017",3,0,99,3,1,1,"BBC",NA +111,117,1972,"2017",3,0,1,3,99,99,"BBC",NA +111,117,1974,"2017",6,0,99,2,1,50,"BBC",NA +111,117,1976,"2017",2,1,80,3,80,NA,"BBC",NA +111,117,1978,"2017",6,1,99,2,99,50,"BBC",NA +111,117,1979,"2017",6,0,1,2,99,1,"BBC",NA +111,117,1982,"2017",5,0,99,3,1,NA,"BBC",NA +111,117,1983,"2017",2,1,70,2,70,90,"BBC",NA +111,117,1988,"2017",3,0,90,3,10,15,"BBC",NA +111,117,1990,"2017",3,1,50,3,50,50,"BBC",NA +111,117,1991,"2017",2,1,1,2,1,50,"BBC",NA +111,117,1993,"2017",2,1,88,2,88,1,"BBC",NA +111,117,1996,"2017",5,0,1,2,99,99,"BBC",NA +111,117,2003,"2017",3,0,50,3,50,50,"BBC",NA +111,117,2004,"2017",5,0,80,2,20,99,"BBC",NA +111,117,2005,"2017",5,0,1,2,99,99,"BBC",NA +111,117,2006,"2017",5,0,80,2,20,10,"BBC",NA +111,117,2009,"2017",5,0,10,3,90,87,"BBC",NA +111,117,2011,"2017",6,1,55,2,55,35,"BBC",NA +111,117,2016,"2017",3,0,1,3,99,1,"BBC",NA +111,117,2023,"2017",5,1,50,2,50,50,"BBC",NA +111,117,2024,"2017",6,0,50,2,50,50,"BBC",NA +111,117,2028,"2017",3,0,80,3,20,10,"BBC",NA +111,117,2031,"2017",2,0,50,2,50,1,"BBC",NA +111,117,2033,"2017",3,1,99,2,99,99,"BBC",NA +111,117,2035,"2017",5,0,90,2,10,90,"BBC",NA +111,117,2039,"2017",2,1,99,3,99,99,"BBC",NA +111,117,2040,"2017",5,1,80,2,80,80,"BBC",NA +111,117,2045,"2017",5,0,90,3,10,10,"BBC",NA +111,117,2050,"2017",2,0,99,2,1,1,"BBC",NA +111,117,2055,"2017",5,0,99,2,1,40,"BBC",NA +111,117,2058,"2017",4,1,70,3,70,NA,"BBC",NA +111,117,2064,"2017",5,0,99,3,1,99,"BBC",NA +111,117,2066,"2017",2,0,NA,3,NA,NA,"BBC",NA +111,117,2069,"2017",3,0,99,3,1,1,"BBC",NA +111,117,2070,"2017",6,1,99,2,99,99,"BBC",NA +111,117,2075,"2017",2,0,50,3,50,99,"BBC",NA +111,117,2077,"2017",5,1,99,3,99,99,"BBC",NA +111,117,2080,"2017",5,1,80,2,80,80,"BBC",NA +111,117,2082,"2017",6,1,99,2,99,99,"BBC",NA +111,117,2083,"2017",3,0,99,3,1,40,"BBC",NA +111,117,2088,"2017",3,0,65,2,35,45,"BBC",NA +111,117,2093,"2017",4,1,40,3,40,NA,"BBC",NA +111,117,2096,"2017",2,0,1,3,99,1,"BBC",NA +111,117,2097,"2017",5,0,99,3,1,NA,"BBC",NA +111,117,2098,"2017",2,1,50,2,50,50,"BBC",NA +111,117,2106,"2017",2,1,99,2,99,99,"BBC",NA +111,117,2108,"2017",5,1,99,2,99,1,"BBC",NA +111,117,2109,"2017",2,1,99,3,99,99,"BBC",NA +111,117,2111,"2017",5,0,10,3,90,10,"BBC",NA +111,117,2113,"2017",2,0,99,3,1,1,"BBC",NA +111,117,2116,"2017",3,1,80,2,80,99,"BBC",NA +111,117,2120,"2017",3,0,80,2,20,20,"BBC",NA +111,117,2131,"2017",6,0,1,2,99,99,"BBC",NA +111,130,3,"2017",6,0,NA,2,NA,NA,"Huanqiu",NA +111,130,4,"2017",6,0,NA,2,NA,NA,"Huanqiu",NA +111,130,5,"2017",2,0,NA,2,NA,NA,"Huanqiu",NA +111,130,8,"2017",3,1,99,3,99,1,"Huanqiu",NA +111,130,12,"2017",6,0,99,2,1,1,"Huanqiu",NA +111,130,15,"2017",3,0,50,2,50,50,"Huanqiu",NA +111,130,16,"2017",3,0,80,2,20,50,"Huanqiu",NA +111,130,18,"2017",5,1,99,3,99,NA,"Huanqiu",NA +111,130,20,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,25,"2017",5,1,99,2,99,99,"Huanqiu",NA +111,130,27,"2017",6,0,20,3,80,10,"Huanqiu",NA +111,130,33,"2017",5,1,1,2,1,1,"Huanqiu",NA +111,130,39,"2017",4,0,40,5,60,NA,"Huanqiu",NA +111,130,40,"2017",6,1,98,3,98,98,"Huanqiu",NA +111,130,41,"2017",2,0,33,3,67,56,"Huanqiu",NA +111,130,43,"2017",5,0,99,2,1,99,"Huanqiu",NA +111,130,44,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,46,"2017",3,0,80,3,20,1,"Huanqiu",NA +111,130,47,"2017",5,0,NA,3,NA,NA,"Huanqiu",NA +111,130,49,"2017",2,0,16,3,84,80,"Huanqiu",NA +111,130,54,"2017",3,0,1,3,99,1,"Huanqiu",NA +111,130,57,"2017",2,0,70,3,30,35,"Huanqiu",NA +111,130,59,"2017",6,1,80,3,80,80,"Huanqiu",NA +111,130,61,"2017",2,1,1,3,1,1,"Huanqiu",NA +111,130,62,"2017",2,1,50,3,50,1,"Huanqiu",NA +111,130,66,"2017",2,1,55,2,55,50,"Huanqiu",NA +111,130,68,"2017",5,0,50,3,50,1,"Huanqiu",NA +111,130,69,"2017",3,0,1,2,99,99,"Huanqiu",NA +111,130,70,"2017",4,1,80,5,80,NA,"Huanqiu",NA +111,130,72,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,74,"2017",4,1,20,5,20,NA,"Huanqiu",NA +111,130,76,"2017",3,1,99,2,99,80,"Huanqiu",NA +111,130,78,"2017",2,1,99,2,99,99,"Huanqiu",NA +111,130,79,"2017",2,1,99,2,99,99,"Huanqiu",NA +111,130,80,"2017",2,1,50,3,50,99,"Huanqiu",NA +111,130,82,"2017",3,0,90,2,10,10,"Huanqiu",NA +111,130,89,"2017",2,0,70,2,30,50,"Huanqiu",NA +111,130,92,"2017",3,1,99,2,99,99,"Huanqiu",NA +111,130,93,"2017",2,1,1,2,1,99,"Huanqiu",NA +111,130,94,"2017",3,0,100,2,0,0,"Huanqiu",NA +111,130,104,"2017",3,1,50,2,50,50,"Huanqiu",NA +111,130,107,"2017",3,0,64,2,36,66,"Huanqiu",NA +111,130,113,"2017",2,1,60,3,60,60,"Huanqiu",NA +111,130,116,"2017",2,1,50,2,50,50,"Huanqiu",NA +111,130,121,"2017",3,1,2,3,2,2,"Huanqiu",NA +111,130,122,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,123,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,126,"2017",3,1,1,3,1,99,"Huanqiu",NA +111,130,130,"2017",2,0,50,3,50,1,"Huanqiu",NA +111,130,134,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,136,"2017",3,1,99,3,99,50,"Huanqiu",NA +111,130,137,"2017",2,1,50,3,50,50,"Huanqiu",NA +111,130,139,"2017",3,1,50,3,50,50,"Huanqiu",NA +111,130,1171,"2017",6,1,0,3,0,0,"Huanqiu",NA +111,130,1174,"2017",5,1,0,3,0,0,"Huanqiu",NA +111,130,1175,"2017",6,0,50,2,50,50,"Huanqiu",NA +111,130,1180,"2017",4,1,60,5,60,NA,"Huanqiu",NA +111,130,1181,"2017",6,0,50,3,50,30,"Huanqiu",NA +111,130,1183,"2017",3,0,10,3,90,80,"Huanqiu",NA +111,130,1184,"2017",3,1,99,2,99,99,"Huanqiu",NA +111,130,1186,"2017",2,1,70,2,70,50,"Huanqiu",NA +111,130,1188,"2017",6,0,60,3,40,40,"Huanqiu",NA +111,130,1193,"2017",5,1,70,2,70,50,"Huanqiu",NA +111,130,1194,"2017",6,1,60,3,60,50,"Huanqiu",NA +111,130,1196,"2017",5,1,99,2,99,99,"Huanqiu",NA +111,130,1199,"2017",3,0,100,2,0,0,"Huanqiu",NA +111,130,1200,"2017",3,0,50,2,50,50,"Huanqiu",NA +111,130,1201,"2017",3,0,99,2,1,99,"Huanqiu",NA +111,130,1202,"2017",2,1,99,3,99,55,"Huanqiu",NA +111,130,1205,"2017",3,0,50,2,50,50,"Huanqiu",NA +111,130,1207,"2017",5,0,50,2,50,1,"Huanqiu",NA +111,130,1208,"2017",2,0,50,2,50,10,"Huanqiu",NA +111,130,1211,"2017",5,0,40,2,60,40,"Huanqiu",NA +111,130,1212,"2017",6,1,20,3,20,30,"Huanqiu",NA +111,130,1214,"2017",3,1,0,3,0,1,"Huanqiu",NA +111,130,1216,"2017",3,0,30,2,70,60,"Huanqiu",NA +111,130,1217,"2017",3,0,1,2,99,50,"Huanqiu",NA +111,130,1219,"2017",2,1,9,3,9,99,"Huanqiu",NA +111,130,1222,"2017",3,0,50,3,50,99,"Huanqiu",NA +111,130,1227,"2017",4,0,70,5,30,NA,"Huanqiu",NA +111,130,1228,"2017",2,1,50,2,50,1,"Huanqiu",NA +111,130,1232,"2017",3,0,1,3,99,99,"Huanqiu",NA +111,130,1233,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,1236,"2017",6,1,99,2,99,99,"Huanqiu",NA +111,130,1237,"2017",2,0,43,2,57,40,"Huanqiu",NA +111,130,1240,"2017",3,0,1,2,99,99,"Huanqiu",NA +111,130,1245,"2017",2,1,0,3,0,0,"Huanqiu",NA +111,130,1247,"2017",5,1,99,3,99,99,"Huanqiu",NA +111,130,1248,"2017",3,1,25,3,25,20,"Huanqiu",NA +111,130,1251,"2017",5,1,NA,3,NA,99,"Huanqiu",NA +111,130,1252,"2017",3,1,99,3,99,NA,"Huanqiu",NA +111,130,1253,"2017",5,0,99,3,1,1,"Huanqiu",NA +111,130,1257,"2017",6,0,99,2,1,1,"Huanqiu",NA +111,130,1258,"2017",4,0,1,5,99,NA,"Huanqiu",NA +111,130,1260,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,1262,"2017",5,1,NA,2,NA,50,"Huanqiu",NA +111,130,1263,"2017",5,1,65,2,65,60,"Huanqiu",NA +111,130,1265,"2017",2,1,1,3,1,1,"Huanqiu",NA +111,130,1272,"2017",2,0,55,2,45,42,"Huanqiu",NA +111,130,1273,"2017",3,0,1,3,99,10,"Huanqiu",NA +111,130,1274,"2017",2,1,1,2,1,1,"Huanqiu",NA +111,130,1278,"2017",6,0,20,3,80,60,"Huanqiu",NA +111,130,1286,"2017",2,0,99,3,1,1,"Huanqiu",NA +111,130,1291,"2017",3,1,99,2,99,99,"Huanqiu",NA +111,130,1292,"2017",2,1,50,3,50,50,"Huanqiu",NA +111,130,1294,"2017",3,0,50,3,50,1,"Huanqiu",NA +111,130,1297,"2017",2,0,50,2,50,30,"Huanqiu",NA +111,130,1300,"2017",6,0,100,3,0,0,"Huanqiu",NA +111,130,1302,"2017",2,0,1,2,99,99,"Huanqiu",NA +111,130,1303,"2017",2,0,5,2,95,99,"Huanqiu",NA +111,130,1304,"2017",2,1,50,2,50,99,"Huanqiu",NA +111,130,1306,"2017",5,0,NA,3,NA,1,"Huanqiu",NA +111,130,1307,"2017",2,1,50,3,50,45,"Huanqiu",NA +111,130,1310,"2017",2,0,NA,3,NA,NA,"Huanqiu",NA +111,130,1311,"2017",2,0,50,2,50,50,"Huanqiu",NA +111,130,1313,"2017",3,1,30,2,30,40,"Huanqiu",NA +111,130,1314,"2017",2,0,50,2,50,50,"Huanqiu",NA +111,130,1315,"2017",6,0,100,3,0,0,"Huanqiu",NA +111,130,1318,"2017",6,0,99,2,1,1,"Huanqiu",NA +111,130,1319,"2017",2,0,99,3,1,99,"Huanqiu",NA +111,130,1320,"2017",5,1,99,2,99,50,"Huanqiu",NA +111,130,1323,"2017",3,1,99,3,99,99,"Huanqiu",NA +111,130,1324,"2017",5,1,80,3,80,20,"Huanqiu",NA +111,130,1325,"2017",3,0,1,3,99,90,"Huanqiu",NA +111,130,1326,"2017",4,1,50,5,50,NA,"Huanqiu",NA +111,130,1330,"2017",4,1,50,5,50,NA,"Huanqiu",NA +111,130,1331,"2017",6,1,1,2,1,1,"Huanqiu",NA +111,130,1337,"2017",3,1,50,2,50,1,"Huanqiu",NA +111,130,1348,"2017",6,1,1,3,1,20,"Huanqiu",NA +111,130,1349,"2017",3,0,50,3,50,50,"Huanqiu",NA +111,130,1352,"2017",5,0,99,3,1,99,"Huanqiu",NA +111,130,1353,"2017",5,1,99,3,99,1,"Huanqiu",NA +111,130,1355,"2017",3,0,99,2,1,91,"Huanqiu",NA +111,130,1357,"2017",5,0,65,3,35,40,"Huanqiu",NA +111,130,1366,"2017",5,0,99,2,1,99,"Huanqiu",NA +111,130,1367,"2017",2,1,1,3,1,1,"Huanqiu",NA +111,130,1369,"2017",3,1,50,3,50,50,"Huanqiu",NA +111,130,1371,"2017",6,0,50,2,50,50,"Huanqiu",NA +111,130,1372,"2017",4,0,14,5,86,NA,"Huanqiu",NA +111,130,1374,"2017",6,0,99,2,1,1,"Huanqiu",NA +111,130,1380,"2017",6,0,50,3,50,99,"Huanqiu",NA +111,130,1382,"2017",4,1,50,5,50,NA,"Huanqiu",NA +111,130,1383,"2017",6,0,99,2,1,1,"Huanqiu",NA +111,130,1390,"2017",5,1,80,2,80,70,"Huanqiu",NA +111,130,1391,"2017",5,0,99,2,1,1,"Huanqiu",NA +111,130,1395,"2017",6,1,79,2,79,79,"Huanqiu",NA +111,130,1396,"2017",5,1,99,2,99,99,"Huanqiu",NA +111,130,1405,"2017",2,0,99,3,1,1,"Huanqiu",NA +111,130,1406,"2017",2,0,99,2,1,1,"Huanqiu",NA +111,130,1411,"2017",5,0,1,3,99,1,"Huanqiu",NA +111,130,1417,"2017",5,0,45,2,55,60,"Huanqiu",NA +111,130,1418,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,1419,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,1421,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,1429,"2017",6,0,99,3,1,1,"Huanqiu",NA +111,130,1432,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1433,"2017",2,0,80,2,20,30,"Huanqiu",NA +111,130,1435,"2017",3,0,99,2,1,1,"Huanqiu",NA +111,130,1443,"2017",3,1,99,2,99,99,"Huanqiu",NA +111,130,1445,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1449,"2017",6,0,99,2,1,50,"Huanqiu",NA +111,130,1454,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,1456,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,1458,"2017",5,0,99,3,1,50,"Huanqiu",NA +111,130,1461,"2017",3,1,50,2,50,50,"Huanqiu",NA +111,130,1463,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,1467,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,1472,"2017",3,1,50,2,50,99,"Huanqiu",NA +111,130,1473,"2017",6,0,99,3,1,40,"Huanqiu",NA +111,130,1474,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1483,"2017",5,1,99,2,99,99,"Huanqiu",NA +111,130,1488,"2017",5,0,99,3,1,1,"Huanqiu",NA +111,130,1490,"2017",6,1,50,2,50,50,"Huanqiu",NA +111,130,1491,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1494,"2017",3,1,99,3,99,99,"Huanqiu",NA +111,130,1495,"2017",5,0,99,2,1,99,"Huanqiu",NA +111,130,1499,"2017",4,0,60,5,40,NA,"Huanqiu",NA +111,130,1500,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1501,"2017",5,0,99,2,1,1,"Huanqiu",NA +111,130,1502,"2017",5,1,50,2,50,99,"Huanqiu",NA +111,130,1504,"2017",6,0,99,2,1,50,"Huanqiu",NA +111,130,1505,"2017",3,0,NA,2,NA,98,"Huanqiu",NA +111,130,1507,"2017",6,1,50,3,50,50,"Huanqiu",NA +111,130,1508,"2017",2,0,1,3,99,1,"Huanqiu",NA +111,130,1509,"2017",2,0,75,2,25,50,"Huanqiu",NA +111,130,1512,"2017",2,0,2,2,98,99,"Huanqiu",NA +111,130,1513,"2017",3,1,99,2,99,99,"Huanqiu",NA +111,130,1515,"2017",4,0,1,5,99,NA,"Huanqiu",NA +111,130,1517,"2017",6,1,80,3,80,90,"Huanqiu",NA +111,130,1519,"2017",2,1,55,2,55,12,"Huanqiu",NA +111,130,1520,"2017",6,0,1,3,99,99,"Huanqiu",NA +111,130,1526,"2017",2,0,99,3,1,1,"Huanqiu",NA +111,130,1531,"2017",5,1,1,2,1,2,"Huanqiu",NA +111,130,1537,"2017",2,0,99,3,1,1,"Huanqiu",NA +111,130,1539,"2017",6,0,56,2,44,50,"Huanqiu",NA +111,130,1544,"2017",2,0,50,3,50,50,"Huanqiu",NA +111,130,1547,"2017",4,0,1,5,99,NA,"Huanqiu",NA +111,130,1548,"2017",2,1,99,2,99,99,"Huanqiu",NA +111,130,1552,"2017",3,0,99,2,1,1,"Huanqiu",NA +111,130,1554,"2017",5,1,95,3,95,90,"Huanqiu",NA +111,130,1556,"2017",3,0,99,2,1,50,"Huanqiu",NA +111,130,1557,"2017",6,0,1,2,99,99,"Huanqiu",NA +111,130,1561,"2017",2,1,1,3,1,1,"Huanqiu",NA +111,130,1563,"2017",2,1,1,2,1,1,"Huanqiu",NA +111,130,1564,"2017",4,1,1,5,1,NA,"Huanqiu",NA +111,130,1567,"2017",3,0,50,2,50,99,"Huanqiu",NA +111,130,1568,"2017",2,1,1,3,1,NA,"Huanqiu",NA +111,130,1569,"2017",5,0,NA,2,NA,50,"Huanqiu",NA +111,130,1570,"2017",6,1,1,3,1,70,"Huanqiu",NA +111,130,1571,"2017",3,1,70,2,70,50,"Huanqiu",NA +111,130,1575,"2017",2,1,0,3,0,0,"Huanqiu",NA +111,130,1578,"2017",3,0,50,2,50,50,"Huanqiu",NA +111,130,1580,"2017",2,0,50,3,50,1,"Huanqiu",NA +111,130,1583,"2017",6,1,80,2,80,80,"Huanqiu",NA +111,130,1586,"2017",2,0,99,2,1,1,"Huanqiu",NA +111,130,1595,"2017",6,1,99,2,99,99,"Huanqiu",NA +111,130,1597,"2017",2,1,80,3,80,80,"Huanqiu",NA +111,130,1598,"2017",5,1,50,3,50,50,"Huanqiu",NA +111,130,1599,"2017",5,1,99,2,99,1,"Huanqiu",NA +111,130,1600,"2017",6,0,20,2,80,80,"Huanqiu",NA +111,130,1603,"2017",6,1,NA,3,NA,NA,"Huanqiu",NA +111,130,1604,"2017",6,0,50,2,50,50,"Huanqiu",NA +111,130,1605,"2017",2,0,99,3,1,1,"Huanqiu",NA +111,130,1609,"2017",3,1,99,2,99,99,"Huanqiu",NA +111,130,1614,"2017",3,0,NA,2,NA,90,"Huanqiu",NA +111,130,1616,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,1619,"2017",3,1,1,3,1,1,"Huanqiu",NA +111,130,1620,"2017",3,0,50,2,50,50,"Huanqiu",NA +111,130,1621,"2017",5,0,50,3,50,30,"Huanqiu",NA +111,130,1628,"2017",2,0,90,2,10,10,"Huanqiu",NA +111,130,1630,"2017",3,1,85,3,85,85,"Huanqiu",NA +111,130,1633,"2017",6,0,99,2,1,1,"Huanqiu",NA +111,130,1636,"2017",5,0,80,2,20,10,"Huanqiu",NA +111,130,1638,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,1639,"2017",3,1,99,3,99,99,"Huanqiu",NA +111,130,1641,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1643,"2017",2,0,50,2,50,50,"Huanqiu",NA +111,130,1645,"2017",6,0,NA,3,NA,20,"Huanqiu",NA +111,130,1646,"2017",2,0,80,3,20,40,"Huanqiu",NA +111,130,1654,"2017",2,0,1,3,99,1,"Huanqiu",NA +111,130,1655,"2017",5,0,1,3,99,0,"Huanqiu",NA +111,130,1660,"2017",3,0,NA,3,NA,NA,"Huanqiu",NA +111,130,1666,"2017",2,0,NA,3,NA,NA,"Huanqiu",NA +111,130,1668,"2017",5,1,99,2,99,NA,"Huanqiu",NA +111,130,1672,"2017",5,1,99,2,99,99,"Huanqiu",NA +111,130,1674,"2017",5,0,70,3,30,10,"Huanqiu",NA +111,130,1675,"2017",5,1,NA,3,NA,99,"Huanqiu",NA +111,130,1676,"2017",6,1,88,3,88,88,"Huanqiu",NA +111,130,1677,"2017",2,0,50,2,50,50,"Huanqiu",NA +111,130,1678,"2017",3,1,99,2,99,NA,"Huanqiu",NA +111,130,1679,"2017",3,0,99,2,1,50,"Huanqiu",NA +111,130,1681,"2017",5,1,1,3,1,NA,"Huanqiu",NA +111,130,1683,"2017",2,1,90,2,90,50,"Huanqiu",NA +111,130,1685,"2017",2,1,99,2,99,99,"Huanqiu",NA +111,130,1687,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,1692,"2017",3,0,55,3,45,1,"Huanqiu",NA +111,130,1693,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,1694,"2017",3,0,50,2,50,50,"Huanqiu",NA +111,130,1695,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,1698,"2017",6,0,75,2,25,40,"Huanqiu",NA +111,130,1701,"2017",3,1,70,3,70,40,"Huanqiu",NA +111,130,1703,"2017",4,1,50,5,50,NA,"Huanqiu",NA +111,130,1708,"2017",6,0,40,2,60,50,"Huanqiu",NA +111,130,1711,"2017",2,0,100,3,0,NA,"Huanqiu",NA +111,130,1717,"2017",5,1,30,3,30,40,"Huanqiu",NA +111,130,1720,"2017",6,0,70,3,30,60,"Huanqiu",NA +111,130,1722,"2017",4,1,90,5,90,NA,"Huanqiu",NA +111,130,1726,"2017",6,1,55,2,55,44,"Huanqiu",NA +111,130,1731,"2017",5,0,56,3,44,31,"Huanqiu",NA +111,130,1733,"2017",6,1,90,3,90,NA,"Huanqiu",NA +111,130,1734,"2017",2,1,20,2,20,20,"Huanqiu",NA +111,130,1740,"2017",6,0,99,3,1,1,"Huanqiu",NA +111,130,1742,"2017",2,0,99,2,1,1,"Huanqiu",NA +111,130,1743,"2017",4,0,1,5,99,NA,"Huanqiu",NA +111,130,1745,"2017",5,0,50,3,50,50,"Huanqiu",NA +111,130,1746,"2017",2,1,50,2,50,99,"Huanqiu",NA +111,130,1749,"2017",2,1,99,2,99,99,"Huanqiu",NA +111,130,1752,"2017",2,0,99,2,1,1,"Huanqiu",NA +111,130,1753,"2017",5,0,60,2,40,70,"Huanqiu",NA +111,130,1757,"2017",4,1,80,5,80,NA,"Huanqiu",NA +111,130,1762,"2017",3,0,99,2,1,99,"Huanqiu",NA +111,130,1763,"2017",3,1,1,3,1,1,"Huanqiu",NA +111,130,1774,"2017",4,1,16,5,16,NA,"Huanqiu",NA +111,130,1775,"2017",6,0,88,3,12,1,"Huanqiu",NA +111,130,1776,"2017",3,0,90,3,10,2,"Huanqiu",NA +111,130,1784,"2017",5,0,84,2,16,1,"Huanqiu",NA +111,130,1785,"2017",3,1,97,2,97,88,"Huanqiu",NA +111,130,1792,"2017",3,1,90,3,90,0,"Huanqiu",NA +111,130,1795,"2017",2,1,94,3,94,99,"Huanqiu",NA +111,130,1798,"2017",5,1,97,2,97,8,"Huanqiu",NA +111,130,1800,"2017",2,0,NA,2,NA,NA,"Huanqiu",NA +111,130,1803,"2017",6,0,83,2,17,2,"Huanqiu",NA +111,130,1806,"2017",6,1,41,2,41,42,"Huanqiu",NA +111,130,1807,"2017",2,1,99,2,99,50,"Huanqiu",NA +111,130,1814,"2017",2,0,NA,2,NA,NA,"Huanqiu",NA +111,130,1817,"2017",6,1,70,2,70,60,"Huanqiu",NA +111,130,1820,"2017",6,0,20,2,80,50,"Huanqiu",NA +111,130,1823,"2017",5,1,60,3,60,90,"Huanqiu",NA +111,130,1829,"2017",6,0,1,2,99,99,"Huanqiu",NA +111,130,1832,"2017",6,1,70,2,70,50,"Huanqiu",NA +111,130,1837,"2017",5,0,0,2,100,20,"Huanqiu",NA +111,130,1839,"2017",6,1,99,2,99,99,"Huanqiu",NA +111,130,1843,"2017",5,0,1,3,99,99,"Huanqiu",NA +111,130,1844,"2017",3,1,1,3,1,1,"Huanqiu",NA +111,130,1846,"2017",3,0,100,2,0,0,"Huanqiu",NA +111,130,1850,"2017",2,1,99,2,99,70,"Huanqiu",NA +111,130,1853,"2017",5,1,99,3,99,99,"Huanqiu",NA +111,130,1854,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1856,"2017",6,0,80,3,20,15,"Huanqiu",NA +111,130,1862,"2017",5,0,1,2,99,99,"Huanqiu",NA +111,130,1866,"2017",2,0,1,2,99,50,"Huanqiu",NA +111,130,1867,"2017",5,0,99,2,1,1,"Huanqiu",NA +111,130,1871,"2017",3,1,99,3,99,99,"Huanqiu",NA +111,130,1873,"2017",2,1,70,2,70,88,"Huanqiu",NA +111,130,1874,"2017",5,0,99,3,1,99,"Huanqiu",NA +111,130,1878,"2017",3,1,90,3,90,90,"Huanqiu",NA +111,130,1880,"2017",2,1,1,2,1,1,"Huanqiu",NA +111,130,1885,"2017",3,0,50,3,50,60,"Huanqiu",NA +111,130,1886,"2017",4,0,80,5,20,NA,"Huanqiu",NA +111,130,1887,"2017",6,0,99,3,1,1,"Huanqiu",NA +111,130,1892,"2017",3,1,60,3,60,99,"Huanqiu",NA +111,130,1894,"2017",3,1,60,3,60,60,"Huanqiu",NA +111,130,1896,"2017",5,0,99,3,1,1,"Huanqiu",NA +111,130,1900,"2017",4,1,60,5,60,NA,"Huanqiu",NA +111,130,1901,"2017",5,0,90,2,10,20,"Huanqiu",NA +111,130,1903,"2017",3,1,1,3,1,99,"Huanqiu",NA +111,130,1904,"2017",5,0,1,3,99,50,"Huanqiu",NA +111,130,1906,"2017",3,0,10,3,90,1,"Huanqiu",NA +111,130,1907,"2017",4,0,90,5,10,NA,"Huanqiu",NA +111,130,1908,"2017",2,1,1,2,1,99,"Huanqiu",NA +111,130,1913,"2017",5,0,50,2,50,1,"Huanqiu",NA +111,130,1918,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,1921,"2017",4,1,10,5,10,NA,"Huanqiu",NA +111,130,1922,"2017",2,1,50,3,50,50,"Huanqiu",NA +111,130,1923,"2017",6,1,50,3,50,99,"Huanqiu",NA +111,130,1924,"2017",3,0,0,2,100,100,"Huanqiu",NA +111,130,1925,"2017",5,0,99,2,1,1,"Huanqiu",NA +111,130,1926,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,1927,"2017",6,1,20,3,20,1,"Huanqiu",NA +111,130,1933,"2017",3,0,60,3,40,50,"Huanqiu",NA +111,130,1934,"2017",6,0,50,2,50,30,"Huanqiu",NA +111,130,1936,"2017",5,0,99,3,1,1,"Huanqiu",NA +111,130,1937,"2017",6,1,1,2,1,1,"Huanqiu",NA +111,130,1938,"2017",2,1,50,3,50,99,"Huanqiu",NA +111,130,1941,"2017",3,1,60,3,60,NA,"Huanqiu",NA +111,130,1942,"2017",5,0,99,3,1,1,"Huanqiu",NA +111,130,1943,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1944,"2017",5,0,99,3,1,1,"Huanqiu",NA +111,130,1946,"2017",4,0,99,5,1,NA,"Huanqiu",NA +111,130,1951,"2017",4,0,50,5,50,NA,"Huanqiu",NA +111,130,1952,"2017",2,0,99,3,1,1,"Huanqiu",NA +111,130,1955,"2017",6,1,99,2,99,99,"Huanqiu",NA +111,130,1957,"2017",6,0,99,3,1,1,"Huanqiu",NA +111,130,1958,"2017",4,0,50,5,50,NA,"Huanqiu",NA +111,130,1959,"2017",5,1,50,3,50,NA,"Huanqiu",NA +111,130,1960,"2017",3,1,99,2,99,99,"Huanqiu",NA +111,130,1969,"2017",2,1,80,2,80,70,"Huanqiu",NA +111,130,1971,"2017",2,0,1,3,99,50,"Huanqiu",NA +111,130,1972,"2017",3,0,1,2,99,50,"Huanqiu",NA +111,130,1973,"2017",5,0,50,2,50,50,"Huanqiu",NA +111,130,1975,"2017",3,1,99,3,99,99,"Huanqiu",NA +111,130,1978,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,1979,"2017",6,0,1,3,99,99,"Huanqiu",NA +111,130,1980,"2017",5,0,90,3,10,10,"Huanqiu",NA +111,130,1981,"2017",4,0,1,5,99,NA,"Huanqiu",NA +111,130,1984,"2017",2,0,NA,3,NA,99,"Huanqiu",NA +111,130,1986,"2017",4,1,99,5,99,NA,"Huanqiu",NA +111,130,1987,"2017",2,0,80,3,20,10,"Huanqiu",NA +111,130,1989,"2017",4,1,90,5,90,NA,"Huanqiu",NA +111,130,1992,"2017",2,1,20,3,20,30,"Huanqiu",NA +111,130,1995,"2017",2,0,77,3,23,10,"Huanqiu",NA +111,130,1997,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,1998,"2017",2,0,70,3,30,20,"Huanqiu",NA +111,130,1999,"2017",5,1,70,3,70,80,"Huanqiu",NA +111,130,2000,"2017",4,0,70,5,30,NA,"Huanqiu",NA +111,130,2001,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,2002,"2017",2,0,99,3,1,1,"Huanqiu",NA +111,130,2004,"2017",5,0,45,3,55,20,"Huanqiu",NA +111,130,2013,"2017",3,0,30,3,70,50,"Huanqiu",NA +111,130,2014,"2017",6,1,90,3,90,90,"Huanqiu",NA +111,130,2015,"2017",2,0,88,2,12,1,"Huanqiu",NA +111,130,2017,"2017",5,0,50,2,50,50,"Huanqiu",NA +111,130,2029,"2017",3,1,NA,2,NA,NA,"Huanqiu",NA +111,130,2032,"2017",4,0,90,5,10,NA,"Huanqiu",NA +111,130,2034,"2017",6,0,99,3,1,1,"Huanqiu",NA +111,130,2039,"2017",2,1,99,2,99,0,"Huanqiu",NA +111,130,2040,"2017",5,1,20,3,20,80,"Huanqiu",NA +111,130,2044,"2017",5,0,90,2,10,40,"Huanqiu",NA +111,130,2045,"2017",5,0,90,2,10,1,"Huanqiu",NA +111,130,2046,"2017",6,1,1,3,1,99,"Huanqiu",NA +111,130,2047,"2017",5,0,50,2,50,50,"Huanqiu",NA +111,130,2049,"2017",6,0,1,3,99,0,"Huanqiu",NA +111,130,2050,"2017",2,0,99,3,1,1,"Huanqiu",NA +111,130,2052,"2017",4,1,60,5,60,NA,"Huanqiu",NA +111,130,2054,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,2057,"2017",5,0,5,2,95,90,"Huanqiu",NA +111,130,2059,"2017",2,1,99,3,99,99,"Huanqiu",NA +111,130,2060,"2017",3,1,99,2,99,99,"Huanqiu",NA +111,130,2061,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,2062,"2017",5,1,1,3,1,99,"Huanqiu",NA +111,130,2063,"2017",3,0,99,3,1,1,"Huanqiu",NA +111,130,2065,"2017",6,0,99,3,1,1,"Huanqiu",NA +111,130,2071,"2017",5,0,1,2,99,99,"Huanqiu",NA +111,130,2075,"2017",2,0,1,2,99,1,"Huanqiu",NA +111,130,2078,"2017",2,1,91,3,91,85,"Huanqiu",NA +111,130,2079,"2017",5,0,1,2,99,99,"Huanqiu",NA +111,130,2082,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,2083,"2017",3,0,60,2,40,50,"Huanqiu",NA +111,130,2089,"2017",3,1,NA,3,NA,NA,"Huanqiu",NA +111,130,2091,"2017",3,0,1,3,99,1,"Huanqiu",NA +111,130,2092,"2017",5,0,1,2,99,99,"Huanqiu",NA +111,130,2095,"2017",3,1,80,3,80,20,"Huanqiu",NA +111,130,2098,"2017",2,1,5,3,5,50,"Huanqiu",NA +111,130,2099,"2017",6,1,99,3,99,99,"Huanqiu",NA +111,130,2102,"2017",4,0,50,5,50,NA,"Huanqiu",NA +111,130,2105,"2017",4,0,50,5,50,NA,"Huanqiu",NA +111,130,2107,"2017",5,1,99,3,99,99,"Huanqiu",NA +111,130,2115,"2017",2,1,99,2,99,99,"Huanqiu",NA +111,130,2118,"2017",5,0,95,3,5,1,"Huanqiu",NA +111,130,2119,"2017",2,1,50,3,50,50,"Huanqiu",NA +111,130,2120,"2017",3,0,80,3,20,20,"Huanqiu",NA +111,130,2121,"2017",5,0,99,3,1,1,"Huanqiu",NA +111,130,2125,"2017",5,1,99,3,99,99,"Huanqiu",NA +111,130,2130,"2017",4,1,70,5,70,NA,"Huanqiu",NA +111,130,2133,"2017",6,1,1,3,1,1,"Huanqiu",NA +111,141,1,"2017",3,0,5,2,95,10,"Xinhua",NA +111,141,2,"2017",3,1,NA,3,NA,NA,"Xinhua",NA +111,141,3,"2017",6,0,NA,3,NA,NA,"Xinhua",NA +111,141,12,"2017",6,0,99,3,1,1,"Xinhua",NA +111,141,13,"2017",6,0,0,3,100,100,"Xinhua",NA +111,141,18,"2017",5,1,NA,2,NA,99,"Xinhua",NA +111,141,19,"2017",5,1,50,2,50,60,"Xinhua",NA +111,141,21,"2017",4,0,50,2,50,50,"Xinhua",NA +111,141,27,"2017",6,0,90,2,10,20,"Xinhua",NA +111,141,28,"2017",6,1,40,3,40,80,"Xinhua",NA +111,141,29,"2017",6,0,NA,2,NA,NA,"Xinhua",NA +111,141,30,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +111,141,32,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +111,141,36,"2017",4,0,60,2,40,50,"Xinhua",NA +111,141,38,"2017",5,0,99,3,1,49,"Xinhua",NA +111,141,44,"2017",3,0,99,2,1,1,"Xinhua",NA +111,141,45,"2017",3,1,33,2,33,22,"Xinhua",NA +111,141,47,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +111,141,48,"2017",4,0,90,2,10,20,"Xinhua",NA +111,141,50,"2017",5,0,22,2,78,56,"Xinhua",NA +111,141,51,"2017",6,0,50,3,50,1,"Xinhua",NA +111,141,52,"2017",2,1,40,2,40,40,"Xinhua",NA +111,141,53,"2017",2,0,10,2,90,90,"Xinhua",NA +111,141,62,"2017",2,1,1,2,1,1,"Xinhua",NA +111,141,64,"2017",6,1,1,3,1,99,"Xinhua",NA +111,141,65,"2017",4,1,50,2,50,70,"Xinhua",NA +111,141,66,"2017",2,1,50,3,50,55,"Xinhua",NA +111,141,68,"2017",5,0,99,2,1,1,"Xinhua",NA +111,141,75,"2017",4,1,50,2,50,50,"Xinhua",NA +111,141,77,"2017",3,0,1,2,99,99,"Xinhua",NA +111,141,79,"2017",2,1,1,3,1,99,"Xinhua",NA +111,141,80,"2017",2,1,99,2,99,99,"Xinhua",NA +111,141,81,"2017",2,1,90,3,90,90,"Xinhua",NA +111,141,91,"2017",3,1,0,3,0,100,"Xinhua",NA +111,141,92,"2017",3,1,99,3,99,99,"Xinhua",NA +111,141,94,"2017",3,0,100,3,0,0,"Xinhua",NA +111,141,95,"2017",4,0,100,2,0,0,"Xinhua",NA +111,141,97,"2017",4,0,80,2,20,25,"Xinhua",NA +111,141,98,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,102,"2017",4,0,NA,2,NA,21,"Xinhua",NA +111,141,105,"2017",3,1,80,3,80,50,"Xinhua",NA +111,141,108,"2017",3,1,0,3,0,0,"Xinhua",NA +111,141,109,"2017",2,1,1,2,1,40,"Xinhua",NA +111,141,113,"2017",2,1,60,2,60,80,"Xinhua",NA +111,141,115,"2017",4,0,30,2,70,40,"Xinhua",NA +111,141,116,"2017",2,1,50,3,50,50,"Xinhua",NA +111,141,119,"2017",4,1,30,2,30,50,"Xinhua",NA +111,141,125,"2017",4,0,99,2,1,99,"Xinhua",NA +111,141,126,"2017",3,1,99,2,99,1,"Xinhua",NA +111,141,128,"2017",2,1,99,2,99,99,"Xinhua",NA +111,141,129,"2017",2,0,99,3,1,1,"Xinhua",NA +111,141,130,"2017",2,0,99,2,1,50,"Xinhua",NA +111,141,133,"2017",3,0,70,3,30,70,"Xinhua",NA +111,141,135,"2017",3,0,30,3,70,90,"Xinhua",NA +111,141,138,"2017",2,0,99,2,1,1,"Xinhua",NA +111,141,143,"2017",2,1,17,3,17,12,"Xinhua",NA +111,141,1170,"2017",3,1,1,2,1,1,"Xinhua",NA +111,141,1172,"2017",3,1,0,3,0,0,"Xinhua",NA +111,141,1173,"2017",3,0,100,2,0,10,"Xinhua",NA +111,141,1174,"2017",5,1,0,2,0,0,"Xinhua",NA +111,141,1175,"2017",6,0,50,3,50,50,"Xinhua",NA +111,141,1178,"2017",5,1,30,3,30,40,"Xinhua",NA +111,141,1182,"2017",3,0,20,3,80,80,"Xinhua",NA +111,141,1185,"2017",5,0,70,2,30,50,"Xinhua",NA +111,141,1189,"2017",6,1,99,2,99,99,"Xinhua",NA +111,141,1192,"2017",4,0,70,2,30,50,"Xinhua",NA +111,141,1193,"2017",5,1,75,3,75,70,"Xinhua",NA +111,141,1195,"2017",2,0,90,2,10,20,"Xinhua",NA +111,141,1196,"2017",5,1,99,3,99,99,"Xinhua",NA +111,141,1197,"2017",4,1,1,2,1,50,"Xinhua",NA +111,141,1203,"2017",2,1,12,3,12,60,"Xinhua",NA +111,141,1204,"2017",3,0,15,2,85,50,"Xinhua",NA +111,141,1208,"2017",2,0,99,3,1,50,"Xinhua",NA +111,141,1209,"2017",4,1,1,2,1,0,"Xinhua",NA +111,141,1210,"2017",2,0,40,2,60,60,"Xinhua",NA +111,141,1215,"2017",3,0,20,2,80,80,"Xinhua",NA +111,141,1218,"2017",5,0,15,3,85,80,"Xinhua",NA +111,141,1224,"2017",6,1,99,2,99,50,"Xinhua",NA +111,141,1226,"2017",2,0,90,2,10,50,"Xinhua",NA +111,141,1228,"2017",2,1,1,3,1,50,"Xinhua",NA +111,141,1233,"2017",6,1,99,2,99,99,"Xinhua",NA +111,141,1234,"2017",6,0,99,3,1,10,"Xinhua",NA +111,141,1236,"2017",6,1,99,3,99,99,"Xinhua",NA +111,141,1237,"2017",2,0,15,3,85,57,"Xinhua",NA +111,141,1239,"2017",4,0,50,2,50,50,"Xinhua",NA +111,141,1248,"2017",3,1,20,2,20,30,"Xinhua",NA +111,141,1250,"2017",2,0,90,2,10,50,"Xinhua",NA +111,141,1254,"2017",2,1,NA,2,NA,50,"Xinhua",NA +111,141,1255,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +111,141,1261,"2017",3,1,1,3,1,2,"Xinhua",NA +111,141,1263,"2017",5,1,40,3,40,65,"Xinhua",NA +111,141,1273,"2017",3,0,90,2,10,50,"Xinhua",NA +111,141,1279,"2017",5,0,100,2,0,0,"Xinhua",NA +111,141,1281,"2017",3,0,1,3,99,50,"Xinhua",NA +111,141,1282,"2017",4,0,97,2,3,1,"Xinhua",NA +111,141,1288,"2017",6,1,50,2,50,50,"Xinhua",NA +111,141,1290,"2017",2,1,10,3,10,100,"Xinhua",NA +111,141,1291,"2017",3,1,99,3,99,99,"Xinhua",NA +111,141,1293,"2017",4,1,1,2,1,50,"Xinhua",NA +111,141,1295,"2017",6,0,50,2,50,50,"Xinhua",NA +111,141,1296,"2017",5,0,66,3,34,34,"Xinhua",NA +111,141,1298,"2017",3,0,7,2,93,92,"Xinhua",NA +111,141,1308,"2017",2,1,50,3,50,99,"Xinhua",NA +111,141,1311,"2017",2,0,50,3,50,50,"Xinhua",NA +111,141,1312,"2017",4,1,99,2,99,50,"Xinhua",NA +111,141,1317,"2017",3,1,50,2,50,50,"Xinhua",NA +111,141,1328,"2017",3,0,99,3,1,10,"Xinhua",NA +111,141,1334,"2017",5,0,88,3,12,1,"Xinhua",NA +111,141,1336,"2017",2,1,99,2,99,99,"Xinhua",NA +111,141,1338,"2017",3,0,50,3,50,40,"Xinhua",NA +111,141,1340,"2017",5,0,50,2,50,50,"Xinhua",NA +111,141,1343,"2017",4,1,99,2,99,1,"Xinhua",NA +111,141,1346,"2017",3,0,99,2,1,50,"Xinhua",NA +111,141,1347,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,1348,"2017",6,1,20,2,20,55,"Xinhua",NA +111,141,1351,"2017",5,0,80,2,20,30,"Xinhua",NA +111,141,1353,"2017",5,1,1,2,1,1,"Xinhua",NA +111,141,1356,"2017",4,0,1,2,99,1,"Xinhua",NA +111,141,1357,"2017",5,0,60,2,40,40,"Xinhua",NA +111,141,1361,"2017",2,1,0,3,0,0,"Xinhua",NA +111,141,1362,"2017",4,1,60,2,60,60,"Xinhua",NA +111,141,1363,"2017",3,0,100,2,0,100,"Xinhua",NA +111,141,1365,"2017",3,1,99,3,99,1,"Xinhua",NA +111,141,1368,"2017",6,1,1,3,1,1,"Xinhua",NA +111,141,1370,"2017",3,1,99,3,99,99,"Xinhua",NA +111,141,1375,"2017",4,1,80,2,80,80,"Xinhua",NA +111,141,1376,"2017",3,1,50,3,50,99,"Xinhua",NA +111,141,1379,"2017",4,0,1,2,99,99,"Xinhua",NA +111,141,1380,"2017",6,0,1,2,99,1,"Xinhua",NA +111,141,1381,"2017",5,0,14,3,86,85,"Xinhua",NA +111,141,1383,"2017",6,0,99,3,1,1,"Xinhua",NA +111,141,1387,"2017",6,0,99,2,1,1,"Xinhua",NA +111,141,1388,"2017",4,1,60,2,60,60,"Xinhua",NA +111,141,1390,"2017",5,1,80,3,80,80,"Xinhua",NA +111,141,1394,"2017",6,1,99,2,99,99,"Xinhua",NA +111,141,1398,"2017",3,1,50,3,50,50,"Xinhua",NA +111,141,1399,"2017",5,0,90,2,10,20,"Xinhua",NA +111,141,1403,"2017",5,1,99,3,99,99,"Xinhua",NA +111,141,1404,"2017",3,1,30,3,30,40,"Xinhua",NA +111,141,1406,"2017",2,0,99,3,1,1,"Xinhua",NA +111,141,1410,"2017",6,0,99,3,1,1,"Xinhua",NA +111,141,1411,"2017",5,0,99,2,1,99,"Xinhua",NA +111,141,1413,"2017",6,0,1,3,99,99,"Xinhua",NA +111,141,1417,"2017",5,0,40,3,60,55,"Xinhua",NA +111,141,1420,"2017",3,1,1,2,1,1,"Xinhua",NA +111,141,1422,"2017",3,1,10,2,10,50,"Xinhua",NA +111,141,1424,"2017",5,1,50,2,50,50,"Xinhua",NA +111,141,1425,"2017",2,1,99,3,99,NA,"Xinhua",NA +111,141,1428,"2017",2,0,89,2,11,10,"Xinhua",NA +111,141,1430,"2017",4,1,99,2,99,99,"Xinhua",NA +111,141,1431,"2017",6,1,NA,2,NA,99,"Xinhua",NA +111,141,1437,"2017",3,0,99,3,1,99,"Xinhua",NA +111,141,1438,"2017",4,1,99,2,99,90,"Xinhua",NA +111,141,1439,"2017",4,0,50,2,50,12,"Xinhua",NA +111,141,1440,"2017",3,1,68,3,68,74,"Xinhua",NA +111,141,1447,"2017",5,0,99,3,1,1,"Xinhua",NA +111,141,1455,"2017",6,1,50,3,50,50,"Xinhua",NA +111,141,1461,"2017",3,1,50,3,50,50,"Xinhua",NA +111,141,1462,"2017",2,1,20,2,20,85,"Xinhua",NA +111,141,1465,"2017",4,0,1,2,99,99,"Xinhua",NA +111,141,1467,"2017",3,0,99,2,1,99,"Xinhua",NA +111,141,1468,"2017",3,0,50,3,50,50,"Xinhua",NA +111,141,1469,"2017",6,1,99,2,99,1,"Xinhua",NA +111,141,1471,"2017",5,1,1,2,1,99,"Xinhua",NA +111,141,1473,"2017",6,0,60,2,40,10,"Xinhua",NA +111,141,1475,"2017",3,0,1,3,99,NA,"Xinhua",NA +111,141,1477,"2017",3,0,50,2,50,50,"Xinhua",NA +111,141,1478,"2017",4,1,99,2,99,99,"Xinhua",NA +111,141,1481,"2017",4,0,98,2,2,10,"Xinhua",NA +111,141,1482,"2017",6,1,10,2,10,45,"Xinhua",NA +111,141,1484,"2017",6,1,NA,3,NA,NA,"Xinhua",NA +111,141,1485,"2017",6,0,88,2,12,11,"Xinhua",NA +111,141,1486,"2017",5,1,99,2,99,99,"Xinhua",NA +111,141,1487,"2017",3,0,99,3,1,50,"Xinhua",NA +111,141,1490,"2017",6,1,50,3,50,50,"Xinhua",NA +111,141,1495,"2017",5,0,99,3,1,1,"Xinhua",NA +111,141,1497,"2017",6,0,50,3,50,90,"Xinhua",NA +111,141,1498,"2017",6,0,1,2,99,1,"Xinhua",NA +111,141,1504,"2017",6,0,99,3,1,1,"Xinhua",NA +111,141,1506,"2017",4,0,50,2,50,50,"Xinhua",NA +111,141,1510,"2017",2,0,90,3,10,50,"Xinhua",NA +111,141,1512,"2017",2,0,1,3,99,98,"Xinhua",NA +111,141,1516,"2017",6,1,50,3,50,50,"Xinhua",NA +111,141,1522,"2017",6,0,95,3,5,10,"Xinhua",NA +111,141,1523,"2017",4,0,1,2,99,50,"Xinhua",NA +111,141,1525,"2017",4,0,100,2,0,0,"Xinhua",NA +111,141,1533,"2017",5,0,50,2,50,1,"Xinhua",NA +111,141,1536,"2017",5,1,1,3,1,1,"Xinhua",NA +111,141,1538,"2017",3,0,50,3,50,50,"Xinhua",NA +111,141,1541,"2017",6,1,99,3,99,99,"Xinhua",NA +111,141,1542,"2017",3,1,1,3,1,90,"Xinhua",NA +111,141,1543,"2017",3,0,90,3,10,20,"Xinhua",NA +111,141,1544,"2017",2,0,50,2,50,50,"Xinhua",NA +111,141,1545,"2017",2,1,99,2,99,99,"Xinhua",NA +111,141,1549,"2017",3,1,99,3,99,50,"Xinhua",NA +111,141,1553,"2017",4,1,99,2,99,99,"Xinhua",NA +111,141,1554,"2017",5,1,90,2,90,50,"Xinhua",NA +111,141,1555,"2017",4,1,1,2,1,1,"Xinhua",NA +111,141,1557,"2017",6,0,99,3,1,99,"Xinhua",NA +111,141,1558,"2017",2,1,50,2,50,99,"Xinhua",NA +111,141,1559,"2017",2,1,1,2,1,1,"Xinhua",NA +111,141,1560,"2017",3,1,99,2,99,1,"Xinhua",NA +111,141,1562,"2017",4,0,1,2,99,99,"Xinhua",NA +111,141,1563,"2017",2,1,1,3,1,1,"Xinhua",NA +111,141,1565,"2017",3,1,99,2,99,1,"Xinhua",NA +111,141,1566,"2017",6,0,1,2,99,99,"Xinhua",NA +111,141,1567,"2017",3,0,99,3,1,50,"Xinhua",NA +111,141,1568,"2017",2,1,NA,2,NA,99,"Xinhua",NA +111,141,1569,"2017",5,0,50,3,50,NA,"Xinhua",NA +111,141,1570,"2017",6,1,70,2,70,40,"Xinhua",NA +111,141,1571,"2017",3,1,80,3,80,70,"Xinhua",NA +111,141,1572,"2017",4,1,NA,2,NA,99,"Xinhua",NA +111,141,1573,"2017",2,1,99,2,99,99,"Xinhua",NA +111,141,1574,"2017",2,0,NA,2,NA,99,"Xinhua",NA +111,141,1580,"2017",2,0,99,2,1,50,"Xinhua",NA +111,141,1584,"2017",6,1,50,3,50,50,"Xinhua",NA +111,141,1585,"2017",2,0,100,3,0,10,"Xinhua",NA +111,141,1586,"2017",2,0,1,3,99,1,"Xinhua",NA +111,141,1590,"2017",6,1,90,3,90,80,"Xinhua",NA +111,141,1591,"2017",3,1,NA,3,NA,NA,"Xinhua",NA +111,141,1592,"2017",5,0,99,3,1,1,"Xinhua",NA +111,141,1597,"2017",2,1,80,2,80,8,"Xinhua",NA +111,141,1598,"2017",5,1,50,2,50,50,"Xinhua",NA +111,141,1600,"2017",6,0,20,3,80,80,"Xinhua",NA +111,141,1601,"2017",3,0,90,3,10,10,"Xinhua",NA +111,141,1602,"2017",3,1,99,3,99,NA,"Xinhua",NA +111,141,1604,"2017",6,0,50,3,50,50,"Xinhua",NA +111,141,1608,"2017",5,1,1,3,1,99,"Xinhua",NA +111,141,1611,"2017",6,1,99,2,99,NA,"Xinhua",NA +111,141,1613,"2017",6,0,50,3,50,50,"Xinhua",NA +111,141,1615,"2017",3,0,50,2,50,50,"Xinhua",NA +111,141,1617,"2017",4,0,60,2,40,99,"Xinhua",NA +111,141,1621,"2017",5,0,70,2,30,50,"Xinhua",NA +111,141,1622,"2017",2,0,90,3,10,20,"Xinhua",NA +111,141,1624,"2017",2,0,90,3,10,NA,"Xinhua",NA +111,141,1626,"2017",3,0,1,3,99,99,"Xinhua",NA +111,141,1631,"2017",6,1,NA,3,NA,59,"Xinhua",NA +111,141,1632,"2017",2,0,50,2,50,0,"Xinhua",NA +111,141,1634,"2017",6,0,40,2,60,60,"Xinhua",NA +111,141,1636,"2017",5,0,80,3,20,20,"Xinhua",NA +111,141,1637,"2017",2,0,90,3,10,10,"Xinhua",NA +111,141,1640,"2017",2,1,0,3,0,0,"Xinhua",NA +111,141,1645,"2017",6,0,80,2,20,40,"Xinhua",NA +111,141,1646,"2017",2,0,60,2,40,80,"Xinhua",NA +111,141,1647,"2017",6,1,1,3,1,NA,"Xinhua",NA +111,141,1649,"2017",5,0,99,3,1,1,"Xinhua",NA +111,141,1650,"2017",6,0,29,3,71,50,"Xinhua",NA +111,141,1651,"2017",6,0,50,3,50,50,"Xinhua",NA +111,141,1653,"2017",3,1,50,3,50,NA,"Xinhua",NA +111,141,1658,"2017",4,1,99,2,99,99,"Xinhua",NA +111,141,1659,"2017",6,0,50,2,50,50,"Xinhua",NA +111,141,1661,"2017",3,1,50,2,50,50,"Xinhua",NA +111,141,1662,"2017",5,0,90,2,10,30,"Xinhua",NA +111,141,1663,"2017",4,0,NA,2,NA,1,"Xinhua",NA +111,141,1664,"2017",2,0,1,2,99,99,"Xinhua",NA +111,141,1667,"2017",4,1,1,2,1,99,"Xinhua",NA +111,141,1669,"2017",2,1,20,2,20,45,"Xinhua",NA +111,141,1670,"2017",2,0,50,2,50,50,"Xinhua",NA +111,141,1671,"2017",4,1,99,2,99,1,"Xinhua",NA +111,141,1672,"2017",5,1,99,3,99,99,"Xinhua",NA +111,141,1678,"2017",3,1,99,3,99,99,"Xinhua",NA +111,141,1680,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,1684,"2017",5,1,99,3,99,90,"Xinhua",NA +111,141,1685,"2017",2,1,99,3,99,99,"Xinhua",NA +111,141,1687,"2017",6,1,99,2,99,99,"Xinhua",NA +111,141,1688,"2017",5,1,80,2,80,80,"Xinhua",NA +111,141,1689,"2017",3,0,99,2,1,91,"Xinhua",NA +111,141,1691,"2017",5,1,40,3,40,50,"Xinhua",NA +111,141,1696,"2017",2,1,90,2,90,5,"Xinhua",NA +111,141,1697,"2017",2,1,20,3,20,50,"Xinhua",NA +111,141,1700,"2017",5,1,2,3,2,2,"Xinhua",NA +111,141,1702,"2017",4,1,99,2,99,99,"Xinhua",NA +111,141,1709,"2017",6,1,99,3,99,99,"Xinhua",NA +111,141,1710,"2017",4,1,1,2,1,50,"Xinhua",NA +111,141,1714,"2017",3,1,NA,3,NA,40,"Xinhua",NA +111,141,1715,"2017",6,0,22,2,78,45,"Xinhua",NA +111,141,1716,"2017",4,1,1,2,1,99,"Xinhua",NA +111,141,1717,"2017",5,1,40,2,40,40,"Xinhua",NA +111,141,1721,"2017",5,1,99,2,99,99,"Xinhua",NA +111,141,1723,"2017",6,0,1,3,99,1,"Xinhua",NA +111,141,1725,"2017",2,0,99,3,1,50,"Xinhua",NA +111,141,1727,"2017",4,0,89,2,11,14,"Xinhua",NA +111,141,1732,"2017",6,1,NA,2,NA,NA,"Xinhua",NA +111,141,1736,"2017",3,1,20,2,20,50,"Xinhua",NA +111,141,1746,"2017",2,1,50,3,50,50,"Xinhua",NA +111,141,1747,"2017",5,1,50,3,50,99,"Xinhua",NA +111,141,1748,"2017",3,1,0,2,0,99,"Xinhua",NA +111,141,1750,"2017",2,0,1,2,99,50,"Xinhua",NA +111,141,1753,"2017",5,0,50,3,50,40,"Xinhua",NA +111,141,1755,"2017",5,1,30,2,30,45,"Xinhua",NA +111,141,1758,"2017",3,1,49,2,49,99,"Xinhua",NA +111,141,1759,"2017",2,0,64,3,36,88,"Xinhua",NA +111,141,1761,"2017",5,1,38,2,38,58,"Xinhua",NA +111,141,1763,"2017",3,1,1,2,1,90,"Xinhua",NA +111,141,1764,"2017",4,0,75,2,25,50,"Xinhua",NA +111,141,1765,"2017",2,0,50,2,50,99,"Xinhua",NA +111,141,1766,"2017",5,1,1,2,1,1,"Xinhua",NA +111,141,1767,"2017",2,1,100,3,100,99,"Xinhua",NA +111,141,1768,"2017",5,0,99,2,1,1,"Xinhua",NA +111,141,1775,"2017",6,0,99,2,1,13,"Xinhua",NA +111,141,1777,"2017",6,0,98,3,2,1,"Xinhua",NA +111,141,1780,"2017",3,0,97,2,3,7,"Xinhua",NA +111,141,1781,"2017",5,1,98,2,98,95,"Xinhua",NA +111,141,1788,"2017",6,1,91,3,91,69,"Xinhua",NA +111,141,1789,"2017",4,0,90,2,10,90,"Xinhua",NA +111,141,1791,"2017",5,0,68,2,32,68,"Xinhua",NA +111,141,1792,"2017",3,1,0,2,0,50,"Xinhua",NA +111,141,1793,"2017",3,1,85,2,85,83,"Xinhua",NA +111,141,1795,"2017",2,1,99,2,99,77,"Xinhua",NA +111,141,1796,"2017",4,1,85,2,85,88,"Xinhua",NA +111,141,1798,"2017",5,1,85,3,85,97,"Xinhua",NA +111,141,1799,"2017",5,1,NA,2,NA,88,"Xinhua",NA +111,141,1800,"2017",2,0,NA,3,NA,NA,"Xinhua",NA +111,141,1801,"2017",4,0,98,2,2,12,"Xinhua",NA +111,141,1809,"2017",6,0,99,3,1,50,"Xinhua",NA +111,141,1810,"2017",2,0,70,2,30,50,"Xinhua",NA +111,141,1812,"2017",4,0,100,2,0,NA,"Xinhua",NA +111,141,1813,"2017",2,1,1,2,1,50,"Xinhua",NA +111,141,1815,"2017",2,0,90,3,10,30,"Xinhua",NA +111,141,1817,"2017",6,1,90,3,90,70,"Xinhua",NA +111,141,1824,"2017",5,1,1,2,1,1,"Xinhua",NA +111,141,1826,"2017",4,0,99,2,1,99,"Xinhua",NA +111,141,1830,"2017",3,0,60,2,40,40,"Xinhua",NA +111,141,1832,"2017",6,1,70,3,70,70,"Xinhua",NA +111,141,1833,"2017",2,1,1,3,1,2,"Xinhua",NA +111,141,1840,"2017",2,1,80,3,80,20,"Xinhua",NA +111,141,1844,"2017",3,1,1,2,1,9,"Xinhua",NA +111,141,1846,"2017",3,0,0,3,100,0,"Xinhua",NA +111,141,1849,"2017",4,0,99,2,1,4,"Xinhua",NA +111,141,1852,"2017",5,1,1,2,1,40,"Xinhua",NA +111,141,1856,"2017",6,0,85,2,15,20,"Xinhua",NA +111,141,1863,"2017",2,1,95,3,95,90,"Xinhua",NA +111,141,1864,"2017",3,1,50,2,50,99,"Xinhua",NA +111,141,1867,"2017",5,0,99,3,1,1,"Xinhua",NA +111,141,1868,"2017",6,0,99,2,1,99,"Xinhua",NA +111,141,1869,"2017",3,1,100,2,100,0,"Xinhua",NA +111,141,1872,"2017",4,1,1,2,1,99,"Xinhua",NA +111,141,1878,"2017",3,1,90,2,90,90,"Xinhua",NA +111,141,1881,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,1882,"2017",2,1,1,3,1,99,"Xinhua",NA +111,141,1887,"2017",6,0,99,2,1,99,"Xinhua",NA +111,141,1888,"2017",2,1,1,2,1,99,"Xinhua",NA +111,141,1889,"2017",2,1,99,3,99,99,"Xinhua",NA +111,141,1890,"2017",4,0,0,2,100,100,"Xinhua",NA +111,141,1891,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,1893,"2017",2,1,NA,3,NA,50,"Xinhua",NA +111,141,1894,"2017",3,1,60,2,60,60,"Xinhua",NA +111,141,1895,"2017",4,1,99,2,99,50,"Xinhua",NA +111,141,1899,"2017",3,1,50,3,50,50,"Xinhua",NA +111,141,1902,"2017",6,0,99,2,1,1,"Xinhua",NA +111,141,1905,"2017",2,1,80,2,80,70,"Xinhua",NA +111,141,1911,"2017",4,1,1,2,1,90,"Xinhua",NA +111,141,1914,"2017",6,1,50,3,50,99,"Xinhua",NA +111,141,1917,"2017",6,0,99,3,1,99,"Xinhua",NA +111,141,1919,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,1920,"2017",5,0,99,2,1,1,"Xinhua",NA +111,141,1928,"2017",4,0,5,2,95,88,"Xinhua",NA +111,141,1936,"2017",5,0,99,2,1,1,"Xinhua",NA +111,141,1939,"2017",5,1,99,2,99,1,"Xinhua",NA +111,141,1940,"2017",3,1,99,2,99,99,"Xinhua",NA +111,141,1941,"2017",3,1,NA,2,NA,60,"Xinhua",NA +111,141,1947,"2017",4,0,80,2,20,93,"Xinhua",NA +111,141,1950,"2017",6,0,99,3,1,1,"Xinhua",NA +111,141,1955,"2017",6,1,99,3,99,99,"Xinhua",NA +111,141,1959,"2017",5,1,NA,2,NA,90,"Xinhua",NA +111,141,1961,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,1962,"2017",5,1,80,2,80,50,"Xinhua",NA +111,141,1965,"2017",2,0,99,2,1,1,"Xinhua",NA +111,141,1969,"2017",2,1,40,3,40,80,"Xinhua",NA +111,141,1971,"2017",2,0,50,2,50,50,"Xinhua",NA +111,141,1973,"2017",5,0,NA,3,NA,50,"Xinhua",NA +111,141,1974,"2017",6,0,50,3,50,1,"Xinhua",NA +111,141,1982,"2017",5,0,NA,2,NA,NA,"Xinhua",NA +111,141,1992,"2017",2,1,30,2,30,99,"Xinhua",NA +111,141,1993,"2017",2,1,88,3,88,88,"Xinhua",NA +111,141,1994,"2017",3,1,1,3,1,1,"Xinhua",NA +111,141,1995,"2017",2,0,90,2,10,90,"Xinhua",NA +111,141,1996,"2017",5,0,50,3,50,99,"Xinhua",NA +111,141,1998,"2017",2,0,80,2,20,50,"Xinhua",NA +111,141,2003,"2017",3,0,50,2,50,50,"Xinhua",NA +111,141,2005,"2017",5,0,50,3,50,99,"Xinhua",NA +111,141,2006,"2017",5,0,80,3,20,20,"Xinhua",NA +111,141,2007,"2017",2,1,62,2,62,72,"Xinhua",NA +111,141,2008,"2017",4,1,40,2,40,50,"Xinhua",NA +111,141,2009,"2017",5,0,13,2,87,NA,"Xinhua",NA +111,141,2010,"2017",4,1,50,2,50,50,"Xinhua",NA +111,141,2011,"2017",6,1,15,3,15,55,"Xinhua",NA +111,141,2012,"2017",2,1,50,2,50,50,"Xinhua",NA +111,141,2017,"2017",5,0,50,3,50,50,"Xinhua",NA +111,141,2018,"2017",6,1,50,2,50,50,"Xinhua",NA +111,141,2019,"2017",2,0,70,2,30,50,"Xinhua",NA +111,141,2020,"2017",4,0,50,2,50,99,"Xinhua",NA +111,141,2021,"2017",2,0,70,3,30,40,"Xinhua",NA +111,141,2023,"2017",5,1,99,3,99,50,"Xinhua",NA +111,141,2024,"2017",6,0,50,3,50,50,"Xinhua",NA +111,141,2027,"2017",5,0,2,2,98,99,"Xinhua",NA +111,141,2029,"2017",3,1,99,3,99,NA,"Xinhua",NA +111,141,2031,"2017",2,0,99,3,1,50,"Xinhua",NA +111,141,2033,"2017",3,1,99,3,99,99,"Xinhua",NA +111,141,2035,"2017",5,0,90,3,10,10,"Xinhua",NA +111,141,2037,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,2038,"2017",3,0,10,2,90,50,"Xinhua",NA +111,141,2044,"2017",5,0,70,3,30,10,"Xinhua",NA +111,141,2048,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,2053,"2017",3,0,99,3,1,10,"Xinhua",NA +111,141,2055,"2017",5,0,40,3,60,1,"Xinhua",NA +111,141,2059,"2017",2,1,99,2,99,99,"Xinhua",NA +111,141,2061,"2017",3,0,99,2,1,1,"Xinhua",NA +111,141,2062,"2017",5,1,99,2,99,99,"Xinhua",NA +111,141,2065,"2017",6,0,99,2,1,1,"Xinhua",NA +111,141,2066,"2017",2,0,NA,2,NA,NA,"Xinhua",NA +111,141,2067,"2017",6,0,10,3,90,90,"Xinhua",NA +111,141,2068,"2017",2,1,99,3,99,99,"Xinhua",NA +111,141,2069,"2017",3,0,99,2,1,1,"Xinhua",NA +111,141,2070,"2017",6,1,99,3,99,99,"Xinhua",NA +111,141,2071,"2017",5,0,1,3,99,99,"Xinhua",NA +111,141,2072,"2017",6,1,80,3,80,80,"Xinhua",NA +111,141,2073,"2017",5,1,99,2,99,99,"Xinhua",NA +111,141,2077,"2017",5,1,99,2,99,99,"Xinhua",NA +111,141,2080,"2017",5,1,80,3,80,80,"Xinhua",NA +111,141,2084,"2017",2,0,NA,2,NA,50,"Xinhua",NA +111,141,2085,"2017",4,0,99,2,1,1,"Xinhua",NA +111,141,2086,"2017",6,0,99,3,1,1,"Xinhua",NA +111,141,2087,"2017",2,0,99,3,1,1,"Xinhua",NA +111,141,2088,"2017",3,0,70,3,30,35,"Xinhua",NA +111,141,2089,"2017",3,1,NA,2,NA,NA,"Xinhua",NA +111,141,2090,"2017",4,1,1,2,1,99,"Xinhua",NA +111,141,2092,"2017",5,0,1,3,99,99,"Xinhua",NA +111,141,2096,"2017",2,0,99,2,1,1,"Xinhua",NA +111,141,2100,"2017",4,1,50,2,50,50,"Xinhua",NA +111,141,2106,"2017",2,1,99,3,99,99,"Xinhua",NA +111,141,2109,"2017",2,1,99,2,99,99,"Xinhua",NA +111,141,2110,"2017",4,0,50,2,50,50,"Xinhua",NA +111,141,2111,"2017",5,0,90,2,10,90,"Xinhua",NA +111,141,2112,"2017",6,0,1,3,99,50,"Xinhua",NA +111,141,2113,"2017",2,0,99,2,1,NA,"Xinhua",NA +111,141,2116,"2017",3,1,1,3,1,80,"Xinhua",NA +111,141,2118,"2017",5,0,99,2,1,10,"Xinhua",NA +111,141,2123,"2017",4,1,50,2,50,NA,"Xinhua",NA +111,141,2127,"2017",3,0,60,3,40,40,"Xinhua",NA +111,141,2129,"2017",5,0,99,3,1,1,"Xinhua",NA +111,141,2131,"2017",6,0,1,3,99,99,"Xinhua",NA +111,141,2134,"2017",2,0,55,2,45,45,"Xinhua",NA +111,141,2135,"2017",5,1,80,2,80,NA,"Xinhua",NA +111,143,4,"2017",6,0,NA,3,NA,NA,"Nanfang Dushibao",NA +111,143,5,"2017",2,0,NA,3,NA,NA,"Nanfang Dushibao",NA +111,143,11,"2017",3,1,20,3,20,50,"Nanfang Dushibao",NA +111,143,19,"2017",5,1,30,3,30,50,"Nanfang Dushibao",NA +111,143,24,"2017",5,1,50,2,50,90,"Nanfang Dushibao",NA +111,143,25,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,28,"2017",6,1,80,2,80,80,"Nanfang Dushibao",NA +111,143,31,"2017",2,0,NA,2,NA,NA,"Nanfang Dushibao",NA +111,143,33,"2017",5,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,35,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,37,"2017",3,1,50,3,50,99,"Nanfang Dushibao",NA +111,143,43,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,49,"2017",2,0,20,2,80,60,"Nanfang Dushibao",NA +111,143,55,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +111,143,59,"2017",6,1,80,2,80,80,"Nanfang Dushibao",NA +111,143,60,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +111,143,61,"2017",2,1,1,2,1,90,"Nanfang Dushibao",NA +111,143,63,"2017",6,1,99,2,99,1,"Nanfang Dushibao",NA +111,143,67,"2017",5,0,3,3,97,99,"Nanfang Dushibao",NA +111,143,71,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,81,"2017",2,1,90,2,90,90,"Nanfang Dushibao",NA +111,143,82,"2017",3,0,90,3,10,10,"Nanfang Dushibao",NA +111,143,89,"2017",2,0,70,3,30,30,"Nanfang Dushibao",NA +111,143,90,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,93,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,99,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,103,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,104,"2017",3,1,1,3,1,50,"Nanfang Dushibao",NA +111,143,105,"2017",3,1,50,2,50,65,"Nanfang Dushibao",NA +111,143,108,"2017",3,1,0,2,0,0,"Nanfang Dushibao",NA +111,143,112,"2017",3,1,50,2,50,99,"Nanfang Dushibao",NA +111,143,118,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +111,143,122,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,129,"2017",2,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,132,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +111,143,133,"2017",3,0,30,2,70,70,"Nanfang Dushibao",NA +111,143,135,"2017",3,0,10,2,90,80,"Nanfang Dushibao",NA +111,143,142,"2017",2,1,40,2,40,20,"Nanfang Dushibao",NA +111,143,1170,"2017",3,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,1172,"2017",3,1,0,2,0,0,"Nanfang Dushibao",NA +111,143,1173,"2017",3,0,100,3,0,0,"Nanfang Dushibao",NA +111,143,1176,"2017",5,0,100,2,0,50,"Nanfang Dushibao",NA +111,143,1178,"2017",5,1,40,2,40,40,"Nanfang Dushibao",NA +111,143,1186,"2017",2,1,50,3,50,70,"Nanfang Dushibao",NA +111,143,1187,"2017",4,1,10,4,10,NA,"Nanfang Dushibao",NA +111,143,1189,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,1191,"2017",2,1,50,3,50,NA,"Nanfang Dushibao",NA +111,143,1195,"2017",2,0,99,3,1,10,"Nanfang Dushibao",NA +111,143,1198,"2017",5,1,20,3,20,20,"Nanfang Dushibao",NA +111,143,1199,"2017",3,0,100,3,0,0,"Nanfang Dushibao",NA +111,143,1201,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1206,"2017",5,0,40,3,60,70,"Nanfang Dushibao",NA +111,143,1207,"2017",5,0,99,3,1,50,"Nanfang Dushibao",NA +111,143,1211,"2017",5,0,40,3,60,60,"Nanfang Dushibao",NA +111,143,1214,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1215,"2017",3,0,40,3,60,80,"Nanfang Dushibao",NA +111,143,1216,"2017",3,0,40,3,60,70,"Nanfang Dushibao",NA +111,143,1217,"2017",3,0,99,3,1,99,"Nanfang Dushibao",NA +111,143,1218,"2017",5,0,20,2,80,80,"Nanfang Dushibao",NA +111,143,1219,"2017",2,1,99,2,99,50,"Nanfang Dushibao",NA +111,143,1221,"2017",4,0,20,4,80,NA,"Nanfang Dushibao",NA +111,143,1222,"2017",3,0,1,2,99,50,"Nanfang Dushibao",NA +111,143,1226,"2017",2,0,100,3,0,10,"Nanfang Dushibao",NA +111,143,1230,"2017",2,0,50,3,50,98,"Nanfang Dushibao",NA +111,143,1232,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +111,143,1240,"2017",3,0,1,3,99,99,"Nanfang Dushibao",NA +111,143,1241,"2017",3,1,52,3,52,99,"Nanfang Dushibao",NA +111,143,1245,"2017",2,1,0,2,0,0,"Nanfang Dushibao",NA +111,143,1250,"2017",2,0,50,3,50,10,"Nanfang Dushibao",NA +111,143,1252,"2017",3,1,NA,2,NA,NA,"Nanfang Dushibao",NA +111,143,1256,"2017",3,1,50,2,50,99,"Nanfang Dushibao",NA +111,143,1259,"2017",6,1,98,2,98,99,"Nanfang Dushibao",NA +111,143,1265,"2017",2,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1266,"2017",3,0,50,3,50,99,"Nanfang Dushibao",NA +111,143,1267,"2017",5,1,50,3,50,99,"Nanfang Dushibao",NA +111,143,1268,"2017",6,0,99,2,1,50,"Nanfang Dushibao",NA +111,143,1270,"2017",5,1,80,2,80,80,"Nanfang Dushibao",NA +111,143,1274,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,1278,"2017",6,0,40,2,60,70,"Nanfang Dushibao",NA +111,143,1279,"2017",5,0,100,3,0,0,"Nanfang Dushibao",NA +111,143,1280,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +111,143,1281,"2017",3,0,50,2,50,1,"Nanfang Dushibao",NA +111,143,1286,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1287,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +111,143,1288,"2017",6,1,99,3,99,50,"Nanfang Dushibao",NA +111,143,1292,"2017",2,1,50,2,50,19,"Nanfang Dushibao",NA +111,143,1298,"2017",3,0,50,3,50,93,"Nanfang Dushibao",NA +111,143,1302,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +111,143,1304,"2017",2,1,50,3,50,50,"Nanfang Dushibao",NA +111,143,1305,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +111,143,1306,"2017",5,0,99,2,1,NA,"Nanfang Dushibao",NA +111,143,1308,"2017",2,1,99,2,99,1,"Nanfang Dushibao",NA +111,143,1309,"2017",6,1,12,2,12,99,"Nanfang Dushibao",NA +111,143,1313,"2017",3,1,50,3,50,30,"Nanfang Dushibao",NA +111,143,1315,"2017",6,0,100,2,0,0,"Nanfang Dushibao",NA +111,143,1318,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1319,"2017",2,0,1,2,99,1,"Nanfang Dushibao",NA +111,143,1323,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1324,"2017",5,1,20,2,20,60,"Nanfang Dushibao",NA +111,143,1327,"2017",4,0,NA,4,NA,NA,"Nanfang Dushibao",NA +111,143,1329,"2017",2,1,NA,2,NA,NA,"Nanfang Dushibao",NA +111,143,1335,"2017",3,1,40,2,40,50,"Nanfang Dushibao",NA +111,143,1336,"2017",2,1,1,3,1,99,"Nanfang Dushibao",NA +111,143,1338,"2017",3,0,60,2,40,90,"Nanfang Dushibao",NA +111,143,1342,"2017",3,1,60,3,60,90,"Nanfang Dushibao",NA +111,143,1350,"2017",6,1,40,2,40,NA,"Nanfang Dushibao",NA +111,143,1351,"2017",5,0,80,3,20,20,"Nanfang Dushibao",NA +111,143,1352,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +111,143,1355,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1359,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +111,143,1361,"2017",2,1,0,2,0,50,"Nanfang Dushibao",NA +111,143,1364,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1365,"2017",3,1,1,2,1,99,"Nanfang Dushibao",NA +111,143,1367,"2017",2,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1368,"2017",6,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1373,"2017",5,0,1,3,99,50,"Nanfang Dushibao",NA +111,143,1374,"2017",6,0,1,3,99,1,"Nanfang Dushibao",NA +111,143,1381,"2017",5,0,15,2,85,78,"Nanfang Dushibao",NA +111,143,1384,"2017",6,0,83,3,17,18,"Nanfang Dushibao",NA +111,143,1385,"2017",3,0,90,2,10,15,"Nanfang Dushibao",NA +111,143,1386,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1389,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +111,143,1391,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1393,"2017",6,1,50,3,50,99,"Nanfang Dushibao",NA +111,143,1398,"2017",3,1,50,2,50,1,"Nanfang Dushibao",NA +111,143,1402,"2017",2,0,80,3,20,10,"Nanfang Dushibao",NA +111,143,1403,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1404,"2017",3,1,40,2,40,80,"Nanfang Dushibao",NA +111,143,1405,"2017",2,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,1409,"2017",3,1,40,3,40,60,"Nanfang Dushibao",NA +111,143,1410,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1412,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +111,143,1415,"2017",6,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1416,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1423,"2017",2,1,NA,3,NA,50,"Nanfang Dushibao",NA +111,143,1424,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +111,143,1425,"2017",2,1,NA,2,NA,NA,"Nanfang Dushibao",NA +111,143,1426,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +111,143,1428,"2017",2,0,NA,3,NA,11,"Nanfang Dushibao",NA +111,143,1429,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1431,"2017",6,1,NA,3,NA,NA,"Nanfang Dushibao",NA +111,143,1433,"2017",2,0,90,3,10,20,"Nanfang Dushibao",NA +111,143,1434,"2017",3,1,1,2,1,99,"Nanfang Dushibao",NA +111,143,1435,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1440,"2017",3,1,74,2,74,70,"Nanfang Dushibao",NA +111,143,1444,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +111,143,1447,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1449,"2017",6,0,50,3,50,1,"Nanfang Dushibao",NA +111,143,1451,"2017",3,0,50,3,50,42,"Nanfang Dushibao",NA +111,143,1452,"2017",2,1,1,2,1,99,"Nanfang Dushibao",NA +111,143,1454,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1455,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +111,143,1457,"2017",2,1,50,2,50,99,"Nanfang Dushibao",NA +111,143,1462,"2017",2,1,80,3,80,20,"Nanfang Dushibao",NA +111,143,1469,"2017",6,1,50,3,50,99,"Nanfang Dushibao",NA +111,143,1471,"2017",5,1,99,3,99,1,"Nanfang Dushibao",NA +111,143,1475,"2017",3,0,NA,2,NA,1,"Nanfang Dushibao",NA +111,143,1476,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +111,143,1479,"2017",4,1,5,4,5,NA,"Nanfang Dushibao",NA +111,143,1480,"2017",2,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,1483,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,1484,"2017",6,1,NA,2,NA,NA,"Nanfang Dushibao",NA +111,143,1486,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,1488,"2017",5,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,1493,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1496,"2017",4,0,NA,4,NA,NA,"Nanfang Dushibao",NA +111,143,1497,"2017",6,0,10,2,90,10,"Nanfang Dushibao",NA +111,143,1498,"2017",6,0,50,3,50,99,"Nanfang Dushibao",NA +111,143,1501,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1505,"2017",3,0,1,3,99,NA,"Nanfang Dushibao",NA +111,143,1507,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +111,143,1508,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1511,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +111,143,1513,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,1518,"2017",2,1,99,2,99,1,"Nanfang Dushibao",NA +111,143,1519,"2017",2,1,55,3,55,55,"Nanfang Dushibao",NA +111,143,1529,"2017",3,0,60,3,40,1,"Nanfang Dushibao",NA +111,143,1532,"2017",4,0,20,4,80,NA,"Nanfang Dushibao",NA +111,143,1533,"2017",5,0,99,3,1,50,"Nanfang Dushibao",NA +111,143,1536,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1538,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +111,143,1539,"2017",6,0,56,3,44,44,"Nanfang Dushibao",NA +111,143,1542,"2017",3,1,90,2,90,90,"Nanfang Dushibao",NA +111,143,1545,"2017",2,1,1,3,1,99,"Nanfang Dushibao",NA +111,143,1550,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1561,"2017",2,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1565,"2017",3,1,1,3,1,99,"Nanfang Dushibao",NA +111,143,1574,"2017",2,0,1,3,99,NA,"Nanfang Dushibao",NA +111,143,1575,"2017",2,1,0,2,0,100,"Nanfang Dushibao",NA +111,143,1576,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1578,"2017",3,0,99,3,1,50,"Nanfang Dushibao",NA +111,143,1582,"2017",2,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1584,"2017",6,1,50,2,50,99,"Nanfang Dushibao",NA +111,143,1585,"2017",2,0,90,2,10,10,"Nanfang Dushibao",NA +111,143,1588,"2017",3,0,30,2,70,50,"Nanfang Dushibao",NA +111,143,1591,"2017",3,1,NA,2,NA,50,"Nanfang Dushibao",NA +111,143,1592,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1593,"2017",2,1,NA,2,NA,88,"Nanfang Dushibao",NA +111,143,1594,"2017",6,1,NA,2,NA,NA,"Nanfang Dushibao",NA +111,143,1599,"2017",5,1,19,3,19,99,"Nanfang Dushibao",NA +111,143,1605,"2017",2,0,99,2,1,NA,"Nanfang Dushibao",NA +111,143,1606,"2017",2,0,50,3,50,50,"Nanfang Dushibao",NA +111,143,1610,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1615,"2017",3,0,NA,3,NA,50,"Nanfang Dushibao",NA +111,143,1619,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1620,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +111,143,1622,"2017",2,0,80,2,20,40,"Nanfang Dushibao",NA +111,143,1624,"2017",2,0,NA,2,NA,50,"Nanfang Dushibao",NA +111,143,1625,"2017",4,0,80,4,20,NA,"Nanfang Dushibao",NA +111,143,1626,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +111,143,1627,"2017",3,0,70,3,30,70,"Nanfang Dushibao",NA +111,143,1628,"2017",2,0,30,3,70,10,"Nanfang Dushibao",NA +111,143,1633,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1634,"2017",6,0,40,3,60,60,"Nanfang Dushibao",NA +111,143,1640,"2017",2,1,0,2,0,50,"Nanfang Dushibao",NA +111,143,1644,"2017",2,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,1650,"2017",6,0,50,2,50,62,"Nanfang Dushibao",NA +111,143,1651,"2017",6,0,50,2,50,1,"Nanfang Dushibao",NA +111,143,1653,"2017",3,1,NA,2,NA,50,"Nanfang Dushibao",NA +111,143,1655,"2017",5,0,100,2,0,0,"Nanfang Dushibao",NA +111,143,1656,"2017",2,1,70,3,70,80,"Nanfang Dushibao",NA +111,143,1657,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1659,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +111,143,1660,"2017",3,0,NA,2,NA,1,"Nanfang Dushibao",NA +111,143,1662,"2017",5,0,50,3,50,10,"Nanfang Dushibao",NA +111,143,1665,"2017",3,0,8,2,92,NA,"Nanfang Dushibao",NA +111,143,1666,"2017",2,0,NA,2,NA,10,"Nanfang Dushibao",NA +111,143,1668,"2017",5,1,1,3,1,99,"Nanfang Dushibao",NA +111,143,1669,"2017",2,1,15,3,15,20,"Nanfang Dushibao",NA +111,143,1673,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +111,143,1679,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1681,"2017",5,1,NA,2,NA,NA,"Nanfang Dushibao",NA +111,143,1682,"2017",5,0,90,3,10,10,"Nanfang Dushibao",NA +111,143,1683,"2017",2,1,90,3,90,90,"Nanfang Dushibao",NA +111,143,1684,"2017",5,1,90,2,90,99,"Nanfang Dushibao",NA +111,143,1688,"2017",5,1,80,3,80,80,"Nanfang Dushibao",NA +111,143,1691,"2017",5,1,50,2,50,NA,"Nanfang Dushibao",NA +111,143,1692,"2017",3,0,99,2,1,45,"Nanfang Dushibao",NA +111,143,1697,"2017",2,1,50,2,50,60,"Nanfang Dushibao",NA +111,143,1701,"2017",3,1,40,2,40,80,"Nanfang Dushibao",NA +111,143,1704,"2017",3,1,0,3,0,0,"Nanfang Dushibao",NA +111,143,1705,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +111,143,1707,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +111,143,1711,"2017",2,0,NA,2,NA,91,"Nanfang Dushibao",NA +111,143,1713,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1714,"2017",3,1,40,2,40,20,"Nanfang Dushibao",NA +111,143,1718,"2017",3,1,48,3,48,99,"Nanfang Dushibao",NA +111,143,1719,"2017",4,0,90,4,10,NA,"Nanfang Dushibao",NA +111,143,1720,"2017",6,0,40,2,60,90,"Nanfang Dushibao",NA +111,143,1730,"2017",5,1,1,2,1,10,"Nanfang Dushibao",NA +111,143,1732,"2017",6,1,NA,3,NA,NA,"Nanfang Dushibao",NA +111,143,1737,"2017",4,0,80,4,20,NA,"Nanfang Dushibao",NA +111,143,1749,"2017",2,1,50,3,50,99,"Nanfang Dushibao",NA +111,143,1750,"2017",2,0,99,3,1,99,"Nanfang Dushibao",NA +111,143,1755,"2017",5,1,1,3,1,30,"Nanfang Dushibao",NA +111,143,1758,"2017",3,1,69,3,69,49,"Nanfang Dushibao",NA +111,143,1762,"2017",3,0,7,3,93,1,"Nanfang Dushibao",NA +111,143,1766,"2017",5,1,99,3,99,1,"Nanfang Dushibao",NA +111,143,1767,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1771,"2017",4,0,89,4,11,NA,"Nanfang Dushibao",NA +111,143,1773,"2017",6,0,87,3,13,NA,"Nanfang Dushibao",NA +111,143,1777,"2017",6,0,99,2,1,30,"Nanfang Dushibao",NA +111,143,1779,"2017",2,0,83,2,17,17,"Nanfang Dushibao",NA +111,143,1781,"2017",5,1,99,3,99,98,"Nanfang Dushibao",NA +111,143,1783,"2017",2,1,99,2,99,1,"Nanfang Dushibao",NA +111,143,1785,"2017",3,1,93,3,93,97,"Nanfang Dushibao",NA +111,143,1786,"2017",3,1,76,2,76,88,"Nanfang Dushibao",NA +111,143,1794,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +111,143,1802,"2017",6,1,99,3,99,97,"Nanfang Dushibao",NA +111,143,1803,"2017",6,0,88,3,12,17,"Nanfang Dushibao",NA +111,143,1804,"2017",5,1,99,3,99,NA,"Nanfang Dushibao",NA +111,143,1805,"2017",6,0,79,2,21,1,"Nanfang Dushibao",NA +111,143,1808,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1809,"2017",6,0,50,2,50,1,"Nanfang Dushibao",NA +111,143,1810,"2017",2,0,75,3,25,30,"Nanfang Dushibao",NA +111,143,1813,"2017",2,1,50,3,50,1,"Nanfang Dushibao",NA +111,143,1814,"2017",2,0,80,3,20,NA,"Nanfang Dushibao",NA +111,143,1815,"2017",2,0,70,2,30,60,"Nanfang Dushibao",NA +111,143,1816,"2017",5,1,90,3,90,80,"Nanfang Dushibao",NA +111,143,1822,"2017",4,1,50,4,50,NA,"Nanfang Dushibao",NA +111,143,1824,"2017",5,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,1825,"2017",3,0,1,3,99,1,"Nanfang Dushibao",NA +111,143,1829,"2017",6,0,1,3,99,99,"Nanfang Dushibao",NA +111,143,1830,"2017",3,0,40,3,60,40,"Nanfang Dushibao",NA +111,143,1831,"2017",3,0,50,2,50,99,"Nanfang Dushibao",NA +111,143,1833,"2017",2,1,2,2,2,80,"Nanfang Dushibao",NA +111,143,1836,"2017",6,1,5,3,5,80,"Nanfang Dushibao",NA +111,143,1837,"2017",5,0,10,3,90,100,"Nanfang Dushibao",NA +111,143,1838,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +111,143,1839,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,1840,"2017",2,1,20,2,20,80,"Nanfang Dushibao",NA +111,143,1841,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +111,143,1845,"2017",2,1,50,3,50,99,"Nanfang Dushibao",NA +111,143,1848,"2017",5,0,50,2,50,99,"Nanfang Dushibao",NA +111,143,1851,"2017",3,1,1,2,1,99,"Nanfang Dushibao",NA +111,143,1852,"2017",5,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,1855,"2017",3,1,99,2,99,1,"Nanfang Dushibao",NA +111,143,1858,"2017",5,1,50,2,50,99,"Nanfang Dushibao",NA +111,143,1863,"2017",2,1,90,2,90,80,"Nanfang Dushibao",NA +111,143,1864,"2017",3,1,NA,3,NA,50,"Nanfang Dushibao",NA +111,143,1868,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1869,"2017",3,1,100,3,100,100,"Nanfang Dushibao",NA +111,143,1877,"2017",3,1,90,3,90,99,"Nanfang Dushibao",NA +111,143,1883,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +111,143,1884,"2017",5,1,1,2,1,100,"Nanfang Dushibao",NA +111,143,1885,"2017",3,0,40,2,60,60,"Nanfang Dushibao",NA +111,143,1888,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,1889,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1896,"2017",5,0,99,2,1,50,"Nanfang Dushibao",NA +111,143,1902,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1903,"2017",3,1,99,2,99,1,"Nanfang Dushibao",NA +111,143,1905,"2017",2,1,50,3,50,80,"Nanfang Dushibao",NA +111,143,1906,"2017",3,0,99,2,1,20,"Nanfang Dushibao",NA +111,143,1910,"2017",6,0,1,3,99,1,"Nanfang Dushibao",NA +111,143,1912,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +111,143,1913,"2017",5,0,99,3,1,50,"Nanfang Dushibao",NA +111,143,1914,"2017",6,1,99,2,99,50,"Nanfang Dushibao",NA +111,143,1915,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +111,143,1917,"2017",6,0,1,2,99,50,"Nanfang Dushibao",NA +111,143,1924,"2017",3,0,0,3,100,100,"Nanfang Dushibao",NA +111,143,1927,"2017",6,1,1,2,1,40,"Nanfang Dushibao",NA +111,143,1932,"2017",2,0,1,3,99,50,"Nanfang Dushibao",NA +111,143,1935,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,1937,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,1938,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1939,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,1942,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1944,"2017",5,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,1945,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1948,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +111,143,1949,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1952,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1954,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +111,143,1957,"2017",6,0,99,2,1,91,"Nanfang Dushibao",NA +111,143,1963,"2017",5,0,99,2,1,10,"Nanfang Dushibao",NA +111,143,1964,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +111,143,1965,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +111,143,1966,"2017",4,0,90,4,10,NA,"Nanfang Dushibao",NA +111,143,1968,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,1970,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +111,143,1975,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1976,"2017",2,1,NA,2,NA,50,"Nanfang Dushibao",NA +111,143,1980,"2017",5,0,90,2,10,20,"Nanfang Dushibao",NA +111,143,1983,"2017",2,1,79,3,79,70,"Nanfang Dushibao",NA +111,143,1984,"2017",2,0,1,2,99,1,"Nanfang Dushibao",NA +111,143,1987,"2017",2,0,90,2,10,50,"Nanfang Dushibao",NA +111,143,1988,"2017",3,0,85,2,15,20,"Nanfang Dushibao",NA +111,143,1990,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +111,143,1991,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +111,143,1994,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +111,143,1997,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,1999,"2017",5,1,80,2,80,50,"Nanfang Dushibao",NA +111,143,2001,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,2002,"2017",2,0,99,2,1,50,"Nanfang Dushibao",NA +111,143,2007,"2017",2,1,92,3,92,62,"Nanfang Dushibao",NA +111,143,2013,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +111,143,2014,"2017",6,1,90,2,90,40,"Nanfang Dushibao",NA +111,143,2015,"2017",2,0,50,3,50,12,"Nanfang Dushibao",NA +111,143,2016,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,2018,"2017",6,1,50,3,50,50,"Nanfang Dushibao",NA +111,143,2019,"2017",2,0,80,3,20,30,"Nanfang Dushibao",NA +111,143,2021,"2017",2,0,60,2,40,90,"Nanfang Dushibao",NA +111,143,2022,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +111,143,2027,"2017",5,0,2,3,98,98,"Nanfang Dushibao",NA +111,143,2028,"2017",3,0,90,2,10,20,"Nanfang Dushibao",NA +111,143,2030,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +111,143,2038,"2017",3,0,1,3,99,90,"Nanfang Dushibao",NA +111,143,2041,"2017",4,0,100,4,0,NA,"Nanfang Dushibao",NA +111,143,2046,"2017",6,1,99,2,99,1,"Nanfang Dushibao",NA +111,143,2047,"2017",5,0,50,3,50,50,"Nanfang Dushibao",NA +111,143,2049,"2017",6,0,100,2,0,15,"Nanfang Dushibao",NA +111,143,2053,"2017",3,0,90,2,10,20,"Nanfang Dushibao",NA +111,143,2054,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,2056,"2017",4,0,80,4,20,NA,"Nanfang Dushibao",NA +111,143,2057,"2017",5,0,99,3,1,95,"Nanfang Dushibao",NA +111,143,2060,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,2063,"2017",3,0,99,2,1,50,"Nanfang Dushibao",NA +111,143,2064,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +111,143,2067,"2017",6,0,10,2,90,90,"Nanfang Dushibao",NA +111,143,2068,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,2072,"2017",6,1,80,2,80,50,"Nanfang Dushibao",NA +111,143,2073,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,2078,"2017",2,1,85,2,85,100,"Nanfang Dushibao",NA +111,143,2079,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +111,143,2084,"2017",2,0,99,3,1,NA,"Nanfang Dushibao",NA +111,143,2086,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +111,143,2087,"2017",2,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,2091,"2017",3,0,99,2,1,50,"Nanfang Dushibao",NA +111,143,2095,"2017",3,1,20,2,20,75,"Nanfang Dushibao",NA +111,143,2097,"2017",5,0,NA,2,NA,1,"Nanfang Dushibao",NA +111,143,2099,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,2103,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +111,143,2104,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +111,143,2107,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,2108,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +111,143,2112,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +111,143,2115,"2017",2,1,1,3,1,99,"Nanfang Dushibao",NA +111,143,2119,"2017",2,1,50,2,50,50,"Nanfang Dushibao",NA +111,143,2121,"2017",5,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,2124,"2017",4,1,1,4,1,NA,"Nanfang Dushibao",NA +111,143,2125,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +111,143,2127,"2017",3,0,60,2,40,40,"Nanfang Dushibao",NA +111,143,2129,"2017",5,0,99,2,1,99,"Nanfang Dushibao",NA +111,143,2133,"2017",6,1,1,2,1,99,"Nanfang Dushibao",NA +111,143,2134,"2017",2,0,3,3,97,45,"Nanfang Dushibao",NA +111,143,2135,"2017",5,1,80,3,80,80,"Nanfang Dushibao",NA +112,NA,1,"2017",4,0,90,1,10,NA,NA,NA +112,NA,2,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,2,"2017",1,0,NA,2,NA,NA,NA,NA +112,NA,2,"2017",1,0,NA,4,NA,NA,NA,NA +112,NA,2,"2017",1,0,NA,3,NA,NA,NA,NA +112,NA,3,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,4,"2017",2,0,NA,1,NA,NA,NA,NA +112,NA,5,"2017",3,1,NA,1,NA,NA,NA,NA +112,NA,6,"2017",2,0,100,1,0,NA,NA,NA +112,NA,7,"2017",2,1,100,1,100,NA,NA,NA +112,NA,8,"2017",4,1,50,1,50,NA,NA,NA +112,NA,9,"2017",5,0,99,1,1,NA,NA,NA +112,NA,10,"2017",3,0,80,1,20,NA,NA,NA +112,NA,11,"2017",1,1,99,4,99,99,NA,NA +112,NA,11,"2017",1,1,99,3,99,99,NA,NA +112,NA,11,"2017",1,1,99,1,99,NA,NA,NA +112,NA,11,"2017",1,1,99,2,99,99,NA,NA +112,NA,12,"2017",5,0,1,1,99,NA,NA,NA +112,NA,13,"2017",3,0,60,1,40,NA,NA,NA +112,NA,14,"2017",5,0,1,1,99,NA,NA,NA +112,NA,15,"2017",1,1,99,1,99,NA,NA,NA +112,NA,15,"2017",1,1,99,3,99,99,NA,NA +112,NA,15,"2017",1,1,99,2,99,99,NA,NA +112,NA,15,"2017",1,1,99,4,99,99,NA,NA +112,NA,16,"2017",2,0,99,1,1,NA,NA,NA +112,NA,17,"2017",6,1,1,1,1,NA,NA,NA +112,NA,18,"2017",6,0,99,1,1,NA,NA,NA +112,NA,19,"2017",4,0,70,1,30,NA,NA,NA +112,NA,20,"2017",5,0,1,1,99,NA,NA,NA +112,NA,21,"2017",3,0,50,1,50,NA,NA,NA +112,NA,22,"2017",3,1,99,1,99,NA,NA,NA +112,NA,23,"2017",3,0,50,1,50,NA,NA,NA +112,NA,24,"2017",4,0,50,1,50,NA,NA,NA +112,NA,25,"2017",4,1,99,1,99,NA,NA,NA +112,NA,26,"2017",6,1,50,1,50,NA,NA,NA +112,NA,27,"2017",3,0,90,1,10,NA,NA,NA +112,NA,28,"2017",3,0,90,1,10,NA,NA,NA +112,NA,29,"2017",2,1,30,1,30,NA,NA,NA +112,NA,30,"2017",3,1,NA,1,NA,NA,NA,NA +112,NA,31,"2017",1,1,NA,3,NA,NA,NA,NA +112,NA,31,"2017",1,1,NA,2,NA,NA,NA,NA +112,NA,31,"2017",1,1,NA,1,NA,NA,NA,NA +112,NA,31,"2017",1,1,NA,4,NA,NA,NA,NA +112,NA,32,"2017",2,1,NA,1,NA,NA,NA,NA +112,NA,33,"2017",4,1,50,1,50,NA,NA,NA +112,NA,34,"2017",6,1,99,1,99,NA,NA,NA +112,NA,35,"2017",6,0,1,1,99,NA,NA,NA +112,NA,36,"2017",5,0,60,1,40,NA,NA,NA +112,NA,37,"2017",2,0,1,1,99,NA,NA,NA +112,NA,38,"2017",2,0,99,1,1,NA,NA,NA +112,NA,39,"2017",3,0,40,1,60,NA,NA,NA +112,NA,40,"2017",4,1,98,1,98,NA,NA,NA +112,NA,41,"2017",6,0,44,1,56,NA,NA,NA +112,NA,42,"2017",6,1,60,1,60,NA,NA,NA +112,NA,43,"2017",4,0,50,1,50,NA,NA,NA +112,NA,44,"2017",5,0,80,1,20,NA,NA,NA +112,NA,45,"2017",1,1,55,1,55,NA,NA,NA +112,NA,45,"2017",1,1,44,3,44,44,NA,NA +112,NA,45,"2017",1,1,44,2,44,55,NA,NA +112,NA,45,"2017",1,1,22,4,22,44,NA,NA +112,NA,46,"2017",6,0,50,1,50,NA,NA,NA +112,NA,47,"2017",2,0,99,1,1,NA,NA,NA +112,NA,48,"2017",1,0,10,1,90,NA,NA,NA +112,NA,48,"2017",1,0,10,4,90,1,NA,NA +112,NA,48,"2017",1,0,10,2,90,90,NA,NA +112,NA,48,"2017",1,0,99,3,1,90,NA,NA +112,NA,49,"2017",1,1,40,2,40,40,NA,NA +112,NA,49,"2017",1,1,40,4,40,30,NA,NA +112,NA,49,"2017",1,1,30,3,30,40,NA,NA +112,NA,49,"2017",1,1,40,1,40,NA,NA,NA +112,NA,50,"2017",2,0,20,1,80,NA,NA,NA +112,NA,51,"2017",3,0,50,1,50,NA,NA,NA +112,NA,52,"2017",5,1,20,1,20,NA,NA,NA +112,NA,53,"2017",3,1,90,1,90,NA,NA,NA +112,NA,54,"2017",1,0,1,4,99,99,NA,NA +112,NA,54,"2017",1,0,50,1,50,NA,NA,NA +112,NA,54,"2017",1,0,1,3,99,99,NA,NA +112,NA,54,"2017",1,0,1,2,99,50,NA,NA +112,NA,55,"2017",1,1,99,2,99,99,NA,NA +112,NA,55,"2017",1,1,99,3,99,99,NA,NA +112,NA,55,"2017",1,1,99,1,99,NA,NA,NA +112,NA,55,"2017",1,1,99,4,99,99,NA,NA +112,NA,56,"2017",6,1,60,1,60,NA,NA,NA +112,NA,57,"2017",3,1,65,1,65,NA,NA,NA +112,NA,58,"2017",3,0,50,1,50,NA,NA,NA +112,NA,59,"2017",3,1,80,1,80,NA,NA,NA +112,NA,60,"2017",3,1,50,1,50,NA,NA,NA +112,NA,61,"2017",3,1,99,1,99,NA,NA,NA +112,NA,62,"2017",4,1,99,1,99,NA,NA,NA +112,NA,63,"2017",1,0,99,1,1,NA,NA,NA +112,NA,63,"2017",1,0,99,3,1,NA,NA,NA +112,NA,63,"2017",1,0,NA,2,NA,1,NA,NA +112,NA,63,"2017",1,0,99,4,1,1,NA,NA +112,NA,64,"2017",3,1,99,1,99,NA,NA,NA +112,NA,65,"2017",2,0,50,1,50,NA,NA,NA +112,NA,66,"2017",5,0,70,1,30,NA,NA,NA +112,NA,67,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,67,"2017",1,0,30,2,70,NA,NA,NA +112,NA,67,"2017",1,0,20,3,80,70,NA,NA +112,NA,67,"2017",1,0,10,4,90,80,NA,NA +112,NA,68,"2017",3,1,80,1,80,NA,NA,NA +112,NA,69,"2017",4,0,99,1,1,NA,NA,NA +112,NA,70,"2017",5,1,90,1,90,NA,NA,NA +112,NA,71,"2017",5,1,99,1,99,NA,NA,NA +112,NA,72,"2017",5,1,99,1,99,NA,NA,NA +112,NA,73,"2017",2,0,99,1,1,NA,NA,NA +112,NA,74,"2017",3,1,70,1,70,NA,NA,NA +112,NA,75,"2017",3,1,50,1,50,NA,NA,NA +112,NA,76,"2017",2,0,90,1,10,NA,NA,NA +112,NA,77,"2017",2,1,1,1,1,NA,NA,NA +112,NA,78,"2017",3,0,99,1,1,NA,NA,NA +112,NA,79,"2017",3,1,50,1,50,NA,NA,NA +112,NA,80,"2017",1,1,99,1,99,NA,NA,NA +112,NA,80,"2017",1,1,99,3,99,99,NA,NA +112,NA,80,"2017",1,1,99,2,99,99,NA,NA +112,NA,80,"2017",1,1,99,4,99,99,NA,NA +112,NA,81,"2017",3,1,30,1,30,NA,NA,NA +112,NA,82,"2017",2,0,10,1,90,NA,NA,NA +112,NA,83,"2017",1,0,NA,2,NA,10,NA,NA +112,NA,83,"2017",1,0,90,1,10,NA,NA,NA +112,NA,83,"2017",1,0,60,4,40,30,NA,NA +112,NA,83,"2017",1,0,70,3,30,NA,NA,NA +112,NA,84,"2017",3,0,50,1,50,NA,NA,NA +112,NA,85,"2017",4,1,100,1,100,NA,NA,NA +112,NA,86,"2017",1,0,20,2,80,40,NA,NA +112,NA,86,"2017",1,0,1,4,99,100,NA,NA +112,NA,86,"2017",1,0,60,1,40,NA,NA,NA +112,NA,86,"2017",1,0,0,3,100,80,NA,NA +112,NA,87,"2017",3,0,99,1,1,NA,NA,NA +112,NA,88,"2017",2,1,20,1,20,NA,NA,NA +112,NA,89,"2017",1,1,50,1,50,NA,NA,NA +112,NA,89,"2017",1,1,70,4,70,80,NA,NA +112,NA,89,"2017",1,1,70,2,70,50,NA,NA +112,NA,89,"2017",1,1,80,3,80,70,NA,NA +112,NA,90,"2017",1,0,1,4,99,99,NA,NA +112,NA,90,"2017",1,0,1,3,99,1,NA,NA +112,NA,90,"2017",1,0,99,1,1,NA,NA,NA +112,NA,90,"2017",1,0,99,2,1,1,NA,NA +112,NA,91,"2017",4,0,100,1,0,NA,NA,NA +112,NA,92,"2017",2,1,50,1,50,NA,NA,NA +112,NA,93,"2017",4,0,99,1,1,NA,NA,NA +112,NA,94,"2017",2,1,100,1,100,NA,NA,NA +112,NA,95,"2017",2,0,100,1,0,NA,NA,NA +112,NA,96,"2017",2,0,1,1,99,NA,NA,NA +112,NA,97,"2017",3,0,99,1,1,NA,NA,NA +112,NA,98,"2017",3,1,99,1,99,NA,NA,NA +112,NA,99,"2017",1,1,90,1,90,NA,NA,NA +112,NA,99,"2017",1,1,99,4,99,NA,NA,NA +112,NA,99,"2017",1,1,NA,3,NA,99,NA,NA +112,NA,99,"2017",1,1,99,2,99,90,NA,NA +112,NA,100,"2017",2,0,99,1,1,NA,NA,NA +112,NA,101,"2017",1,0,1,4,99,1,NA,NA +112,NA,101,"2017",1,0,99,1,1,NA,NA,NA +112,NA,101,"2017",1,0,99,3,1,1,NA,NA +112,NA,101,"2017",1,0,99,2,1,1,NA,NA +112,NA,102,"2017",1,0,0,3,100,NA,NA,NA +112,NA,102,"2017",1,0,NA,2,NA,40,NA,NA +112,NA,102,"2017",1,0,60,1,40,NA,NA,NA +112,NA,102,"2017",1,0,NA,4,NA,100,NA,NA +112,NA,103,"2017",4,1,99,1,99,NA,NA,NA +112,NA,104,"2017",1,0,50,3,50,50,NA,NA +112,NA,104,"2017",1,0,50,4,50,50,NA,NA +112,NA,104,"2017",1,0,50,1,50,NA,NA,NA +112,NA,104,"2017",1,0,50,2,50,50,NA,NA +112,NA,105,"2017",1,0,99,2,1,1,NA,NA +112,NA,105,"2017",1,0,100,4,0,2,NA,NA +112,NA,105,"2017",1,0,99,1,1,NA,NA,NA +112,NA,105,"2017",1,0,98,3,2,1,NA,NA +112,NA,106,"2017",3,0,100,1,0,NA,NA,NA +112,NA,107,"2017",1,0,35,1,65,NA,NA,NA +112,NA,107,"2017",1,0,88,3,12,44,NA,NA +112,NA,107,"2017",1,0,88,4,12,12,NA,NA +112,NA,107,"2017",1,0,56,2,44,65,NA,NA +112,NA,108,"2017",2,1,100,1,100,NA,NA,NA +112,NA,109,"2017",4,0,90,1,10,NA,NA,NA +112,NA,110,"2017",2,1,100,1,100,NA,NA,NA +112,NA,112,"2017",2,1,1,1,1,NA,NA,NA +112,NA,113,"2017",3,1,75,1,75,NA,NA,NA +112,NA,114,"2017",2,0,80,1,20,NA,NA,NA +112,NA,115,"2017",2,1,90,1,90,NA,NA,NA +112,NA,116,"2017",3,0,1,1,99,NA,NA,NA +112,NA,117,"2017",4,1,99,1,99,NA,NA,NA +112,NA,118,"2017",2,1,50,1,50,NA,NA,NA +112,NA,119,"2017",2,1,35,1,35,NA,NA,NA +112,NA,120,"2017",4,1,99,1,99,NA,NA,NA +112,NA,121,"2017",1,0,99,1,1,NA,NA,NA +112,NA,121,"2017",1,0,1,4,99,99,NA,NA +112,NA,121,"2017",1,0,1,3,99,1,NA,NA +112,NA,121,"2017",1,0,99,2,1,1,NA,NA +112,NA,122,"2017",4,0,99,1,1,NA,NA,NA +112,NA,123,"2017",1,0,25,2,75,50,NA,NA +112,NA,123,"2017",1,0,1,3,99,75,NA,NA +112,NA,123,"2017",1,0,99,4,1,99,NA,NA +112,NA,123,"2017",1,0,50,1,50,NA,NA,NA +112,NA,124,"2017",2,1,1,1,1,NA,NA,NA +112,NA,125,"2017",1,1,99,2,99,1,NA,NA +112,NA,125,"2017",1,1,99,3,99,99,NA,NA +112,NA,125,"2017",1,1,99,4,99,99,NA,NA +112,NA,125,"2017",1,1,1,1,1,NA,NA,NA +112,NA,126,"2017",2,0,50,1,50,NA,NA,NA +112,NA,127,"2017",3,1,50,1,50,NA,NA,NA +112,NA,128,"2017",1,1,99,4,99,99,NA,NA +112,NA,128,"2017",1,1,99,3,99,99,NA,NA +112,NA,128,"2017",1,1,99,2,99,99,NA,NA +112,NA,128,"2017",1,1,99,1,99,NA,NA,NA +112,NA,129,"2017",3,1,99,1,99,NA,NA,NA +112,NA,130,"2017",3,1,99,1,99,NA,NA,NA +112,NA,131,"2017",4,0,99,1,1,NA,NA,NA +112,NA,132,"2017",3,1,99,1,99,NA,NA,NA +112,NA,133,"2017",4,1,70,1,70,NA,NA,NA +112,NA,134,"2017",1,1,100,3,100,100,NA,NA +112,NA,134,"2017",1,1,100,2,100,99,NA,NA +112,NA,134,"2017",1,1,100,4,100,100,NA,NA +112,NA,134,"2017",1,1,99,1,99,NA,NA,NA +112,NA,135,"2017",4,1,80,1,80,NA,NA,NA +112,NA,136,"2017",4,0,99,1,1,NA,NA,NA +112,NA,137,"2017",1,0,50,1,50,NA,NA,NA +112,NA,137,"2017",1,0,1,2,99,50,NA,NA +112,NA,137,"2017",1,0,1,3,99,99,NA,NA +112,NA,137,"2017",1,0,1,4,99,99,NA,NA +112,NA,138,"2017",4,1,1,1,1,NA,NA,NA +112,NA,139,"2017",2,0,1,1,99,NA,NA,NA +112,NA,140,"2017",4,1,65,1,65,NA,NA,NA +112,NA,141,"2017",2,1,100,1,100,NA,NA,NA +112,NA,142,"2017",3,1,40,1,40,NA,NA,NA +112,NA,143,"2017",1,1,12,4,12,22,NA,NA +112,NA,143,"2017",1,1,22,2,22,30,NA,NA +112,NA,143,"2017",1,1,30,1,30,NA,NA,NA +112,NA,143,"2017",1,1,22,3,22,22,NA,NA +112,NA,1169,"2017",5,1,90,1,90,NA,NA,NA +112,NA,1170,"2017",2,0,100,1,0,NA,NA,NA +112,NA,1171,"2017",5,1,100,1,100,NA,NA,NA +112,NA,1172,"2017",2,0,100,1,0,NA,NA,NA +112,NA,1173,"2017",6,1,100,1,100,NA,NA,NA +112,NA,1174,"2017",2,0,100,1,0,NA,NA,NA +112,NA,1175,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1176,"2017",3,1,100,1,100,NA,NA,NA +112,NA,1177,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1178,"2017",1,1,40,1,40,NA,NA,NA +112,NA,1178,"2017",1,1,50,2,50,40,NA,NA +112,NA,1178,"2017",1,1,48,4,48,50,NA,NA +112,NA,1178,"2017",1,1,50,3,50,50,NA,NA +112,NA,1179,"2017",5,1,20,1,20,NA,NA,NA +112,NA,1180,"2017",1,1,90,1,90,NA,NA,NA +112,NA,1180,"2017",1,1,80,4,80,99,NA,NA +112,NA,1180,"2017",1,1,99,2,99,90,NA,NA +112,NA,1180,"2017",1,1,99,3,99,99,NA,NA +112,NA,1181,"2017",3,1,100,1,100,NA,NA,NA +112,NA,1182,"2017",4,0,20,1,80,NA,NA,NA +112,NA,1183,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1184,"2017",2,0,NA,1,NA,NA,NA,NA +112,NA,1185,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1186,"2017",1,1,85,3,85,40,NA,NA +112,NA,1186,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1186,"2017",1,1,40,2,40,50,NA,NA +112,NA,1186,"2017",1,1,100,4,100,85,NA,NA +112,NA,1187,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1188,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1189,"2017",1,0,40,2,60,NA,NA,NA +112,NA,1189,"2017",1,0,40,4,60,20,NA,NA +112,NA,1189,"2017",1,0,80,3,20,60,NA,NA +112,NA,1189,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1190,"2017",3,1,20,1,20,NA,NA,NA +112,NA,1191,"2017",6,1,NA,1,NA,NA,NA,NA +112,NA,1192,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1193,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1194,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1195,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1196,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1197,"2017",2,1,80,1,80,NA,NA,NA +112,NA,1198,"2017",4,1,10,1,10,NA,NA,NA +112,NA,1199,"2017",1,1,100,2,100,100,NA,NA +112,NA,1199,"2017",1,1,100,3,100,100,NA,NA +112,NA,1199,"2017",1,1,100,1,100,NA,NA,NA +112,NA,1199,"2017",1,1,100,4,100,100,NA,NA +112,NA,1200,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1201,"2017",6,0,1,1,99,NA,NA,NA +112,NA,1202,"2017",5,0,60,1,40,NA,NA,NA +112,NA,1203,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1204,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1205,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1206,"2017",6,1,30,1,30,NA,NA,NA +112,NA,1207,"2017",4,1,90,1,90,NA,NA,NA +112,NA,1208,"2017",6,1,100,1,100,NA,NA,NA +112,NA,1209,"2017",3,0,100,1,0,NA,NA,NA +112,NA,1210,"2017",1,1,40,1,40,NA,NA,NA +112,NA,1210,"2017",1,1,40,3,40,40,NA,NA +112,NA,1210,"2017",1,1,30,4,30,40,NA,NA +112,NA,1210,"2017",1,1,40,2,40,40,NA,NA +112,NA,1211,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1212,"2017",5,0,30,1,70,NA,NA,NA +112,NA,1213,"2017",6,0,30,1,70,NA,NA,NA +112,NA,1214,"2017",2,0,100,1,0,NA,NA,NA +112,NA,1215,"2017",1,0,30,2,70,80,NA,NA +112,NA,1215,"2017",1,0,40,3,60,70,NA,NA +112,NA,1215,"2017",1,0,40,4,60,60,NA,NA +112,NA,1215,"2017",1,0,20,1,80,NA,NA,NA +112,NA,1216,"2017",2,0,40,1,60,NA,NA,NA +112,NA,1217,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1218,"2017",4,1,20,1,20,NA,NA,NA +112,NA,1219,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1220,"2017",3,1,40,1,40,NA,NA,NA +112,NA,1221,"2017",1,0,30,2,70,60,NA,NA +112,NA,1221,"2017",1,0,30,4,70,60,NA,NA +112,NA,1221,"2017",1,0,40,1,60,NA,NA,NA +112,NA,1221,"2017",1,0,40,3,60,70,NA,NA +112,NA,1222,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1223,"2017",2,0,20,1,80,NA,NA,NA +112,NA,1224,"2017",1,1,99,3,99,75,NA,NA +112,NA,1224,"2017",1,1,75,2,75,50,NA,NA +112,NA,1224,"2017",1,1,99,4,99,99,NA,NA +112,NA,1224,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1225,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1226,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1227,"2017",1,1,100,4,100,100,NA,NA +112,NA,1227,"2017",1,1,100,3,100,85,NA,NA +112,NA,1227,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1227,"2017",1,1,85,2,85,50,NA,NA +112,NA,1228,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1229,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1230,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1231,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1232,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1233,"2017",1,0,1,3,99,1,NA,NA +112,NA,1233,"2017",1,0,99,4,1,99,NA,NA +112,NA,1233,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1233,"2017",1,0,99,2,1,50,NA,NA +112,NA,1234,"2017",3,1,80,1,80,NA,NA,NA +112,NA,1235,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1236,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1237,"2017",3,0,40,1,60,NA,NA,NA +112,NA,1238,"2017",6,1,10,1,10,NA,NA,NA +112,NA,1239,"2017",1,0,50,4,50,50,NA,NA +112,NA,1239,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1239,"2017",1,0,50,3,50,42,NA,NA +112,NA,1239,"2017",1,0,58,2,42,50,NA,NA +112,NA,1240,"2017",1,1,99,2,99,99,NA,NA +112,NA,1240,"2017",1,1,99,4,99,99,NA,NA +112,NA,1240,"2017",1,1,99,3,99,99,NA,NA +112,NA,1240,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1241,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1242,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1243,"2017",6,1,80,1,80,NA,NA,NA +112,NA,1244,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1245,"2017",6,0,100,1,0,NA,NA,NA +112,NA,1246,"2017",3,1,60,1,60,NA,NA,NA +112,NA,1247,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1248,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1249,"2017",4,0,1,1,99,NA,NA,NA +112,NA,1250,"2017",3,1,60,1,60,NA,NA,NA +112,NA,1251,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1252,"2017",6,0,NA,1,NA,NA,NA,NA +112,NA,1253,"2017",1,1,50,3,50,50,NA,NA +112,NA,1253,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1253,"2017",1,1,50,4,50,50,NA,NA +112,NA,1253,"2017",1,1,50,2,50,50,NA,NA +112,NA,1254,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1255,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1256,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1257,"2017",2,0,9,1,91,NA,NA,NA +112,NA,1258,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1259,"2017",1,1,95,2,95,99,NA,NA +112,NA,1259,"2017",1,1,99,3,99,95,NA,NA +112,NA,1259,"2017",1,1,99,4,99,99,NA,NA +112,NA,1259,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1260,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1261,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1262,"2017",1,0,99,2,1,NA,NA,NA +112,NA,1262,"2017",1,0,NA,4,NA,50,NA,NA +112,NA,1262,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1262,"2017",1,0,50,3,50,1,NA,NA +112,NA,1263,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1264,"2017",6,1,0,1,0,NA,NA,NA +112,NA,1265,"2017",1,0,1,2,99,99,NA,NA +112,NA,1265,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1265,"2017",1,0,100,3,0,99,NA,NA +112,NA,1265,"2017",1,0,100,4,0,0,NA,NA +112,NA,1266,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1267,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1268,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1269,"2017",4,0,1,1,99,NA,NA,NA +112,NA,1270,"2017",2,0,80,1,20,NA,NA,NA +112,NA,1271,"2017",3,1,66,1,66,NA,NA,NA +112,NA,1272,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1272,"2017",1,0,99,4,1,1,NA,NA +112,NA,1272,"2017",1,0,99,3,1,1,NA,NA +112,NA,1272,"2017",1,0,99,2,1,1,NA,NA +112,NA,1273,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1274,"2017",3,1,1,1,1,NA,NA,NA +112,NA,1275,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1276,"2017",2,1,1,1,1,NA,NA,NA +112,NA,1277,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1278,"2017",3,0,70,1,30,NA,NA,NA +112,NA,1279,"2017",6,0,90,1,10,NA,NA,NA +112,NA,1280,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1281,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1282,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1283,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1284,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1285,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1286,"2017",1,0,1,2,99,1,NA,NA +112,NA,1286,"2017",1,0,1,4,99,99,NA,NA +112,NA,1286,"2017",1,0,1,3,99,99,NA,NA +112,NA,1286,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1287,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1288,"2017",1,1,50,4,50,99,NA,NA +112,NA,1288,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1288,"2017",1,1,1,2,1,50,NA,NA +112,NA,1288,"2017",1,1,99,3,99,1,NA,NA +112,NA,1289,"2017",2,0,26,1,74,NA,NA,NA +112,NA,1290,"2017",4,0,80,1,20,NA,NA,NA +112,NA,1291,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1292,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1293,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1294,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1295,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1296,"2017",2,0,66,1,34,NA,NA,NA +112,NA,1297,"2017",4,0,95,1,5,NA,NA,NA +112,NA,1298,"2017",5,1,60,1,60,NA,NA,NA +112,NA,1299,"2017",2,1,100,1,100,NA,NA,NA +112,NA,1300,"2017",5,1,NA,1,NA,NA,NA,NA +112,NA,1301,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1302,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1303,"2017",4,1,3,1,3,NA,NA,NA +112,NA,1304,"2017",1,1,1,3,1,50,NA,NA +112,NA,1304,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1304,"2017",1,1,1,4,1,1,NA,NA +112,NA,1304,"2017",1,1,50,2,50,99,NA,NA +112,NA,1305,"2017",2,0,0,1,100,NA,NA,NA +112,NA,1306,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1307,"2017",3,1,45,1,45,NA,NA,NA +112,NA,1308,"2017",1,1,1,2,1,1,NA,NA +112,NA,1308,"2017",1,1,50,4,50,99,NA,NA +112,NA,1308,"2017",1,1,1,1,1,NA,NA,NA +112,NA,1308,"2017",1,1,99,3,99,1,NA,NA +112,NA,1309,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1310,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1311,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1311,"2017",1,0,50,4,50,1,NA,NA +112,NA,1311,"2017",1,0,99,2,1,1,NA,NA +112,NA,1311,"2017",1,0,99,3,1,1,NA,NA +112,NA,1312,"2017",1,0,99,3,1,45,NA,NA +112,NA,1312,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1312,"2017",1,0,55,2,45,1,NA,NA +112,NA,1312,"2017",1,0,50,4,50,1,NA,NA +112,NA,1313,"2017",1,0,80,4,20,30,NA,NA +112,NA,1313,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1313,"2017",1,0,70,3,30,30,NA,NA +112,NA,1313,"2017",1,0,70,2,30,NA,NA,NA +112,NA,1314,"2017",1,1,1,4,1,1,NA,NA +112,NA,1314,"2017",1,1,1,3,1,NA,NA,NA +112,NA,1314,"2017",1,1,NA,2,NA,NA,NA,NA +112,NA,1314,"2017",1,1,NA,1,NA,NA,NA,NA +112,NA,1315,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1316,"2017",3,0,NA,1,NA,NA,NA,NA +112,NA,1317,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1318,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1319,"2017",6,0,NA,1,NA,NA,NA,NA +112,NA,1320,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1321,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1322,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1323,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1324,"2017",4,1,40,1,40,NA,NA,NA +112,NA,1325,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1326,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1327,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1328,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1329,"2017",6,0,57,1,43,NA,NA,NA +112,NA,1330,"2017",6,0,100,1,0,NA,NA,NA +112,NA,1331,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1332,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1333,"2017",2,1,1,1,1,NA,NA,NA +112,NA,1334,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1335,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1336,"2017",1,1,99,3,99,99,NA,NA +112,NA,1336,"2017",1,1,99,4,99,99,NA,NA +112,NA,1336,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1336,"2017",1,1,99,2,99,50,NA,NA +112,NA,1337,"2017",1,1,99,3,99,50,NA,NA +112,NA,1337,"2017",1,1,1,4,1,99,NA,NA +112,NA,1337,"2017",1,1,50,2,50,50,NA,NA +112,NA,1337,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1338,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1339,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1340,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1341,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1342,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1343,"2017",1,0,1,4,99,99,NA,NA +112,NA,1343,"2017",1,0,1,3,99,99,NA,NA +112,NA,1343,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1343,"2017",1,0,1,2,99,99,NA,NA +112,NA,1344,"2017",4,1,30,1,30,NA,NA,NA +112,NA,1345,"2017",5,1,80,1,80,NA,NA,NA +112,NA,1346,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1347,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1348,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1349,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1350,"2017",3,1,40,1,40,NA,NA,NA +112,NA,1351,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1352,"2017",1,0,50,4,50,99,NA,NA +112,NA,1352,"2017",1,0,99,2,1,1,NA,NA +112,NA,1352,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1352,"2017",1,0,1,3,99,1,NA,NA +112,NA,1353,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1354,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1355,"2017",1,1,50,2,50,50,NA,NA +112,NA,1355,"2017",1,1,40,4,40,50,NA,NA +112,NA,1355,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1355,"2017",1,1,50,3,50,50,NA,NA +112,NA,1356,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1357,"2017",1,0,1,4,99,99,NA,NA +112,NA,1357,"2017",1,0,1,2,99,100,NA,NA +112,NA,1357,"2017",1,0,0,1,100,NA,NA,NA +112,NA,1357,"2017",1,0,1,3,99,99,NA,NA +112,NA,1358,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1359,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1360,"2017",2,1,80,1,80,NA,NA,NA +112,NA,1361,"2017",3,0,1,1,99,NA,NA,NA +112,NA,1362,"2017",2,0,20,1,80,NA,NA,NA +112,NA,1363,"2017",5,0,100,1,0,NA,NA,NA +112,NA,1364,"2017",1,0,99,2,1,99,NA,NA +112,NA,1364,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1364,"2017",1,0,99,4,1,99,NA,NA +112,NA,1364,"2017",1,0,1,3,99,1,NA,NA +112,NA,1365,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1366,"2017",3,1,1,1,1,NA,NA,NA +112,NA,1367,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1368,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1369,"2017",1,1,77,1,77,NA,NA,NA +112,NA,1369,"2017",1,1,99,4,99,90,NA,NA +112,NA,1369,"2017",1,1,50,2,50,77,NA,NA +112,NA,1369,"2017",1,1,90,3,90,50,NA,NA +112,NA,1370,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1371,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1372,"2017",6,1,24,1,24,NA,NA,NA +112,NA,1373,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1374,"2017",2,0,55,1,45,NA,NA,NA +112,NA,1375,"2017",6,0,80,1,20,NA,NA,NA +112,NA,1376,"2017",4,0,51,1,49,NA,NA,NA +112,NA,1377,"2017",2,0,20,1,80,NA,NA,NA +112,NA,1378,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1379,"2017",5,0,100,1,0,NA,NA,NA +112,NA,1380,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1381,"2017",6,0,22,1,78,NA,NA,NA +112,NA,1382,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1383,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1384,"2017",4,1,85,1,85,NA,NA,NA +112,NA,1385,"2017",2,1,40,1,40,NA,NA,NA +112,NA,1386,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1387,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1388,"2017",1,0,2,3,98,99,NA,NA +112,NA,1388,"2017",1,0,50,4,50,98,NA,NA +112,NA,1388,"2017",1,0,1,2,99,90,NA,NA +112,NA,1388,"2017",1,0,10,1,90,NA,NA,NA +112,NA,1389,"2017",2,0,90,1,10,NA,NA,NA +112,NA,1390,"2017",1,1,30,3,30,30,NA,NA +112,NA,1390,"2017",1,1,NA,1,NA,NA,NA,NA +112,NA,1390,"2017",1,1,30,2,30,NA,NA,NA +112,NA,1390,"2017",1,1,30,4,30,30,NA,NA +112,NA,1391,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1392,"2017",3,0,NA,1,NA,NA,NA,NA +112,NA,1393,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1394,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1395,"2017",4,0,69,1,31,NA,NA,NA +112,NA,1396,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1397,"2017",6,0,1,1,99,NA,NA,NA +112,NA,1398,"2017",1,0,1,3,99,99,NA,NA +112,NA,1398,"2017",1,0,1,2,99,95,NA,NA +112,NA,1398,"2017",1,0,5,1,95,NA,NA,NA +112,NA,1398,"2017",1,0,1,4,99,99,NA,NA +112,NA,1399,"2017",2,1,80,1,80,NA,NA,NA +112,NA,1400,"2017",3,0,NA,1,NA,NA,NA,NA +112,NA,1401,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1402,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1403,"2017",3,1,1,1,1,NA,NA,NA +112,NA,1404,"2017",5,0,6,1,94,NA,NA,NA +112,NA,1405,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1406,"2017",1,0,50,4,50,99,NA,NA +112,NA,1406,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1406,"2017",1,0,1,2,99,1,NA,NA +112,NA,1406,"2017",1,0,1,3,99,99,NA,NA +112,NA,1407,"2017",2,1,40,1,40,NA,NA,NA +112,NA,1408,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1409,"2017",5,1,60,1,60,NA,NA,NA +112,NA,1410,"2017",5,0,0,1,100,NA,NA,NA +112,NA,1411,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1412,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1413,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1414,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1415,"2017",2,1,1,1,1,NA,NA,NA +112,NA,1416,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1416,"2017",1,0,50,4,50,48,NA,NA +112,NA,1416,"2017",1,0,1,2,99,99,NA,NA +112,NA,1416,"2017",1,0,52,3,48,99,NA,NA +112,NA,1417,"2017",6,1,40,1,40,NA,NA,NA +112,NA,1418,"2017",1,0,99,4,1,1,NA,NA +112,NA,1418,"2017",1,0,99,3,1,1,NA,NA +112,NA,1418,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1418,"2017",1,0,99,2,1,1,NA,NA +112,NA,1419,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1420,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1421,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1422,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1423,"2017",4,1,60,1,60,NA,NA,NA +112,NA,1424,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1425,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1426,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1427,"2017",2,0,NA,1,NA,NA,NA,NA +112,NA,1428,"2017",1,0,NA,4,NA,10,NA,NA +112,NA,1428,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1428,"2017",1,0,90,3,10,10,NA,NA +112,NA,1428,"2017",1,0,90,2,10,NA,NA,NA +112,NA,1429,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1430,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1431,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1432,"2017",1,0,1,3,99,99,NA,NA +112,NA,1432,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1432,"2017",1,0,1,2,99,99,NA,NA +112,NA,1432,"2017",1,0,1,4,99,99,NA,NA +112,NA,1433,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1434,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1435,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1436,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1437,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1438,"2017",6,0,70,1,30,NA,NA,NA +112,NA,1439,"2017",1,1,80,2,80,1,NA,NA +112,NA,1439,"2017",1,1,1,1,1,NA,NA,NA +112,NA,1439,"2017",1,1,90,4,90,10,NA,NA +112,NA,1439,"2017",1,1,10,3,10,80,NA,NA +112,NA,1440,"2017",5,1,78,1,78,NA,NA,NA +112,NA,1441,"2017",5,0,30,1,70,NA,NA,NA +112,NA,1442,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1443,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1444,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1445,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1446,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1447,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1448,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1449,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1450,"2017",4,1,60,1,60,NA,NA,NA +112,NA,1451,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1452,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1453,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1454,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1455,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1456,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1457,"2017",1,1,100,3,100,99,NA,NA +112,NA,1457,"2017",1,1,100,4,100,100,NA,NA +112,NA,1457,"2017",1,1,99,2,99,99,NA,NA +112,NA,1457,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1458,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1459,"2017",4,1,100,1,100,NA,NA,NA +112,NA,1460,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1461,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1462,"2017",3,1,60,1,60,NA,NA,NA +112,NA,1463,"2017",3,0,1,1,99,NA,NA,NA +112,NA,1464,"2017",3,0,30,1,70,NA,NA,NA +112,NA,1465,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1465,"2017",1,0,50,2,50,50,NA,NA +112,NA,1465,"2017",1,0,99,3,1,50,NA,NA +112,NA,1465,"2017",1,0,99,4,1,1,NA,NA +112,NA,1466,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1467,"2017",1,1,99,3,99,99,NA,NA +112,NA,1467,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1467,"2017",1,1,99,4,99,99,NA,NA +112,NA,1467,"2017",1,1,99,2,99,99,NA,NA +112,NA,1468,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1469,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1470,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1471,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1472,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1473,"2017",3,1,100,1,100,NA,NA,NA +112,NA,1474,"2017",2,1,1,1,1,NA,NA,NA +112,NA,1475,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1476,"2017",6,0,1,1,99,NA,NA,NA +112,NA,1477,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1478,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1479,"2017",5,0,28,1,72,NA,NA,NA +112,NA,1480,"2017",3,0,1,1,99,NA,NA,NA +112,NA,1481,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1482,"2017",4,0,52,1,48,NA,NA,NA +112,NA,1483,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1484,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1485,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1486,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1487,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1488,"2017",1,0,99,2,1,NA,NA,NA +112,NA,1488,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1488,"2017",1,0,1,4,99,99,NA,NA +112,NA,1488,"2017",1,0,1,3,99,1,NA,NA +112,NA,1489,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1490,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1491,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1492,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1493,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1494,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1495,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1496,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1497,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1498,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1499,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1500,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1501,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1502,"2017",3,0,1,1,99,NA,NA,NA +112,NA,1503,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1504,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,1505,"2017",1,0,1,2,99,99,NA,NA +112,NA,1505,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1505,"2017",1,0,50,4,50,99,NA,NA +112,NA,1505,"2017",1,0,1,3,99,99,NA,NA +112,NA,1506,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1507,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1508,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1509,"2017",3,1,85,1,85,NA,NA,NA +112,NA,1510,"2017",1,1,50,2,50,99,NA,NA +112,NA,1510,"2017",1,1,60,3,60,50,NA,NA +112,NA,1510,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1510,"2017",1,1,61,4,61,60,NA,NA +112,NA,1511,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1512,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1513,"2017",1,0,50,2,50,1,NA,NA +112,NA,1513,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1513,"2017",1,0,1,4,99,50,NA,NA +112,NA,1513,"2017",1,0,50,3,50,50,NA,NA +112,NA,1514,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1515,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1516,"2017",1,1,99,3,99,99,NA,NA +112,NA,1516,"2017",1,1,99,2,99,50,NA,NA +112,NA,1516,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1516,"2017",1,1,99,4,99,99,NA,NA +112,NA,1517,"2017",2,0,80,1,20,NA,NA,NA +112,NA,1518,"2017",1,1,50,3,50,50,NA,NA +112,NA,1518,"2017",1,1,99,4,99,50,NA,NA +112,NA,1518,"2017",1,1,50,2,50,50,NA,NA +112,NA,1518,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1519,"2017",4,1,55,1,55,NA,NA,NA +112,NA,1520,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1521,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1522,"2017",1,1,75,4,75,100,NA,NA +112,NA,1522,"2017",1,1,100,2,100,99,NA,NA +112,NA,1522,"2017",1,1,100,3,100,100,NA,NA +112,NA,1522,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1523,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1524,"2017",6,0,15,1,85,NA,NA,NA +112,NA,1525,"2017",2,1,75,1,75,NA,NA,NA +112,NA,1526,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1527,"2017",5,1,NA,1,NA,NA,NA,NA +112,NA,1528,"2017",4,1,1,1,1,NA,NA,NA +112,NA,1529,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1530,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1531,"2017",3,1,1,1,1,NA,NA,NA +112,NA,1532,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1533,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1534,"2017",3,0,NA,1,NA,NA,NA,NA +112,NA,1535,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1536,"2017",1,0,50,3,50,50,NA,NA +112,NA,1536,"2017",1,0,50,4,50,50,NA,NA +112,NA,1536,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1536,"2017",1,0,50,2,50,1,NA,NA +112,NA,1537,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1538,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1539,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1540,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1541,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1542,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1543,"2017",4,1,60,1,60,NA,NA,NA +112,NA,1544,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1545,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1546,"2017",4,0,60,1,40,NA,NA,NA +112,NA,1547,"2017",6,1,30,1,30,NA,NA,NA +112,NA,1548,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1549,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1550,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1551,"2017",1,0,75,4,25,20,NA,NA +112,NA,1551,"2017",1,0,80,3,20,20,NA,NA +112,NA,1551,"2017",1,0,80,2,20,70,NA,NA +112,NA,1551,"2017",1,0,30,1,70,NA,NA,NA +112,NA,1552,"2017",1,1,99,4,99,99,NA,NA +112,NA,1552,"2017",1,1,99,3,99,99,NA,NA +112,NA,1552,"2017",1,1,1,1,1,NA,NA,NA +112,NA,1552,"2017",1,1,99,2,99,1,NA,NA +112,NA,1553,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1554,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1555,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1556,"2017",1,0,99,3,1,1,NA,NA +112,NA,1556,"2017",1,0,99,4,1,1,NA,NA +112,NA,1556,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1556,"2017",1,0,99,2,1,1,NA,NA +112,NA,1557,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1558,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1559,"2017",5,1,56,1,56,NA,NA,NA +112,NA,1560,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1561,"2017",4,0,1,1,99,NA,NA,NA +112,NA,1562,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1563,"2017",3,0,30,1,70,NA,NA,NA +112,NA,1564,"2017",2,1,20,1,20,NA,NA,NA +112,NA,1565,"2017",1,0,50,3,50,45,NA,NA +112,NA,1565,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1565,"2017",1,0,55,2,45,1,NA,NA +112,NA,1565,"2017",1,0,99,4,1,50,NA,NA +112,NA,1566,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1567,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1568,"2017",1,1,NA,3,NA,50,NA,NA +112,NA,1568,"2017",1,1,50,2,50,50,NA,NA +112,NA,1568,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1568,"2017",1,1,99,4,99,NA,NA,NA +112,NA,1569,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1570,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1570,"2017",1,0,99,4,1,1,NA,NA +112,NA,1570,"2017",1,0,99,3,1,70,NA,NA +112,NA,1570,"2017",1,0,30,2,70,99,NA,NA +112,NA,1571,"2017",6,0,70,1,30,NA,NA,NA +112,NA,1572,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1573,"2017",1,0,50,3,50,99,NA,NA +112,NA,1573,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1573,"2017",1,0,99,4,1,50,NA,NA +112,NA,1573,"2017",1,0,1,2,99,99,NA,NA +112,NA,1574,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1575,"2017",5,1,100,1,100,NA,NA,NA +112,NA,1576,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1577,"2017",2,1,1,1,1,NA,NA,NA +112,NA,1578,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1579,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1580,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1581,"2017",3,0,20,1,80,NA,NA,NA +112,NA,1582,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1583,"2017",1,0,55,4,45,45,NA,NA +112,NA,1583,"2017",1,0,NA,2,NA,NA,NA,NA +112,NA,1583,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1583,"2017",1,0,55,3,45,NA,NA,NA +112,NA,1584,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1585,"2017",5,0,8,1,92,NA,NA,NA +112,NA,1586,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1587,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1588,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1589,"2017",5,0,90,1,10,NA,NA,NA +112,NA,1590,"2017",1,1,60,2,60,60,NA,NA +112,NA,1590,"2017",1,1,60,3,60,60,NA,NA +112,NA,1590,"2017",1,1,60,1,60,NA,NA,NA +112,NA,1590,"2017",1,1,80,4,80,60,NA,NA +112,NA,1591,"2017",5,1,NA,1,NA,NA,NA,NA +112,NA,1592,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1593,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1594,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1595,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1596,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1597,"2017",5,0,81,1,19,NA,NA,NA +112,NA,1598,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1599,"2017",1,1,8,2,8,99,NA,NA +112,NA,1599,"2017",1,1,18,4,18,50,NA,NA +112,NA,1599,"2017",1,1,50,3,50,8,NA,NA +112,NA,1599,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1600,"2017",1,0,50,3,50,50,NA,NA +112,NA,1600,"2017",1,0,50,4,50,50,NA,NA +112,NA,1600,"2017",1,0,50,2,50,NA,NA,NA +112,NA,1600,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1601,"2017",2,1,30,1,30,NA,NA,NA +112,NA,1602,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1603,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1603,"2017",1,0,NA,2,NA,NA,NA,NA +112,NA,1603,"2017",1,0,NA,4,NA,NA,NA,NA +112,NA,1604,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1605,"2017",3,0,1,1,99,NA,NA,NA +112,NA,1606,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1607,"2017",6,1,20,1,20,NA,NA,NA +112,NA,1608,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1609,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1610,"2017",1,1,99,4,99,99,NA,NA +112,NA,1610,"2017",1,1,NA,2,NA,99,NA,NA +112,NA,1610,"2017",1,1,99,3,99,NA,NA,NA +112,NA,1610,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1611,"2017",1,1,NA,3,NA,NA,NA,NA +112,NA,1611,"2017",1,1,99,4,99,NA,NA,NA +112,NA,1611,"2017",1,1,NA,2,NA,NA,NA,NA +112,NA,1611,"2017",1,1,NA,1,NA,NA,NA,NA +112,NA,1612,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1613,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1614,"2017",1,1,NA,4,NA,50,NA,NA +112,NA,1614,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1614,"2017",1,1,NA,2,NA,50,NA,NA +112,NA,1614,"2017",1,1,50,3,50,NA,NA,NA +112,NA,1615,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1616,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1616,"2017",1,1,1,2,1,50,NA,NA +112,NA,1616,"2017",1,1,99,3,99,1,NA,NA +112,NA,1616,"2017",1,1,99,4,99,99,NA,NA +112,NA,1617,"2017",2,1,1,1,1,NA,NA,NA +112,NA,1618,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1619,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1620,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1621,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1622,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1623,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,1624,"2017",6,1,NA,1,NA,NA,NA,NA +112,NA,1625,"2017",2,1,30,1,30,NA,NA,NA +112,NA,1626,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,1627,"2017",5,1,30,1,30,NA,NA,NA +112,NA,1628,"2017",5,1,NA,1,NA,NA,NA,NA +112,NA,1629,"2017",2,0,30,1,70,NA,NA,NA +112,NA,1630,"2017",2,1,40,1,40,NA,NA,NA +112,NA,1631,"2017",4,0,5,1,95,NA,NA,NA +112,NA,1632,"2017",4,1,85,1,85,NA,NA,NA +112,NA,1633,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1634,"2017",3,0,40,1,60,NA,NA,NA +112,NA,1635,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1636,"2017",2,0,NA,1,NA,NA,NA,NA +112,NA,1637,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1638,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1639,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1640,"2017",4,1,80,1,80,NA,NA,NA +112,NA,1641,"2017",1,1,99,2,99,80,NA,NA +112,NA,1641,"2017",1,1,99,3,99,99,NA,NA +112,NA,1641,"2017",1,1,80,1,80,NA,NA,NA +112,NA,1641,"2017",1,1,99,4,99,99,NA,NA +112,NA,1642,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1643,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1644,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1645,"2017",2,0,NA,1,NA,NA,NA,NA +112,NA,1646,"2017",6,0,10,1,90,NA,NA,NA +112,NA,1647,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1648,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1649,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1650,"2017",4,0,25,1,75,NA,NA,NA +112,NA,1651,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1652,"2017",6,0,90,1,10,NA,NA,NA +112,NA,1653,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1654,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1655,"2017",4,1,100,1,100,NA,NA,NA +112,NA,1656,"2017",5,0,70,1,30,NA,NA,NA +112,NA,1657,"2017",4,1,1,1,1,NA,NA,NA +112,NA,1658,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1659,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1660,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1661,"2017",1,1,50,2,50,50,NA,NA +112,NA,1661,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1661,"2017",1,1,50,4,50,59,NA,NA +112,NA,1661,"2017",1,1,59,3,59,50,NA,NA +112,NA,1662,"2017",4,1,90,1,90,NA,NA,NA +112,NA,1663,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1663,"2017",1,0,NA,3,NA,NA,NA,NA +112,NA,1663,"2017",1,0,1,4,99,NA,NA,NA +112,NA,1663,"2017",1,0,NA,2,NA,NA,NA,NA +112,NA,1664,"2017",1,1,NA,1,NA,NA,NA,NA +112,NA,1664,"2017",1,1,99,2,99,NA,NA,NA +112,NA,1664,"2017",1,1,99,3,99,99,NA,NA +112,NA,1664,"2017",1,1,99,4,99,99,NA,NA +112,NA,1665,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1666,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1667,"2017",1,0,1,2,99,50,NA,NA +112,NA,1667,"2017",1,0,1,4,99,1,NA,NA +112,NA,1667,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1667,"2017",1,0,99,3,1,99,NA,NA +112,NA,1668,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1668,"2017",1,0,1,3,99,99,NA,NA +112,NA,1668,"2017",1,0,1,4,99,99,NA,NA +112,NA,1668,"2017",1,0,1,2,99,NA,NA,NA +112,NA,1669,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1669,"2017",1,0,80,2,20,99,NA,NA +112,NA,1669,"2017",1,0,55,3,45,20,NA,NA +112,NA,1669,"2017",1,0,20,4,80,45,NA,NA +112,NA,1670,"2017",5,1,80,1,80,NA,NA,NA +112,NA,1671,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1672,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1673,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1674,"2017",3,1,80,1,80,NA,NA,NA +112,NA,1675,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1676,"2017",4,0,90,1,10,NA,NA,NA +112,NA,1677,"2017",1,0,NA,4,NA,50,NA,NA +112,NA,1677,"2017",1,0,50,3,50,50,NA,NA +112,NA,1677,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1677,"2017",1,0,50,2,50,50,NA,NA +112,NA,1678,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1679,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1680,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1681,"2017",2,1,NA,1,NA,NA,NA,NA +112,NA,1682,"2017",2,0,70,1,30,NA,NA,NA +112,NA,1683,"2017",3,1,90,1,90,NA,NA,NA +112,NA,1684,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1685,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1686,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1687,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1688,"2017",4,1,80,1,80,NA,NA,NA +112,NA,1689,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1690,"2017",3,1,60,1,60,NA,NA,NA +112,NA,1691,"2017",1,0,60,1,40,NA,NA,NA +112,NA,1691,"2017",1,0,10,4,90,80,NA,NA +112,NA,1691,"2017",1,0,40,2,60,40,NA,NA +112,NA,1691,"2017",1,0,20,3,80,60,NA,NA +112,NA,1692,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1693,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1694,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1695,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1696,"2017",1,1,90,3,90,99,NA,NA +112,NA,1696,"2017",1,1,30,1,30,NA,NA,NA +112,NA,1696,"2017",1,1,99,2,99,30,NA,NA +112,NA,1696,"2017",1,1,99,4,99,90,NA,NA +112,NA,1697,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1698,"2017",2,0,60,1,40,NA,NA,NA +112,NA,1699,"2017",5,1,80,1,80,NA,NA,NA +112,NA,1700,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1701,"2017",5,1,80,1,80,NA,NA,NA +112,NA,1702,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1703,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1704,"2017",1,1,60,4,60,50,NA,NA +112,NA,1704,"2017",1,1,50,2,50,90,NA,NA +112,NA,1704,"2017",1,1,50,3,50,50,NA,NA +112,NA,1704,"2017",1,1,90,1,90,NA,NA,NA +112,NA,1705,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1706,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,1707,"2017",2,0,80,1,20,NA,NA,NA +112,NA,1708,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1709,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1710,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1711,"2017",4,0,100,1,0,NA,NA,NA +112,NA,1712,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1713,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1714,"2017",5,0,40,1,60,NA,NA,NA +112,NA,1715,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1716,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1717,"2017",6,0,40,1,60,NA,NA,NA +112,NA,1718,"2017",2,1,98,1,98,NA,NA,NA +112,NA,1719,"2017",1,0,90,3,10,10,NA,NA +112,NA,1719,"2017",1,0,50,4,50,10,NA,NA +112,NA,1719,"2017",1,0,90,1,10,NA,NA,NA +112,NA,1719,"2017",1,0,90,2,10,10,NA,NA +112,NA,1720,"2017",4,1,100,1,100,NA,NA,NA +112,NA,1721,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1722,"2017",1,0,80,2,20,50,NA,NA +112,NA,1722,"2017",1,0,80,3,20,20,NA,NA +112,NA,1722,"2017",1,0,50,4,50,20,NA,NA +112,NA,1722,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1723,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1724,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1725,"2017",6,0,NA,1,NA,NA,NA,NA +112,NA,1726,"2017",1,0,20,4,80,70,NA,NA +112,NA,1726,"2017",1,0,30,2,70,78,NA,NA +112,NA,1726,"2017",1,0,30,3,70,70,NA,NA +112,NA,1726,"2017",1,0,22,1,78,NA,NA,NA +112,NA,1727,"2017",6,0,55,1,45,NA,NA,NA +112,NA,1728,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1729,"2017",3,0,11,1,89,NA,NA,NA +112,NA,1730,"2017",6,1,80,1,80,NA,NA,NA +112,NA,1731,"2017",4,1,90,1,90,NA,NA,NA +112,NA,1732,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1732,"2017",1,0,NA,3,NA,NA,NA,NA +112,NA,1732,"2017",1,0,NA,4,NA,NA,NA,NA +112,NA,1732,"2017",1,0,NA,2,NA,NA,NA,NA +112,NA,1733,"2017",4,0,80,1,20,NA,NA,NA +112,NA,1734,"2017",3,1,40,1,40,NA,NA,NA +112,NA,1735,"2017",4,0,24,1,76,NA,NA,NA +112,NA,1736,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1737,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1738,"2017",1,0,0,4,100,99,NA,NA +112,NA,1738,"2017",1,0,1,2,99,50,NA,NA +112,NA,1738,"2017",1,0,1,3,99,99,NA,NA +112,NA,1738,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1739,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,1740,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1741,"2017",6,0,30,1,70,NA,NA,NA +112,NA,1742,"2017",1,1,99,4,99,99,NA,NA +112,NA,1742,"2017",1,1,1,2,1,30,NA,NA +112,NA,1742,"2017",1,1,30,1,30,NA,NA,NA +112,NA,1742,"2017",1,1,99,3,99,1,NA,NA +112,NA,1743,"2017",6,0,50,1,50,NA,NA,NA +112,NA,1744,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1745,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1746,"2017",1,1,99,3,99,50,NA,NA +112,NA,1746,"2017",1,1,50,2,50,99,NA,NA +112,NA,1746,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1746,"2017",1,1,60,4,60,99,NA,NA +112,NA,1747,"2017",6,0,60,1,40,NA,NA,NA +112,NA,1748,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1749,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1750,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1751,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1752,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1753,"2017",3,1,30,1,30,NA,NA,NA +112,NA,1754,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1755,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1756,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1757,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1758,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1759,"2017",5,1,92,1,92,NA,NA,NA +112,NA,1760,"2017",4,0,91,1,9,NA,NA,NA +112,NA,1761,"2017",4,1,88,1,88,NA,NA,NA +112,NA,1762,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1763,"2017",5,1,90,1,90,NA,NA,NA +112,NA,1764,"2017",6,0,NA,1,NA,NA,NA,NA +112,NA,1765,"2017",1,0,55,3,45,1,NA,NA +112,NA,1765,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1765,"2017",1,0,50,4,50,45,NA,NA +112,NA,1765,"2017",1,0,99,2,1,NA,NA,NA +112,NA,1766,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1767,"2017",1,0,NA,2,NA,50,NA,NA +112,NA,1767,"2017",1,0,99,4,1,1,NA,NA +112,NA,1767,"2017",1,0,99,3,1,NA,NA,NA +112,NA,1767,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1768,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1769,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1770,"2017",5,0,100,1,0,NA,NA,NA +112,NA,1771,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1772,"2017",4,1,100,1,100,NA,NA,NA +112,NA,1773,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1773,"2017",1,0,65,3,35,20,NA,NA +112,NA,1773,"2017",1,0,80,2,20,NA,NA,NA +112,NA,1773,"2017",1,0,88,4,12,35,NA,NA +112,NA,1774,"2017",1,1,99,3,99,99,NA,NA +112,NA,1774,"2017",1,1,56,1,56,NA,NA,NA +112,NA,1774,"2017",1,1,99,4,99,99,NA,NA +112,NA,1774,"2017",1,1,99,2,99,56,NA,NA +112,NA,1775,"2017",5,1,95,1,95,NA,NA,NA +112,NA,1776,"2017",1,1,97,1,97,NA,NA,NA +112,NA,1776,"2017",1,1,NA,4,NA,88,NA,NA +112,NA,1776,"2017",1,1,88,3,88,87,NA,NA +112,NA,1776,"2017",1,1,87,2,87,97,NA,NA +112,NA,1777,"2017",4,1,93,1,93,NA,NA,NA +112,NA,1778,"2017",1,0,79,4,21,4,NA,NA +112,NA,1778,"2017",1,0,78,1,22,NA,NA,NA +112,NA,1778,"2017",1,0,96,3,4,11,NA,NA +112,NA,1778,"2017",1,0,89,2,11,22,NA,NA +112,NA,1779,"2017",3,0,97,1,3,NA,NA,NA +112,NA,1780,"2017",5,1,94,1,94,NA,NA,NA +112,NA,1781,"2017",4,1,97,1,97,NA,NA,NA +112,NA,1782,"2017",3,1,88,1,88,NA,NA,NA +112,NA,1783,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1784,"2017",6,1,86,1,86,NA,NA,NA +112,NA,1785,"2017",4,1,87,1,87,NA,NA,NA +112,NA,1786,"2017",4,0,69,1,31,NA,NA,NA +112,NA,1787,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1788,"2017",5,0,77,1,23,NA,NA,NA +112,NA,1789,"2017",3,1,95,1,95,NA,NA,NA +112,NA,1790,"2017",5,1,90,1,90,NA,NA,NA +112,NA,1791,"2017",6,0,88,1,12,NA,NA,NA +112,NA,1792,"2017",1,1,0,3,0,0,NA,NA +112,NA,1792,"2017",1,1,100,4,100,0,NA,NA +112,NA,1792,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1792,"2017",1,1,0,2,0,50,NA,NA +112,NA,1793,"2017",5,1,86,1,86,NA,NA,NA +112,NA,1794,"2017",2,1,79,1,79,NA,NA,NA +112,NA,1795,"2017",4,1,85,1,85,NA,NA,NA +112,NA,1796,"2017",5,1,92,1,92,NA,NA,NA +112,NA,1797,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,1798,"2017",4,0,88,1,12,NA,NA,NA +112,NA,1799,"2017",3,0,NA,1,NA,NA,NA,NA +112,NA,1800,"2017",3,1,NA,1,NA,NA,NA,NA +112,NA,1801,"2017",5,1,80,1,80,NA,NA,NA +112,NA,1802,"2017",5,1,97,1,97,NA,NA,NA +112,NA,1803,"2017",2,1,NA,1,NA,NA,NA,NA +112,NA,1804,"2017",6,1,NA,1,NA,NA,NA,NA +112,NA,1805,"2017",3,0,88,1,12,NA,NA,NA +112,NA,1806,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1807,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1808,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1809,"2017",1,1,1,4,1,1,NA,NA +112,NA,1809,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1809,"2017",1,1,1,3,1,99,NA,NA +112,NA,1809,"2017",1,1,99,2,99,50,NA,NA +112,NA,1810,"2017",4,1,60,1,60,NA,NA,NA +112,NA,1811,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1812,"2017",2,0,100,1,0,NA,NA,NA +112,NA,1813,"2017",4,0,1,1,99,NA,NA,NA +112,NA,1814,"2017",6,0,70,1,30,NA,NA,NA +112,NA,1815,"2017",6,0,70,1,30,NA,NA,NA +112,NA,1816,"2017",1,0,NA,3,NA,30,NA,NA +112,NA,1816,"2017",1,0,50,4,50,NA,NA,NA +112,NA,1816,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1816,"2017",1,0,70,2,30,50,NA,NA +112,NA,1817,"2017",4,1,50,1,50,NA,NA,NA +112,NA,1818,"2017",2,0,40,1,60,NA,NA,NA +112,NA,1819,"2017",3,1,75,1,75,NA,NA,NA +112,NA,1820,"2017",1,1,20,2,20,50,NA,NA +112,NA,1820,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1820,"2017",1,1,80,3,80,20,NA,NA +112,NA,1820,"2017",1,1,99,4,99,80,NA,NA +112,NA,1821,"2017",5,1,40,1,40,NA,NA,NA +112,NA,1822,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1823,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1824,"2017",1,1,NA,1,NA,NA,NA,NA +112,NA,1824,"2017",1,1,1,4,1,1,NA,NA +112,NA,1824,"2017",1,1,90,2,90,NA,NA,NA +112,NA,1824,"2017",1,1,1,3,1,90,NA,NA +112,NA,1825,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1826,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1827,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1828,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1829,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1830,"2017",4,0,45,1,55,NA,NA,NA +112,NA,1831,"2017",2,0,99,1,1,NA,NA,NA +112,NA,1832,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1833,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1833,"2017",1,0,99,2,1,NA,NA,NA +112,NA,1833,"2017",1,0,1,3,99,1,NA,NA +112,NA,1833,"2017",1,0,2,4,98,99,NA,NA +112,NA,1834,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1835,"2017",3,1,80,1,80,NA,NA,NA +112,NA,1836,"2017",1,0,1,3,99,99,NA,NA +112,NA,1836,"2017",1,0,2,4,98,99,NA,NA +112,NA,1836,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,1836,"2017",1,0,1,2,99,NA,NA,NA +112,NA,1837,"2017",2,0,70,1,30,NA,NA,NA +112,NA,1838,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1839,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1840,"2017",1,1,10,3,10,10,NA,NA +112,NA,1840,"2017",1,1,30,1,30,NA,NA,NA +112,NA,1840,"2017",1,1,30,4,30,10,NA,NA +112,NA,1840,"2017",1,1,10,2,10,30,NA,NA +112,NA,1841,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,1842,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1843,"2017",2,0,1,1,99,NA,NA,NA +112,NA,1844,"2017",5,1,88,1,88,NA,NA,NA +112,NA,1845,"2017",1,1,99,3,99,99,NA,NA +112,NA,1845,"2017",1,1,99,2,99,80,NA,NA +112,NA,1845,"2017",1,1,80,1,80,NA,NA,NA +112,NA,1845,"2017",1,1,99,4,99,99,NA,NA +112,NA,1846,"2017",5,1,100,1,100,NA,NA,NA +112,NA,1847,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1848,"2017",3,1,1,1,1,NA,NA,NA +112,NA,1849,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1850,"2017",6,1,1,1,1,NA,NA,NA +112,NA,1851,"2017",1,1,99,2,99,99,NA,NA +112,NA,1851,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1851,"2017",1,1,99,4,99,99,NA,NA +112,NA,1851,"2017",1,1,99,3,99,99,NA,NA +112,NA,1852,"2017",1,1,99,3,99,99,NA,NA +112,NA,1852,"2017",1,1,99,4,99,99,NA,NA +112,NA,1852,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1852,"2017",1,1,99,2,99,99,NA,NA +112,NA,1853,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1854,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1855,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1856,"2017",4,1,90,1,90,NA,NA,NA +112,NA,1857,"2017",4,0,60,1,40,NA,NA,NA +112,NA,1858,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1859,"2017",6,1,90,1,90,NA,NA,NA +112,NA,1860,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1861,"2017",5,0,50,1,50,NA,NA,NA +112,NA,1862,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1863,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1864,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1865,"2017",5,0,60,1,40,NA,NA,NA +112,NA,1866,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1867,"2017",4,0,1,1,99,NA,NA,NA +112,NA,1868,"2017",1,1,1,1,1,NA,NA,NA +112,NA,1868,"2017",1,1,50,3,50,50,NA,NA +112,NA,1868,"2017",1,1,99,4,99,50,NA,NA +112,NA,1869,"2017",2,0,100,1,0,NA,NA,NA +112,NA,1870,"2017",3,1,0,1,0,NA,NA,NA +112,NA,1871,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1871,"2017",1,1,99,2,99,99,NA,NA +112,NA,1871,"2017",1,1,99,3,99,99,NA,NA +112,NA,1871,"2017",1,1,99,4,99,99,NA,NA +112,NA,1872,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1873,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1874,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1875,"2017",2,0,100,1,0,NA,NA,NA +112,NA,1876,"2017",3,0,60,1,40,NA,NA,NA +112,NA,1877,"2017",4,0,1,1,99,NA,NA,NA +112,NA,1878,"2017",6,1,90,1,90,NA,NA,NA +112,NA,1879,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1880,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1881,"2017",6,0,1,1,99,NA,NA,NA +112,NA,1882,"2017",6,1,50,1,50,NA,NA,NA +112,NA,1883,"2017",1,1,60,3,60,60,NA,NA +112,NA,1883,"2017",1,1,60,2,60,60,NA,NA +112,NA,1883,"2017",1,1,60,1,60,NA,NA,NA +112,NA,1883,"2017",1,1,70,4,70,60,NA,NA +112,NA,1884,"2017",1,1,100,1,100,NA,NA,NA +112,NA,1884,"2017",1,1,100,2,100,100,NA,NA +112,NA,1885,"2017",1,0,9,3,91,90,NA,NA +112,NA,1885,"2017",1,0,20,4,80,91,NA,NA +112,NA,1885,"2017",1,0,10,2,90,95,NA,NA +112,NA,1885,"2017",1,0,5,1,95,NA,NA,NA +112,NA,1886,"2017",1,1,70,3,70,70,NA,NA +112,NA,1886,"2017",1,1,30,1,30,NA,NA,NA +112,NA,1886,"2017",1,1,70,2,70,30,NA,NA +112,NA,1886,"2017",1,1,70,4,70,70,NA,NA +112,NA,1887,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1888,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1888,"2017",1,0,0,2,100,1,NA,NA +112,NA,1888,"2017",1,0,50,3,50,100,NA,NA +112,NA,1888,"2017",1,0,99,4,1,50,NA,NA +112,NA,1889,"2017",3,1,99,1,99,NA,NA,NA +112,NA,1890,"2017",3,1,100,1,100,NA,NA,NA +112,NA,1891,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1892,"2017",1,0,1,2,99,70,NA,NA +112,NA,1892,"2017",1,0,50,3,50,99,NA,NA +112,NA,1892,"2017",1,0,NA,4,NA,50,NA,NA +112,NA,1892,"2017",1,0,30,1,70,NA,NA,NA +112,NA,1893,"2017",1,0,30,2,70,15,NA,NA +112,NA,1893,"2017",1,0,20,4,80,NA,NA,NA +112,NA,1893,"2017",1,0,85,1,15,NA,NA,NA +112,NA,1893,"2017",1,0,NA,3,NA,70,NA,NA +112,NA,1894,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1895,"2017",1,1,50,2,50,50,NA,NA +112,NA,1895,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1895,"2017",1,1,99,3,99,50,NA,NA +112,NA,1895,"2017",1,1,99,4,99,99,NA,NA +112,NA,1896,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1896,"2017",1,0,99,4,1,1,NA,NA +112,NA,1896,"2017",1,0,99,3,1,1,NA,NA +112,NA,1896,"2017",1,0,99,2,1,1,NA,NA +112,NA,1897,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1898,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1899,"2017",2,1,20,1,20,NA,NA,NA +112,NA,1900,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1901,"2017",6,0,30,1,70,NA,NA,NA +112,NA,1902,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1902,"2017",1,0,40,2,60,50,NA,NA +112,NA,1902,"2017",1,0,1,4,99,1,NA,NA +112,NA,1902,"2017",1,0,99,3,1,60,NA,NA +112,NA,1903,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1904,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1905,"2017",4,1,90,1,90,NA,NA,NA +112,NA,1906,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1907,"2017",2,0,98,1,2,NA,NA,NA +112,NA,1908,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1909,"2017",2,1,60,1,60,NA,NA,NA +112,NA,1910,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1911,"2017",1,0,1,2,99,10,NA,NA +112,NA,1911,"2017",1,0,90,1,10,NA,NA,NA +112,NA,1911,"2017",1,0,1,3,99,99,NA,NA +112,NA,1911,"2017",1,0,99,4,1,99,NA,NA +112,NA,1912,"2017",1,1,90,4,90,99,NA,NA +112,NA,1912,"2017",1,1,99,2,99,70,NA,NA +112,NA,1912,"2017",1,1,99,3,99,99,NA,NA +112,NA,1912,"2017",1,1,70,1,70,NA,NA,NA +112,NA,1913,"2017",1,0,1,3,99,99,NA,NA +112,NA,1913,"2017",1,0,1,4,99,99,NA,NA +112,NA,1913,"2017",1,0,50,1,50,NA,NA,NA +112,NA,1913,"2017",1,0,1,2,99,50,NA,NA +112,NA,1914,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1915,"2017",1,1,99,3,99,99,NA,NA +112,NA,1915,"2017",1,1,99,4,99,99,NA,NA +112,NA,1915,"2017",1,1,99,2,99,1,NA,NA +112,NA,1915,"2017",1,1,1,1,1,NA,NA,NA +112,NA,1916,"2017",4,1,90,1,90,NA,NA,NA +112,NA,1917,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1918,"2017",1,0,99,1,1,NA,NA,NA +112,NA,1918,"2017",1,0,99,4,1,99,NA,NA +112,NA,1918,"2017",1,0,1,3,99,99,NA,NA +112,NA,1918,"2017",1,0,1,2,99,1,NA,NA +112,NA,1919,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1920,"2017",1,1,99,3,99,99,NA,NA +112,NA,1920,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1920,"2017",1,1,99,2,99,99,NA,NA +112,NA,1920,"2017",1,1,99,4,99,99,NA,NA +112,NA,1921,"2017",5,1,80,1,80,NA,NA,NA +112,NA,1922,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1923,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1924,"2017",1,0,NA,4,NA,99,NA,NA +112,NA,1924,"2017",1,0,1,2,99,99,NA,NA +112,NA,1924,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1924,"2017",1,0,1,3,99,99,NA,NA +112,NA,1925,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1926,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1927,"2017",4,1,80,1,80,NA,NA,NA +112,NA,1928,"2017",1,0,1,3,99,90,NA,NA +112,NA,1928,"2017",1,0,1,4,99,99,NA,NA +112,NA,1928,"2017",1,0,10,2,90,70,NA,NA +112,NA,1928,"2017",1,0,30,1,70,NA,NA,NA +112,NA,1929,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1930,"2017",5,0,NA,1,NA,NA,NA,NA +112,NA,1931,"2017",3,1,90,1,90,NA,NA,NA +112,NA,1932,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1933,"2017",5,0,60,1,40,NA,NA,NA +112,NA,1934,"2017",3,1,80,1,80,NA,NA,NA +112,NA,1935,"2017",3,0,1,1,99,NA,NA,NA +112,NA,1936,"2017",1,0,30,1,70,NA,NA,NA +112,NA,1936,"2017",1,0,20,2,80,70,NA,NA +112,NA,1936,"2017",1,0,1,3,99,80,NA,NA +112,NA,1936,"2017",1,0,1,4,99,99,NA,NA +112,NA,1937,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1938,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1939,"2017",4,0,1,1,99,NA,NA,NA +112,NA,1940,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1941,"2017",4,1,90,1,90,NA,NA,NA +112,NA,1942,"2017",6,1,99,1,99,NA,NA,NA +112,NA,1943,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1944,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1945,"2017",4,1,6,1,6,NA,NA,NA +112,NA,1946,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1947,"2017",3,1,80,1,80,NA,NA,NA +112,NA,1948,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1949,"2017",5,0,1,1,99,NA,NA,NA +112,NA,1950,"2017",2,1,99,1,99,NA,NA,NA +112,NA,1951,"2017",1,1,50,4,50,50,NA,NA +112,NA,1951,"2017",1,1,50,2,50,50,NA,NA +112,NA,1951,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1951,"2017",1,1,50,3,50,50,NA,NA +112,NA,1952,"2017",1,1,99,2,99,80,NA,NA +112,NA,1952,"2017",1,1,99,3,99,99,NA,NA +112,NA,1952,"2017",1,1,99,4,99,99,NA,NA +112,NA,1952,"2017",1,1,80,1,80,NA,NA,NA +112,NA,1953,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1954,"2017",5,1,99,1,99,NA,NA,NA +112,NA,1955,"2017",1,1,1,4,1,1,NA,NA +112,NA,1955,"2017",1,1,1,2,1,0,NA,NA +112,NA,1955,"2017",1,1,1,3,1,1,NA,NA +112,NA,1955,"2017",1,1,0,1,0,NA,NA,NA +112,NA,1956,"2017",5,1,80,1,80,NA,NA,NA +112,NA,1957,"2017",2,1,1,1,1,NA,NA,NA +112,NA,1958,"2017",1,1,50,3,50,50,NA,NA +112,NA,1958,"2017",1,1,50,4,50,50,NA,NA +112,NA,1958,"2017",1,1,50,2,50,NA,NA,NA +112,NA,1958,"2017",1,1,NA,1,NA,NA,NA,NA +112,NA,1959,"2017",6,1,90,1,90,NA,NA,NA +112,NA,1960,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1961,"2017",1,1,50,4,50,50,NA,NA +112,NA,1961,"2017",1,1,50,1,50,NA,NA,NA +112,NA,1961,"2017",1,1,50,3,50,1,NA,NA +112,NA,1961,"2017",1,1,1,2,1,50,NA,NA +112,NA,1962,"2017",3,0,80,1,20,NA,NA,NA +112,NA,1963,"2017",1,0,70,4,30,1,NA,NA +112,NA,1963,"2017",1,0,1,2,99,99,NA,NA +112,NA,1963,"2017",1,0,1,1,99,NA,NA,NA +112,NA,1963,"2017",1,0,99,3,1,99,NA,NA +112,NA,1964,"2017",3,1,1,1,1,NA,NA,NA +112,NA,1965,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1966,"2017",5,0,90,1,10,NA,NA,NA +112,NA,1967,"2017",4,1,99,1,99,NA,NA,NA +112,NA,1968,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1969,"2017",5,0,70,1,30,NA,NA,NA +112,NA,1970,"2017",2,0,50,1,50,NA,NA,NA +112,NA,1971,"2017",5,1,0,1,0,NA,NA,NA +112,NA,1972,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1973,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1974,"2017",3,0,1,1,99,NA,NA,NA +112,NA,1975,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1976,"2017",5,1,50,1,50,NA,NA,NA +112,NA,1977,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1978,"2017",4,0,99,1,1,NA,NA,NA +112,NA,1979,"2017",4,0,1,1,99,NA,NA,NA +112,NA,1980,"2017",3,1,90,1,90,NA,NA,NA +112,NA,1981,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1981,"2017",1,1,99,4,99,1,NA,NA +112,NA,1981,"2017",1,1,1,3,1,1,NA,NA +112,NA,1981,"2017",1,1,1,2,1,99,NA,NA +112,NA,1982,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1983,"2017",3,0,50,1,50,NA,NA,NA +112,NA,1984,"2017",1,1,99,1,99,NA,NA,NA +112,NA,1984,"2017",1,1,99,3,99,99,NA,NA +112,NA,1984,"2017",1,1,NA,4,NA,99,NA,NA +112,NA,1984,"2017",1,1,99,2,99,99,NA,NA +112,NA,1985,"2017",2,1,50,1,50,NA,NA,NA +112,NA,1986,"2017",5,1,1,1,1,NA,NA,NA +112,NA,1987,"2017",3,0,90,1,10,NA,NA,NA +112,NA,1988,"2017",6,1,95,1,95,NA,NA,NA +112,NA,1989,"2017",1,1,100,2,100,100,NA,NA +112,NA,1989,"2017",1,1,100,4,100,100,NA,NA +112,NA,1989,"2017",1,1,100,1,100,NA,NA,NA +112,NA,1990,"2017",2,0,60,1,40,NA,NA,NA +112,NA,1991,"2017",3,1,50,1,50,NA,NA,NA +112,NA,1992,"2017",3,0,99,1,1,NA,NA,NA +112,NA,1993,"2017",3,1,90,1,90,NA,NA,NA +112,NA,1994,"2017",4,0,50,1,50,NA,NA,NA +112,NA,1995,"2017",4,1,NA,1,NA,NA,NA,NA +112,NA,1996,"2017",6,0,99,1,1,NA,NA,NA +112,NA,1997,"2017",5,0,99,1,1,NA,NA,NA +112,NA,1998,"2017",1,1,NA,1,NA,NA,NA,NA +112,NA,1998,"2017",1,1,NA,2,NA,NA,NA,NA +112,NA,1998,"2017",1,1,NA,4,NA,NA,NA,NA +112,NA,1998,"2017",1,1,NA,3,NA,NA,NA,NA +112,NA,1999,"2017",1,1,80,2,80,60,NA,NA +112,NA,1999,"2017",1,1,80,4,80,90,NA,NA +112,NA,1999,"2017",1,1,60,1,60,NA,NA,NA +112,NA,1999,"2017",1,1,90,3,90,80,NA,NA +112,NA,2000,"2017",1,1,80,2,80,60,NA,NA +112,NA,2000,"2017",1,1,99,4,99,90,NA,NA +112,NA,2000,"2017",1,1,90,3,90,80,NA,NA +112,NA,2000,"2017",1,1,60,1,60,NA,NA,NA +112,NA,2001,"2017",6,1,99,1,99,NA,NA,NA +112,NA,2002,"2017",5,0,99,1,1,NA,NA,NA +112,NA,2003,"2017",4,0,90,1,10,NA,NA,NA +112,NA,2004,"2017",1,0,31,3,69,69,NA,NA +112,NA,2004,"2017",1,0,31,4,69,69,NA,NA +112,NA,2004,"2017",1,0,31,2,69,99,NA,NA +112,NA,2004,"2017",1,0,1,1,99,NA,NA,NA +112,NA,2005,"2017",6,0,99,1,1,NA,NA,NA +112,NA,2006,"2017",1,1,60,1,60,NA,NA,NA +112,NA,2006,"2017",1,1,100,2,100,60,NA,NA +112,NA,2006,"2017",1,1,100,3,100,100,NA,NA +112,NA,2006,"2017",1,1,0,4,0,100,NA,NA +112,NA,2007,"2017",6,0,100,1,0,NA,NA,NA +112,NA,2008,"2017",1,0,50,4,50,50,NA,NA +112,NA,2008,"2017",1,0,99,1,1,NA,NA,NA +112,NA,2008,"2017",1,0,50,3,50,1,NA,NA +112,NA,2008,"2017",1,0,99,2,1,1,NA,NA +112,NA,2009,"2017",1,0,99,3,1,90,NA,NA +112,NA,2009,"2017",1,0,10,2,90,81,NA,NA +112,NA,2009,"2017",1,0,19,4,81,1,NA,NA +112,NA,2009,"2017",1,0,19,1,81,NA,NA,NA +112,NA,2010,"2017",5,0,100,1,0,NA,NA,NA +112,NA,2011,"2017",3,1,89,1,89,NA,NA,NA +112,NA,2012,"2017",6,0,100,1,0,NA,NA,NA +112,NA,2013,"2017",6,0,100,1,0,NA,NA,NA +112,NA,2014,"2017",4,1,70,1,70,NA,NA,NA +112,NA,2015,"2017",4,0,50,1,50,NA,NA,NA +112,NA,2016,"2017",2,0,99,1,1,NA,NA,NA +112,NA,2017,"2017",4,1,100,1,100,NA,NA,NA +112,NA,2018,"2017",1,0,99,3,1,30,NA,NA +112,NA,2018,"2017",1,0,70,2,30,0,NA,NA +112,NA,2018,"2017",1,0,70,4,30,1,NA,NA +112,NA,2018,"2017",1,0,100,1,0,NA,NA,NA +112,NA,2019,"2017",4,0,90,1,10,NA,NA,NA +112,NA,2020,"2017",5,1,99,1,99,NA,NA,NA +112,NA,2021,"2017",6,1,100,1,100,NA,NA,NA +112,NA,2022,"2017",1,1,100,1,100,NA,NA,NA +112,NA,2022,"2017",1,1,99,4,99,100,NA,NA +112,NA,2022,"2017",1,1,100,2,100,100,NA,NA +112,NA,2022,"2017",1,1,100,3,100,100,NA,NA +112,NA,2023,"2017",2,0,1,1,99,NA,NA,NA +112,NA,2024,"2017",2,0,NA,1,NA,NA,NA,NA +112,NA,2025,"2017",5,0,22,1,78,NA,NA,NA +112,NA,2026,"2017",2,0,100,1,0,NA,NA,NA +112,NA,2027,"2017",2,0,1,1,99,NA,NA,NA +112,NA,2028,"2017",4,0,60,1,40,NA,NA,NA +112,NA,2029,"2017",4,0,99,1,1,NA,NA,NA +112,NA,2030,"2017",6,1,99,1,99,NA,NA,NA +112,NA,2031,"2017",5,0,50,1,50,NA,NA,NA +112,NA,2032,"2017",5,0,60,1,40,NA,NA,NA +112,NA,2033,"2017",6,0,50,1,50,NA,NA,NA +112,NA,2034,"2017",3,0,1,1,99,NA,NA,NA +112,NA,2035,"2017",3,0,90,1,10,NA,NA,NA +112,NA,2036,"2017",3,1,1,1,1,NA,NA,NA +112,NA,2037,"2017",5,0,99,1,1,NA,NA,NA +112,NA,2038,"2017",2,0,1,1,99,NA,NA,NA +112,NA,2039,"2017",6,1,0,1,0,NA,NA,NA +112,NA,2040,"2017",6,0,20,1,80,NA,NA,NA +112,NA,2041,"2017",2,0,100,1,0,NA,NA,NA +112,NA,2042,"2017",5,1,20,1,20,NA,NA,NA +112,NA,2043,"2017",2,0,70,1,30,NA,NA,NA +112,NA,2044,"2017",3,0,100,1,0,NA,NA,NA +112,NA,2045,"2017",3,0,90,1,10,NA,NA,NA +112,NA,2046,"2017",1,1,90,2,90,50,NA,NA +112,NA,2046,"2017",1,1,99,4,99,99,NA,NA +112,NA,2046,"2017",1,1,50,1,50,NA,NA,NA +112,NA,2046,"2017",1,1,99,3,99,90,NA,NA +112,NA,2047,"2017",6,0,50,1,50,NA,NA,NA +112,NA,2048,"2017",2,0,50,1,50,NA,NA,NA +112,NA,2049,"2017",1,1,1,2,1,50,NA,NA +112,NA,2049,"2017",1,1,75,4,75,99,NA,NA +112,NA,2049,"2017",1,1,50,1,50,NA,NA,NA +112,NA,2049,"2017",1,1,99,3,99,1,NA,NA +112,NA,2050,"2017",1,0,99,4,1,NA,NA,NA +112,NA,2050,"2017",1,0,NA,3,NA,1,NA,NA +112,NA,2050,"2017",1,0,99,2,1,1,NA,NA +112,NA,2050,"2017",1,0,99,1,1,NA,NA,NA +112,NA,2051,"2017",3,0,90,1,10,NA,NA,NA +112,NA,2052,"2017",5,0,40,1,60,NA,NA,NA +112,NA,2053,"2017",6,1,80,1,80,NA,NA,NA +112,NA,2054,"2017",4,0,90,1,10,NA,NA,NA +112,NA,2055,"2017",3,1,90,1,90,NA,NA,NA +112,NA,2056,"2017",2,0,50,1,50,NA,NA,NA +112,NA,2057,"2017",3,1,90,1,90,NA,NA,NA +112,NA,2058,"2017",3,1,60,1,60,NA,NA,NA +112,NA,2059,"2017",3,1,99,1,99,NA,NA,NA +112,NA,2060,"2017",5,1,99,1,99,NA,NA,NA +112,NA,2061,"2017",2,0,99,1,1,NA,NA,NA +112,NA,2062,"2017",6,0,99,1,1,NA,NA,NA +112,NA,2063,"2017",4,1,99,1,99,NA,NA,NA +112,NA,2064,"2017",4,0,1,1,99,NA,NA,NA +112,NA,2065,"2017",3,1,99,1,99,NA,NA,NA +112,NA,2066,"2017",4,0,NA,1,NA,NA,NA,NA +112,NA,2067,"2017",3,1,20,1,20,NA,NA,NA +112,NA,2068,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,2068,"2017",1,0,99,3,1,NA,NA,NA +112,NA,2068,"2017",1,0,1,4,99,1,NA,NA +112,NA,2068,"2017",1,0,NA,2,NA,NA,NA,NA +112,NA,2069,"2017",5,1,1,1,1,NA,NA,NA +112,NA,2070,"2017",5,1,99,1,99,NA,NA,NA +112,NA,2071,"2017",3,1,1,1,1,NA,NA,NA +112,NA,2072,"2017",3,0,70,1,30,NA,NA,NA +112,NA,2073,"2017",1,0,99,4,1,99,NA,NA +112,NA,2073,"2017",1,0,99,1,1,NA,NA,NA +112,NA,2073,"2017",1,0,99,2,1,1,NA,NA +112,NA,2073,"2017",1,0,1,3,99,1,NA,NA +112,NA,2074,"2017",3,0,99,1,1,NA,NA,NA +112,NA,2075,"2017",4,1,85,1,85,NA,NA,NA +112,NA,2076,"2017",2,0,1,1,99,NA,NA,NA +112,NA,2077,"2017",2,1,1,1,1,NA,NA,NA +112,NA,2078,"2017",6,1,100,1,100,NA,NA,NA +112,NA,2079,"2017",6,0,1,1,99,NA,NA,NA +112,NA,2080,"2017",4,0,80,1,20,NA,NA,NA +112,NA,2081,"2017",2,1,NA,1,NA,NA,NA,NA +112,NA,2082,"2017",4,1,1,1,1,NA,NA,NA +112,NA,2083,"2017",6,0,99,1,1,NA,NA,NA +112,NA,2084,"2017",5,0,99,1,1,NA,NA,NA +112,NA,2085,"2017",1,1,50,3,50,NA,NA,NA +112,NA,2085,"2017",1,1,1,4,1,50,NA,NA +112,NA,2085,"2017",1,1,NA,2,NA,99,NA,NA +112,NA,2085,"2017",1,1,99,1,99,NA,NA,NA +112,NA,2086,"2017",3,0,50,1,50,NA,NA,NA +112,NA,2087,"2017",4,0,99,1,1,NA,NA,NA +112,NA,2088,"2017",6,1,55,1,55,NA,NA,NA +112,NA,2089,"2017",4,0,NA,1,NA,NA,NA,NA +112,NA,2090,"2017",5,1,50,1,50,NA,NA,NA +112,NA,2091,"2017",2,0,50,1,50,NA,NA,NA +112,NA,2092,"2017",6,0,90,1,10,NA,NA,NA +112,NA,2093,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,2093,"2017",1,0,90,2,10,NA,NA,NA +112,NA,2093,"2017",1,0,10,4,90,30,NA,NA +112,NA,2093,"2017",1,0,70,3,30,10,NA,NA +112,NA,2094,"2017",3,0,60,1,40,NA,NA,NA +112,NA,2095,"2017",2,1,99,1,99,NA,NA,NA +112,NA,2096,"2017",4,0,99,1,1,NA,NA,NA +112,NA,2097,"2017",3,1,50,1,50,NA,NA,NA +112,NA,2098,"2017",3,1,20,1,20,NA,NA,NA +112,NA,2099,"2017",2,0,99,1,1,NA,NA,NA +112,NA,2100,"2017",2,0,NA,1,NA,NA,NA,NA +112,NA,2101,"2017",3,1,50,1,50,NA,NA,NA +112,NA,2102,"2017",6,1,99,1,99,NA,NA,NA +112,NA,2103,"2017",5,1,99,1,99,NA,NA,NA +112,NA,2104,"2017",1,1,1,3,1,1,NA,NA +112,NA,2104,"2017",1,1,1,4,1,1,NA,NA +112,NA,2104,"2017",1,1,1,2,1,1,NA,NA +112,NA,2104,"2017",1,1,1,1,1,NA,NA,NA +112,NA,2105,"2017",6,1,50,1,50,NA,NA,NA +112,NA,2106,"2017",6,0,1,1,99,NA,NA,NA +112,NA,2107,"2017",6,0,99,1,1,NA,NA,NA +112,NA,2108,"2017",4,1,50,1,50,NA,NA,NA +112,NA,2109,"2017",3,1,99,1,99,NA,NA,NA +112,NA,2110,"2017",2,0,50,1,50,NA,NA,NA +112,NA,2111,"2017",2,1,99,1,99,NA,NA,NA +112,NA,2112,"2017",2,0,50,1,50,NA,NA,NA +112,NA,2113,"2017",5,1,NA,1,NA,NA,NA,NA +112,NA,2114,"2017",3,1,1,1,1,NA,NA,NA +112,NA,2115,"2017",3,1,99,1,99,NA,NA,NA +112,NA,2116,"2017",2,0,8,1,92,NA,NA,NA +112,NA,2117,"2017",3,0,1,1,99,NA,NA,NA +112,NA,2118,"2017",4,0,50,1,50,NA,NA,NA +112,NA,2119,"2017",6,1,0,1,0,NA,NA,NA +112,NA,2120,"2017",1,1,80,2,80,80,NA,NA +112,NA,2120,"2017",1,1,80,4,80,80,NA,NA +112,NA,2120,"2017",1,1,80,3,80,80,NA,NA +112,NA,2120,"2017",1,1,80,1,80,NA,NA,NA +112,NA,2121,"2017",1,1,99,2,99,99,NA,NA +112,NA,2121,"2017",1,1,99,3,99,99,NA,NA +112,NA,2121,"2017",1,1,99,4,99,99,NA,NA +112,NA,2121,"2017",1,1,99,1,99,NA,NA,NA +112,NA,2122,"2017",5,1,50,1,50,NA,NA,NA +112,NA,2123,"2017",6,0,99,1,1,NA,NA,NA +112,NA,2124,"2017",3,1,55,1,55,NA,NA,NA +112,NA,2125,"2017",3,1,99,1,99,NA,NA,NA +112,NA,2126,"2017",4,1,50,1,50,NA,NA,NA +112,NA,2127,"2017",6,0,80,1,20,NA,NA,NA +112,NA,2128,"2017",2,1,70,1,70,NA,NA,NA +112,NA,2129,"2017",1,0,90,4,10,20,NA,NA +112,NA,2129,"2017",1,0,NA,1,NA,NA,NA,NA +112,NA,2129,"2017",1,0,80,3,20,92,NA,NA +112,NA,2129,"2017",1,0,8,2,92,NA,NA,NA +112,NA,2130,"2017",1,1,99,4,99,90,NA,NA +112,NA,2130,"2017",1,1,90,3,90,90,NA,NA +112,NA,2130,"2017",1,1,90,2,90,80,NA,NA +112,NA,2130,"2017",1,1,80,1,80,NA,NA,NA +112,NA,2131,"2017",2,0,99,1,1,NA,NA,NA +112,NA,2132,"2017",4,0,5,1,95,NA,NA,NA +112,NA,2133,"2017",3,0,99,1,1,NA,NA,NA +112,NA,2134,"2017",3,0,74,1,26,NA,NA,NA +112,NA,2135,"2017",3,1,10,1,10,NA,NA,NA +112,103,6,"2017",2,0,100,3,0,0,"BBC",NA +112,103,7,"2017",2,1,100,2,100,100,"BBC",NA +112,103,9,"2017",5,0,99,2,1,1,"BBC",NA +112,103,10,"2017",3,0,85,2,15,20,"BBC",NA +112,103,16,"2017",2,0,80,3,20,10,"BBC",NA +112,103,17,"2017",6,1,99,2,99,1,"BBC",NA +112,103,18,"2017",6,0,99,2,1,1,"BBC",NA +112,103,19,"2017",4,0,70,3,30,NA,"BBC",NA +112,103,25,"2017",4,1,99,3,99,NA,"BBC",NA +112,103,29,"2017",2,1,NA,2,NA,30,"BBC",NA +112,103,30,"2017",3,1,NA,3,NA,NA,"BBC",NA +112,103,32,"2017",2,1,NA,3,NA,NA,"BBC",NA +112,103,33,"2017",4,1,70,3,70,NA,"BBC",NA +112,103,34,"2017",6,1,99,3,99,99,"BBC",NA +112,103,36,"2017",5,0,70,2,30,40,"BBC",NA +112,103,38,"2017",2,0,99,3,1,NA,"BBC",NA +112,103,42,"2017",6,1,60,2,60,60,"BBC",NA +112,103,50,"2017",2,0,20,3,80,80,"BBC",NA +112,103,53,"2017",3,1,99,3,99,90,"BBC",NA +112,103,57,"2017",3,1,80,3,80,75,"BBC",NA +112,103,58,"2017",3,0,99,3,1,50,"BBC",NA +112,103,64,"2017",3,1,99,3,99,99,"BBC",NA +112,103,66,"2017",5,0,75,3,25,30,"BBC",NA +112,103,68,"2017",3,1,99,3,99,90,"BBC",NA +112,103,73,"2017",2,0,99,2,1,1,"BBC",NA +112,103,76,"2017",2,0,99,3,1,1,"BBC",NA +112,103,77,"2017",2,1,99,3,99,99,"BBC",NA +112,103,78,"2017",3,0,99,3,1,1,"BBC",NA +112,103,81,"2017",3,1,70,2,70,30,"BBC",NA +112,103,87,"2017",3,0,99,3,1,1,"BBC",NA +112,103,88,"2017",2,1,80,3,80,70,"BBC",NA +112,103,92,"2017",2,1,50,3,50,50,"BBC",NA +112,103,94,"2017",2,1,100,2,100,100,"BBC",NA +112,103,108,"2017",2,1,100,3,100,100,"BBC",NA +112,103,110,"2017",2,1,100,2,100,100,"BBC",NA +112,103,112,"2017",2,1,99,2,99,1,"BBC",NA +112,103,114,"2017",2,0,80,3,20,20,"BBC",NA +112,103,117,"2017",4,1,99,3,99,NA,"BBC",NA +112,103,124,"2017",2,1,1,3,1,1,"BBC",NA +112,103,130,"2017",3,1,99,2,99,99,"BBC",NA +112,103,131,"2017",4,0,99,3,1,NA,"BBC",NA +112,103,132,"2017",3,1,99,2,99,99,"BBC",NA +112,103,138,"2017",4,1,99,3,99,NA,"BBC",NA +112,103,139,"2017",2,0,50,2,50,99,"BBC",NA +112,103,142,"2017",3,1,40,2,40,40,"BBC",NA +112,103,1173,"2017",6,1,100,2,100,100,"BBC",NA +112,103,1174,"2017",2,0,100,3,0,0,"BBC",NA +112,103,1176,"2017",3,1,100,3,100,100,"BBC",NA +112,103,1179,"2017",5,1,20,2,20,20,"BBC",NA +112,103,1181,"2017",3,1,100,2,100,100,"BBC",NA +112,103,1183,"2017",5,1,100,2,100,50,"BBC",NA +112,103,1188,"2017",2,0,100,3,0,50,"BBC",NA +112,103,1190,"2017",3,1,30,2,30,20,"BBC",NA +112,103,1191,"2017",6,1,NA,3,NA,NA,"BBC",NA +112,103,1192,"2017",2,1,75,3,75,70,"BBC",NA +112,103,1194,"2017",3,1,70,2,70,50,"BBC",NA +112,103,1197,"2017",2,1,99,3,99,99,"BBC",NA +112,103,1200,"2017",6,0,99,3,1,1,"BBC",NA +112,103,1201,"2017",6,0,50,3,50,1,"BBC",NA +112,103,1202,"2017",5,0,86,3,14,90,"BBC",NA +112,103,1204,"2017",6,1,80,2,80,50,"BBC",NA +112,103,1208,"2017",6,1,100,3,100,100,"BBC",NA +112,103,1209,"2017",3,0,100,3,0,0,"BBC",NA +112,103,1211,"2017",2,0,NA,2,NA,99,"BBC",NA +112,103,1216,"2017",2,0,20,3,80,80,"BBC",NA +112,103,1219,"2017",3,1,99,2,99,50,"BBC",NA +112,103,1222,"2017",6,1,60,2,60,50,"BBC",NA +112,103,1225,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1226,"2017",4,0,100,3,0,NA,"BBC",NA +112,103,1228,"2017",6,0,99,2,1,50,"BBC",NA +112,103,1229,"2017",3,0,65,2,35,50,"BBC",NA +112,103,1237,"2017",3,0,70,3,30,40,"BBC",NA +112,103,1238,"2017",6,1,NA,2,NA,10,"BBC",NA +112,103,1241,"2017",2,0,NA,3,NA,99,"BBC",NA +112,103,1242,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1243,"2017",6,1,65,3,65,70,"BBC",NA +112,103,1244,"2017",5,1,99,3,99,99,"BBC",NA +112,103,1245,"2017",6,0,100,2,0,0,"BBC",NA +112,103,1247,"2017",3,1,99,3,99,99,"BBC",NA +112,103,1248,"2017",2,0,30,2,70,50,"BBC",NA +112,103,1250,"2017",3,1,70,2,70,60,"BBC",NA +112,103,1251,"2017",6,0,NA,3,NA,1,"BBC",NA +112,103,1252,"2017",6,0,NA,2,NA,NA,"BBC",NA +112,103,1256,"2017",2,1,50,2,50,50,"BBC",NA +112,103,1257,"2017",2,0,50,3,50,50,"BBC",NA +112,103,1260,"2017",5,0,99,3,1,1,"BBC",NA +112,103,1261,"2017",2,1,99,2,99,99,"BBC",NA +112,103,1264,"2017",6,1,0,2,0,0,"BBC",NA +112,103,1266,"2017",2,1,1,2,1,99,"BBC",NA +112,103,1267,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1268,"2017",4,1,99,3,99,NA,"BBC",NA +112,103,1270,"2017",2,0,80,3,20,20,"BBC",NA +112,103,1271,"2017",3,1,55,3,55,33,"BBC",NA +112,103,1274,"2017",3,1,1,2,1,1,"BBC",NA +112,103,1276,"2017",2,1,99,3,99,99,"BBC",NA +112,103,1277,"2017",2,1,50,3,50,90,"BBC",NA +112,103,1278,"2017",3,0,85,3,15,20,"BBC",NA +112,103,1279,"2017",6,0,100,3,0,0,"BBC",NA +112,103,1280,"2017",3,1,50,3,50,50,"BBC",NA +112,103,1281,"2017",6,1,99,2,99,1,"BBC",NA +112,103,1282,"2017",5,1,60,2,60,50,"BBC",NA +112,103,1285,"2017",5,0,1,2,99,99,"BBC",NA +112,103,1287,"2017",3,0,99,2,1,1,"BBC",NA +112,103,1291,"2017",4,0,99,3,1,NA,"BBC",NA +112,103,1292,"2017",5,1,50,3,50,99,"BBC",NA +112,103,1294,"2017",5,1,99,3,99,1,"BBC",NA +112,103,1295,"2017",2,1,50,3,50,50,"BBC",NA +112,103,1296,"2017",2,0,66,2,34,34,"BBC",NA +112,103,1298,"2017",5,1,80,3,80,70,"BBC",NA +112,103,1301,"2017",2,1,99,3,99,NA,"BBC",NA +112,103,1306,"2017",6,1,1,2,1,1,"BBC",NA +112,103,1309,"2017",5,1,100,2,100,99,"BBC",NA +112,103,1316,"2017",3,0,NA,3,NA,NA,"BBC",NA +112,103,1318,"2017",2,0,99,3,1,1,"BBC",NA +112,103,1321,"2017",5,1,99,2,99,50,"BBC",NA +112,103,1328,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1332,"2017",6,1,95,3,95,99,"BBC",NA +112,103,1334,"2017",2,1,99,2,99,99,"BBC",NA +112,103,1338,"2017",6,0,70,3,30,40,"BBC",NA +112,103,1339,"2017",6,0,99,3,1,1,"BBC",NA +112,103,1340,"2017",4,1,NA,3,NA,NA,"BBC",NA +112,103,1345,"2017",5,1,70,2,70,80,"BBC",NA +112,103,1349,"2017",6,1,50,2,50,50,"BBC",NA +112,103,1354,"2017",5,1,50,2,50,50,"BBC",NA +112,103,1358,"2017",6,0,50,2,50,50,"BBC",NA +112,103,1362,"2017",2,0,50,3,50,60,"BBC",NA +112,103,1367,"2017",6,0,1,3,99,99,"BBC",NA +112,103,1368,"2017",2,1,99,2,99,99,"BBC",NA +112,103,1375,"2017",6,0,80,3,20,20,"BBC",NA +112,103,1378,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1381,"2017",6,0,22,2,78,78,"BBC",NA +112,103,1385,"2017",2,1,45,3,45,50,"BBC",NA +112,103,1393,"2017",3,0,99,2,1,1,"BBC",NA +112,103,1396,"2017",6,1,1,2,1,1,"BBC",NA +112,103,1397,"2017",6,0,1,3,99,99,"BBC",NA +112,103,1399,"2017",2,1,99,3,99,90,"BBC",NA +112,103,1402,"2017",6,0,80,3,20,20,"BBC",NA +112,103,1403,"2017",3,1,99,3,99,99,"BBC",NA +112,103,1405,"2017",3,0,99,3,1,1,"BBC",NA +112,103,1412,"2017",3,1,50,2,50,99,"BBC",NA +112,103,1415,"2017",2,1,50,3,50,1,"BBC",NA +112,103,1420,"2017",2,1,99,3,99,99,"BBC",NA +112,103,1422,"2017",2,0,50,2,50,50,"BBC",NA +112,103,1426,"2017",5,1,99,2,99,1,"BBC",NA +112,103,1430,"2017",2,1,99,2,99,99,"BBC",NA +112,103,1431,"2017",3,1,99,3,99,50,"BBC",NA +112,103,1434,"2017",4,0,1,3,99,NA,"BBC",NA +112,103,1435,"2017",5,0,99,2,1,1,"BBC",NA +112,103,1437,"2017",5,1,99,2,99,99,"BBC",NA +112,103,1441,"2017",5,0,99,3,1,99,"BBC",NA +112,103,1445,"2017",2,0,99,3,1,1,"BBC",NA +112,103,1446,"2017",5,1,99,3,99,50,"BBC",NA +112,103,1448,"2017",6,0,NA,3,NA,1,"BBC",NA +112,103,1451,"2017",6,1,50,3,50,50,"BBC",NA +112,103,1458,"2017",2,0,99,2,1,50,"BBC",NA +112,103,1462,"2017",3,1,70,3,70,60,"BBC",NA +112,103,1468,"2017",2,1,99,2,99,50,"BBC",NA +112,103,1469,"2017",2,0,1,3,99,1,"BBC",NA +112,103,1470,"2017",5,1,50,2,50,99,"BBC",NA +112,103,1471,"2017",2,1,99,2,99,99,"BBC",NA +112,103,1472,"2017",2,0,50,2,50,1,"BBC",NA +112,103,1473,"2017",3,1,90,2,90,100,"BBC",NA +112,103,1474,"2017",2,1,99,3,99,99,"BBC",NA +112,103,1477,"2017",6,0,50,2,50,50,"BBC",NA +112,103,1478,"2017",5,0,99,2,1,1,"BBC",NA +112,103,1479,"2017",5,0,NA,2,NA,72,"BBC",NA +112,103,1481,"2017",2,1,98,3,98,90,"BBC",NA +112,103,1485,"2017",5,0,99,3,1,21,"BBC",NA +112,103,1490,"2017",5,0,70,3,30,99,"BBC",NA +112,103,1494,"2017",2,0,99,2,1,99,"BBC",NA +112,103,1495,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1498,"2017",3,0,1,3,99,1,"BBC",NA +112,103,1500,"2017",6,1,99,2,99,99,"BBC",NA +112,103,1502,"2017",3,0,1,3,99,50,"BBC",NA +112,103,1503,"2017",5,1,50,2,50,1,"BBC",NA +112,103,1507,"2017",4,1,50,3,50,NA,"BBC",NA +112,103,1508,"2017",3,0,99,3,1,1,"BBC",NA +112,103,1517,"2017",2,0,90,2,10,20,"BBC",NA +112,103,1520,"2017",4,0,1,3,99,NA,"BBC",NA +112,103,1525,"2017",2,1,95,3,95,85,"BBC",NA +112,103,1526,"2017",3,0,99,3,1,NA,"BBC",NA +112,103,1529,"2017",2,0,50,3,50,NA,"BBC",NA +112,103,1531,"2017",3,1,99,3,99,NA,"BBC",NA +112,103,1533,"2017",3,0,99,2,1,50,"BBC",NA +112,103,1534,"2017",3,0,70,2,30,NA,"BBC",NA +112,103,1535,"2017",3,1,99,3,99,99,"BBC",NA +112,103,1540,"2017",5,0,50,2,50,50,"BBC",NA +112,103,1541,"2017",4,1,99,3,99,NA,"BBC",NA +112,103,1544,"2017",4,0,99,3,1,NA,"BBC",NA +112,103,1553,"2017",6,1,99,2,99,1,"BBC",NA +112,103,1559,"2017",5,1,99,2,99,56,"BBC",NA +112,103,1562,"2017",5,0,1,3,99,99,"BBC",NA +112,103,1564,"2017",2,1,20,2,20,20,"BBC",NA +112,103,1571,"2017",6,0,99,3,1,20,"BBC",NA +112,103,1572,"2017",3,0,99,3,1,20,"BBC",NA +112,103,1575,"2017",5,1,100,3,100,100,"BBC",NA +112,103,1581,"2017",3,0,50,3,50,50,"BBC",NA +112,103,1585,"2017",5,0,100,3,0,99,"BBC",NA +112,103,1587,"2017",5,0,1,2,99,99,"BBC",NA +112,103,1588,"2017",2,1,50,3,50,50,"BBC",NA +112,103,1589,"2017",5,0,90,2,10,10,"BBC",NA +112,103,1592,"2017",2,0,99,3,1,1,"BBC",NA +112,103,1593,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1601,"2017",2,1,30,2,30,30,"BBC",NA +112,103,1606,"2017",6,1,50,3,50,50,"BBC",NA +112,103,1607,"2017",6,1,58,2,58,20,"BBC",NA +112,103,1608,"2017",3,0,99,3,1,1,"BBC",NA +112,103,1609,"2017",2,0,99,2,1,1,"BBC",NA +112,103,1617,"2017",2,1,50,2,50,1,"BBC",NA +112,103,1618,"2017",2,1,99,3,99,99,"BBC",NA +112,103,1621,"2017",2,0,70,3,30,10,"BBC",NA +112,103,1623,"2017",5,0,NA,2,NA,NA,"BBC",NA +112,103,1624,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1625,"2017",2,1,60,3,60,40,"BBC",NA +112,103,1627,"2017",5,1,60,2,60,30,"BBC",NA +112,103,1634,"2017",3,0,40,2,60,60,"BBC",NA +112,103,1635,"2017",3,0,50,3,50,40,"BBC",NA +112,103,1638,"2017",2,1,50,2,50,50,"BBC",NA +112,103,1639,"2017",6,0,1,2,99,1,"BBC",NA +112,103,1643,"2017",5,0,50,2,50,50,"BBC",NA +112,103,1646,"2017",6,0,70,2,30,90,"BBC",NA +112,103,1647,"2017",5,0,99,3,1,1,"BBC",NA +112,103,1649,"2017",6,1,99,2,99,1,"BBC",NA +112,103,1665,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1670,"2017",5,1,90,3,90,50,"BBC",NA +112,103,1674,"2017",3,1,80,2,80,80,"BBC",NA +112,103,1680,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1682,"2017",2,0,90,2,10,30,"BBC",NA +112,103,1683,"2017",3,1,99,3,99,90,"BBC",NA +112,103,1684,"2017",4,0,99,3,1,NA,"BBC",NA +112,103,1685,"2017",5,0,99,2,1,1,"BBC",NA +112,103,1692,"2017",2,0,99,2,1,1,"BBC",NA +112,103,1698,"2017",2,0,70,3,30,NA,"BBC",NA +112,103,1699,"2017",5,1,90,3,90,80,"BBC",NA +112,103,1701,"2017",5,1,90,3,90,80,"BBC",NA +112,103,1702,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1707,"2017",2,0,80,2,20,20,"BBC",NA +112,103,1714,"2017",5,0,40,2,60,60,"BBC",NA +112,103,1716,"2017",2,0,99,3,1,50,"BBC",NA +112,103,1717,"2017",6,0,30,2,70,60,"BBC",NA +112,103,1721,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1723,"2017",2,0,99,3,1,1,"BBC",NA +112,103,1724,"2017",2,0,50,2,50,50,"BBC",NA +112,103,1725,"2017",6,0,1,3,99,99,"BBC",NA +112,103,1728,"2017",3,1,99,3,99,99,"BBC",NA +112,103,1737,"2017",5,0,100,3,0,20,"BBC",NA +112,103,1740,"2017",2,1,50,3,50,50,"BBC",NA +112,103,1741,"2017",6,0,60,2,40,70,"BBC",NA +112,103,1743,"2017",6,0,50,3,50,50,"BBC",NA +112,103,1744,"2017",2,0,1,2,99,99,"BBC",NA +112,103,1747,"2017",6,0,99,3,1,50,"BBC",NA +112,103,1751,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1755,"2017",2,1,90,3,90,70,"BBC",NA +112,103,1756,"2017",5,1,75,2,75,50,"BBC",NA +112,103,1757,"2017",5,1,70,2,70,50,"BBC",NA +112,103,1759,"2017",5,1,98,2,98,92,"BBC",NA +112,103,1763,"2017",5,1,90,2,90,90,"BBC",NA +112,103,1764,"2017",6,0,NA,2,NA,NA,"BBC",NA +112,103,1766,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1770,"2017",5,0,100,2,0,0,"BBC",NA +112,103,1772,"2017",4,1,100,3,100,NA,"BBC",NA +112,103,1775,"2017",5,1,97,2,97,95,"BBC",NA +112,103,1783,"2017",5,0,99,2,1,1,"BBC",NA +112,103,1784,"2017",6,1,89,2,89,86,"BBC",NA +112,103,1790,"2017",5,1,99,3,99,99,"BBC",NA +112,103,1791,"2017",6,0,100,3,0,2,"BBC",NA +112,103,1793,"2017",5,1,95,2,95,86,"BBC",NA +112,103,1794,"2017",2,1,88,3,88,87,"BBC",NA +112,103,1796,"2017",5,1,NA,3,NA,NA,"BBC",NA +112,103,1800,"2017",3,1,98,2,98,NA,"BBC",NA +112,103,1801,"2017",5,1,99,2,99,80,"BBC",NA +112,103,1802,"2017",5,1,84,3,84,99,"BBC",NA +112,103,1803,"2017",2,1,96,2,96,NA,"BBC",NA +112,103,1807,"2017",6,1,50,2,50,50,"BBC",NA +112,103,1812,"2017",2,0,100,2,0,0,"BBC",NA +112,103,1815,"2017",6,0,75,2,25,30,"BBC",NA +112,103,1818,"2017",2,0,80,3,20,30,"BBC",NA +112,103,1819,"2017",3,1,70,2,70,75,"BBC",NA +112,103,1823,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1825,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1827,"2017",5,1,99,2,99,99,"BBC",NA +112,103,1831,"2017",2,0,99,3,1,1,"BBC",NA +112,103,1834,"2017",5,0,99,3,1,1,"BBC",NA +112,103,1835,"2017",3,1,99,2,99,80,"BBC",NA +112,103,1837,"2017",2,0,50,3,50,100,"BBC",NA +112,103,1838,"2017",5,0,99,3,1,1,"BBC",NA +112,103,1842,"2017",6,1,99,2,99,99,"BBC",NA +112,103,1846,"2017",5,1,100,3,100,100,"BBC",NA +112,103,1847,"2017",6,1,99,3,99,99,"BBC",NA +112,103,1848,"2017",3,1,99,2,99,1,"BBC",NA +112,103,1854,"2017",3,1,99,2,99,99,"BBC",NA +112,103,1861,"2017",5,0,99,2,1,50,"BBC",NA +112,103,1862,"2017",2,1,99,2,99,50,"BBC",NA +112,103,1866,"2017",5,0,99,2,1,1,"BBC",NA +112,103,1869,"2017",2,0,100,3,0,0,"BBC",NA +112,103,1876,"2017",3,0,80,2,20,40,"BBC",NA +112,103,1882,"2017",6,1,50,2,50,50,"BBC",NA +112,103,1889,"2017",3,1,99,2,99,99,"BBC",NA +112,103,1890,"2017",3,1,100,3,100,100,"BBC",NA +112,103,1891,"2017",3,0,99,2,1,1,"BBC",NA +112,103,1894,"2017",5,1,70,3,70,70,"BBC",NA +112,103,1897,"2017",4,0,99,3,1,NA,"BBC",NA +112,103,1900,"2017",2,1,60,2,60,50,"BBC",NA +112,103,1901,"2017",6,0,80,3,20,20,"BBC",NA +112,103,1904,"2017",3,1,70,2,70,50,"BBC",NA +112,103,1907,"2017",2,0,99,3,1,10,"BBC",NA +112,103,1909,"2017",2,1,90,3,90,90,"BBC",NA +112,103,1910,"2017",2,0,99,2,1,50,"BBC",NA +112,103,1914,"2017",3,0,99,2,1,50,"BBC",NA +112,103,1916,"2017",4,1,99,3,99,NA,"BBC",NA +112,103,1917,"2017",2,1,99,3,99,99,"BBC",NA +112,103,1919,"2017",5,0,1,2,99,1,"BBC",NA +112,103,1922,"2017",4,0,50,3,50,NA,"BBC",NA +112,103,1923,"2017",5,1,99,3,99,99,"BBC",NA +112,103,1931,"2017",3,1,90,2,90,90,"BBC",NA +112,103,1934,"2017",3,1,80,2,80,80,"BBC",NA +112,103,1942,"2017",6,1,99,2,99,99,"BBC",NA +112,103,1943,"2017",5,0,99,2,1,1,"BBC",NA +112,103,1944,"2017",6,0,99,2,1,1,"BBC",NA +112,103,1946,"2017",3,0,99,3,1,1,"BBC",NA +112,103,1947,"2017",3,1,60,3,60,60,"BBC",NA +112,103,1948,"2017",5,1,10,3,10,10,"BBC",NA +112,103,1949,"2017",5,0,1,3,99,99,"BBC",NA +112,103,1950,"2017",2,1,99,2,99,99,"BBC",NA +112,103,1953,"2017",5,0,99,3,1,1,"BBC",NA +112,103,1956,"2017",5,1,90,3,90,70,"BBC",NA +112,103,1957,"2017",2,1,NA,2,NA,1,"BBC",NA +112,103,1964,"2017",3,1,1,2,1,1,"BBC",NA +112,103,1968,"2017",2,1,99,2,99,50,"BBC",NA +112,103,1970,"2017",2,0,50,2,50,50,"BBC",NA +112,103,1971,"2017",5,1,100,2,100,0,"BBC",NA +112,103,1975,"2017",4,0,99,3,1,NA,"BBC",NA +112,103,1988,"2017",6,1,95,3,95,85,"BBC",NA +112,103,1990,"2017",2,0,50,2,50,40,"BBC",NA +112,103,1993,"2017",3,1,99,2,99,90,"BBC",NA +112,103,1995,"2017",4,1,99,3,99,NA,"BBC",NA +112,103,1997,"2017",5,0,99,2,1,1,"BBC",NA +112,103,2001,"2017",6,1,99,3,99,99,"BBC",NA +112,103,2010,"2017",5,0,100,3,0,0,"BBC",NA +112,103,2020,"2017",5,1,99,3,99,99,"BBC",NA +112,103,2021,"2017",6,1,100,2,100,100,"BBC",NA +112,103,2023,"2017",2,0,1,2,99,99,"BBC",NA +112,103,2031,"2017",5,0,99,2,1,50,"BBC",NA +112,103,2036,"2017",3,1,99,3,99,99,"BBC",NA +112,103,2039,"2017",6,1,99,3,99,99,"BBC",NA +112,103,2040,"2017",6,0,90,2,10,80,"BBC",NA +112,103,2041,"2017",2,0,1,3,99,0,"BBC",NA +112,103,2042,"2017",5,1,20,2,20,20,"BBC",NA +112,103,2043,"2017",2,0,80,3,20,30,"BBC",NA +112,103,2044,"2017",3,0,100,3,0,0,"BBC",NA +112,103,2045,"2017",3,0,90,2,10,10,"BBC",NA +112,103,2048,"2017",2,0,99,2,1,50,"BBC",NA +112,103,2051,"2017",3,0,99,2,1,10,"BBC",NA +112,103,2052,"2017",5,0,60,2,40,60,"BBC",NA +112,103,2055,"2017",3,1,89,2,89,90,"BBC",NA +112,103,2058,"2017",3,1,30,2,30,60,"BBC",NA +112,103,2060,"2017",5,1,99,2,99,99,"BBC",NA +112,103,2065,"2017",3,1,99,3,99,99,"BBC",NA +112,103,2070,"2017",5,1,99,2,99,99,"BBC",NA +112,103,2074,"2017",3,0,99,2,1,1,"BBC",NA +112,103,2076,"2017",2,0,99,2,1,99,"BBC",NA +112,103,2077,"2017",2,1,1,3,1,1,"BBC",NA +112,103,2081,"2017",2,1,99,3,99,99,"BBC",NA +112,103,2083,"2017",6,0,90,2,10,1,"BBC",NA +112,103,2084,"2017",5,0,99,2,1,1,"BBC",NA +112,103,2090,"2017",5,1,80,3,80,50,"BBC",NA +112,103,2091,"2017",2,0,99,2,1,50,"BBC",NA +112,103,2092,"2017",6,0,90,2,10,10,"BBC",NA +112,103,2094,"2017",3,0,32,2,68,40,"BBC",NA +112,103,2095,"2017",2,1,95,3,95,90,"BBC",NA +112,103,2097,"2017",3,1,1,3,1,50,"BBC",NA +112,103,2100,"2017",2,0,99,3,1,NA,"BBC",NA +112,103,2101,"2017",3,1,99,2,99,50,"BBC",NA +112,103,2106,"2017",6,0,1,2,99,99,"BBC",NA +112,103,2109,"2017",3,1,99,3,99,99,"BBC",NA +112,103,2117,"2017",3,0,1,2,99,99,"BBC",NA +112,103,2119,"2017",6,1,50,2,50,0,"BBC",NA +112,103,2123,"2017",6,0,99,3,1,1,"BBC",NA +112,103,2124,"2017",3,1,50,2,50,55,"BBC",NA +112,103,2125,"2017",3,1,99,3,99,99,"BBC",NA +112,103,2128,"2017",2,1,70,3,70,70,"BBC",NA +112,104,3,"2017",5,0,NA,2,NA,NA,"Huanqiu",NA +112,104,8,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,10,"2017",3,0,85,3,15,15,"Huanqiu",NA +112,104,18,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,20,"2017",5,0,1,3,99,99,"Huanqiu",NA +112,104,21,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,22,"2017",3,1,99,2,99,99,"Huanqiu",NA +112,104,23,"2017",3,0,50,3,50,1,"Huanqiu",NA +112,104,26,"2017",6,1,70,3,70,70,"Huanqiu",NA +112,104,27,"2017",3,0,88,3,12,1,"Huanqiu",NA +112,104,42,"2017",6,1,60,3,60,60,"Huanqiu",NA +112,104,44,"2017",5,0,99,2,1,20,"Huanqiu",NA +112,104,46,"2017",6,0,99,3,1,50,"Huanqiu",NA +112,104,47,"2017",2,0,99,2,1,1,"Huanqiu",NA +112,104,52,"2017",5,1,NA,2,NA,20,"Huanqiu",NA +112,104,53,"2017",3,1,90,2,90,90,"Huanqiu",NA +112,104,57,"2017",3,1,75,2,75,65,"Huanqiu",NA +112,104,59,"2017",3,1,60,2,60,80,"Huanqiu",NA +112,104,61,"2017",3,1,99,3,99,99,"Huanqiu",NA +112,104,70,"2017",5,1,90,2,90,90,"Huanqiu",NA +112,104,71,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,72,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,76,"2017",2,0,99,2,1,10,"Huanqiu",NA +112,104,77,"2017",2,1,99,2,99,1,"Huanqiu",NA +112,104,78,"2017",3,0,99,2,1,1,"Huanqiu",NA +112,104,79,"2017",3,1,50,3,50,50,"Huanqiu",NA +112,104,81,"2017",3,1,90,3,90,70,"Huanqiu",NA +112,104,82,"2017",2,0,10,3,90,90,"Huanqiu",NA +112,104,93,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,94,"2017",2,1,100,3,100,100,"Huanqiu",NA +112,104,95,"2017",2,0,100,2,0,0,"Huanqiu",NA +112,104,96,"2017",2,0,99,3,1,1,"Huanqiu",NA +112,104,100,"2017",2,0,99,2,1,1,"Huanqiu",NA +112,104,108,"2017",2,1,100,2,100,100,"Huanqiu",NA +112,104,110,"2017",2,1,100,3,100,100,"Huanqiu",NA +112,104,113,"2017",3,1,75,3,75,75,"Huanqiu",NA +112,104,115,"2017",2,1,100,2,100,90,"Huanqiu",NA +112,104,118,"2017",2,1,99,3,99,99,"Huanqiu",NA +112,104,119,"2017",2,1,78,2,78,35,"Huanqiu",NA +112,104,126,"2017",2,0,1,2,99,50,"Huanqiu",NA +112,104,129,"2017",3,1,99,3,99,99,"Huanqiu",NA +112,104,133,"2017",4,1,80,5,80,NA,"Huanqiu",NA +112,104,135,"2017",4,1,55,5,55,NA,"Huanqiu",NA +112,104,136,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,140,"2017",4,1,90,5,90,NA,"Huanqiu",NA +112,104,141,"2017",2,1,100,2,100,100,"Huanqiu",NA +112,104,142,"2017",3,1,40,3,40,40,"Huanqiu",NA +112,104,1169,"2017",5,1,99,2,99,90,"Huanqiu",NA +112,104,1170,"2017",2,0,100,3,0,0,"Huanqiu",NA +112,104,1171,"2017",5,1,100,3,100,100,"Huanqiu",NA +112,104,1172,"2017",2,0,100,2,0,0,"Huanqiu",NA +112,104,1173,"2017",6,1,100,3,100,100,"Huanqiu",NA +112,104,1175,"2017",5,0,50,2,50,50,"Huanqiu",NA +112,104,1176,"2017",3,1,100,2,100,100,"Huanqiu",NA +112,104,1181,"2017",3,1,100,3,100,100,"Huanqiu",NA +112,104,1182,"2017",4,0,20,5,80,NA,"Huanqiu",NA +112,104,1185,"2017",4,0,80,5,20,NA,"Huanqiu",NA +112,104,1187,"2017",3,0,70,2,30,50,"Huanqiu",NA +112,104,1191,"2017",6,1,NA,2,NA,NA,"Huanqiu",NA +112,104,1193,"2017",3,0,95,3,5,15,"Huanqiu",NA +112,104,1195,"2017",5,0,80,2,20,50,"Huanqiu",NA +112,104,1196,"2017",6,0,99,2,1,1,"Huanqiu",NA +112,104,1198,"2017",4,1,15,5,15,NA,"Huanqiu",NA +112,104,1201,"2017",6,0,99,2,1,99,"Huanqiu",NA +112,104,1203,"2017",3,1,99,3,99,80,"Huanqiu",NA +112,104,1205,"2017",6,0,99,3,1,25,"Huanqiu",NA +112,104,1206,"2017",6,1,30,3,30,40,"Huanqiu",NA +112,104,1207,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1208,"2017",6,1,100,2,100,100,"Huanqiu",NA +112,104,1212,"2017",5,0,30,3,70,70,"Huanqiu",NA +112,104,1213,"2017",6,0,30,3,70,80,"Huanqiu",NA +112,104,1214,"2017",2,0,100,3,0,0,"Huanqiu",NA +112,104,1218,"2017",4,1,12,5,12,NA,"Huanqiu",NA +112,104,1222,"2017",6,1,60,3,60,60,"Huanqiu",NA +112,104,1228,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,1230,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1232,"2017",2,0,NA,2,NA,99,"Huanqiu",NA +112,104,1235,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1236,"2017",5,0,50,3,50,50,"Huanqiu",NA +112,104,1243,"2017",6,1,70,2,70,80,"Huanqiu",NA +112,104,1246,"2017",3,1,70,2,70,60,"Huanqiu",NA +112,104,1251,"2017",6,0,99,2,1,1,"Huanqiu",NA +112,104,1252,"2017",6,0,99,3,1,NA,"Huanqiu",NA +112,104,1256,"2017",2,1,50,3,50,50,"Huanqiu",NA +112,104,1257,"2017",2,0,50,2,50,91,"Huanqiu",NA +112,104,1258,"2017",2,1,99,2,99,99,"Huanqiu",NA +112,104,1263,"2017",4,1,50,5,50,NA,"Huanqiu",NA +112,104,1264,"2017",6,1,100,3,100,0,"Huanqiu",NA +112,104,1266,"2017",2,1,99,3,99,1,"Huanqiu",NA +112,104,1269,"2017",4,0,1,5,99,NA,"Huanqiu",NA +112,104,1275,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,1277,"2017",2,1,90,2,90,99,"Huanqiu",NA +112,104,1278,"2017",3,0,80,2,20,30,"Huanqiu",NA +112,104,1279,"2017",6,0,100,2,0,10,"Huanqiu",NA +112,104,1283,"2017",2,0,50,2,50,50,"Huanqiu",NA +112,104,1284,"2017",5,0,99,2,1,99,"Huanqiu",NA +112,104,1289,"2017",2,0,26,3,74,NA,"Huanqiu",NA +112,104,1290,"2017",4,0,90,5,10,NA,"Huanqiu",NA +112,104,1292,"2017",5,1,99,2,99,50,"Huanqiu",NA +112,104,1293,"2017",2,0,99,3,1,50,"Huanqiu",NA +112,104,1295,"2017",2,1,50,2,50,50,"Huanqiu",NA +112,104,1303,"2017",4,1,80,5,80,NA,"Huanqiu",NA +112,104,1305,"2017",2,0,50,2,50,100,"Huanqiu",NA +112,104,1307,"2017",3,1,NA,3,NA,NA,"Huanqiu",NA +112,104,1315,"2017",4,1,50,5,50,NA,"Huanqiu",NA +112,104,1318,"2017",2,0,99,2,1,1,"Huanqiu",NA +112,104,1319,"2017",6,0,1,2,99,NA,"Huanqiu",NA +112,104,1320,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1322,"2017",2,0,50,2,50,50,"Huanqiu",NA +112,104,1326,"2017",2,1,99,3,99,NA,"Huanqiu",NA +112,104,1327,"2017",3,1,99,2,99,99,"Huanqiu",NA +112,104,1330,"2017",6,0,100,2,0,0,"Huanqiu",NA +112,104,1331,"2017",2,1,NA,2,NA,99,"Huanqiu",NA +112,104,1333,"2017",2,1,50,3,50,90,"Huanqiu",NA +112,104,1335,"2017",4,0,70,5,30,NA,"Huanqiu",NA +112,104,1338,"2017",6,0,60,2,40,50,"Huanqiu",NA +112,104,1339,"2017",6,0,99,2,1,1,"Huanqiu",NA +112,104,1341,"2017",6,1,80,2,80,50,"Huanqiu",NA +112,104,1346,"2017",5,0,50,2,50,50,"Huanqiu",NA +112,104,1347,"2017",2,1,99,3,99,50,"Huanqiu",NA +112,104,1348,"2017",5,0,NA,2,NA,99,"Huanqiu",NA +112,104,1351,"2017",2,0,90,2,10,99,"Huanqiu",NA +112,104,1353,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,1356,"2017",6,1,50,3,50,50,"Huanqiu",NA +112,104,1359,"2017",2,1,99,2,99,99,"Huanqiu",NA +112,104,1360,"2017",2,1,90,3,90,80,"Huanqiu",NA +112,104,1363,"2017",5,0,100,3,0,100,"Huanqiu",NA +112,104,1365,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,1370,"2017",2,1,99,2,99,50,"Huanqiu",NA +112,104,1373,"2017",3,1,99,3,99,80,"Huanqiu",NA +112,104,1374,"2017",2,0,99,3,1,50,"Huanqiu",NA +112,104,1379,"2017",5,0,100,2,0,0,"Huanqiu",NA +112,104,1383,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,1386,"2017",5,1,99,3,99,99,"Huanqiu",NA +112,104,1387,"2017",5,0,50,2,50,50,"Huanqiu",NA +112,104,1391,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1392,"2017",3,0,1,3,99,99,"Huanqiu",NA +112,104,1393,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1394,"2017",2,0,50,3,50,50,"Huanqiu",NA +112,104,1396,"2017",6,1,1,3,1,1,"Huanqiu",NA +112,104,1397,"2017",6,0,1,2,99,99,"Huanqiu",NA +112,104,1399,"2017",2,1,90,2,90,80,"Huanqiu",NA +112,104,1404,"2017",5,0,50,3,50,40,"Huanqiu",NA +112,104,1407,"2017",2,1,50,3,50,30,"Huanqiu",NA +112,104,1408,"2017",3,1,99,3,99,99,"Huanqiu",NA +112,104,1409,"2017",5,1,60,2,60,60,"Huanqiu",NA +112,104,1414,"2017",3,1,1,3,1,50,"Huanqiu",NA +112,104,1417,"2017",6,1,40,3,40,40,"Huanqiu",NA +112,104,1419,"2017",6,1,99,3,99,99,"Huanqiu",NA +112,104,1421,"2017",5,1,50,2,50,50,"Huanqiu",NA +112,104,1423,"2017",4,1,78,5,78,NA,"Huanqiu",NA +112,104,1424,"2017",3,0,50,3,50,50,"Huanqiu",NA +112,104,1425,"2017",3,1,1,2,1,99,"Huanqiu",NA +112,104,1427,"2017",2,0,NA,3,NA,99,"Huanqiu",NA +112,104,1429,"2017",3,1,1,3,1,50,"Huanqiu",NA +112,104,1430,"2017",2,1,99,3,99,99,"Huanqiu",NA +112,104,1436,"2017",2,0,99,3,1,1,"Huanqiu",NA +112,104,1437,"2017",5,1,99,3,99,99,"Huanqiu",NA +112,104,1438,"2017",6,0,80,3,20,20,"Huanqiu",NA +112,104,1443,"2017",5,0,99,3,1,1,"Huanqiu",NA +112,104,1444,"2017",2,0,1,2,99,99,"Huanqiu",NA +112,104,1449,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,1451,"2017",6,1,50,2,50,50,"Huanqiu",NA +112,104,1453,"2017",6,1,80,2,80,99,"Huanqiu",NA +112,104,1454,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,1455,"2017",3,1,50,3,50,50,"Huanqiu",NA +112,104,1459,"2017",4,1,100,5,100,NA,"Huanqiu",NA +112,104,1462,"2017",3,1,60,2,60,60,"Huanqiu",NA +112,104,1463,"2017",3,0,10,2,90,99,"Huanqiu",NA +112,104,1469,"2017",2,0,99,2,1,50,"Huanqiu",NA +112,104,1474,"2017",2,1,99,2,99,1,"Huanqiu",NA +112,104,1476,"2017",6,0,1,2,99,99,"Huanqiu",NA +112,104,1477,"2017",6,0,50,3,50,50,"Huanqiu",NA +112,104,1480,"2017",3,0,1,2,99,99,"Huanqiu",NA +112,104,1482,"2017",4,0,65,5,35,NA,"Huanqiu",NA +112,104,1483,"2017",3,0,99,2,1,1,"Huanqiu",NA +112,104,1484,"2017",4,0,NA,5,NA,NA,"Huanqiu",NA +112,104,1486,"2017",2,1,99,3,99,99,"Huanqiu",NA +112,104,1489,"2017",5,1,50,2,50,1,"Huanqiu",NA +112,104,1490,"2017",5,0,1,2,99,99,"Huanqiu",NA +112,104,1492,"2017",6,1,2,2,2,1,"Huanqiu",NA +112,104,1495,"2017",6,0,50,3,50,1,"Huanqiu",NA +112,104,1496,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,1498,"2017",3,0,99,2,1,50,"Huanqiu",NA +112,104,1500,"2017",6,1,50,3,50,99,"Huanqiu",NA +112,104,1501,"2017",3,1,99,2,99,99,"Huanqiu",NA +112,104,1504,"2017",5,0,NA,3,NA,1,"Huanqiu",NA +112,104,1506,"2017",6,1,50,2,50,50,"Huanqiu",NA +112,104,1509,"2017",3,1,98,3,98,95,"Huanqiu",NA +112,104,1514,"2017",2,0,50,3,50,1,"Huanqiu",NA +112,104,1515,"2017",2,1,99,3,99,99,"Huanqiu",NA +112,104,1521,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,1524,"2017",6,0,10,2,90,85,"Huanqiu",NA +112,104,1527,"2017",5,1,99,3,99,99,"Huanqiu",NA +112,104,1531,"2017",3,1,NA,2,NA,1,"Huanqiu",NA +112,104,1532,"2017",5,1,30,2,30,50,"Huanqiu",NA +112,104,1533,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1539,"2017",3,0,NA,2,NA,1,"Huanqiu",NA +112,104,1542,"2017",2,0,90,3,10,1,"Huanqiu",NA +112,104,1547,"2017",6,1,90,3,90,90,"Huanqiu",NA +112,104,1548,"2017",3,0,NA,3,NA,1,"Huanqiu",NA +112,104,1550,"2017",6,0,50,3,50,1,"Huanqiu",NA +112,104,1553,"2017",6,1,99,3,99,99,"Huanqiu",NA +112,104,1554,"2017",6,0,5,3,95,98,"Huanqiu",NA +112,104,1555,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,1557,"2017",5,1,99,3,99,99,"Huanqiu",NA +112,104,1560,"2017",6,0,99,2,1,50,"Huanqiu",NA +112,104,1574,"2017",5,1,50,2,50,50,"Huanqiu",NA +112,104,1579,"2017",4,0,NA,5,NA,NA,"Huanqiu",NA +112,104,1580,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,1582,"2017",5,1,50,3,50,50,"Huanqiu",NA +112,104,1584,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1588,"2017",2,1,50,2,50,50,"Huanqiu",NA +112,104,1591,"2017",5,1,99,2,99,NA,"Huanqiu",NA +112,104,1594,"2017",2,0,99,2,1,1,"Huanqiu",NA +112,104,1595,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1596,"2017",2,0,1,2,99,99,"Huanqiu",NA +112,104,1597,"2017",5,0,81,2,19,19,"Huanqiu",NA +112,104,1598,"2017",2,1,99,3,99,99,"Huanqiu",NA +112,104,1602,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,1604,"2017",5,0,50,3,50,50,"Huanqiu",NA +112,104,1606,"2017",6,1,50,2,50,50,"Huanqiu",NA +112,104,1607,"2017",6,1,50,3,50,58,"Huanqiu",NA +112,104,1609,"2017",2,0,50,3,50,1,"Huanqiu",NA +112,104,1620,"2017",5,0,50,2,50,50,"Huanqiu",NA +112,104,1623,"2017",5,0,NA,3,NA,NA,"Huanqiu",NA +112,104,1624,"2017",6,1,99,2,99,NA,"Huanqiu",NA +112,104,1625,"2017",2,1,40,2,40,30,"Huanqiu",NA +112,104,1627,"2017",5,1,70,3,70,60,"Huanqiu",NA +112,104,1628,"2017",5,1,60,2,60,NA,"Huanqiu",NA +112,104,1629,"2017",2,0,70,3,30,40,"Huanqiu",NA +112,104,1630,"2017",2,1,NA,3,NA,60,"Huanqiu",NA +112,104,1640,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1643,"2017",5,0,50,3,50,50,"Huanqiu",NA +112,104,1644,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1646,"2017",6,0,70,3,30,30,"Huanqiu",NA +112,104,1647,"2017",5,0,99,2,1,1,"Huanqiu",NA +112,104,1648,"2017",6,0,99,2,1,1,"Huanqiu",NA +112,104,1649,"2017",6,1,50,3,50,99,"Huanqiu",NA +112,104,1651,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,1653,"2017",5,0,99,3,1,50,"Huanqiu",NA +112,104,1654,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,1656,"2017",5,0,70,2,30,30,"Huanqiu",NA +112,104,1658,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,1659,"2017",5,1,50,3,50,50,"Huanqiu",NA +112,104,1660,"2017",6,1,NA,3,NA,NA,"Huanqiu",NA +112,104,1671,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1673,"2017",3,1,99,3,99,50,"Huanqiu",NA +112,104,1674,"2017",3,1,80,3,80,80,"Huanqiu",NA +112,104,1680,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,1681,"2017",2,1,NA,3,NA,NA,"Huanqiu",NA +112,104,1682,"2017",2,0,70,3,30,10,"Huanqiu",NA +112,104,1686,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1689,"2017",6,1,5,2,5,50,"Huanqiu",NA +112,104,1690,"2017",3,1,50,3,50,50,"Huanqiu",NA +112,104,1694,"2017",2,0,99,3,1,1,"Huanqiu",NA +112,104,1695,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,1698,"2017",2,0,NA,2,NA,40,"Huanqiu",NA +112,104,1700,"2017",3,1,2,3,2,2,"Huanqiu",NA +112,104,1703,"2017",6,1,99,3,99,50,"Huanqiu",NA +112,104,1705,"2017",6,1,99,3,99,9,"Huanqiu",NA +112,104,1706,"2017",5,0,NA,3,NA,NA,"Huanqiu",NA +112,104,1709,"2017",2,0,70,2,30,1,"Huanqiu",NA +112,104,1711,"2017",4,0,100,5,0,NA,"Huanqiu",NA +112,104,1712,"2017",3,0,50,3,50,50,"Huanqiu",NA +112,104,1714,"2017",5,0,22,3,78,60,"Huanqiu",NA +112,104,1715,"2017",4,1,22,5,22,NA,"Huanqiu",NA +112,104,1717,"2017",6,0,30,3,70,70,"Huanqiu",NA +112,104,1718,"2017",2,1,98,2,98,98,"Huanqiu",NA +112,104,1727,"2017",6,0,56,2,44,45,"Huanqiu",NA +112,104,1728,"2017",3,1,99,2,99,50,"Huanqiu",NA +112,104,1729,"2017",3,0,44,2,56,89,"Huanqiu",NA +112,104,1730,"2017",6,1,90,2,90,80,"Huanqiu",NA +112,104,1731,"2017",4,1,90,5,90,NA,"Huanqiu",NA +112,104,1734,"2017",3,1,20,3,20,20,"Huanqiu",NA +112,104,1735,"2017",4,0,15,5,85,NA,"Huanqiu",NA +112,104,1739,"2017",5,0,50,2,50,NA,"Huanqiu",NA +112,104,1741,"2017",6,0,99,3,1,40,"Huanqiu",NA +112,104,1743,"2017",6,0,50,2,50,50,"Huanqiu",NA +112,104,1745,"2017",4,1,50,5,50,NA,"Huanqiu",NA +112,104,1748,"2017",6,1,99,3,99,99,"Huanqiu",NA +112,104,1750,"2017",6,1,99,3,99,1,"Huanqiu",NA +112,104,1751,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,1753,"2017",3,1,40,2,40,30,"Huanqiu",NA +112,104,1758,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,1759,"2017",5,1,99,3,99,98,"Huanqiu",NA +112,104,1760,"2017",4,0,81,5,19,NA,"Huanqiu",NA +112,104,1761,"2017",4,1,98,5,98,NA,"Huanqiu",NA +112,104,1762,"2017",6,1,99,3,99,99,"Huanqiu",NA +112,104,1768,"2017",2,1,99,3,99,99,"Huanqiu",NA +112,104,1769,"2017",3,1,99,2,99,99,"Huanqiu",NA +112,104,1770,"2017",5,0,100,3,0,0,"Huanqiu",NA +112,104,1771,"2017",3,0,100,2,0,1,"Huanqiu",NA +112,104,1780,"2017",5,1,99,3,99,92,"Huanqiu",NA +112,104,1781,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1782,"2017",3,1,92,3,92,97,"Huanqiu",NA +112,104,1784,"2017",6,1,88,3,88,89,"Huanqiu",NA +112,104,1788,"2017",5,0,88,3,12,1,"Huanqiu",NA +112,104,1789,"2017",3,1,96,2,96,95,"Huanqiu",NA +112,104,1790,"2017",5,1,99,2,99,90,"Huanqiu",NA +112,104,1797,"2017",5,0,NA,3,NA,34,"Huanqiu",NA +112,104,1803,"2017",2,1,87,3,87,96,"Huanqiu",NA +112,104,1805,"2017",3,0,90,3,10,11,"Huanqiu",NA +112,104,1808,"2017",2,0,1,3,99,99,"Huanqiu",NA +112,104,1811,"2017",6,0,1,3,99,99,"Huanqiu",NA +112,104,1819,"2017",3,1,90,3,90,70,"Huanqiu",NA +112,104,1822,"2017",3,1,90,2,90,50,"Huanqiu",NA +112,104,1823,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,1826,"2017",5,1,1,3,1,1,"Huanqiu",NA +112,104,1828,"2017",5,0,70,3,30,40,"Huanqiu",NA +112,104,1844,"2017",5,1,99,3,99,92,"Huanqiu",NA +112,104,1847,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,1849,"2017",2,1,100,3,100,99,"Huanqiu",NA +112,104,1853,"2017",3,1,99,3,99,99,"Huanqiu",NA +112,104,1856,"2017",4,1,90,5,90,NA,"Huanqiu",NA +112,104,1857,"2017",4,0,30,5,70,NA,"Huanqiu",NA +112,104,1858,"2017",3,1,99,3,99,99,"Huanqiu",NA +112,104,1859,"2017",6,1,NA,2,NA,90,"Huanqiu",NA +112,104,1860,"2017",5,1,1,2,1,1,"Huanqiu",NA +112,104,1864,"2017",6,1,99,3,99,50,"Huanqiu",NA +112,104,1870,"2017",3,1,0,3,0,0,"Huanqiu",NA +112,104,1873,"2017",6,0,99,2,1,1,"Huanqiu",NA +112,104,1876,"2017",3,0,89,3,11,20,"Huanqiu",NA +112,104,1878,"2017",6,1,90,2,90,90,"Huanqiu",NA +112,104,1880,"2017",5,1,1,2,1,1,"Huanqiu",NA +112,104,1881,"2017",6,0,99,2,1,99,"Huanqiu",NA +112,104,1898,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,1899,"2017",2,1,50,2,50,20,"Huanqiu",NA +112,104,1908,"2017",5,1,99,2,99,1,"Huanqiu",NA +112,104,1909,"2017",2,1,90,2,90,60,"Huanqiu",NA +112,104,1910,"2017",2,0,1,3,99,1,"Huanqiu",NA +112,104,1917,"2017",2,1,99,2,99,50,"Huanqiu",NA +112,104,1919,"2017",5,0,1,3,99,99,"Huanqiu",NA +112,104,1921,"2017",5,1,80,3,80,80,"Huanqiu",NA +112,104,1925,"2017",6,0,99,2,1,1,"Huanqiu",NA +112,104,1926,"2017",5,0,90,3,10,99,"Huanqiu",NA +112,104,1930,"2017",5,0,NA,3,NA,5,"Huanqiu",NA +112,104,1931,"2017",3,1,90,3,90,90,"Huanqiu",NA +112,104,1933,"2017",5,0,99,2,1,40,"Huanqiu",NA +112,104,1934,"2017",3,1,80,3,80,80,"Huanqiu",NA +112,104,1935,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1937,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1939,"2017",4,0,1,5,99,NA,"Huanqiu",NA +112,104,1940,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,1941,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1942,"2017",6,1,99,3,99,99,"Huanqiu",NA +112,104,1944,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,1947,"2017",3,1,60,2,60,80,"Huanqiu",NA +112,104,1954,"2017",5,1,1,2,1,99,"Huanqiu",NA +112,104,1960,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1962,"2017",3,0,90,2,10,20,"Huanqiu",NA +112,104,1966,"2017",5,0,80,2,20,10,"Huanqiu",NA +112,104,1967,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,1969,"2017",5,0,90,3,10,10,"Huanqiu",NA +112,104,1973,"2017",3,0,NA,2,NA,50,"Huanqiu",NA +112,104,1974,"2017",3,0,99,2,1,99,"Huanqiu",NA +112,104,1976,"2017",5,1,80,2,80,50,"Huanqiu",NA +112,104,1977,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,1980,"2017",3,1,98,2,98,90,"Huanqiu",NA +112,104,1982,"2017",3,0,50,2,50,1,"Huanqiu",NA +112,104,1985,"2017",2,1,99,2,99,50,"Huanqiu",NA +112,104,1986,"2017",5,1,99,3,99,99,"Huanqiu",NA +112,104,1987,"2017",3,0,80,2,20,10,"Huanqiu",NA +112,104,1992,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,1993,"2017",3,1,99,3,99,99,"Huanqiu",NA +112,104,2002,"2017",5,0,99,3,1,1,"Huanqiu",NA +112,104,2005,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,2007,"2017",6,0,100,3,0,0,"Huanqiu",NA +112,104,2011,"2017",3,1,99,3,99,99,"Huanqiu",NA +112,104,2012,"2017",6,0,100,3,0,0,"Huanqiu",NA +112,104,2016,"2017",2,0,99,2,1,1,"Huanqiu",NA +112,104,2023,"2017",2,0,1,3,99,99,"Huanqiu",NA +112,104,2025,"2017",5,0,90,3,10,78,"Huanqiu",NA +112,104,2028,"2017",4,0,60,5,40,NA,"Huanqiu",NA +112,104,2029,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,2030,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,2032,"2017",5,0,60,3,40,30,"Huanqiu",NA +112,104,2035,"2017",3,0,90,2,10,10,"Huanqiu",NA +112,104,2037,"2017",5,0,100,3,0,1,"Huanqiu",NA +112,104,2039,"2017",6,1,99,2,99,0,"Huanqiu",NA +112,104,2047,"2017",6,0,50,3,50,50,"Huanqiu",NA +112,104,2053,"2017",6,1,90,2,90,80,"Huanqiu",NA +112,104,2054,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,2057,"2017",3,1,90,3,90,90,"Huanqiu",NA +112,104,2059,"2017",3,1,99,2,99,99,"Huanqiu",NA +112,104,2061,"2017",2,0,99,2,1,1,"Huanqiu",NA +112,104,2062,"2017",6,0,99,3,1,1,"Huanqiu",NA +112,104,2066,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,2067,"2017",3,1,21,3,21,21,"Huanqiu",NA +112,104,2072,"2017",3,0,80,3,20,20,"Huanqiu",NA +112,104,2078,"2017",6,1,100,3,100,100,"Huanqiu",NA +112,104,2079,"2017",6,0,1,2,99,99,"Huanqiu",NA +112,104,2082,"2017",4,1,99,5,99,NA,"Huanqiu",NA +112,104,2084,"2017",5,0,99,3,1,1,"Huanqiu",NA +112,104,2086,"2017",3,0,99,3,1,1,"Huanqiu",NA +112,104,2087,"2017",4,0,99,5,1,NA,"Huanqiu",NA +112,104,2088,"2017",6,1,75,3,75,75,"Huanqiu",NA +112,104,2092,"2017",6,0,90,3,10,10,"Huanqiu",NA +112,104,2097,"2017",3,1,50,2,50,50,"Huanqiu",NA +112,104,2098,"2017",3,1,1,2,1,20,"Huanqiu",NA +112,104,2102,"2017",6,1,99,2,99,99,"Huanqiu",NA +112,104,2103,"2017",5,1,99,2,99,99,"Huanqiu",NA +112,104,2105,"2017",6,1,50,2,50,50,"Huanqiu",NA +112,104,2109,"2017",3,1,99,2,99,99,"Huanqiu",NA +112,104,2110,"2017",2,0,50,2,50,50,"Huanqiu",NA +112,104,2111,"2017",2,1,99,2,99,99,"Huanqiu",NA +112,104,2112,"2017",2,0,50,2,50,50,"Huanqiu",NA +112,104,2113,"2017",5,1,50,2,50,NA,"Huanqiu",NA +112,104,2114,"2017",3,1,1,3,1,1,"Huanqiu",NA +112,104,2116,"2017",2,0,NA,2,NA,92,"Huanqiu",NA +112,104,2117,"2017",3,0,1,3,99,99,"Huanqiu",NA +112,104,2122,"2017",5,1,99,2,99,50,"Huanqiu",NA +112,104,2123,"2017",6,0,99,2,1,1,"Huanqiu",NA +112,104,2124,"2017",3,1,99,3,99,50,"Huanqiu",NA +112,104,2125,"2017",3,1,99,2,99,99,"Huanqiu",NA +112,104,2127,"2017",6,0,90,3,10,20,"Huanqiu",NA +112,104,2134,"2017",3,0,20,2,80,26,"Huanqiu",NA +112,104,2135,"2017",3,1,10,2,10,10,"Huanqiu",NA +112,118,4,"2017",2,0,NA,2,NA,NA,"Nanfang Dushibao",NA +112,118,5,"2017",3,1,NA,3,NA,NA,"Nanfang Dushibao",NA +112,118,7,"2017",2,1,100,3,100,100,"Nanfang Dushibao",NA +112,118,9,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,12,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,13,"2017",3,0,75,2,25,40,"Nanfang Dushibao",NA +112,118,14,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,17,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,21,"2017",3,0,99,2,1,50,"Nanfang Dushibao",NA +112,118,28,"2017",3,0,85,3,15,12,"Nanfang Dushibao",NA +112,118,29,"2017",2,1,NA,3,NA,NA,"Nanfang Dushibao",NA +112,118,35,"2017",6,0,99,3,1,99,"Nanfang Dushibao",NA +112,118,36,"2017",5,0,75,3,25,30,"Nanfang Dushibao",NA +112,118,37,"2017",2,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,38,"2017",2,0,NA,2,NA,1,"Nanfang Dushibao",NA +112,118,39,"2017",3,0,40,2,60,60,"Nanfang Dushibao",NA +112,118,40,"2017",4,1,98,4,98,NA,"Nanfang Dushibao",NA +112,118,41,"2017",6,0,40,3,60,70,"Nanfang Dushibao",NA +112,118,44,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,47,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,51,"2017",3,0,50,3,50,50,"Nanfang Dushibao",NA +112,118,52,"2017",5,1,NA,3,NA,NA,"Nanfang Dushibao",NA +112,118,56,"2017",6,1,65,2,65,60,"Nanfang Dushibao",NA +112,118,59,"2017",3,1,60,3,60,60,"Nanfang Dushibao",NA +112,118,60,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,62,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +112,118,65,"2017",2,0,70,3,30,35,"Nanfang Dushibao",NA +112,118,66,"2017",5,0,70,2,30,30,"Nanfang Dushibao",NA +112,118,69,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +112,118,70,"2017",5,1,99,3,99,90,"Nanfang Dushibao",NA +112,118,74,"2017",3,1,80,2,80,70,"Nanfang Dushibao",NA +112,118,75,"2017",3,1,99,2,99,50,"Nanfang Dushibao",NA +112,118,79,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,82,"2017",2,0,10,2,90,90,"Nanfang Dushibao",NA +112,118,84,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,87,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,88,"2017",2,1,70,2,70,20,"Nanfang Dushibao",NA +112,118,95,"2017",2,0,100,3,0,0,"Nanfang Dushibao",NA +112,118,97,"2017",3,0,75,2,25,1,"Nanfang Dushibao",NA +112,118,98,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,106,"2017",3,0,100,3,0,0,"Nanfang Dushibao",NA +112,118,112,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,116,"2017",3,0,99,2,1,99,"Nanfang Dushibao",NA +112,118,118,"2017",2,1,99,2,99,50,"Nanfang Dushibao",NA +112,118,119,"2017",2,1,90,3,90,78,"Nanfang Dushibao",NA +112,118,122,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +112,118,124,"2017",2,1,1,2,1,1,"Nanfang Dushibao",NA +112,118,126,"2017",2,0,99,3,1,99,"Nanfang Dushibao",NA +112,118,127,"2017",3,1,100,2,100,50,"Nanfang Dushibao",NA +112,118,129,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1174,"2017",2,0,100,2,0,0,"Nanfang Dushibao",NA +112,118,1177,"2017",2,1,1,3,1,1,"Nanfang Dushibao",NA +112,118,1179,"2017",5,1,10,3,10,20,"Nanfang Dushibao",NA +112,118,1183,"2017",5,1,100,3,100,100,"Nanfang Dushibao",NA +112,118,1184,"2017",2,0,NA,2,NA,NA,"Nanfang Dushibao",NA +112,118,1190,"2017",3,1,40,3,40,30,"Nanfang Dushibao",NA +112,118,1193,"2017",3,0,85,2,15,50,"Nanfang Dushibao",NA +112,118,1194,"2017",3,1,90,3,90,70,"Nanfang Dushibao",NA +112,118,1195,"2017",5,0,99,3,1,20,"Nanfang Dushibao",NA +112,118,1202,"2017",5,0,10,2,90,40,"Nanfang Dushibao",NA +112,118,1205,"2017",6,0,75,2,25,50,"Nanfang Dushibao",NA +112,118,1206,"2017",6,1,40,2,40,30,"Nanfang Dushibao",NA +112,118,1209,"2017",3,0,100,2,0,0,"Nanfang Dushibao",NA +112,118,1213,"2017",6,0,20,2,80,70,"Nanfang Dushibao",NA +112,118,1214,"2017",2,0,100,2,0,0,"Nanfang Dushibao",NA +112,118,1217,"2017",2,0,99,3,1,50,"Nanfang Dushibao",NA +112,118,1219,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1220,"2017",3,1,20,3,20,40,"Nanfang Dushibao",NA +112,118,1223,"2017",2,0,20,2,80,80,"Nanfang Dushibao",NA +112,118,1225,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1231,"2017",4,0,NA,4,NA,NA,"Nanfang Dushibao",NA +112,118,1232,"2017",2,0,1,3,99,NA,"Nanfang Dushibao",NA +112,118,1234,"2017",3,1,99,3,99,90,"Nanfang Dushibao",NA +112,118,1236,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,1237,"2017",3,0,60,2,40,60,"Nanfang Dushibao",NA +112,118,1242,"2017",6,1,99,2,99,50,"Nanfang Dushibao",NA +112,118,1244,"2017",5,1,99,2,99,1,"Nanfang Dushibao",NA +112,118,1246,"2017",3,1,90,3,90,70,"Nanfang Dushibao",NA +112,118,1248,"2017",2,0,30,3,70,70,"Nanfang Dushibao",NA +112,118,1250,"2017",3,1,60,3,60,70,"Nanfang Dushibao",NA +112,118,1254,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +112,118,1258,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1260,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1261,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1267,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1274,"2017",3,1,1,3,1,1,"Nanfang Dushibao",NA +112,118,1275,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1280,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,1282,"2017",5,1,50,3,50,60,"Nanfang Dushibao",NA +112,118,1284,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1287,"2017",3,0,1,3,99,1,"Nanfang Dushibao",NA +112,118,1299,"2017",2,1,100,3,100,100,"Nanfang Dushibao",NA +112,118,1300,"2017",5,1,75,2,75,NA,"Nanfang Dushibao",NA +112,118,1301,"2017",2,1,NA,2,NA,99,"Nanfang Dushibao",NA +112,118,1302,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1305,"2017",2,0,0,3,100,50,"Nanfang Dushibao",NA +112,118,1307,"2017",3,1,NA,2,NA,45,"Nanfang Dushibao",NA +112,118,1310,"2017",3,1,NA,3,NA,99,"Nanfang Dushibao",NA +112,118,1316,"2017",3,0,NA,2,NA,NA,"Nanfang Dushibao",NA +112,118,1317,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +112,118,1321,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1323,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +112,118,1324,"2017",4,1,60,4,60,NA,"Nanfang Dushibao",NA +112,118,1327,"2017",3,1,1,3,1,99,"Nanfang Dushibao",NA +112,118,1328,"2017",6,0,NA,3,NA,1,"Nanfang Dushibao",NA +112,118,1329,"2017",6,0,57,3,43,43,"Nanfang Dushibao",NA +112,118,1331,"2017",2,1,99,3,99,NA,"Nanfang Dushibao",NA +112,118,1341,"2017",6,1,99,3,99,80,"Nanfang Dushibao",NA +112,118,1345,"2017",5,1,70,3,70,70,"Nanfang Dushibao",NA +112,118,1347,"2017",2,1,50,2,50,99,"Nanfang Dushibao",NA +112,118,1350,"2017",3,1,NA,3,NA,50,"Nanfang Dushibao",NA +112,118,1358,"2017",6,0,50,3,50,50,"Nanfang Dushibao",NA +112,118,1360,"2017",2,1,80,2,80,80,"Nanfang Dushibao",NA +112,118,1361,"2017",3,0,99,3,1,50,"Nanfang Dushibao",NA +112,118,1362,"2017",2,0,40,2,60,80,"Nanfang Dushibao",NA +112,118,1363,"2017",5,0,0,2,100,0,"Nanfang Dushibao",NA +112,118,1365,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1366,"2017",3,1,99,2,99,1,"Nanfang Dushibao",NA +112,118,1367,"2017",6,0,1,2,99,50,"Nanfang Dushibao",NA +112,118,1371,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,1372,"2017",6,1,15,2,15,24,"Nanfang Dushibao",NA +112,118,1373,"2017",3,1,80,2,80,50,"Nanfang Dushibao",NA +112,118,1375,"2017",6,0,80,2,20,20,"Nanfang Dushibao",NA +112,118,1377,"2017",2,0,15,3,85,80,"Nanfang Dushibao",NA +112,118,1378,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1380,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +112,118,1381,"2017",6,0,12,3,88,78,"Nanfang Dushibao",NA +112,118,1382,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1384,"2017",4,1,89,4,89,NA,"Nanfang Dushibao",NA +112,118,1385,"2017",2,1,50,2,50,40,"Nanfang Dushibao",NA +112,118,1386,"2017",5,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1389,"2017",2,0,90,2,10,10,"Nanfang Dushibao",NA +112,118,1400,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1405,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1408,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1410,"2017",5,0,99,2,1,100,"Nanfang Dushibao",NA +112,118,1412,"2017",3,1,1,3,1,50,"Nanfang Dushibao",NA +112,118,1413,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1414,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,1417,"2017",6,1,40,2,40,40,"Nanfang Dushibao",NA +112,118,1419,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1420,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1421,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +112,118,1424,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,1427,"2017",2,0,1,2,99,NA,"Nanfang Dushibao",NA +112,118,1429,"2017",3,1,50,2,50,99,"Nanfang Dushibao",NA +112,118,1433,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1436,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1440,"2017",5,1,80,3,80,78,"Nanfang Dushibao",NA +112,118,1442,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +112,118,1443,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1444,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +112,118,1445,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1446,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,1447,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1448,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1454,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1456,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1458,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1460,"2017",5,1,50,2,50,99,"Nanfang Dushibao",NA +112,118,1461,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +112,118,1464,"2017",3,0,30,3,70,70,"Nanfang Dushibao",NA +112,118,1468,"2017",2,1,9,3,9,99,"Nanfang Dushibao",NA +112,118,1471,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1472,"2017",2,0,80,3,20,50,"Nanfang Dushibao",NA +112,118,1473,"2017",3,1,99,3,99,90,"Nanfang Dushibao",NA +112,118,1479,"2017",5,0,10,3,90,NA,"Nanfang Dushibao",NA +112,118,1481,"2017",2,1,90,2,90,99,"Nanfang Dushibao",NA +112,118,1483,"2017",3,0,50,3,50,1,"Nanfang Dushibao",NA +112,118,1485,"2017",5,0,79,2,21,50,"Nanfang Dushibao",NA +112,118,1486,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1487,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +112,118,1489,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +112,118,1491,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1492,"2017",6,1,85,3,85,2,"Nanfang Dushibao",NA +112,118,1493,"2017",2,0,99,2,1,50,"Nanfang Dushibao",NA +112,118,1494,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1499,"2017",2,0,80,3,20,35,"Nanfang Dushibao",NA +112,118,1503,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +112,118,1508,"2017",3,0,99,2,1,50,"Nanfang Dushibao",NA +112,118,1509,"2017",3,1,95,2,95,85,"Nanfang Dushibao",NA +112,118,1511,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1514,"2017",2,0,99,2,1,50,"Nanfang Dushibao",NA +112,118,1523,"2017",5,1,80,3,80,80,"Nanfang Dushibao",NA +112,118,1525,"2017",2,1,85,2,85,75,"Nanfang Dushibao",NA +112,118,1526,"2017",3,0,NA,2,NA,50,"Nanfang Dushibao",NA +112,118,1527,"2017",5,1,99,2,99,NA,"Nanfang Dushibao",NA +112,118,1529,"2017",2,0,NA,2,NA,99,"Nanfang Dushibao",NA +112,118,1537,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1538,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +112,118,1540,"2017",5,0,50,3,50,50,"Nanfang Dushibao",NA +112,118,1542,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1543,"2017",4,1,60,4,60,NA,"Nanfang Dushibao",NA +112,118,1549,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +112,118,1550,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1554,"2017",6,0,2,2,98,50,"Nanfang Dushibao",NA +112,118,1558,"2017",5,1,50,3,50,50,"Nanfang Dushibao",NA +112,118,1561,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +112,118,1562,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,1563,"2017",3,0,45,2,55,70,"Nanfang Dushibao",NA +112,118,1564,"2017",2,1,20,3,20,20,"Nanfang Dushibao",NA +112,118,1566,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +112,118,1569,"2017",2,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,1571,"2017",6,0,80,2,20,30,"Nanfang Dushibao",NA +112,118,1572,"2017",3,0,80,2,20,1,"Nanfang Dushibao",NA +112,118,1576,"2017",6,1,1,2,1,1,"Nanfang Dushibao",NA +112,118,1577,"2017",2,1,50,3,50,1,"Nanfang Dushibao",NA +112,118,1584,"2017",3,0,99,2,1,50,"Nanfang Dushibao",NA +112,118,1586,"2017",3,1,99,2,99,50,"Nanfang Dushibao",NA +112,118,1587,"2017",5,0,1,3,99,99,"Nanfang Dushibao",NA +112,118,1591,"2017",5,1,NA,3,NA,99,"Nanfang Dushibao",NA +112,118,1593,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1594,"2017",2,0,NA,3,NA,1,"Nanfang Dushibao",NA +112,118,1595,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1601,"2017",2,1,80,3,80,30,"Nanfang Dushibao",NA +112,118,1604,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,1605,"2017",3,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,1613,"2017",2,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,1617,"2017",2,1,50,3,50,50,"Nanfang Dushibao",NA +112,118,1618,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1621,"2017",2,0,90,2,10,50,"Nanfang Dushibao",NA +112,118,1626,"2017",5,0,1,2,99,NA,"Nanfang Dushibao",NA +112,118,1628,"2017",5,1,60,3,60,60,"Nanfang Dushibao",NA +112,118,1629,"2017",2,0,60,2,40,70,"Nanfang Dushibao",NA +112,118,1630,"2017",2,1,60,2,60,40,"Nanfang Dushibao",NA +112,118,1634,"2017",3,0,40,3,60,60,"Nanfang Dushibao",NA +112,118,1636,"2017",2,0,80,2,20,NA,"Nanfang Dushibao",NA +112,118,1637,"2017",6,0,99,3,1,20,"Nanfang Dushibao",NA +112,118,1639,"2017",6,0,99,3,1,99,"Nanfang Dushibao",NA +112,118,1645,"2017",2,0,90,3,10,30,"Nanfang Dushibao",NA +112,118,1648,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1650,"2017",4,0,43,4,57,NA,"Nanfang Dushibao",NA +112,118,1652,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1653,"2017",5,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,1660,"2017",6,1,NA,2,NA,50,"Nanfang Dushibao",NA +112,118,1665,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1666,"2017",5,0,90,3,10,NA,"Nanfang Dushibao",NA +112,118,1670,"2017",5,1,50,2,50,80,"Nanfang Dushibao",NA +112,118,1671,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1673,"2017",3,1,50,2,50,99,"Nanfang Dushibao",NA +112,118,1675,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +112,118,1679,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1687,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,1693,"2017",5,0,50,3,50,1,"Nanfang Dushibao",NA +112,118,1694,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1695,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1699,"2017",5,1,80,2,80,80,"Nanfang Dushibao",NA +112,118,1700,"2017",3,1,2,2,2,50,"Nanfang Dushibao",NA +112,118,1702,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1705,"2017",6,1,9,2,9,99,"Nanfang Dushibao",NA +112,118,1706,"2017",5,0,NA,2,NA,NA,"Nanfang Dushibao",NA +112,118,1707,"2017",2,0,80,3,20,20,"Nanfang Dushibao",NA +112,118,1710,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,1712,"2017",3,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,1716,"2017",2,0,50,2,50,1,"Nanfang Dushibao",NA +112,118,1721,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1724,"2017",2,0,99,3,1,50,"Nanfang Dushibao",NA +112,118,1725,"2017",6,0,1,2,99,NA,"Nanfang Dushibao",NA +112,118,1727,"2017",6,0,59,3,41,44,"Nanfang Dushibao",NA +112,118,1730,"2017",6,1,99,3,99,90,"Nanfang Dushibao",NA +112,118,1736,"2017",6,0,80,3,20,30,"Nanfang Dushibao",NA +112,118,1744,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +112,118,1749,"2017",5,1,50,3,50,99,"Nanfang Dushibao",NA +112,118,1752,"2017",6,1,99,3,99,50,"Nanfang Dushibao",NA +112,118,1753,"2017",3,1,30,3,30,40,"Nanfang Dushibao",NA +112,118,1754,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1755,"2017",2,1,70,2,70,50,"Nanfang Dushibao",NA +112,118,1757,"2017",5,1,80,3,80,70,"Nanfang Dushibao",NA +112,118,1762,"2017",6,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1763,"2017",5,1,10,3,10,90,"Nanfang Dushibao",NA +112,118,1766,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1777,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +112,118,1779,"2017",3,0,92,3,8,8,"Nanfang Dushibao",NA +112,118,1782,"2017",3,1,97,2,97,88,"Nanfang Dushibao",NA +112,118,1783,"2017",5,0,50,3,50,1,"Nanfang Dushibao",NA +112,118,1785,"2017",4,1,85,4,85,NA,"Nanfang Dushibao",NA +112,118,1787,"2017",2,0,84,3,16,5,"Nanfang Dushibao",NA +112,118,1791,"2017",6,0,98,2,2,12,"Nanfang Dushibao",NA +112,118,1793,"2017",5,1,91,3,91,95,"Nanfang Dushibao",NA +112,118,1794,"2017",2,1,87,2,87,79,"Nanfang Dushibao",NA +112,118,1795,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +112,118,1797,"2017",5,0,66,2,34,NA,"Nanfang Dushibao",NA +112,118,1798,"2017",4,0,97,4,3,NA,"Nanfang Dushibao",NA +112,118,1799,"2017",3,0,NA,3,NA,NA,"Nanfang Dushibao",NA +112,118,1804,"2017",6,1,NA,3,NA,98,"Nanfang Dushibao",NA +112,118,1808,"2017",2,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,1811,"2017",6,0,1,2,99,1,"Nanfang Dushibao",NA +112,118,1812,"2017",2,0,99,3,1,0,"Nanfang Dushibao",NA +112,118,1813,"2017",4,0,50,4,50,NA,"Nanfang Dushibao",NA +112,118,1814,"2017",6,0,95,3,5,10,"Nanfang Dushibao",NA +112,118,1817,"2017",4,1,70,4,70,NA,"Nanfang Dushibao",NA +112,118,1818,"2017",2,0,70,2,30,60,"Nanfang Dushibao",NA +112,118,1821,"2017",5,1,70,2,70,40,"Nanfang Dushibao",NA +112,118,1826,"2017",5,1,1,2,1,1,"Nanfang Dushibao",NA +112,118,1827,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1828,"2017",5,0,60,2,40,50,"Nanfang Dushibao",NA +112,118,1834,"2017",5,0,99,2,1,99,"Nanfang Dushibao",NA +112,118,1835,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1838,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1841,"2017",5,0,50,2,50,NA,"Nanfang Dushibao",NA +112,118,1843,"2017",2,0,1,3,99,1,"Nanfang Dushibao",NA +112,118,1849,"2017",2,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,1850,"2017",6,1,1,3,1,1,"Nanfang Dushibao",NA +112,118,1853,"2017",3,1,99,2,99,50,"Nanfang Dushibao",NA +112,118,1854,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1859,"2017",6,1,NA,3,NA,NA,"Nanfang Dushibao",NA +112,118,1862,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1864,"2017",6,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,1865,"2017",5,0,60,2,40,40,"Nanfang Dushibao",NA +112,118,1869,"2017",2,0,100,2,0,0,"Nanfang Dushibao",NA +112,118,1872,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1875,"2017",2,0,100,2,0,0,"Nanfang Dushibao",NA +112,118,1877,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +112,118,1878,"2017",6,1,90,3,90,90,"Nanfang Dushibao",NA +112,118,1879,"2017",3,1,80,3,80,80,"Nanfang Dushibao",NA +112,118,1881,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1889,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1891,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1894,"2017",5,1,70,2,70,50,"Nanfang Dushibao",NA +112,118,1898,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1901,"2017",6,0,80,2,20,70,"Nanfang Dushibao",NA +112,118,1903,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1904,"2017",3,1,70,3,70,70,"Nanfang Dushibao",NA +112,118,1906,"2017",4,0,20,4,80,NA,"Nanfang Dushibao",NA +112,118,1907,"2017",2,0,90,2,10,2,"Nanfang Dushibao",NA +112,118,1908,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1921,"2017",5,1,80,2,80,80,"Nanfang Dushibao",NA +112,118,1923,"2017",5,1,99,2,99,50,"Nanfang Dushibao",NA +112,118,1926,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,1929,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1930,"2017",5,0,95,2,5,NA,"Nanfang Dushibao",NA +112,118,1932,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,1933,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1937,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1945,"2017",4,1,99,4,99,NA,"Nanfang Dushibao",NA +112,118,1948,"2017",5,1,10,2,10,50,"Nanfang Dushibao",NA +112,118,1949,"2017",5,0,1,2,99,99,"Nanfang Dushibao",NA +112,118,1950,"2017",2,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,1956,"2017",5,1,70,2,70,80,"Nanfang Dushibao",NA +112,118,1959,"2017",6,1,99,2,99,90,"Nanfang Dushibao",NA +112,118,1962,"2017",3,0,40,3,60,10,"Nanfang Dushibao",NA +112,118,1970,"2017",2,0,50,3,50,50,"Nanfang Dushibao",NA +112,118,1972,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +112,118,1973,"2017",3,0,NA,3,NA,NA,"Nanfang Dushibao",NA +112,118,1979,"2017",4,0,1,4,99,NA,"Nanfang Dushibao",NA +112,118,1980,"2017",3,1,98,3,98,98,"Nanfang Dushibao",NA +112,118,1983,"2017",3,0,60,3,40,50,"Nanfang Dushibao",NA +112,118,1986,"2017",5,1,99,2,99,1,"Nanfang Dushibao",NA +112,118,1988,"2017",6,1,85,2,85,95,"Nanfang Dushibao",NA +112,118,1990,"2017",2,0,50,3,50,50,"Nanfang Dushibao",NA +112,118,1991,"2017",3,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,1992,"2017",3,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,1996,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,1997,"2017",5,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,2007,"2017",6,0,100,2,0,0,"Nanfang Dushibao",NA +112,118,2012,"2017",6,0,100,2,0,0,"Nanfang Dushibao",NA +112,118,2013,"2017",6,0,100,3,0,0,"Nanfang Dushibao",NA +112,118,2015,"2017",4,0,NA,4,NA,NA,"Nanfang Dushibao",NA +112,118,2021,"2017",6,1,100,3,100,100,"Nanfang Dushibao",NA +112,118,2024,"2017",2,0,100,3,0,0,"Nanfang Dushibao",NA +112,118,2026,"2017",2,0,100,3,0,0,"Nanfang Dushibao",NA +112,118,2027,"2017",2,0,1,3,99,99,"Nanfang Dushibao",NA +112,118,2033,"2017",6,0,1,3,99,50,"Nanfang Dushibao",NA +112,118,2034,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,2035,"2017",3,0,90,3,10,10,"Nanfang Dushibao",NA +112,118,2037,"2017",5,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,2038,"2017",2,0,50,3,50,90,"Nanfang Dushibao",NA +112,118,2047,"2017",6,0,50,2,50,50,"Nanfang Dushibao",NA +112,118,2051,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,2052,"2017",5,0,60,3,40,40,"Nanfang Dushibao",NA +112,118,2055,"2017",3,1,20,3,20,89,"Nanfang Dushibao",NA +112,118,2056,"2017",2,0,90,3,10,30,"Nanfang Dushibao",NA +112,118,2057,"2017",3,1,90,2,90,90,"Nanfang Dushibao",NA +112,118,2058,"2017",3,1,40,3,40,30,"Nanfang Dushibao",NA +112,118,2059,"2017",3,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,2060,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,2062,"2017",6,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,2064,"2017",4,0,99,4,1,NA,"Nanfang Dushibao",NA +112,118,2067,"2017",3,1,21,2,21,20,"Nanfang Dushibao",NA +112,118,2069,"2017",5,1,99,2,99,1,"Nanfang Dushibao",NA +112,118,2070,"2017",5,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,2071,"2017",3,1,1,3,1,1,"Nanfang Dushibao",NA +112,118,2072,"2017",3,0,80,2,20,30,"Nanfang Dushibao",NA +112,118,2077,"2017",2,1,1,2,1,1,"Nanfang Dushibao",NA +112,118,2079,"2017",6,0,0,3,100,99,"Nanfang Dushibao",NA +112,118,2083,"2017",6,0,50,3,50,10,"Nanfang Dushibao",NA +112,118,2088,"2017",6,1,75,2,75,55,"Nanfang Dushibao",NA +112,118,2090,"2017",5,1,50,2,50,50,"Nanfang Dushibao",NA +112,118,2091,"2017",2,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,2095,"2017",2,1,90,2,90,99,"Nanfang Dushibao",NA +112,118,2098,"2017",3,1,1,3,1,1,"Nanfang Dushibao",NA +112,118,2099,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,2100,"2017",2,0,NA,2,NA,NA,"Nanfang Dushibao",NA +112,118,2102,"2017",6,1,99,3,99,99,"Nanfang Dushibao",NA +112,118,2107,"2017",6,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,2111,"2017",2,1,80,3,80,99,"Nanfang Dushibao",NA +112,118,2112,"2017",2,0,99,3,1,50,"Nanfang Dushibao",NA +112,118,2113,"2017",5,1,99,3,99,50,"Nanfang Dushibao",NA +112,118,2114,"2017",3,1,1,2,1,1,"Nanfang Dushibao",NA +112,118,2115,"2017",3,1,99,2,99,99,"Nanfang Dushibao",NA +112,118,2116,"2017",2,0,99,3,1,NA,"Nanfang Dushibao",NA +112,118,2118,"2017",4,0,80,4,20,NA,"Nanfang Dushibao",NA +112,118,2131,"2017",2,0,99,2,1,1,"Nanfang Dushibao",NA +112,118,2132,"2017",4,0,40,4,60,NA,"Nanfang Dushibao",NA +112,118,2133,"2017",3,0,99,3,1,1,"Nanfang Dushibao",NA +112,118,2134,"2017",3,0,0,3,100,80,"Nanfang Dushibao",NA +112,122,3,"2017",5,0,NA,3,NA,NA,"Xinhua",NA +112,122,4,"2017",2,0,NA,3,NA,NA,"Xinhua",NA +112,122,5,"2017",3,1,NA,2,NA,NA,"Xinhua",NA +112,122,6,"2017",2,0,100,2,0,0,"Xinhua",NA +112,122,12,"2017",5,0,99,2,1,99,"Xinhua",NA +112,122,13,"2017",3,0,75,3,25,25,"Xinhua",NA +112,122,14,"2017",5,0,1,3,99,99,"Xinhua",NA +112,122,16,"2017",2,0,90,2,10,1,"Xinhua",NA +112,122,20,"2017",5,0,1,2,99,99,"Xinhua",NA +112,122,22,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,23,"2017",3,0,99,2,1,50,"Xinhua",NA +112,122,24,"2017",4,0,90,2,10,50,"Xinhua",NA +112,122,26,"2017",6,1,70,2,70,50,"Xinhua",NA +112,122,27,"2017",3,0,99,2,1,10,"Xinhua",NA +112,122,28,"2017",3,0,88,2,12,10,"Xinhua",NA +112,122,30,"2017",3,1,NA,2,NA,NA,"Xinhua",NA +112,122,32,"2017",2,1,NA,2,NA,NA,"Xinhua",NA +112,122,34,"2017",6,1,99,2,99,99,"Xinhua",NA +112,122,35,"2017",6,0,1,2,99,99,"Xinhua",NA +112,122,37,"2017",2,0,99,3,1,99,"Xinhua",NA +112,122,39,"2017",3,0,40,3,60,60,"Xinhua",NA +112,122,41,"2017",6,0,30,2,70,56,"Xinhua",NA +112,122,43,"2017",4,0,99,2,1,50,"Xinhua",NA +112,122,46,"2017",6,0,50,2,50,50,"Xinhua",NA +112,122,50,"2017",2,0,20,2,80,80,"Xinhua",NA +112,122,51,"2017",3,0,50,2,50,50,"Xinhua",NA +112,122,56,"2017",6,1,70,3,70,65,"Xinhua",NA +112,122,58,"2017",3,0,50,2,50,50,"Xinhua",NA +112,122,60,"2017",3,1,99,3,99,50,"Xinhua",NA +112,122,61,"2017",3,1,99,2,99,99,"Xinhua",NA +112,122,64,"2017",3,1,99,2,99,99,"Xinhua",NA +112,122,65,"2017",2,0,65,2,35,50,"Xinhua",NA +112,122,68,"2017",3,1,90,2,90,80,"Xinhua",NA +112,122,71,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,72,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,73,"2017",2,0,99,3,1,1,"Xinhua",NA +112,122,74,"2017",3,1,80,3,80,80,"Xinhua",NA +112,122,84,"2017",3,0,50,3,50,50,"Xinhua",NA +112,122,85,"2017",4,1,100,2,100,100,"Xinhua",NA +112,122,91,"2017",4,0,100,2,0,0,"Xinhua",NA +112,122,92,"2017",2,1,50,2,50,50,"Xinhua",NA +112,122,96,"2017",2,0,99,2,1,99,"Xinhua",NA +112,122,97,"2017",3,0,75,3,25,25,"Xinhua",NA +112,122,98,"2017",3,1,99,2,99,99,"Xinhua",NA +112,122,100,"2017",2,0,99,3,1,1,"Xinhua",NA +112,122,103,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,106,"2017",3,0,100,2,0,0,"Xinhua",NA +112,122,109,"2017",4,0,95,2,5,10,"Xinhua",NA +112,122,113,"2017",3,1,75,2,75,75,"Xinhua",NA +112,122,114,"2017",2,0,80,2,20,20,"Xinhua",NA +112,122,115,"2017",2,1,100,3,100,100,"Xinhua",NA +112,122,116,"2017",3,0,99,3,1,1,"Xinhua",NA +112,122,120,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,127,"2017",3,1,100,3,100,100,"Xinhua",NA +112,122,130,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,132,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,139,"2017",2,0,50,3,50,50,"Xinhua",NA +112,122,141,"2017",2,1,100,3,100,100,"Xinhua",NA +112,122,1169,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,1170,"2017",2,0,100,2,0,0,"Xinhua",NA +112,122,1171,"2017",5,1,100,2,100,100,"Xinhua",NA +112,122,1172,"2017",2,0,100,3,0,0,"Xinhua",NA +112,122,1175,"2017",5,0,90,3,10,50,"Xinhua",NA +112,122,1177,"2017",2,1,1,2,1,99,"Xinhua",NA +112,122,1184,"2017",2,0,0,3,100,NA,"Xinhua",NA +112,122,1187,"2017",3,0,80,3,20,30,"Xinhua",NA +112,122,1188,"2017",2,0,50,2,50,50,"Xinhua",NA +112,122,1192,"2017",2,1,70,2,70,50,"Xinhua",NA +112,122,1196,"2017",6,0,99,3,1,1,"Xinhua",NA +112,122,1197,"2017",2,1,99,2,99,80,"Xinhua",NA +112,122,1200,"2017",6,0,99,2,1,50,"Xinhua",NA +112,122,1203,"2017",3,1,80,2,80,50,"Xinhua",NA +112,122,1204,"2017",6,1,99,3,99,80,"Xinhua",NA +112,122,1211,"2017",2,0,40,3,60,NA,"Xinhua",NA +112,122,1212,"2017",5,0,30,2,70,70,"Xinhua",NA +112,122,1216,"2017",2,0,20,2,80,60,"Xinhua",NA +112,122,1217,"2017",2,0,50,2,50,1,"Xinhua",NA +112,122,1220,"2017",3,1,40,2,40,40,"Xinhua",NA +112,122,1223,"2017",2,0,20,3,80,80,"Xinhua",NA +112,122,1229,"2017",3,0,99,3,1,35,"Xinhua",NA +112,122,1234,"2017",3,1,90,2,90,80,"Xinhua",NA +112,122,1238,"2017",6,1,NA,3,NA,NA,"Xinhua",NA +112,122,1241,"2017",2,0,1,2,99,99,"Xinhua",NA +112,122,1245,"2017",6,0,100,3,0,0,"Xinhua",NA +112,122,1247,"2017",3,1,99,2,99,50,"Xinhua",NA +112,122,1249,"2017",4,0,1,2,99,99,"Xinhua",NA +112,122,1255,"2017",4,1,99,2,99,NA,"Xinhua",NA +112,122,1270,"2017",2,0,80,2,20,20,"Xinhua",NA +112,122,1271,"2017",3,1,33,2,33,66,"Xinhua",NA +112,122,1273,"2017",4,1,99,2,99,50,"Xinhua",NA +112,122,1276,"2017",2,1,99,2,99,1,"Xinhua",NA +112,122,1281,"2017",6,1,50,3,50,99,"Xinhua",NA +112,122,1283,"2017",2,0,50,3,50,50,"Xinhua",NA +112,122,1285,"2017",5,0,1,3,99,99,"Xinhua",NA +112,122,1289,"2017",2,0,NA,2,NA,74,"Xinhua",NA +112,122,1293,"2017",2,0,50,2,50,50,"Xinhua",NA +112,122,1294,"2017",5,1,1,2,1,50,"Xinhua",NA +112,122,1296,"2017",2,0,66,3,34,34,"Xinhua",NA +112,122,1297,"2017",4,0,90,2,10,5,"Xinhua",NA +112,122,1298,"2017",5,1,70,2,70,60,"Xinhua",NA +112,122,1299,"2017",2,1,100,2,100,100,"Xinhua",NA +112,122,1300,"2017",5,1,75,3,75,75,"Xinhua",NA +112,122,1302,"2017",6,1,99,3,99,99,"Xinhua",NA +112,122,1306,"2017",6,1,1,3,1,1,"Xinhua",NA +112,122,1309,"2017",5,1,100,3,100,100,"Xinhua",NA +112,122,1310,"2017",3,1,99,2,99,99,"Xinhua",NA +112,122,1319,"2017",6,0,99,3,1,99,"Xinhua",NA +112,122,1322,"2017",2,0,99,3,1,50,"Xinhua",NA +112,122,1325,"2017",4,0,85,2,15,50,"Xinhua",NA +112,122,1326,"2017",2,1,NA,2,NA,50,"Xinhua",NA +112,122,1330,"2017",6,0,100,3,0,0,"Xinhua",NA +112,122,1332,"2017",6,1,99,2,99,50,"Xinhua",NA +112,122,1333,"2017",2,1,90,2,90,1,"Xinhua",NA +112,122,1334,"2017",2,1,99,3,99,99,"Xinhua",NA +112,122,1342,"2017",4,1,80,2,80,NA,"Xinhua",NA +112,122,1344,"2017",4,1,30,2,30,30,"Xinhua",NA +112,122,1346,"2017",5,0,99,3,1,50,"Xinhua",NA +112,122,1348,"2017",5,0,6,3,94,NA,"Xinhua",NA +112,122,1349,"2017",6,1,50,3,50,50,"Xinhua",NA +112,122,1350,"2017",3,1,50,2,50,40,"Xinhua",NA +112,122,1351,"2017",2,0,90,3,10,10,"Xinhua",NA +112,122,1353,"2017",6,1,99,3,99,99,"Xinhua",NA +112,122,1354,"2017",5,1,1,3,1,50,"Xinhua",NA +112,122,1356,"2017",6,1,50,2,50,50,"Xinhua",NA +112,122,1359,"2017",2,1,99,3,99,99,"Xinhua",NA +112,122,1361,"2017",3,0,50,2,50,99,"Xinhua",NA +112,122,1366,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,1368,"2017",2,1,99,3,99,99,"Xinhua",NA +112,122,1370,"2017",2,1,99,3,99,99,"Xinhua",NA +112,122,1371,"2017",3,1,50,3,50,50,"Xinhua",NA +112,122,1372,"2017",6,1,21,3,21,15,"Xinhua",NA +112,122,1374,"2017",2,0,50,2,50,45,"Xinhua",NA +112,122,1376,"2017",4,0,4,2,96,49,"Xinhua",NA +112,122,1377,"2017",2,0,20,2,80,80,"Xinhua",NA +112,122,1379,"2017",5,0,100,3,0,0,"Xinhua",NA +112,122,1380,"2017",2,0,1,2,99,1,"Xinhua",NA +112,122,1382,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,1387,"2017",5,0,1,3,99,50,"Xinhua",NA +112,122,1389,"2017",2,0,50,3,50,10,"Xinhua",NA +112,122,1392,"2017",3,0,1,2,99,NA,"Xinhua",NA +112,122,1394,"2017",2,0,50,2,50,50,"Xinhua",NA +112,122,1395,"2017",4,0,70,2,30,31,"Xinhua",NA +112,122,1400,"2017",3,0,99,2,1,NA,"Xinhua",NA +112,122,1401,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,1402,"2017",6,0,80,2,20,50,"Xinhua",NA +112,122,1403,"2017",3,1,99,2,99,1,"Xinhua",NA +112,122,1404,"2017",5,0,60,2,40,94,"Xinhua",NA +112,122,1407,"2017",2,1,30,2,30,40,"Xinhua",NA +112,122,1409,"2017",5,1,50,3,50,60,"Xinhua",NA +112,122,1410,"2017",5,0,99,3,1,1,"Xinhua",NA +112,122,1411,"2017",4,1,99,2,99,NA,"Xinhua",NA +112,122,1413,"2017",3,1,99,2,99,99,"Xinhua",NA +112,122,1415,"2017",2,1,1,2,1,1,"Xinhua",NA +112,122,1422,"2017",2,0,50,3,50,50,"Xinhua",NA +112,122,1425,"2017",3,1,NA,3,NA,1,"Xinhua",NA +112,122,1426,"2017",5,1,50,3,50,99,"Xinhua",NA +112,122,1431,"2017",3,1,50,2,50,50,"Xinhua",NA +112,122,1433,"2017",6,1,99,3,99,99,"Xinhua",NA +112,122,1435,"2017",5,0,99,3,1,1,"Xinhua",NA +112,122,1438,"2017",6,0,80,2,20,30,"Xinhua",NA +112,122,1440,"2017",5,1,78,2,78,78,"Xinhua",NA +112,122,1441,"2017",5,0,1,2,99,70,"Xinhua",NA +112,122,1447,"2017",2,1,99,3,99,99,"Xinhua",NA +112,122,1450,"2017",4,1,60,2,60,60,"Xinhua",NA +112,122,1452,"2017",4,0,NA,2,NA,1,"Xinhua",NA +112,122,1453,"2017",6,1,90,3,90,80,"Xinhua",NA +112,122,1455,"2017",3,1,50,2,50,50,"Xinhua",NA +112,122,1456,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,1460,"2017",5,1,99,3,99,50,"Xinhua",NA +112,122,1461,"2017",5,1,50,2,50,50,"Xinhua",NA +112,122,1463,"2017",3,0,1,3,99,90,"Xinhua",NA +112,122,1464,"2017",3,0,30,2,70,70,"Xinhua",NA +112,122,1466,"2017",4,0,NA,2,NA,50,"Xinhua",NA +112,122,1470,"2017",5,1,99,3,99,50,"Xinhua",NA +112,122,1475,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,1476,"2017",6,0,1,3,99,99,"Xinhua",NA +112,122,1478,"2017",5,0,99,3,1,1,"Xinhua",NA +112,122,1480,"2017",3,0,1,3,99,99,"Xinhua",NA +112,122,1491,"2017",3,0,99,2,1,50,"Xinhua",NA +112,122,1493,"2017",2,0,80,3,20,1,"Xinhua",NA +112,122,1496,"2017",6,1,99,3,99,99,"Xinhua",NA +112,122,1497,"2017",4,0,10,2,90,50,"Xinhua",NA +112,122,1499,"2017",2,0,65,2,35,50,"Xinhua",NA +112,122,1501,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,1502,"2017",3,0,50,2,50,99,"Xinhua",NA +112,122,1504,"2017",5,0,99,2,1,NA,"Xinhua",NA +112,122,1506,"2017",6,1,50,3,50,50,"Xinhua",NA +112,122,1511,"2017",6,1,99,2,99,99,"Xinhua",NA +112,122,1512,"2017",4,1,50,2,50,99,"Xinhua",NA +112,122,1515,"2017",2,1,99,2,99,99,"Xinhua",NA +112,122,1517,"2017",2,0,NA,3,NA,10,"Xinhua",NA +112,122,1519,"2017",4,1,50,2,50,55,"Xinhua",NA +112,122,1521,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,1523,"2017",5,1,80,2,80,50,"Xinhua",NA +112,122,1524,"2017",6,0,5,3,95,90,"Xinhua",NA +112,122,1528,"2017",4,1,99,2,99,1,"Xinhua",NA +112,122,1530,"2017",4,1,50,2,50,50,"Xinhua",NA +112,122,1532,"2017",5,1,60,3,60,30,"Xinhua",NA +112,122,1534,"2017",3,0,NA,3,NA,30,"Xinhua",NA +112,122,1535,"2017",3,1,99,2,99,99,"Xinhua",NA +112,122,1537,"2017",5,0,99,2,1,1,"Xinhua",NA +112,122,1538,"2017",5,1,1,3,1,1,"Xinhua",NA +112,122,1539,"2017",3,0,50,3,50,NA,"Xinhua",NA +112,122,1545,"2017",4,0,99,2,1,1,"Xinhua",NA +112,122,1546,"2017",4,0,60,2,40,40,"Xinhua",NA +112,122,1547,"2017",6,1,90,2,90,30,"Xinhua",NA +112,122,1548,"2017",3,0,99,2,1,1,"Xinhua",NA +112,122,1555,"2017",6,0,99,2,1,1,"Xinhua",NA +112,122,1557,"2017",5,1,99,2,99,1,"Xinhua",NA +112,122,1558,"2017",5,1,50,2,50,1,"Xinhua",NA +112,122,1559,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,1560,"2017",6,0,99,3,1,1,"Xinhua",NA +112,122,1563,"2017",3,0,68,3,32,55,"Xinhua",NA +112,122,1567,"2017",4,0,50,2,50,1,"Xinhua",NA +112,122,1569,"2017",2,0,50,3,50,50,"Xinhua",NA +112,122,1574,"2017",5,1,50,3,50,50,"Xinhua",NA +112,122,1575,"2017",5,1,100,2,100,100,"Xinhua",NA +112,122,1576,"2017",6,1,1,3,1,1,"Xinhua",NA +112,122,1577,"2017",2,1,1,2,1,1,"Xinhua",NA +112,122,1578,"2017",4,0,99,2,1,1,"Xinhua",NA +112,122,1581,"2017",3,0,50,2,50,80,"Xinhua",NA +112,122,1582,"2017",5,1,50,2,50,50,"Xinhua",NA +112,122,1585,"2017",5,0,1,2,99,92,"Xinhua",NA +112,122,1586,"2017",3,1,1,3,1,99,"Xinhua",NA +112,122,1589,"2017",5,0,20,3,80,10,"Xinhua",NA +112,122,1592,"2017",2,0,99,2,1,1,"Xinhua",NA +112,122,1596,"2017",2,0,1,3,99,99,"Xinhua",NA +112,122,1597,"2017",5,0,90,3,10,19,"Xinhua",NA +112,122,1598,"2017",2,1,99,2,99,99,"Xinhua",NA +112,122,1605,"2017",3,0,1,3,99,99,"Xinhua",NA +112,122,1608,"2017",3,0,99,2,1,1,"Xinhua",NA +112,122,1612,"2017",4,0,50,2,50,50,"Xinhua",NA +112,122,1613,"2017",2,0,1,3,99,99,"Xinhua",NA +112,122,1615,"2017",4,1,99,2,99,NA,"Xinhua",NA +112,122,1619,"2017",4,1,1,2,1,NA,"Xinhua",NA +112,122,1620,"2017",5,0,50,3,50,50,"Xinhua",NA +112,122,1622,"2017",4,0,50,2,50,50,"Xinhua",NA +112,122,1626,"2017",5,0,1,3,99,99,"Xinhua",NA +112,122,1631,"2017",4,0,5,2,95,95,"Xinhua",NA +112,122,1632,"2017",4,1,90,2,90,85,"Xinhua",NA +112,122,1633,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,1635,"2017",3,0,60,2,40,50,"Xinhua",NA +112,122,1636,"2017",2,0,80,3,20,20,"Xinhua",NA +112,122,1637,"2017",6,0,80,2,20,50,"Xinhua",NA +112,122,1638,"2017",2,1,99,3,99,50,"Xinhua",NA +112,122,1642,"2017",4,0,50,2,50,50,"Xinhua",NA +112,122,1645,"2017",2,0,70,2,30,NA,"Xinhua",NA +112,122,1651,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,1652,"2017",6,0,99,2,1,10,"Xinhua",NA +112,122,1655,"2017",4,1,100,2,100,100,"Xinhua",NA +112,122,1656,"2017",5,0,70,3,30,30,"Xinhua",NA +112,122,1657,"2017",4,1,99,2,99,1,"Xinhua",NA +112,122,1658,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,1659,"2017",5,1,50,2,50,50,"Xinhua",NA +112,122,1662,"2017",4,1,90,2,90,90,"Xinhua",NA +112,122,1666,"2017",5,0,NA,2,NA,99,"Xinhua",NA +112,122,1672,"2017",4,0,99,2,1,1,"Xinhua",NA +112,122,1676,"2017",4,0,95,2,5,10,"Xinhua",NA +112,122,1678,"2017",4,1,99,2,99,NA,"Xinhua",NA +112,122,1679,"2017",5,1,99,2,99,99,"Xinhua",NA +112,122,1681,"2017",2,1,NA,2,NA,NA,"Xinhua",NA +112,122,1683,"2017",3,1,90,2,90,90,"Xinhua",NA +112,122,1685,"2017",5,0,99,3,1,1,"Xinhua",NA +112,122,1686,"2017",3,0,99,2,1,1,"Xinhua",NA +112,122,1687,"2017",5,0,1,3,99,99,"Xinhua",NA +112,122,1688,"2017",4,1,80,2,80,80,"Xinhua",NA +112,122,1689,"2017",6,1,99,3,99,5,"Xinhua",NA +112,122,1690,"2017",3,1,50,2,50,60,"Xinhua",NA +112,122,1692,"2017",2,0,99,3,1,1,"Xinhua",NA +112,122,1693,"2017",5,0,99,2,1,50,"Xinhua",NA +112,122,1697,"2017",4,0,60,2,40,50,"Xinhua",NA +112,122,1701,"2017",5,1,80,2,80,80,"Xinhua",NA +112,122,1703,"2017",6,1,50,2,50,1,"Xinhua",NA +112,122,1708,"2017",4,1,60,2,60,50,"Xinhua",NA +112,122,1709,"2017",2,0,99,3,1,30,"Xinhua",NA +112,122,1710,"2017",6,0,50,3,50,50,"Xinhua",NA +112,122,1713,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,1718,"2017",2,1,98,3,98,98,"Xinhua",NA +112,122,1720,"2017",4,1,78,2,78,100,"Xinhua",NA +112,122,1723,"2017",2,0,99,2,1,1,"Xinhua",NA +112,122,1729,"2017",3,0,15,3,85,56,"Xinhua",NA +112,122,1733,"2017",4,0,80,2,20,20,"Xinhua",NA +112,122,1734,"2017",3,1,20,2,20,40,"Xinhua",NA +112,122,1736,"2017",6,0,70,2,30,50,"Xinhua",NA +112,122,1737,"2017",5,0,80,2,20,50,"Xinhua",NA +112,122,1739,"2017",5,0,99,3,1,50,"Xinhua",NA +112,122,1740,"2017",2,1,50,2,50,50,"Xinhua",NA +112,122,1747,"2017",6,0,50,2,50,40,"Xinhua",NA +112,122,1748,"2017",6,1,99,2,99,99,"Xinhua",NA +112,122,1749,"2017",5,1,99,2,99,50,"Xinhua",NA +112,122,1750,"2017",6,1,1,2,1,99,"Xinhua",NA +112,122,1752,"2017",6,1,50,2,50,99,"Xinhua",NA +112,122,1754,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,1756,"2017",5,1,95,3,95,75,"Xinhua",NA +112,122,1758,"2017",6,1,99,3,99,99,"Xinhua",NA +112,122,1764,"2017",6,0,99,3,1,NA,"Xinhua",NA +112,122,1768,"2017",2,1,99,2,99,50,"Xinhua",NA +112,122,1769,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,1771,"2017",3,0,100,3,0,0,"Xinhua",NA +112,122,1775,"2017",5,1,93,3,93,97,"Xinhua",NA +112,122,1779,"2017",3,0,92,2,8,3,"Xinhua",NA +112,122,1780,"2017",5,1,92,2,92,94,"Xinhua",NA +112,122,1786,"2017",4,0,49,2,51,31,"Xinhua",NA +112,122,1787,"2017",2,0,95,2,5,1,"Xinhua",NA +112,122,1788,"2017",5,0,99,2,1,23,"Xinhua",NA +112,122,1789,"2017",3,1,99,3,99,96,"Xinhua",NA +112,122,1796,"2017",5,1,NA,2,NA,92,"Xinhua",NA +112,122,1799,"2017",3,0,NA,2,NA,NA,"Xinhua",NA +112,122,1800,"2017",3,1,99,3,99,98,"Xinhua",NA +112,122,1801,"2017",5,1,98,3,98,99,"Xinhua",NA +112,122,1802,"2017",5,1,99,2,99,97,"Xinhua",NA +112,122,1804,"2017",6,1,98,2,98,NA,"Xinhua",NA +112,122,1805,"2017",3,0,89,2,11,12,"Xinhua",NA +112,122,1806,"2017",4,1,55,2,55,50,"Xinhua",NA +112,122,1807,"2017",6,1,50,3,50,50,"Xinhua",NA +112,122,1810,"2017",4,1,80,2,80,60,"Xinhua",NA +112,122,1814,"2017",6,0,90,2,10,30,"Xinhua",NA +112,122,1815,"2017",6,0,90,3,10,25,"Xinhua",NA +112,122,1821,"2017",5,1,90,3,90,70,"Xinhua",NA +112,122,1822,"2017",3,1,99,3,99,90,"Xinhua",NA +112,122,1825,"2017",6,1,99,2,99,99,"Xinhua",NA +112,122,1829,"2017",4,0,99,2,1,50,"Xinhua",NA +112,122,1830,"2017",4,0,50,2,50,55,"Xinhua",NA +112,122,1831,"2017",2,0,99,2,1,1,"Xinhua",NA +112,122,1832,"2017",4,0,50,2,50,50,"Xinhua",NA +112,122,1837,"2017",2,0,0,2,100,30,"Xinhua",NA +112,122,1839,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,1841,"2017",5,0,99,3,1,50,"Xinhua",NA +112,122,1842,"2017",6,1,98,3,98,99,"Xinhua",NA +112,122,1843,"2017",2,0,99,2,1,99,"Xinhua",NA +112,122,1844,"2017",5,1,92,2,92,88,"Xinhua",NA +112,122,1846,"2017",5,1,100,2,100,100,"Xinhua",NA +112,122,1848,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,1850,"2017",6,1,1,2,1,1,"Xinhua",NA +112,122,1855,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,1858,"2017",3,1,99,2,99,99,"Xinhua",NA +112,122,1860,"2017",5,1,1,3,1,1,"Xinhua",NA +112,122,1861,"2017",5,0,99,3,1,1,"Xinhua",NA +112,122,1863,"2017",4,1,80,2,80,NA,"Xinhua",NA +112,122,1865,"2017",5,0,50,3,50,40,"Xinhua",NA +112,122,1866,"2017",5,0,50,3,50,1,"Xinhua",NA +112,122,1867,"2017",4,0,1,2,99,99,"Xinhua",NA +112,122,1870,"2017",3,1,0,2,0,0,"Xinhua",NA +112,122,1872,"2017",5,1,99,2,99,99,"Xinhua",NA +112,122,1873,"2017",6,0,99,3,1,1,"Xinhua",NA +112,122,1874,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,1875,"2017",2,0,0,3,100,0,"Xinhua",NA +112,122,1879,"2017",3,1,80,2,80,50,"Xinhua",NA +112,122,1880,"2017",5,1,99,3,99,1,"Xinhua",NA +112,122,1882,"2017",6,1,50,3,50,50,"Xinhua",NA +112,122,1887,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,1890,"2017",3,1,100,2,100,100,"Xinhua",NA +112,122,1899,"2017",2,1,50,3,50,50,"Xinhua",NA +112,122,1900,"2017",2,1,55,3,55,60,"Xinhua",NA +112,122,1903,"2017",6,1,99,2,99,99,"Xinhua",NA +112,122,1905,"2017",4,1,90,2,90,90,"Xinhua",NA +112,122,1914,"2017",3,0,99,3,1,1,"Xinhua",NA +112,122,1925,"2017",6,0,100,3,0,1,"Xinhua",NA +112,122,1927,"2017",4,1,99,2,99,80,"Xinhua",NA +112,122,1929,"2017",2,1,99,2,99,99,"Xinhua",NA +112,122,1932,"2017",5,1,99,3,99,50,"Xinhua",NA +112,122,1935,"2017",3,0,99,2,1,99,"Xinhua",NA +112,122,1938,"2017",4,0,99,2,1,1,"Xinhua",NA +112,122,1940,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,1943,"2017",5,0,99,3,1,1,"Xinhua",NA +112,122,1946,"2017",3,0,99,2,1,1,"Xinhua",NA +112,122,1953,"2017",5,0,99,2,1,1,"Xinhua",NA +112,122,1954,"2017",5,1,99,3,99,1,"Xinhua",NA +112,122,1957,"2017",2,1,1,3,1,NA,"Xinhua",NA +112,122,1959,"2017",6,1,99,3,99,99,"Xinhua",NA +112,122,1964,"2017",3,1,99,3,99,1,"Xinhua",NA +112,122,1965,"2017",4,0,99,2,1,1,"Xinhua",NA +112,122,1966,"2017",5,0,60,3,40,20,"Xinhua",NA +112,122,1968,"2017",2,1,99,3,99,99,"Xinhua",NA +112,122,1969,"2017",5,0,90,2,10,30,"Xinhua",NA +112,122,1971,"2017",5,1,100,3,100,100,"Xinhua",NA +112,122,1974,"2017",3,0,99,3,1,1,"Xinhua",NA +112,122,1976,"2017",5,1,95,3,95,80,"Xinhua",NA +112,122,1982,"2017",3,0,50,3,50,50,"Xinhua",NA +112,122,1983,"2017",3,0,50,2,50,50,"Xinhua",NA +112,122,1985,"2017",2,1,99,3,99,99,"Xinhua",NA +112,122,1987,"2017",3,0,90,3,10,20,"Xinhua",NA +112,122,1991,"2017",3,1,99,3,99,50,"Xinhua",NA +112,122,1994,"2017",4,0,99,2,1,50,"Xinhua",NA +112,122,1996,"2017",6,0,99,2,1,1,"Xinhua",NA +112,122,2001,"2017",6,1,99,2,99,99,"Xinhua",NA +112,122,2002,"2017",5,0,99,2,1,1,"Xinhua",NA +112,122,2003,"2017",4,0,90,2,10,10,"Xinhua",NA +112,122,2005,"2017",6,0,99,2,1,1,"Xinhua",NA +112,122,2010,"2017",5,0,100,2,0,0,"Xinhua",NA +112,122,2011,"2017",3,1,99,2,99,89,"Xinhua",NA +112,122,2013,"2017",6,0,100,2,0,0,"Xinhua",NA +112,122,2014,"2017",4,1,60,2,60,70,"Xinhua",NA +112,122,2016,"2017",2,0,99,3,1,1,"Xinhua",NA +112,122,2017,"2017",4,1,100,2,100,100,"Xinhua",NA +112,122,2019,"2017",4,0,100,2,0,10,"Xinhua",NA +112,122,2020,"2017",5,1,99,2,99,99,"Xinhua",NA +112,122,2024,"2017",2,0,100,2,0,NA,"Xinhua",NA +112,122,2025,"2017",5,0,22,2,78,78,"Xinhua",NA +112,122,2026,"2017",2,0,100,2,0,0,"Xinhua",NA +112,122,2027,"2017",2,0,1,2,99,99,"Xinhua",NA +112,122,2030,"2017",6,1,50,3,50,99,"Xinhua",NA +112,122,2031,"2017",5,0,99,3,1,1,"Xinhua",NA +112,122,2032,"2017",5,0,70,2,30,40,"Xinhua",NA +112,122,2033,"2017",6,0,50,2,50,50,"Xinhua",NA +112,122,2034,"2017",3,0,99,2,1,99,"Xinhua",NA +112,122,2036,"2017",3,1,99,2,99,1,"Xinhua",NA +112,122,2038,"2017",2,0,10,2,90,99,"Xinhua",NA +112,122,2040,"2017",6,0,90,3,10,10,"Xinhua",NA +112,122,2041,"2017",2,0,100,2,0,0,"Xinhua",NA +112,122,2042,"2017",5,1,20,3,20,20,"Xinhua",NA +112,122,2043,"2017",2,0,70,2,30,30,"Xinhua",NA +112,122,2044,"2017",3,0,100,2,0,0,"Xinhua",NA +112,122,2045,"2017",3,0,90,3,10,10,"Xinhua",NA +112,122,2048,"2017",2,0,99,3,1,1,"Xinhua",NA +112,122,2053,"2017",6,1,99,3,99,90,"Xinhua",NA +112,122,2056,"2017",2,0,70,2,30,50,"Xinhua",NA +112,122,2061,"2017",2,0,50,3,50,1,"Xinhua",NA +112,122,2063,"2017",4,1,99,2,99,99,"Xinhua",NA +112,122,2065,"2017",3,1,99,2,99,99,"Xinhua",NA +112,122,2069,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,2071,"2017",3,1,1,2,1,1,"Xinhua",NA +112,122,2074,"2017",3,0,99,3,1,1,"Xinhua",NA +112,122,2075,"2017",4,1,99,2,99,85,"Xinhua",NA +112,122,2076,"2017",2,0,99,3,1,1,"Xinhua",NA +112,122,2078,"2017",6,1,100,2,100,100,"Xinhua",NA +112,122,2080,"2017",4,0,80,2,20,20,"Xinhua",NA +112,122,2081,"2017",2,1,99,2,99,NA,"Xinhua",NA +112,122,2086,"2017",3,0,99,2,1,50,"Xinhua",NA +112,122,2089,"2017",4,0,NA,2,NA,NA,"Xinhua",NA +112,122,2094,"2017",3,0,78,3,22,68,"Xinhua",NA +112,122,2096,"2017",4,0,1,2,99,1,"Xinhua",NA +112,122,2099,"2017",2,0,99,3,1,1,"Xinhua",NA +112,122,2101,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,2103,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,2105,"2017",6,1,50,3,50,50,"Xinhua",NA +112,122,2106,"2017",6,0,1,3,99,99,"Xinhua",NA +112,122,2107,"2017",6,0,99,2,1,1,"Xinhua",NA +112,122,2108,"2017",4,1,50,2,50,50,"Xinhua",NA +112,122,2110,"2017",2,0,50,3,50,50,"Xinhua",NA +112,122,2115,"2017",3,1,99,3,99,99,"Xinhua",NA +112,122,2119,"2017",6,1,90,3,90,50,"Xinhua",NA +112,122,2122,"2017",5,1,99,3,99,99,"Xinhua",NA +112,122,2126,"2017",4,1,99,2,99,50,"Xinhua",NA +112,122,2127,"2017",6,0,80,2,20,20,"Xinhua",NA +112,122,2128,"2017",2,1,70,2,70,70,"Xinhua",NA +112,122,2131,"2017",2,0,99,3,1,1,"Xinhua",NA +112,122,2133,"2017",3,0,99,2,1,1,"Xinhua",NA +112,122,2135,"2017",3,1,10,3,10,10,"Xinhua",NA diff --git a/data/external/anes_timeseries_2020_stata_20220210_hill_roberts_subset.csv b/data/external/anes_timeseries_2020_stata_20220210_hill_roberts_subset.csv new file mode 100755 index 0000000..3f87df1 --- /dev/null +++ b/data/external/anes_timeseries_2020_stata_20220210_hill_roberts_subset.csv @@ -0,0 +1,8281 @@ +version,V200001,assign_reverse,V202549,V202550,V202551,V202552,V202553,V202554,V202555,V202556,V202557,V202558,V202559,V202560 +ANES2020TimeSeries_20220210,200015,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,200022,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200039,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200046,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,200053,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,200060,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200084,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,200091,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,200107,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200114,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200121,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200138,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200152,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200169,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200176,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,200183,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,200190,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200206,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200220,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200244,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200268,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,200275,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200282,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200305,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200312,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,200329,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200343,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,200374,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,200381,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200404,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200411,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,200435,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,200442,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200459,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,200466,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200473,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,200480,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200497,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200503,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200510,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200527,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,200534,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200541,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200558,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200565,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,200589,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200596,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200602,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200626,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200633,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200640,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,200671,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200688,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,200695,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,200701,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,200718,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,200725,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200732,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200749,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200756,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,200763,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200770,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200787,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200794,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200800,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200817,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200824,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200831,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200855,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200862,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200879,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200886,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,200893,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,200909,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,200916,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,200947,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,200954,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,200985,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201001,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,201025,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,201032,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201063,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,201070,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201087,Reverse,,,,,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201094,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201100,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201117,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201124,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201131,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,201155,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201179,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201186,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,201193,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,201209,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201216,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,201223,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,201230,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201247,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201254,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201261,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201278,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,201285,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201292,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,201322,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201339,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201346,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201353,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201360,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201377,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,201384,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201391,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,201407,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201421,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,201438,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201445,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201469,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,201476,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201506,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,201513,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,201520,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201537,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,201544,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201551,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,201568,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,201575,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201599,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201605,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201629,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,201636,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201650,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201674,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201681,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,201711,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,201728,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,201759,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201766,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201773,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201780,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,201797,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,201803,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,201810,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201827,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201834,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,201841,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201858,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201865,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,201872,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201889,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,201896,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,201902,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,201919,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201926,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,201971,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,201988,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,201995,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202004,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202011,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202042,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,202097,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202103,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202127,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,202141,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,202172,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202189,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202196,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,202202,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202257,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202271,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202288,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,202301,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202318,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202325,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202332,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202356,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202363,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202370,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202387,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,202400,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202417,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,202431,Reverse,,,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202455,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,202462,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202479,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202486,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202493,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202509,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,202516,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202523,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202530,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202547,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202578,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202585,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,202592,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202608,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202615,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202622,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,202639,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202646,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202653,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,202660,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202677,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202691,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,202707,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,202714,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,202721,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202738,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202745,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202752,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202769,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,202783,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,202790,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202806,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,202813,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202820,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202837,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202875,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,202882,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,202899,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202905,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,202929,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202936,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,202943,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,202950,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,202967,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,202974,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,202998,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,203007,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,203014,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203021,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203038,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203045,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,203069,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,203090,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203106,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203113,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,203137,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,203144,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203151,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203168,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,203175,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,203182,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203199,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203205,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,203212,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203229,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,203236,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,203243,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,203267,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203281,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203298,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203304,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,203311,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,203328,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203335,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,203342,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,203359,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,203366,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203380,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203397,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203403,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203410,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203427,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203434,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203441,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,203458,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,203472,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,203489,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,203496,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203502,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,203519,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203526,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203533,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203540,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,203557,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203564,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,203588,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203595,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,203632,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,203649,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203670,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203687,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203700,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,203724,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203731,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203762,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203779,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,203786,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,203793,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203816,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,203823,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203830,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,203854,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,203878,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203946,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,203953,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203960,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,203977,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,203984,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204000,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,204017,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204031,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,204048,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204055,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204062,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,204086,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,204109,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204116,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,204123,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204130,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,204147,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204154,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204161,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204178,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204185,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,204192,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204208,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,204222,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204246,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204253,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,204260,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204277,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204284,Forward,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,,,, +ANES2020TimeSeries_20220210,204291,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,204307,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204321,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204338,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204345,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204352,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204369,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,204376,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204383,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,204390,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204413,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204420,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204437,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204468,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204475,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204482,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204505,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204512,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204529,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204536,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204543,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204550,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204567,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204574,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,204581,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204598,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204604,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,204611,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,204628,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204642,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204697,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204703,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204710,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204727,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,204734,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,204741,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,204758,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,204765,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,204772,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204789,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204796,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,204802,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204819,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204833,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,204840,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204857,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204864,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204871,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,204888,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,204895,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204901,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,204918,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204925,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204932,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204949,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,204963,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,204970,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,204987,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,204994,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,205003,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,205010,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205034,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205041,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205058,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,205065,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205072,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205089,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205096,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,205102,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,205119,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205133,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205140,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205157,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205171,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205188,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205195,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205201,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205218,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,,,1. World temperatures have risen on average over the last 100 years,2. A little,,,, +ANES2020TimeSeries_20220210,205249,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,205256,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,205263,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205287,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205294,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205300,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205317,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205324,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,205348,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,205362,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205379,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205393,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,205409,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205416,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,205430,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,205447,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,205454,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,205461,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,205478,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205485,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,205492,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205508,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205515,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,205522,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,205539,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,205546,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205553,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,205560,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,205577,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205607,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,205614,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,205621,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205638,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205645,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205669,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205676,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,205683,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205706,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,205713,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,205737,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205744,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,205751,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,205768,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,205775,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205782,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205799,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205812,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205829,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,205836,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,205843,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,205850,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,205867,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,205874,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,205881,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,205898,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,205911,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,205928,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,205942,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,205959,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,205966,Forward,,,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,205973,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206006,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,,,, +ANES2020TimeSeries_20220210,206013,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206020,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,206037,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206044,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206068,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,206075,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,206082,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,206105,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206129,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,,,,,, +ANES2020TimeSeries_20220210,206136,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206143,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206150,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206167,Reverse,,,2. Barack Obama's administration,1. Not at all,,,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,206174,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,206181,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,206198,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206204,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206211,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206228,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206235,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,206242,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206266,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206273,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206280,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206303,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206327,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206334,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,206341,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,206358,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206365,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206372,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,206389,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206396,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206402,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206419,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206426,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206433,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206440,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206457,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,206464,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206471,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,206488,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206495,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,206501,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206518,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206525,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206532,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,206549,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206563,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,206587,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206594,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206600,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206617,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,206624,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206631,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206648,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206655,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206662,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,206679,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206686,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,206709,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206716,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206723,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,206730,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,206747,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,206754,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206778,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206792,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206815,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,206822,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,206839,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206853,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206860,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206877,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,206884,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,206891,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,, +ANES2020TimeSeries_20220210,206907,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,206914,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,206921,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,206938,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,206945,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,206983,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,206990,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207016,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207023,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207030,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,207047,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,207054,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207061,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207078,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,207092,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207108,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207115,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207122,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207139,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207153,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207160,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207177,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,207184,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,207191,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207207,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,207214,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207221,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207238,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,207245,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207252,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207276,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207290,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,207306,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207313,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207320,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207337,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,207344,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207351,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,207368,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207375,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207382,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207399,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207405,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,207412,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,207436,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207443,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207450,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207467,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,207474,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207481,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207511,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207528,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207542,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207559,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207566,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207573,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207597,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207603,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207610,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207627,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207634,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207641,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207658,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207665,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207672,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,207689,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207696,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207702,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,207719,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,207726,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207733,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,207740,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207757,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207764,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207771,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207788,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,207795,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207818,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,207825,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207832,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207849,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207856,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207863,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,207870,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207887,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207894,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,207900,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207924,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,207931,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207948,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,207955,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207962,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,207979,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,207986,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,207993,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208002,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,208019,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208026,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208033,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,208040,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208057,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,208088,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208095,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,208101,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208132,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208149,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208156,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208163,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208170,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208187,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208194,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,208200,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208217,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,208231,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,208248,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208255,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208262,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208279,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208286,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208293,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208309,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,208316,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,208323,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208330,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208347,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208354,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208361,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208378,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208385,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208408,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208415,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,208422,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,,,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,208439,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208446,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,208453,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208484,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,208491,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208507,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,208514,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,208521,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,208538,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,208545,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208552,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,208569,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208576,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,208583,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208590,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,208606,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,208613,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208644,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,208651,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208668,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208675,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208682,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208705,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208712,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208736,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,208743,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,208750,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208767,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,208774,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,208781,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208798,Forward,,,1. Donald Trump's administration,2. A little,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,208804,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208811,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208859,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208866,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208873,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208880,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208897,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208903,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,208927,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,208934,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,208941,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208958,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,208965,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,208972,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,208989,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,208996,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209005,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209012,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,209029,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209036,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209043,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209050,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209067,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209074,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209081,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209111,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209128,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209135,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209142,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209159,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209173,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209180,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209197,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209203,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209210,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209234,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209241,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,209258,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209265,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209272,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209296,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209302,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209319,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209333,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209340,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209357,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209364,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,209388,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209395,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209425,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,209432,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209449,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209456,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209463,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209470,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209487,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,209494,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209500,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,209517,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,209524,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209531,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209555,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209562,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,209579,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209586,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,209593,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209609,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,209623,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209630,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,209647,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209654,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209678,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209685,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209692,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209708,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,209739,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209753,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209760,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,209777,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,209784,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,209807,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209876,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,209883,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209906,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,209913,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209920,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209937,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,209944,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,209951,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,209968,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,209975,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,209982,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210005,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210012,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210029,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210036,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210043,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210050,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,210067,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210104,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,210111,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210128,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210135,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,210142,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,210159,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210166,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210173,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,210180,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210197,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210203,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210227,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210234,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210258,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210265,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210272,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210289,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210296,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,210302,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210319,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,210326,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210333,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210340,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,210357,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,210364,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,210371,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,210395,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,210401,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210418,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210432,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,210449,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210456,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210463,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210470,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,210487,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,210494,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210500,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,210555,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210579,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210586,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210593,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210616,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210623,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210630,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,210647,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210661,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,210678,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,210685,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210692,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210708,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,210715,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210722,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210739,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210753,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210777,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210784,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210791,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,210807,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,210814,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,210821,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,210838,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210845,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,210852,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,210869,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210876,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,210890,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210906,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,210913,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,210937,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,210944,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,210951,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,210968,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,,,,,,,, +ANES2020TimeSeries_20220210,210975,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,210982,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,210999,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211008,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211015,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211022,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,211039,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,211060,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211077,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,211091,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,211107,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211114,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211121,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,211138,Forward,,,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,211145,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,211152,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211169,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211176,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211183,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211190,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,211206,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211220,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,211237,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,211244,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211251,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211275,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,211299,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211305,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,211312,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,211329,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211336,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,211343,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211350,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,211367,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,211381,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,211404,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211411,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,211466,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,211473,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211480,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,211497,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211503,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,211510,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,211527,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211534,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211565,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,211572,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211589,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211596,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211619,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,211626,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,211633,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,211657,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,211664,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211701,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211718,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,211725,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211732,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211749,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,211756,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211787,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,211800,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211817,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211831,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211848,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,211886,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,211893,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,211909,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211923,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,211947,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,211954,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,211961,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,211978,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,211985,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,211992,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212001,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,212018,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,212025,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,212032,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,212056,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212063,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,212070,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212094,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212100,Forward,,,2. Barack Obama's administration,,2. Most scientific evidence shows childhood vaccines do not cause autism,,,,,,, +ANES2020TimeSeries_20220210,212124,Reverse,1. Russia tried to interfere in the 2016 presidential election,,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212131,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212148,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212162,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212179,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212186,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,,,2. World temperatures have not risen on average over the last 100 years,4. Very,,,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,212193,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,212209,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212223,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212230,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212247,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212254,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212285,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212292,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212308,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212315,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,212322,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,212339,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212346,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212377,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212391,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212407,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212421,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212438,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,212445,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,212452,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212469,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212476,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,212483,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212490,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212506,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212513,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,212537,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,212544,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212551,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,212568,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,212575,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,212582,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212599,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,212605,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,212612,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,212636,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,212643,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212650,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212667,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,212674,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,212681,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212698,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212704,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,212728,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212742,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,212766,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,212773,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,212780,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212797,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,212803,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212827,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,212834,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,212841,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,212858,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,212865,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,212872,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,212896,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,212902,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,212940,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,212964,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,212988,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,212995,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,213004,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213011,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,213028,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213035,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213042,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213059,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213066,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,213073,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213080,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,213103,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,213127,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213134,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213141,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,213165,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213172,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213189,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213196,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,213202,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213219,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213226,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,213240,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213257,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213264,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,213271,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213288,Forward,,,1. Donald Trump's administration,3. Moderately,,,,,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,213295,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213301,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213318,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,213325,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213332,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213349,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213356,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213363,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,213370,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213394,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213400,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213424,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213431,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,213448,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213455,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213462,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213479,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213486,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,213493,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,213516,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,213561,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,213578,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213585,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,213592,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213608,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213615,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213622,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213639,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,213646,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213653,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,213677,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213684,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213691,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,213707,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213714,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213721,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213738,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,213745,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213752,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,213769,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213776,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213783,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213806,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213813,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213837,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213844,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,213851,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213868,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,213875,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,213882,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213899,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213912,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213929,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,213936,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213943,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,213950,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,213967,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213974,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,213981,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,213998,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214007,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,214014,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214038,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214045,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214069,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,214076,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,214083,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214090,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214113,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214120,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214151,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,214168,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,214175,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214199,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214205,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214212,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214229,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,214236,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214250,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214267,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,214281,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214311,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214328,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,214335,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214342,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,214366,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214380,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,214397,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214403,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,214410,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214427,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,214458,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214465,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214489,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214502,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214526,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,214540,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,214564,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214571,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,214588,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,214601,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,214625,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214632,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214649,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214656,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214687,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214694,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214700,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214717,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214724,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214731,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214748,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,214755,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,214762,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,214779,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,214786,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214793,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,214809,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214816,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,214823,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214830,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214847,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,214854,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,214861,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214885,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214908,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,214922,Reverse,,,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,214939,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214946,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,214953,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,214960,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,214977,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,214984,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,215000,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215017,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215024,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215031,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215048,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,215055,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215062,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,215079,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,215086,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215093,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,215109,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215116,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,215130,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,215154,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215161,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215178,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215208,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,215222,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,215246,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,215253,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215260,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215284,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215291,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,215314,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,215321,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,215338,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,215345,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,215352,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215376,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215383,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215390,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,215406,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215413,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,215420,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,215444,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215451,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215468,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215475,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,215482,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,215499,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215505,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,215512,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215529,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215536,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215543,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215550,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,215567,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,215574,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,215598,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215628,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215635,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215642,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215659,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,215666,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215673,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215680,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215697,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215703,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215710,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,215727,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215734,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215741,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,215758,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,215772,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215789,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215796,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,215802,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,215819,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215826,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215833,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,215840,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,215857,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215864,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,215888,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215895,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215918,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,215925,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,215949,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,215970,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,215987,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,215994,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,216003,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216010,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216027,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216034,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,216041,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,216058,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,216065,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216089,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216096,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216126,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216133,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216140,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216157,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216164,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,216195,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,216201,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216218,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216225,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216232,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216249,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216263,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216270,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216287,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216300,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,216317,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216331,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216355,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216362,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216379,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,,,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216386,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216393,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216409,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216416,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216423,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,216430,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216447,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,216461,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216478,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216492,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,216508,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,216515,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216522,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,216546,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216553,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216560,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216577,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,216584,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,216591,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,216607,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216614,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,216621,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216645,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216652,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,216669,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216683,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,216690,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,216706,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,216713,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,216720,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,216737,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216751,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,216768,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216775,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,216782,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216829,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,216836,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,216843,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216850,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,216867,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,216874,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216881,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,216898,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,216904,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,216911,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,216928,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,216935,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216942,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,216966,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,216973,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,216980,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,216997,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217013,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217020,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217037,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,217051,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217068,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217075,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217082,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217105,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217129,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,217136,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217143,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,217150,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,217174,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217198,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217204,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217211,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217228,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,217242,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217259,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,217266,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217280,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217297,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217303,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217334,Reverse,2. Russia did not try to interfere in the 2016 presidential election,,2. Barack Obama's administration,,2. Most scientific evidence shows childhood vaccines do not cause autism,,1. World temperatures have risen on average over the last 100 years,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment, +ANES2020TimeSeries_20220210,217358,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,217365,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217389,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,217396,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217419,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,217426,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217433,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,217471,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,217488,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217495,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,217501,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217525,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,217532,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,217549,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,217556,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217563,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,217617,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217624,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217631,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,217648,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,217655,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217662,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217679,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,217686,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,217709,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,217730,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,217747,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217754,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,217761,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217785,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217792,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,217808,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217815,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217822,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,217839,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217846,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,217853,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217860,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,217877,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,217884,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,217891,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,217907,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,217914,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217938,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,217945,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,217952,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,217969,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,217976,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,217983,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,217990,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,218016,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218023,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218030,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218047,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218054,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218061,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218078,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218085,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218092,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218108,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,218122,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218139,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218146,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218160,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218177,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,218184,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,218207,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,218214,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,218221,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218238,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218245,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218252,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218283,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218290,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,218306,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,218313,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,218320,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218337,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218344,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218368,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,218375,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,218382,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,218399,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,218405,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,218412,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,218429,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218436,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,218443,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,218450,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218467,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218474,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,218481,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,218504,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218511,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218528,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218535,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218542,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,218559,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,218573,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218597,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218603,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,218610,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,218627,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218658,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,218672,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218696,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218733,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218740,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218757,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218764,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,218771,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218801,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218818,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,218825,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,218856,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,218863,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,218870,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218887,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,218917,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218924,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,218955,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,218979,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,218986,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,218993,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,219019,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219026,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,219033,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219040,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,219057,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219064,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,219071,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,219088,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,219095,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,219101,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219118,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219125,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,219149,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219156,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219163,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219170,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,219187,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219200,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,219217,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219231,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219255,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219262,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,219279,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,219286,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219293,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,219309,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,219316,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219323,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219361,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,219378,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219392,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219422,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219439,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219453,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219477,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,219484,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219507,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,219514,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,219521,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,219552,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,219569,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219576,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219583,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,219590,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219613,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219637,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219644,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,219651,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219668,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,219675,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219682,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219699,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,219705,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,219729,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219736,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219743,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,219750,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,219767,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,219774,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219781,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,219798,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,219804,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,219811,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219828,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219835,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,219859,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219866,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,219873,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219897,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,219903,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219910,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219927,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,219941,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,219958,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,219996,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220002,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,220019,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220026,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220033,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220057,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220064,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,220071,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220088,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,220095,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220101,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220118,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,220125,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220149,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220163,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220170,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,220187,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,220200,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,220217,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,220224,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220231,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,220248,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220286,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220293,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,220309,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,220316,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,220323,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,220330,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,220347,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220354,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,220361,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220378,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,220385,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220392,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,220408,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,,,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,220439,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,220446,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,220453,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,220477,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220484,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220491,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220507,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220514,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220521,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,220538,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220552,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220569,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220576,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220590,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220606,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,220613,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220620,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220637,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,220651,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220682,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220699,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220712,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,220729,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220743,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220750,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220767,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,220774,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,220798,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220804,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,220828,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,220842,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,220859,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,220866,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220880,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,220897,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220927,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220934,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,220941,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,,,1. World temperatures have risen on average over the last 100 years,5. Extremely,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm, +ANES2020TimeSeries_20220210,220958,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,220965,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,220989,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,221012,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,221029,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221036,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221043,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221050,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221067,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221074,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,221081,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,,,1. World temperatures have risen on average over the last 100 years,2. A little,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221098,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221104,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,221111,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221128,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221142,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221159,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,221166,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221173,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221180,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221210,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,221234,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221265,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,221272,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,221289,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221296,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221302,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,221319,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,221326,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,221333,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,221340,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221357,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,221364,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,221371,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221388,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,221395,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221401,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221418,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221425,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221432,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221449,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,221456,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221463,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221470,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,221487,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,221494,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,221500,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221517,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,221531,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221548,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221555,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,221562,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221579,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,221586,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221593,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221609,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221616,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,,,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,221623,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221647,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221661,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,221678,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221692,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,221708,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221715,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221739,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,221746,Reverse,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221753,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,221760,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221777,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,221784,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221807,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,221814,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221838,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221852,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,221869,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221876,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221883,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221890,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221906,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,221920,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,221937,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,221944,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,221951,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,221968,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,221975,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221982,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,221999,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222008,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222022,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222039,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,222046,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222053,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222060,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222091,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222107,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222114,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,222121,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222138,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222169,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222183,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222190,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222213,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222220,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,222237,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,222244,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,222251,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222268,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,222275,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,,,,,,,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222299,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222312,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222336,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222343,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,222350,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,222367,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,222374,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222381,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,222398,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222404,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222435,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222442,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222459,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222466,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222473,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222480,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222510,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,222527,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222541,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222558,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222572,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222589,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222596,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222602,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222626,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,222633,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222657,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,222664,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,222671,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,222688,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222695,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,222701,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222718,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222725,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222732,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222749,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222756,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222763,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222770,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222787,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,222794,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222800,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222824,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222831,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222848,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222855,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,222862,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,222879,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,222886,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222893,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222916,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222930,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,222947,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,222954,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,222961,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,222992,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223001,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223025,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,223032,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,223049,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223056,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,223063,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223070,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223087,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223094,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,223117,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223124,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223131,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,223148,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223155,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223179,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,223186,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223193,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,223209,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223216,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,223223,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,223230,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223247,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223261,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,223278,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223285,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223292,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,223315,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223322,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223339,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,223346,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223377,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223384,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223391,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223407,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223445,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223452,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223469,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,223476,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223483,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,223490,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223506,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,223520,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223537,Forward,,,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,223551,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223568,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223599,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223605,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223629,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,223636,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223643,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,223667,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223698,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223704,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223711,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223728,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223742,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223759,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223766,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223780,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223803,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223827,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,223834,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223841,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,223858,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223865,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223872,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223889,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,223896,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223902,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,223926,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223933,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,223940,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,223957,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223971,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,223988,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,223995,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224004,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224011,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,,,,,, +ANES2020TimeSeries_20220210,224028,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224035,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,224042,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,224059,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224080,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224103,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224110,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224127,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224134,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,224141,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224158,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224165,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224172,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224189,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,224219,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,224226,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224233,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224240,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224257,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,224271,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224288,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,224301,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,224318,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224325,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224332,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224349,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224356,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224387,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,224394,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,224400,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224417,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224424,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224431,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224448,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224462,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224479,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224486,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224493,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224516,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,224523,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224530,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224554,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224561,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224578,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,224585,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,224592,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224615,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224639,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224660,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224707,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,224714,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224721,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224738,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,224752,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224769,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224783,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224790,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224806,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224820,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,224837,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224844,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224851,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,224868,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224875,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224882,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224899,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,224905,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,224912,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,224929,Reverse,1. Russia tried to interfere in the 2016 presidential election,,1. Donald Trump's administration,4. Very,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,224943,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224950,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,224967,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224974,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,224981,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225007,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225021,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,225038,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225045,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,225052,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225069,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225076,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,225083,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225090,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225113,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225137,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,225144,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,225151,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225168,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,225182,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225205,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225212,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225229,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225236,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225243,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,225250,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225267,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,225281,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,225298,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225304,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,,,,,,,, +ANES2020TimeSeries_20220210,225311,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,225328,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,225335,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225342,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225366,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,225373,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225397,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225403,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,225410,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,225427,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,225434,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,225441,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225458,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225465,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,225472,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225489,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225496,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,225526,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225533,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225540,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225557,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225571,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225588,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,225595,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225601,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,225618,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,225625,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225649,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,,,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225663,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225687,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225694,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,225700,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,225724,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225731,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,225748,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225755,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,225779,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225786,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,225793,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225809,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225823,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225854,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225861,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,225878,Reverse,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,225885,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,225892,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,225908,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,225939,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,225946,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,225953,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,225960,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,225984,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,225991,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,226000,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226017,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226024,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,226048,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,226055,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,226079,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,226116,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,226123,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,226130,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,226154,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,226161,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226178,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226185,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226192,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226215,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226222,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226239,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226246,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226253,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226260,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226277,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226291,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226307,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226314,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226321,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226338,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226345,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226352,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226376,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226383,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,226406,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226413,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226437,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226444,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,226451,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,226482,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226499,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,226505,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,226512,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226529,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226536,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226543,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226550,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226567,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,226581,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226604,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226611,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226628,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,226635,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226642,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226659,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226666,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226680,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,226697,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226703,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226710,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,226727,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,226734,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,226741,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,226758,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226765,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,226772,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226789,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226796,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226802,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,226819,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,226826,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,226840,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,226857,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226864,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,226871,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,226895,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,226901,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226918,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226925,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,226956,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,226963,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,226970,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,226987,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227010,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227027,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227034,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227058,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227065,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227072,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,227096,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227102,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227119,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227126,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,227133,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227157,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,227164,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,227171,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,227188,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,227195,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,227201,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227232,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227249,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,227256,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227263,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227270,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227287,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,227294,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,227300,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,227324,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,227331,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227348,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,227355,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,,,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227362,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227393,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227409,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,227423,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227430,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,227447,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227478,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227485,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227515,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227522,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227539,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227546,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227577,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,227607,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,227614,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,227621,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227645,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,227652,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227669,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227676,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227683,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227690,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,227706,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,227720,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227737,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,227744,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227751,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,227775,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,227782,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,227805,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,227812,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227829,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,227836,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227843,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227850,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227867,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,227881,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227898,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,227904,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,227911,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227928,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227935,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227942,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227959,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227966,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,227973,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,227980,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,227997,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228006,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228013,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228020,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228037,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,228044,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228051,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,228068,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,228075,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228082,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228099,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228112,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228129,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228136,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228143,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,228150,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228167,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228181,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,228198,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,228204,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,228211,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228228,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228242,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228259,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,228266,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228280,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228297,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228303,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228327,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228334,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,228341,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,228358,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,228365,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,228372,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,228389,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228396,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228402,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228419,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228457,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,228471,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,228495,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228501,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228525,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228532,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228549,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,228556,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228563,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228587,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228594,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228600,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,228617,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228624,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228648,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228662,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228679,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,228686,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228693,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228709,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228716,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,228723,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228730,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,228747,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228754,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228761,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,228785,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,228792,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228808,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228815,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228822,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228839,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228853,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,228860,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,228877,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228884,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,228907,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,228914,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,228921,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228938,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,228945,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,228969,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,228983,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,228990,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229016,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,229030,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,229047,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229054,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,229061,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229078,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,229085,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,229092,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229115,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,229139,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,229146,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,229153,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,229160,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229177,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229184,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229207,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229221,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,229238,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229245,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229269,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229276,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229283,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229290,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,229306,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,229313,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,229337,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229368,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229382,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229399,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229405,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,229412,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229429,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229436,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229443,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229450,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229467,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229474,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,229481,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229498,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229542,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,229559,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,229566,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229573,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229597,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229603,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,229610,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229627,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,229634,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229641,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,,,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,229658,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229665,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229672,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229689,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229696,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,229719,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229726,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229733,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229740,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,229757,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229764,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229771,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229788,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,229818,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229825,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229832,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229849,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,229856,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229863,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,229870,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229887,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229894,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229917,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229924,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,229931,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229955,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,229962,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,229979,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,229986,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,229993,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230023,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,230030,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230047,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,230054,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230061,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,,,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230078,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,230092,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230108,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230115,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,230146,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230153,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230177,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230184,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230191,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230214,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,230238,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,230269,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230276,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230283,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230306,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230320,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,230337,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,230351,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230375,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230382,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230399,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230405,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,230436,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230443,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230467,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230474,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230498,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,230504,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,230511,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,230528,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230535,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230542,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230566,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230580,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,230634,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,230641,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,230658,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230665,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,230672,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230689,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230702,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,230726,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230740,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230757,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230771,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,230788,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230795,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230801,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,230825,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230832,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,230849,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230870,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230887,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,230894,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,230900,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230917,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,230924,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,230931,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,230955,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,230962,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230979,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,230986,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231002,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231019,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231026,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231033,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,231040,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231057,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,231064,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,231071,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,231088,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,231095,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231118,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,231149,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231194,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,231200,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231217,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,231224,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231231,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231255,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231262,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,231279,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,231286,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,231293,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231309,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231323,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,231347,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,231354,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231361,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,231378,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231385,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,231392,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231408,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231415,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,231422,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231439,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231446,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231453,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231460,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231484,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231491,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,231507,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,231514,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231552,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231569,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231576,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231583,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231590,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231606,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,231613,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231620,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231651,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231668,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231675,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231682,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231699,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231705,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,231712,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,231729,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231736,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231743,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231750,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,231767,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231774,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231781,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231798,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231804,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,231811,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231835,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231842,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231859,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231866,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231880,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231897,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231903,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,231910,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,231927,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,231941,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231958,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,231965,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,231972,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,231989,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,231996,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,232005,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232036,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232043,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,232050,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232067,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232074,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232098,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,232111,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232128,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232142,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232159,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232180,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232197,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232210,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,232227,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232234,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232241,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232258,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232272,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,232289,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232296,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232302,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232326,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232333,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232340,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,232357,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,232364,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,232371,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232395,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,232418,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232425,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232432,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232449,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232456,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,232463,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232487,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232494,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,232517,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,232524,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232531,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,232548,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232555,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232579,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,232586,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,232593,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,232609,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232616,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232623,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232630,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232647,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232654,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232661,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,232678,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,232685,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232692,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232715,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232722,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232746,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,232753,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,232760,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,232784,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232791,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232814,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,232821,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,232852,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232869,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,232890,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,232906,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232913,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,232920,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232937,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232951,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,232968,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232975,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,232982,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,232999,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233008,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,233015,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233022,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,233046,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233053,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233084,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,233091,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,233107,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233114,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,233121,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,233138,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,233145,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233152,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233169,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233183,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,233206,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233213,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233220,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,233237,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233244,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,233251,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,233268,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233275,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,233299,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233305,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233312,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,233329,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233336,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,233343,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233374,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233381,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,233398,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233428,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233435,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233442,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233459,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233466,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,233480,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233497,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,233503,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233510,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,233534,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,233541,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233565,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233596,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,233602,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,233619,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,233626,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233633,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,233640,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233657,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,233664,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,233671,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233688,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233695,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,233718,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233725,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233732,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233749,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233756,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233770,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233787,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,233800,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233817,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233824,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233831,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233848,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,233886,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233893,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233916,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,233923,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233947,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,233954,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,233985,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,233992,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,234001,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234018,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234025,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234032,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,234056,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234063,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234070,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234087,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234094,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234100,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234117,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234124,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234131,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,234155,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234179,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234186,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234193,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234209,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,234216,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,234223,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234230,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,234247,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234254,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234261,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,234278,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,234285,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,234292,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234308,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234339,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,,,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,234346,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234360,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234377,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234407,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234414,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,234438,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234452,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,234469,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234476,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234483,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234490,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,234506,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234513,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,234520,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234537,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,234544,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234551,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,234568,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234582,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,234599,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234605,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,234612,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234629,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,234636,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234643,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234667,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,234674,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,234681,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,234698,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234704,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234728,Forward,,,1. Donald Trump's administration,,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,234735,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,234742,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234759,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234766,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234773,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,234780,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234797,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,234803,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234810,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234827,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,234841,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,234858,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,234896,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234902,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234919,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234926,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,234933,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234940,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,234957,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,234971,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234988,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,234995,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235004,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,235011,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,235028,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235035,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,235042,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235059,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,235080,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235097,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235127,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235134,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235141,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235158,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235165,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235189,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,235219,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235226,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,235233,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235240,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235271,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235288,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,235295,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,235318,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235325,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,235349,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,235356,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235363,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235387,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235394,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235400,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235417,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235462,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,235479,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235486,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,235493,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,235509,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,235516,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235523,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,235530,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235547,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235554,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235561,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235578,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235585,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,235608,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235615,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235622,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235653,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235660,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235677,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,235684,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235691,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235707,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,235714,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,235721,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235738,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,235752,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235769,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235783,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235790,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235806,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,235820,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235837,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235868,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235875,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235899,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,235905,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,235912,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,235929,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,235936,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,235943,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,235974,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,235981,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,235998,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,236007,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,236014,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,236021,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,236045,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,236076,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236083,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,236090,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,236106,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,236113,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,236120,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236144,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236151,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,236168,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,236175,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236205,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,236212,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,236229,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,236236,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236250,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,236274,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,236281,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236298,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236304,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,236311,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,236328,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,236342,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,236359,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,236366,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,236373,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,236380,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236397,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,236403,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,236427,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,236434,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,236458,Reverse,,,2. Barack Obama's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,236465,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,300038,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300076,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,300083,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,300106,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,300113,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,300137,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,300144,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,300168,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,300212,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,300229,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,300281,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300298,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,300311,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,300373,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,300397,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,300403,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300458,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,300502,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,300526,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,300533,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300540,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,300618,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,300632,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300656,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,300663,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,300687,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300717,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,300731,Reverse,,,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,, +ANES2020TimeSeries_20220210,300755,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,300823,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,300847,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300861,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300892,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,300908,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,300915,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300946,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,300960,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,301000,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,301017,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,301024,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,301086,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,301093,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,301130,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,301147,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,301192,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,301215,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,301253,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,301284,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,301307,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,301321,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,301369,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,301376,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,301413,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,301451,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,301475,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,301581,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,,,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,301604,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,301611,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,301659,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,301666,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,301680,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,301697,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,301710,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,301741,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,301758,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,301802,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,301833,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,301840,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,301895,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,301918,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,301987,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,302003,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,302027,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,302041,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,302140,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,302157,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,302225,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,302270,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,302317,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,302324,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,302386,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,302416,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,302430,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,302454,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,302515,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,302522,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,302539,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,302546,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,302607,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,302669,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,302676,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,302690,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,302706,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,302799,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,302812,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,302829,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,302850,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,302867,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,302898,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,302904,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,302911,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,302928,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,302973,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,303013,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,303037,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,303051,Reverse,,,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,303136,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,303242,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,303303,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,303310,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,303327,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,303365,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,303402,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,303426,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,303457,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,303532,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,303563,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,303624,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,303679,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,303693,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,303747,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,303792,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,303808,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,303815,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,303822,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,303853,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,303877,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,303884,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,303891,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,303907,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,303952,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,303976,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,304009,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,304054,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,304078,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,304092,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,304153,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,304184,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,304214,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,304238,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,304269,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,304276,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,304290,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,,,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,304306,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,304382,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,304412,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,304436,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,304504,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,304559,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,304603,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,304658,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,304665,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,304719,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,304740,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,304757,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,304795,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,304801,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,304825,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,304832,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,304863,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,304887,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,304900,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,304931,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,304979,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,304986,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,305040,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,305057,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,305071,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,305095,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,305149,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,305187,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,305217,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,305231,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,305293,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,305330,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,305347,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,305378,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,305385,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,305446,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,305460,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,305491,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,305521,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,305545,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,305613,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,305637,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,305644,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,305651,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,305668,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,305712,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,305729,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,305767,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,305774,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,305798,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,305804,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,305897,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,305927,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,305934,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,305972,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,305996,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,306067,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,306142,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,306159,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,306203,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,306210,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,306272,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,306302,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,306357,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,306395,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,306418,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,306456,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,306548,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,306562,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,306586,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,306647,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,306685,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,306777,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,306791,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,306852,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,306869,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,306883,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,306975,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,306982,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,306999,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,307015,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,307039,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,307114,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,307121,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307169,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,307176,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307190,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,307206,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307213,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,307237,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307251,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,307268,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,307275,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,307282,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,307305,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,307336,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,307404,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,307435,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307466,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,307510,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307534,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,307589,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,307602,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,307626,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,307640,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,307718,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,307725,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,307800,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307817,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,307824,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,307831,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307923,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,307930,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,307947,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,307978,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308001,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308018,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308049,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308070,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,308087,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308094,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308124,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308131,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308162,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,308209,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308216,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,308285,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308308,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,308360,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308391,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,308407,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308414,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,308476,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308513,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308520,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308537,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,308643,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308667,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308704,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308711,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308735,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308742,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,308773,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308780,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308797,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308810,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308827,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308865,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,308889,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308896,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308926,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,308933,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308957,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,308971,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,308988,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309004,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,309011,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309028,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309080,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,309097,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309134,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,309141,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,309158,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,309189,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309202,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309318,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,309325,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,309349,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,309370,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309400,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,309431,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,309486,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,309516,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,309608,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309653,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,,,,,1. World temperatures have risen on average over the last 100 years,4. Very,,,, +ANES2020TimeSeries_20220210,309660,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309677,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309684,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,309769,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,309851,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309868,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,309882,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,309899,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,309943,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,309967,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,310028,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,310066,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,310097,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,310103,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,,,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,310110,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,310196,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,310240,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,310271,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,310288,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,310295,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,310318,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,310332,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,310394,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,310417,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,310424,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,310462,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,310486,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,310516,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,310547,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,310554,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,310592,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,310639,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,310646,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,310677,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,310684,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,310776,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,310806,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,310813,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,310868,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,310899,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,310936,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,310950,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,311007,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,311014,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,311052,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,311083,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,311175,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,311199,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,311212,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,311229,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,311250,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,311304,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,311311,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,311335,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,311359,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,311373,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,311397,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,311403,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,311427,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,311434,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,311458,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,311496,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,311502,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,311519,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,311540,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,311557,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,311571,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,311595,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,311601,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,311618,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,311649,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,311663,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,311670,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,311694,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,311762,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,311809,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,311847,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,311885,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,311908,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,311915,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,311922,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,312017,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312024,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,312079,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312109,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,312123,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,312130,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,312147,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312154,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,312208,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312246,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,312277,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312291,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312321,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312345,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,312369,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,312413,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312444,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,312451,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312475,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312574,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,312581,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312598,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312604,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,312611,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,312628,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,312659,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312680,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312697,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312703,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,312710,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,312741,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,312758,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,312802,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,312826,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312833,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,312888,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312895,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312918,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,312925,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,312956,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,313003,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,313034,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,313089,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,313102,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,313157,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,313195,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,313218,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,313232,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,313263,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,313270,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,313287,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,313317,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,313348,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,313362,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,313485,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,313515,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,313546,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,313560,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,313591,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,313614,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,313669,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,313683,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,313744,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,313751,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,313768,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,313812,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,313850,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,313867,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,313911,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,313928,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,313966,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,314006,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314020,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314051,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,314112,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,314136,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,314174,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314198,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,314228,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,314235,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,314266,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,314273,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,314297,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,314327,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,314372,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314402,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,314419,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,314433,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,314440,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,314471,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,314518,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,314532,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314549,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,314556,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,314587,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,314594,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314617,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,314631,Reverse,,,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314679,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,314693,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,314716,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314754,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,314785,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,314792,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,314822,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,314884,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,314891,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,314945,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,314969,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,315054,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,315092,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,315115,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,315139,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,315146,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,315207,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,315245,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,315276,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,315351,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,315399,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,315429,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,315436,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,315481,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,315504,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,315511,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,315528,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,315535,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,315559,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,315597,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,315603,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,315610,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,315641,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,315696,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,315757,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,315764,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,315788,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,315801,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,315870,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,5. Extremely,,,, +ANES2020TimeSeries_20220210,315887,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,315917,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,315924,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,315955,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,315993,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,316002,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,316019,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,,,1. World temperatures have risen on average over the last 100 years,4. Very,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316040,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316064,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,316071,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,316088,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,316095,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316187,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316224,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316248,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316255,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316262,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316286,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316316,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,316330,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316354,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316392,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316446,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316453,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,316460,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,316477,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,316507,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316521,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316576,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316590,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316644,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,316682,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316699,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,316705,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,316729,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,316736,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316750,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316767,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,316774,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316828,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,316835,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,316873,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,316880,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,316897,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,316903,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,316927,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,316958,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,316989,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,317012,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,317029,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,317036,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,317043,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,317128,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,317166,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,317197,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,317227,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,317234,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,317357,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,317371,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,317418,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,317449,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,317463,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,317470,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,317555,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,317586,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,317630,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,317685,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,317692,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,317708,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,317715,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,317739,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,317777,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,317821,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,317845,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,317869,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,317890,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,317906,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,317944,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,317951,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,317968,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,318039,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,318053,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,318121,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,318138,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,318145,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,318169,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,318206,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,318275,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,318299,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,318329,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,318336,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,318343,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,318497,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,318503,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,318527,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,318657,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,318688,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,318718,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,318756,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,318763,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,318848,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,318855,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,318862,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,318909,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,318916,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,318923,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,318954,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,319001,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319025,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319063,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,319070,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319124,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319131,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319155,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319193,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,319209,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,319223,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,319230,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,319278,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,319315,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,319322,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,319353,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319391,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,319407,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,319421,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,319438,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,319445,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,319452,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319476,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,319483,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,319551,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,319568,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,319575,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,319599,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,319605,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,319650,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,319780,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,319797,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,319858,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,319865,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,319896,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,319971,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,319988,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,320001,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320018,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320056,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320087,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320124,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,320155,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,320162,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,320209,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320261,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,320278,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,320308,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320315,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320322,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,320353,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,320360,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,320407,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320414,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320469,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,320476,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320490,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320506,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320537,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320544,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320575,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,320605,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,320612,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,320636,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,320643,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,320667,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,320674,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,320681,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,320711,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,,,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,320735,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,320742,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320773,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,320803,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,320810,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,320865,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320896,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,320926,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,320940,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,320995,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,321004,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,321035,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,321042,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,321066,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,321103,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,321134,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,321141,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,321226,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,321271,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,321288,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,321301,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,321325,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,321332,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,321356,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,321394,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,321400,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,321424,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,321431,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,321448,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,321462,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,321493,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,321509,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,321516,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,321585,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,321592,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,321608,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,321622,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,321677,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,321691,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,321813,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,321820,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,321851,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,321868,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,321905,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,321943,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,321974,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,322021,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,322038,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,322083,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,322137,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,322182,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,322199,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,322243,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,322267,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,322274,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,322281,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,322328,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,322335,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,322366,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,322380,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,322465,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,322526,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,322533,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,322540,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,322564,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,322632,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,322649,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,322656,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,322694,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,322700,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,322755,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,322762,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,322786,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,322816,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,322830,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,322847,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,322854,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,322861,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,322892,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,322946,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,322984,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,323000,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,323017,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,323024,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,323062,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,323093,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,323123,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,323147,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,323154,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,323222,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,323253,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,323284,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,323338,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,323352,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,323376,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,323383,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,323420,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,323437,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,323482,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,323543,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,323598,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,323611,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,323642,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,323697,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,323703,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,323734,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,323789,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,323819,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,323857,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,323888,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,323901,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,323918,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,323925,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,323932,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,323949,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,323956,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,324034,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,324058,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,324096,Forward,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,324133,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,324171,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,324249,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,324263,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,324287,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,324324,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,324379,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,324393,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,324461,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,324508,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,324515,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,324522,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,324539,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,324607,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,324614,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,324638,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,324652,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,324737,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,324812,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,324829,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,324850,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,324881,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,324898,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,324904,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,324911,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,324980,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,324997,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,325044,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,325068,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325112,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,325129,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,325136,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,325204,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,325228,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,325235,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,325266,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,325273,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,325297,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,325310,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,325358,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,325372,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325396,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325402,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325419,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,325426,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,325457,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,325464,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,325495,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,325501,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,325556,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,325648,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,325655,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,325693,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,325716,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325730,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,325747,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325778,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325815,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325822,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,325853,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,325921,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,325983,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,325990,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,326023,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,326054,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,326078,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,326177,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,326184,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,326290,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,326306,Reverse,,,,,,,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,326320,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,326344,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,326375,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,326412,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,326559,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,326580,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,326597,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,326603,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,326627,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,326658,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,326665,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,326672,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,326719,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,326733,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,326740,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,326771,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,326856,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,326894,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,326917,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,326931,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,327071,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,327095,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,327101,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,327118,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,327149,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,327170,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,327187,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,327248,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,327354,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,327415,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,327453,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,327477,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,327583,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,327613,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,327668,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,327682,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,327705,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,327750,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,327781,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,327828,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,327835,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,327842,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,327958,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,327965,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,327996,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,328029,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,328043,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,328074,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,328081,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,328098,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,328104,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,328166,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,328180,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,328203,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,328272,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,328302,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,328319,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,328401,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,328418,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,328432,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,328463,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,328487,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,328524,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,328555,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,328593,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,328616,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,328647,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,328678,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,328685,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,328739,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,328760,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,328777,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,328821,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,328838,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,328845,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,328852,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,328951,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,328999,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,329008,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,329015,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,329121,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,329138,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329176,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,329183,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,329206,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,329213,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,329329,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,329398,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329404,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,329497,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329527,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,329565,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329572,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329602,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,329619,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,329640,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329671,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329695,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,329701,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,329725,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,329824,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,329855,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329879,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,329886,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,329909,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,329916,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,329930,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,329992,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,330015,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330022,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,330039,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330060,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,330138,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,330183,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,330275,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,330299,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,330305,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,330329,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,330336,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330343,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330367,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,330398,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,330411,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330442,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,330466,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,330480,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330510,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,330558,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,330565,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,330572,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,330589,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330602,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,330633,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,330640,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330657,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,330664,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,330671,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,330718,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,330749,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,330756,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,330787,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,330817,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,330824,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,330831,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330862,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330879,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,330893,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,330909,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330954,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,330961,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,330978,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,330985,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,331032,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,331070,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,331124,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,331148,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,331162,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,331193,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,331209,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,331216,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,331254,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,331278,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,331308,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,331322,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,331346,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,331360,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,331384,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,331407,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,331421,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,331469,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,331506,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,331520,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,331537,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,331650,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,331735,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,331759,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,331766,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,331810,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,331834,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,331841,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,331872,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,331902,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,331926,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,331995,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,332004,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,332011,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,332035,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,332042,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,332066,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,332097,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,332110,Reverse,,,,,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,, +ANES2020TimeSeries_20220210,332158,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,332196,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,332219,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,332240,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,332257,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,332264,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,332301,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,332325,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,332394,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,332400,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,332417,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,332455,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,332462,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,332486,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,332516,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,332530,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,,,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,332585,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,332646,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,332677,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,332691,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,332745,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,332769,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,332783,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,332790,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,332820,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,332882,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,332905,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,332943,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,332950,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,333007,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,333052,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,333083,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,333113,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,333137,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,333144,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,333168,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,333175,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,333182,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,333243,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,333281,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,333298,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,333403,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,333472,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,333489,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,333595,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,333625,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,,,,,,,, +ANES2020TimeSeries_20220210,333649,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,333656,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,333663,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,333687,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,333762,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,333786,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,333809,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,333823,Reverse,,,1. Donald Trump's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,4. Very,,,, +ANES2020TimeSeries_20220210,333847,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,333915,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,333922,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,333939,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,333946,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,333960,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,333984,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,334017,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,334031,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,334048,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,334055,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,334109,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334116,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,334123,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334154,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334161,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,334215,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,334291,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,334338,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,334390,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334420,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334451,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334475,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,334482,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,334512,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,334536,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,334543,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,334604,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,334611,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,334628,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,334659,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,334673,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334703,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334727,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334758,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,334765,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334802,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,334819,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,334840,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,334888,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,334895,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,334932,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334956,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,334987,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,334994,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,335003,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,335010,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,335058,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,335157,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,335201,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,335225,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,335232,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,335249,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,335317,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,335355,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,335416,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,335454,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,335461,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,335492,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,335508,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,335522,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,335539,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,335560,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,335621,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,335638,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,335645,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,335652,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,335683,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,335690,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,335713,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,335744,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,335775,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,335782,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,335812,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,335836,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,335935,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,335966,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,335980,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,336006,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,336051,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,336082,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,336105,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,336150,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,336174,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,336204,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,336235,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,336259,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,336327,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,336365,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,336402,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,336419,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,336426,Forward,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,336440,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,336457,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,336495,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,336501,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,336549,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,336617,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,336624,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,336662,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,336730,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,336792,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,336846,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,336853,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,336938,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,336976,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,337016,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,337030,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,337122,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,337146,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,337177,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,337191,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,337283,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,337306,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,337337,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,337344,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,337368,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,337399,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,337405,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,337467,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,337474,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,337504,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,337566,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,337580,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,337658,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,337665,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,337672,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,337696,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,337726,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,337764,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,337849,Reverse,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,,,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,337863,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,337870,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,337887,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,337924,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,338019,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,338057,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,338071,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338125,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,338170,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,338231,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,338255,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338262,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,338286,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,338316,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338354,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338385,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,338415,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,338460,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338477,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,338507,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,338552,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,338576,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338583,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,338590,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338613,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,338637,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,338644,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,338705,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,338736,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,338743,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338804,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,338811,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,338866,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,338873,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,338897,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,338927,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,338941,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,338958,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,338989,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,339029,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,339036,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,339050,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,339104,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,339128,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,339203,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,339210,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,339258,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,339265,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,339272,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,339296,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,339319,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,339340,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,339364,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,339425,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,339456,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,339470,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,339531,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,339555,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,339562,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,339623,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,339746,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,339753,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,339807,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,339821,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,339869,Forward,,,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,,,, +ANES2020TimeSeries_20220210,339944,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,339975,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,339982,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340005,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,340043,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340050,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,340173,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340180,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,340197,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,,,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,340227,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,340234,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,340258,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,340265,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,340272,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340302,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,340319,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,340326,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340364,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340371,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340425,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,340449,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,340463,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,340517,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,340531,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,340555,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,340579,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,340593,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,340609,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,340647,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,340722,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,340739,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340784,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,340807,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340821,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,340890,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,340906,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,340982,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,341008,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,341022,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,341039,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,341060,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,341077,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341145,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341183,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,341190,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341213,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,341220,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341244,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341251,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341299,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,341305,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,341336,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,341343,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341381,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,341404,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341428,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341442,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341473,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,341503,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341527,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341558,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,341596,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,341602,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341671,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341695,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341701,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,341718,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341725,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341732,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,341749,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341770,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,341787,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,341800,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,341831,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341886,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,341923,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,341930,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,341954,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,341992,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,342025,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,342056,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,342063,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,342070,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,342124,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,342155,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,342179,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,342186,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,342193,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,342216,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,342247,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,342261,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,342339,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,342353,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,342360,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,342414,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,342438,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,342469,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,342483,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,342544,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,342551,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,342698,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,342711,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,342728,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,342742,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,342797,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,342803,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,342834,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,342896,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,342902,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,342919,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,342940,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,342964,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343035,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343066,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,, +ANES2020TimeSeries_20220210,343097,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343127,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,343134,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,, +ANES2020TimeSeries_20220210,343158,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343196,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,343219,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343226,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,343257,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343264,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343288,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,343325,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343349,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,343387,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,343417,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343479,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343554,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343578,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343585,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343592,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,343622,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,343646,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343660,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,343707,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343745,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343769,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,343776,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,343783,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,343806,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343813,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,343882,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,343981,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,343998,Forward,,,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,344014,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,344083,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,344090,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,344113,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,344168,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,344267,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,344373,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,344380,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,344397,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,344496,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,344533,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,344540,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,344564,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,344649,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,344724,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,344779,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,344786,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,344793,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,344816,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,344878,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,344885,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,344892,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,344908,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,344915,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,344922,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,344939,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,344977,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,344991,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345017,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345062,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345079,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,345093,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345109,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,345123,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,345178,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,345208,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345215,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345253,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345260,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345321,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,345352,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345475,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345512,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345536,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345567,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345574,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345581,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345598,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,345611,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,345642,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,345659,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,345680,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,345802,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345840,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,345857,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,345871,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,345901,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,345918,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345949,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,345956,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,345970,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,345987,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,346041,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,346065,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346102,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,346133,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,346157,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346164,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,346249,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346270,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,346294,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,346300,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,346324,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346331,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,346430,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,346461,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,346492,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346515,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,346539,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,346584,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,346591,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,346638,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,346652,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346669,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346706,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,346744,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,346751,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,346799,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,346812,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346843,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,346874,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,346881,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,346911,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,346928,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,347044,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,347082,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,347105,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,347136,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,347167,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,347228,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,347235,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,347242,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,347280,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,347297,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,347303,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,347372,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,347396,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,347464,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,347488,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,347495,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,347501,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,347518,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,347525,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,347556,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,347570,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,347587,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,347648,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,347662,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,347686,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,347754,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,347778,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,347808,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,347853,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,347891,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,347914,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,347945,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,347983,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,348009,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,348016,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,348023,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,348030,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348061,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,348085,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,348092,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,348122,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,348153,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,348160,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,348207,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,348221,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348238,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,348252,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,348283,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348306,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348351,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,348368,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,348405,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,348511,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,348542,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,348580,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348603,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,348658,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,348665,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,348696,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,348726,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,348764,Reverse,,,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,,,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,348771,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348795,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348818,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,348825,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,348849,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348856,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,348924,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,348948,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,348955,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,348979,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,348993,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,349002,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,349019,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,349057,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,349071,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,349088,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,349118,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,349163,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,349187,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,349194,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,349200,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,349224,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,349255,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,349262,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,349316,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,349323,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,349408,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,349415,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,349446,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,349491,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,349514,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,349576,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,349590,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,349606,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,349620,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,349644,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,349668,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,349699,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,349705,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,349729,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,349736,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,349798,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,349842,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,349880,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,349910,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,349941,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350002,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,350019,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,350033,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,350040,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,350057,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,350101,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,350125,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,350156,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350163,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,350194,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,350200,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,350262,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,350286,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,350309,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,350316,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350323,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,350347,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,350354,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,350385,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,350392,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350453,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,350552,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350576,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,350590,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350606,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,350620,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,350675,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350729,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,350767,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,350781,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350804,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,350842,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,350859,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,350897,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350934,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,350965,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,350989,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,351043,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,351050,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,351074,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,351081,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,351098,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,351135,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,351166,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,351180,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,351210,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,351234,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,351296,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,351319,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,351326,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,351333,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,351340,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,351470,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,351494,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,351524,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,351562,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,351586,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,351593,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,351630,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,351647,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,351678,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,351685,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,351708,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,351722,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,351753,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,351777,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,351784,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,351807,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,351838,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,351906,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,351913,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,351944,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,351951,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,352008,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,352015,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,352022,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,352039,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352077,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352107,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,352138,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,352145,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,352176,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,352183,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,352206,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352220,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,352244,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,352251,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,352305,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,352343,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352374,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,352398,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,352404,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352428,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,352435,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,352442,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,352459,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352473,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,352480,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,352541,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,352619,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352633,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,352664,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,352695,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,352718,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,352725,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,352749,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,352763,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,352787,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352848,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,352855,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,352862,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,352886,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,352893,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,352909,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,352916,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,352947,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,352961,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,353032,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,353056,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353063,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,353124,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,353131,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,353247,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,353292,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353308,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,353315,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,353346,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353353,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353360,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,353377,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353384,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,353391,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,353414,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353421,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353469,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353476,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,353513,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353520,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353544,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,353551,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,353643,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,353667,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353681,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,353704,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,353711,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,353773,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,353780,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353810,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353834,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,353902,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,353926,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,353933,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,353957,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,353988,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,354004,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,354035,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,354073,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,354097,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,354134,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,354158,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,354189,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,354196,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,354202,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354219,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354240,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354288,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354301,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354318,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354332,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,354363,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,354394,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354424,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,354431,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,354448,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,354462,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,354479,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,354547,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,354592,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354684,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,354691,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,354707,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,354752,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,354820,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,354844,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354851,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,354868,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,354875,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,354882,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,354899,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,354905,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,354929,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,354943,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354950,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,354967,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,354974,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,355014,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,355045,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,355069,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,355151,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,355168,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,355182,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,355267,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,355298,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,355335,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,355359,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,355373,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,355397,Forward,,,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,355403,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,355427,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,355434,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,355441,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,355458,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,355472,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,355519,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,355540,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,355557,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,355564,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,355571,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,355618,Forward,,,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,,,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,355632,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,355656,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,355687,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,355786,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,355809,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,355816,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,355830,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,355878,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,355892,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,355908,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,355915,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,355922,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,355946,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,355977,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,355991,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,356048,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,356062,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,356123,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,356147,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,356192,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,356208,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,356215,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,356253,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,356277,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,356284,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,356321,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,356406,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,356413,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,356437,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,356444,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,356451,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,356475,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,356505,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,356512,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,356529,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,356550,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,356666,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,356765,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,356789,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,356819,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,356833,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,356840,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,356864,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,356871,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,356901,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,356925,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,356956,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,356963,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,356970,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,356994,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,357003,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,357010,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,357027,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,357072,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,357089,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357102,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357157,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,357201,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357225,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,357270,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,357287,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357294,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,357393,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357416,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,357430,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357478,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,357485,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357492,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,357522,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,357645,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357669,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,357676,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,357683,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,357690,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,357751,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357775,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357829,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,357874,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,357898,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357911,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,357973,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,358006,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358037,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,358075,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,358105,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,358112,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,358150,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,358235,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,358242,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,358259,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358280,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,358310,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358327,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358334,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,358396,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,358440,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358457,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,358501,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,358525,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,358532,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,358549,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,358556,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,358570,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358631,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,358648,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,358655,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,358686,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,358709,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358747,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358754,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,358761,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,358792,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,358815,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,358952,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,358976,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,358983,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,359030,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,359047,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,359054,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,359085,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,359146,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,359177,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,359207,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,359221,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,359245,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,359283,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,359290,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,359344,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,359351,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,359382,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,359467,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,359498,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,359535,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,359580,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,359597,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,359610,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,359627,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,359634,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,359702,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,359740,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,359764,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,359825,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,359849,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,359863,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,359887,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,359894,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,359900,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,359962,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360030,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,360061,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360092,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,360177,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360184,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360207,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,360214,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360252,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,360290,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360306,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360320,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,360337,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,360351,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360368,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360382,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,360405,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360412,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360429,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360443,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,360528,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,360542,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,360634,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,360689,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,360696,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360719,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,360726,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360733,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360757,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,360764,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,360771,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360795,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,360818,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,360825,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,360832,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,360849,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360948,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,360962,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,360979,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360986,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,360993,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,361002,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,361064,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,361071,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,361095,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,361132,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,361248,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,361293,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,361347,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,361378,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,361392,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,361422,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,361439,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,361514,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,361538,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,361545,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,361569,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,361576,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,361590,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,361613,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,361644,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,361682,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,361705,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,361712,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,361736,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,361743,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,361750,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,361767,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,361828,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,361835,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,361897,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,361910,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,361965,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,361996,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,362043,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,362050,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,362067,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,362074,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,362128,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,362135,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,362159,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,362180,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,362227,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,362265,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,362272,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,362302,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,362333,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,362388,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,362401,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,362418,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,362456,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,362463,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,362524,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,362593,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,362609,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,362623,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,362654,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,362692,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,362708,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,362715,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,362722,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,362739,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,362777,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,362784,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,362814,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,362838,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,362890,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,362906,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,362975,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,362999,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,363015,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,363022,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,363039,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,363046,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,363053,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,363077,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,363091,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,363121,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,363206,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,363220,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,363312,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,363343,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,363381,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,363411,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,363428,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,363442,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,363541,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,363558,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,363565,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,363619,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,363633,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,363640,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,363657,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,363701,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,363756,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,363763,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,363800,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,363855,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,363916,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,363961,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,363985,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,363992,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,364025,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,364063,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,364070,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,364094,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,364124,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,364131,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,364148,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,364186,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,364216,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,364230,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,364254,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,364278,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,364285,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,364292,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,364308,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,364377,Reverse,,,2. Barack Obama's administration,2. A little,,,1. World temperatures have risen on average over the last 100 years,2. A little,,,, +ANES2020TimeSeries_20220210,364483,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,364506,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,364513,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,364568,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,364629,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,364636,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,364704,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,364742,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,364759,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,364766,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,364810,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,364834,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,364872,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,364889,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,364896,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,364926,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,364933,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,364971,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,364988,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,365028,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,365059,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,365066,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,365103,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365110,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365196,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,365226,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,365264,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,365295,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,365325,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365332,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365370,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,365394,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365400,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,365448,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,365455,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,365516,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365523,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365530,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,365554,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,365585,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,365592,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,365660,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,365707,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,365714,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365745,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,365769,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,365844,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,365868,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,365875,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,365882,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,365899,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,365905,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,365981,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,366007,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,366014,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,366021,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,366038,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,366052,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,366083,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,366090,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,366113,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,366151,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,366175,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,366199,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,366250,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,366274,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,366328,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,366380,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,366397,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,366465,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,366472,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,400068,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,400075,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,400082,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,400099,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,400112,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,400136,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,400181,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,400242,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,400280,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,400303,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,400327,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,400334,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,400372,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,400396,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,400433,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,400440,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,400457,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,400464,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,400518,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,400525,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,400648,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,400693,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,400723,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,400747,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,400761,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,400785,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,400822,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,400839,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,400938,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,401016,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,401023,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,401085,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401092,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401108,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,401139,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,401153,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,401177,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,401207,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401337,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401344,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401351,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,401382,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,401429,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,401436,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,401443,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401467,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401474,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,401504,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,401559,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,401580,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,401627,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,401658,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401726,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401740,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,401795,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401801,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,401825,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,401832,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,401856,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,401863,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,401870,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,401887,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,401931,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,401948,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,401955,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,401962,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402095,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402149,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,402156,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,402163,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402170,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,402187,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,402217,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,402293,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402309,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,402316,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402330,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,402347,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,402392,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,402439,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402446,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,402453,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402491,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,402507,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,402538,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,402583,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,402590,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,402606,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402620,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402668,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,402682,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,402712,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,402743,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,402750,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,402828,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,402859,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,402873,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402927,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,402934,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,402941,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,402965,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,402996,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,403005,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,403074,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,403098,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,403104,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,403142,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,403180,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,403210,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,403265,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,403326,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,403357,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,403425,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,403449,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,403463,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,403487,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,403494,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,403500,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,403562,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,403593,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,403609,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,403678,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,403708,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,403722,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,403777,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,403838,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,403845,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,403852,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,403876,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,403913,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,403920,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,403944,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,403951,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,403968,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,403999,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,404022,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404053,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404077,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404114,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,404121,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,404138,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,404244,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,404268,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,404336,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,404350,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,404381,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,404442,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404497,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404503,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404541,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,404572,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,404619,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,404626,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404657,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,404701,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,404725,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,404732,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,404749,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,404763,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,404831,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404879,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,404930,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,404985,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,404992,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405001,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,405018,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,405087,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,405131,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,405155,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405162,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405186,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,405193,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,405209,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,405216,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405230,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405261,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,405278,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,405292,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,405339,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,405346,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405360,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,405391,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,405438,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405483,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,405490,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,405506,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,405544,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,405568,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,405605,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,405612,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,405698,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,405728,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,405735,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,405773,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,405780,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,405810,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,405889,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405933,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,405995,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,406035,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,406059,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,406134,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,406141,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,406196,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,406226,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,406233,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,406240,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,406271,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,406295,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,406325,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,406332,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,406394,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,406424,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,406479,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,406509,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,406516,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,406523,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,406530,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,406585,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,406615,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,406622,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,406653,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,406660,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,406677,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,406714,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,406752,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,406790,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,406806,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,406820,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,406882,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,406936,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,406974,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,407007,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407052,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,407069,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,407076,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,407106,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,407113,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407137,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,407175,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,407182,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,407243,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,407250,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,407298,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,407304,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,407335,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407366,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,407397,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407410,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407427,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,407496,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407502,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,407519,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,407595,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,407601,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,407618,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,407656,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,407694,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,407700,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,407717,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,407724,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407731,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,407755,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,407762,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407779,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,407816,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,407823,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,407847,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,407861,Reverse,,,,,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,407953,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,407977,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,407991,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,408000,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,408031,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,408055,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,408062,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,408109,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,408123,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,408154,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,408185,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,408192,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,408239,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,408253,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,408284,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,408291,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,408321,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,408390,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,408413,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,408420,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,408444,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,408482,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,408505,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,408543,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,408574,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,408598,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,408604,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,408611,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,408628,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,408741,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,408758,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,408772,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,408789,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,408819,Forward,,,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,408826,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,408833,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,408864,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,408888,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,408901,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,408949,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409010,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409041,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,409065,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409089,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,409096,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409188,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,409195,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,409232,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409263,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,409270,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409331,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,409348,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,409362,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,409379,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,409386,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409423,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,409430,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,409478,Reverse,,,,,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,, +ANES2020TimeSeries_20220210,409492,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,409508,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409522,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,409546,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,409553,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,409577,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,409591,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409607,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409621,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,409638,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,409652,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,409669,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409683,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,409720,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409744,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409751,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,409768,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,409775,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409812,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409836,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409843,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,409881,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,409928,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,409942,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,409980,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410010,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,410034,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,410119,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,410140,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410157,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,410164,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,410218,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,410232,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,410249,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410263,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,410324,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410331,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,410355,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,410362,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410485,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,410515,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,410546,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,410584,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,410591,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410614,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,410621,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,410645,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,410676,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410690,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,410706,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,410751,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,410829,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,410874,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410904,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,410942,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,410973,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,410980,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411006,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,411020,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411044,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411051,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,411075,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411112,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,411129,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411136,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411143,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411174,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,411181,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,411204,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411211,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,411242,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,411303,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411327,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,411365,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411457,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411464,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,411471,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,411495,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411563,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411594,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,411600,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411617,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411679,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411686,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,411709,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,411778,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411785,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411792,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,411808,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411815,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,411822,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,411839,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411884,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,411907,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,411945,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,411952,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,411976,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,411983,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,411990,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,412016,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412078,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,412085,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,412115,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412146,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,412160,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,412191,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,412207,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,412238,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,412245,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,412306,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,412313,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412337,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,412344,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,412382,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412429,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412436,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,412443,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412474,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,412504,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,412559,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,412566,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,412573,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,412580,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,412597,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,412603,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412610,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,412658,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,412665,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412702,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,412719,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,412788,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,412818,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,412825,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,412870,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,412887,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412924,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,412955,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,412962,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,413026,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,413033,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,413071,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,413125,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,413149,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,413200,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413217,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,413231,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,413262,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,413286,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413293,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,413347,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,413378,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,413385,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413408,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413415,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,413422,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413439,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,413446,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,413491,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,413538,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413545,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,413613,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,413682,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,413729,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413774,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,413781,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413835,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,413859,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,413965,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414128,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414142,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414166,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,414180,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,414203,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,414227,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,414258,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,414296,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414302,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,414319,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414401,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,414418,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414425,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414432,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,414449,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414456,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,414470,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414494,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,414517,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,414548,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,414586,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,414609,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414616,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,414630,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,414661,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,414692,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,414708,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,414715,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414753,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414777,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,414784,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,414791,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,414814,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,414838,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,414869,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,414890,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,414906,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,414913,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,414951,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,414982,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,414999,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,415022,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,415046,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,415060,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,415084,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,415107,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,415114,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,415183,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,415244,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,415282,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,415312,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,415329,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,415343,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,415367,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,415374,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,415404,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,415459,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,415473,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,415480,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,415497,Forward,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,415510,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,415527,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,415541,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,415602,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,415664,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,415688,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,415701,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,415725,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,415749,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,415800,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,415831,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,415879,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,415886,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,415909,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,415930,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,416018,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,416056,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,416063,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,416155,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,416179,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,416193,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,416216,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,416230,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,416247,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,416285,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,416360,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,416421,Forward,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,416452,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,416520,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,416544,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,416551,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,416575,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,416636,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,416681,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,416704,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,416728,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,416735,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,416759,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,416773,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,416834,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,416841,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,416933,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,416940,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,416964,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,417028,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,417066,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,417073,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,417127,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,417134,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,417158,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,417165,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,417189,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,417202,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,417226,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,417240,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,417295,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,417318,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,417370,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,417387,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,417424,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,417455,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,417462,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,417486,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,417530,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,417554,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,417578,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,417622,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,417653,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,417677,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,417714,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,417738,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,417752,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,417776,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,417790,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,417882,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,417905,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,417912,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,417936,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,417943,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,417967,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,417974,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,417998,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,418014,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,418021,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,418038,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,418069,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,418076,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418083,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418090,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418106,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418137,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,418144,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,418168,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,418175,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418182,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,418199,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,418205,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418212,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,418229,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,418250,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418267,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,418304,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,418366,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,418397,Forward,,,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,418465,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,418472,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418489,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418496,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,418519,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418526,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,418533,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418540,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,418557,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,418571,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,418595,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,418601,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,418618,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,418625,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,418656,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,418663,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,418700,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,418755,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418786,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,418816,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,418823,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,418861,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,418878,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,418908,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418915,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,418946,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,418984,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,419000,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,419024,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,419109,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,419123,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419192,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,419208,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,419215,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419239,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,419291,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419307,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,419352,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419390,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,419413,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419444,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,419451,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,419468,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,419482,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419512,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419550,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,419567,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,419604,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,419611,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,419710,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,419727,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,419819,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419826,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,419833,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419864,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,419871,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,419895,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,,,,,,,, +ANES2020TimeSeries_20220210,419932,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,419956,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,419970,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,419987,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,420000,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,420109,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,420116,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,420147,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,420161,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,420208,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,420215,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,420239,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,420246,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,420260,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,420291,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,420338,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,420345,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,420352,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,420376,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,420390,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,420420,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,420499,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,420505,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,420512,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,420567,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,420581,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,420635,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,420659,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,420666,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,420673,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,420710,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,420734,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,420765,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,420772,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,420789,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,420826,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,420840,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,420888,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,420918,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,420949,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,420956,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,421003,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,421034,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,421058,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,421089,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,421119,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,421126,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,421218,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,421232,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,421287,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,421324,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,421331,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,421355,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,421379,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,421430,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,421454,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,421478,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,421508,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,421553,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,421560,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,421577,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,421584,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,421591,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,421614,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,421621,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,421652,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,421669,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,421706,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,421805,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,421843,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,421898,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,421911,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,421928,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,421942,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,421966,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,421980,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,421997,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,422020,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,422051,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,422068,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,422075,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,422082,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,422167,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,422174,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,422204,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,422228,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,422235,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,422334,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,422365,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,422372,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,422389,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,422402,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,422426,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,422464,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,422471,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,422495,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,422525,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,422549,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,422563,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,422587,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,422594,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,422617,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,422693,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,422709,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,422730,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,422754,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,422761,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,422778,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,422808,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,422815,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,422822,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,422846,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,422853,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,422884,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,422976,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,423016,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,423047,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,423078,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,423085,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,423108,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423115,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,423122,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,423153,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,423177,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,423184,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,423207,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423214,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,423245,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423269,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,423276,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,423283,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423290,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,423368,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,423375,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,423443,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423467,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,423474,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,423504,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423511,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423528,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,423573,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,423580,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,423597,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,423610,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,423627,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,423665,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,423696,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,423726,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,423757,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,423771,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,423788,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,423795,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,423801,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,423818,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,423832,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423856,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,423870,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,423894,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,423917,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,423955,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,423993,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,424026,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,424040,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,424057,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,424071,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,424095,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,424170,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,424200,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,424224,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,424231,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,424323,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,424347,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,424385,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,424439,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,424453,Forward,,,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,424477,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,424521,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,424545,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,424569,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,424590,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,424613,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,424620,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,424651,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,424668,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,424682,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,424712,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,424835,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,424842,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,424859,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,424873,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,424880,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,424927,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,424934,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,424941,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,424958,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,424972,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,425005,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,425029,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,425074,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,425081,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,425098,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,425128,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,425135,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,425197,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,425227,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,425258,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,425319,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,425326,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,,,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,425388,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,425432,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,425449,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,425487,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,425494,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,425517,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,425531,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,425548,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,425555,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,425579,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,425593,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,425609,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,425661,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,425678,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,425692,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,425708,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,425746,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,425753,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,425791,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,425807,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,425845,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,425876,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,425913,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,425920,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,425951,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,425975,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,425982,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,426046,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,426107,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426114,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,426152,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,426176,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426206,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426220,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426237,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426251,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,426268,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,426282,Forward,,,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,,,,,, +ANES2020TimeSeries_20220210,426299,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,426312,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426336,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,426343,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,426374,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,426381,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,426404,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426411,Forward,,,,,,,1. World temperatures have risen on average over the last 100 years,,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,426435,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,426473,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,426497,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,426503,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,426541,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,426558,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,426572,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,426602,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,426633,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,426640,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,426688,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,426718,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,426756,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,426763,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426817,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,426824,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,426848,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,426855,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,426862,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,426879,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,426947,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,427018,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,427063,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,427070,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,427087,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,427124,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,427179,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,427223,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,427247,Forward,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,427278,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,427285,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,427292,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,427339,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,427353,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,427452,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,427469,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,427476,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,427490,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,427568,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,427582,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,427643,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,427674,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,427698,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,427704,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,427711,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,427728,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,427742,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,427759,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,427766,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,427773,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,427803,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,427865,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,427902,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,427919,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,427933,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,427964,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,427988,Reverse,,,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,,,, +ANES2020TimeSeries_20220210,428035,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,428059,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428066,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,428080,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,428110,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,428165,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,428189,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,428219,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,428233,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428240,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,428257,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,428264,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428295,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,428349,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,428363,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,428370,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,428417,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428448,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,428516,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428523,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,428622,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,428646,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,428660,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,428677,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,428707,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428721,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428738,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,428752,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,428776,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428783,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,428790,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,428844,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,428851,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,428875,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,428882,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,428899,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,428912,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,428943,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,428981,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,428998,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,429038,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429045,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429069,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,429083,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,429106,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,429168,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,429199,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429236,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429243,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429250,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,429328,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429335,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429366,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,429373,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,429397,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429410,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,429434,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,429441,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,429489,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,429519,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,429533,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,429557,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429564,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429571,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,429618,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,429649,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,429656,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,429670,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429717,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,429724,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429731,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429762,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,429779,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,429816,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429847,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,429861,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,429878,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,429885,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,429946,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,429953,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,429984,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,430021,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430038,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,430045,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,430113,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,430168,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,430182,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430199,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,,,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,430212,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430243,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,430298,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,430328,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430335,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,430359,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,430380,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430397,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,430403,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430410,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,430434,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,430458,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,430465,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,430496,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,430502,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,430526,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,430533,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,430540,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,430601,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,430670,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,430700,Reverse,,,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,430724,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,430731,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,430748,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,430762,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,430847,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,430861,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,430878,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430892,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430915,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430922,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,430939,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,430946,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,430984,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,430991,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,431017,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,431031,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,431055,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,431079,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431086,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431093,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,431116,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,431123,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,431147,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,431161,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431178,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,431208,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,431222,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431239,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431253,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,431277,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,431314,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,431345,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,431352,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,431420,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,431499,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,431505,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,431512,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431536,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,431581,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,431598,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,431611,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,431628,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431635,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431710,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,431727,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,431734,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,431758,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,431765,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,431772,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,431789,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,431796,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,431857,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,431901,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,431918,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,431987,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,432065,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,432119,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,432126,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432140,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,432164,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,432225,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,432232,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,432249,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,432263,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,432294,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432300,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,432317,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,432386,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432393,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,432423,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,432492,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,432508,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,432522,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,432546,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,432553,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,432560,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,432584,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432591,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,432607,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,432614,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,432713,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,432737,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,432744,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432751,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,432775,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,432805,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432850,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432867,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,432898,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432904,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,432911,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,432928,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,432959,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,432980,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433020,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,433051,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433112,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,433129,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433136,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433143,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433150,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433167,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433174,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433181,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,433242,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,433327,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,433341,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,433358,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,433365,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433402,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,433433,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,433464,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433495,Reverse,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433549,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,433594,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,433600,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433617,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433624,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,433648,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433655,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,433662,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433686,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,433693,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,433730,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433747,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,433785,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433792,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433808,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433815,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433839,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,433846,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,433853,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,433860,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,433938,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,433945,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,,,,,,,, +ANES2020TimeSeries_20220210,433952,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434016,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434030,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,434047,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,434078,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434108,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,434122,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,434146,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,434160,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,434177,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,434207,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,434214,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,434245,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,434269,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,434283,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,434337,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,434399,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,434436,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434450,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434474,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434481,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,434535,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,434542,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,434566,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434597,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,434658,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,,,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,434696,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,434740,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,434757,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,434764,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,434771,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434788,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,434818,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,434825,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434832,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,434856,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434900,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,434924,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,434931,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,434955,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434962,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,434979,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,434986,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,434993,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,435026,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,435040,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,435071,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,435101,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,435125,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,435194,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,435200,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,435231,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,435323,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,435330,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,435460,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,435491,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,435507,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,435514,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,435538,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,435552,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,435576,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,435613,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,435620,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,435637,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,435644,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,435736,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,435859,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,435866,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,435873,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,435880,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,435941,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,435958,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,435965,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,435972,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,436036,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,436043,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,436050,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,436067,Forward,,,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,436074,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,436159,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,436166,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,436241,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,436289,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,436296,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,436302,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,436333,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,,,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,436357,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,436418,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,436524,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,436531,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,436579,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,436609,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,436678,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,436708,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,436753,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,436784,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,436814,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,436821,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,436883,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,436906,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,436920,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,436937,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,436975,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,437008,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,437039,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,437077,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,437107,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,437121,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,437145,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,437169,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,437183,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,437190,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,437237,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,437299,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,437374,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,437398,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,437435,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,437459,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,437473,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,437480,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,437497,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,437527,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,437541,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,437572,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,437596,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,437657,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,437688,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,437718,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,437749,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,437763,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,437947,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,437954,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,437961,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,437985,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,437992,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438025,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,438032,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,438049,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,438056,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,438087,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,438131,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,438148,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,438162,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,438186,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,438254,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,438261,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438308,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,438322,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,438339,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438346,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,438353,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,438384,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438414,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438421,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,438476,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,438490,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438506,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438513,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,438551,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438568,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438575,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438599,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,438629,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438636,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,438650,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438735,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,438742,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,438766,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,438834,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,438872,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,438889,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,,,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,438933,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,438940,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,438957,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,438995,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,439004,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,439028,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,439042,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,439059,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,439073,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,439097,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,439127,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,439141,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,439158,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,439165,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,439219,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,439226,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,439257,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,439301,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,439325,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,439332,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,439349,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,439387,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,439417,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,439455,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,439462,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,439509,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,439516,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,439530,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,439547,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,439561,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,439585,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,439608,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,439646,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,439677,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,439721,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,439769,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,439776,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,439806,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,439837,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,439844,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,439868,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,439899,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,439912,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,439929,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,439943,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,440004,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,440011,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,440080,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,440141,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,440226,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,440271,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,440288,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,440301,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,440332,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,440370,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,440530,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,440547,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,440554,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,440622,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,440639,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,440646,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,440660,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,440677,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,440738,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,440745,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,440769,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,440776,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,440783,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,440806,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,440820,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,440837,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,440851,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,440981,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,440998,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,441007,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,441014,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,441052,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,441090,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,441106,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,441144,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,441182,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,441236,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,441243,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,441281,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,441328,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,441366,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,441373,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,441434,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,441458,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,441502,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,441540,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,441564,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,441595,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,441601,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,441625,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,441649,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,441656,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,441731,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,441755,Reverse,,,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,441762,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,441779,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,441830,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,441847,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,441854,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,441861,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,441915,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,441922,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,441953,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,441960,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,441991,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,442024,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,442048,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,442055,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,442086,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,442109,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,442130,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,442147,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,442192,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,442222,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,442239,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,442338,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,442352,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,442390,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,442406,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,442413,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,442451,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,442468,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,442475,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,442505,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,442550,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,442642,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,442659,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,442666,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,442680,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,442772,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,442802,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,442819,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,442833,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,442918,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,442970,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,442987,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,443027,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,443041,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,443065,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,443119,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,443157,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,443171,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,443249,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,443287,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,443317,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,443355,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,443386,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,,,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,443409,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,443416,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,443461,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,443478,Reverse,,,,,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,443485,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,443492,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,443508,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,443584,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,443614,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,443621,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,443676,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,443683,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,443782,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,443836,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,443843,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,443874,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,443935,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,443973,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,443980,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,443997,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,444020,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444044,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,444068,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,444075,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,444082,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,444105,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444174,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444235,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,444242,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444273,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,444280,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444334,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444341,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444358,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,444396,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,444457,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,444495,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,444532,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,444549,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,444556,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,444617,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,444631,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444662,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,444679,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,444686,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,444693,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444709,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,444716,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,444761,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,444778,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,444860,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,444891,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,444914,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,444945,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,444952,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,445023,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,445054,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,445085,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,445115,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,445146,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,445153,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,445160,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,445191,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,445207,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,445337,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,445344,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,445399,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,445405,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,445498,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,445528,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,445702,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,445788,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,445801,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,445818,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,445856,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,445917,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,445924,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,445979,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,445986,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,446095,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,446125,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,446187,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,446194,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,446200,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,446231,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,446248,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,446255,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,446293,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,446309,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,446316,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,446354,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,446361,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,446378,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,446439,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,446446,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,446491,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,446538,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,446545,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,446606,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,446613,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,446651,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,446668,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,446675,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,446705,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,446712,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,446750,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,446767,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,446804,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,446811,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,446866,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,446873,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,446927,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,446941,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,446958,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,446996,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,447005,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,447012,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,447043,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,447074,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,447081,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,447098,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,447104,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,447173,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,447180,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,447265,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,447289,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,447296,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,447319,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,447333,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,447388,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,447395,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,447418,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,447449,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,447517,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,447531,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,447555,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,447609,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,447647,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,447685,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,447715,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,447722,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,447753,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,447760,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,447777,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,447791,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,447838,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,447845,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,447876,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,447883,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,447890,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,447913,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,447920,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,447944,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,447951,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,448046,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,448084,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,448114,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,448367,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,448381,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,448480,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,448497,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,448510,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,448527,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,448534,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,448541,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,448558,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,448572,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,448596,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,448602,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,448626,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,448633,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,, +ANES2020TimeSeries_20220210,448640,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,448671,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,448695,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,448770,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,448787,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,448800,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,448824,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,448831,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,448848,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,448862,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,448893,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,448909,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,448930,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,448947,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,448961,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,449018,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449049,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,449063,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,449100,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,449117,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,449131,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,449148,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449162,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,449179,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,449193,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449230,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449247,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449254,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,449261,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,449308,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,449391,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,449407,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,449445,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,449476,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449506,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449537,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,449568,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449575,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,449605,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,449636,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,,,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,449643,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,449650,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,449667,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,449681,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,449773,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,449834,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449858,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449865,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,449889,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449902,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,449926,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449957,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,449971,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,449995,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,450018,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,450025,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,450094,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,450124,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,450131,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,450148,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,450186,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,450223,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,450230,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,450339,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,450346,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,450353,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,450360,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,450469,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,450506,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,450537,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,450599,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,450650,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,450667,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,450698,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,450728,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,450797,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,450803,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,450841,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,,,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,450902,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,450933,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,450971,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,450988,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,451028,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,451035,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,451042,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,451059,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,451066,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,451073,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,451080,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,451097,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,451134,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,451165,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,451189,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,451196,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,451202,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,451271,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,451325,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,451332,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,451356,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,451370,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,451424,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,451578,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,451585,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,451608,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,451622,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,451639,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,451646,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,451653,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,451684,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,451707,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,451721,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,451738,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,451752,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,451769,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,451783,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,451790,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,451806,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,451912,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,451929,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,451974,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,452014,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,452021,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,452045,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,452083,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,452090,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,452120,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,452144,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,452175,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,452229,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,452243,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,452267,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,452281,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,452311,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,452328,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,452410,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,452427,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,452434,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,452441,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,452465,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,452472,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,452496,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,452526,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,452533,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,452557,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,452564,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,452595,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,452618,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,452649,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,452663,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,452700,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,452731,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,452748,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,452779,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,452861,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,452878,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,452939,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,452953,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,452977,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,453024,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,,,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453048,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,453116,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453130,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,453147,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,453185,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,453208,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,453215,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,453246,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,453253,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,453284,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453369,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,453383,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,453390,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453505,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,453512,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,453567,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453628,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453659,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,453666,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,453673,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,453697,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,453703,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,453710,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,453734,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453741,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,453796,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453833,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,453888,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,453895,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,453932,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,453970,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,454027,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,454065,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,454089,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,454096,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,454102,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,454119,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,454133,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,454157,Reverse,,,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,,,, +ANES2020TimeSeries_20220210,454171,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,454195,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,454201,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,454225,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,454249,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,454287,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,454324,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,454348,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,454409,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,454423,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,454447,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,454478,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,454508,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,454522,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,454539,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,454546,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,454553,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,454560,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,454577,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,454584,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,454607,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,454744,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,454768,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,454782,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,454799,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,454805,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,454843,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,454850,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,454874,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,454928,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,454966,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,454980,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455037,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,455044,Reverse,,,,,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,455051,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,455075,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,455082,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,455099,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,455112,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,455129,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,455136,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,455150,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455181,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,455211,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,455235,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,455303,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,455310,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,455341,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455358,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455365,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,455372,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,455433,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,455457,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455501,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,455518,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,455525,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455532,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,455594,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,455617,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455624,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,455631,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,455655,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455716,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,455761,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455778,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,455785,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,455792,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,455822,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,455839,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,455853,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,455877,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,455945,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,455952,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,455976,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456009,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,456016,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456030,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,456047,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456078,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,456122,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456160,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456184,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456191,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456221,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,456245,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456252,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456306,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,456313,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,456351,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,456399,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,456412,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,456429,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,456450,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456467,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456504,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,456511,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,456542,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,456580,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456597,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,456610,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456627,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456672,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,456740,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,456757,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,456764,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456801,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456832,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,456870,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,456887,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,456955,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,456962,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,457002,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457040,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,457064,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,457101,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,457118,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457149,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,457156,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,457170,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,457200,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,457231,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,457286,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,457323,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,457347,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457361,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,457378,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,457385,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,457392,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,457415,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,457422,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457453,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,457552,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,457569,Forward,,,2. Barack Obama's administration,5. Extremely,,,,,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,457637,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,457712,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457729,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457743,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457767,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457798,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,457811,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,457828,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,457873,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,457934,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,457958,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,457972,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,457996,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,458029,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,458067,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,458081,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,458135,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,458159,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,458180,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,458197,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,458234,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,458258,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,458265,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,458302,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,458364,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,458371,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,458425,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,458432,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,458449,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,458463,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,458487,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,458500,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,458548,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,458555,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,458593,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,458609,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,458616,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,458623,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,458630,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,458661,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,458678,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,458692,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,458708,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,458814,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,458876,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,458890,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,458906,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,458913,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,458920,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,458944,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,458951,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,458968,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,459022,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,459053,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,459060,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,459084,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,459107,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,459114,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,459152,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,459183,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,459190,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,459237,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,459251,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,459268,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,459282,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,459305,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,459350,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,459374,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,459381,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,459398,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,459428,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,459435,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,459442,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,459480,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,459534,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,459541,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,459558,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,459565,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,459589,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,459619,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,459657,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,,,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,459664,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,459695,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,459701,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,459718,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,459725,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,459770,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,459824,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,459909,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,459954,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,459978,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,460015,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460084,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,460091,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,460114,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,460138,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,460213,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,460220,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,460251,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,460312,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,460343,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,460350,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,460374,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,460381,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,460398,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460435,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460442,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460459,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460534,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,460589,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,460602,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,460695,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,460701,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460718,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460756,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,460824,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460862,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,460879,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,,,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,460893,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,460916,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,460930,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,460978,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,460985,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,460992,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,461117,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,461155,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,461162,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,461179,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,461216,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,461230,Reverse,,,2. Barack Obama's administration,2. A little,,,,,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,461247,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,461261,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,461278,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,461308,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,461315,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,461353,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,461445,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,461452,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,461469,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,461506,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,461513,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,461544,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,461568,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,461599,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,461605,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,461698,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,461735,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,461780,Reverse,,,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,461834,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,461889,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,461926,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,461940,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,461964,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,461988,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,461995,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,462035,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,462042,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,462059,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,462103,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,462127,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,462141,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,462165,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,462172,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,462226,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,462240,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,462264,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,462318,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,462332,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,462349,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,462370,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,462387,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,462431,Reverse,,,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,462448,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,462516,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,462592,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,462608,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,462653,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,462677,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,462721,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,462745,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,462752,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,462776,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,462790,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,462837,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,462844,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,462875,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,462905,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,462943,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,462974,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,462981,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,463007,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,463021,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,463045,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,463076,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,463144,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,463182,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,463212,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,463229,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,463243,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,463274,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,463304,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,463359,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,463427,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,463434,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,463564,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,463601,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,463618,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,463632,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,463656,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,463687,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,463694,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,463793,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,463809,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,463854,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,463861,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,463892,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,463908,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,463939,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,463946,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,463991,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,464000,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,464031,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,464048,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,464192,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,464239,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,464246,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,464277,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,464291,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,464352,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,464376,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,464437,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,464451,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,464499,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,464529,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,464536,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,,,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,464574,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,464581,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,464628,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,464659,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,464666,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,464673,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,464758,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,464765,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,464864,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,464888,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,464918,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,464970,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,464994,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,465003,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465041,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,465119,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,465126,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465164,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465171,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,465195,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,465201,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,465218,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,465225,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,465256,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465287,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,465348,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,465423,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,465430,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465454,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,465461,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,465478,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,465485,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465508,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,465546,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,465577,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,465584,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,465607,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,465614,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465638,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,465669,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,465690,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,465713,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465737,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465744,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,465768,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465799,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,465805,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,465812,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,465836,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,465867,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,465874,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,465904,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,465911,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,465928,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,466006,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,466020,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,466044,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,466068,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,466105,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,466143,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,466150,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,466167,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,466204,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,466211,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,466228,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,466259,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,466273,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,466297,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,466341,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,466501,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,466617,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,466624,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,466648,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,466655,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,466679,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,466709,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,500043,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,500050,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,500081,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500135,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,500142,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,500173,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500180,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,500197,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,500258,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,500272,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,500289,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500340,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,500562,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,500579,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500593,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500609,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,500616,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,500685,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500692,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500739,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,500784,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500791,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,500869,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,500876,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,500937,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,500982,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,501039,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,501060,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,501138,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,501237,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,501244,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,501398,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,501428,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,501435,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,501541,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,501565,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,501572,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,501619,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,501626,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,501749,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,501831,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,501855,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,501947,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,501954,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,501978,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,502117,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,502131,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,502407,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,502421,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,502452,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,502476,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,502537,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,502582,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,502599,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,502612,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,502773,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,502797,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,502933,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,503035,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,503073,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,503080,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,503127,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,503165,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,503233,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,503400,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,503455,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,503677,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,503752,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,503769,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,503776,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,503820,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,504113,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,504137,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,504236,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,504267,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,504298,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,504304,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,504328,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,504335,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,504366,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,504441,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,504458,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,504601,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,504649,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,504731,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,504816,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,504823,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,504854,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,504878,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,504946,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,504960,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,504977,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,505017,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,505062,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,505185,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,505192,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,505222,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,505338,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,505390,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,505406,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,505413,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,505420,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,505437,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,505451,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,505482,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,505529,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,505642,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,505659,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,505673,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,505710,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,505833,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,505840,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,505888,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,505949,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,505956,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,506058,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,506126,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,506133,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,506164,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,506201,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,506225,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,506263,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,506300,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,506317,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,506362,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,506447,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,506485,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,506492,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,506539,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,506577,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,506645,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,506720,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,506737,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,506775,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,506799,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,506805,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,506881,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,506904,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,506911,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,506973,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,507044,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,507051,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,507167,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,507198,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,507228,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,507235,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,507426,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,507457,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,507464,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,507501,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,507563,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,507570,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,507594,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,507617,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,507631,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,507716,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,507730,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,507785,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,507815,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,507846,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,507853,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,507891,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,507921,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,508085,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,508108,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,508122,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,508160,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,508191,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,508276,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,508306,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,508375,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,508399,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,508511,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,508580,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,508627,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,508672,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,508726,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,508764,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,508795,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,508832,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,508894,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,509002,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,509057,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,509064,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,509095,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,509163,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,509194,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,509217,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,509286,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,509354,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,509392,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,509491,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,509521,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,509545,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,509583,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,509644,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,509682,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,509743,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,509828,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,509842,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,509866,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,509941,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,509989,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,510057,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,510118,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,510132,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,510149,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,510248,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,510255,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,, +ANES2020TimeSeries_20220210,510279,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,510354,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,510477,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,510491,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,510514,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,510545,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,510705,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,510712,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,510743,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,510811,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,510910,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,510958,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,510989,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,510996,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,511005,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,511067,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,511074,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,511098,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,511104,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,511111,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,511166,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,511180,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,511241,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,511296,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,511319,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,511333,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,511395,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,511432,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,511517,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,511531,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,511623,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,511630,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,511654,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,511661,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,511746,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,511784,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,511821,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,511876,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,511920,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,512046,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,512060,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,512091,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,512107,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,512145,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,512169,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,512237,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,512251,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,512329,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,512350,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,512398,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,512411,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,512435,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,512459,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,512473,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,512497,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,512503,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,512626,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,512749,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,512770,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,512817,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,512848,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,512862,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,512886,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,512923,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,512930,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,513018,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,513063,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,513124,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,513162,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,513186,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,513193,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,513209,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,513254,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,513506,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,513544,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,513582,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,513605,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,513674,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,513759,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,513773,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,513797,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,513865,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,514011,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,514028,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,,,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,514035,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,514059,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,514103,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,514134,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,514141,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,514202,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,514226,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,514349,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,514363,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,514387,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,514417,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,514479,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,514592,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,514646,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,514653,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,514714,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,514745,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,514813,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,514851,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,514868,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,514899,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,514905,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,514929,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,515007,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,515014,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,515021,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,515052,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,515120,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,515236,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,515298,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,515311,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,515335,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,515359,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,515366,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,515427,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,515472,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,515526,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,515595,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,515632,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,515656,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,515687,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,515724,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,515793,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,515830,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,515885,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,515915,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,515953,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,515984,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,516048,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,516062,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,516116,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,516376,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,516420,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,516444,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,516451,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,516550,Reverse,,,,,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,,,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,516581,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,516628,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,516642,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,, +ANES2020TimeSeries_20220210,516703,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,516727,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,516758,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,516772,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,516789,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,516802,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,516819,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,516840,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,516895,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,516949,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,516963,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,517089,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,517102,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,517218,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,517249,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,517256,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,517270,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,517287,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,517379,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,517461,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,517546,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,517584,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,517638,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,517652,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,517669,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,517676,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,517812,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,517867,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,,,,,1. World temperatures have risen on average over the last 100 years,4. Very,,,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,517898,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,517911,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,517928,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,518075,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,518136,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,518174,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,518198,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,518211,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,518273,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,518341,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,518495,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,518501,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,518549,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,518587,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,518631,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,518716,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,518730,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,518747,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,518761,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,518808,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,518822,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,518839,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,518853,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,518860,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,518877,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,518884,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,518891,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,518952,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,518990,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,519030,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,519238,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,519276,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,519337,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,519351,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,519375,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,519436,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,519450,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,519542,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,519580,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,519658,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,519696,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,519719,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,519726,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,519795,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,519832,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,519931,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,519955,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,520009,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,520016,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,520054,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,520078,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,520139,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,520160,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,520177,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,520313,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,520337,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,520382,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,520429,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,520474,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,520481,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,520603,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,520672,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,520696,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,520726,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,520788,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,520801,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,520832,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,520856,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,520924,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,520931,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,520986,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,521156,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,521217,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,521255,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,521279,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,521293,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,521309,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,521378,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,521385,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,521446,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,521613,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,521668,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,521675,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,521699,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,521712,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,521804,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,521859,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,521866,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,521941,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,521972,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,521989,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,521996,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,522005,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,522098,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,522128,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,522135,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,522166,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,522173,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,522180,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,522241,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,522289,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,522296,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,522319,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,522470,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,522517,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,522524,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,522586,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,522593,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,522616,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,522654,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,522678,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,522685,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,522722,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,522814,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,522906,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,522913,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,522982,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,523015,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,523077,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,523091,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,523176,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,523183,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,523190,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,523220,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,523237,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,523244,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,523299,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,523367,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,523374,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,523497,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,523510,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,523565,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,523633,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,523657,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,523756,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,523763,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,523800,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,523831,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,523862,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,523879,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,523923,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,523947,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,523954,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,523978,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,524001,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,524018,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,524063,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,524087,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,524155,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,524179,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,524247,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,524261,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,524285,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,524308,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,524339,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,524384,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,524407,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,524438,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,524520,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,524582,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,524650,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,524728,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,524810,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,524940,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,524988,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,524995,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,525004,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,525059,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,525134,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,525158,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,525189,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,525226,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,525257,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,525264,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,525394,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,525516,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,525561,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,525585,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,525592,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,525608,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,525769,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,525806,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,525981,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,526021,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,526052,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,526182,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,526205,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,526311,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,,,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,526328,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,526335,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,526380,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,526410,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,526458,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,526533,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,526557,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,526588,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,526618,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,526632,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,526816,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,526830,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,526892,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,526908,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,526946,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,527024,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,527048,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,527079,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,527086,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,527161,Forward,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,527215,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,527314,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,527338,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,527345,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,527352,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,, +ANES2020TimeSeries_20220210,527390,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,527406,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,527475,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,527499,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,527529,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,527550,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,527611,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,527666,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,527673,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,527697,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,527772,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,527796,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,527840,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,527871,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,527888,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,527895,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,527970,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,528003,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,528096,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,528119,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,528171,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,528195,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,528300,Forward,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,528317,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,528355,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,528461,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,528577,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,528652,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,528676,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,,,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,528683,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,528690,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,528829,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,528898,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,528904,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,528959,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,528980,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,529044,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,529105,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,529136,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,529143,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,529211,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,529273,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,529303,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,529358,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,529389,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,529464,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,529471,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,529587,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,529600,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,529679,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,529785,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,529792,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,529808,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,529945,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,530105,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,530174,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,530198,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,530297,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,530402,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,530419,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,530433,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,530488,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,530532,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,530556,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,530594,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,530693,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,530716,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,530792,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,531085,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,531160,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,531221,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,531283,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,531306,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,531351,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,531368,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,531399,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,531436,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,531481,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,531542,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,531580,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,531733,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,531757,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,531818,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,531863,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,531948,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,532002,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,532019,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,532026,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,532033,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,532088,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,532286,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,532309,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,532408,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,532439,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,532453,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,532538,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,532620,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,532637,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,532644,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,532668,Reverse,1. Russia tried to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,532705,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,532712,Reverse,,,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,532842,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,532873,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,532927,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,532941,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,533098,Reverse,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,533104,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,533142,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,533159,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,533210,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,533265,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,533272,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,533289,Reverse,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,533319,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,533371,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,533425,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,533500,Forward,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,1. Not at all,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,533517,Forward,,,,,,,,,,,, +ANES2020TimeSeries_20220210,533630,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,1. Not at all,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,533654,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,533722,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,1. Not at all +ANES2020TimeSeries_20220210,533807,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,533944,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,534008,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,534060,Reverse,2. Russia did not try to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,534336,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,534367,Reverse,2. Russia did not try to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,534398,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,534404,Reverse,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,1. Donald Trump's administration,1. Not at all,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,534428,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,4. Very,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,534442,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,534466,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,534473,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,534534,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,3. Moderately,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,534589,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,1. Most scientific evidence shows childhood vaccines cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,2. A little,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,534596,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,534633,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,534640,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,534725,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,534787,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,534824,Forward,2. Russia did not try to interfere in the 2016 presidential election,1. Not at all,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,1. Not at all,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,1. Not at all +ANES2020TimeSeries_20220210,534831,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,4. Very,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,534886,Reverse,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,2. A little,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,2. A little +ANES2020TimeSeries_20220210,534961,Forward,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,3. Moderately +ANES2020TimeSeries_20220210,534992,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,2. A little +ANES2020TimeSeries_20220210,535032,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,535100,Forward,1. Russia tried to interfere in the 2016 presidential election,5. Extremely,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,535216,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,2. A little,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,535230,Reverse,,,,,,,,,,,, +ANES2020TimeSeries_20220210,535254,Reverse,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,5. Extremely,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,5. Extremely +ANES2020TimeSeries_20220210,535292,Forward,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,5. Extremely,2. Most scientific evidence shows childhood vaccines do not cause autism,4. Very,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,5. Extremely,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,5. Extremely +ANES2020TimeSeries_20220210,535308,Forward,,,2. Barack Obama's administration,1. Not at all,1. Most scientific evidence shows childhood vaccines cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,3. Moderately,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,535315,Forward,2. Russia did not try to interfere in the 2016 presidential election,3. Moderately,1. Donald Trump's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,535360,Forward,1. Russia tried to interfere in the 2016 presidential election,2. A little,1. Donald Trump's administration,2. A little,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,4. Very,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,2. A little,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very +ANES2020TimeSeries_20220210,535414,Reverse,1. Russia tried to interfere in the 2016 presidential election,3. Moderately,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,1. World temperatures have risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,3. Moderately +ANES2020TimeSeries_20220210,535421,Reverse,2. Russia did not try to interfere in the 2016 presidential election,4. Very,2. Barack Obama's administration,3. Moderately,2. Most scientific evidence shows childhood vaccines do not cause autism,3. Moderately,2. World temperatures have not risen on average over the last 100 years,4. Very,1. The novel coronavirus (COVID-19) was developed intentionally in a lab,4. Very,1. Scientific evidence that hydroxychloroquine is a safe and effective treatment,4. Very +ANES2020TimeSeries_20220210,535469,Forward,1. Russia tried to interfere in the 2016 presidential election,4. Very,1. Donald Trump's administration,4. Very,2. Most scientific evidence shows childhood vaccines do not cause autism,5. Extremely,1. World temperatures have risen on average over the last 100 years,5. Extremely,2. The novel coronavirus (COVID-19) was not developed intentionally in a lab,3. Moderately,2. No scientific evidence that hydroxychloroquine is a safe and effective treatm,4. Very diff --git a/data/metadata/consistency.csv b/data/metadata/consistency.csv new file mode 100644 index 0000000..1e59e37 --- /dev/null +++ b/data/metadata/consistency.csv @@ -0,0 +1,8 @@ +filename,path,checksum,date +anes_timeseries_2020_stata_20220210_hill_roberts_subset.csv,external,,2024-09-11 +China2021Data.csv,external,,2024-09-11 +LucidPlotText.csv,external,,2024-09-11 +LucidWideFile.csv,external,,2024-09-11 +Pre2020Surveys_Pooled.csv,external,,2024-09-11 +trials.Rds,registry,,2024-09-11 +consistency.csv,metadata,,2024-09-11 diff --git a/data/registry/trials.Rds b/data/registry/trials.Rds new file mode 100644 index 0000000..fd25259 Binary files /dev/null and b/data/registry/trials.Rds differ diff --git a/images/github-secret-scanning.png b/images/github-secret-scanning.png new file mode 100644 index 0000000..716c685 Binary files /dev/null and b/images/github-secret-scanning.png differ diff --git a/index.Rmd b/index.Rmd index 94cefac..f7ee695 100644 --- a/index.Rmd +++ b/index.Rmd @@ -29,7 +29,7 @@ date: August 2024 :::: -[lars.vilhuber.com/p/eale-2024/](https://lars.vilhuber.com/p/eale-2024/) +[lars.vilhuber.com/p/fsrdc-2024/](https://lars.vilhuber.com/p/fsrdc-2024/) # Reproducibility from Day 1 @@ -92,6 +92,9 @@ We finish with a mini-project about public procurement across various European c ```{r, child=c(here::here('05-robust-code.md'))} ``` +```{r, child=c(here::here('06-secrets-in-code.md'))} +``` + # Part 2 :::: {.columns}